
  :root {
    --bg: #F9F8F6;
    --white: #FFFFFF;
    --ink: #3B2F2A;
    --mid: #5C5C58;
    --muted: #9A9A94;
    --rule: rgba(26,26,24,0.1);
    --sage: #4E6B52;
    --sage-light: #EBF0EC;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(249,248,246,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--rule);
  }

  .nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-logo {
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    cursor: pointer;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
  }

  .nav-item { position: relative; }

  .nav-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.9rem;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mid);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
  }

  .nav-link:hover { color: var(--ink); }

  .nav-link svg {
    width: 10px; height: 10px;
    transition: transform 0.2s;
  }

  .nav-item.open .nav-link svg { transform: rotate(180deg); }

  .dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: 4px;
    padding: 0.5rem 0;
    min-width: 320px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    box-shadow: 0 4px 24px rgba(26,26,24,0.07);
  }

  .nav-item.open .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown-link {
    display: block;
    padding: 0.6rem 1.25rem;
    font-size: 0.82rem;
    color: var(--mid);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.15s, background 0.15s;
    line-height: 1.4;
  }

  .dropdown-link:hover {
    color: var(--ink);
    background: var(--bg);
  }

  .nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--ink);
    color: var(--ink);
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    margin-left: 0.75rem;
    transition: background 0.2s, color 0.2s;
  }

  .nav-cta:hover {
    background: var(--ink);
    color: var(--bg);
  }

  /* ── PAGES ── */
  .page {
    display: block;
    min-height: 100vh;
    padding-top: 64px;
    animation: fadeUp 0.4s ease forwards;
  }

  .page.active { display: block; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ── LAYOUT ── */
  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .section { padding: 5rem 0; }
  .section-sm { padding: 3rem 0; }

  hr.rule {
    border: none;
    border-top: 1px solid var(--rule);
    margin: 0;
  }

  /* ── TYPE ── */
  .label {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.25rem;
  }

  h1.display {
    font-family: var(--serif);
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--ink);
  }

  h1.display em, h2.display em {
    font-style: italic;
    color: var(--sage);
  }

  h2.display {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--ink);
  }

  .body-lg {
    font-size: 1.05rem;
    color: var(--mid);
    line-height: 1.85;
    max-width: 560px;
  }

  .body-copy {
    font-size: 0.9375rem;
    color: var(--mid);
    line-height: 1.85;
  }

  /* ── HERO ── */
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 6rem 2rem 5rem;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
  }

  .hero-img-wrap {
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 2px;
    background: var(--sage-light);
  }

  .hero-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  /* ── BUTTONS ── */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    border: none;
  }

  .btn-dark {
    background: var(--ink);
    color: var(--bg);
  }

  .btn-dark:hover { background: #333330; }

  .btn-outline {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--rule);
  }

  .btn-outline:hover { border-color: var(--ink); }

  /* ── CARDS ── */
  .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 3rem;
  }

  .specialty-card {
    background: var(--white);
    padding: 2rem;
    cursor: pointer;
    transition: background 0.2s;
  }

  .specialty-card:hover { background: var(--bg); }

  .card-icon {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--sage);
    margin-bottom: 1.25rem;
    line-height: 1;
  }

  .card-title {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 0.75rem;
    line-height: 1.3;
  }

  .card-body {
    font-size: 0.875rem;
    color: var(--mid);
    line-height: 1.7;
    margin-bottom: 1.25rem;
  }

  .card-link {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sage);
  }

  /* ── SERVICES ── */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 3rem;
  }

  .service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    cursor: pointer;
    transition: background 0.2s;
  }

  .service-card:hover { background: var(--bg); }

  .service-card .card-number {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--rule);
    line-height: 1;
    margin-bottom: 1.25rem;
  }

  /* ── QUOTE ── */
  .quote-section {
    background: var(--ink);
    padding: 5rem 2rem;
    text-align: center;
  }

  .quote-text {
    font-family: var(--serif);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    max-width: 680px;
    margin: 0 auto 1.25rem;
    line-height: 1.55;
  }

  .quote-attr {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
  }

  /* ── LOCATION ── */
  .location-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
  }

  .location-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.75rem;
    border: 1px solid var(--rule);
    border-radius: 2px;
    font-size: 0.78rem;
    color: var(--mid);
    letter-spacing: 0.04em;
  }

  /* ── ABOUT ── */
  .about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: start;
  }

  .about-img {
    aspect-ratio: 4/3.5;
    overflow: hidden;
    border-radius: 2px;
    background: var(--sage-light);
  }

  .about-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .approach-list { list-style: none; margin-top: 2rem; }

  .approach-item {
    padding: 1.25rem 0;
    border-top: 1px solid var(--rule);
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 1.5rem;
  }

  .approach-label {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sage);
    padding-top: 0.15rem;
  }

  /* ── SPECIALTY PAGES ── */
  .page-hero {
    border-bottom: 1px solid var(--rule);
    padding: 4rem 0 3.5rem;
  }

  .page-hero h1.display {
    margin-bottom: 1.25rem;
  }

  .back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    cursor: pointer;
    margin-bottom: 2.5rem;
    transition: color 0.2s;
  }

  .back-link:hover { color: var(--ink); }

  .page-content { max-width: 680px; }

  .page-content h2 {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--ink);
    margin: 2.5rem 0 0.75rem;
    line-height: 1.3;
  }

  .page-content p {
    color: var(--mid);
    line-height: 1.85;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
  }

  .page-content ul {
    margin: 0.75rem 0 1.25rem 1.1rem;
  }

  .page-content ul li {
    color: var(--mid);
    line-height: 1.8;
    margin-bottom: 0.4rem;
    font-size: 0.9375rem;
  }

  /* ── HIGHLIGHT BOX ── */
  .highlight-box {
    border-left: 2px solid var(--sage);
    padding: 1.25rem 1.5rem;
    margin: 1.75rem 0;
  }

  .highlight-box p {
    color: var(--ink) !important;
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 !important;
  }

  /* ── CALLOUT ── */
  .callout {
    background: var(--ink);
    padding: 2rem 2.5rem;
    margin: 2rem 0;
    border-radius: 2px;
  }

  .callout p {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--white) !important;
    margin: 0 !important;
  }

  .callout .sublabel {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-top: 0.75rem;
  }

  /* ── SYMPTOM PILLS ── */
  .symptom-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.25rem 0;
  }

  .symptom-pill {
    display: inline-flex;
    padding: 0.35rem 0.85rem;
    border: 1px solid var(--rule);
    border-radius: 2px;
    font-size: 0.82rem;
    color: var(--mid);
  }

  /* ── TWO COL ── */
  .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
    border-radius: 2px;
    overflow: hidden;
    margin: 1.75rem 0;
  }

  .two-col-cell {
    background: var(--white);
    padding: 1.5rem;
  }

  .two-col-cell.dark {
    background: var(--ink);
  }

  .two-col-cell .cell-label {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.75rem;
  }

  .two-col-cell.dark .cell-label {
    color: rgba(255,255,255,0.4);
  }

  .two-col-cell p {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--ink);
    margin: 0 !important;
    line-height: 1.5;
  }

  .two-col-cell.dark p { color: var(--white); }

  .two-col-cell ul {
    list-style: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }

  .two-col-cell ul li {
    font-size: 0.875rem;
    color: var(--mid);
    margin: 0;
  }

  .two-col-cell.dark ul li { color: rgba(255,255,255,0.75); }

  /* ── PERSONAL NOTE ── */
  .personal-note {
    border: 1px solid var(--rule);
    border-radius: 2px;
    padding: 1.75rem 2rem;
    margin: 1.75rem 0;
  }

  .personal-note p {
    color: var(--mid) !important;
    font-size: 0.9375rem !important;
    line-height: 1.85;
    margin: 0 !important;
  }

  /* ── FAQ ── */
  .faq-list { max-width: 680px; margin-top: 2rem; }

  .faq-item { border-top: 1px solid var(--rule); }
  .faq-item:last-child { border-bottom: 1px solid var(--rule); }

  .faq-question {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 0;
    user-select: none;
  }

  .faq-toggle {
    width: 20px; height: 20px;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    color: var(--muted);
    font-size: 1rem;
    transition: transform 0.3s;
  }

  .faq-item.open .faq-toggle { transform: rotate(45deg); color: var(--ink); }

  .faq-answer {
    font-size: 0.9375rem;
    color: var(--mid);
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    padding-bottom: 0;
  }

  .faq-item.open .faq-answer {
    max-height: 400px;
    padding-bottom: 1.5rem;
  }

  /* ── CONTACT ── */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  .form-field { margin-bottom: 1.25rem; }

  .form-field label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.5rem;
  }

  .form-field input,
  .form-field textarea,
  .form-field select {
    width: 100%;
    padding: 0.75rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--rule);
    font-family: var(--sans);
    font-size: 0.9375rem;
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
    border-radius: 0;
  }

  .form-field input:focus,
  .form-field textarea:focus,
  .form-field select:focus {
    border-color: var(--ink);
  }

  .form-field textarea {
    resize: none;
    min-height: 100px;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--ink);
    color: rgba(255,255,255,0.5);
    padding: 3rem 0;
  }

  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
  }

  .footer-brand {
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.75rem;
  }

  .footer-desc { font-size: 0.8rem; line-height: 1.7; }

  .footer-col-title {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 1rem;
  }

  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }

  .footer-links a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: rgba(255,255,255,0.9); }

  .footer-bottom {
    max-width: 1100px;
    margin: 2rem auto 0;
    padding: 1.5rem 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  /* ── REVEAL ── */
  .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .reveal.revealed { opacity: 1; transform: none; }

  /* ── HAMBURGER ── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 200;
  }
  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--ink);
    transition: transform 0.25s, opacity 0.25s;
    transform-origin: center;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* ── RESPONSIVE ── */
  @media (max-width: 860px) {
    .hero, .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .hero-img-wrap { order: -1; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .two-col { grid-template-columns: 1fr; }
    .approach-item { grid-template-columns: 1fr; gap: 0.25rem; }

    /* Mobile nav */
    .nav-hamburger { display: flex; }

    .nav-links {
      display: none;
      flex-direction: column;
      align-items: stretch;
      position: fixed;
      top: 57px;
      left: 0; right: 0;
      background: var(--bg);
      border-bottom: 1px solid var(--rule);
      padding: 1rem 0 1.5rem;
      z-index: 99;
      gap: 0;
    }
    .nav-links.mobile-open { display: flex; }

    .nav-item { width: 100%; }

    .nav-link {
      padding: 0.75rem 2rem;
      font-size: 0.9rem;
      justify-content: space-between;
      border-bottom: none;
    }

    .dropdown {
      position: static;
      opacity: 1;
      visibility: visible;
      transform: none;
      box-shadow: none;
      border: none;
      border-radius: 0;
      background: var(--rule-light, #f5f4f0);
      padding: 0.25rem 0;
      display: none;
    }
    .nav-item.open .dropdown { display: block; }

    .dropdown-link {
      padding: 0.65rem 2.5rem;
      font-size: 0.82rem;
    }

    .nav-cta {
      margin: 1rem 2rem 0;
      text-align: center;
      justify-content: center;
    }
  }


/* Multi-page site: each page is its own HTML file. */
