  :root {
    --dark: #424446;
    --gold: #BE9E63;
    --gold-dark: #8b6a30;
    --gold-light: #d4b87a;
    --gold-pale: rgba(190,158,99,0.08);
    --mid: #707173;
    --white: #ffffff;
    --off-white: #f9f8f6;
    --light-gray: #f3f2f0;
    --border: rgba(190,158,99,0.2);
    --dark-bg: #2d2f31;
    --nav-height: 72px;
  }

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

  body {
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    background: var(--white);
  }

  button,
  input,
  textarea {
    font: inherit;
  }

  a {
    color: inherit;
  }

  .text-link-reset {
    color: inherit;
    text-decoration: none;
  }

  img,
  svg,
  iframe {
    display: block;
  }

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

  /* ─── SKIP LINK ─── */
  .skip-link {
    position: fixed;
    top: -5rem;
    left: 1rem;
    background: #000;
    color: #fff;
    padding: 0.5rem 1rem;
    z-index: 9999;
    border-radius: 0 0 4px 4px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: top 0.2s;
  }
  .skip-link:focus { top: 0; }

  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  textarea:focus-visible,
  [role="button"]:focus-visible {
    outline: 2px solid var(--dark-bg);
    outline-offset: 4px;
    box-shadow: 0 0 0 4px var(--gold);
  }

  /* ─── NAVBAR ─── */
  #navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-areas: "logo nav button";
    align-items: center;
    padding: 0 64px;
    min-height: var(--nav-height);
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
  }

  #navbar.scrolled { box-shadow: 0 2px 40px rgba(0,0,0,0.06); }

  .nav-logo {
    grid-area: logo;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
  }

  .logo-text {
    display: flex; flex-direction: column; line-height: 1;
  }

  .logo-text span:first-child {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.22em;
    color: var(--dark);
  }

  .logo-text span:last-child {
    font-size: 8.5px;
    letter-spacing: 0.3em;
    color: var(--mid);
    font-weight: 300;
    margin-top: 3px;
  }

  .nav-links {
    grid-area: nav;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    font-size: 10.5px;
    letter-spacing: 0.18em;
    font-weight: 400;
    color: var(--mid);
    text-transform: uppercase;
    transition: color 0.2s;
    cursor: pointer;
  }

  .nav-links a:hover { color: var(--gold-dark); }

  .btn-nav {
    grid-area: button;
    justify-self: end;
    border: 1px solid var(--gold-dark);
    color: var(--gold-dark);
    padding: 9px 22px;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: transparent;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .btn-nav:hover { background: var(--gold); color: var(--dark-bg); }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--dark);
    transition: all 0.3s;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid var(--border);
    z-index: 199;
    padding: 24px 32px 32px;
    flex-direction: column;
    gap: 20px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mid);
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  .mobile-menu .btn-nav { margin-top: 8px; text-align: center; }

  /* ─── HERO ─── */
  #hero {
    min-height: 96vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 130px 48px 100px;
    position: relative;
    overflow: hidden;
  }

  .hero-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.035;
  }

  .hero-content {
    max-width: 860px;
    position: relative;
    z-index: 2;
  }

  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 400;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.3s;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 6.5vw, 82px);
    font-weight: 300;
    line-height: 1.08;
    color: var(--dark);
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.5s;
  }

  .hero-title em { font-style: italic; color: var(--gold); }

  .hero-sub {
    font-size: 15.5px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--mid);
    max-width: 580px;
    margin: 0 auto 52px;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.7s;
  }

  .hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.9s;
  }

  .btn-gold,
  .btn-outline,
  .btn-outline-light {
    border: 1px solid var(--gold);
    padding: 15px 38px;
    font-size: 10.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }

  .btn-gold {
    background: var(--gold);
    color: white;
  }

  .btn-gold:hover { background: transparent; color: var(--gold-dark); }

  .btn-outline {
    border: 1px solid rgba(66,68,70,0.25);
    color: var(--dark);
    background: transparent;
  }

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

  .btn-outline-light {
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.65);
    background: transparent;
  }

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

  .hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.4s;
    cursor: pointer;
    appearance: none;
    background: none;
    border: 0;
    font: inherit;
    padding: 0;
  }

  .scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, var(--gold));
    animation: scrollPulse 2s ease-in-out infinite;
  }

  .scroll-text {
    font-size: 8.5px;
    letter-spacing: 0.3em;
    color: var(--gold-dark);
    text-transform: uppercase;
    font-weight: 300;
  }

  /* ─── WHO ─── */
  #who {
    background: var(--off-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .who-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 100%;
  }

  .who-item {
    padding: 52px 44px;
    border-right: 1px solid var(--border);
    transition: background 0.3s;
  }

  .who-item:last-child { border-right: none; }
  .who-item:hover { background: white; }

  .who-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 300;
    color: rgba(190,158,99,0.60);
    line-height: 1;
    margin-bottom: 14px;
  }

  .who-title {
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 10px;
  }

  .who-desc {
    font-size: 13px;
    color: var(--dark);
    font-weight: 300;
    line-height: 1.65;
  }

  /* ─── SECTION SHARED ─── */
  main { display: block; }
  section { scroll-margin-top: calc(var(--nav-height) + 16px); }

  .section-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 14px;
    display: block;
  }

  .section-label-center {
    text-align: center;
  }

  #method .section-label,
  #location-cta .section-label {
    color: var(--gold);
  }

  .gold-rule {
    width: 36px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 22px;
  }

  .gold-rule.center { margin: 0 auto 22px; }

  /* ─── PROBLEM ─── */
  #problem {
    padding: 130px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    max-width: 1280px;
    margin: 0 auto;
    align-items: center;
  }

  .problem-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 36px;
  }

  .problem-list {
    list-style: none;
    margin-bottom: 36px;
  }

  .problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 14px;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.5;
  }

  .problem-list li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 7px;
  }

  .problem-close {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-style: italic;
    color: var(--gold-dark);
  }

  .compare-box {
    border: 1px solid var(--border);
    background: var(--off-white);
  }

  .compare-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--border);
  }

  .compare-col-label {
    padding: 22px 28px;
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--mid);
  }

  .compare-col-label:first-child { border-right: 1px solid var(--border); }
  .compare-col-label.gold { color: var(--gold-dark); }

  .compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }

  .compare-row:last-child { border-bottom: none; }

  .compare-cell {
    padding: 15px 28px;
    font-size: 12.5px;
    font-weight: 300;
    color: var(--mid);
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .compare-cell:first-child { border-right: 1px solid var(--border); }

  .compare-cell.neg {
    color: var(--dark);
    font-weight: 400;
  }

  .compare-cell.neg::before {
    content: '−';
    color: var(--gold-dark);
    font-size: 24px;
    flex-shrink: 0;
    font-weight: 400;
  }

  .compare-cell.pos {
    color: var(--dark);
    font-weight: 400;
  }

  .compare-cell.pos::before {
    content: '+';
    color: var(--gold-dark);
    font-size: 24px;
    flex-shrink: 0;
    font-weight: 400;
  }

  /* ─── METHOD ─── */
  #method {
    background: var(--dark-bg);
    padding: 130px 80px;
    position: relative;
    overflow: hidden;
  }

  .method-bg-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(190,158,99,0.06);
    pointer-events: none;
  }

  .method-bg-ring-lg {
    width: 700px;
    height: 700px;
  }

  .method-bg-ring-sm {
    width: 460px;
    height: 460px;
  }

  .method-kicker {
    position: relative;
    z-index: 2;
    margin-bottom: 16px;
  }

  .method-progress-ring {
    transform-origin: 230px 230px;
    transform: rotate(-90deg);
    animation: drawArc 2.5s cubic-bezier(0.4,0,0.2,1) forwards 0.6s;
  }

  .diag-hit {
    cursor: pointer;
  }

  .diag-svg-text {
    pointer-events: none;
  }

  .method-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 5.5vw, 70px);
    font-weight: 300;
    color: white;
    line-height: 1.05;
    margin-bottom: 16px;
    text-align: center;
  }

  .method-sub {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 60px;
  }

  .method-diagram-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 72px;
    position: relative;
    z-index: 2;
  }

  .method-diagram {
    width: min(460px, 90vw);
    height: min(460px, 90vw);
    position: relative;
  }

  .method-diagram svg {
    width: 100%; height: 100%;
    overflow: visible;
  }

  /* Method step boxes */
  .method-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(190,158,99,0.15);
    background: rgba(190,158,99,0.12);
    gap: 1px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .method-step {
    background: var(--dark-bg);
    padding: 44px 36px;
    transition: background 0.35s;
    cursor: default;
    border: 1px solid rgba(190,158,99,0.12);
    border-radius: 2px;
  }

  .method-step:hover { background: rgba(190,158,99,0.06); }

  .ms-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 300;
    color: rgba(190,158,99,0.60);
    margin-bottom: 16px;
    line-height: 1;
  }

  .ms-title {
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 14px;
  }

  .ms-body {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    line-height: 1.72;
  }

  .diag-tooltip {
    position: absolute;
    width: 210px;
    background: #191a1b;
    border-left: 2px solid var(--gold);
    padding: 14px 16px 14px 18px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 20;
    box-shadow: 0 6px 24px rgba(0,0,0,0.55);
  }
  .diag-tooltip.show { opacity: 1; transform: translateY(0); }
  .diag-tooltip-label {
    display: block;
    font-size: 8px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 7px;
  }
  .diag-tooltip-body {
    font-size: 11px;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    line-height: 1.65;
  }

  /* ─── SERVICES ─── */
  #services {
    padding: 130px 80px;
    max-width: 1280px;
    margin: 0 auto;
  }

  .section-header {
    margin-bottom: 56px;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 300;
    color: var(--dark);
    line-height: 1.1;
  }

  .services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(0,0,0,0.07);
    border: 1px solid rgba(0,0,0,0.07);
  }

  .service-card {
    background: white;
    padding: 52px;
    transition: background 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 52px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.5s ease;
  }

  .service-card:hover { background: var(--off-white); }
  .service-card:hover::after { width: calc(100% - 104px); }

  .sc-icon {
    width: 34px; height: 34px;
    color: var(--gold);
    margin-bottom: 26px;
    opacity: 0.85;
  }

  .sc-title {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 12px;
  }

  .sc-body {
    font-size: 14px;
    font-weight: 300;
    color: var(--dark);
    line-height: 1.75;
  }

  /* ─── DIFFERENT ─── */
  #different {
    background: var(--off-white);
    padding: 130px 80px;
    border-bottom: 1px solid var(--border);
  }

  .different-inner {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 100px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
  }

  .different-sticky {
    position: sticky;
    top: 104px;
  }

  .diff-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 300;
    color: var(--dark);
    line-height: 1.15;
  }

  .diff-list { list-style: none; }

  .diff-item {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 20px;
    align-items: start;
    padding: 26px 0;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    opacity: 0;
    transform: translateX(-16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .diff-item.vis { opacity: 1; transform: translateX(0); }

  .diff-arrow { color: var(--gold-dark); font-size: 14px; margin-top: 2px; }

  .diff-text {
    font-size: 14.5px;
    font-weight: 300;
    color: var(--dark);
    line-height: 1.65;
  }

  /* ─── MEMBERSHIP ─── */
  #membership {
    padding: 130px 80px;
    text-align: center;
  }

  .membership-inner {
    max-width: 660px;
    margin: 0 auto;
  }

  .membership-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 5.5vw, 68px);
    font-weight: 300;
    color: var(--dark);
    line-height: 1.08;
    margin-bottom: 24px;
  }

  .membership-title em { font-style: italic; color: var(--gold); }

  .membership-intro {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.75;
    margin-bottom: 52px;
  }

  .mb-list { list-style: none; margin-bottom: 52px; text-align: left; }

  .mb-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 15px;
    font-weight: 300;
    color: var(--dark);
  }

  .mb-dot {
    width: 5px; height: 5px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* ─── TEAM ─── */
  #team {
    background: var(--off-white);
    padding: 130px 80px;
    border-top: 1px solid var(--border);
  }

  .team-header {
    text-align: center;
    margin-bottom: 48px;
  }

  .team-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 300;
    color: var(--dark);
    margin-bottom: 12px;
  }

  .team-sub {
    font-size: 14px;
    font-weight: 300;
    color: var(--dark);
  }

  .team-group-photo {
    max-width: 1100px;
    margin: 0 auto 64px;
    overflow: hidden;
    border: 1px solid var(--border);
  }

  .team-group-photo img {
    width: 100%;
    height: auto;
    display: block;
  }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    max-width: 1100px;
    margin: 0 auto;
  }

  .team-card {
    background: var(--off-white);
    transition: background 0.3s;
    overflow: hidden;
    cursor: pointer;
  }

  .team-card:hover,
  .team-card:focus-visible {
    background: white;
  }

  .team-card:focus-visible {
    outline: 2px solid var(--dark-bg);
    outline-offset: 4px;
    box-shadow: 0 0 0 4px var(--gold);
  }

  .team-card-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
  }

  .team-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
  }

  .team-card:hover .team-card-photo img,
  .team-card:focus-visible .team-card-photo img {
    transform: scale(1.03);
  }

  .team-card-info {
    padding: 20px 24px 26px;
  }

  .tc-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 5px;
  }

  .tc-role {
    font-size: 9.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 10px;
    font-weight: 400;
  }

  .tc-bio {
    font-size: 11.5px;
    font-weight: 300;
    color: var(--dark);
    line-height: 1.65;
    margin-bottom: 10px;
  }

  .bio-btn {
    background: none;
    border: none;
    color: var(--gold-dark);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 400;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: opacity 0.2s;
  }

  .team-card:hover .bio-btn,
  .team-card:focus-visible .bio-btn {
    opacity: 0.65;
  }
  .bio-btn::after { content: '\2192'; font-size: 11px; }

  /* Bio modal */
  .bio-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(35,37,39,0.85);
    backdrop-filter: blur(10px);
    z-index: 1100;
    align-items: center;
    justify-content: center;
    padding: 32px;
  }

  .bio-modal-overlay.open { display: flex; }

  .bio-modal-box {
    background: white;
    max-width: 680px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    animation: modalIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: grid;
    grid-template-columns: 220px 1fr;
  }

  .bio-modal-photo {
    width: 220px;
    overflow: hidden;
  }

  .bio-modal-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  .bio-modal-content {
    padding: 44px 40px;
    overflow-y: auto;
    max-height: 90vh;
  }

  .bio-modal-close {
    position: absolute;
    top: 16px; right: 18px;
    background: white;
    border: none;
    font-size: 16px;
    color: var(--mid);
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s;
    padding: 6px;
    width: 32px; height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }

  .bio-modal-close:hover { color: var(--dark); background: var(--off-white); }

  .bio-modal-eyebrow {
    font-size: 8.5px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
  }

  .bio-modal-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 300;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 4px;
  }

  .bio-modal-role {
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--mid);
    font-weight: 400;
    margin-bottom: 20px;
    display: block;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
  }

  .bio-modal-text {
    font-size: 12.5px;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.85;
  }

  .bio-modal-text p { margin-bottom: 14px; }
  .bio-modal-text p:last-child { margin-bottom: 0; }

  /* Disclaimer modal */
  .disc-box {
    background: white;
    padding: 52px;
    max-width: 620px;
    width: 100%;
    position: relative;
    animation: modalIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 85vh;
    overflow-y: auto;
  }

  .disc-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    color: var(--dark);
    margin-bottom: 20px;
  }

  .disc-body {
    font-size: 12.5px;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.85;
    margin-bottom: 12px;
  }

  .disc-body a {
    color: var(--gold-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .privacy-box {
    max-width: 700px;
  }

  .privacy-updated {
    color: var(--gold-dark);
    margin-bottom: 20px;
  }

  .privacy-heading {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--dark);
    margin: 24px 0 8px;
    font-weight: 500;
  }

  .privacy-address {
    margin-top: 10px;
    font-style: normal;
    font-size: 12.5px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--mid);
    text-align: left;
  }

  .final-bg {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(190,158,99,0.04) 0%, transparent 70%);
    pointer-events: none;
  }

  .final-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 300;
    color: white;
    max-width: 680px;
    margin: 0 auto 52px;
    line-height: 1.2;
    position: relative;
    z-index: 2;
  }

  .final-title em { font-style: italic; color: var(--gold); }

  .final-cta-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
  }

  /* ─── LOCATION CTA ─── */
  #location-cta {
    padding: 100px 80px;
    text-align: center;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
  }

  #location-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
  }

  .location-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 900px;
    margin: 0 auto 52px;
    border: 1px solid rgba(190,158,99,0.2);
    position: relative;
    z-index: 2;
  }

  .location-info {
    padding: 40px 44px;
    text-align: left;
    background: rgba(255,255,255,0.03);
    border-right: 1px solid rgba(190,158,99,0.2);
  }

  .location-tag {
    font-size: 9px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
  }

  .location-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 20px;
  }

  .location-detail {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
  }

  .location-detail svg { flex-shrink: 0; margin-top: 2px; }

  .location-link {
    color: rgba(255,255,255,0.72);
    text-decoration: underline;
    text-decoration-color: rgba(190,158,99,0.45);
    text-underline-offset: 3px;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
  }

  .location-link:hover,
  .location-link:focus-visible {
    color: var(--gold);
    text-decoration-color: var(--gold);
  }

  .location-inline-button {
    appearance: none;
    background: none;
    border: 0;
    padding: 0;
    font: inherit;
    cursor: pointer;
    text-align: left;
  }

  .location-map {
    position: relative;
    overflow: hidden;
    background: #1a1c1e;
  }

  .location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 260px;
    border: none;
    filter: grayscale(100%) contrast(1.1) brightness(0.7);
  }

  /* ─── ANSWERS ─── */
  .answers-section {
    padding: 96px 80px;
    background: var(--off-white);
    border-top: 1px solid var(--border);
  }

  .answers-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
  }

  .answers-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 300;
    line-height: 1.14;
    color: var(--dark);
    max-width: 620px;
    margin: 18px auto 40px;
    text-wrap: balance;
  }

  .answers-title em {
    display: inline-block;
    color: var(--gold);
    font-style: italic;
  }

  .answers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid var(--border);
    background: var(--border);
    gap: 1px;
    text-align: left;
  }

  .answer-item {
    background: var(--off-white);
    padding: 34px;
  }

  .answer-item h3 {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 14px;
    line-height: 1.5;
  }

  .answer-item p {
    font-size: 13.5px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--mid);
  }

  .answer-link {
    color: var(--gold-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
  }

  .answer-link:hover,
  .answer-link:focus-visible {
    color: var(--gold);
  }

  .answer-inline-button {
    appearance: none;
    background: none;
    border: 0;
    padding: 0;
    font: inherit;
    cursor: pointer;
  }

  /* ─── FOOTER ─── */
  footer {
    background: #252729;
    padding: 48px 60px;
    border-top: 1px solid rgba(255,255,255,0.04);
  }

  .footer-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-main nav {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .footer-nav {
    display: flex;
    gap: 26px;
    list-style: none;
    flex-wrap: wrap;
  }

  .footer-nav a {
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    transition: color 0.2s;
    cursor: pointer;
  }

  .footer-nav a:hover { color: var(--gold); }

  .footer-logo-primary,
  footer .logo-text span:first-child {
    color: #ffffff;
  }

  .footer-logo-secondary,
  footer .logo-text span:last-child {
    color: rgba(255,255,255,0.60);
  }

  .footer-address {
    font-style: normal;
    font-size: 11.5px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.06em;
    line-height: 1.75;
    text-align: right;
  }

  .footer-address a {
    color: rgba(190,158,99,0.8);
    text-decoration: none;
  }

  .footer-address a:hover {
    color: var(--gold);
  }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-copy {
    font-size: 10px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.08em;
  }

  .footer-disclaimer-btn {
    font-size: 10px;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.08em;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    background: none;
    border: none;
    transition: color 0.2s;
  }

  .footer-disclaimer-btn:hover { color: var(--gold); }

  .footer-legal-links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  footer .logo-bars { fill: rgba(255,255,255,0.55); }

  /* ─── MODAL ─── */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(45,47,49,0.75);
    backdrop-filter: blur(8px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 40px;
  }

  .modal-overlay.open { display: flex; }

  .modal-box {
    background: white;
    padding: 64px;
    max-width: 530px;
    width: 100%;
    position: relative;
    animation: modalIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  @keyframes modalIn {
    from { opacity: 0; transform: translateY(28px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }

  .modal-close {
    position: absolute;
    top: 24px; right: 28px;
    background: none; border: none;
    font-size: 16px; color: var(--mid);
    cursor: pointer; line-height: 1;
    transition: color 0.2s; padding: 4px;
  }

  .modal-close:hover { color: var(--dark); }

  .modal-eyebrow {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 12px;
    font-weight: 400;
    display: block;
  }

  .modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.1;
  }

  .modal-desc {
    font-size: 13px;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.7;
    margin-bottom: 36px;
  }

  .form-field {
    margin-bottom: 20px;
  }

  .form-field label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 8px;
    font-weight: 400;
  }

  .form-field input,
  .form-field textarea {
    width: 100%;
    border: 1px solid rgba(0,0,0,0.12);
    padding: 13px 16px;
    font-size: 13.5px;
    font-weight: 300;
    color: var(--dark);
    background: transparent;
    outline: none;
    transition: border-color 0.25s;
    resize: none;
    border-radius: 0;
    -webkit-appearance: none;
  }

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

  .form-field textarea { height: 108px; }

  .form-submit {
    width: 100%;
    background: var(--gold);
    color: white;
    border: 1px solid var(--gold);
    padding: 15px;
    font-size: 10.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 4px;
  }

  .form-submit:hover { background: transparent; color: var(--gold-dark); }
  .form-submit:disabled {
    opacity: 0.7;
    cursor: wait;
  }

  .form-error {
    font-size: 11.5px;
    color: #c0392b;
    margin-top: 10px;
    display: none;
  }

  .honeypot-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
  }

  .form-success {
    display: none;
    text-align: center;
    padding: 20px 0;
  }

  .success-mark {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
  }

  .success-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    color: var(--dark);
    margin-bottom: 10px;
  }

  .success-body {
    font-size: 13px;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.7;
  }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(26px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
  }

  @keyframes drawArc {
    to { stroke-dashoffset: 0; }
  }

  .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .reveal.vis {
    opacity: 1;
    transform: translateY(0);
  }

  @media (max-width: 1180px) {
    #navbar {
      padding: 18px 32px;
      column-gap: 20px;
    }

    .nav-links {
      gap: 18px 24px;
    }

    #problem,
    #services,
    #different,
    #membership,
    #team,
    #answers,
    #location-cta,
    #method {
      padding-left: 48px;
      padding-right: 48px;
    }

    .who-grid,
    .method-steps {
      grid-template-columns: repeat(2, 1fr);
    }

    .different-inner {
      grid-template-columns: 1fr;
      gap: 48px;
    }

    .different-sticky {
      position: static;
    }

    .team-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 820px) {
    :root {
      --nav-height: 72px;
    }

    #navbar {
      padding: 0 24px;
      display: flex;
      grid-template-columns: unset;
      grid-template-areas: unset;
    }

    .nav-links { display: none; }
    #navbar > .btn-nav { display: none; }
    .hamburger {
      display: flex;
      margin-left: auto;
    }

    #hero {
      min-height: auto;
      padding: calc(var(--nav-height) + 36px) 24px 72px;
    }

    .hero-scroll { display: none; }

    #problem,
    #services,
    #different,
    #membership,
    #team,
    #answers,
    #location-cta,
    #method {
      padding: 88px 24px;
    }

    .location-block { grid-template-columns: 1fr; }
    .location-info {
      border-right: none;
      border-bottom: 1px solid rgba(190,158,99,0.2);
    }

    .team-group-photo {
      width: 100vw;
      max-width: none;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      border-left: none;
      border-right: none;
    }

    .who-grid,
    .services-grid,
    .team-grid,
    .answers-grid,
    .method-steps {
      grid-template-columns: 1fr;
    }

    .compare-box {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }

    .compare-header,
    .compare-row {
      grid-template-columns: 75vw 75vw;
    }

    .who-item,
    .service-card {
      border-right: none;
    }

    #problem {
      grid-template-columns: 1fr;
      gap: 48px;
    }

    .method-diagram {
      width: min(100%, 420px);
      height: auto;
      aspect-ratio: 1;
    }

    footer { padding: 36px 28px; }
    .footer-main { flex-direction: column; align-items: flex-start; gap: 24px; }
    .footer-main nav { justify-content: flex-start; }
    .footer-address { text-align: left; }
    .footer-bottom {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      text-align: center;
    }

    .modal-overlay { padding: 18px; }
    .modal-box, .disc-box { padding: 44px 28px; }

    .bio-modal-box {
      grid-template-columns: 1fr;
      max-height: 85vh;
      overflow-y: auto;
    }

    .bio-modal-photo {
      width: 100%;
      height: 260px;
    }

    .btn-gold,
    .btn-outline,
    .btn-outline-light {
      width: 80vw;
      text-align: center;
      box-sizing: border-box;
    }
  }

  @media (max-width: 480px) {
    .method-steps { grid-template-columns: 1fr; }
  }

  @media (max-width: 560px) {
    .logo-text span:first-child {
      font-size: 12px;
      letter-spacing: 0.18em;
    }

    .logo-text span:last-child,
    .nav-links a,
    .btn-nav {
      letter-spacing: 0.14em;
    }

    .hero-title,
    .method-title,
    .membership-title,
    .team-title,
    .final-title {
      line-height: 1.14;
    }

    .method-step,
    .service-card {
      padding: 28px 22px;
    }

    .compare-col-label,
    .compare-cell {
      padding-left: 18px;
      padding-right: 18px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      scroll-behavior: auto !important;
      transition-duration: 0.01ms !important;
    }
  }

  @media (forced-colors: active) {
    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    textarea:focus-visible,
    [role="button"]:focus-visible {
      outline: 2px solid ButtonText;
      box-shadow: none;
    }
  }

  @media print {
    #navbar,
    .mobile-menu,
    .hero-scroll,
    .method-diagram,
    .modal-overlay,
    .bio-modal-overlay,
    #location-cta,
    footer {
      display: none !important;
    }

    body {
      color: #000;
      background: #fff;
    }

    a[href]::after {
      content: " (" attr(href) ")";
      font-size: 9pt;
    }
  }
