

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

  :root {
    --cream: #F7F4EF;
    --warm-white: #FAFAF8;
    --charcoal: #1A1A18;
    --mid: #5C5B56;
    --gold: #B8A882;
    --gold-light: #D4C9A8;
    --border: rgba(184,168,130,0.25);
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Jost', sans-serif;
  }

  html { scroll-behavior: smooth; }
  body {
    background: var(--warm-white);
    color: var(--charcoal);
    font-family: var(--sans);
    font-weight: 300;
    overflow-x: hidden;
  }

  
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 52px; height: 76px;
    background: rgba(250,250,248,0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s, box-shadow 0.3s;
  }
  .nav-logo { font-family: var(--sans); font-size: 15px; letter-spacing: 0.18em; color: var(--charcoal); text-decoration: none; }
  .nav-logo span { font-weight: 500; }
  .nav-links { display: flex; gap: 36px; list-style: none; align-items: center; height: 100%; }
  .nav-links > li { height: 100%; display: flex; align-items: center; position: static; }
  
  nav { display: grid; grid-template-columns: auto 1fr auto; align-items: center; }
  nav .nav-links { justify-content: center; }
  .nav-links a { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mid); text-decoration: none; transition: color 0.2s; }
  .nav-links a:hover, .nav-links > li.mega-open > a { color: var(--charcoal); }
  .nav-links > li > a { display: flex; align-items: center; gap: 5px; height: 100%; }
  
  .nav-chevron {
    width: 8px; height: 8px; display: inline-block; flex-shrink: 0;
    transition: transform 0.25s;
  }
  .nav-chevron path { stroke: currentColor; }
  li.mega-open .nav-chevron { transform: rotate(180deg); }

  .nav-cta { display: inline-block; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--warm-white); background: var(--charcoal); padding: 11px 24px; text-decoration: none; transition: background 0.25s; }
  .nav-cta:hover { background: var(--gold); }

  
  .mega-menu {
    position: fixed;
    top: 76px; left: 0; right: 0;
    z-index: 99;
    background: var(--warm-white);
    border-top: 2px solid var(--gold);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 24px 64px rgba(26,26,24,0.13);
    display: grid;
    grid-template-columns: 1fr 320px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.42s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
    pointer-events: none;
  }
  .mega-menu.open {
    max-height: 80vh;
    overflow-y: auto;
    opacity: 1;
    pointer-events: all;
  }

  
  .mega-items {
    padding: 44px 52px 44px 52px;
    border-right: 1px solid var(--border);
  }
  .mega-items-label {
    font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 28px;
    display: flex; align-items: center; gap: 12px;
  }
  .mega-items-label::before { content:''; display:block; width:24px; height:1px; background:var(--gold); }
  
  .mega-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
  }
  .mega-col {
    padding: 28px 20px;
    border-right: 1px solid var(--border);
  }
  .mega-col:last-child { border-right: none; }
  .mega-col-title {
    font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 6px;
    display: flex; align-items: center; gap: 8px;
  }
  .mega-col-title::before { content:''; display:block; width:16px; height:1px; background:var(--gold); flex-shrink:0; }
  .mega-col-desc {
    font-size: 11px; color: var(--mid); line-height: 1.5;
    margin-bottom: 18px; padding-left: 24px;
  }
  
  .mega-treat {
    display: block;
    font-size: 13px; font-weight: 400;
    color: var(--charcoal); text-decoration: none;
    padding: 5px 0 5px 0;
    transition: color 0.2s, padding-left 0.2s;
    line-height: 1.3;
  }
  .mega-treat:hover { color: var(--gold); padding-left: 4px; }
  
  .mega-sub {
    display: block;
    font-size: 11px; font-weight: 300;
    color: var(--mid); text-decoration: none;
    padding: 3px 0 3px 16px;
    transition: color 0.2s;
    line-height: 1.3;
    position: relative;
  }
  .mega-sub::before {
    content: '–';
    position: absolute; left: 4px;
    color: rgba(184,168,130,0.5);
  }
  .mega-sub:hover { color: var(--charcoal); }
  
  .mega-group { margin-bottom: 14px; }
  .mega-group-label {
    font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(92,91,86,0.5); margin-bottom: 4px; padding-top: 10px;
    border-top: 1px solid var(--border);
    margin-top: 10px;
  }
  .mega-group:first-child .mega-group-label { border-top: none; margin-top: 0; padding-top: 0; }
  
  .mega-item { display: none; }
  .mega-item-img, .mega-item-grad, .mega-icon { display: none; }

  
  .mega-featured {
    position: relative; overflow: hidden;
    display: flex; flex-direction: column; justify-content: flex-end;
    min-height: 420px;
    background: var(--charcoal);
  }
  .mega-featured img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    transition: transform 0.6s ease;
    opacity: 0.7;
  }
  .mega-menu.open .mega-featured img { transform: scale(1.03); }
  .mega-featured-grad {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,26,24,0.92) 0%, rgba(26,26,24,0.3) 55%, transparent 100%);
    z-index: 1;
  }
  .mega-featured-content {
    position: relative; z-index: 2;
    padding: 32px 28px;
  }
  .mega-featured-tag {
    font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 10px;
    display: flex; align-items: center; gap: 8px;
  }
  .mega-featured-tag::before { content:''; display:inline-block; width:16px; height:1px; background:var(--gold); }
  .mega-featured-title {
    font-family: var(--serif); font-size: 26px; font-weight: 300;
    color: var(--warm-white); line-height: 1.2; margin-bottom: 10px;
  }
  .mega-featured-desc {
    font-size: 12px; line-height: 1.65; color: rgba(250,250,248,0.6);
    margin-bottom: 20px;
  }
  .mega-featured-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--gold); text-decoration: none;
    transition: gap 0.2s;
  }
  .mega-featured-link:hover { gap: 14px; }


  
  .geo, .tpc-geo, .pb-geo, .tile-geo, .insta-geo { display: none !important; }
  
  /* Hero eyebrow-wrap hidden on desktop — only used for mobile reordering */
  .hero-eyebrow-wrap { display: none; }

  .hero-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    opacity: 0.5;
    z-index: 1;
    transition: opacity 1.2s ease;
  }

  
  .hero-play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    display: flex; flex-direction: column; align-items: center; gap: 14px;
    background: none; border: none; cursor: pointer;
    color: var(--warm-white);
    transition: transform 0.3s;
  }
  .hero-play-btn:hover { transform: translate(-50%, -50%) scale(1.06); }
  .hero-play-btn:hover .hero-play-ring { border-color: var(--gold); }

  
  .hero-play-ring {
    position: absolute;
    width: 90px; height: 90px;
    border-radius: 50%;
    border: 1px solid rgba(184,168,130,0.5);
    animation: heroRingPulse 2.4s ease-in-out infinite;
    pointer-events: none;
    transition: border-color 0.3s;
  }
  @keyframes heroRingPulse {
    0%, 100% { transform: scale(1);    opacity: 0.7; }
    50%       { transform: scale(1.3); opacity: 0; }
  }

  
  .hero-play-btn svg {
    width: 26px; height: 26px;
    background: var(--gold);
    border-radius: 50%;
    padding: 20px;
    box-sizing: content-box;
    color: var(--charcoal);
    box-shadow: 0 6px 40px rgba(184,168,130,0.5);
    transition: background 0.25s;
  }
  .hero-play-btn:hover svg { background: var(--warm-white); }

  
  .hero-play-btn span {
    font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
    color: var(--gold-light); font-family: var(--sans);
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  }


  
  .photo-panel {
    position: relative;
    overflow: hidden;
  }
  .photo-panel img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    display: block;
  }
  .photo-panel .pg {
    position: absolute; inset: 0; z-index: 1;
    pointer-events: none;
  }
  .photo-panel .geo {
    position: absolute; inset: 0; z-index: 2;
    pointer-events: none;
  }
  .photo-panel .geo svg { width: 100%; height: 100%; }
  .photo-panel .panel-content { position: relative; z-index: 3; }

  
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 76px;
  }
  .hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 80px 72px 80px 52px;
    position: relative; z-index: 2;
  }
  .hero-eyebrow {
    display: flex; align-items: center; gap: 16px; margin-bottom: 36px;
    opacity: 0; animation: fadeUp 0.9s 0.2s forwards;
  }
  .hero-eyebrow::before { content: ''; display: block; width: 36px; height: 1px; background: var(--gold); }
  .hero-eyebrow span { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
  .hero-headline {
    font-family: var(--serif); font-size: clamp(52px, 5.5vw, 84px);
    font-weight: 300; line-height: 1.08; letter-spacing: -0.01em; color: var(--charcoal);
    opacity: 0; animation: fadeUp 0.9s 0.4s forwards;
  }
  .hero-headline em {
    font-style: italic;
    color: var(--gold);
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    max-width: 0;
    vertical-align: bottom;
    animation: typeout 1.1s cubic-bezier(0.4,0,0.2,1) 1s forwards,
               goldGlow 2.5s ease-in-out 2.2s infinite;
  }
  @keyframes typeout {
    from { max-width: 0; opacity: 0.6; }
    to   { max-width: 100vw; opacity: 1; }
  }
  @keyframes goldGlow {
    0%, 100% { text-shadow: 0 0 0px transparent; }
    50%       { text-shadow: 0 0 18px rgba(184,168,130,0.55), 0 0 40px rgba(184,168,130,0.2); }
  }
  .hero-body {
    margin-top: 32px; font-size: 15px; line-height: 1.8; color: var(--mid); max-width: 400px;
    opacity: 0; animation: fadeUp 0.9s 0.6s forwards;
  }
  .hero-actions {
    margin-top: 48px; display: flex; align-items: center; gap: 32px;
    opacity: 0; animation: fadeUp 0.9s 0.8s forwards;
  }

  
  .hero-photo-gradient {
    background:
      linear-gradient(to right, rgba(247,244,239,0.6) 0%, transparent 50%),
      linear-gradient(to top, rgba(26,26,24,0.5) 0%, transparent 55%),
      linear-gradient(160deg, rgba(184,168,130,0.2) 0%, transparent 50%);
  }

  .hero-stat-card {
    position: absolute; bottom: 52px; left: -36px; z-index: 3;
    background: var(--warm-white); padding: 24px 32px;
    border-left: 3px solid var(--gold);
    box-shadow: 0 20px 60px rgba(26,26,24,0.14);
    opacity: 0; animation: slideRight 0.9s 1s forwards;
  }
  .hero-stat-card .number { font-family: var(--serif); font-size: 42px; font-weight: 300; line-height: 1; }
  .hero-stat-card .label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-top: 6px; }
  .hero-location-badge {
    position: absolute; top: 52px; right: 36px; z-index: 3;
    background: rgba(26,26,24,0.75); backdrop-filter: blur(10px);
    padding: 16px 24px;
    opacity: 0; animation: fadeIn 0.9s 1.1s forwards;
  }
  .hero-location-badge p { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-light); line-height: 1.7; }

  
  .btn-primary {
    display: inline-block; font-family: var(--sans); font-size: 11px;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--warm-white); background: var(--charcoal);
    padding: 16px 36px; text-decoration: none;
    transition: background 0.25s, letter-spacing 0.25s;
  }
  .btn-primary:hover { background: var(--gold); letter-spacing: 0.22em; }
  .btn-ghost {
    font-family: var(--sans); font-size: 12px; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--mid); text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px; transition: color 0.2s;
  }
  .btn-ghost::after { content: '→'; transition: transform 0.2s; }
  .btn-ghost:hover { color: var(--charcoal); }
  .btn-ghost:hover::after { transform: translateX(4px); }

  
  .marquee-wrap { background: var(--gold); padding: 14px 0; overflow: hidden; white-space: nowrap; }
  .marquee-track { display: inline-flex; animation: marquee 22s linear infinite; }
  .marquee-item { display: inline-flex; align-items: center; gap: 24px; padding: 0 24px; }
  .marquee-item span { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--charcoal); font-weight: 400; }
  .marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(26,26,24,0.4); }

  
  .trust-strip { background: var(--charcoal); padding: 28px 52px; display: flex; align-items: center; justify-content: center; gap: 64px; }
  .trust-item { display: flex; align-items: center; gap: 14px; opacity: 0; animation: fadeIn 0.7s forwards; }
  .trust-item:nth-child(1) { animation-delay: 0.1s; }
  .trust-item:nth-child(2) { animation-delay: 0.2s; }
  .trust-item:nth-child(3) { animation-delay: 0.3s; }
  .trust-item:nth-child(4) { animation-delay: 0.4s; }
  .trust-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
  .trust-item span { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(250,250,248,0.7); }

  
  section { padding: 120px 52px; }
  .section-label { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
  .section-label::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
  .section-label span { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
  .section-title { font-family: var(--serif); font-size: clamp(36px, 3.8vw, 58px); font-weight: 300; line-height: 1.12; }
  .section-title em { font-style: italic; color: var(--gold); }

  
  .treatments-section { background: var(--cream); }
  .treatments-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 72px; max-width: 1200px; margin-left: auto; margin-right: auto; }
  .treatments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; max-width: 1200px; margin: 0 auto; }

  
  .treatment-card {
    background: var(--warm-white); padding: 52px 40px;
    position: relative; overflow: hidden; cursor: pointer;
    transition: transform 0.3s;
  }
  .treatment-card:hover { transform: translateY(-4px); }
  .treatment-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
  }
  .treatment-card:hover::after { transform: scaleX(1); }
  .treatment-number { font-family: var(--serif); font-size: 72px; font-weight: 300; color: var(--border); line-height: 1; margin-bottom: 24px; transition: color 0.3s; }
  .treatment-card:hover .treatment-number { color: var(--gold-light); }
  .treatment-category { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
  .treatment-title { font-family: var(--serif); font-size: 28px; font-weight: 400; line-height: 1.2; margin-bottom: 16px; }
  .treatment-desc { font-size: 14px; line-height: 1.75; color: var(--mid); }
  .treatment-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 28px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--charcoal); text-decoration: none; transition: gap 0.2s; }
  .treatment-link:hover { gap: 14px; }

  

  
  .wwo-cat ul li {
    font-size: 12px; letter-spacing: 0.04em; color: var(--charcoal);
    padding: 4px 0 4px 14px;
    position: relative;
    border-bottom: 1px solid var(--border);
  }
  .wwo-cat ul li:last-child { border-bottom: none; }
  .wwo-cat ul li::before { content:'→'; position:absolute; left:0; color:var(--gold); font-size:10px; top:5px; }
  .wwo-cat:hover .wwo-img img { transform: scale(1.04); }
  .treatment-photo-card {
    position: relative; overflow: hidden; min-height: 380px; cursor: pointer;
  }
  .treatment-photo-card img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
  }
  .treatment-photo-card:hover img { transform: scale(1.04); }
  .tpc-grad {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to top, rgba(26,26,24,0.88) 0%, rgba(26,26,24,0.25) 55%, transparent 100%);
  }
  .tpc-geo { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
  .tpc-content { position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; padding: 36px 40px; }
  .tpc-category { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
  .tpc-title { font-family: var(--serif); font-size: 26px; font-weight: 300; color: var(--warm-white); line-height: 1.2; margin-bottom: 16px; }
  .tpc-link { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-light); text-decoration: none; transition: gap 0.2s; }
  .treatment-photo-card:hover .tpc-link { gap: 14px; }

  
  .conditions-section { background: var(--warm-white); }
  .conditions-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

  
  .conditions-visual {
    height: 560px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
  }
  .conditions-visual img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    border-radius: 12px;
    transition: opacity 0.45s ease, transform 0.55s ease;
  }
  
  .conditions-photo-gradient {
    position: absolute; inset: 0; z-index: 1;
    border-radius: 12px;
    background: linear-gradient(to top, rgba(26,26,24,0.35) 0%, transparent 50%);
    pointer-events: none;
  }
  
  .conditions-active-label {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
    padding: 18px 22px;
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold-light); font-family: var(--sans);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .conditions-visual:hover .conditions-active-label,
  .conditions-visual.has-hover .conditions-active-label { opacity: 1; }

  .conditions-list { margin-top: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .condition-item { padding: 20px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; cursor: pointer; transition: padding-left 0.2s; }
  .condition-item:hover { padding-left: 8px; }
  .condition-item:nth-child(odd) { padding-right: 32px; border-right: 1px solid var(--border); }
  .condition-item:nth-child(even) { padding-left: 32px; }
  .condition-item:nth-child(even):hover { padding-left: 40px; }
  .condition-item.active .condition-name { color: var(--charcoal); font-weight: 400; }
  .condition-name { font-size: 14px; letter-spacing: 0.04em; transition: color 0.2s; }
  .condition-arrow { font-size: 16px; color: var(--gold); transition: transform 0.2s; }
  .condition-item:hover .condition-arrow { transform: translateX(4px); }


  
  .doctor-section { background: var(--charcoal); padding: 100px 52px 120px; }
  .doctor-inner { max-width: 1200px; margin: 0 auto; }
  .doctor-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 60px; padding-bottom: 36px;
    border-bottom: 1px solid rgba(184,168,130,0.15);
  }
  .doctor-section .section-label span { color: var(--gold-light); }
  .doctor-section .section-label::before { background: var(--gold); }
  .doctor-section .section-title { color: var(--warm-white); }
  .doctor-intro {
    font-size: 15px; line-height: 1.8;
    color: rgba(250,250,248,0.55);
    max-width: 380px;
    margin-bottom: 8px;
  }

  
  .team-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 320px 320px;
    gap: 6px;
  }

  
  .team-tile {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: rgba(255,255,255,0.04);
  }
  .team-tile img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    transition: transform 0.55s ease;
    filter: grayscale(15%);
  }
  .team-tile:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
  }

  
  .tile-ahmed-hero {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
  }

  
  .tile-gradient {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(to top,
      rgba(26,26,24,0.95) 0%,
      rgba(26,26,24,0.4) 45%,
      rgba(26,26,24,0.1) 100%
    );
    pointer-events: none;
  }
  
  .tile-geo {
    position: absolute; inset: 0; z-index: 3; pointer-events: none;
  }

  
  .tile-caption {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 4;
    padding: 20px 22px 18px;
  }
  .tile-name {
    font-family: var(--serif);
    font-size: 20px; font-weight: 400;
    color: var(--warm-white); line-height: 1.15;
    margin-bottom: 4px;
  }
  .tile-ahmed-hero .tile-name { font-size: 28px; }

  
  .tile-ahmed-hero .tile-gradient {
    background: linear-gradient(to top,
      rgba(26,26,24,0.97) 0%,
      rgba(26,26,24,0.5) 40%,
      rgba(26,26,24,0.1) 75%,
      transparent 100%
    );
  }

  
  .tile-ahmed-hero .tile-role::before { content: ''; }
  .tile-role {
    font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold); font-family: var(--sans);
  }

  
  .tile-tooltip {
    position: absolute; bottom: 100%; left: 0; right: 0; z-index: 10;
    background: rgba(26,26,24,0.96); backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-top: 1px solid rgba(184,168,130,0.3);
    transform: translateY(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
  }
  .team-tile:hover .tile-tooltip {
    opacity: 1;
    transform: translateY(0);
  }
  .tile-tooltip p {
    font-size: 12px; line-height: 1.6;
    color: rgba(250,250,248,0.75);
    font-family: var(--sans); font-weight: 300;
  }
  .tile-tooltip strong {
    display: block;
    font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--gold); font-weight: 400;
    margin-bottom: 6px;
  }

  
  .doctor-credentials {
    margin-top: 36px;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
    border-top: 1px solid rgba(184,168,130,0.15);
  }
  .credential {
    border-top: 1px solid rgba(184,168,130,0.2);
    padding: 22px 24px 0;
    border-right: 1px solid rgba(184,168,130,0.1);
  }
  .credential:last-child { border-right: none; }
  .credential-title {
    font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 8px;
  }
  .credential-value {
    font-family: var(--serif); font-size: 18px; font-weight: 300;
    color: var(--warm-white); line-height: 1.3;
  }
  
  .photo-break {
    position: relative;
    background: #E8E5DF;
    overflow: hidden;
    padding: 0;
    display: flex; align-items: stretch;
    min-height: 560px;
  }
  
  .photo-break::before {
    content: '';
    position: absolute; inset: 0; z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
  }
  
  .photo-break > img { display: none; }
  .pb-grad { display: none; }

  .pb-content {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr 420px;
    align-items: center;
    width: 100%;
    padding: 0; inset: unset;
  }
  
  .pb-text {
    padding: 100px 72px 100px 52px;
    text-align: left;
    max-width: none;
  }
  .pb-label {
    font-family: var(--sans);
    font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
    color: rgba(90,86,78,0.5); margin-bottom: 40px;
    display: flex; align-items: center; gap: 14px;
  }
  .pb-label::before { content:''; display:block; width:24px; height:1px; background:rgba(90,86,78,0.4); }
  .pb-text blockquote {
    font-family: var(--serif);
    font-size: clamp(32px, 4.5vw, 62px);
    font-weight: 300;
    font-style: normal;
    line-height: 1.2;
    color: rgba(70,67,60,0.6);
    margin-bottom: 0;
    letter-spacing: -0.01em;
    
    transition: none;
  }
  .pb-text blockquote em {
    font-style: italic;
    color: rgba(70,67,60,0.45);
  }
  
  .pb-word {
    display: inline-block;
    transition: transform 0.6s cubic-bezier(0.22,1,0.36,1), color 0.4s;
    will-change: transform;
  }
  .pb-text cite {
    display: flex; align-items: center; gap: 12px;
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(90,86,78,0.4); font-style: normal;
    margin-top: 48px;
  }
  .pb-text cite::before { content:''; display:block; width:24px; height:1px; background:rgba(90,86,78,0.35); }

  
  .pb-image {
    position: relative;
    height: 100%;
    min-height: 560px;
    overflow: hidden;
  }
  .pb-image img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    display: block;
    mix-blend-mode: multiply;
    transition: transform 0.8s ease;
  }
  .photo-break:hover .pb-image img { transform: scale(1.03); }

  
  
  .testimonial-text { font-family: var(--serif); font-size: 18px; font-weight: 300; font-style: italic; line-height: 1.65; color: var(--charcoal); margin-bottom: 28px; }
  .testimonial-author { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mid); border-top: 1px solid var(--border); padding-top: 20px; }

  
  .consultation-section { background: var(--warm-white); padding: 120px 52px; }
  .consultation-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .consultation-body { font-size: 15px; line-height: 1.85; color: var(--mid); margin-top: 24px; max-width: 440px; }
  .step-list { margin-top: 48px; display: flex; flex-direction: column; gap: 20px; }
  .step-item { display: flex; align-items: center; gap: 16px; }
  .step-num { width: 32px; height: 32px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .step-num span { color: var(--gold); font-size: 13px; font-family: var(--serif); }
  .step-item p { font-size: 14px; color: var(--mid); line-height: 1.5; }
  .consultation-form { background: var(--cream); padding: 52px 44px; border: 1px solid var(--border); }
  .form-title { font-family: var(--serif); font-size: 24px; font-weight: 400; color: var(--charcoal); margin-bottom: 36px; }
  .form-group { margin-bottom: 20px; }
  .form-group label { display: block; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
  .form-group input, .form-group select { width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(92,91,86,0.3); padding: 10px 0; font-family: var(--sans); font-size: 14px; font-weight: 300; color: var(--charcoal); outline: none; transition: border-color 0.2s; appearance: none; }
  .form-group input:focus, .form-group select:focus { border-color: var(--gold); }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-submit { margin-top: 36px; width: 100%; padding: 16px; background: var(--charcoal); color: var(--warm-white); font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; border: none; cursor: pointer; transition: background 0.25s; }
  .form-submit:hover { background: var(--gold); }

  
  .locations-section { background: var(--charcoal); padding: 100px 52px; }
  .locations-inner { max-width: 1200px; margin: 0 auto; }
  .locations-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; padding-bottom: 40px; border-bottom: 1px solid rgba(184,168,130,0.15); }
  .locations-section .section-label span { color: var(--gold-light); }
  .locations-section .section-label::before { background: var(--gold); }
  .locations-section .section-title { color: var(--warm-white); }
  .locations-grid { display: grid; grid-template-columns: 1fr; gap: 2px; max-width: 640px; }
  .location-card { background: rgba(255,255,255,0.04); padding: 52px 44px; border: 1px solid rgba(184,168,130,0.1); transition: background 0.3s; }
  .location-card:hover { background: rgba(184,168,130,0.06); }
  .location-tag { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
  .location-tag::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
  .location-name { font-family: var(--serif); font-size: 38px; font-weight: 300; color: var(--warm-white); line-height: 1.1; margin-bottom: 28px; }
  .location-address { font-size: 14px; line-height: 1.85; color: rgba(250,250,248,0.55); margin-bottom: 24px; }
  .location-phone { font-family: var(--serif); font-size: 22px; font-weight: 300; color: var(--gold-light); text-decoration: none; display: block; margin-bottom: 32px; transition: color 0.2s; }
  .location-phone:hover { color: var(--warm-white); }
  .location-detail { font-size: 12px; letter-spacing: 0.12em; color: rgba(250,250,248,0.35); padding-top: 24px; border-top: 1px solid rgba(184,168,130,0.12); text-transform: uppercase; }

  
  footer { background: #0F0F0E; padding: 60px 52px 36px; }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-top { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 48px; border-bottom: 1px solid rgba(184,168,130,0.1); margin-bottom: 36px; }
  .footer-brand .logo-text { font-family: var(--sans); font-size: 15px; letter-spacing: 0.18em; color: var(--warm-white); margin-bottom: 12px; }
  .footer-brand .logo-text span { font-weight: 500; }
  .footer-brand p { font-size: 13px; color: rgba(250,250,248,0.35); line-height: 1.65; max-width: 240px; }
  .footer-nav { display: flex; gap: 64px; }
  .footer-col h4 { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul a { font-size: 13px; color: rgba(250,250,248,0.5); text-decoration: none; transition: color 0.2s; }
  .footer-col ul a:hover { color: var(--gold-light); }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; }
  .footer-bottom p { font-size: 11px; color: rgba(250,250,248,0.25); letter-spacing: 0.06em; }

  
  .footer-location { border-left: 1px solid rgba(184,168,130,0.12); padding-left: 48px; }
  .footer-location h4 { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
  .footer-location address { font-style: normal; font-size: 13px; color: rgba(250,250,248,0.5); line-height: 1.8; margin-bottom: 10px; }
  .footer-location .footer-phone { font-family: var(--serif); font-size: 18px; font-weight: 300; color: var(--gold-light); text-decoration: none; display: block; margin-bottom: 12px; transition: color 0.2s; }
  .footer-location .footer-phone:hover { color: var(--warm-white); }
  .footer-hours { display: flex; flex-direction: column; gap: 3px; margin-bottom: 12px; }
  .footer-hours-row { display: flex; justify-content: space-between; gap: 24px; font-size: 12px; color: rgba(250,250,248,0.35); }
  .footer-maps-link { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); text-decoration: none; transition: color 0.2s; }
  .footer-maps-link:hover { color: var(--warm-white); }


  
  .conditions-section { background: var(--warm-white); padding: 120px 0; }
  .cond-cats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
  }
  .cond-cat-card {
    background: var(--warm-white);
    overflow: hidden;
    transition: transform 0.3s;
  }
  .cond-cat-card:hover { transform: translateY(-3px); }
  .cond-cat-img {
    position: relative; height: 180px; overflow: hidden;
  }
  .cond-cat-img img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    transition: transform 0.5s;
    filter: grayscale(20%);
  }
  .cond-cat-card:hover .cond-cat-img img { transform: scale(1.05); filter: grayscale(0%); }
  .cond-cat-overlay {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(to top, rgba(26,26,24,0.82) 0%, rgba(26,26,24,0.15) 65%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 14px 16px;
  }
  .cond-cat-num {
    font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 3px;
  }
  .cond-cat-title {
    font-family: var(--serif); font-size: 17px; font-weight: 300;
    color: var(--warm-white); line-height: 1.2; margin: 0;
  }
  .cond-cat-body { padding: 18px 16px 22px; }
  .cond-cat-desc {
    font-size: 12px; line-height: 1.6; color: var(--mid);
    margin-bottom: 14px; font-style: italic;
  }
  .cond-group { margin-bottom: 10px; }
  .cond-group-label {
    font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 4px; padding-top: 8px;
    border-top: 1px solid var(--border); margin-top: 8px;
  }
  .cond-group:first-child .cond-group-label { border-top: none; margin-top: 0; padding-top: 0; }
  .cond-treat {
    display: block;
    font-size: 11px; color: var(--charcoal); text-decoration: none;
    padding: 3px 0 3px 10px;
    position: relative;
    transition: color 0.2s, padding-left 0.2s;
    line-height: 1.4;
  }
  .cond-treat::before { content:'–'; position:absolute; left:0; color:rgba(184,168,130,0.6); font-size:10px; }
  .cond-treat:hover { color: var(--gold); padding-left: 14px; }


  
  .testimonials-section {
    background: var(--charcoal);
    padding: 100px 52px 80px;
    border-top: 1px solid rgba(184,168,130,0.12);
  }
  .testimonials-inner { max-width: 1200px; margin: 0 auto; }
  .testimonials-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 48px; padding-bottom: 36px;
    border-bottom: 1px solid rgba(184,168,130,0.15);
  }
  .testimonials-header .section-label span { color: var(--gold-light); }
  .testimonials-header .section-label::before { background: var(--gold); }

  
  .book-section { background: var(--warm-white); }
  .book-inner-full {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 340px 1fr;
    gap: 0; min-height: 700px;
    padding: 120px 52px;
    align-items: start; gap: 80px;
  }

  
  .book-trust { display: flex; flex-direction: column; gap: 14px; }
  .book-trust-item { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--mid); }

  
  .book-form-panel {
    background: var(--cream);
    border: 1px solid var(--border);
    padding: 44px 48px;
  }

  
  .bk-steps {
    display: flex; align-items: center; gap: 0;
    margin-bottom: 44px;
  }
  .bk-step {
    display: flex; flex-direction: column; align-items: center; gap: 5px;
    cursor: default;
  }
  .bk-num {
    width: 30px; height: 30px; border-radius: 50%;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-size: 14px; color: var(--mid);
    transition: all 0.3s;
  }
  .bk-label {
    font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--mid); transition: color 0.3s; white-space: nowrap;
  }
  .bk-step.active .bk-num  { background: var(--charcoal); border-color: var(--charcoal); color: var(--warm-white); }
  .bk-step.done  .bk-num  { background: var(--gold); border-color: var(--gold); color: var(--warm-white); }
  .bk-step.active .bk-label,
  .bk-step.done  .bk-label { color: var(--charcoal); }
  .bk-line { flex: 1; height: 1px; background: var(--border); margin: 0 6px 18px; }

  
  .bk-panel { display: none; }
  .bk-panel.active { display: block; }
  .bk-heading {
    font-family: var(--serif); font-size: 24px; font-weight: 300;
    color: var(--charcoal); margin-bottom: 28px; line-height: 1.3;
  }
  .bk-note { font-size: 13px; color: var(--mid); margin-top: -6px; margin-bottom: 20px; }

  
  .bk-interest-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
    margin-bottom: 28px;
  }
  .bk-interest-opt { cursor: pointer; }
  .bk-interest-opt input { display: none; }
  .bk-interest-card {
    border: 1px solid var(--border);
    overflow: hidden; transition: border-color 0.2s;
  }
  .bk-interest-img {
    height: 130px;
    background-size: cover; background-position: center;
    transition: transform 0.5s;
  }
  .bk-interest-opt:hover .bk-interest-img { transform: scale(1.04); }
  .bk-interest-body { padding: 12px 14px; }
  .bk-interest-title {
    display: block; font-family: var(--serif); font-size: 16px; font-weight: 400;
    color: var(--charcoal); margin-bottom: 3px; transition: color 0.2s;
  }
  .bk-interest-sub { font-size: 11px; color: var(--mid); letter-spacing: 0.04em; }
  .bk-interest-opt input:checked + .bk-interest-card {
    border-color: var(--charcoal);
  }
  .bk-interest-opt input:checked + .bk-interest-card .bk-interest-title { color: var(--gold); }

  
  .bk-treat-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 28px; }
  .bk-treat-opt { cursor: pointer; }
  .bk-treat-opt input { display: none; }
  .bk-treat-opt span {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 14px; font-size: 14px; color: var(--mid);
    border-bottom: 1px solid var(--border); transition: all 0.2s;
  }
  .bk-treat-opt span::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--border); flex-shrink: 0; transition: background 0.2s;
  }
  .bk-treat-opt:hover span { color: var(--charcoal); padding-left: 20px; }
  .bk-treat-opt input:checked + span { color: var(--charcoal); font-weight: 400; }
  .bk-treat-opt input:checked + span::before { background: var(--gold); }

  
  .bk-slots {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px;
    margin-bottom: 28px;
  }
  .bk-slot { cursor: pointer; }
  .bk-slot input { display: none; }
  .bk-slot span {
    display: block; text-align: center;
    padding: 11px 6px; border: 1px solid var(--border);
    font-family: var(--sans); font-size: 12px; font-weight: 300;
    color: var(--mid); transition: all 0.2s;
  }
  .bk-slot input:checked + span { border-color: var(--charcoal); background: var(--charcoal); color: var(--warm-white); }
  .bk-slot span:hover { border-color: var(--gold); color: var(--charcoal); }

  
  .bk-field { margin-bottom: 20px; }
  .bk-label {
    display: block; font-size: 10px; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
  }
  .bk-input {
    width: 100%; background: transparent;
    border: none; border-bottom: 1px solid rgba(92,91,86,0.3);
    padding: 10px 0; font-family: var(--sans); font-size: 14px;
    font-weight: 300; color: var(--charcoal); outline: none;
    transition: border-color 0.2s; appearance: none;
  }
  .bk-input:focus { border-color: var(--gold); }
  .bk-textarea { resize: vertical; min-height: 80px; border: 1px solid rgba(92,91,86,0.2); padding: 10px; }
  .bk-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  
  .bk-summary {
    background: var(--warm-white); border: 1px solid var(--border);
    padding: 4px 0; margin-top: 20px;
  }
  .bk-summary-row {
    display: flex; justify-content: space-between;
    padding: 11px 18px; border-bottom: 1px solid var(--border);
    font-size: 13px;
  }
  .bk-summary-row:last-child { border-bottom: none; }
  .bk-summary-row span:first-child { color: var(--mid); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; }
  .bk-summary-row span:last-child  { color: var(--charcoal); font-weight: 400; }

  
  .bk-nav { display: flex; gap: 12px; margin-top: 32px; align-items: center; }
  .bk-next, .bk-submit {
    font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--warm-white);
    background: var(--charcoal); padding: 14px 32px;
    border: none; cursor: pointer; transition: background 0.25s;
  }
  .bk-next:hover, .bk-submit:hover { background: var(--gold); }
  .bk-back {
    background: none; border: 1px solid var(--border); padding: 13px 22px;
    font-family: var(--sans); font-size: 11px; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--mid); cursor: pointer;
    transition: all 0.2s;
  }
  .bk-back:hover { border-color: var(--charcoal); color: var(--charcoal); }

  
  .bk-success-inner { text-align: center; padding: 40px 20px; }
  .bk-check {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--gold); color: var(--warm-white);
    font-size: 22px; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
  }
  .bk-success-title { font-family: var(--serif); font-size: 28px; font-weight: 300; color: var(--charcoal); margin-bottom: 12px; }
  .bk-success-body  { font-size: 14px; color: var(--mid); line-height: 1.7; margin-bottom: 24px; }
  .bk-wa {
    display: inline-flex; align-items: center; gap: 10px;
    background: #25D366; color: #fff; padding: 13px 24px;
    text-decoration: none; font-size: 12px; letter-spacing: 0.1em;
    text-transform: uppercase; font-family: var(--sans);
    transition: background 0.2s; border-radius: 2px;
  }
  .bk-wa:hover { background: #1ebe5d; }

  
  .treatments-section,
  .conditions-section,
  .doctor-section,
  .photo-break,
  .testimonials-section,
  .book-section,
  .reels-section {
    content-visibility: auto;
    contain-intrinsic-size: 0 800px;
  }
  
  @keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:none; } }
  @keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  @keyframes slideRight { from { opacity:0; transform:translateX(-24px); } to { opacity:1; transform:none; } }
  @keyframes marquee { from { transform:translateX(0); } to { transform:translateX(-50%); } }

  .reveal { opacity:0; transform:translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
  .reveal.visible { opacity:1; transform:none; }
  .reveal-delay-1 { transition-delay:0.12s; }
  .reveal-delay-2 { transition-delay:0.24s; }

  
  .wa-float {
    position: fixed; bottom: 32px; right: 32px; z-index: 999;
    display: flex; align-items: center; gap: 12px;
    background: #25D366; color: #fff;
    padding: 14px 22px 14px 18px;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(37,211,102,0.35);
    text-decoration: none;
    font-family: var(--sans); font-size: 13px; letter-spacing: 0.08em;
    font-weight: 400;
    transition: transform 0.25s, box-shadow 0.25s;
    animation: waPulse 2.5s ease-in-out infinite;
  }
  .wa-float:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 40px rgba(37,211,102,0.45);
    animation: none;
  }
  .wa-float svg { width: 22px; height: 22px; flex-shrink: 0; }
  @keyframes waPulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(37,211,102,0.35); }
    50%       { box-shadow: 0 8px 48px rgba(37,211,102,0.6); }
  }
  
  .wa-section-btn {
    display: inline-flex; align-items: center; gap: 12px;
    background: #25D366; color: #fff;
    padding: 16px 32px; border-radius: 4px;
    text-decoration: none;
    font-family: var(--sans); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
    transition: background 0.25s, transform 0.2s;
    margin-top: 16px;
  }
  .wa-section-btn:hover { background: #1ebe5d; transform: translateY(-2px); }
  .wa-section-btn svg { width: 18px; height: 18px; }


  
  .instagram-section {
    background: var(--charcoal);
    padding: 100px 52px 80px;
    border-top: 1px solid rgba(184,168,130,0.12);
  }
  .instagram-inner { max-width: 1200px; margin: 0 auto; }
  .instagram-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 52px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(184,168,130,0.15);
  }
  .instagram-section .section-label span { color: var(--gold-light); }
  .instagram-section .section-label::before { background: var(--gold); }
  .insta-handle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    letter-spacing: 0.12em;
    color: var(--gold-light);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s;
    margin-bottom: 8px;
  }
  .insta-handle:hover { color: var(--warm-white); }
  
  .insta-feed-wrap {
    width: 100%;
  }
  .insta-feed-wrap .embedsocial-hashtag {
    --es-bg: transparent !important;
  }
  
  #EmbedSocialHashtagScript + .embedsocial-hashtag,
  .embedsocial-hashtag {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
  }


  
  .instagram-section {
    background: var(--charcoal);
    padding: 100px 52px 80px;
    border-top: 1px solid rgba(184,168,130,0.12);
  }
  .instagram-inner { max-width: 1280px; margin: 0 auto; }
  .instagram-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 52px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(184,168,130,0.15);
  }
  .instagram-section .section-label span { color: var(--gold-light); }
  .instagram-section .section-label::before { background: var(--gold); }
  .instagram-section .section-title { color: var(--warm-white); }
  .insta-handle {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--gold-light); text-decoration: none;
    border: 1px solid rgba(184,168,130,0.3); padding: 10px 20px;
    transition: all 0.2s; margin-bottom: 8px;
  }
  .insta-handle svg { width: 14px; height: 14px; flex-shrink: 0; }
  .insta-handle:hover { color: var(--warm-white); border-color: var(--gold); background: rgba(184,168,130,0.08); }

  
  .insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
  }
  .insta-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    cursor: pointer;
  }
  .insta-item img, .insta-item video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }
  .insta-item:hover img, .insta-item:hover video { transform: scale(1.06); }

  
  .insta-overlay {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(to top, rgba(26,26,24,0.9) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s;
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
  }
  .insta-item:hover .insta-overlay { opacity: 1; }
  .insta-overlay-caption {
    font-size: 11px; line-height: 1.5;
    color: rgba(250,250,248,0.85);
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: var(--sans); font-weight: 300;
  }
  .insta-overlay-meta {
    display: flex; align-items: center; gap: 8px;
    margin-top: 8px;
    font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--gold-light);
  }
  .insta-overlay-meta svg { width: 12px; height: 12px; }

  
  .insta-video-badge {
    position: absolute; top: 10px; right: 10px; z-index: 3;
    background: rgba(26,26,24,0.7); backdrop-filter: blur(4px);
    padding: 4px 8px; border-radius: 2px;
    font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--gold-light); font-family: var(--sans);
    display: flex; align-items: center; gap: 5px;
  }
  .insta-video-badge svg { width: 10px; height: 10px; }

  
  .insta-item.insta-featured {
    grid-column: span 2;
    grid-row: span 2;
  }
  .insta-item.insta-featured .insta-geo {
    position: absolute; inset: 0; z-index: 2; pointer-events: none;
  }

  
  .insta-loading, .insta-error, .insta-token-notice {
    grid-column: 1 / -1;
    padding: 60px 40px;
    text-align: center;
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 300;
    font-style: italic;
    color: rgba(250,250,248,0.35);
    border: 1px solid rgba(184,168,130,0.1);
  }
  .insta-token-notice {
    color: rgba(250,250,248,0.5);
    font-style: normal;
    font-family: var(--sans);
    font-size: 13px;
    line-height: 1.8;
    letter-spacing: 0.04em;
  }
  .insta-token-notice code {
    display: inline-block;
    background: rgba(184,168,130,0.1);
    border: 1px solid rgba(184,168,130,0.2);
    padding: 2px 10px;
    font-family: monospace;
    color: var(--gold-light);
    font-size: 12px;
    border-radius: 2px;
  }
  .insta-token-notice a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  
  @keyframes spin { to { transform: rotate(360deg); } }
  .insta-spinner {
    width: 28px; height: 28px;
    border: 2px solid rgba(184,168,130,0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 20px;
  }

  
  @keyframes instaReveal {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: none; }
  }
  .insta-item {
    opacity: 0;
    animation: instaReveal 0.5s forwards;
  }


  
  .instagram-section {
    background: var(--charcoal);
    padding: 100px 52px 80px;
    border-top: 1px solid rgba(184,168,130,0.12);
  }
  .instagram-inner { max-width: 1280px; margin: 0 auto; }
  .instagram-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 52px; padding-bottom: 36px;
    border-bottom: 1px solid rgba(184,168,130,0.15);
  }
  .instagram-section .section-label span { color: var(--gold-light); }
  .instagram-section .section-label::before { background: var(--gold); }
  .instagram-section .section-title { color: var(--warm-white); }

  .insta-handle {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--gold-light); text-decoration: none;
    border: 1px solid rgba(184,168,130,0.3); padding: 10px 20px;
    transition: all 0.2s; margin-bottom: 8px;
    font-family: var(--sans);
  }
  .insta-handle svg { width: 14px; height: 14px; flex-shrink: 0; }
  .insta-handle:hover { color: var(--warm-white); border-color: var(--gold); background: rgba(184,168,130,0.08); }

  
  .insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
  }

  .insta-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    display: block;
    text-decoration: none;
  }
  .insta-item img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    display: block;
    transition: transform 0.55s ease;
  }
  .insta-item:hover img { transform: scale(1.07); }

  
  .insta-item.insta-featured {
    grid-column: span 2;
    grid-row: span 2;
  }

  
  .insta-overlay {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(to top, rgba(26,26,24,0.88) 0%, transparent 65%);
    opacity: 0; transition: opacity 0.35s;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 20px;
  }
  .insta-item:hover .insta-overlay { opacity: 1; }
  .insta-overlay-caption {
    font-size: 12px; line-height: 1.6;
    color: rgba(250,250,248,0.9);
    font-family: var(--sans); font-weight: 300;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  }
  .insta-overlay-tag {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 10px;
    font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--gold); font-family: var(--sans);
  }

  
  .insta-geo {
    position: absolute; inset: 0; z-index: 3; pointer-events: none;
  }

  
  @keyframes instaReveal {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: none; }
  }
  .insta-item {
    opacity: 0;
    animation: instaReveal 0.55s ease forwards;
  }
  .insta-item:nth-child(1) { animation-delay: 0.05s; }
  .insta-item:nth-child(2) { animation-delay: 0.12s; }
  .insta-item:nth-child(3) { animation-delay: 0.19s; }
  .insta-item:nth-child(4) { animation-delay: 0.26s; }
  .insta-item:nth-child(5) { animation-delay: 0.33s; }
  .insta-item:nth-child(6) { animation-delay: 0.40s; }
  .insta-item:nth-child(7) { animation-delay: 0.47s; }
  .insta-item:nth-child(8) { animation-delay: 0.54s; }

  
  .insta-update-note {
    margin-top: 28px;
    font-size: 11px; letter-spacing: 0.1em;
    color: rgba(250,250,248,0.2);
    font-family: var(--sans);
    text-align: right;
  }


  
  

  

  
  .tile-still, .tile-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    transition: opacity 0.75s ease;
  }
  .tile-video {
    opacity: 0;
    z-index: 1;
  }
  .team-tile:hover .tile-video { opacity: 1; }
  .team-tile:hover .tile-still { opacity: 0; }

  
  .google-rating-box {
    background: var(--charcoal);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 10px;
  }
  .google-rating-box .testimonial-stars { justify-content: center; }
  .google-score {
    font-family: var(--serif);
    font-size: 52px; font-weight: 300;
    color: var(--warm-white);
    line-height: 1;
  }
  .google-label {
    font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--gold-light);
  }
  .google-count { font-size: 13px; color: rgba(250,250,248,0.5); line-height: 1.5; }
  .google-platform {
    font-family: var(--serif);
    font-size: 22px; font-weight: 300;
    color: var(--warm-white);
    font-style: italic;
  }
  .google-cta {
    margin-top: 12px;
    font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s;
  }

  
  .book-section { background: var(--warm-white); padding: 120px 52px; }
  .book-inner {
    max-width: 860px; margin: 0 auto;
  }

  
  .step-indicators {
    display: flex; align-items: center; gap: 0;
    margin-bottom: 44px;
  }
  .step-ind {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    cursor: pointer;
  }
  .step-ind-num {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif);
    font-size: 14px; color: var(--mid);
    transition: all 0.3s;
  }
  .step-ind-label {
    font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--mid); transition: color 0.3s;
  }
  .step-ind.active .step-ind-num  { background: var(--charcoal); border-color: var(--charcoal); color: var(--warm-white); }
  .step-ind.done  .step-ind-num  { background: var(--gold); border-color: var(--gold); color: var(--warm-white); }
  .step-ind.active .step-ind-label,
  .step-ind.done  .step-ind-label { color: var(--charcoal); }
  .step-ind-line {
    flex: 1; height: 1px; background: var(--border); margin: 0 8px; margin-bottom: 20px;
  }

  
  .form-step { display: none; }
  .form-step.active { display: block; }
  .step-heading {
    font-family: var(--serif); font-size: 22px; font-weight: 300;
    color: var(--charcoal); margin-bottom: 28px; line-height: 1.35;
  }
  .step-subtext {
    font-size: 14px; line-height: 1.75; color: var(--mid);
    margin-bottom: 28px; margin-top: -12px;
  }
  .step-nav { display: flex; gap: 16px; margin-top: 32px; align-items: center; }
  .step-back {
    background: none; border: 1px solid var(--border); padding: 13px 24px;
    font-family: var(--sans); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--mid); cursor: pointer; transition: all 0.2s;
  }
  .step-back:hover { border-color: var(--charcoal); color: var(--charcoal); }

  
  .treatment-options {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
    margin-bottom: 8px;
  }
  .treat-opt {
    display: flex; align-items: stretch;
    cursor: pointer;
  }
  .treat-opt input { display: none; }
  .treat-opt span {
    display: block; width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    font-family: var(--sans); font-size: 13px; font-weight: 300;
    color: var(--mid);
    transition: all 0.2s; cursor: pointer;
  }
  .treat-opt input:checked + span {
    border-color: var(--charcoal);
    background: var(--charcoal);
    color: var(--warm-white);
  }
  .treat-opt span:hover { border-color: var(--gold); color: var(--charcoal); }

  
  .time-slots {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  }
  .time-slot { cursor: pointer; }
  .time-slot input { display: none; }
  .time-slot span {
    display: block; text-align: center;
    padding: 12px 8px;
    border: 1px solid var(--border);
    font-family: var(--sans); font-size: 12px; font-weight: 300;
    color: var(--mid); cursor: pointer;
    transition: all 0.2s;
  }
  .time-slot input:checked + span { border-color: var(--charcoal); background: var(--charcoal); color: var(--warm-white); }
  .time-slot span:hover { border-color: var(--gold); }

  
  .voucher-options {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
    margin-bottom: 8px;
  }
  .voucher-opt { cursor: pointer; }
  .voucher-opt input { display: none; }
  .voucher-box {
    display: flex; flex-direction: column; gap: 4px;
    padding: 20px 18px;
    border: 1px solid var(--border);
    cursor: pointer; transition: all 0.2s;
  }
  .voucher-box strong { font-family: var(--serif); font-size: 18px; font-weight: 400; color: var(--charcoal); }
  .voucher-box small  { font-size: 11px; letter-spacing: 0.08em; color: var(--mid); text-transform: uppercase; }
  .voucher-opt input:checked + .voucher-box {
    border-color: var(--gold); background: var(--cream);
  }
  .voucher-box:hover { border-color: var(--gold); }

  
  .book-section .form-group { margin-bottom: 20px; }
  .book-section .form-group label {
    display: block; font-size: 10px; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
  }
  .book-section .form-group input,
  .book-section .form-group select {
    width: 100%; background: transparent;
    border: none; border-bottom: 1px solid rgba(92,91,86,0.3);
    padding: 10px 0; font-family: var(--sans); font-size: 14px;
    font-weight: 300; color: var(--charcoal); outline: none;
    transition: border-color 0.2s; appearance: none;
  }
  .book-section .form-group input:focus { border-color: var(--gold); }
  .book-section .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  .step-next, .form-submit {
    display: inline-block; font-family: var(--sans);
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--warm-white); background: var(--charcoal);
    padding: 15px 32px; border: none; cursor: pointer;
    transition: background 0.25s; text-decoration: none;
  }
  .step-next:hover, .form-submit:hover { background: var(--gold); }

  
  .form-success-inner {
    padding: 60px 40px; text-align: center;
    border: 1px solid var(--border);
    background: var(--cream);
  }
  .success-check {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--gold); color: var(--warm-white);
    font-size: 22px; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
  }
  .success-title { font-family: var(--serif); font-size: 28px; font-weight: 300; color: var(--charcoal); margin-bottom: 12px; }
  .success-body  { font-size: 14px; color: var(--mid); line-height: 1.7; }

  
  .book-location-col { display: flex; flex-direction: column; gap: 20px; }
  .location-card-single {
    background: var(--charcoal); padding: 44px 40px;
    border: 1px solid rgba(184,168,130,0.1);
  }
  .location-card-single .location-tag {
    font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
    margin-bottom: 16px; display: flex; align-items: center; gap: 10px;
  }
  .location-card-single .location-tag::before {
    content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  }
  .location-card-single .location-name {
    font-family: var(--serif); font-size: 34px; font-weight: 300;
    color: var(--warm-white); line-height: 1.1; margin-bottom: 20px;
  }
  .location-card-single .location-address {
    font-size: 14px; line-height: 1.85; color: rgba(250,250,248,0.5); margin-bottom: 20px;
  }
  .location-card-single .location-phone {
    font-family: var(--serif); font-size: 22px; font-weight: 300;
    color: var(--gold-light); text-decoration: none; display: block; margin-bottom: 24px;
    transition: color 0.2s;
  }
  .location-card-single .location-phone:hover { color: var(--warm-white); }
  .location-hours { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
  .hours-row {
    display: flex; justify-content: space-between;
    font-size: 12px; color: rgba(250,250,248,0.5);
    padding-bottom: 8px; border-bottom: 1px solid rgba(184,168,130,0.08);
  }
  .location-card-single .location-detail {
    font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(250,250,248,0.3); padding-top: 16px;
    border-top: 1px solid rgba(184,168,130,0.1);
  }
  .location-map-placeholder { overflow: hidden; }
  .map-inner { position: relative; }
  .map-link {
    position: absolute; bottom: 0; right: 0; left: 0;
    padding: 10px 16px;
    background: rgba(26,26,24,0.85); backdrop-filter: blur(6px);
    font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--gold); text-decoration: none; text-align: center;
    display: block; transition: background 0.2s;
  }
  .map-link:hover { background: rgba(26,26,24,0.95); color: var(--warm-white); }

  
  .reels-section {
    background: var(--charcoal);
    padding: 100px 52px 80px;
    border-top: 1px solid rgba(184,168,130,0.12);
  }
  .reels-inner { max-width: 1200px; margin: 0 auto; }
  .reels-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 48px; padding-bottom: 36px;
    border-bottom: 1px solid rgba(184,168,130,0.15);
  }
  .reels-section .section-label span { color: var(--gold-light); }
  .reels-section .section-label::before { background: var(--gold); }

  .insta-handle {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--gold-light); text-decoration: none;
    border: 1px solid rgba(184,168,130,0.3); padding: 10px 20px;
    transition: all 0.2s; font-family: var(--sans);
  }
  .insta-handle:hover { color: var(--warm-white); border-color: var(--gold); background: rgba(184,168,130,0.08); }

  .reels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .reel-item {
    position: relative;
    
    aspect-ratio: 9 / 16;
    overflow: hidden;
    background: #111;
    cursor: pointer;
  }
  .reel-item img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    transition: transform 0.55s ease;
  }
  .reel-item:hover img { transform: scale(1.04); }

  
  .reel-gradient {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(
      to top,
      rgba(26,26,24,0.95) 0%,
      rgba(26,26,24,0.4) 45%,
      transparent 75%
    );
    pointer-events: none;
  }

  
  .reel-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(1);
    z-index: 4;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(184,168,130,0.85);
    backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s, background 0.3s;
    box-shadow: 0 4px 24px rgba(184,168,130,0.4);
  }
  .reel-item:hover .reel-play {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--gold);
  }
  .reel-play svg {
    width: 22px; height: 22px;
    color: var(--charcoal);
    margin-left: 3px; 
  }

  
  .reel-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    z-index: 3; padding: 20px 16px 16px;
  }
  .reel-text {
    font-size: 12px; line-height: 1.55;
    color: rgba(250,250,248,0.9);
    font-family: var(--sans); font-weight: 300;
    margin-bottom: 6px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  }
  .reel-tag {
    font-size: 11px; letter-spacing: 0.1em;
    color: var(--gold); font-family: var(--sans);
  }

  
  .reel-side-actions {
    position: absolute; right: 14px; bottom: 80px; z-index: 4;
    display: flex; flex-direction: column; gap: 18px; align-items: center;
  }
  .reel-heart, .reel-comment, .reel-share {
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5);
    opacity: 1;
  }

  
  .tc-social-actions {
    position: absolute; right: 14px; bottom: 80px; z-index: 4;
    display: flex; flex-direction: column; gap: 18px; align-items: center;
  }
  .tc-social-actions span {
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5);
    opacity: 1;
  }

  
  @keyframes reelReveal {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: none; }
  }
  .reel-item {
    opacity: 0;
    animation: reelReveal 0.6s ease forwards;
  }
  .reel-item:nth-child(1) { animation-delay: 0.05s; }
  .reel-item:nth-child(2) { animation-delay: 0.15s; }
  .reel-item:nth-child(3) { animation-delay: 0.25s; }
  .reel-item:nth-child(4) { animation-delay: 0.35s; }

  
  .treat-opt {
    display: flex; flex-direction: column; align-items: stretch; cursor: pointer;
  }
  
  .treat-opt-large {
    display: block !important;
    padding: 0 !important;
    width: 100%;
    border: 1px solid var(--gold) !important;
    overflow: hidden;
    position: relative;
    height: 220px;
    flex-shrink: 0;
  }
  .treat-opt input:checked + .treat-opt-large { border-color: var(--charcoal) !important; box-shadow: inset 0 0 0 2px var(--charcoal); }

  
  .tol-image {
    position: absolute; inset: 0; overflow: hidden;
  }
  .tol-image img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    transition: transform 0.55s ease;
    display: block;
  }
  .tol-image::after { display: none; }
  .treat-opt:hover .tol-image img { transform: scale(1.06); }

  
  .tol-body {
    padding: 14px 2px 0;
    display: flex; flex-direction: column; gap: 4px;
  }
  .treat-opt-title {
    font-family: var(--serif); font-size: 18px; font-weight: 400;
    letter-spacing: 0.01em; color: var(--charcoal); line-height: 1.2;
    transition: color 0.2s;
  }
  .treat-opt:hover .treat-opt-title { color: var(--gold); }
  .treat-opt-sub {
    font-size: 11px; letter-spacing: 0.08em; color: var(--mid);
    text-transform: uppercase; line-height: 1.4;
  }

  
  .booking-summary { background: var(--cream); border: 1px solid var(--border); padding: 4px 0; }
  .summary-row {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 13px 24px; border-bottom: 1px solid var(--border); gap: 20px;
  }
  .summary-row:last-child { border-bottom: none; }
  .summary-label { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); flex-shrink: 0; }
  .summary-val   { font-family: var(--serif); font-size: 16px; font-weight: 400; color: var(--charcoal); text-align: right; }

  
  .maps-link-btn {
    display: inline-flex; align-items: center; gap: 10px;
    width: 100%; padding: 14px 0;
    font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--gold); text-decoration: none;
    border-top: 1px solid rgba(184,168,130,0.15);
    transition: color 0.2s; font-family: var(--sans);
  }
  .maps-link-btn:hover { color: var(--warm-white); }

  
  .lightbox {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(10,10,8,0.93);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
    backdrop-filter: blur(8px);
  }
  .lightbox.active { opacity: 1; pointer-events: all; }
  .lightbox-inner {
    position: relative;
    width: 90vw; max-width: 1000px;
    aspect-ratio: 16/9;
    background: #000;
  }
  .lightbox-inner video {
    width: 100%; height: 100%; display: block; object-fit: contain;
  }
  .lightbox-close {
    position: absolute; top: -44px; right: 0;
    background: none; border: none; cursor: pointer;
    color: rgba(255,255,255,0.7); font-size: 13px;
    letter-spacing: 0.14em; text-transform: uppercase;
    font-family: var(--sans); display: flex; align-items: center; gap: 8px;
    transition: color 0.2s;
  }
  .lightbox-close:hover { color: var(--gold); }


  /* ════════════════════════════════════════════════════════════════
     RESPONSIVE — mobile-first breakpoints
     1280px  desktop (base styles above)
     1024px  laptop / iPad landscape
      768px  tablet / iPad portrait
      480px  large phone (landscape or phablet)
      375px  phone (iPhone SE / standard)
  ════════════════════════════════════════════════════════════════ */

  /* ─── 1024px — laptop & iPad landscape ─── */
  @media (max-width: 1024px) {

    /* NAV */
    nav { padding: 0 28px; }
    .nav-links { gap: 22px; }
    .nav-links a { font-size: 11px; }

    /* MEGA MENU */
    .mega-menu { grid-template-columns: 1fr; }
    .mega-featured { display: none; }
    .mega-grid { grid-template-columns: repeat(3, 1fr); gap: 0; }
    .mega-col { padding: 20px 16px; }
    .mega-menu { max-height: 70vh; }

    /* HERO — desktop two-column layout preserved down to 768px */
    /* eyebrow-wrap stays hidden; eyebrow lives inside hero-left as normal */

    /* TREATMENTS */
    .treatments-grid { grid-template-columns: repeat(2, 1fr); }

    /* CONDITIONS */
    .cond-cats-grid { grid-template-columns: repeat(3, 1fr); }

    /* TEAM */
    .team-mosaic {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 360px 280px 280px;
    }
    .tile-ahmed-hero { grid-column: 1 / span 2; grid-row: 1; }
    .doctor-credentials { grid-template-columns: repeat(2, 1fr); }

    /* QUOTE */
    .pb-content { grid-template-columns: 1fr; }
    .pb-image { display: none; }
    .pb-text { padding: 80px 40px; text-align: center; }
    .pb-label { justify-content: center; }

    /* TESTIMONIALS / SOCIAL */
    .reels-grid { grid-template-columns: repeat(2, 1fr); }

    /* BOOKING */
    .book-inner-full { grid-template-columns: 1fr; gap: 40px; padding: 80px 40px; }
    .bk-interest-grid { grid-template-columns: repeat(2, 1fr); }

    /* FOOTER */
    .footer-top { flex-direction: column; gap: 40px; }
    .footer-nav { flex-wrap: wrap; gap: 32px; }
    .footer-location { border-left: none; padding-left: 0; border-top: 1px solid rgba(184,168,130,0.15); padding-top: 32px; }

    /* INSTA GRID */
    .insta-grid { grid-template-columns: repeat(4, 1fr); }

    /* SECTION PADDING */
    section { padding: 80px 40px; }
    .doctor-section { padding: 80px 40px 100px; }
    .testimonials-section,
    .reels-section { padding: 80px 40px 60px; }
    .conditions-section { padding: 80px 0; }
    .conditions-section > div { padding: 0 40px; }
    .trust-strip { gap: 36px; padding: 28px 32px; flex-wrap: wrap; }
  }

  /* ─── 768px — tablet / iPad portrait ─── */
  @media (max-width: 768px) {

    /* NAV — hamburger territory: collapse links */
    nav {
      display: flex;
      justify-content: space-between;
      padding: 0 20px;
      height: 64px;
    }
    .nav-links { display: none; } /* replaced by mobile menu below */
    .nav-cta { font-size: 10px; padding: 10px 18px; }

    /* Mobile hamburger */
    .nav-hamburger {
      display: flex; flex-direction: column; gap: 5px;
      background: none; border: none; cursor: pointer;
      padding: 8px; z-index: 200;
    }
    .nav-hamburger span {
      display: block; width: 22px; height: 1.5px;
      background: var(--charcoal); transition: all 0.3s;
    }
    .nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

    /* Mobile nav drawer */
    .nav-mobile {
      display: none;
      position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
      background: var(--warm-white);
      z-index: 150;
      flex-direction: column;
      padding: 32px 24px;
      gap: 0;
      overflow-y: auto;
      border-top: 2px solid var(--gold);
    }
    .nav-mobile.open { display: flex; }
    .nav-mobile a {
      display: block; padding: 16px 0;
      font-size: 15px; letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--charcoal); text-decoration: none;
      border-bottom: 1px solid var(--border);
      font-family: var(--sans); font-weight: 300;
    }
    .nav-mobile a:hover { color: var(--gold); }
    .nav-mobile .mob-cta {
      margin-top: 24px; text-align: center;
      background: var(--charcoal); color: var(--warm-white);
      padding: 16px; display: block;
    }
    .nav-mobile .mob-wa {
      margin-top: 12px; text-align: center;
      background: #25D366; color: #fff;
      padding: 16px; display: block;
      border-bottom: none;
    }

    /* HERO — stacked: eyebrow full-width → 1:1 square video → text */
    .hero {
      display: flex;
      flex-direction: column;
      min-height: auto;
      padding-top: 64px;
    }
    /* Stacking order */
    .hero-eyebrow-wrap {
      display: flex;
      order: 1;
      width: 100%;
      padding: 20px 24px 14px;
      background: var(--warm-white);
    }
    .hero > .photo-panel {
      order: 2;
      position: relative;
      width: 100%;
      height: 360px !important;
      max-height: 360px !important;
      min-height: 0 !important;
      flex-shrink: 0;
    }
    .hero-left {
      order: 3;
      position: relative; z-index: 2;
      padding: 32px 24px 48px;
      background: var(--warm-white);
      min-height: auto;
      justify-content: flex-start;
    }
    /* Video fills the square at 50% opacity */
    .hero > .photo-panel .hero-video {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover; opacity: 0.5;
    }
    /* Play button: centred, always tappable */
    .hero > .photo-panel .hero-play-btn {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      z-index: 4; pointer-events: all;
    }
    .hero > .photo-panel .hero-play-btn:hover {
      transform: translate(-50%, -50%) scale(1.06);
    }
    /* Hide things that don't belong in stacked layout */
    .hero-stat-card { display: none; }
    .hero-location-badge { display: none; }
    .hero-photo-gradient { display: none; }
    /* Hide eyebrow inside hero-left — shown via eyebrow-wrap instead */
    .hero-left .hero-eyebrow { display: none; }
    /* Text colours on white background */
    .hero-headline { color: var(--charcoal); font-size: clamp(32px, 7vw, 48px); }
    .hero-headline em { color: var(--gold); }
    .hero-body { color: var(--mid); font-size: 14px; max-width: 100%; }
    .hero-actions { flex-direction: column; gap: 14px; align-items: flex-start; }

    /* MARQUEE */
    .marquee-item span { font-size: 10px; }

    /* TRUST */
    .trust-strip { gap: 18px; padding: 20px 24px; }
    .trust-item span { font-size: 10px; }

    /* HEADLINES — override all max-width constraints, allow full wrapping */
    .section-title { font-size: clamp(26px, 6.5vw, 42px); max-width: 100% !important; }

    /* <br> tags handled by JS on mobile */
    .section-title br,
    .hero-headline br { display: none; }

    /* hero-body: remove 400px cap */
    .hero-body { max-width: 100% !important; }

    /* hero-headline em: disable typeout animation white-space on mobile */
    .hero-headline em {
      white-space: normal !important;
      display: inline !important;
      max-width: 100% !important;
      overflow: visible !important;
      animation: goldGlow 2.5s ease-in-out 1s infinite !important;
    }

    /* Section header rows → columns so title gets full width */
    .treatments-header,
    .testimonials-header,
    .reels-header,
    .doctor-header,
    .instagram-header,
    .conditions-header,
    .reels-header { flex-direction: column; gap: 16px; align-items: flex-start; }

    /* Doctor intro: remove max-width */
    .doctor-intro { max-width: 100% !important; }

    /* pb-text: remove constrained widths */
    .pb-text { max-width: 100% !important; }

    /* TREATMENTS */
    .treatments-grid { grid-template-columns: 1fr; }
    .treatments-header { flex-direction: column; gap: 16px; align-items: flex-start; margin-bottom: 40px; }

    /* CONDITIONS MEGA GRID */
    .cond-cats-grid { grid-template-columns: repeat(2, 1fr); }

    /* TEAM — Ahmed 2x2 square, others 1x1 half-width squares */
    .team-mosaic {
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: 180px 180px;
    }
    .tile-ahmed-hero { grid-column: 1 / span 2; grid-row: 1 / span 2; }
    .team-tile { height: auto; }
    .doctor-credentials { grid-template-columns: 1fr 1fr; }
    .doctor-header { flex-direction: column; gap: 20px; }

    /* QUOTE */
    .pb-text { padding: 60px 24px; }
    .pb-text blockquote { font-size: clamp(26px, 6.5vw, 44px); }

    /* TESTIMONIALS */
    .reels-grid { grid-template-columns: repeat(2, 1fr); }
    .reels-header { flex-direction: column; gap: 24px; align-items: flex-start; }

    /* SOCIAL MEDIA */
    .reels-header div[style*="flex"] { flex-wrap: wrap; gap: 8px; }

    /* BOOKING */
    .book-form-panel { padding: 32px 24px; }
    .bk-interest-grid { grid-template-columns: 1fr 1fr; }
    .bk-grid-2 { grid-template-columns: 1fr; }
    .bk-slots { grid-template-columns: repeat(3, 1fr); }
    .bk-steps { gap: 0; overflow-x: auto; }
    .bk-label { font-size: 9px; }

    /* FOOTER */
    .footer-top { flex-direction: column; gap: 32px; }
    .footer-nav { flex-direction: column; gap: 24px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

    /* SECTION PADDING */
    section { padding: 64px 24px; }
    .doctor-section { padding: 64px 24px 80px; }
    .testimonials-section,
    .reels-section { padding: 64px 24px 48px; }
    .conditions-section { padding: 64px 0; }
    .conditions-section > div { padding: 0 24px; }
    .conditions-header { flex-direction: column; gap: 20px; align-items: flex-start; }
    .trust-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

    /* LIGHTBOX */
    .lightbox-inner { width: 96vw; }
  }

  /* ─── 480px — large phones / landscape ─── */
  @media (max-width: 480px) {

    /* HERO */
    .hero-headline { font-size: clamp(34px, 10vw, 50px); }
    .btn-primary { padding: 14px 28px; font-size: 10px; }

    /* CONDITIONS */
    .cond-cats-grid { grid-template-columns: 1fr; }

    /* TEAM — keep 4-col with Ahmed 2×2 at 480px */
    .doctor-credentials { grid-template-columns: 1fr; }

    /* TESTIMONIALS / REELS */
    .reels-grid { grid-template-columns: 1fr 1fr; }

    /* TREATMENTS */
    .treatments-grid { grid-template-columns: 1fr; }

    /* BOOKING */
    .bk-interest-grid { grid-template-columns: 1fr; }
    .bk-slots { grid-template-columns: repeat(2, 1fr); }
    .bk-steps { padding-bottom: 8px; }
    .bk-line { min-width: 12px; }

    /* QUOTE */
    .pb-text blockquote { font-size: clamp(24px, 7vw, 36px); }

    /* FOOTER */
    .footer-location .footer-hours-row { flex-direction: column; gap: 2px; }
  }

  /* ─── 375px — standard phones ─── */
  @media (max-width: 375px) {

    nav { padding: 0 16px; }
    .nav-cta { display: none; } /* hide Book button, keep hamburger + logo */

    /* HERO */
    .hero-eyebrow-wrap { padding: 16px 16px 8px; }
    .hero-left { padding: 24px 16px 44px; }
    .hero-eyebrow { display: flex; } /* keep eyebrow visible */
    .hero-headline { font-size: 30px; }
    .hero-body { font-size: 13px; }

    /* TEAM — all equal squares at 375px */
    .team-mosaic {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto;
    }
    .tile-ahmed-hero { grid-column: 1; grid-row: 1; aspect-ratio: 1/1; height: auto; }
    .team-tile { aspect-ratio: 1/1; height: auto; }

    /* TRUST */
    .trust-strip { grid-template-columns: 1fr; }

    /* TEAM */
    .tile-ahmed-hero { height: 320px; }
    .team-tile { height: 220px; }

    /* TESTIMONIALS */
    .reels-grid { grid-template-columns: 1fr; }

    /* SECTION TITLES */
    .section-title { font-size: clamp(28px, 8vw, 40px); }

    /* QUOTE */
    .pb-text { padding: 48px 16px; }

    /* FOOTER */
    .footer-inner { padding: 0 16px; }
    footer { padding: 48px 0 28px; }
  }

  /* ─── Nav: show hamburger only on ≤768px ─── */
  @media (min-width: 769px) {
    .nav-hamburger { display: none !important; }
    .nav-mobile    { display: none !important; }
    .nav-links     { display: flex !important; }
  }


  @media (max-width: 480px) {
    .wa-float { bottom: 16px; right: 16px; padding: 10px 14px 10px 12px; font-size: 12px; }
    .wa-float span { display: none; }
    .wa-float { border-radius: 50%; width: 48px; height: 48px; justify-content: center; }
  }


  /* ════════════════════════════════════════
     MOBILE CAROUSELS — activates at ≤768px
  ════════════════════════════════════════ */
  @media (max-width: 768px) {

    /* ── Shared carousel wrapper ── */
    .carousel-wrap {
      position: relative;
    }

    /* ── Shared scroll track ── */
    .carousel-track {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      gap: 12px;
      padding: 0 24px 16px;
      scrollbar-width: none; /* Firefox */
    }
    .carousel-track::-webkit-scrollbar { display: none; }

    /* ── Each slide ── */
    .carousel-slide {
      flex: 0 0 82vw;
      max-width: 340px;
      scroll-snap-align: start;
    }

    /* ── Dot indicators ── */
    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 6px;
      margin-top: 16px;
    }
    .carousel-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--border);
      border: none; cursor: pointer;
      padding: 0; transition: background 0.2s, transform 0.2s;
    }
    .carousel-dot.active {
      background: var(--gold);
      transform: scale(1.3);
    }

    /* ── Prev / Next arrows ── */
    .carousel-prev,
    .carousel-next {
      position: absolute;
      top: 50%; transform: translateY(-50%);
      z-index: 5;
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--warm-white);
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      color: var(--charcoal);
      box-shadow: 0 2px 12px rgba(26,26,24,0.12);
      transition: background 0.2s, border-color 0.2s;
    }
    .carousel-prev:hover, .carousel-next:hover {
      background: var(--gold); border-color: var(--gold); color: var(--warm-white);
    }
    .carousel-prev { left: 4px; }
    .carousel-next { right: 4px; }
    .carousel-prev svg, .carousel-next svg { width: 14px; height: 14px; }

    /* ── TREATMENTS carousel overrides ── */
    .treatments-grid {
      display: flex; /* will be carousel-track on mobile via JS */
    }
    .treatments-grid .wwo-cat {
      flex: 0 0 82vw;
      max-width: 320px;
      scroll-snap-align: start;
    }
    /* remove top section padding when in carousel mode */
    .treatments-section { padding-bottom: 48px; }

    /* ── CONDITIONS carousel overrides ── */
    .cond-cats-grid {
      display: flex;
    }
    .cond-cats-grid .cond-cat-card {
      flex: 0 0 75vw;
      max-width: 300px;
      scroll-snap-align: start;
    }

    /* ── TEAM carousel overrides ── */
    .team-mosaic {
      display: flex !important;
      grid-template-columns: unset !important;
      grid-template-rows: unset !important;
    }
    .team-mosaic .team-tile {
      flex: 0 0 70vw;
      max-width: 280px;
      height: 300px;
      scroll-snap-align: start;
      grid-column: unset !important;
      grid-row: unset !important;
    }
    /* Ahmed same size as others in carousel */
    .tile-ahmed-hero {
      flex: 0 0 70vw !important;
      max-width: 280px !important;
      height: 300px !important;
    }

    /* ── PATIENT STORIES carousel ── */
    .testimonials-section .reels-grid {
      display: flex;
    }
    .testimonials-section .reels-grid .reel-item {
      flex: 0 0 72vw;
      max-width: 280px;
      scroll-snap-align: start;
      aspect-ratio: 3/4;
    }

    /* ── SOCIAL MEDIA carousel ── */
    .reels-section .reels-grid {
      display: flex;
    }
    .reels-section .reels-grid .reel-item {
      flex: 0 0 55vw;
      max-width: 220px;
      scroll-snap-align: start;
    }
  }

  /* ─── MOBILE NAV ACCORDIONS ─── */
  .mob-accordion { border-bottom: 1px solid var(--border); }
  .mob-acc-trigger {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 16px 0; background: none; border: none; cursor: pointer;
    font-family: var(--sans); font-size: 15px; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--charcoal);
    font-weight: 300;
  }
  .mob-acc-trigger[aria-expanded="true"] { color: var(--gold); }
  .mob-acc-icon { width: 12px; height: 12px; flex-shrink: 0; transition: transform 0.3s; stroke: currentColor; }
  .mob-acc-trigger[aria-expanded="true"] .mob-acc-icon { transform: rotate(180deg); }

  .mob-acc-body {
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
  }
  .mob-acc-body.open { max-height: 600px; }

  .mob-acc-group { margin-bottom: 16px; }
  .mob-acc-group-label {
    font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 6px; margin-top: 12px;
    padding-left: 12px;
  }
  .mob-acc-body a {
    display: block; padding: 8px 12px;
    font-size: 14px; color: var(--mid); text-decoration: none;
    border-bottom: none !important;
    transition: color 0.2s, padding-left 0.2s;
  }
  .mob-acc-body a:hover { color: var(--charcoal); padding-left: 18px; }
  .mob-link {
    display: block; padding: 16px 0;
    font-size: 15px; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--charcoal); text-decoration: none;
    border-bottom: 1px solid var(--border);
    font-family: var(--sans); font-weight: 300;
  }
  .mob-link:hover { color: var(--gold); }

  /* ─── FOOTER COMPACT ─── */
  footer { background: #0F0F0E; padding: 48px 52px 24px; }
  .footer-main {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    gap: 48px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(184,168,130,0.1);
    margin-bottom: 20px;
    align-items: start;
  }
  .footer-links-grid { display: flex; gap: 48px; }
  .footer-contact-col h4 { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
  .footer-contact-col address { font-style: normal; font-size: 12px; color: rgba(250,250,248,0.4); line-height: 1.7; margin-bottom: 8px; }
  .footer-contact-col .footer-phone { font-family: var(--serif); font-size: 16px; font-weight: 300; color: var(--gold-light); text-decoration: none; display: block; margin-bottom: 10px; transition: color 0.2s; }
  .footer-contact-col .footer-phone:hover { color: var(--warm-white); }
  .footer-contact-col .footer-hours { display: flex; flex-direction: column; gap: 3px; margin-bottom: 10px; }
  .footer-contact-col .footer-hours-row { display: flex; justify-content: space-between; gap: 16px; font-size: 11px; color: rgba(250,250,248,0.35); }
  .footer-contact-col .footer-maps-link { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); text-decoration: none; }

  /* Social icons in footer */
  .footer-social { display: flex; gap: 14px; margin-top: 16px; }
  .footer-social-link { color: rgba(250,250,248,0.35); transition: color 0.2s; }
  .footer-social-link:hover { color: var(--gold); }

  /* Slim legal bar */
  .footer-bar {
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-bar p, .footer-bar-badges { font-size: 10px; color: rgba(250,250,248,0.2); letter-spacing: 0.06em; }
  .footer-bar-badges { display: flex; gap: 8px; }

  /* Mobile footer */
  @media (max-width: 768px) {
    footer { padding: 36px 24px 20px; }
    .footer-main { grid-template-columns: 1fr; gap: 28px; }
    .footer-links-grid { flex-wrap: wrap; gap: 24px; }
    .footer-bar { flex-direction: column; gap: 8px; text-align: center; }
  }


  /* ════════════════════════════════════════
     ABOUT PAGE
  ════════════════════════════════════════ */

  /* ── Hero — editorial split ── */
  .about-hero {
    margin-top: 76px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 92vh;
  }
  .about-hero-left {
    background: var(--charcoal);
    padding: 100px 72px 80px 52px;
    display: flex; flex-direction: column; justify-content: flex-end;
    position: relative; overflow: hidden;
  }
  /* Geometric lines on left panel */
  .about-hero-geo {
    position: absolute; inset: 0; pointer-events: none; opacity: 0.35;
  }
  .about-hero-eyebrow {
    display: flex; align-items: center; gap: 14px; margin-bottom: 32px;
    opacity: 0; animation: fadeUp 0.9s 0.2s forwards;
  }
  .about-hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
  .about-hero-eyebrow span { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-family: var(--sans); }
  .about-hero-headline {
    font-family: var(--serif); font-size: clamp(52px, 5vw, 80px);
    font-weight: 300; line-height: 1.06; color: var(--warm-white);
    margin-bottom: 28px;
    opacity: 0; animation: fadeUp 0.9s 0.4s forwards;
  }
  .about-hero-headline em { font-style: italic; color: var(--gold); }
  .about-hero-body {
    font-size: 15px; line-height: 1.85; color: rgba(250,250,248,0.6);
    max-width: 420px; margin-bottom: 44px;
    opacity: 0; animation: fadeUp 0.9s 0.6s forwards;
  }
  .about-hero-creds {
    display: flex; gap: 32px; padding-top: 32px;
    border-top: 1px solid rgba(184,168,130,0.2);
    opacity: 0; animation: fadeUp 0.9s 0.8s forwards;
  }
  .about-hero-cred-item { }
  .about-hero-cred-num {
    font-family: var(--serif); font-size: 36px; font-weight: 300;
    color: var(--warm-white); line-height: 1;
  }
  .about-hero-cred-label {
    font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--gold); margin-top: 4px;
  }

  /* Right side — photo with geometric overlay */
  .about-hero-right {
    position: relative; overflow: hidden; background: #111;
  }
  .about-hero-right img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
  }
  .about-hero-right-grad {
    position: absolute; inset: 0;
    background: linear-gradient(to left, transparent 50%, rgba(26,26,24,0.15) 100%);
  }
  /* Floating quote card */
  .about-hero-quote {
    position: absolute; bottom: 48px; left: -36px; z-index: 3;
    background: var(--cream); padding: 28px 36px;
    border-left: 3px solid var(--gold);
    box-shadow: 0 20px 60px rgba(26,26,24,0.18);
    max-width: 340px;
    opacity: 0; animation: slideRight 0.9s 1.1s forwards;
  }
  .about-hero-quote p {
    font-family: var(--serif); font-size: 17px; font-weight: 300;
    font-style: italic; line-height: 1.55; color: var(--charcoal);
    margin-bottom: 10px;
  }
  .about-hero-quote cite {
    font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--gold); font-style: normal;
  }

  /* ── Philosophy section ── */
  .about-philosophy {
    background: var(--cream);
    padding: 120px 52px;
    position: relative; overflow: hidden;
  }
  .about-philosophy-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center;
  }
  .about-phil-visual {
    display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 240px 240px; gap: 4px;
  }
  .about-phil-img {
    position: relative; overflow: hidden;
  }
  .about-phil-img img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    transition: transform 0.6s;
  }
  .about-phil-img:hover img { transform: scale(1.05); }
  /* First image spans full height */
  .about-phil-img.tall { grid-row: span 2; }
  .about-phil-img.tall img { object-position: center 20%; }
  .about-phil-text blockquote {
    font-family: var(--serif); font-size: clamp(26px, 2.8vw, 38px);
    font-weight: 300; line-height: 1.35; color: var(--charcoal);
    margin-bottom: 28px; font-style: italic;
  }
  .about-phil-text blockquote em { color: var(--gold); font-style: italic; }
  .about-phil-text p { font-size: 15px; line-height: 1.85; color: var(--mid); margin-bottom: 20px; }
  .about-phil-text p:last-of-type { margin-bottom: 36px; }

  /* ── Global Clinical Foundation ── */
  .about-foundation {
    background: var(--charcoal); padding: 120px 52px;
  }
  .about-foundation-inner { max-width: 1200px; margin: 0 auto; }
  .about-foundation-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; margin-top: 64px;
    border: 1px solid rgba(184,168,130,0.12);
  }
  .about-foundation-card {
    padding: 40px 32px;
    border-right: 1px solid rgba(184,168,130,0.1);
    position: relative; transition: background 0.3s;
  }
  .about-foundation-card:last-child { border-right: none; }
  .about-foundation-card:hover { background: rgba(255,255,255,0.03); }
  .about-found-icon {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(184,168,130,0.1); border: 1px solid rgba(184,168,130,0.25);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
  }
  .about-found-icon svg { width: 18px; height: 18px; color: var(--gold); }
  .about-found-label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
  .about-found-title { font-family: var(--serif); font-size: 20px; font-weight: 300; color: var(--warm-white); line-height: 1.25; margin-bottom: 12px; }
  .about-found-body { font-size: 13px; line-height: 1.7; color: rgba(250,250,248,0.5); }
  .about-found-source {
    margin-top: 16px; font-size: 10px; letter-spacing: 0.12em;
    text-transform: uppercase; color: rgba(184,168,130,0.4);
    font-style: italic;
  }

  /* ── Services grid ── */
  .about-services {
    background: var(--warm-white); padding: 120px 52px;
  }
  .about-services-inner { max-width: 1200px; margin: 0 auto; }
  .about-services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2px; margin-top: 64px;
  }
  .about-service-card {
    background: var(--cream); padding: 44px 36px;
    position: relative; overflow: hidden;
    transition: transform 0.3s;
  }
  .about-service-card:hover { transform: translateY(-4px); }
  .about-service-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: var(--gold); transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s;
  }
  .about-service-card:hover::after { transform: scaleX(1); }
  .about-service-num {
    font-family: var(--serif); font-size: 52px; font-weight: 300;
    color: var(--border); line-height: 1; margin-bottom: 20px;
    transition: color 0.3s;
  }
  .about-service-card:hover .about-service-num { color: var(--gold-light); }
  .about-service-title { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--charcoal); margin-bottom: 12px; }
  .about-service-body { font-size: 13px; line-height: 1.7; color: var(--mid); }

  /* ── Mosaic gallery ── */
  .about-gallery {
    background: var(--charcoal); padding: 0;
  }
  .about-gallery-header {
    padding: 80px 52px 52px;
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: flex-end;
    border-bottom: 1px solid rgba(184,168,130,0.12); margin-bottom: 4px;
  }
  .about-mosaic {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 380px 280px;
    gap: 4px;
  }
  .about-mosaic-item {
    position: relative; overflow: hidden; background: #111;
    cursor: pointer;
  }
  .about-mosaic-item img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    transition: transform 0.55s ease, filter 0.4s;
    filter: grayscale(25%);
  }
  .about-mosaic-item:hover img { transform: scale(1.05); filter: grayscale(0%); }
  .about-mosaic-item.featured { grid-row: span 2; }
  .about-mosaic-item.wide    { grid-column: span 2; }
  /* Gold overlay on hover */
  .about-mosaic-overlay {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(to top, rgba(26,26,24,0.85) 0%, transparent 55%);
    opacity: 0; transition: opacity 0.35s;
  }
  .about-mosaic-item:hover .about-mosaic-overlay { opacity: 1; }
  .about-mosaic-caption {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
    padding: 20px 22px;
    transform: translateY(4px); transition: transform 0.3s;
  }
  .about-mosaic-item:hover .about-mosaic-caption { transform: none; }
  .about-mosaic-caption-title {
    font-family: var(--serif); font-size: 18px; font-weight: 300;
    color: var(--warm-white); margin-bottom: 2px;
  }
  .about-mosaic-caption-sub {
    font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold);
  }
  /* Geo on featured tile */
  .about-mosaic-geo { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
  .about-gallery-footer {
    padding: 32px 52px;
    border-top: 1px solid rgba(184,168,130,0.1);
    display: flex; justify-content: space-between; align-items: center;
  }
  .about-gallery-note { font-size: 11px; letter-spacing: 0.12em; color: rgba(250,250,248,0.25); text-transform: uppercase; }

  /* ── Trust / reputation ── */
  .about-trust {
    background: var(--cream); padding: 100px 52px;
  }
  .about-trust-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }
  .about-trust-score {
    display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
  }
  .about-trust-big {
    font-family: var(--serif); font-size: 120px; font-weight: 300;
    line-height: 1; color: var(--charcoal);
  }
  .about-trust-big span { color: var(--gold); }
  .about-trust-stars { display: flex; gap: 6px; }
  .about-trust-label { font-size: 13px; color: var(--mid); line-height: 1.6; }
  .about-trust-body { font-size: 15px; line-height: 1.85; color: var(--mid); margin-bottom: 24px; }

  /* Responsive */
  @media (max-width: 1024px) {
    .about-hero { grid-template-columns: 1fr; min-height: auto; }
    .about-hero-right { height: 460px; }
    .about-hero-quote { display: none; }
    .about-philosophy-inner { grid-template-columns: 1fr; gap: 48px; }
    .about-foundation-grid { grid-template-columns: 1fr 1fr; }
    .about-foundation-card { border-bottom: 1px solid rgba(184,168,130,0.1); }
    .about-services-grid { grid-template-columns: 1fr 1fr; }
    .about-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 260px 260px; }
    .about-mosaic-item.featured { grid-row: auto; }
    .about-mosaic-item.wide { grid-column: auto; }
    .about-trust-inner { grid-template-columns: 1fr; gap: 40px; }
  }
  @media (max-width: 768px) {
    .about-hero { margin-top: 64px; }
    .about-hero-left { padding: 64px 24px 56px; }
    .about-hero-right { height: 320px; }
    .about-philosophy { padding: 64px 24px; }
    .about-phil-visual { grid-template-columns: 1fr; grid-template-rows: 220px 220px; }
    .about-phil-img.tall { grid-row: auto; }
    .about-foundation { padding: 64px 24px; }
    .about-foundation-grid { grid-template-columns: 1fr; }
    .about-services { padding: 64px 24px; }
    .about-services-grid { grid-template-columns: 1fr; }
    .about-gallery-header { padding: 52px 24px 36px; flex-direction: column; gap: 16px; align-items: flex-start; }
    .about-gallery-footer { padding: 24px; flex-direction: column; gap: 12px; }
    .about-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 180px); }
    .about-trust { padding: 64px 24px; }
    .about-trust-big { font-size: 80px; }
  }

/* ─── SKIP LINK (WCAG 2.4.1) ─── */
  .skip-link {
    position: absolute;
    top: -100%;
    left: 8px;
    z-index: 9999;
    background: var(--charcoal);
    color: var(--warm-white);
    padding: 12px 20px;
    font-family: var(--sans);
    font-size: 14px;
    letter-spacing: 0.08em;
    text-decoration: none;
    border: 2px solid var(--gold);
    transition: top 0.15s;
  }
  .skip-link:focus {
    top: 8px;
    outline: 3px solid var(--gold);
    outline-offset: 2px;
  }

  /* ─── GLOBAL FOCUS STYLES (WCAG 2.4.7, 2.4.11) ─── */
  :focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
  }
  /* Remove default for mouse users, keep for keyboard */
  :focus:not(:focus-visible) {
    outline: none;
  }
  /* Ensure focus never fully obscured by sticky nav */
  :focus-visible {
    scroll-margin-top: 96px;
  }
  /* Nav links */
  .nav-links a:focus-visible,
  .nav-cta:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
  }
  /* Buttons */
  .btn-primary:focus-visible,
  .btn-ghost:focus-visible,
  .form-submit:focus-visible,
  .step-next:focus-visible,
  .step-back:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
  }
  /* Treatment cards */
  .treatment-card:focus-visible,
  .treatment-photo-card:focus-visible,
  .condition-item:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
  }
  /* Form fields */
  .form-group input:focus-visible,
  .form-group select:focus-visible,
  .book-section .form-group input:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 1px;
    border-color: var(--gold);
  }
  /* Time slots & treatment options */
  .time-slot input:focus-visible + span,
  .treat-opt input:focus-visible + span,
  .treat-opt input:focus-visible + .voucher-box {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
  }

  /* ─── VIDEO PAUSE BUTTON (WCAG 2.2.2) ─── */
  .video-pause-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 50;
    background: rgba(26,26,24,0.7);
    border: 1px solid rgba(184,168,130,0.5);
    color: var(--gold-light);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    backdrop-filter: blur(4px);
  }
  .video-pause-btn:hover { background: rgba(26,26,24,0.9); }
  .video-pause-btn:focus {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
  }
  .video-pause-btn svg { width: 16px; height: 16px; pointer-events: none; }

  /* ─── MARQUEE PAUSE (WCAG 2.2.2) ─── */
  .marquee-wrap { position: relative; }
  .marquee-pause-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26,26,24,0.4);
    border: 1px solid rgba(26,26,24,0.3);
    color: var(--charcoal);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 10px;
    font-family: var(--sans);
  }
  .marquee-pause-btn:focus {
    outline: 3px solid var(--charcoal);
    outline-offset: 2px;
  }
  .marquee-wrap.paused .marquee-track { animation-play-state: paused; }

  /* ─── MINIMUM TOUCH TARGET SIZES (WCAG 2.5.8) ─── */
  .nav-links a {
    padding: 8px 4px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .nav-cta {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .condition-item {
    min-height: 44px;
  }
  .treatment-link,
  .tpc-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  /* Step indicators */
  .step-ind-num {
    min-width: 44px;
    min-height: 44px;
    width: 44px;
    height: 44px;
  }
  /* Time slots */
  .time-slot span {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ─── REDUCED MOTION (WCAG 2.3.3) ─── */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
    .marquee-track {
      animation: none !important;
    }
    .hero-video {
      display: none;
    }
    .hero-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--charcoal);
    }
    .reveal {
      opacity: 1 !important;
      transform: none !important;
      transition: none !important;
    }
    .tile-video { display: none; }
  }

  /* ── Dual submit buttons (all booking forms) ── */
  .bk-submit-row {
    display: flex; gap: 10px; margin-top: 8px; flex-wrap: wrap;
  }
  .bk-submit-email {
    flex: 1; min-width: 180px; padding: 17px 16px; min-height: 56px;
    background: var(--charcoal); color: var(--warm-white);
    font-family: var(--sans); font-size: 10px; letter-spacing: 0.14em;
    text-transform: uppercase; border: none; cursor: pointer;
    transition: background 0.25s; text-align: center; line-height: 1.4;
  }
  .bk-submit-email:hover { background: #333; }
  .bk-submit-email:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
  .bk-submit-wa {
    flex: 1; min-width: 180px; padding: 17px 16px; min-height: 56px;
    background: #25D366; color: #fff;
    font-family: var(--sans); font-size: 10px; letter-spacing: 0.14em;
    text-transform: uppercase; border: none; cursor: pointer;
    transition: background 0.25s; line-height: 1.4;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  }
  .bk-submit-wa:hover { background: #1ebe5d; }
  .bk-submit-wa:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
  .bk-submit-wa svg { width: 16px; height: 16px; flex-shrink: 0; }
  @media (max-width: 520px) {
    .bk-submit-row { flex-direction: column; }
  }



.ip-pill-nav {

.ip-pill:hover {

.ip-pill-cta {

.ip-pill-cta:hover {

.ip-pill { font-size: 10px; padding: 8px 16px; }
  }

.ip-header {

.ip-header-img {

.ip-header-overlay {

.ip-header-content {

.ip-breadcrumb {

.ip-breadcrumb a { color: rgba(250,250,248,0.45); text-decoration: none; }

.ip-breadcrumb a:hover { color: var(--gold); }

.ip-breadcrumb span { color: var(--gold); }

.ip-header-title {

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

.ip-header-sub {

.ip-intro {

.ip-intro-inner {

.ip-intro-body { font-size: 16px; line-height: 1.9; color: var(--mid); }

.ip-intro-body p { margin-bottom: 20px; }

.ip-intro-body p:last-child { margin-bottom: 0; }

.ip-intro-img {

.ip-intro-img img {

.ip-treatment {

.ip-treatment:nth-child(even) { background: var(--cream); }

.ip-treatment:nth-child(odd)  { background: var(--warm-white); }

.ip-treatment-inner {

.ip-treatment-inner.reverse { direction: rtl; }

.ip-treatment-inner.reverse > * { direction: ltr; }

.ip-treatment-img {

.ip-treatment-img img {

.ip-treatment-img:hover img { transform: scale(1.04); }

.ip-treatment-num {

.ip-treatment-tag {

.ip-treatment-title {

.ip-treatment-body {

.ip-points { display: flex; flex-direction: column; gap: 0; margin-bottom: 28px; }

.ip-point {

.ip-point:last-child { border-bottom: none; }

.ip-point-dot {

.ip-point-text { font-size: 14px; line-height: 1.65; color: var(--mid); }

.ip-point-text strong { display: block; font-size: 13px; font-weight: 400; color: var(--charcoal); margin-bottom: 2px; }

.ip-callout {

.ip-callout-label {

.ip-callout-text { font-size: 13px; line-height: 1.7; color: rgba(250,250,248,0.65); }

.ip-safety {

.ip-safety-inner { max-width: 900px; margin: 0 auto; text-align: center; }

.ip-safety-title {

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

.ip-safety-body { font-size: 15px; line-height: 1.85; color: rgba(250,250,248,0.6); margin-bottom: 40px; }

.ip-safety-grid {

.ip-safety-item {

.ip-safety-item-label {

.ip-safety-item-text { font-size: 13px; line-height: 1.7; color: rgba(250,250,248,0.55); }

.ip-safety-cta { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

.ip-intro-inner, .ip-treatment-inner { grid-template-columns: 1fr; gap: 40px; }

.ip-treatment-nav { padding: 0 16px; }

.ip-intro, .ip-treatment { padding: 64px 24px; }

.cond-concerns-grid {

.cond-concern-card {

.cond-concern-card:hover { transform: translateY(-3px); border-bottom-color: var(--gold); }

.cond-concern-num {

.cond-concern-card:hover .cond-concern-num { color: var(--gold-light); }

.cond-concern-tag { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }

.cond-concern-title { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--charcoal); margin-bottom: 12px; line-height: 1.2; }

.cond-concern-body { font-size: 13px; line-height: 1.7; color: var(--mid); margin-bottom: 20px; }

.cond-concern-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }

.cond-tag-pill {

.cond-section {

.cond-section:nth-child(even) { background: var(--cream); }

.cond-section:nth-child(odd)  { background: var(--warm-white); }

.cond-section-inner {

.cond-section-inner.reverse { direction: rtl; }

.cond-section-inner.reverse > * { direction: ltr; }

.cond-section-img {

.cond-section-img img {

.cond-section-img:hover img { transform: scale(1.04); }

.cond-section-num {

.cond-section-tag { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }

.cond-section-title { font-family: var(--serif); font-size: clamp(28px, 3vw, 44px); font-weight: 300; line-height: 1.15; color: var(--charcoal); margin-bottom: 20px; }

.cond-section-body { font-size: 15px; line-height: 1.85; color: var(--mid); margin-bottom: 28px; }

.cond-treatments { display: flex; flex-direction: column; gap: 0; margin-bottom: 28px; }

.cond-treatment-item {

.cond-treatment-item:last-child { border-bottom: none; }

.cond-treat-dot {

.cond-treat-content { }

.cond-treat-name { font-size: 14px; font-weight: 400; color: var(--charcoal); margin-bottom: 3px; }

.cond-treat-desc { font-size: 13px; line-height: 1.6; color: var(--mid); }

.cond-treat-link {

.cond-treat-link:hover { color: var(--charcoal); }

.cond-team-section {

.cond-team-inner { max-width: 1200px; margin: 0 auto; }

.cond-team-header { margin-bottom: 52px; }

.cond-team-grid {

.cond-team-card {

.cond-team-card:hover { background: rgba(255,255,255,0.07); }

.cond-team-photo {

.cond-team-photo img {

.cond-team-card:hover .cond-team-photo img {

.cond-team-photo-grad {

.cond-team-body { padding: 24px 28px 32px; }

.cond-team-name { font-family: var(--serif); font-size: 22px; font-weight: 300; color: var(--warm-white); margin-bottom: 4px; }

.cond-team-role { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }

.cond-team-bio { font-size: 13px; line-height: 1.7; color: rgba(250,250,248,0.55); }

.cond-team-quals { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 6px; }

.cond-team-qual {

.cond-cta-banner {

.cond-cta-banner-title {

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

.cond-cta-banner-body { font-size: 15px; line-height: 1.8; color: var(--mid); max-width: 520px; margin: 0 auto 36px; }

.cond-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.cond-section-inner, .cond-section-inner.reverse { grid-template-columns: 1fr; direction: ltr; gap: 40px; }

.tx-hero-img {

.tx-hero-overlay {

.tx-hero-content {

.tx-hero-tag {

.tx-hero-tag::before { content: ''; width: 20px; height: 1px; background: var(--gold); }

.tx-hero-title {

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

.tx-hero-sub {

.tx-hero-btns { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.tx-stats {

.tx-stats-inner {

.tx-stat:last-child { border-right: none; }

.tx-stat-val {

.tx-stat-label {

.tx-intro {

.tx-intro-inner {

.tx-intro-body { font-size: 15px; line-height: 1.9; color: var(--mid); }

.tx-intro-body p { margin-bottom: 20px; }

.tx-intro-body p:last-child { margin-bottom: 0; }

.tx-intro-img {

.tx-intro-img img {

.tx-how-inner { max-width: 1200px; margin: 0 auto; }

.tx-how-grid {

.tx-how-step {

.tx-how-step:last-child { border-right: none; }

.tx-how-step:hover { background: var(--warm-white); }

.tx-how-num {

.tx-how-step:hover .tx-how-num { color: var(--gold-light); }

.tx-how-title { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--charcoal); margin-bottom: 10px; }

.tx-how-body { font-size: 13px; line-height: 1.7; color: var(--mid); }

.tx-conditions {

.tx-conditions-inner { max-width: 1200px; margin: 0 auto; }

.tx-conditions-layout {

.tx-cond-list { display: flex; flex-direction: column; gap: 0; }

.tx-cond-item {

.tx-cond-item:last-child { border-bottom: none; }

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

.tx-expect-box {

.tx-expect-row {

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

.tx-expect-label { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); padding-top: 2px; }

.tx-expect-val { font-size: 14px; line-height: 1.65; color: var(--charcoal); }

.tx-faq-inner { max-width: 800px; margin: 0 auto; }

.tx-faq-list { margin-top: 52px; }

.tx-faq-item {

.tx-faq-item:first-child { border-top: 1px solid var(--border); }

.tx-faq-q {

.tx-faq-q:hover { color: var(--gold); }

.tx-faq-icon {

.tx-faq-item.open .tx-faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--warm-white); border-color: var(--gold); }

.tx-faq-a {

.tx-faq-item.open .tx-faq-a { max-height: 400px; }

.tx-faq-a-inner { padding: 0 0 24px; font-size: 14px; line-height: 1.8; color: var(--mid); }

.tx-faq-a-inner p { margin-bottom: 12px; }

.tx-faq-a-inner p:last-child { margin-bottom: 0; }

.tx-crosssell {

.tx-crosssell-inner { max-width: 1200px; margin: 0 auto; }

.tx-crosssell-grid {

.tx-cs-card {

.tx-cs-card:hover { background: rgba(255,255,255,0.08); }

.tx-cs-img {

.tx-cs-img img {

.tx-cs-card:hover .tx-cs-img img { transform: scale(1.05); filter: grayscale(0%); }

.tx-cs-img-grad {

.tx-cs-body { padding: 24px 28px 32px; }

.tx-cs-tag { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }

.tx-cs-name { font-family: var(--serif); font-size: 22px; font-weight: 300; color: var(--warm-white); margin-bottom: 10px; line-height: 1.2; }

.tx-cs-desc { font-size: 13px; line-height: 1.65; color: rgba(250,250,248,0.5); margin-bottom: 20px; }

.tx-cs-link {

.tx-cs-card:hover .tx-cs-link { gap: 14px; }

.tx-safety-note {

.tx-safety-note-inner {

.tx-safety-icon { flex-shrink: 0; color: var(--gold); }

.tx-safety-text { font-size: 12px; line-height: 1.7; color: rgba(250,250,248,0.45); }

.tx-safety-text strong { color: rgba(250,250,248,0.7); font-weight: 400; }

.tx-stat:nth-child(3) { border-right: none; }

.tx-intro-inner, .tx-conditions-layout { grid-template-columns: 1fr; gap: 40px; }

.tx-hero { margin-top: 64px; min-height: 50vh; }

.tx-stat:nth-child(2n) { border-right: none; }

.tx-stat:nth-child(5) { grid-column: span 2; border-right: none; }

.tx-intro, .tx-how, .tx-conditions, .tx-faq, .tx-crosssell { padding: 64px 24px; }

.bk-page-hero {

.bk-page-hero::before {

.bk-hero-inner {

.bk-hero-eyebrow {

.bk-hero-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold); }

.bk-hero-eyebrow span { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-family: var(--sans); }

.bk-page-title {

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

.bk-page-sub {

.bk-trust-row {

.bk-trust-badge {

.bk-trust-badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

.bk-page-main {

.bk-page-inner {

.bk-treatment-tag {

.bk-treatment-tag.visible { display: flex; }

.bk-treatment-tag-label { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); flex-shrink: 0; }

.bk-treatment-tag-name {

.bk-treatment-tag-clear {

.bk-treatment-tag-clear:hover { color: var(--warm-white); }

.bk-section-label {

.bk-interests-grid {

.bk-interest-opt input[type="radio"] {

.bk-interest-card:hover { border-color: var(--gold-light); }

.bk-interest-opt input:focus-visible + .bk-interest-card {

.bk-interest-card::after {

.bk-interest-opt input:checked + .bk-interest-card::after { opacity: 1; }

.bk-interest-icon { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }

.bk-interest-opt input:checked + .bk-interest-card .bk-interest-icon { color: var(--gold-light); }

.bk-interest-opt input:checked + .bk-interest-card .bk-interest-sub { color: rgba(250,250,248,0.5); }

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

.bk-form-group { margin-bottom: 20px; }

.bk-form-group label {

.bk-input:focus-visible { outline: none; border-color: var(--gold); }

textarea.bk-input {

textarea.bk-input:focus { border-color: var(--gold); }

.bk-time-grid {

.bk-slot input:focus-visible + span { outline: 3px solid var(--gold); outline-offset: 2px; }

.bk-submit {

.bk-submit:hover { background: var(--gold); }

.bk-submit:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.bk-consent {

.bk-success {

.bk-success.visible { display: block; }

.bk-success-check {

.bk-sidebar {

.bk-clinic-card {

.bk-clinic-logo {

.bk-clinic-logo span { font-weight: 500; }

.bk-info-block { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(184,168,130,0.12); }

.bk-info-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.bk-info-label {

.bk-info-val { font-size: 13px; line-height: 1.75; color: rgba(250,250,248,0.65); }

.bk-info-val strong { display: block; font-family: var(--serif); font-size: 18px; font-weight: 300; color: var(--warm-white); margin-bottom: 2px; }

.bk-phone {

.bk-phone:hover { color: var(--warm-white); }

.bk-wa-link {

.bk-wa-link:hover { opacity: 0.8; }

.bk-hours { display: flex; flex-direction: column; gap: 0; }

.bk-hours-row {

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

.bk-hours-day { color: rgba(250,250,248,0.5); }

.bk-hours-time { color: var(--warm-white); }

.bk-maps-link {

.bk-maps-link:hover { color: var(--warm-white); }

.bk-map-preview {

.bk-map-preview iframe {

.bk-map-preview:hover iframe { filter: grayscale(0%); }

.bk-required-note { font-size: 11px; color: var(--mid); margin-bottom: 28px; }

.bk-treat-panel {

.bk-treat-panel.visible { display: block; }

.bk-treat-panel-label {

.bk-treat-chips {

.bk-treat-chip {

.bk-treat-chip:hover { border-color: var(--gold); color: var(--charcoal); }

.bk-treat-chip.selected {

.bk-treat-chip:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

@media (max-width: 600px) {

.bk-submit-email, .bk-submit-wa { min-width: 0; }
  }

.fu-hero-img {

.fu-hero-overlay {

.fu-hero-content {

.fu-main-inner {

.fu-map-wrap {

.fu-map-wrap iframe {

.fu-map-wrap:hover iframe { filter: grayscale(0%) contrast(1); }

.fu-details {

.fu-details-logo {

.fu-details-logo span { font-weight: 500; }

.fu-detail-block { margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(184,168,130,0.12); }

.fu-detail-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.fu-detail-label {

.fu-detail-label svg { width: 12px; height: 12px; flex-shrink: 0; }

.fu-detail-val {

.fu-detail-val strong { display: block; font-family: var(--serif); font-size: 20px; font-weight: 300; color: var(--warm-white); margin-bottom: 4px; }

.fu-detail-phone {

.fu-detail-phone:hover { color: var(--warm-white); }

.fu-detail-wa {

.fu-detail-wa:hover { opacity: 0.8; }

.fu-hours-table { display: flex; flex-direction: column; gap: 0; }

.fu-hours-row {

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

.fu-hours-day { color: rgba(250,250,248,0.6); }

.fu-hours-time { color: var(--warm-white); font-weight: 300; }

.fu-hours-row.today .fu-hours-day { color: var(--gold); }

.fu-hours-row.today .fu-hours-time { color: var(--gold); }

.fu-maps-btn {

.fu-maps-btn svg { width: 14px; height: 14px; }

.fu-maps-btn:hover { color: var(--warm-white); }

.fu-directions {

.fu-directions-inner { max-width: 1200px; margin: 0 auto; }

.fu-dir-grid {

.fu-dir-card {

.fu-dir-card:hover { transform: translateY(-3px); }

.fu-dir-card::after {

.fu-dir-card:hover::after { transform: scaleX(1); }

.fu-dir-icon {

.fu-dir-card:hover .fu-dir-icon { background: var(--charcoal); border-color: var(--charcoal); }

.fu-dir-icon svg { width: 20px; height: 20px; color: var(--gold); }

.fu-dir-title { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--charcoal); margin-bottom: 10px; }

.fu-dir-body { font-size: 13px; line-height: 1.75; color: var(--mid); }

.fu-dir-body strong { display: block; color: var(--charcoal); font-weight: 400; margin-bottom: 2px; margin-top: 10px; }

.fu-dir-body strong:first-child { margin-top: 0; }

.fu-why-inner {

.fu-why-body { font-size: 15px; line-height: 1.9; color: rgba(250,250,248,0.6); }

.fu-why-body p { margin-bottom: 20px; }

.fu-why-body p:last-child { margin-bottom: 0; }

.fu-why-highlights {

.fu-why-highlight {

.fu-why-highlight:last-child { border-bottom: none; }

.fu-why-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 6px; }

.fu-why-text { font-size: 14px; line-height: 1.65; color: rgba(250,250,248,0.6); }

.fu-why-text strong { display: block; font-size: 14px; font-weight: 400; color: var(--warm-white); margin-bottom: 2px; }

.fu-why-visual {

.fu-vis-img { position: relative; overflow: hidden; }

.fu-vis-img.tall { grid-row: span 2; }

.fu-vis-img img {

.fu-vis-img:hover img { transform: scale(1.05); filter: grayscale(0%); }

.fu-cta-inner { max-width: 700px; margin: 0 auto; }

.fu-cta-title {

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

.fu-cta-body { font-size: 15px; line-height: 1.85; color: var(--mid); margin-bottom: 40px; }

.fu-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.fu-clinical-note {

.fu-clinical-note strong { color: var(--charcoal); font-weight: 400; }

.fu-hero { margin-top: 64px; min-height: 44vh; }

.fu-why { padding: 64px 24px; }

.fu-cta { padding: 64px 24px; }

.meno-header {

.meno-header-img {

.meno-header-overlay {

.meno-header-content {

.meno-header-kicker {

.meno-header-kicker::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

.meno-symptom-ticker {

.meno-symptom {

.meno-journey {

.meno-journey-inner {

.meno-steps-grid {

.meno-step {

.meno-step:last-child { border-right: none; }

.meno-step:hover { background: rgba(255,255,255,0.03); }

.meno-step-num {

.meno-step-title {

.meno-step-body {

.meno-step-tag {

.meno-symptoms {

.meno-symptoms-inner { max-width: 1200px; margin: 0 auto; }

.meno-symptoms-layout {

.meno-sym-group { margin-bottom: 40px; }

.meno-sym-group:last-child { margin-bottom: 0; }

.meno-sym-group-label {

.meno-sym-group-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.meno-sym-list { display: flex; flex-direction: column; gap: 0; }

.meno-sym-item {

.meno-sym-item:last-child { border-bottom: none; }

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

.meno-sym-visual {

.meno-sym-visual img {

.meno-sym-visual-card {

.meno-sym-visual-card p {

.meno-sym-visual-card cite {

.meno-testing {

.meno-testing-inner { max-width: 1200px; margin: 0 auto; }

.meno-testing-grid {

.meno-test-card {

.meno-test-card:hover { border-bottom-color: var(--gold); transform: translateY(-3px); }

.meno-test-icon {

.meno-test-icon svg { width: 20px; height: 20px; color: var(--gold); }

.meno-test-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }

.meno-test-title { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--charcoal); margin-bottom: 12px; }

.meno-test-body { font-size: 13px; line-height: 1.7; color: var(--mid); }

.meno-specialists {

.meno-specialists-inner { max-width: 1200px; margin: 0 auto; }

.meno-specialists-grid {

.meno-spec-card {

.meno-spec-card:hover { background: rgba(255,255,255,0.06); }

.meno-spec-photo {

.meno-spec-photo img {

.meno-spec-card:hover .meno-spec-photo img { filter: grayscale(0%); transform: scale(1.04); }

.meno-spec-body { padding: 40px 36px; display: flex; flex-direction: column; }

.meno-spec-name { font-family: var(--serif); font-size: 26px; font-weight: 300; color: var(--warm-white); margin-bottom: 4px; }

.meno-spec-role { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }

.meno-spec-quals {

.meno-spec-qual {

.meno-spec-bio { font-size: 13px; line-height: 1.75; color: rgba(250,250,248,0.55); flex: 1; }

.meno-spec-link {

.meno-spec-link:hover { gap: 14px; }

.meno-cta {

.meno-cta::before {

.meno-cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }

.meno-cta-note {

.meno-cta-note::before { content: ''; width: 24px; height: 1px; background: var(--gold); }

.meno-cta-note::after  { content: ''; width: 24px; height: 1px; background: var(--gold); }

.meno-cta-title {

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

.meno-cta-body { font-size: 15px; line-height: 1.85; color: var(--mid); margin-bottom: 40px; }

.meno-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.meno-clinical-note {

.meno-clinical-note strong { color: var(--charcoal); font-weight: 400; }

.tz-header {

.tz-header-inner { max-width: 1200px; margin: 0 auto; }

.tz-title {

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

.tz-subtitle {

.tz-subtitle em { color: var(--charcoal); font-style: normal; font-weight: 400; }

.tz-count {

.tz-count::before { content: ''; width: 24px; height: 1px; background: var(--gold); }

.az-nav::-webkit-scrollbar { display: none; }

.az-nav-letter {

.az-nav-letter:hover { background: var(--charcoal); color: var(--warm-white); }

.az-nav-letter.inactive { color: var(--border); pointer-events: none; }

.az-directory {

.az-directory-inner { max-width: 1200px; margin: 0 auto; }

.az-group {

.az-group:last-child { border-bottom: none; }

.az-group-letter {

.az-group:hover .az-group-letter { color: var(--gold-light); }

.az-group-items { border-left: 1px solid var(--border); }

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

.az-row:hover { background: var(--cream); }

.az-row-name {

.az-row-cat {

.az-row-desc {

.az-row-actions {

.az-row-learn {

.az-row-learn:hover { color: var(--charcoal); }

.az-row-book {

.az-row-book:hover { background: var(--gold); }

.vid-statement {

.vid-statement-bg {

.vid-statement-overlay {

.vid-statement-content {

.vid-statement-title {

.vid-statement-body {

.vid-statement-actions { display: flex; align-items: center; gap: 28px; }

.vid-play-btn {

.vid-play-btn:hover { transform: scale(1.06); }

.vid-play-ring {

.vid-play-btn svg {

.vid-play-btn:hover svg { background: var(--warm-white); }

.vid-play-btn span { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light); font-family: var(--sans); }

.az-row { grid-template-columns: 1fr 140px; grid-template-rows: auto auto; gap: 6px 16px; }

.az-nav { top: 64px; }