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

  :root {
    --ink: #0e1015;
    --ink-soft: #1e2028;
    --stone: #8a8a88;
    --warm-white: #f9f9f7;
    --cream: #f0eeea;
    --gold: #b8955a;
    --gold-light: #d4b07a;
    --white: #ffffff;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Jost', sans-serif;
  }

  html { scroll-behavior: smooth; }

  /* ─── MAX-WIDTH WRAPPER ───────────────────────────────── */
  .section-wrap {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
  }

  body {
    font-family: var(--font-body);
    background: var(--warm-white);
    color: var(--ink);
    font-weight: 300;
    overflow-x: hidden;
  }

  /* ─── NAV ─────────────────────────────────────────────── */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(14,16,21,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(184,149,90,0.2);
    padding: 0 48px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: height 0.3s;
  }

  .nav-logo {
    display: flex; align-items: center; gap: 14px;
    text-decoration: none; flex-shrink: 0;
  }
  .nav-logo-mark {
    width: 36px; height: 36px;
    border: 1.5px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    transform: rotate(45deg);
  }
  .nav-logo-mark span {
    transform: rotate(-45deg);
    font-family: var(--font-display);
    font-size: 15px; color: var(--gold); letter-spacing: 0.05em;
  }
  .nav-logo-text {
    font-family: var(--font-display);
    font-size: 20px; font-weight: 500; color: var(--white); letter-spacing: 0.04em;
  }
  .nav-logo-text span { color: var(--gold); }

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

  .nav-item { position: static; }

  .nav-item > a {
    display: flex; align-items: center; gap: 6px;
    padding: 0 18px; height: 72px;
    font-size: 11.5px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.72); text-decoration: none; transition: color 0.2s; cursor: pointer;
    white-space: nowrap;
  }
  .nav-item > a:hover { color: var(--gold-light); }

  .nav-item > a .arrow {
    width: 7px; height: 7px;
    border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px); transition: transform 0.2s;
  }
  .nav-item:hover > a .arrow { transform: rotate(225deg) translateY(-2px); }
  .nav-item:hover > a { color: var(--gold-light); }

  /* ── Mega panel — full-width drop ── */
  .mega-panel {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--ink);
    border-top: 1px solid rgba(184,149,90,0.25);
    border-bottom: 1px solid rgba(184,149,90,0.12);
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
    opacity: 0; visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.22s cubic-bezier(0.4,0,0.2,1), transform 0.22s cubic-bezier(0.4,0,0.2,1), visibility 0.22s;
    pointer-events: none;
  }
  .nav-item:hover .mega-panel {
    opacity: 1; visibility: visible; transform: translateY(0); pointer-events: all;
  }

  .mega-inner {
    max-width: 1200px; margin: 0 auto; padding: 40px 48px;
  }

  /* ── Services mega ── */
  .mega-services { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 2px; }

  .mega-service-card {
    display: block; text-decoration: none;
    padding: 28px 24px 28px;
    border: 1px solid rgba(255,255,255,0.04);
    transition: background 0.2s, border-color 0.2s;
    position: relative; overflow: hidden;
  }
  .mega-service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 2px; background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
  }
  .mega-service-card:hover { background: rgba(184,149,90,0.06); border-color: rgba(184,149,90,0.15); }
  .mega-service-card:hover::before { transform: scaleX(1); }

  .mega-service-num {
    font-size: 10px; letter-spacing: 0.2em; color: var(--gold); opacity: 0.7;
    margin-bottom: 14px; font-weight: 500;
  }
  .mega-service-title {
    font-family: var(--font-display); font-size: 20px; font-weight: 400;
    color: var(--white); line-height: 1.25; margin-bottom: 10px;
  }
  .mega-service-desc {
    font-size: 12px; line-height: 1.65; color: rgba(255,255,255,0.42); font-weight: 300;
  }
  .mega-service-link {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 18px; font-size: 11px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold);
    opacity: 0; transform: translateX(-4px);
    transition: opacity 0.2s, transform 0.2s;
  }
  .mega-service-card:hover .mega-service-link { opacity: 1; transform: translateX(0); }

  /* ── About mega ── */
  .mega-about { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; align-items: start; }

  .mega-about-intro {}
  .mega-about-intro p {
    font-size: 13px; line-height: 1.75; color: rgba(255,255,255,0.45);
    font-weight: 300; max-width: 280px; margin-top: 12px;
  }

  .mega-col-label {
    font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); font-weight: 500; margin-bottom: 20px;
    padding-bottom: 12px; border-bottom: 1px solid rgba(184,149,90,0.2);
  }

  .mega-link-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
  .mega-link-list a {
    display: block; padding: 9px 12px;
    font-size: 13px; font-weight: 400; letter-spacing: 0.04em;
    color: rgba(255,255,255,0.65); text-decoration: none;
    transition: color 0.15s, background 0.15s, padding-left 0.15s;
    border-left: 1px solid transparent;
  }
  .mega-link-list a:hover {
    color: var(--gold-light); background: rgba(184,149,90,0.05);
    padding-left: 18px; border-left-color: var(--gold);
  }

  /* ── Locations mega ── */
  .mega-locations { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; }

  .mega-location-card {
    display: block; text-decoration: none;
    padding: 24px 20px;
    border: 1px solid rgba(255,255,255,0.04);
    transition: background 0.2s, border-color 0.2s;
    position: relative;
  }
  .mega-location-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 1px; background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.25s;
  }
  .mega-location-card:hover { background: rgba(184,149,90,0.06); border-color: rgba(184,149,90,0.15); }
  .mega-location-card:hover::after { transform: scaleX(1); }

  .mega-location-city {
    font-family: var(--font-display); font-size: 20px; font-weight: 400;
    color: var(--white); margin-bottom: 4px;
  }
  .mega-location-state {
    font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 14px;
  }
  .mega-location-desc {
    font-size: 12px; line-height: 1.6; color: rgba(255,255,255,0.4); font-weight: 300;
  }

  /* ── Patients mega ── */
  .mega-patients { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; align-items: start; }

  /* ── Contact mega ── */
  .mega-contact { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; align-items: center; }

  .mega-contact-intro {}
  .mega-contact-intro p {
    font-size: 13px; line-height: 1.75; color: rgba(255,255,255,0.45);
    font-weight: 300; max-width: 320px; margin-top: 10px;
  }

  .mega-contact-heading {
    font-family: var(--font-display); font-size: 28px; font-weight: 300;
    color: var(--white); line-height: 1.2;
  }
  .mega-contact-heading em { font-style: italic; color: var(--gold-light); }

  .mega-contact-btns { display: flex; flex-direction: column; gap: 8px; }

  .mega-cbtn {
    display: flex; align-items: center;
    padding: 13px 20px;
    font-size: 12px; font-weight: 500; letter-spacing: 0.08em;
    text-decoration: none; transition: all 0.2s; cursor: pointer; border: none;
    width: 100%;
  }
  .mega-cbtn-call { background: var(--gold); color: var(--ink); }
  .mega-cbtn-call:hover { background: var(--gold-light); }
  .mega-cbtn-email { background: transparent; border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.7); }
  .mega-cbtn-email:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.3); color: var(--white); }
  .mega-cbtn-book { background: var(--white); color: var(--ink) !important; }
  .mega-cbtn-book:hover { background: rgba(255,255,255,0.88); color: var(--gold) !important; }

  .nav-cta {
    display: flex; align-items: center; gap: 12px; flex-shrink: 0;
  }

  .btn-nav-book {
    padding: 10px 22px; font-family: var(--font-body);
    font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
    background: var(--gold); color: var(--ink); border: none;
    cursor: pointer; text-decoration: none; transition: background 0.2s; white-space: nowrap;
  }
  .btn-nav-book:hover { background: var(--gold-light); }

  .btn-nav-tel {
    font-size: 12px; font-weight: 400; letter-spacing: 0.06em;
    color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; white-space: nowrap;
  }
  .btn-nav-tel:hover { color: var(--gold-light); }

  /* ─── HERO ─────────────────────────────────────────────── */
  .hero {
    min-height: 100vh;
    background: var(--ink);
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 0 80px 100px;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 70% 60% at 70% 40%, rgba(74,92,82,0.25) 0%, transparent 60%),
      radial-gradient(ellipse 40% 50% at 20% 80%, rgba(184,149,90,0.12) 0%, transparent 50%),
      linear-gradient(165deg, #0e1015 0%, #141820 40%, #0e1015 100%);
  }

  .hero-grain {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.4;
  }

  .hero-line {
    position: absolute;
    top: 0; bottom: 0; right: 38%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(184,149,90,0.3) 30%, rgba(184,149,90,0.3) 70%, transparent);
  }

  .hero-image-panel {
    position: absolute;
    top: 0; right: 0;
    width: 38%;
    height: 100%;
    overflow: hidden;
  }

  .hero-image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    filter: grayscale(20%);
  }

  .hero-image-panel::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to right, var(--ink) 0%, transparent 25%, transparent 80%, rgba(14,16,21,0.5) 100%);
  }

  .hero-eyebrow {
    display: flex; align-items: center; gap: 12px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
  }
  .hero-eyebrow::before {
    content: '';
    width: 36px; height: 1px;
    background: var(--gold);
  }

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

  .hero-h1 {
    font-family: var(--font-display);
    font-size: clamp(52px, 6vw, 88px);
    font-weight: 300;
    line-height: 1.06;
    color: var(--white);
    margin-bottom: 32px;
    letter-spacing: -0.01em;
  }
  .hero-h1 em {
    font-style: italic;
    color: var(--gold-light);
  }

  .hero-sub {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    max-width: 460px;
    margin-bottom: 48px;
  }

  .hero-actions {
    display: flex; align-items: center; gap: 24px;
  }

  .btn-primary {
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--ink);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

  .btn-ghost {
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.25);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
    display: inline-block;
  }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }

  .hero-stats {
    position: absolute;
    bottom: 100px; right: 80px;
    z-index: 3;
    display: flex; gap: 48px;
  }

  .stat {
    text-align: right;
  }
  .stat-num {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
  }
  .stat-num sup { font-size: 0.5em; color: var(--gold); }
  .stat-label {
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--stone);
  }

  /* ─── SECTION COMMONS ─────────────────────────────── */
  section { position: relative; }

  .section-eyebrow {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }
  .section-eyebrow::before {
    content: '';
    width: 28px; height: 1px;
    background: var(--gold);
  }

  /* ─── MISSION ─────────────────────────────────────── */
  .mission {
    background: var(--cream);
    padding: 120px 0;
  }

  .mission .section-wrap {
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .mission-left {}

  .mission-h2 {
    font-family: var(--font-display);
    font-size: clamp(38px, 3.5vw, 60px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
  }
  .mission-h2 em {
    font-style: italic;
    color: var(--gold);
  }

  .mission-body {
    font-size: 15px;
    line-height: 1.8;
    color: var(--ink-soft);
    margin-bottom: 40px;
    max-width: 460px;
  }

  .mission-right {
    position: relative;
  }

  .mission-img-wrap {
    position: relative;
    height: 540px;
  }

  .mission-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .mission-img-accent {
    position: absolute;
    bottom: -24px; left: -24px;
    width: 160px; height: 160px;
    background: var(--gold);
    z-index: -1;
  }

  .mission-pill {
    position: absolute;
    top: 32px; right: -20px;
    background: var(--ink);
    color: var(--white);
    padding: 20px 24px;
    text-align: center;
    min-width: 130px;
  }
  .mission-pill-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
  }
  .mission-pill-txt {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
  }

  .pillars {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    border-top: 1px solid rgba(14,16,21,0.12);
    margin-top: 48px;
  }

  .pillar {
    padding: 28px 0 0;
    border-right: 1px solid rgba(14,16,21,0.1);
    padding-right: 24px;
    padding-left: 0;
  }
  .pillar:last-child { border-right: none; padding-left: 24px; padding-right: 0; }
  .pillar:nth-child(2) { padding-left: 24px; }

  .pillar-icon {
    width: 36px; height: 36px;
    border: 1px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
    color: var(--gold);
    font-size: 16px;
  }

  .pillar h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--ink);
  }

  .pillar p {
    font-size: 13px;
    line-height: 1.65;
    color: var(--stone);
  }

  /* ─── SERVICES ────────────────────────────────────── */
  .services {
    background: var(--ink);
    padding: 120px 0;
  }

  .services .section-wrap {
    padding: 0 80px;
  }

  .services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
  }

  .services-h2 {
    font-family: var(--font-display);
    font-size: clamp(40px, 3.8vw, 64px);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    max-width: 520px;
    letter-spacing: -0.01em;
  }
  .services-h2 em { font-style: italic; color: var(--gold-light); }

  .services-sub {
    font-size: 14px;
    line-height: 1.7;
    color: var(--stone);
    max-width: 300px;
    text-align: right;
  }

  .services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }

  .service-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 380px;
    background: #141820;
    group: '';
  }

  .service-card img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.35;
    transition: opacity 0.5s, transform 0.6s cubic-bezier(0.4,0,0.2,1);
    filter: grayscale(30%);
  }

  .service-card:hover img {
    opacity: 0.5;
    transform: scale(1.04);
  }

  .service-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(14,16,21,0.9) 0%, rgba(14,16,21,0.2) 60%, transparent 100%);
  }

  .service-card-body {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 40px;
    z-index: 2;
  }

  .service-card-num {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 12px;
  }

  .service-card-title {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .service-card-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    max-width: 320px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s 0.05s;
  }

  .service-card:hover .service-card-desc {
    opacity: 1;
    transform: translateY(0);
  }

  .service-card-arrow {
    position: absolute; top: 40px; right: 40px;
    width: 44px; height: 44px;
    border: 1px solid rgba(184,149,90,0.4);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 18px;
    transition: all 0.3s;
    z-index: 2;
  }

  .service-card:hover .service-card-arrow {
    background: var(--gold);
    color: var(--ink);
    border-color: var(--gold);
  }

  /* ─── REVIEWS ─────────────────────────────────────── */
  .reviews {
    background: var(--warm-white);
    padding: 120px 0;
  }

  .reviews .section-wrap {
    padding: 0 80px;
  }

  .reviews-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 64px;
  }

  .reviews-h2 {
    font-family: var(--font-display);
    font-size: clamp(38px, 3.5vw, 58px);
    font-weight: 300;
    line-height: 1.12;
    color: var(--ink);
  }
  .reviews-h2 em { font-style: italic; color: var(--gold); }

  .reviews-rating-summary {
    text-align: right;
  }

  .rating-big {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 300;
    color: var(--ink);
    line-height: 1;
  }

  .stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 3px;
    margin: 8px 0;
  }

  .rating-sub {
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--stone);
  }

  .reviews-carousel {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px;
  }

  .review-card {
    background: var(--cream);
    padding: 44px 36px;
    position: relative;
    transition: transform 0.3s;
  }
  .review-card:hover { transform: translateY(-4px); }

  .review-quote {
    font-family: var(--font-display);
    font-size: 72px;
    line-height: 0.6;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 16px;
    font-weight: 300;
  }

  .review-text {
    font-size: 15px;
    line-height: 1.75;
    color: var(--ink-soft);
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 300;
    margin-bottom: 32px;
  }

  .review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid rgba(14,16,21,0.1);
    padding-top: 20px;
  }

  .review-avatar {
    width: 40px; height: 40px;
    background: var(--ink-soft);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--gold);
    font-style: italic;
  }

  .review-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 2px;
  }

  .review-source {
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--stone);
  }

  /* ─── FIND US ─────────────────────────────────────── */
  .find-us {
    background: var(--ink);
    padding: 120px 0;
  }

  .find-us .section-wrap {
    padding: 0 80px;
  }

  .find-us-header {
    margin-bottom: 60px;
  }

  .find-us-h2 {
    font-family: var(--font-display);
    font-size: clamp(40px, 3.8vw, 64px);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.01em;
    max-width: 560px;
  }
  .find-us-h2 em { font-style: italic; color: var(--gold-light); }

  .locations-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
  }

  .location-card {
    background: #141820;
    padding: 40px 28px;
    border-top: 2px solid transparent;
    transition: border-color 0.3s, background 0.3s;
    cursor: pointer;
  }

  .location-card:hover {
    border-top-color: var(--gold);
    background: #1a1e28;
  }

  .location-city {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 8px;
  }

  .location-state {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }

  .location-addr {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .location-link {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
  }
  .location-link:hover { gap: 14px; }

  /* ─── CONTACT ─────────────────────────────────────── */
  .contact {
    background: var(--ink);
    padding: 120px 0;
  }

  .contact .section-wrap {
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .contact-left {}

  .contact-eyebrow {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 20px;
  }
  .contact-eyebrow::before { content: ''; width: 28px; height: 1px; background: rgba(255,255,255,0.4); }

  .contact-h2 {
    font-family: var(--font-display);
    font-size: clamp(38px, 3.5vw, 58px);
    font-weight: 300;
    line-height: 1.12;
    color: var(--white);
    margin-bottom: 24px;
  }
  .contact-h2 em { font-style: italic; }

  .contact-body {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255,255,255,0.65);
    max-width: 380px;
    margin-bottom: 40px;
  }

  .contact-actions {
    display: flex; flex-direction: column; gap: 12px;
  }

  .contact-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 28px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: all 0.25s;
    cursor: pointer;
    border: none;
  }

  .cbtn-phone { background: var(--gold); color: var(--ink); }
  .cbtn-phone:hover { background: var(--gold-light); }

  .cbtn-mail { background: rgba(255,255,255,0.08); color: var(--white); border: 1px solid rgba(255,255,255,0.15); }
  .cbtn-mail:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.3); }

  .cbtn-online { background: var(--white); color: var(--ink); }
  .cbtn-online:hover { background: var(--cream); }

  .contact-right {}

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }

  .form-field {
    position: relative;
    background: rgba(0,0,0,0.25);
    transition: background 0.2s;
  }
  .form-field:focus-within { background: rgba(0,0,0,0.35); }

  .form-field label {
    position: absolute;
    top: 14px; left: 20px;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    pointer-events: none;
    transition: all 0.2s;
  }

  .form-field input, .form-field select, .form-field textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 32px 20px 14px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--white);
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
  }
  .form-field select option { background: var(--ink); }

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

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

  .form-submit {
    padding: 18px 40px;
    background: var(--gold);
    color: var(--ink);
    border: none;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s;
    margin-top: 2px;
    width: 100%;
  }
  .form-submit:hover { background: var(--gold-light); }

  /* ─── FOOTER ──────────────────────────────────────── */
  footer {
    background: #070a0d;
    padding: 80px 0;
  }

  footer .section-wrap {
    padding: 0 80px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 40px;
  }

  .footer-brand {}

  .footer-logo {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 20px;
    text-decoration: none;
  }
  .footer-logo-mark {
    width: 32px; height: 32px;
    border: 1px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    transform: rotate(45deg);
  }
  .footer-logo-mark span {
    transform: rotate(-45deg);
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--gold);
  }
  .footer-logo-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
  }
  .footer-logo-text span { color: var(--gold); }

  .footer-brand-body {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.35);
    max-width: 240px;
    margin-bottom: 24px;
  }

  .footer-socials {
    display: flex; gap: 10px;
  }

  .social-icon {
    width: 34px; height: 34px;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s;
  }
  .social-icon:hover { border-color: var(--gold); color: var(--gold); }

  .footer-col h5 {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }

  .footer-col ul {
    list-style: none;
  }

  .footer-col ul li {
    margin-bottom: 10px;
  }

  .footer-col ul li a {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: rgba(255,255,255,0.75); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-legal {
    font-size: 12px;
    color: rgba(255,255,255,0.25);
  }

  .footer-links {
    display: flex; gap: 28px;
  }

  .footer-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.25);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: rgba(255,255,255,0.55); }

  /* ─── MOBILE HAMBURGER ────────────────────────────── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px; height: 36px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 1100;
  }
  .nav-hamburger span {
    display: block;
    width: 24px; height: 1.5px;
    background: var(--white);
    transition: all 0.3s;
    transform-origin: center;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .mobile-menu {
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--ink);
    z-index: 999;
    overflow-y: auto;
    padding: 32px 28px 48px;
    flex-direction: column;
    display: flex;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    visibility: hidden;
  }
  .mobile-menu.open {
    transform: translateX(0);
    visibility: visible;
  }

  .mobile-nav-section { border-bottom: 1px solid rgba(255,255,255,0.07); padding-bottom: 20px; margin-bottom: 20px; }
  .mobile-nav-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
  }
  .mobile-nav-link {
    display: block;
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    padding: 8px 0;
    letter-spacing: 0.04em;
    transition: color 0.2s;
  }
  .mobile-nav-link:hover { color: var(--gold-light); }
  .mobile-contact-btns { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
  .mobile-contact-btns .cbtn {
    display: block;
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s;
  }

  /* ─── RESPONSIVE BREAKPOINTS ──────────────────────── */

  @media (max-width: 1024px) {
    nav { padding: 0 32px; }
    .hero { padding: 0 48px 80px; }
    .hero-stats { right: 48px; gap: 32px; }
    .mission { padding: 90px 0; }
    .mission .section-wrap { padding: 0 48px; gap: 48px; }
    .services { padding: 90px 0; }
    .services .section-wrap { padding: 0 48px; }
    .reviews { padding: 90px 0; }
    .reviews .section-wrap { padding: 0 48px; }
    .find-us { padding: 90px 0; }
    .find-us .section-wrap { padding: 0 48px; }
    .locations-grid { grid-template-columns: repeat(3, 1fr); }
    .contact { padding: 90px 0; }
    .contact .section-wrap { padding: 0 48px; gap: 48px; }
    footer { padding: 60px 0; }
    footer .section-wrap { padding: 0 48px; }
    .footer-top { grid-template-columns: 1fr 1fr 1fr; gap: 36px; }
    .footer-brand { grid-column: 1 / -1; }
  }

  @media (max-width: 768px) {
    /* Nav — hide desktop links, show hamburger */
    .nav-center { display: none; }
    .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
    nav { padding: 0 24px; }

    /* Hero */
    .hero {
      padding: 100px 24px 130px;
      align-items: flex-start;
      min-height: 100svh;
    }
    .hero-image-panel { width: 100%; opacity: 0.18; }
    .hero-image-panel::after {
      background: linear-gradient(to top, var(--ink) 20%, rgba(14,16,21,0.5) 100%);
    }
    .hero-line { display: none; }
    .hero-content { max-width: 100%; }
    .hero-h1 { font-size: clamp(42px, 10vw, 64px); }
    .hero-sub { max-width: 100%; font-size: 14px; }
    .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
    .btn-primary, .btn-ghost { width: 100%; text-align: center; padding: 16px 24px; }
    .hero-stats {
      position: absolute;
      bottom: 36px;
      left: 24px;
      right: auto;
      gap: 28px;
      flex-wrap: nowrap;
    }
    .stat { text-align: left; }
    .stat-num { font-size: 32px; }

    /* Mission */
    .mission { padding: 72px 0; }
    .mission .section-wrap {
      padding: 0 24px;
      grid-template-columns: 1fr;
      gap: 48px;
    }
    .mission-right { order: -1; }
    .mission-img-wrap { height: 300px; }
    .mission-pill { right: 12px; }
    .mission-img-accent { display: none; }
    .pillars { grid-template-columns: 1fr; gap: 24px; border-top: none; }
    .pillar { border-right: none; border-top: 1px solid rgba(14,16,21,0.1); padding: 20px 0 0; padding-left: 0 !important; padding-right: 0 !important; }
    .mission-body { max-width: 100%; }

    /* Services */
    .services { padding: 72px 0; }
    .services .section-wrap { padding: 0 24px; }
    .services-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 36px; }
    .services-sub { text-align: left; max-width: 100%; }
    .services-grid { grid-template-columns: 1fr; gap: 2px; }
    .service-card { height: 300px; }
    .service-card-desc { opacity: 1; transform: none; }

    /* Reviews */
    .reviews { padding: 72px 0; }
    .reviews .section-wrap { padding: 0 24px; }
    .reviews-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 36px; }
    .reviews-rating-summary { text-align: left; }
    .reviews-carousel { grid-template-columns: 1fr; gap: 2px; }

    /* Find Us */
    .find-us { padding: 72px 0; }
    .find-us .section-wrap { padding: 0 24px; }
    .locations-grid { grid-template-columns: 1fr 1fr; }

    /* Contact */
    .contact { padding: 72px 0; }
    .contact .section-wrap { padding: 0 24px; grid-template-columns: 1fr; gap: 48px; }
    .contact-body { max-width: 100%; }
    .form-row { grid-template-columns: 1fr; gap: 2px; }

    /* Footer */
    footer { padding: 56px 0; }
    footer .section-wrap { padding: 0 24px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
    .footer-links { flex-wrap: wrap; gap: 16px; }
  }

  @media (max-width: 480px) {
    .hero-h1 { font-size: clamp(36px, 11vw, 52px); }
    .locations-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .hero-stats { gap: 20px; }
    .stat-num { font-size: 34px; }
  }

  /* ─── SCROLL ANIMATIONS ───────────────────────────── */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
