
    :root {
      --brand-green: #497938;
      --pine-950: #203519;
      --pine-900: #2f5227;
      --pine-800: #3d6630;
      --pine-700: #497938;
      --sage-500: #829678;
      --sage-300: #bdcbb6;
      --sage-100: #e5ebdf;
      --paper: #f5f1e9;
      --paper-2: #eee7dc;
      --cream: #faf8f3;
      --clay: #af795b;
      --clay-soft: #d7b69f;
      --ochre: #9a762f;
      --ink: #20281d;
      --muted: #687166;
      --line: rgba(73, 121, 56, .18);
      --white: #ffffff;
      --shadow-soft: 0 26px 70px rgba(47, 82, 39, .10);
      --shadow-card: 0 16px 48px rgba(47, 82, 39, .08);
      --max: 1320px;
      --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
      --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
      --ease: cubic-bezier(.22,1,.36,1);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background: var(--paper);
      font-family: var(--sans);
      line-height: 1.58;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 9999;
      opacity: .26;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.055'/%3E%3C/svg%3E");
      mix-blend-mode: multiply;
    }

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

    :focus-visible {
      outline: 3px solid rgba(175, 121, 91, .65);
      outline-offset: 4px;
      border-radius: 8px;
    }

    .container {
      width: min(calc(100% - 48px), var(--max));
      margin-inline: auto;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0,0,0,0);
      white-space: nowrap;
      border: 0;
    }

    .serif { font-family: var(--serif); }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--pine-700);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .17em;
      text-transform: uppercase;
    }
    .eyebrow::before {
      content: "";
      width: 28px;
      height: 1px;
      background: currentColor;
    }

    .section {
      position: relative;
      padding: 128px 0;
    }

    .section-label {
      display: grid;
      grid-template-columns: 72px 1fr;
      gap: 22px;
      align-items: start;
      margin-bottom: 50px;
    }
    .section-label .number {
      color: var(--clay);
      font-family: var(--serif);
      font-size: 22px;
      line-height: 1;
      padding-top: 9px;
    }
    .section-label h2 {
      margin: 0;
      max-width: 850px;
      font-family: var(--serif);
      font-weight: 500;
      font-size: clamp(44px, 6vw, 78px);
      letter-spacing: -.045em;
      line-height: .98;
    }
    .section-label h2 em {
      font-weight: 400;
      color: var(--pine-700);
    }

    .btn {
      min-height: 54px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 0 25px;
      border: 1px solid transparent;
      border-radius: 999px;
      font-weight: 700;
      font-size: 14px;
      cursor: pointer;
      transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-primary {
      color: var(--cream);
      background: var(--pine-900);
      box-shadow: 0 12px 32px rgba(16, 40, 29, .18);
    }
    .btn-primary:hover { background: var(--pine-950); box-shadow: 0 18px 36px rgba(16, 40, 29, .24); }
    .btn-light {
      color: var(--pine-900);
      background: rgba(250,248,243,.72);
      border-color: rgba(73,121,56,.24);
      backdrop-filter: blur(14px);
    }
    .btn-light:hover { background: var(--cream); border-color: var(--pine-900); }
    .btn-ghost {
      min-height: 44px;
      padding: 0;
      border-radius: 0;
      border-bottom-color: rgba(73,121,56,.34);
      color: var(--pine-900);
    }
    .btn svg { width: 17px; height: 17px; transition: transform .25s var(--ease); }
    .btn:hover svg { transform: translateX(3px); }

    /* Logo */
    .brand {
      display: inline-flex;
      align-items: center;
      min-width: 0;
      color: var(--pine-900);
    }
    .brand-logo {
      display: block;
      width: 104px;
      height: 82px;
      object-fit: contain;
      flex: 0 0 auto;
      padding: 8px 12px;
      border-radius: 24px;
      background: linear-gradient(180deg, rgba(73,121,56,.08), rgba(73,121,56,.02));
      box-shadow: inset 0 0 0 1px rgba(73,121,56,.12);
      filter: saturate(.98) contrast(1);
      transition: transform .35s var(--ease), filter .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
    }
    .brand:hover .brand-logo {
      transform: translateY(-1px);
      filter: saturate(1) contrast(1);
      box-shadow: inset 0 0 0 1px rgba(73,121,56,.16), 0 12px 24px rgba(47,82,39,.08);
      background: linear-gradient(180deg, rgba(73,121,56,.10), rgba(73,121,56,.03));
    }

    /* Header */
    .site-header {
      position: fixed;
      inset: 0 0 auto;
      z-index: 1000;
      transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
    }
    .site-header.scrolled {
      background: rgba(244,240,232,.88);
      box-shadow: 0 1px 0 var(--line);
      backdrop-filter: blur(18px);
    }
    .site-header:not(.scrolled) .brand-logo {
      background: rgba(250,248,243,.88);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.32), 0 12px 30px rgba(30,58,39,.16);
      filter: saturate(1) contrast(1.02);
    }
    .site-header:not(.scrolled) .nav-center {
      color: rgba(250,248,243,.84);
    }
    .site-header:not(.scrolled) .nav-center a::after {
      background: rgba(250,248,243,.86);
    }
    .site-header:not(.scrolled) .nav-action .btn-primary {
      background: rgba(250,248,243,.94);
      color: var(--pine-900);
      box-shadow: 0 14px 30px rgba(28,52,35,.16);
    }
    .site-header:not(.scrolled) .nav-action .btn-primary:hover {
      background: #ffffff;
      box-shadow: 0 18px 34px rgba(28,52,35,.20);
    }
    .site-header:not(.scrolled) .menu-toggle {
      background: rgba(250,248,243,.90);
      border-color: rgba(255,255,255,.22);
      box-shadow: 0 10px 24px rgba(28,52,35,.12);
    }
    .nav {
      min-height: 88px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }
    .nav-center {
      display: flex;
      align-items: center;
      gap: 28px;
      color: #3c4941;
      font-size: 13px;
      font-weight: 600;
    }
    .nav-center a {
      position: relative;
      padding: 8px 0;
    }
    .nav-center a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 100%;
      bottom: 2px;
      height: 1px;
      background: var(--pine-700);
      transition: right .24s var(--ease);
    }
    .nav-center a:hover::after { right: 0; }
    .nav-action { min-width: 210px; display: flex; justify-content: flex-end; }
    .menu-toggle {
      display: none;
      width: 48px;
      height: 48px;
      border: 1px solid var(--line);
      border-radius: 50%;
      background: rgba(250,248,243,.82);
      cursor: pointer;
      align-items: center;
      justify-content: center;
    }
    .menu-toggle span,
    .menu-toggle span::before,
    .menu-toggle span::after {
      display: block;
      width: 20px;
      height: 1.5px;
      background: var(--pine-900);
      transition: transform .25s ease, opacity .25s ease;
    }
    .menu-toggle span { position: relative; }
    .menu-toggle span::before,
    .menu-toggle span::after { content: ""; position: absolute; left: 0; }
    .menu-toggle span::before { top: -6px; }
    .menu-toggle span::after { top: 6px; }
    .menu-toggle[aria-expanded="true"] span { background: transparent; }
    .menu-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

    /* Hero */
    .hero {
      position: relative;
      min-height: 100svh;
      padding: 130px 0 56px;
      display: flex;
      align-items: center;
      overflow: hidden;
      background:
        radial-gradient(circle at 82% 18%, rgba(214, 196, 168, .20), transparent 20%),
        linear-gradient(90deg, #1f3a2a 0%, #29503a 32%, #3c684c 58%, #69876d 100%);
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(17,31,23,.74) 0%, rgba(20,37,27,.68) 18%, rgba(25,45,33,.54) 34%, rgba(34,59,44,.28) 54%, rgba(51,77,58,.12) 72%, rgba(74,103,81,0) 100%),
        linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02) 32%, rgba(255,255,255,0) 100%);
      z-index: 0;
      pointer-events: none;
    }
    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, transparent 0%, transparent 48%, rgba(255,255,255,.06) 56%, transparent 66%),
        linear-gradient(90deg, transparent 0%, transparent 58%, rgba(255,255,255,.035) 70%, transparent 82%);
      mix-blend-mode: screen;
      opacity: .38;
      z-index: 1;
      pointer-events: none;
    }
    .hero-grid {
      position: relative;
      z-index: 3;
      display: grid;
      grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
      min-height: 760px;
      align-items: center;
      gap: 24px;
    }
    .hero-copy { padding: 40px 0 20px; color: rgba(250,248,243,.96); }
    .hero .eyebrow { color: rgba(248,244,236,.84); }
    .hero h1 {
      margin: 22px 0 26px;
      max-width: 860px;
      font-family: var(--serif);
      font-size: clamp(58px, 6.8vw, 92px);
      font-weight: 500;
      line-height: .93;
      letter-spacing: -.05em;
      color: #fbf8f1;
    }
    .hero h1 .line-2 {
      display: block;
      margin-left: 6%;
      color: #f8f3ea;
    }
    .hero h1 .line-3 {
      display: block;
      margin-left: 1%;
      color: #d3dfcd;
      font-size: .92em;
      font-style: normal;
      font-weight: 400;
    }
    .hero-lead {
      max-width: 620px;
      margin: 0;
      color: rgba(248,244,236,.82);
      font-size: 18px;
      line-height: 1.74;
    }
    .hero-services {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 18px;
      margin-top: 22px;
      color: rgba(248,244,236,.92);
      font-size: 13px;
      font-weight: 700;
    }
    .hero-services span { display: inline-flex; align-items: center; gap: 9px; }
    .hero-services span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #d5b58d; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
    .hero .btn-primary { background: var(--cream); color: var(--pine-900); box-shadow: 0 18px 40px rgba(31,58,42,.16); }
    .hero .btn-primary:hover { background: #fff; transform: translateY(-2px); }
    .hero .btn-light { border-color: rgba(248,244,236,.26); color: #fbf8f1; background: rgba(255,255,255,.08); }
    .hero .btn-light:hover { background: rgba(255,255,255,.14); border-color: rgba(248,244,236,.34); }
    .hero-note {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 14px;
      align-items: start;
      max-width: 520px;
      margin-top: 28px;
      color: rgba(248,244,236,.70);
      font-size: 12px;
    }
    .hero-note .mini-mark { width: 25px; height: 25px; color: rgba(221,231,214,.82); }

    .hero-house {
      position: relative;
      height: min(78svh, 820px);
      min-height: 640px;
      align-self: center;
    }
    .door-frame {
      position: absolute;
      inset: 0 0 0 4%;
      overflow: hidden;
      border-radius: 0;
      background: #36543f;
      box-shadow: 0 38px 80px rgba(0,0,0,.28);
      transform-origin: center bottom;
      animation: heroReveal 1.1s var(--ease) both;
      isolation: isolate;
    }
    .hero-photo { position: absolute; inset: 0; }
    .hero-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 54% 52%;
      filter: saturate(.88) contrast(1.0) brightness(.90);
      transform: scale(1.01);
    }
    .hero-photo::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(20,36,27,.66) 0%, rgba(23,41,30,.58) 17%, rgba(31,54,40,.38) 38%, rgba(46,72,55,.18) 60%, rgba(62,92,71,.08) 100%),
        linear-gradient(180deg, rgba(244,240,232,.10) 0%, rgba(244,240,232,.02) 32%, rgba(8,14,11,.12) 100%);
      z-index: 1;
    }
    .hero-photo::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, transparent 0%, transparent 46%, rgba(255,255,255,.08) 54%, transparent 61%),
        linear-gradient(90deg, transparent 0%, transparent 57%, rgba(255,255,255,.04) 69%, transparent 79%),
        radial-gradient(circle at 88% 18%, rgba(214,196,168,.24), transparent 28%);
      z-index: 1;
      mix-blend-mode: screen;
      opacity: .72;
      pointer-events: none;
    }
    .door-scrim {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,0) 22%, rgba(0,0,0,.08) 100%);
      z-index: 2;
      pointer-events: none;
    }
    @keyframes heroReveal {
      from { opacity: 0; transform: translateY(22px) scale(.987); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }
    .hero-house::before {
      content: "";
      position: absolute;
      width: 82%;
      height: 100%;
      right: -6%;
      top: 0;
      border: 1px solid rgba(248,244,236,.12);
      z-index: -1;
    }
    .hero-house::after {
      content: "";
      position: absolute;
      width: 26%;
      height: 82%;
      left: 0;
      top: 9%;
      background: linear-gradient(180deg, rgba(176,143,105,.14), transparent);
      filter: blur(24px);
      z-index: -1;
    }
    .symbol-orbit {
      position: absolute;
      width: 240px;
      right: 32px;
      top: 34px;
      color: rgba(250,248,243,.24);
      animation: orbitFloat 14s ease-in-out infinite;
      z-index: 3;
    }
    @keyframes orbitFloat { 50% { transform: translate(-8px, 10px) rotate(2deg); } }
    .house-caption {
      position: absolute;
      left: 0;
      bottom: 34px;
      z-index: 4;
      width: 250px;
      padding: 16px 18px;
      background: rgba(27,48,35,.36);
      border: 1px solid rgba(248,244,236,.22);
      backdrop-filter: blur(14px);
      box-shadow: 0 18px 36px rgba(31,58,42,.12);
    }
    .house-caption small {
      display: block;
      color: rgba(248,244,236,.76);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .15em;
      text-transform: uppercase;
    }
    .house-caption strong {
      display: block;
      margin-top: 8px;
      font-family: var(--serif);
      color: #f8f4ec;
      font-size: 23px;
      line-height: 1.08;
      font-weight: 500;
    }
    .hero-edge { display: none; }
    /* Start guidance */
    .start-section { background: var(--cream); }
    .start-grid {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 56px;
      align-items: start;
    }
    .start-intro p {
      max-width: 540px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.78;
    }
    .start-switch {
      display: grid;
      grid-template-columns: 1fr 1fr;
      border-top: 1px solid var(--line);
      border-left: 1px solid var(--line);
      background: var(--paper);
      box-shadow: var(--shadow-card);
    }
    .path-choice {
      position: relative;
      min-height: 260px;
      padding: 34px;
      border: 0;
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: transparent;
      text-align: left;
      cursor: pointer;
      overflow: hidden;
      transition: background .3s var(--ease), color .3s var(--ease);
    }
    .path-choice::after {
      content: "";
      position: absolute;
      width: 180px;
      aspect-ratio: 1;
      right: -80px;
      bottom: -88px;
      border: 1px solid currentColor;
      border-radius: 50%;
      opacity: .16;
      transition: transform .5s var(--ease);
    }
    .path-choice:hover::after, .path-choice.active::after { transform: scale(1.35); }
    .path-choice.active {
      color: var(--cream);
      background: var(--pine-900);
    }
    .path-choice .choice-number {
      display: block;
      margin-bottom: 48px;
      color: var(--clay);
      font-family: var(--serif);
      font-size: 18px;
    }
    .path-choice strong {
      display: block;
      max-width: 220px;
      font-family: var(--serif);
      font-size: 29px;
      font-weight: 500;
      line-height: 1.08;
    }
    .path-choice span:last-child {
      display: block;
      margin-top: 16px;
      color: inherit;
      opacity: .72;
      font-size: 13px;
    }
    .guidance-panel {
      grid-column: 1 / -1;
      position: relative;
      min-height: 275px;
      padding: 40px;
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      border-left: 1px solid var(--line);
      background: var(--paper-2);
      overflow: hidden;
    }
    .guidance-panel::before {
      content: "";
      position: absolute;
      inset: 0 0 0 auto;
      width: 40%;
      background: linear-gradient(135deg, transparent 0 38%, rgba(23,59,42,.05) 38% 39%, transparent 39% 48%, rgba(23,59,42,.05) 48% 49%, transparent 49%);
      pointer-events: none;
    }
    .guidance-content { position: relative; z-index: 1; max-width: 650px; }
    .guidance-content h3 {
      margin: 0 0 12px;
      font-family: var(--serif);
      font-size: 35px;
      font-weight: 500;
      line-height: 1.05;
    }
    .guidance-content p { margin: 0 0 22px; color: var(--muted); }
    .interest-list { display: flex; flex-wrap: wrap; gap: 9px; margin: 22px 0 0; }
    .interest-chip {
      padding: 10px 14px;
      border: 1px solid rgba(23,59,42,.18);
      border-radius: 999px;
      background: rgba(250,248,243,.74);
      color: var(--pine-900);
      font-size: 12px;
      font-weight: 700;
    }

    /* Space */
    .space-section {
      padding: 0;
      color: var(--cream);
      background: var(--pine-950);
    }
    .space-wrap {
      min-height: 780px;
      display: grid;
      grid-template-columns: .96fr 1.04fr;
    }
    .space-visual {
      position: relative;
      min-height: 700px;
      overflow: hidden;
      background: #6f8872;
      isolation: isolate;
    }
    .space-photo {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 50% 57%;
      filter: saturate(.86) contrast(.97) brightness(.98) sepia(.04);
      transform: scale(1.015);
    }
    .space-photo-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(90deg, rgba(246,241,232,.12) 0%, rgba(246,241,232,.02) 42%, rgba(31,72,49,.22) 72%, rgba(23,59,42,.58) 100%),
        linear-gradient(180deg, rgba(248,244,236,.10) 0%, transparent 32%, rgba(25,58,42,.10) 100%);
      pointer-events: none;
    }
    .space-photo-note {
      position: absolute;
      left: 42px;
      bottom: 40px;
      z-index: 2;
      max-width: 285px;
      padding: 14px 16px 13px;
      border: 1px solid rgba(250,248,243,.28);
      border-radius: 18px;
      background: rgba(28,62,44,.34);
      color: rgba(250,248,243,.94);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 16px 40px rgba(18,44,31,.12);
    }
    .space-photo-note small {
      display: block;
      margin-bottom: 5px;
      color: rgba(250,248,243,.64);
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
    }
    .space-photo-note strong {
      display: block;
      font-family: var(--serif);
      font-size: 20px;
      font-weight: 500;
      line-height: 1.12;
    }
    .space-copy {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 90px clamp(42px, 6vw, 100px);
      background: var(--pine-950);
      overflow: hidden;
    }
    .space-copy::after {
      content: "";
      position: absolute;
      width: 520px;
      aspect-ratio: 1;
      right: -270px;
      bottom: -250px;
      border: 1px solid rgba(250,248,243,.1);
      border-radius: 50%;
      box-shadow: 0 0 0 70px rgba(250,248,243,.022), 0 0 0 140px rgba(250,248,243,.016);
    }
    .space-copy .eyebrow { color: var(--clay-soft); }
    .space-copy h2 {
      margin: 28px 0 28px;
      max-width: 580px;
      font-family: var(--serif);
      font-size: clamp(48px, 5vw, 76px);
      font-weight: 500;
      line-height: .96;
      letter-spacing: -.04em;
    }
    .space-copy p {
      max-width: 570px;
      margin: 0;
      color: rgba(250,248,243,.73);
      font-size: 16px;
      line-height: 1.78;
    }
    .space-values {
      display: grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 16px 28px;
      margin-top: 38px;
      max-width: 520px;
    }
    .space-values span {
      display: flex;
      align-items: center;
      gap: 11px;
      color: rgba(250,248,243,.88);
      font-size: 13px;
      font-weight: 600;
    }
    .space-values i { width: 7px; height: 7px; border-radius: 50%; background: var(--clay-soft); }

    /* Specialties */
    .rooms-section { background: var(--paper); overflow: hidden; }
    .rooms-head {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 50px;
      align-items: end;
      margin-bottom: 62px;
    }
    .rooms-head p {
      max-width: 520px;
      margin: 0 0 6px auto;
      color: var(--muted);
      font-size: 16px;
    }
    .rooms {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 18px;
      align-items: stretch;
    }
    .room-card {
      --card-offset: 0px;
      position: relative;
      min-height: 520px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 34px;
      border: 1px solid var(--line);
      overflow: hidden;
      transform: translateY(var(--card-offset));
      transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
    }
    .room-card:hover {
      transform: translateY(calc(var(--card-offset) - 8px));
      box-shadow: var(--shadow-card);
      border-color: rgba(23,59,42,.28);
    }
    .room-card:nth-child(1) { grid-column: span 3; background: var(--cream); }
    .room-card:nth-child(2) { --card-offset: 48px; grid-column: span 3; background: var(--sage-100); }
    .room-card:nth-child(3) { grid-column: span 3; color: var(--cream); background: var(--pine-900); }
    .room-card:nth-child(4) { --card-offset: 24px; grid-column: span 3; background: var(--paper-2); }
    .room-top { position: relative; z-index: 2; }
    .room-index {
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: var(--clay);
      font-family: var(--serif);
      font-size: 18px;
    }
    .room-card:nth-child(3) .room-index { color: var(--clay-soft); }
    .room-glyph {
      width: 72px;
      height: 72px;
      margin-top: 44px;
      color: var(--pine-700);
      transition: transform .35s var(--ease), opacity .35s var(--ease);
      transform-origin: center;
    }
    .room-card:nth-child(3) .room-glyph { color: rgba(250,248,243,.78); }
    .room-card h3 {
      margin: 30px 0 14px;
      font-family: var(--serif);
      font-size: 38px;
      font-weight: 500;
      line-height: .98;
      letter-spacing: -.025em;
    }
    .room-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.68;
    }
    .room-card:nth-child(3) p { color: rgba(250,248,243,.68); }
    .room-link {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 32px;
      padding-top: 18px;
      border-top: 1px solid currentColor;
      color: var(--pine-900);
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .08em;
      opacity: .9;
    }
    .room-link span { transition: transform .28s var(--ease); }
    .room-card:nth-child(3) .room-link { color: var(--cream); opacity: .8; }
    .room-plan {
      position: absolute;
      width: 250px;
      aspect-ratio: 1;
      right: -104px;
      bottom: -102px;
      color: currentColor;
      opacity: .07;
      transition: transform .6s var(--ease);
    }
    .room-card:hover .room-plan { transform: rotate(9deg) scale(1.05); }
    .room-card:hover .room-glyph { transform: translateY(-3px) scale(1.04); }
    .room-card:hover .room-link span { transform: translate(2px, -2px); }

    /* Team */
    .team-section { background: var(--cream); }
    .team-intro {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 65px;
      margin-bottom: 54px;
      align-items: end;
    }
    .team-intro p {
      max-width: 530px;
      margin: 0 0 6px auto;
      color: var(--muted);
    }
    .team-toolbar {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 30px;
    }
    .team-filter {
      min-height: 42px;
      padding: 0 15px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: transparent;
      color: var(--pine-900);
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
    }
    .team-filter.active { color: var(--cream); background: var(--pine-900); border-color: var(--pine-900); }
    .team-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      border-top: 1px solid var(--line);
      border-left: 1px solid var(--line);
    }
    .person {
      position: relative;
      min-height: 430px;
      grid-column: span 4;
      padding: 30px;
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: var(--paper);
      overflow: hidden;
      transition: background .3s var(--ease), transform .3s var(--ease);
    }
    .person:hover { background: var(--paper-2); }
    .person[hidden] { display: none; }
    .person-meta { display: flex; justify-content: space-between; gap: 12px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
    .portrait-window {
      position: relative;
      width: 100%;
      height: 170px;
      margin: 26px 0 24px;
      overflow: hidden;
      border-radius: 120px 120px 10px 10px;
      background: var(--sage-100);
      isolation: isolate;
      transition:
        height .56s var(--ease),
        border-radius .56s var(--ease),
        box-shadow .56s var(--ease);
      will-change: height, border-radius;
    }
    .portrait-window.has-photo {
      background: #dedfd3;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.42);
    }
    .portrait-window.has-photo img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: var(--pos, center 22%);
      filter: saturate(.90) contrast(.96) brightness(1.025);
      transform: scale(1.055);
      transform-origin: var(--origin, center 34%);
      transition:
        transform .68s var(--ease),
        filter .5s var(--ease),
        object-position .68s var(--ease);
      will-change: transform;
    }
    .portrait-window.has-photo .portrait-tint {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background:
        linear-gradient(180deg, rgba(247,244,237,.05) 0%, rgba(247,244,237,0) 48%, rgba(23,59,42,.10) 100%),
        radial-gradient(circle at 50% 10%, rgba(255,255,255,.10), transparent 48%);
      mix-blend-mode: normal;
    }
    .portrait-window::before {
      content: attr(data-initials);
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      color: var(--pine-800);
      font-family: var(--serif);
      font-size: 70px;
      font-weight: 500;
      letter-spacing: -.08em;
    }
    .portrait-window.has-photo::before { display: none; content: ""; }
    .portrait-window::after {
      content: "";
      position: absolute;
      width: 90px;
      height: 90px;
      left: calc(50% - 45px);
      bottom: -50px;
      z-index: 2;
      border: 1px solid rgba(73,121,56,.24);
      border-radius: 50%;
      box-shadow: 0 0 0 28px rgba(73,121,56,.045), 0 0 0 56px rgba(73,121,56,.028);
      pointer-events: none;
    }
    .portrait-window.has-photo::after {
      border-color: rgba(255,255,255,.35);
      box-shadow: 0 0 0 28px rgba(255,255,255,.09), 0 0 0 56px rgba(255,255,255,.04);
    }
    .person:nth-child(2n) .portrait-window { background: var(--clay-soft); }
    .person:nth-child(3n) .portrait-window { background: #d7d8c7; }

    /* Retratos expansíveis — revelam mais da fotografia sem perder a composição editorial. */
    @media (hover: hover) and (pointer: fine) {
      .person {
        z-index: 0;
      }
      .person:hover,
      .person:focus-within {
        z-index: 2;
      }
      .person:hover .portrait-window.has-photo,
      .person:focus-within .portrait-window.has-photo {
        height: 245px;
        border-radius: 82px 82px 16px 16px;
        box-shadow:
          inset 0 1px 0 rgba(255,255,255,.50),
          0 18px 42px rgba(23,59,42,.09);
      }
      .person:hover .portrait-window.has-photo img,
      .person:focus-within .portrait-window.has-photo img {
        transform: scale(1.005);
        filter: saturate(.94) contrast(.98) brightness(1.02);
        object-position: var(--hover-pos, var(--pos, center 22%));
      }
      .person:hover .portrait-window.has-photo .portrait-tint,
      .person:focus-within .portrait-window.has-photo .portrait-tint {
        opacity: .68;
      }
      .portrait-window.has-photo .portrait-tint {
        transition: opacity .5s var(--ease);
      }
    }
    .person h3 {
      margin: 0;
      font-family: var(--serif);
      font-size: 34px;
      font-weight: 500;
      line-height: 1;
    }
    .person .approach { margin: 10px 0 0; color: var(--pine-700); font-size: 12px; font-weight: 700; }
    .person .summary {
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3;
      overflow: hidden;
      margin: 16px 0 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.62;
    }
    .person-footer {
      position: absolute;
      left: 30px;
      right: 30px;
      bottom: 25px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 14px;
      border-top: 1px solid var(--line);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    /* Process */
    .process-section { background: var(--paper-2); }
    .process-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 90px;
      align-items: center;
    }
    .process-copy h2 {
      margin: 24px 0 24px;
      max-width: 650px;
      font-family: var(--serif);
      font-size: clamp(52px, 6vw, 82px);
      font-weight: 500;
      line-height: .94;
      letter-spacing: -.045em;
    }
    .process-copy p { max-width: 520px; color: var(--muted); }
    .path-map {
      position: relative;
      min-height: 560px;
      display: grid;
      place-items: center;
    }
    .path-map > svg { position: absolute; inset: 0; width: 100%; height: 100%; color: rgba(73,121,56,.24); }
    .path-step {
      position: absolute;
      width: 205px;
      min-height: 160px;
      padding: 24px;
      background: var(--cream);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-card);
    }
    .path-step:nth-of-type(1) { left: 0; top: 20px; }
    .path-step:nth-of-type(2) { right: 0; top: 190px; }
    .path-step:nth-of-type(3) { left: 10%; bottom: 10px; }
    .path-step span {
      display: block;
      color: var(--clay);
      font-family: var(--serif);
      font-size: 17px;
    }
    .path-step h3 { margin: 30px 0 8px; font-family: var(--serif); font-size: 24px; line-height: 1.05; font-weight: 500; }
    .path-step p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }

    /* Manifesto */
    .manifesto {
      position: relative;
      min-height: 850px;
      display: grid;
      place-items: center;
      overflow: hidden;
      color: var(--cream);
      background: var(--pine-900);
    }
    .manifesto-symbol {
      position: absolute;
      width: min(90vw, 980px);
      color: rgba(250,248,243,.07);
      animation: slowRotate 90s linear infinite;
    }
    @keyframes slowRotate { to { transform: rotate(360deg); } }
    .manifesto-inner {
      position: relative;
      z-index: 2;
      width: min(calc(100% - 48px), 980px);
      padding: 120px 0;
      text-align: center;
    }
    .manifesto-inner .eyebrow { color: var(--clay-soft); }
    .manifesto blockquote {
      margin: 40px 0 34px;
      font-family: var(--serif);
      font-size: clamp(46px, 6.4vw, 82px);
      font-weight: 400;
      line-height: 1.02;
      letter-spacing: -.04em;
    }
    .manifesto blockquote em { color: var(--clay-soft); font-weight: 400; }
    .manifesto p { max-width: 650px; margin: 0 auto; color: rgba(250,248,243,.7); }

    /* FAQ */
    .faq-section { background: var(--cream); }
    .faq-layout {
      display: grid;
      grid-template-columns: .72fr 1.28fr;
      gap: 80px;
      align-items: start;
    }
    .faq-sticky { position: sticky; top: 130px; }
    .faq-sticky h2 {
      margin: 22px 0 24px;
      font-family: var(--serif);
      font-size: clamp(48px, 5vw, 72px);
      font-weight: 500;
      line-height: .95;
      letter-spacing: -.04em;
    }
    .faq-sticky p { max-width: 430px; color: var(--muted); }
    .faq-list { border-top: 1px solid var(--line); }
    .faq-item { border-bottom: 1px solid var(--line); }
    .faq-question {
      width: 100%;
      min-height: 84px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      padding: 22px 0;
      border: 0;
      background: transparent;
      text-align: left;
      cursor: pointer;
      font-size: 16px;
      font-weight: 700;
    }
    .faq-icon { position: relative; width: 28px; height: 28px; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 50%; }
    .faq-icon::before, .faq-icon::after { content: ""; position: absolute; left: 7px; right: 7px; top: 13px; height: 1px; background: var(--pine-900); }
    .faq-icon::after { transform: rotate(90deg); transition: transform .25s ease; }
    .faq-question[aria-expanded="true"] .faq-icon::after { transform: rotate(0); }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
    .faq-answer p { margin: 0; max-width: 720px; padding: 0 54px 28px 0; color: var(--muted); }

    /* Contact */
    .contact-section {
      position: relative;
      padding: 125px 0 42px;
      overflow: hidden;
      color: var(--cream);
      background: var(--pine-950);
    }
    .contact-section::before {
      content: "";
      position: absolute;
      width: 720px;
      height: 720px;
      right: -300px;
      top: -220px;
      border: 1px solid rgba(250,248,243,.1);
      border-radius: 50%;
      box-shadow: 0 0 0 80px rgba(250,248,243,.018), 0 0 0 160px rgba(250,248,243,.012);
    }
    .contact-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 80px;
      align-items: start;
    }
    .contact-copy h2 {
      margin: 26px 0 28px;
      max-width: 780px;
      font-family: var(--serif);
      font-size: clamp(56px, 7.2vw, 96px);
      font-weight: 500;
      line-height: .88;
      letter-spacing: -.055em;
    }
    .contact-copy h2 em { color: var(--clay-soft); font-weight: 400; }
    .contact-copy p { max-width: 610px; color: rgba(250,248,243,.68); font-size: 17px; }
    .contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
    .contact-section .btn-primary { color: var(--pine-950); background: var(--cream); }
    .contact-section .btn-primary:hover { background: var(--clay-soft); }
    .contact-section .btn-light { color: var(--cream); background: transparent; border-color: rgba(250,248,243,.28); }
    .contact-card {
      padding: 34px;
      border: 1px solid rgba(250,248,243,.16);
      background: rgba(250,248,243,.045);
      backdrop-filter: blur(10px);
    }
    .contact-card .map {
      position: relative;
      height: 260px;
      margin-bottom: 26px;
      overflow: hidden;
      background: #234331;
    }
    .contact-card .map svg { width: 100%; height: 100%; }
    .contact-card dl { margin: 0; }
    .contact-card .row { display: grid; grid-template-columns: 92px 1fr; gap: 16px; padding: 16px 0; border-top: 1px solid rgba(250,248,243,.12); }
    .contact-card dt { color: rgba(250,248,243,.48); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
    .contact-card dd { margin: 0; font-size: 14px; }
    .footer {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 30px;
      align-items: end;
      margin-top: 110px;
      padding-top: 28px;
      border-top: 1px solid rgba(250,248,243,.13);
      color: rgba(250,248,243,.48);
      font-size: 11px;
    }
    .footer .brand {
      color: var(--cream);
      display: block;
      width: 158px;
      min-width: 158px;
      justify-self: start;
      align-self: end;
      margin: 0;
    }
    .footer .brand-logo {
      display: block;
      width: 100%;
      height: auto;
      object-fit: contain;
      object-position: left center;
      padding: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      filter: none;
      opacity: 1;
      transform-origin: left center;
    }
    .footer .brand:hover .brand-logo {
      transform: translateY(-1px);
      background: transparent;
      box-shadow: none;
      filter: none;
      opacity: 1;
    }
    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      justify-content: flex-end;
      align-items: center;
      align-self: end;
    }

    /* Reveal */
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
    .reveal.visible { opacity: 1; transform: none; }

    /* Mobile CTA */
    .mobile-contact {
      display: none;
      position: fixed;
      left: 14px;
      right: 14px;
      bottom: 14px;
      z-index: 1200;
      min-height: 58px;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border-radius: 999px;
      color: var(--cream);
      background: var(--pine-900);
      box-shadow: 0 18px 40px rgba(16,40,29,.26);
      font-size: 14px;
      font-weight: 700;
    }

    @media (max-width: 1120px) {
      .nav-center, .nav-action { display: none; }
      .menu-toggle { display: inline-flex; }
      .nav-center.open {
        position: fixed;
        inset: 88px 18px auto;
        display: grid;
        gap: 0;
        padding: 20px;
        background: var(--cream);
        border: 1px solid var(--line);
        box-shadow: var(--shadow-soft);
      }
      .nav-center.open a { padding: 15px 8px; border-bottom: 1px solid var(--line); }
      .hero-grid { grid-template-columns: .94fr 1.06fr; }
      .hero h1 { font-size: clamp(54px, 6.4vw, 78px); }
      .rooms { grid-template-columns: repeat(2, 1fr); }
      .room-card, .room-card:nth-child(1), .room-card:nth-child(2), .room-card:nth-child(3), .room-card:nth-child(4) { grid-column: auto; transform: none; }
      .room-card:nth-child(2):hover, .room-card:nth-child(4):hover { transform: translateY(-8px); }
      .person { grid-column: span 6; }
    }

    @media (max-width: 860px) {
      .container { width: min(calc(100% - 32px), var(--max)); }
      .section { padding: 88px 0; }
      .section-label { grid-template-columns: 42px 1fr; gap: 12px; }
      .hero { min-height: auto; padding: 112px 0 72px; }
      .hero-grid { grid-template-columns: 1fr; min-height: auto; gap: 38px; }
      .hero-copy { padding: 18px 0 0; }
      .hero h1 { font-size: clamp(54px, 14vw, 78px); }
      .hero-house { height: 540px; min-height: 0; }
      .door-frame { inset: 0; }
      .hero-photo img { object-position: 52% 50%; }
      .house-caption { width: 220px; left: 18px; bottom: 20px; }
      .symbol-orbit { width: 170px; right: 18px; top: 18px; }
      .start-grid, .space-wrap, .rooms-head, .team-intro, .process-grid, .faq-layout, .contact-grid { grid-template-columns: 1fr; }
      .space-visual { min-height: 620px; }
      .space-copy { padding: 80px 28px; }
      .rooms-head p, .team-intro p { margin-left: 0; }
      .rooms { grid-template-columns: 1fr 1fr; }
      .room-card { min-height: 460px; }
      .faq-sticky { position: static; }
      .path-map { min-height: 600px; }
      .contact-grid { gap: 48px; }
      .footer { grid-template-columns: 1fr; align-items: flex-start; gap: 24px; }
      .footer .brand { width: 130px; min-width: 130px; }
      .footer-links { justify-content: flex-start; align-items: flex-start; }
    }

    @media (max-width: 640px) {
      .container { width: min(calc(100% - 24px), var(--max)); }
      .nav { min-height: 76px; }
      .brand { min-width: 0; }
      .brand-logo { width: 84px; height: 66px; padding: 6px 10px; border-radius: 20px; }
      .footer .brand { width: 120px; min-width: 120px; }
      .footer .brand-logo { width: 100%; height: auto; padding: 0; border-radius: 0; }
      
      .hero { padding-top: 98px; }
      .hero h1 { margin-top: 18px; font-size: clamp(46px, 16vw, 68px); }
      .hero h1 .line-2 { margin-left: 3%; }
      .hero h1 .line-3 { margin-left: 0; }
      .hero-lead { font-size: 16px; }
      .hero-services { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
      .hero-actions { display: grid; }
      .hero-actions .btn { width: 100%; }
      .hero-house { height: 430px; }
      .door-frame { left: 0; border-radius: 22px; }
      .hero-photo img { object-position: 53% 50%; }
      .symbol-orbit { width: 140px; right: 14px; top: 14px; }
      .house-caption { width: 190px; left: 14px; bottom: 14px; }
      .start-switch { grid-template-columns: 1fr; }
      .path-choice { min-height: 210px; }
      .guidance-panel { padding: 28px 22px; }
      .space-wrap { min-height: 0; }
      .space-visual { min-height: 520px; }
      .space-photo { object-position: 50% 56%; }
      .space-photo-note { left: 20px; right: 20px; bottom: 20px; max-width: none; border-radius: 16px; }
      .space-copy h2 { font-size: 50px; }
      .space-values { grid-template-columns: 1fr; }
      .rooms { grid-template-columns: 1fr; }
      .room-card { min-height: 420px; }
      .person { grid-column: span 12; min-height: 420px; }
      .process-grid { gap: 44px; }
      .path-map { min-height: 650px; }
      .path-step { width: 190px; }
      .path-step:nth-of-type(1) { left: 0; }
      .path-step:nth-of-type(2) { right: 0; top: 220px; }
      .path-step:nth-of-type(3) { left: 6%; }
      .manifesto { min-height: 700px; }
      .manifesto-inner { padding: 90px 0; }
      .faq-question { font-size: 15px; }
      .contact-section { padding-bottom: 104px; }
      .contact-card { padding: 18px; }
      .contact-card .row { grid-template-columns: 1fr; gap: 5px; }
      .mobile-contact { display: flex; }
      .footer { margin-top: 70px; }
    }



    /* =========================================================
       Mobile/WebView hardening
       Garante consistência em navegadores internos como WhatsApp,
       evita inflação automática de texto, vazios de animação e
       sobreposição entre descrição e CTA nos cards profissionais.
       ========================================================= */
    html {
      -webkit-text-size-adjust: 100%;
      text-size-adjust: 100%;
    }

    .person {
      display: flex;
      flex-direction: column;
      min-width: 0;
      min-height: 520px;
    }

    .person-meta,
    .person h3,
    .person .approach,
    .person .summary,
    .person-footer {
      min-width: 0;
      overflow-wrap: anywhere;
    }

    .person-footer {
      position: static;
      left: auto;
      right: auto;
      bottom: auto;
      width: 100%;
      margin-top: auto;
      padding-top: 16px;
    }

    .person .summary {
      margin-bottom: 18px;
    }

    @media (max-width: 640px) {
      /* Em WebViews móveis, conteúdo invisível por IntersectionObserver
         pode parecer um espaço vazio entre seções. No mobile, priorizamos
         a leitura imediata e removemos a dependência da animação. */
      .reveal,
      .reveal.visible {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
      }

      .section {
        padding: 64px 0;
      }

      .section-label {
        margin-bottom: 34px;
      }

      .hero {
        min-height: 0;
        padding: 102px 0 56px;
      }

      .hero-grid {
        min-height: 0;
        gap: 36px;
      }

      .hero-house {
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 3 / 4;
      }

      .start-grid,
      .team-intro,
      .process-grid,
      .faq-layout,
      .contact-grid {
        gap: 34px;
      }

      .start-intro p {
        margin-bottom: 0;
      }

      .path-choice,
      .guidance-panel {
        min-height: 0;
      }

      .path-choice {
        padding: 28px 24px;
      }

      .path-choice .choice-number {
        margin-bottom: 30px;
      }

      .guidance-panel {
        padding: 28px 22px;
      }

      .space-wrap {
        min-height: 0;
      }

      .space-visual {
        min-height: 0;
        aspect-ratio: 4 / 5;
      }
      .space-photo { object-position: 50% 56%; }
      .space-photo-note { left: 18px; right: 18px; bottom: 18px; padding: 12px 14px; }
      .space-photo-note strong { font-size: 18px; }

      .space-copy {
        padding: 64px 24px;
      }

      .rooms-head,
      .team-intro {
        margin-bottom: 36px;
      }

      .room-card,
      .room-card:nth-child(1),
      .room-card:nth-child(2),
      .room-card:nth-child(3),
      .room-card:nth-child(4) {
        min-height: 0;
        padding: 28px 24px;
        transform: none;
      }

      .room-card:nth-child(2):hover,
      .room-card:nth-child(4):hover {
        transform: none;
      }

      .room-glyph {
        margin-top: 30px;
      }

      .room-link {
        margin-top: 24px;
      }

      .team-toolbar {
        margin-bottom: 22px;
      }

      .person {
        min-height: 0;
        height: auto;
        padding: 28px 24px;
        overflow: visible;
      }

      .person-meta {
        align-items: flex-start;
      }

      .portrait-window {
        height: auto;
        min-height: 0;
        aspect-ratio: 4 / 3;
        margin: 24px 0 22px;
        border-radius: 96px 96px 14px 14px;
      }

      .portrait-window.has-photo img {
        transform: scale(1.015);
        object-position: var(--mobile-pos, var(--pos, center 22%));
      }

      .person .summary {
        display: block;
        -webkit-line-clamp: initial;
        overflow: visible;
        margin: 16px 0 0;
      }

      .person-footer {
        margin-top: 18px;
        padding-top: 16px;
      }

      .path-map {
        min-height: 0;
        display: grid;
        gap: 14px;
        place-items: stretch;
      }

      .path-map > svg {
        display: none;
      }

      .path-step,
      .path-step:nth-of-type(1),
      .path-step:nth-of-type(2),
      .path-step:nth-of-type(3) {
        position: relative;
        inset: auto;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        min-height: 0;
      }

      .manifesto {
        min-height: 0;
      }

      .manifesto-inner {
        padding: 80px 0;
      }

      .contact-section {
        padding-top: 76px;
        padding-bottom: calc(106px + env(safe-area-inset-bottom));
      }

      .footer {
        margin-top: 64px;
      }

      .mobile-contact {
        left: max(14px, env(safe-area-inset-left));
        right: max(14px, env(safe-area-inset-right));
        bottom: max(14px, env(safe-area-inset-bottom));
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
      .reveal { opacity: 1; transform: none; }
    }
  
    @media (prefers-reduced-motion: reduce) {
      .portrait-window,
      .portrait-window.has-photo img,
      .portrait-window.has-photo .portrait-tint {
        transition: none !important;
      }
    }



    /* Clinic Gallery — real Reconect spaces */
    .clinic-gallery {
      padding: 110px 0 118px;
      overflow: hidden;
      background: var(--paper);
      color: var(--pine-950);
    }
    .clinic-gallery-head {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 56px;
      align-items: end;
      margin-bottom: 48px;
    }
    .clinic-gallery-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--pine-700);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .15em;
      text-transform: uppercase;
    }
    .clinic-gallery-kicker::before {
      content: "";
      width: 34px;
      height: 1px;
      background: currentColor;
    }
    .clinic-gallery-head h2 {
      max-width: 720px;
      margin: 18px 0 0;
      font-family: var(--serif);
      font-size: clamp(48px, 5.5vw, 78px);
      font-weight: 500;
      line-height: .95;
      letter-spacing: -.045em;
    }
    .clinic-gallery-head h2 em { color: var(--pine-700); font-weight: 500; }
    .clinic-gallery-copy {
      max-width: 540px;
      margin: 0 0 5px auto;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.75;
    }
    .clinic-gallery-controls {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 22px;
    }
    .gallery-counter {
      display: flex;
      align-items: baseline;
      gap: 8px;
      font-family: var(--serif);
      color: var(--pine-950);
    }
    .gallery-counter strong { font-size: 28px; font-weight: 500; }
    .gallery-counter span { color: var(--muted); font-size: 13px; }
    .gallery-actions { display: flex; gap: 9px; }
    .gallery-arrow {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border: 1px solid var(--line);
      border-radius: 50%;
      background: transparent;
      color: var(--pine-950);
      cursor: pointer;
      transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
    }
    .gallery-arrow:hover { background: var(--pine-950); color: var(--cream); transform: translateY(-2px); }
    .gallery-arrow:focus-visible { outline: 2px solid var(--brand-green); outline-offset: 3px; }
    .gallery-viewport {
      overflow: visible;
      touch-action: pan-y;
    }
    .gallery-track {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      -ms-overflow-style: none;
      padding: 0 max(24px, calc((100vw - 1320px) / 2)) 12px;
      margin-inline: calc(-1 * max(24px, calc((100vw - 1320px) / 2)));
      scroll-padding-left: max(24px, calc((100vw - 1320px) / 2));
      overscroll-behavior-inline: contain;
      cursor: grab;
    }
    .gallery-track:active { cursor: grabbing; }
    .gallery-track::-webkit-scrollbar { display: none; }
    .gallery-slide {
      flex: 0 0 clamp(420px, 52vw, 760px);
      scroll-snap-align: start;
      min-width: 0;
    }
    .gallery-photo {
      position: relative;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      border-radius: 22px;
      background: var(--sage-100);
      box-shadow: 0 18px 40px rgba(47,82,39,.08);
    }
    .gallery-photo img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      transition: transform .75s var(--ease), filter .5s var(--ease);
      filter: saturate(.86) contrast(.98) brightness(.98);
    }
    .gallery-slide.is-active .gallery-photo img { transform: scale(1.018); filter: saturate(.96) contrast(1) brightness(1); }
    @media (hover: hover) and (pointer: fine) {
      .gallery-slide:hover .gallery-photo img { transform: scale(1.025); filter: saturate(.96) contrast(1) brightness(1); }
    }
    .gallery-photo::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(180deg, transparent 60%, rgba(18,46,31,.22));
    }
    .gallery-mark {
      position: absolute;
      top: 16px;
      right: 16px;
      z-index: 2;
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,.54);
      border-radius: 50%;
      color: rgba(255,255,255,.92);
      backdrop-filter: blur(7px);
      background: rgba(25,62,41,.16);
      font-size: 9px;
      letter-spacing: .08em;
    }
    .gallery-caption {
      display: grid;
      grid-template-columns: minmax(0, .52fr) minmax(0, 1fr);
      gap: 22px;
      padding-top: 13px;
      align-items: start;
    }
    .gallery-caption strong {
      font-family: var(--serif);
      font-size: 19px;
      font-weight: 500;
      line-height: 1.12;
    }
    .gallery-caption p {
      margin: 1px 0 0;
      color: var(--muted);
      font-size: 11.5px;
      line-height: 1.5;
      max-width: 42ch;
    }
    .gallery-progress {
      position: relative;
      height: 1px;
      margin-top: 30px;
      background: var(--line);
      overflow: hidden;
    }
    .gallery-progress span {
      position: absolute;
      inset: 0 auto 0 0;
      width: 12.5%;
      background: var(--brand-green);
      transform-origin: left center;
      transition: transform .45s var(--ease), width .45s var(--ease);
    }

    @media (max-width: 760px) {
      .clinic-gallery { padding: 72px 0 78px; }
      .clinic-gallery-head { grid-template-columns: 1fr; gap: 22px; margin-bottom: 32px; }
      .clinic-gallery-head h2 { font-size: clamp(42px, 13vw, 58px); }
      .clinic-gallery-copy { margin: 0; font-size: 14px; }
      .clinic-gallery-controls { margin-bottom: 14px; }
      .gallery-actions { display: none; }
      .gallery-track {
        gap: 12px;
        padding-left: 20px;
        padding-right: 20px;
        margin-left: -20px;
        margin-right: -20px;
        scroll-padding-left: 20px;
      }
      .gallery-slide { flex-basis: 82vw; }
      .gallery-photo { aspect-ratio: 4 / 5; border-radius: 20px; }
      .gallery-photo img { filter: saturate(.9) contrast(.98); }
      .gallery-caption { grid-template-columns: 1fr; gap: 5px; padding-top: 12px; }
      .gallery-caption strong { font-size: 18px; }
      .gallery-caption p { font-size: 11.5px; }
      .gallery-progress { margin-top: 18px; }
    }

  
    /* Social proof */
    .testimonials-section {
      position: relative;
      overflow: hidden;
      background: var(--pine-950);
      color: var(--cream);
      padding: 104px 0 96px;
    }
    .testimonials-section::before {
      content: "";
      position: absolute;
      width: 540px;
      height: 540px;
      right: -190px;
      top: -180px;
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 50%;
      box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018);
      pointer-events: none;
    }
    .testimonials-head {
      display: grid;
      grid-template-columns: 1.08fr .72fr;
      gap: 64px;
      align-items: end;
      margin-bottom: 46px;
    }
    .testimonials-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--clay-soft);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
    }
    .testimonials-kicker::before { content:""; width:28px; height:1px; background:currentColor; }
    .testimonials-head h2 {
      margin: 18px 0 0;
      max-width: 780px;
      font-family: var(--serif);
      font-size: clamp(48px, 5.4vw, 76px);
      line-height: .96;
      font-weight: 500;
      letter-spacing: -.035em;
    }
    .testimonials-head h2 em { color: var(--clay-soft); font-weight: 500; }
    .testimonials-intro {
      margin: 0 0 5px;
      color: rgba(247,242,232,.72);
      font-size: 14px;
      line-height: 1.72;
    }
    .reviews-rail {
      display: grid;
      grid-template-columns: repeat(12, minmax(0, 1fr));
      gap: 18px;
    }
    .review-card {
      grid-column: span 4;
      min-height: 286px;
      padding: 26px 24px 22px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 24px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 24px;
      background: rgba(255,255,255,.035);
      box-shadow: 0 18px 44px rgba(0,0,0,.08);
      transition: background .28s var(--ease), transform .28s var(--ease), border-color .28s var(--ease);
    }
    @media (hover:hover) and (pointer:fine) {
      .review-card:hover { background: rgba(255,255,255,.055); border-color: rgba(255,255,255,.18); transform: translateY(-2px); }
    }
    .review-stars {
      display: flex;
      gap: 4px;
      color: var(--clay-soft);
      font-size: 12px;
      letter-spacing: .04em;
    }
    .review-quote {
      margin: 0;
      font-family: var(--serif);
      font-size: 21px;
      line-height: 1.34;
      letter-spacing: -.012em;
      color: var(--cream);
    }
    .review-person {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding-top: 16px;
      border-top: 1px solid rgba(255,255,255,.10);
    }
    .review-person strong {
      display: block;
      font-size: 11.5px;
      letter-spacing: .04em;
      color: var(--cream);
    }
    .review-person span {
      display: block;
      margin-top: 4px;
      color: rgba(247,242,232,.50);
      font-size: 9.5px;
      text-transform: uppercase;
      letter-spacing: .11em;
    }
    .google-source {
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: rgba(247,242,232,.58);
      font-size: 9.5px;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .google-source i {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--brand-green);
      box-shadow: 0 0 0 3px rgba(73,121,56,.18);
    }
    .review-card.featured {
      grid-column: span 8;
      background: var(--cream);
      color: var(--pine-950);
      border-color: rgba(255,255,255,0);
      border-radius: 28px;
      box-shadow: 0 24px 56px rgba(18,46,31,.10);
    }
    .review-card.featured .review-quote { color: var(--pine-950); font-size: clamp(25px, 2vw, 34px); line-height: 1.26; max-width: 820px; }
    .review-card.featured .review-person { border-color: rgba(23,59,42,.12); }
    .review-card.featured .review-person strong { color: var(--pine-950); }
    .review-card.featured .review-person span,
    .review-card.featured .google-source { color: rgba(23,59,42,.58); }
    .review-card.featured .review-stars { color: var(--brand-green); }
    .testimonials-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      margin-top: 30px;
    }
    .testimonials-foot p {
      margin: 0;
      max-width: 560px;
      color: rgba(247,242,232,.62);
      font-size: 12px;
      line-height: 1.6;
    }
    .testimonials-foot .btn {
      flex: 0 0 auto;
      background: var(--cream);
      color: var(--pine-950);
      border-color: var(--cream);
    }
    @media (max-width: 900px) {
      .testimonials-head { grid-template-columns: 1fr; gap: 20px; }
      .review-card, .review-card.featured { grid-column: span 6; }
    }
    @media (max-width: 640px) {
      .testimonials-section { padding: 72px 0 78px; }
      .testimonials-head { margin-bottom: 30px; }
      .testimonials-head h2 { font-size: clamp(42px, 13vw, 58px); }
      .reviews-rail {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        gap: 12px;
        border: 0;
        padding: 0 20px 6px;
        margin: 0 -20px;
      }
      .reviews-rail::-webkit-scrollbar { display: none; }
      .review-card, .review-card.featured {
        flex: 0 0 82vw;
        min-height: 300px;
        scroll-snap-align: start;
        border: 1px solid rgba(255,255,255,.13);
        border-radius: 24px;
        padding: 24px;
      }
      .review-card.featured { background: var(--cream); border-color: transparent; }
      .review-quote, .review-card.featured .review-quote { font-size: 22px; line-height: 1.32; }
      .testimonials-foot { align-items: flex-start; flex-direction: column; margin-top: 22px; }
      .testimonials-foot .btn { width: 100%; justify-content: center; }
    }

  