/* Simon Veterinary Surgical — Custom Site Styles
   Concept: "Surgical Hospitality"
   Clinical authority (deep teal) + warmth (apricot, cream) +
   editorial typography (Fraunces display, Inter body, JetBrains Mono utility).
   Two California locations · flat-rate surgical packages · TPLO hero procedure. */

:root {
  /* Ink */
  --ink:         #0c1f24;
  --ink-2:       #14292f;
  --ink-3:       #21383f;
  --line:        rgba(12, 31, 36, 0.14);
  --line-soft:   rgba(12, 31, 36, 0.07);

  /* Clinical */
  --surgical:        #0d5560;
  --surgical-2:      #1a8896;
  --surgical-3:      #2da5b2;
  --surgical-deep:   #073d44;
  --surgical-tint:   #e6f2f3;

  /* Warm */
  --warm:        #d97746;
  --warm-2:      #e89967;
  --warm-deep:   #b35a30;
  --warm-tint:   #fbeadd;

  /* Paper */
  --paper:       #fbf7f1;
  --paper-2:     #f3ece1;
  --paper-3:     #e8ddc9;
  --white:       #ffffff;

  /* Subtle accents */
  --olive:       #6f7d4f;
  --plum:        #6b3553;

  /* Type */
  --display: 'Fraunces', 'Recoleta', Georgia, serif;
  --body:    'Inter', system-ui, -apple-system, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

  /* Geometry */
  --radius-sm: 4px;
  --radius:    10px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --container: 1200px;
  --container-wide: 1400px;
  --header-h:  76px;
  --util-h:    36px;

  --t-fast: 0.16s ease;
  --t:      0.28s cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--paper);
}

body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

a {
  color: var(--surgical-deep);
  text-decoration: none;
  transition: color var(--t-fast);
}
a:hover { color: var(--surgical-2); }

button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.022em;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6.4vw, 5.2rem); font-weight: 700; }
h2 { font-size: clamp(1.95rem, 4.2vw, 3.3rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); }
h4 { font-size: 1.1rem; letter-spacing: 0; }

h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 500;
  color: var(--warm-deep);
}

p { color: var(--ink-2); }
p + p { margin-top: 1em; }

::selection { background: var(--warm-tint); color: var(--ink); }

.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  background: var(--ink);
  color: var(--paper);
  padding: 8px 14px;
  border-radius: var(--radius);
  z-index: 200;
}
.skip-link:focus { top: 8px; }

/* ─── Utility bar ─────────────────────────────────────────────────── */
.utility-bar {
  background: var(--ink);
  color: var(--paper);
  height: var(--util-h);
  font-size: 13px;
  font-family: var(--mono);
  letter-spacing: 0.02em;
}
.utility-bar__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.util-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--warm-2);
  box-shadow: 0 0 0 0 rgba(232, 153, 103, 0.7);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(232, 153, 103, 0.7); }
  60%  { box-shadow: 0 0 0 10px rgba(232, 153, 103, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 153, 103, 0); }
}
.util-text { opacity: 0.92; }
.util-spacer { flex: 1; }
.util-phone {
  color: var(--paper);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.util-phone:hover { color: var(--warm-2); }
@media (max-width: 760px) {
  .util-text { display: none; }
  .utility-bar__inner { justify-content: space-between; }
}

/* ─── Header ──────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 241, 0.94);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  height: var(--header-h);
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: var(--display);
}
.brand:hover { color: var(--ink); }
.brand-mark {
  width: 42px; height: 42px;
  flex-shrink: 0;
}
.brand-word {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.brand-word small {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  margin-top: 2px;
}

.primary-nav {
  display: flex;
  gap: 2px;
  margin-left: auto;
}
.nav-link {
  padding: 8px 14px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  position: relative;
}
.nav-link:hover { color: var(--surgical-deep); background: var(--surgical-tint); }
.nav-link.is-active { color: var(--surgical-deep); }
.nav-link.is-active::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px;
  bottom: 0;
  height: 2px;
  background: var(--warm);
  border-radius: 2px;
}

.header-cta {
  margin-left: 8px;
}

.m-toggle {
  display: none;
  width: 44px; height: 44px;
  padding: 12px 10px;
  margin-left: auto;
}
.m-toggle__bar {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t-fast);
}
.m-toggle__bar + .m-toggle__bar { margin-top: 5px; }

@media (max-width: 980px) {
  .primary-nav, .header-cta { display: none; }
  .m-toggle { display: block; }
}

/* Mobile drawer */
.m-drawer {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--paper);
  display: none;
  flex-direction: column;
}
.m-drawer[hidden] { display: none !important; }
.m-drawer.is-open { display: flex; }
.m-drawer__inner {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}
.m-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.m-drawer__close {
  width: 44px; height: 44px;
  font-size: 20px;
  color: var(--ink);
}
.m-nav { display: flex; flex-direction: column; gap: 4px; }
.m-nav-link {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
}
.m-nav-link.is-active { color: var(--surgical-deep); }
.m-nav-link--cta {
  margin-top: 16px;
  background: var(--surgical-deep);
  color: var(--paper);
  padding: 16px 18px;
  border-radius: var(--radius);
  font-size: 1rem;
  text-align: center;
  font-family: var(--body);
  font-weight: 600;
}

/* ─── Layout helpers ──────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--wide { max-width: var(--container-wide); }

.section { padding: 88px 0; }
.section--snug { padding: 56px 0; }
.section--paper { background: var(--paper); }
.section--paper-2 { background: var(--paper-2); }
.section--ink { background: var(--ink); color: var(--paper); }
.section--ink h2, .section--ink h3 { color: var(--paper); }
.section--ink p { color: rgba(251, 247, 241, 0.85); }
.section--surgical { background: var(--surgical-deep); color: var(--paper); }
.section--surgical h2, .section--surgical h3 { color: var(--paper); }
.section--surgical p { color: rgba(230, 242, 243, 0.92); }

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-deep);
}
.section--ink .eyebrow,
.section--surgical .eyebrow { color: var(--warm-2); }

.lede { font-size: 1.2rem; line-height: 1.55; color: var(--ink-2); }
.section--ink .lede,
.section--surgical .lede { color: rgba(251, 247, 241, 0.88); }

.section-head {
  max-width: 760px;
  margin-bottom: 56px;
}
.section-head .eyebrow { margin-bottom: 12px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: 1.1rem; }

/* ─── Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform var(--t-fast), box-shadow var(--t), background var(--t-fast), color var(--t-fast);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--surgical-deep);
  color: var(--paper);
}
.btn--primary:hover {
  background: var(--surgical-2);
  color: var(--paper);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(13, 85, 96, 0.28);
}
.btn--warm {
  background: var(--warm);
  color: var(--paper);
}
.btn--warm:hover {
  background: var(--warm-deep);
  color: var(--paper);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(217, 119, 70, 0.32);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--line);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.section--ink .btn--ghost, .section--surgical .btn--ghost {
  color: var(--paper);
  border-color: rgba(251,247,241,0.32);
}
.section--ink .btn--ghost:hover, .section--surgical .btn--ghost:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--block { width: 100%; justify-content: center; }
.btn .arrow { transition: transform var(--t-fast); }
.btn:hover .arrow { transform: translateX(3px); }

/* ─── Hero ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--paper);
  padding: 72px 0 96px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -8%; right: -12%;
  width: 56vw; height: 56vw;
  max-width: 720px; max-height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--warm-tint), transparent 65%);
  z-index: 0;
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  z-index: 1;
}
@media (max-width: 980px) {
  .hero { padding: 48px 0 64px; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
}
.hero__eyebrow {
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__title {
  font-size: clamp(2.8rem, 6.5vw, 5.4rem);
  line-height: 0.99;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.hero__kicker {
  font-style: italic;
  font-weight: 500;
  color: var(--warm-deep);
}
.hero__sub {
  font-size: 1.2rem;
  color: var(--ink-2);
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.55;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero__cred {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
  font-size: 13px;
  font-family: var(--mono);
  color: var(--ink-3);
  letter-spacing: 0.02em;
}
.hero__cred span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__cred .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--surgical-2);
}
.hero__cred .dot--warm { background: var(--warm); }
.hero__cred .dot--olive { background: var(--olive); }

.hero__art {
  position: relative;
}
.hero__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  background: var(--paper-2);
  box-shadow:
    0 30px 60px -30px rgba(12, 31, 36, 0.35),
    0 0 0 1px var(--line-soft);
}
.hero__badge {
  position: absolute;
  bottom: -22px; left: -22px;
  background: var(--warm);
  color: var(--paper);
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.1;
  box-shadow: 0 14px 28px -10px rgba(217, 119, 70, 0.55);
  max-width: 220px;
  transform: rotate(-3deg);
}
.hero__badge small {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 4px;
  opacity: 0.85;
  font-weight: 400;
}
@media (max-width: 540px) {
  .hero__badge { left: 12px; bottom: -16px; padding: 14px 18px; font-size: 0.95rem; }
}

/* ─── Stats / strip ───────────────────────────────────────────────── */
.stat-strip {
  background: var(--paper-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 36px 0;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
}
@media (max-width: 860px) {
  .stat-row { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
.stat__n {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: var(--surgical-deep);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat__l {
  font-size: 13px;
  color: var(--ink-3);
  font-family: var(--mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* ─── Flat-rate package callout ───────────────────────────────────── */
.package-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-soft);
  box-shadow: 0 30px 60px -40px rgba(12, 31, 36, 0.4);
  padding: 56px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 760px) {
  .package-card { padding: 36px 24px; }
}
.package-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 220px; height: 220px;
  background: radial-gradient(circle, var(--warm-tint), transparent 60%);
  z-index: 0;
}
.package-card__inner { position: relative; z-index: 1; }
.package-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
.package-card__title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.package-card__price {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--warm-deep);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.included {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 36px;
}
@media (max-width: 720px) {
  .included { grid-template-columns: 1fr; gap: 16px; }
}
.included li {
  list-style: none;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
}
.included li::before {
  content: '';
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--surgical-tint);
  background-image:
    linear-gradient(45deg, transparent 50%, var(--surgical) 50%),
    linear-gradient(-45deg, var(--surgical) 50%, transparent 50%);
  background-size: 9px 9px;
  background-position: 6px 11px, 11px 11px;
  background-repeat: no-repeat;
  margin-top: 1px;
}
.included li strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-family: var(--display);
  font-size: 17px;
  margin-bottom: 2px;
}

/* ─── Services grid ───────────────────────────────────────────────── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: transform var(--t-fast), box-shadow var(--t), border-color var(--t-fast);
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--ink);
}
.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px -22px rgba(12, 31, 36, 0.3);
  border-color: var(--surgical-2);
  color: var(--ink);
}
.svc-card__icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--surgical-tint);
  color: var(--surgical-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.svc-card--featured .svc-card__icon {
  background: var(--warm);
  color: var(--paper);
}
.svc-card__name {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.svc-card__desc {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.55;
  flex: 1;
}
.svc-card__more {
  font-size: 13px;
  font-weight: 600;
  font-family: var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--surgical-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.svc-card:hover .svc-card__more { color: var(--warm-deep); }

/* ─── Locations callout ───────────────────────────────────────────── */
.loc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 820px) { .loc-row { grid-template-columns: 1fr; } }
.loc-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.loc-card__name {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.loc-card__name small {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm-deep);
  margin-bottom: 6px;
}
.loc-card__addr {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
}
.loc-card__hours {
  font-size: 13px;
  font-family: var(--mono);
  color: var(--ink-3);
  border-top: 1px solid var(--line-soft);
  padding-top: 16px;
  letter-spacing: 0.02em;
}
.loc-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--surgical-deep);
}

/* ─── Process / steps ─────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 960px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }
.step {
  padding-top: 22px;
  border-top: 2px solid var(--paper-3);
  position: relative;
}
.section--surgical .step,
.section--ink .step {
  border-top-color: rgba(251, 247, 241, 0.22);
}
.step__n {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--warm-2);
  margin-bottom: 10px;
  font-weight: 500;
}
.step__name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.section--surgical .step__name,
.section--ink .step__name { color: var(--paper); }
.step__desc {
  font-size: 14.5px;
  line-height: 1.55;
}

/* ─── Pull quote / testimonial ────────────────────────────────────── */
.pullquote {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.pullquote__body {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.25;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin-bottom: 28px;
}
.section--surgical .pullquote__body,
.section--ink .pullquote__body { color: var(--paper); }
.pullquote__body em {
  font-style: italic;
  color: var(--warm-deep);
  font-weight: 500;
}
.section--ink .pullquote__body em,
.section--surgical .pullquote__body em { color: var(--warm-2); }
.pullquote__attrib {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
}
.section--surgical .pullquote__attrib,
.section--ink .pullquote__attrib { color: rgba(251, 247, 241, 0.78); }

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 960px) { .review-grid { grid-template-columns: 1fr; } }
.review-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-card__stars {
  color: var(--warm);
  font-size: 14px;
  letter-spacing: 2px;
}
.review-card__body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.005em;
  flex: 1;
}
.review-card__author {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  border-top: 1px solid var(--line-soft);
  padding-top: 14px;
}

/* ─── Cred badges / about block ───────────────────────────────────── */
.cred-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  max-width: 720px;
}
@media (max-width: 620px) { .cred-list { grid-template-columns: 1fr; } }
.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.45;
}
.cred-item::before {
  content: '✦';
  color: var(--warm);
  font-size: 14px;
  line-height: 1.45;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }
.about-grid__img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--paper-2);
  box-shadow:
    0 30px 60px -30px rgba(12, 31, 36, 0.35),
    0 0 0 1px var(--line-soft);
}

/* ─── Team grid ───────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 22px;
}
@media (max-width: 980px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
.team-card { text-align: left; }
.team-card__avatar {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  background: var(--paper-2);
  object-fit: cover;
  margin-bottom: 14px;
  box-shadow: 0 0 0 1px var(--line-soft);
}
.team-card__name {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.team-card__role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-deep);
}

/* ─── Team detail (Dr. Simon) ─────────────────────────────────────── */
.bio-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 920px) { .bio-grid { grid-template-columns: 1fr; gap: 40px; } }
.bio-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  object-fit: cover;
  background: var(--paper-2);
  box-shadow: 0 30px 60px -30px rgba(12, 31, 36, 0.35), 0 0 0 1px var(--line-soft);
}
.bio-prose { font-size: 17px; line-height: 1.72; }
.bio-prose p { margin-bottom: 1.1em; }
.bio-prose p:last-child { margin-bottom: 0; }

/* ─── Contact ─────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.contact-block {
  border-top: 1px solid var(--line-soft);
  padding-top: 24px;
  margin-bottom: 28px;
}
.contact-block:last-child { margin-bottom: 0; }
.contact-block__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-deep);
  margin-bottom: 12px;
}
.contact-block__value {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 4px;
}
.contact-block__value a { color: var(--ink); }
.contact-block__value a:hover { color: var(--surgical-deep); }
.contact-block__meta {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 30px 60px -40px rgba(12, 31, 36, 0.35);
}
@media (max-width: 720px) { .form-card { padding: 28px 22px; } }
.form-card h3 { margin-bottom: 8px; }
.form-card .form-lede {
  font-size: 14.5px;
  color: var(--ink-2);
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; gap: 12px; } }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 12px;
  font-family: var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 6px;
  font-weight: 500;
}
.field input, .field textarea, .field select {
  width: 100%;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  background: var(--white);
  border-color: var(--surgical-2);
  box-shadow: 0 0 0 4px rgba(26, 136, 150, 0.16);
}
.field textarea { resize: vertical; min-height: 110px; }
.field .helper {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 6px;
  font-family: var(--mono);
  letter-spacing: 0.02em;
}
.field--honeypot {
  position: absolute;
  left: -10000px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.map-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background: var(--paper-2);
  margin-top: 16px;
}

/* ─── Footer ──────────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(251, 247, 241, 0.75);
  padding: 64px 0 32px;
}
.site-footer .container { max-width: var(--container-wide); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--paper);
}
.footer-brand .brand-mark { filter: invert(1) brightness(1.6); }
.footer-brand-word {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--paper);
}
.footer-tag {
  font-size: 14px;
  color: rgba(251, 247, 241, 0.7);
  line-height: 1.5;
  max-width: 340px;
}
.footer-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm-2);
  margin-bottom: 14px;
}
.footer-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-list a {
  color: rgba(251, 247, 241, 0.78);
  font-size: 14.5px;
}
.footer-list a:hover { color: var(--paper); }
.footer-bar {
  border-top: 1px solid rgba(251, 247, 241, 0.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(251, 247, 241, 0.55);
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── Misc ────────────────────────────────────────────────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 760px) { .grid-2 { grid-template-columns: 1fr; gap: 24px; } }

.tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--surgical-tint);
  color: var(--surgical-deep);
  padding: 4px 10px;
  border-radius: 999px;
}
.tag--warm {
  background: var(--warm-tint);
  color: var(--warm-deep);
}

.divider {
  height: 1px;
  background: var(--line-soft);
  margin: 0 auto;
  max-width: 100%;
}

/* Page-specific bg variants */
.page--about,
.page--team,
.page--locations,
.page--contact,
.page--services,
.page--service,
.page--reviews,
.page--faq,
.page--news { background: var(--paper); }

/* ─── FAQ accordion ───────────────────────────────────────────────── */
.faq-item {
  border-top: 1px solid var(--line-soft);
  padding: 4px 0;
}
.faq-item:last-of-type { border-bottom: 1px solid var(--line-soft); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 40px 22px 0;
  position: relative;
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  transition: color var(--t-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--warm-deep);
  transition: transform var(--t);
  line-height: 1;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { color: var(--surgical-deep); }
.faq-body {
  padding: 0 0 22px 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 760px;
}
.faq-body p + p { margin-top: 0.9em; }

/* ─── News / blog index ───────────────────────────────────────────── */
.news-group {
  margin-bottom: 56px;
}
.news-group__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 2px solid var(--warm);
  padding-bottom: 14px;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.news-group__title {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.news-group__count {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-deep);
}
.news-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 28px;
}
@media (max-width: 720px) { .news-list { grid-template-columns: 1fr; } }
.news-list li {
  border-bottom: 1px solid var(--line-soft);
}
.news-list a {
  display: block;
  padding: 12px 0;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.4;
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.news-list a:hover {
  color: var(--surgical-deep);
  padding-left: 6px;
}
