/* ============================================================
   Contentator — "Chrysalis" render theme
   Premium, discreet surgery design system (ivory + blush + espresso).
   Brand-adapted.
   ============================================================ */

:root {
  --paper: #f4efe8;         /* page background, warm ivory */
  --paper-2: #ffffff;       /* white — alternating sections, cards, form panel */
  --ink: #211d19;           /* warm near-black — primary text, dark button hover */
  --ink-2: #726a5f;         /* warm grey — body copy, captions, secondary text */
  --accent: #c0868f;        /* blush rose */
  --accent-soft: #f0e0e1;   /* pale blush */
  --dark: #191511;          /* deep espresso — dark sections, footer */
  --line: rgba(33,29,25,0.12);
  --dark-head: #efe9df;     /* headings on dark */
  --dark-body: rgba(239,233,223,0.80);
  --dark-muted: rgba(239,233,223,0.58);
  --dark-line: rgba(255,255,255,0.12);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --maxw: 1280px;
  --pad: 44px;
}

  /* Brand overrides (design adaptation): Chrysalis template in the site's brand colours/fonts */
  :root {
    --accent: #c0868f;
    --accent-soft: color-mix(in srgb, #c0868f 22%, #fff);
    --ink: #211d19;
    --ink-2: color-mix(in srgb, #211d19 62%, var(--paper));
    --line: color-mix(in srgb, #211d19 12%, transparent);
  }

  /* Design layer: corners + flourish + fonts from the design system (luxury-editorial) */
  :root {
    --radius: 14px;
    --radius-lg: 22px;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  }
  .eyebrow::before { width: 24px; height: 1px; border-radius: 0; }

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--paper);
  color: var(--ink-2);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; color: var(--ink); letter-spacing: -0.01em; line-height: 1.06; }
h1 { font-size: clamp(42px, 6vw, 78px); line-height: 1.03; }
h2 { font-size: clamp(32px, 4.3vw, 52px); }
h3 { font-size: 25px; font-weight: 500; line-height: 1.15; }
h4 { font-size: 23px; font-weight: 500; line-height: 1.2; }
p { text-wrap: pretty; }

/* ---- Eyebrow: 7×7 accent dot + wide-tracked uppercase label (signature) ---- */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px; font-weight: 400; text-transform: uppercase;
  color: var(--ink-2); letter-spacing: 0.26em;
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px;
}
.eyebrow::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.on-dark .eyebrow, .dark-banner .eyebrow { color: var(--dark-muted); }

/* ---- Buttons (pill) ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 28px;
  font-family: var(--sans); font-size: 14px; font-weight: 500; letter-spacing: 0.01em;
  border-radius: 999px;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
  border: 1px solid transparent; white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--ink); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); background: var(--paper); }
.btn-block { width: 100%; justify-content: center; }
/* On a photo/dark surface */
.on-photo .btn-primary, .btn-on-photo { background: #fff; color: var(--ink); }
.on-photo .btn-primary:hover, .btn-on-photo:hover { background: var(--accent); color: #fff; }
.on-photo .btn-ghost, .btn-ghost-photo { color: #fff; border-color: rgba(255,255,255,0.45); }
.on-photo .btn-ghost:hover, .btn-ghost-photo:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.85); }
.on-dark .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.4); }
.on-dark .btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* ============================================ HEADER (fixed, scroll-reactive) ============================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  padding: 22px var(--pad);
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background .45s ease, border-color .45s ease;
}
.site-header.scrolled {
  background: rgba(244,239,232,0.92);
  backdrop-filter: saturate(150%) blur(14px);
  border-bottom-color: var(--line);
}
/* colours: white at rest (over photo hero / dark banner), ink when scrolled */
.header-logo, .header-nav a, .header-burger { color: #fff; transition: color .45s ease; }
.header-nav a { color: rgba(255,255,255,0.9); }
.site-header.scrolled .header-logo,
.site-header.scrolled .header-nav a,
.site-header.scrolled .header-burger { color: var(--ink); }
/* solid variant: pages that start on a light background (blog post, legal) */
.site-header.solid { background: rgba(244,239,232,0.92); backdrop-filter: saturate(150%) blur(14px); border-bottom-color: var(--line); }
.site-header.solid .header-logo, .site-header.solid .header-nav a, .site-header.solid .header-burger { color: var(--ink); }

.header-logo { display: inline-flex; align-items: baseline; gap: 11px; }
.header-logo .logo-name { font-family: var(--serif); font-size: 27px; font-weight: 500; letter-spacing: 0.015em; line-height: 1; }
.header-logo .logo-suffix { font-family: var(--sans); font-size: 10.5px; font-weight: 400; letter-spacing: 0.36em; text-transform: uppercase; opacity: 0.85; }
.header-logo img { max-height: calc(48px * var(--logo-scale, 1)); width: auto; }

.header-nav { display: flex; align-items: center; gap: 30px; }
.header-nav a { font-family: var(--sans); font-size: 13.5px; font-weight: 400; letter-spacing: 0.01em; position: relative; }
.header-nav a:hover { opacity: 1; color: var(--accent); }
.header-nav .nav-item.active > a { color: #fff; }
.site-header.scrolled .header-nav .nav-item.active > a { color: var(--ink); }
.header-nav .nav-item.active > a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -7px; height: 1.5px; background: var(--accent); }
/* dropdown */
.header-nav .has-children { position: relative; }
.header-nav .nav-dropdown { position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(6px); min-width: 210px; background: var(--paper-2); border: 1px solid var(--line); border-radius: 10px; box-shadow: 0 20px 50px -24px rgba(33,29,25,0.4); padding: 8px; opacity: 0; visibility: hidden; transition: opacity .2s ease, transform .2s ease, visibility .2s; }
.header-nav .has-children:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.header-nav .nav-dropdown a { display: block; padding: 9px 14px; border-radius: 7px; color: var(--ink-2); font-size: 13.5px; }
.header-nav .nav-dropdown a:hover { background: var(--paper); color: var(--ink); }

.header-cta { font-size: 13px; padding: 13px 22px; }
.header-burger { display: none; width: 44px; height: 44px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.header-burger span { width: 24px; height: 2px; background: currentColor; border-radius: 2px; }

@media (max-width: 900px) {
  .header-nav, .header-cta { display: none; }
  .header-burger { display: flex; }
}

/* ---- Mobile drawer ---- */
.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 200;
  width: min(86vw, 380px); height: 100%;
  background: var(--dark); color: var(--dark-head);
  padding: 24px 30px 40px; overflow-y: auto;
  transform: translateX(100%); opacity: 0; pointer-events: none;
  box-shadow: -30px 0 70px -30px rgba(0,0,0,0.55);
  transition: transform .42s cubic-bezier(.4,0,.2,1), opacity .42s ease;
}
body.menu-open .mobile-menu { transform: translateX(0); opacity: 1; pointer-events: auto; }
.mobile-close { width: 44px; height: 44px; font-size: 30px; line-height: 1; color: var(--dark-head); margin-left: auto; display: block; }
.mobile-nav { display: flex; flex-direction: column; margin-top: 8px; }
.mobile-nav a { font-family: var(--serif); font-size: 25px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-menu .btn { margin-top: 28px; }

/* ============================================ HERO (full-bleed photo, double scrim) ============================================ */
.hero { position: relative; min-height: 100vh; padding: 124px var(--pad) 96px; display: flex; align-items: flex-end; overflow: hidden; }
.hero.service-hero { min-height: 84vh; padding-bottom: 92px; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background-color: var(--dark); background-size: cover; background-position: center; }
.hero-bg::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14,11,8,.82) 0%, rgba(14,11,8,.5) 38%, rgba(14,11,8,.12) 68%, rgba(14,11,8,0) 100%); }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,11,8,.45) 0%, rgba(14,11,8,0) 30%, rgba(14,11,8,.35) 70%, rgba(14,11,8,.9) 100%); }
.hero-inner { position: relative; z-index: 1; max-width: var(--maxw); width: 100%; margin: 0 auto; color: #fff; }
.hero-content { max-width: 860px; }
.hero .eyebrow { color: rgba(255,255,255,0.85); }
.hero .eyebrow::before { background: var(--accent); }
.hero h1 { color: #fff; margin-bottom: 26px; }
.hero .lead { font-size: 19px; font-weight: 300; line-height: 1.6; color: rgba(255,255,255,0.9); max-width: 560px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero .breadcrumb-photo { display: inline-block; font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-bottom: 22px; }
.hero .breadcrumb-photo:hover { color: #fff; }

/* ============================================ DARK BANNER (inner page header) ============================================ */
.dark-banner { background: var(--dark); color: var(--dark-head); padding: 196px 0 120px; }
.dark-banner h1 { color: var(--dark-head); max-width: 15ch; margin-bottom: 26px; }
.dark-banner .lead { font-size: 20px; font-weight: 300; line-height: 1.62; color: var(--dark-body); max-width: 640px; }
.dark-banner .breadcrumb { color: var(--dark-muted); }

/* ============================================ SECTIONS ============================================ */
.section { padding: 120px 0 128px; }
.section.on-paper { background: var(--paper); }
.section.on-white { background: var(--paper-2); }
.section.on-dark { background: var(--dark); color: var(--dark-body); }
.section.on-dark h2, .section.on-dark h3 { color: var(--dark-head); }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 64px; }
.section-head .head-left { max-width: 640px; }
.section-head .head-note { max-width: 340px; font-size: 17px; color: var(--ink-2); }
.section.on-dark .section-head .head-note { color: var(--dark-body); }
@media (max-width: 820px) { .section-head { flex-direction: column; align-items: flex-start; gap: 20px; } }

/* Approach (centred statement) */
.approach { padding: 128px 0; text-align: center; }
.approach-inner { max-width: 960px; margin: 0 auto; }
.approach .eyebrow { justify-content: center; }
.approach h2 { text-wrap: pretty; margin-bottom: 28px; }
.approach p { font-size: 19px; font-weight: 300; line-height: 1.68; color: var(--ink-2); max-width: 720px; margin: 0 auto; }

/* ---- Services grid (cards) ---- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; transition: transform .4s ease, box-shadow .4s ease; }
a.service-card:hover, .service-card.hoverable:hover { transform: translateY(-5px); box-shadow: 0 24px 50px -28px rgba(33,29,25,.35); }
.service-card .card-img { aspect-ratio: 16/10; background: var(--placeholder, repeating-linear-gradient(135deg,#ece5db,#ece5db 12px,#e3dcd0 12px,#e3dcd0 24px)); background-size: cover; background-position: center; }
.service-card .card-body { padding: 30px 28px 32px; display: flex; flex-direction: column; flex: 1; gap: 12px; }
.service-card .card-num { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--accent); }
.service-card h3 { font-size: 26px; }
.service-card p { font-size: 15px; font-weight: 300; line-height: 1.6; color: var(--ink-2); flex: 1; }
.service-card .card-link { font-size: 14px; font-weight: 500; color: var(--ink); display: inline-flex; gap: 6px; margin-top: auto; }
.service-card .card-link .arr { color: var(--accent); }
.service-card.prompt-card { border-style: dashed; background: transparent; justify-content: center; }
.service-card.prompt-card .card-body { justify-content: center; }
.service-card.prompt-card h3 { font-style: italic; font-weight: 400; }
@media (max-width: 1024px) and (min-width: 821px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 820px) { .services-grid { grid-template-columns: 1fr; } }

/* ---- Procedure rule-grid ---- */
.procedures-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.procedure-cell { padding: 38px 34px 40px; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); }
.procedure-cell:nth-child(3n) { border-right: none; }
.procedure-cell .card-num { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--accent); display: block; margin-bottom: 12px; }
.procedure-cell h3 { font-size: 25px; margin-bottom: 10px; }
.procedure-cell p { font-size: 15px; font-weight: 300; line-height: 1.6; color: var(--ink-2); }
.procedure-cell.prompt { background: var(--paper); grid-column: span 2; display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.procedure-cell.prompt .prompt-line { font-family: var(--serif); font-style: italic; font-size: 24px; color: var(--ink); }
.procedure-cell.prompt a { font-size: 14px; font-weight: 500; color: var(--ink); display: inline-flex; gap: 6px; }
.procedure-cell.prompt a .arr { color: var(--accent); }
@media (max-width: 820px) { .procedures-grid { grid-template-columns: 1fr; } .procedure-cell { border-right: none; } .procedure-cell.prompt { grid-column: auto; } }

/* ---- Process steps (what to expect, on dark) ---- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; }
.process-step { border-top: 1px solid rgba(255,255,255,0.2); padding-top: 26px; }
.process-step .step-num { font-family: var(--serif); font-size: 30px; color: var(--accent); display: block; margin-bottom: 14px; }
.process-step h3 { font-size: 23px; color: var(--dark-head); margin-bottom: 10px; }
.process-step p { font-size: 14.5px; font-weight: 300; line-height: 1.6; color: var(--dark-body); }
@media (max-width: 1024px) and (min-width: 821px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 820px) { .process-grid { grid-template-columns: 1fr; } }

/* ---- Stats row ---- */
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.stats-row.cols-4 { grid-template-columns: repeat(4, 1fr); }
.stat .stat-value { font-family: var(--serif); font-size: clamp(40px, 5vw, 64px); line-height: 1.02; color: var(--ink); display: block; }
.section.on-dark .stat .stat-value { color: var(--dark-head); }
.stat .stat-label { font-size: 14px; font-weight: 300; color: var(--ink-2); margin-top: 10px; max-width: 220px; }
.section.on-dark .stat .stat-label { color: var(--dark-muted); }
@media (max-width: 820px) { .stats-row, .stats-row.cols-4 { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 520px) { .stats-row, .stats-row.cols-4 { grid-template-columns: 1fr; } }
/* Home surgeon band: bordered stat row above the portrait split */
.surgeon-band .surgeon-stats { grid-template-columns: repeat(3, 1fr); padding-bottom: 74px; margin-bottom: 74px; border-bottom: 1px solid var(--dark-line); }
@media (max-width: 820px) { .surgeon-band .surgeon-stats { grid-template-columns: 1fr; padding-bottom: 48px; margin-bottom: 48px; } }

/* ---- Surgeon / feature split ---- */
.feature-split { display: grid; grid-template-columns: 0.82fr 1fr; gap: 64px; align-items: center; }
.feature-media { aspect-ratio: 4/5; border-radius: 10px; overflow: hidden; background: repeating-linear-gradient(135deg,#ece5db,#ece5db 12px,#e3dcd0 12px,#e3dcd0 24px); }
.feature-media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.feature-text h2 { margin-bottom: 22px; }
.feature-text .role-line { color: var(--accent); font-size: 14px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 18px; }
.feature-text p { font-size: 17px; font-weight: 300; line-height: 1.7; color: var(--ink-2); margin-bottom: 18px; max-width: 560px; }
.section.on-dark .feature-text p { color: var(--dark-body); }
.feature-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.feature-pills span { border: 1px solid rgba(255,255,255,0.22); border-radius: 999px; padding: 8px 16px; font-size: 13px; }
.section.on-paper .feature-pills span, .section.on-white .feature-pills span { border-color: var(--line); color: var(--ink-2); }
@media (max-width: 820px) { .feature-split { grid-template-columns: 1fr; gap: 40px; } }

/* ---- FAQ ---- */
.faq-list { max-width: 900px; }
.faq-item { border-top: 1px solid var(--line); padding: 32px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q { font-family: var(--serif); font-size: 24px; font-weight: 500; color: var(--ink); }
.faq-a { font-size: 16px; font-weight: 300; line-height: 1.66; color: var(--ink-2); max-width: 720px; margin-top: 14px; }
.faq-a > :last-child { margin-bottom: 0; }

/* ---- Consultation CTA (hairline-bounded, centred) ---- */
.cta-band { padding: 128px 0; }
.cta-inner { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 74px 0; text-align: center; }
.cta-inner .eyebrow { justify-content: center; }
.cta-inner h2 { max-width: 16ch; margin: 0 auto 20px; }
.cta-inner p { font-size: 18px; font-weight: 300; color: var(--ink-2); max-width: 520px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- Testimonials ---- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: 10px; padding: 34px 32px; display: flex; flex-direction: column; gap: 20px; }
.testi-card .quote { font-family: var(--serif); font-size: 22px; font-style: italic; line-height: 1.4; color: var(--ink); flex: 1; }
.testi-card .who { font-size: 14px; color: var(--ink-2); }
.testi-card .who strong { display: block; font-weight: 500; color: var(--ink); font-family: var(--sans); }
@media (max-width: 1024px) and (min-width: 821px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 820px) { .testi-grid { grid-template-columns: 1fr; } }

/* ---- Team ---- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card .team-photo { aspect-ratio: 4/5; border-radius: 10px; overflow: hidden; background: repeating-linear-gradient(135deg,#ece5db,#ece5db 12px,#e3dcd0 12px,#e3dcd0 24px); margin-bottom: 20px; }
.team-card .team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 24px; margin-bottom: 6px; }
.team-card .team-role { color: var(--accent); font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.team-card .team-bio { font-size: 15px; font-weight: 300; line-height: 1.6; color: var(--ink-2); }
@media (max-width: 820px) { .team-grid { grid-template-columns: 1fr; } }

/* ============================================ SERVICE / RICH CONTENT ============================================ */
.prose { color: var(--ink-2); }
.prose p { font-size: 18px; font-weight: 300; line-height: 1.75; margin-bottom: 22px; }
.prose h2 { font-size: clamp(28px, 3.4vw, 40px); margin: 44px 0 18px; }
.prose h3 { margin: 32px 0 14px; }
.prose ul, .prose ol { margin: 0 0 24px; padding-left: 22px; font-size: 18px; font-weight: 300; line-height: 1.7; }
.prose li { margin-bottom: 12px; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose blockquote { margin: 44px 0; padding: 8px 0 8px 32px; border-left: 2px solid var(--accent); font-family: var(--serif); font-style: italic; font-size: 27px; line-height: 1.4; color: var(--ink); }

/* ============================================ CONTACT ============================================ */
.contact-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 72px; align-items: start; }
.contact-details .detail { margin-bottom: 34px; }
.contact-details .detail .label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.22em; color: var(--ink-2); margin-bottom: 10px; }
.contact-details .detail .big { font-family: var(--serif); font-size: 26px; color: var(--ink); word-break: break-word; }
.contact-details .detail .big:hover { color: var(--accent); }
.contact-details .detail p { font-size: 16px; font-weight: 300; color: var(--ink-2); line-height: 1.6; }
.contact-map { aspect-ratio: 16/9; border-radius: 10px; overflow: hidden; background: repeating-linear-gradient(135deg,#ece5db,#ece5db 12px,#e3dcd0 12px,#e3dcd0 24px); display: grid; place-items: center; }
.contact-map .map-pin { background: var(--ink); color: #fff; padding: 10px 18px; border-radius: 999px; font-size: 13px; font-weight: 500; }
.form-panel { background: var(--paper-2); border: 1px solid var(--line); border-radius: 14px; padding: 52px 52px 56px; }
.form-panel h2 { font-size: 26px; font-weight: 500; margin-bottom: 8px; }
.form-panel .form-note { font-size: 14.5px; font-weight: 300; color: var(--ink-2); margin-bottom: 28px; }
.lead-form { display: flex; flex-direction: column; gap: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-2); }
.form-group label .req { color: var(--accent); }
.form-input, .form-textarea, .form-select { width: 100%; background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: 14px 15px; font-size: 15px; color: var(--ink); transition: border-color .25s ease, background .25s ease; }
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: var(--accent); background: #fff; }
.form-textarea { resize: vertical; min-height: 118px; font-family: var(--sans); }
.form-fine { font-size: 12.5px; font-weight: 300; line-height: 1.6; color: var(--ink-2); }
.form-status { font-size: 14px; color: var(--ink-2); min-height: 1.2em; }
.lead-thanks { min-height: 420px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 16px; }
.lead-thanks .check { width: 56px; height: 56px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; font-size: 26px; }
.lead-thanks h3 { font-size: 34px; font-weight: 400; }
.lead-thanks p { font-size: 17px; font-weight: 300; color: var(--ink-2); max-width: 420px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } .form-panel { padding: 32px 24px 36px; } .form-row { grid-template-columns: 1fr; } }

/* ============================================ JOURNAL (blog) ============================================ */
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 28px; }
.journal-grid.cols-4 { grid-template-columns: repeat(4, 1fr); gap: 22px; }
.journal-card { display: flex; flex-direction: column; gap: 14px; }
.journal-card .j-img { position: relative; aspect-ratio: 3/2; border-radius: 10px; overflow: hidden; background: repeating-linear-gradient(135deg,#ece5db,#ece5db 12px,#e3dcd0 12px,#e3dcd0 24px); }
.journal-grid.cols-4 .journal-card .j-img { aspect-ratio: 3/4; }
.journal-card .j-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.journal-card:hover .j-img img { transform: scale(1.04); }
.j-pill { position: absolute; top: 14px; left: 14px; background: var(--dark); color: #fff; padding: 6px 12px; border-radius: 999px; font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; }
.journal-card .j-meta { font-size: 12px; font-weight: 300; color: var(--ink-2); }
.journal-card h3 { font-size: 23px; font-weight: 500; }
.journal-card:hover h3 { color: var(--accent); }
.journal-card p { font-size: 15px; font-weight: 300; line-height: 1.6; color: var(--ink-2); }
.journal-card .j-author { font-size: 13px; font-weight: 300; color: var(--ink-2); margin-top: auto; }
@media (max-width: 1024px) { .journal-grid, .journal-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .journal-grid, .journal-grid.cols-4 { grid-template-columns: 1fr; } }

/* Featured post */
.featured-post { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.featured-post .f-img { aspect-ratio: 4/3; border-radius: 12px; overflow: hidden; background: repeating-linear-gradient(135deg,#ece5db,#ece5db 12px,#e3dcd0 12px,#e3dcd0 24px); position: relative; }
.featured-post .f-img img { width: 100%; height: 100%; object-fit: cover; }
.featured-post .f-eyebrow { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.featured-post h2 { font-size: clamp(30px, 3.6vw, 48px); margin-bottom: 18px; }
.featured-post p { font-size: 17px; font-weight: 300; color: var(--ink-2); margin-bottom: 22px; }
@media (max-width: 820px) { .featured-post { grid-template-columns: 1fr; gap: 32px; } }

/* ============================================ ARTICLE (journal post) ============================================ */
.article-header { max-width: 760px; margin: 0 auto; padding: 150px var(--pad) 0; }
.article-header .breadcrumb { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 24px; }
.article-header .a-tags { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.article-header h1 { font-size: clamp(36px, 5vw, 62px); line-height: 1.05; margin-bottom: 32px; }
.article-author { display: flex; align-items: center; gap: 14px; border-bottom: 1px solid var(--line); padding-bottom: 40px; }
.article-author .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; font-family: var(--serif); }
.article-author .a-name { font-size: 14.5px; font-weight: 500; color: var(--ink); }
.article-author .a-meta { font-size: 13px; font-weight: 300; color: var(--ink-2); }
.article-hero { max-width: 1080px; margin: 52px auto 0; padding: 0 var(--pad); }
.article-hero img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 14px; }
.article-body { max-width: 720px; margin: 0 auto; padding: 60px var(--pad) 0; }
.article-body .lead { font-size: 20px; font-weight: 300; line-height: 1.7; color: var(--ink-2); margin-bottom: 24px; }
.article-foot { max-width: 720px; margin: 0 auto; padding: 40px var(--pad) 0; }
.article-foot-inner { border-top: 1px solid var(--line); padding-top: 32px; display: flex; gap: 16px; flex-wrap: wrap; }
.related { border-top: 1px solid var(--line); }

/* ============================================ FOOTER ============================================ */
.site-footer { background: var(--dark); color: var(--dark-head); padding: 88px 0 40px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 64px; border-bottom: 1px solid var(--dark-line); }
.footer-brand .header-logo .logo-name { color: var(--dark-head); font-size: 28px; }
.footer-brand .tagline { font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--dark-body); max-width: 280px; margin-top: 16px; }
.footer-col h5 { font-size: 11px; font-weight: 400; text-transform: uppercase; letter-spacing: 0.24em; color: var(--dark-muted); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col p { color: var(--dark-body); font-size: 14px; font-weight: 300; }
.footer-col a:hover { color: #fff; }
.footer-col .fc-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--dark-muted); margin-top: 14px; margin-bottom: 4px; }
.footer-bottom { padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom span { font-size: 12.5px; color: var(--dark-muted); }
.footer-legal { display: flex; gap: 26px; list-style: none; }
.footer-legal a { font-size: 12.5px; color: var(--dark-muted); }
.footer-legal a:hover { color: var(--dark-head); }
@media (max-width: 820px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }

/* ============================================ LEAD MODAL ============================================ */
.modal-overlay { position: fixed; inset: 0; z-index: 300; background: rgba(25,21,17,0.55); display: flex; align-items: center; justify-content: center; padding: 16px; }
.modal-overlay[hidden] { display: none; }
.modal-dialog { position: relative; width: 100%; max-width: 480px; max-height: 90vh; overflow-y: auto; background: var(--paper); border-radius: 14px; box-shadow: 0 24px 60px rgba(25,21,17,0.3); padding: 44px; }
.modal-close { position: absolute; top: 16px; right: 20px; font-size: 28px; line-height: 1; color: var(--ink-2); }
.modal-close:hover { color: var(--ink); }
.modal-dialog h2 { font-size: 28px; font-weight: 500; margin-bottom: 8px; padding-right: 24px; }
.modal-sub { font-size: 15px; font-weight: 300; color: var(--ink-2); margin-bottom: 24px; }
.modal-dialog .lead-form { gap: 18px; }

/* ============================================ A11Y ============================================ */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
@media (max-width: 640px) { :root { --pad: 20px; } .section { padding: 92px 0 72px; } .dark-banner { padding: 150px 0 92px; } .cta-band, .approach { padding: 92px 0; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; } }
