
    /* ─── TOKENS ───────────────────────────────────────────── */
    :root {
      --navy:      #0B2240;
      --navy-mid:  #122d52;
      --navy-deep: #081828;
      --teal:      #0D9E8F;
      --teal-lt:   #E3F6F4;
      --teal-mid:  #0bb8a7;
      --white:     #FAFCFD;
      --offwhite:  #F2F7F7;
      --muted:     #6B8090;
      --border:    rgba(11,34,64,.10);

      --serif: 'Barlow', system-ui, sans-serif;
      --sans:  'DM Sans', system-ui, sans-serif;

      --ease-out: cubic-bezier(0.22,1,0.36,1);
      --radius: 12px;
    }

    /* ─── RESET ────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: var(--sans);
      background: var(--white);
      color: var(--navy);
      line-height: 1.6;
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button { cursor: pointer; border: none; background: none; font: inherit; }

    /* ─── UTILITY ───────────────────────────────────────────── */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .section { padding: 96px 0; }
    .section--sm { padding: 64px 0; }
    .label {
      font-size: 11px; font-weight: 600; letter-spacing: .14em;
      text-transform: uppercase; color: var(--teal);
    }
    .h1 { font-family: var(--serif); font-size: clamp(2.8rem,5vw,5rem); font-weight: 800; line-height: 1.05; letter-spacing: -.01em; }
    .h2 { font-family: var(--serif); font-size: clamp(1.9rem,3.2vw,3rem); font-weight: 700; line-height: 1.12; letter-spacing: -.01em; }
    .h3 { font-family: var(--serif); font-size: clamp(1.2rem,2vw,1.6rem); font-weight: 600; line-height: 1.25; }
    .body-lg { font-size: 1.1rem; line-height: 1.7; color: #3a5068; }
    .body-md { font-size: 0.95rem; line-height: 1.7; color: #4a6278; }

    /* ─── BUTTONS ───────────────────────────────────────────── */
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 28px; border-radius: 50px;
      font-family: var(--sans); font-size: 0.9rem; font-weight: 600;
      letter-spacing: .02em; transition: all .25s var(--ease-out);
    }
    .btn-primary {
      background: var(--teal); color: #fff;
      box-shadow: 0 4px 20px rgba(13,158,143,.3);
    }
    .btn-primary:hover {
      background: var(--teal-mid);
      box-shadow: 0 6px 28px rgba(13,158,143,.45);
      transform: translateY(-1px);
    }
    .btn-outline {
      background: transparent; color: var(--navy);
      border: 1.5px solid var(--border);
    }
    .btn-outline:hover {
      border-color: var(--teal); color: var(--teal);
      background: var(--teal-lt);
    }
    .btn-outline-white {
      background: transparent; color: #fff;
      border: 1.5px solid rgba(255,255,255,.35);
    }
    .btn-outline-white:hover {
      background: rgba(255,255,255,.12);
      border-color: rgba(255,255,255,.6);
    }

    /* ─── SCROLL REVEAL ─────────────────────────────────────── */
    .reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
    }
    .reveal.in { opacity: 1; transform: none; }
    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .2s; }
    .reveal-delay-3 { transition-delay: .3s; }
    .reveal-delay-4 { transition-delay: .4s; }

    /* ═══════════════════════════════════════════════════════════
       NAV
    ════════════════════════════════════════════════════════════ */
    #nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      transition: background .3s, box-shadow .3s;
    }
    #nav.scrolled {
      background: var(--navy);
      box-shadow: 0 2px 24px rgba(0,0,0,.18);
    }
    .emergency-bar {
      background: var(--teal);
      padding: 8px 0;
      text-align: center;
      font-size: 0.8rem;
      font-weight: 600;
      color: #fff;
      letter-spacing: .04em;
      transition: opacity .3s;
    }
    #nav.scrolled .emergency-bar { display: none; }
    .emergency-bar a { color: #fff; text-decoration: underline; }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 32px; height: 68px;
    }
    .nav-logo img { height: 36px; }
    .nav-links {
      display: flex; align-items: center; gap: 4px; list-style: none;
    }
    .nav-links > li { position: relative; }
    .nav-links > li > a {
      padding: 8px 14px; border-radius: 8px;
      font-size: 0.88rem; font-weight: 500;
      color: rgba(255,255,255,.82);
      transition: color .2s, background .2s;
    }
    .nav-links > li > a:hover { color: #fff; background: rgba(255,255,255,.08); }
    /* dropdown */
    .dropdown {
      position: absolute; top: 100%; left: 0;
      padding-top: 10px; /* bridge gap so mouse stays in hover zone */
      min-width: 220px;
      opacity: 0; pointer-events: none; transform: translateY(4px);
      transition: all .2s var(--ease-out);
    }
    .dropdown-inner {
      background: var(--white); border-radius: var(--radius);
      box-shadow: 0 12px 48px rgba(0,0,0,.14);
      padding: 8px;
    }
    .nav-links > li:hover .dropdown {
      opacity: 1; pointer-events: auto; transform: none;
    }
    .dropdown a {
      display: block; padding: 10px 14px; border-radius: 8px;
      font-size: 0.875rem; color: var(--navy); font-weight: 500;
      transition: background .15s, color .15s;
    }
    .dropdown a:hover { background: var(--teal-lt); color: var(--teal); }
    .nav-cta { margin-left: 12px; }
    .nav-hamburger {
      display: none; flex-direction: column; gap: 5px;
      padding: 8px; cursor: pointer;
    }
    .nav-hamburger span {
      display: block; width: 22px; height: 2px;
      background: #fff; border-radius: 2px;
      transition: all .25s;
    }
    @media(max-width:900px) {
      .nav-links, .nav-cta { display: none; }
      .nav-hamburger { display: flex; }
    }

    /* mobile nav */
    #mobile-nav {
      position: fixed; inset: 0; z-index: 101;
      background: var(--navy);
      display: flex; flex-direction: column; justify-content: flex-start;
      padding: 32px;
      overflow-y: auto;
      opacity: 0; pointer-events: none;
      transition: opacity .3s;
    }
    #mobile-nav.open { opacity: 1; pointer-events: auto; }
    /* ── Mobile nav accordion ── */
    .mn-group { border-bottom: 1px solid rgba(255,255,255,.08); }
    .mn-toggle {
      width: 100%; display: flex; justify-content: space-between; align-items: center;
      background: none; border: none; color: rgba(255,255,255,.85);
      font-family: var(--serif); font-size: 1.8rem; font-weight: 400;
      padding: 10px 0; cursor: pointer; text-align: left;
      transition: color .2s;
    }
    .mn-toggle:hover { color: var(--teal); }
    .mn-arrow {
      font-size: 1.4rem; transition: transform .25s; display: inline-block;
      color: rgba(255,255,255,.4);
    }
    .mn-group.open .mn-arrow { transform: rotate(90deg); color: var(--teal); }
    .mn-sub {
      display: none; flex-direction: column; padding: 4px 0 12px 16px;
    }
    .mn-group.open .mn-sub { display: flex; }
    .mn-sub a {
      font-family: var(--sans); font-size: 1.1rem;
      color: rgba(255,255,255,.7); padding: 8px 0;
      border-bottom: 1px solid rgba(255,255,255,.05);
      transition: color .2s;
    }
    .mn-sub a:hover { color: var(--teal); }

    #mobile-nav a {
      font-family: var(--serif); font-size: 1.8rem; color: rgba(255,255,255,.85);
      padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08);
      transition: color .2s;
    }
    #mobile-nav a:hover { color: var(--teal); }
    #mobile-nav .mobile-cta { margin-top: 32px; }
    #mobile-close {
      position: absolute; top: 24px; right: 24px;
      font-size: 1.8rem; color: #fff; cursor: pointer;
    }

    /* ═══════════════════════════════════════════════════════════
       HERO
    ════════════════════════════════════════════════════════════ */
    #hero {
      position: relative; min-height: 100svh;
      display: flex; align-items: center;
      background: var(--navy-deep);
      overflow: hidden;
    }
    .hero-video-bg {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, #081828 0%, #0D2040 40%, #0a2a35 100%);
      overflow: hidden;
    }
    /* animated teal shimmer placeholder */
    .hero-video-bg::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 60% 80% at 70% 50%, rgba(13,158,143,.18) 0%, transparent 65%),
        radial-gradient(ellipse 40% 60% at 20% 80%, rgba(13,158,143,.1) 0%, transparent 60%);
      animation: shimmer 8s ease-in-out infinite alternate;
    }
    @keyframes shimmer {
      from { opacity: .6; transform: scale(1); }
      to   { opacity: 1; transform: scale(1.06); }
    }
    /* video placeholder label */
    .video-placeholder-label {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      color: rgba(255,255,255,.06);
      font-family: var(--sans); font-size: 0.75rem;
      letter-spacing: .2em; text-transform: uppercase;
      text-align: center; pointer-events: none;
      white-space: nowrap;
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background: rgba(8,24,40,.55);
    }
    .hero-content {
      position: relative; z-index: 2;
      padding: 120px 0 80px;
    }
    .hero-logo {
      margin-bottom: 32px;
    }
    .hero-logo img { height: 56px; }
    .hero-stars {
      display: flex; align-items: center; gap: 10px;
      margin-bottom: 28px; justify-content: center;
    }
    .hero-stars-dots {
      display: flex; gap: 3px;
    }
    .hero-stars-dots span {
      width: 14px; height: 14px; border-radius: 50%;
      background: var(--teal); opacity: .9;
    }
    .hero-stars-text {
      font-size: 0.82rem; font-weight: 500;
      color: rgba(255,255,255,.7); letter-spacing: .04em;
    }
    .hero-stars-text strong { color: #fff; }
    .hero-heading {
      font-family: var(--serif); font-size: clamp(2rem,3.5vw,3.5rem);
      font-weight: 800; line-height: 1.2; color: #fff;
      letter-spacing: -.01em; padding-bottom: 0; overflow: visible;
    }
    .hero-sub {
      margin-top: 32px !important;
    }
    .hero-heading em { color: var(--teal); font-style: normal; }
    .hero-sub {
      font-size: 1.05rem; line-height: 1.7; max-width: 540px;
      color: rgba(255,255,255,.72); margin-bottom: 40px;
    }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 64px; }
    .hero-trust {
      display: flex; gap: 28px; flex-wrap: wrap;
    }
    .hero-trust-item {
      display: flex; flex-direction: column;
    }
    .hero-trust-item strong {
      font-family: var(--serif); font-size: 2rem; font-weight: 500;
      color: #fff; line-height: 1;
    }
    .hero-trust-item span {
      font-size: 0.78rem; color: rgba(255,255,255,.55); letter-spacing: .04em;
      text-transform: uppercase; margin-top: 4px;
    }
    .hero-divider {
      width: 1px; background: rgba(255,255,255,.12); align-self: stretch;
    }
    .hero-scroll-hint {
      position: absolute; bottom: 32px; left: 50%;
      transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      color: rgba(255,255,255,.35); font-size: 0.72rem; letter-spacing: .12em; text-transform: uppercase;
      animation: bounce 2s infinite;
    }
    .hero-scroll-hint::after {
      content: '↓'; font-size: 1rem;
    }
    @keyframes bounce {
      0%,100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(6px); }
    }

    /* ═══════════════════════════════════════════════════════════
       TRUST STRIP
    ════════════════════════════════════════════════════════════ */
    #trust-strip {
      background: var(--navy);
      padding: 20px 0;
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .trust-strip-inner {
      display: flex; align-items: center; justify-content: center;
      flex-wrap: wrap; gap: 32px;
    }
    .trust-pill {
      display: flex; align-items: center; gap: 10px;
      color: rgba(255,255,255,.75); font-size: 0.85rem;
    }
    .trust-pill-icon {
      width: 32px; height: 32px; border-radius: 8px;
      background: rgba(13,158,143,.2);
      display: flex; align-items: center; justify-content: center;
      color: var(--teal); font-size: 1rem;
    }
    .trust-sep { width: 1px; height: 24px; background: rgba(255,255,255,.1); }

    /* ═══════════════════════════════════════════════════════════
       INTRO / ABOUT
    ════════════════════════════════════════════════════════════ */
    #intro {
      padding: 100px 0;
      background: var(--white);
    }
    .intro-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }
    .intro-img-wrap {
      position: relative;
    }
    .intro-img {
      width: 100%; aspect-ratio: 4/5; object-fit: cover;
      border-radius: 16px;
    }
    .intro-img-placeholder {
      width: 100%; aspect-ratio: 4/5;
      border-radius: 16px;
      background: var(--offwhite);
      display: flex; align-items: center; justify-content: center;
      flex-direction: column; gap: 12px;
      color: var(--muted); font-size: 0.8rem; letter-spacing: .08em; text-transform: uppercase;
      border: 2px dashed var(--border);
      font-family: monospace;
    }
    .intro-badge {
      position: absolute; bottom: -20px; right: -20px;
      background: var(--teal); color: #fff;
      padding: 20px 24px; border-radius: 14px;
      box-shadow: 0 8px 32px rgba(13,158,143,.4);
      text-align: center;
    }
    .intro-badge strong {
      display: block; font-family: var(--serif);
      font-size: 2.2rem; font-weight: 500; line-height: 1;
    }
    .intro-badge span { font-size: 0.75rem; opacity: .85; margin-top: 4px; display: block; }
    .intro-text { padding: 12px 0; }
    .intro-text .label { margin-bottom: 16px; }
    .intro-text .h2 { margin-bottom: 24px; }
    .intro-text .body-lg { margin-bottom: 28px; }
    .intro-features { list-style: none; margin-bottom: 36px; }
    .intro-features li {
      display: flex; align-items: flex-start; gap: 12px;
      padding: 10px 0; border-bottom: 1px solid var(--border);
      font-size: 0.92rem; color: #3a5068;
    }
    .intro-features li::before {
      content: ''; flex-shrink: 0;
      width: 18px; height: 18px; border-radius: 50%;
      background: var(--teal-lt);
      border: 2px solid var(--teal);
      margin-top: 2px;
    }
    @media(max-width:768px) {
      .intro-grid { grid-template-columns: 1fr; gap: 48px; }
      .intro-badge { right: 0; bottom: -16px; }
    }

    /* ═══════════════════════════════════════════════════════════
       TECH PILLARS
    ════════════════════════════════════════════════════════════ */
    #tech {
      background: var(--navy);
      padding: 100px 0;
      position: relative; overflow: hidden;
    }
    #tech::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(13,158,143,.08) 0%, transparent 65%);
    }
    .tech-header { text-align: center; margin-bottom: 64px; }
    .tech-header .label { color: var(--teal); margin-bottom: 16px; }
    .tech-header .h2 { color: #fff; margin-bottom: 16px; }
    .tech-header .body-lg { color: rgba(255,255,255,.6); max-width: 560px; margin: 0 auto; }
    .tech-grid {
      display: grid; grid-template-columns: repeat(3,1fr);
      gap: 24px;
    }
    .tech-card {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 16px; padding: 36px 32px;
      transition: border-color .3s, background .3s, transform .3s var(--ease-out);
    }
    .tech-card:hover {
      border-color: rgba(13,158,143,.4);
      background: rgba(13,158,143,.06);
      transform: translateY(-4px);
    }
    .tech-icon {
      width: 52px; height: 52px; border-radius: 14px;
      background: rgba(13,158,143,.15);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem; margin-bottom: 24px;
      border: 1px solid rgba(13,158,143,.25);
    }
    .tech-card h3 {
      font-family: var(--serif); font-size: 1.2rem;
      color: #fff; margin-bottom: 12px; font-weight: 700; letter-spacing: -.01em;
    }
    .tech-card p { font-size: 0.9rem; color: rgba(255,255,255,.55); line-height: 1.7; }
    @media(max-width:768px) {
      .tech-grid { grid-template-columns: 1fr; }
    }

    /* ═══════════════════════════════════════════════════════════
       SERVICES
    ════════════════════════════════════════════════════════════ */
    #services { background: var(--offwhite); padding: 100px 0; }
    .services-header { margin-bottom: 56px; }
    .services-header .label { margin-bottom: 14px; }
    .services-header .h2 { margin-bottom: 0; }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 20px;
    }
    .service-card {
      background: var(--white); border-radius: 16px;
      border: 1px solid var(--border);
      overflow: hidden;
      transition: box-shadow .3s, transform .3s var(--ease-out), border-color .3s;
    }
    .service-card:hover {
      box-shadow: 0 12px 40px rgba(11,34,64,.1);
      transform: translateY(-3px);
      border-color: var(--teal);
    }
    .service-card.featured {
      border: 2px solid var(--teal);
      box-shadow: 0 12px 40px rgba(13,158,143,.15);
    }
    .service-card.featured .service-tile {
      background:
        radial-gradient(ellipse at 30% 20%, rgba(13,158,143,.18) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 100%, rgba(13,158,143,.12) 0%, transparent 60%),
        linear-gradient(180deg, #f3faf8 0%, #ffffff 100%);
    }
    .service-card.featured .service-tile svg { color: var(--teal); }
    .featured-badge {
      position: absolute; top: 16px; right: 16px; z-index: 3;
      background: var(--teal); color: #fff;
      font-size: 0.62rem; font-weight: 700;
      letter-spacing: .14em; text-transform: uppercase;
      padding: 6px 11px; border-radius: 3px;
      font-family: var(--sans);
    }
    .service-tile {
      position: relative;
      height: 200px;
      background:
        radial-gradient(ellipse at 30% 25%, rgba(13,158,143,.09) 0%, transparent 55%),
        linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
      display: flex; align-items: center; justify-content: center;
    }
    .service-tile::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(to right, rgba(11,34,64,.035) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(11,34,64,.035) 1px, transparent 1px);
      background-size: 32px 32px;
      background-position: -1px -1px;
      mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
      -webkit-mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
      pointer-events: none;
    }
    .service-tile svg {
      width: 72px; height: 72px;
      color: var(--teal);
      stroke-width: 1.25;
      position: relative; z-index: 1;
      transition: transform .4s var(--ease-out);
    }
    .service-card:hover .service-tile svg { transform: scale(1.06); }
    .service-code {
      position: absolute; top: 16px; left: 16px; z-index: 2;
      font-family: var(--sans);
      font-size: 0.64rem;
      font-weight: 600;
      letter-spacing: .16em;
      color: var(--muted);
      text-transform: uppercase;
      display: flex; align-items: center; gap: 8px;
    }
    .service-code::before {
      content: '';
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--teal);
      opacity: .7;
    }
    .service-card.featured .service-code { color: var(--teal); }
    .service-card.featured .service-code::before { opacity: 1; }
    .service-corner {
      position: absolute; bottom: 14px; right: 16px; z-index: 2;
      font-family: var(--sans);
      font-size: 0.62rem;
      font-weight: 500;
      letter-spacing: .14em;
      color: var(--muted);
      opacity: .55;
      text-transform: uppercase;
    }
    .service-body { padding: 24px; }
    .service-tag {
      font-size: 0.72rem; font-weight: 600; letter-spacing: .1em;
      text-transform: uppercase; color: var(--teal);
      margin-bottom: 8px;
    }
    .service-body h3 {
      font-family: var(--serif); font-size: 1.3rem;
      margin-bottom: 10px; font-weight: 500;
    }
    .service-body p { font-size: 0.88rem; color: #4a6278; line-height: 1.65; margin-bottom: 18px; }
    .service-link {
      font-size: 0.84rem; font-weight: 600; color: var(--teal);
      display: inline-flex; align-items: center; gap: 6px;
      transition: gap .2s;
    }
    .service-card:hover .service-link { gap: 10px; }
    @media(max-width:900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
    @media(max-width:580px) { .services-grid { grid-template-columns: 1fr; } }

    /* ═══════════════════════════════════════════════════════════
       DR JAY
    ════════════════════════════════════════════════════════════ */
    #drjay { background: var(--white); padding: 100px 0; }
    .drjay-grid {
      display: grid; grid-template-columns: 1fr 1.1fr;
      gap: 80px; align-items: center;
    }
    .drjay-text .label { margin-bottom: 16px; }
    .drjay-text .h2 { margin-bottom: 8px; }
    .drjay-title {
      font-family: var(--serif); font-size: 1rem;
      color: var(--teal); font-style: normal; font-weight: 500;
      letter-spacing: .06em; text-transform: uppercase;
      margin-bottom: 24px;
    }
    .drjay-text .body-lg { margin-bottom: 28px; }
    .drjay-creds {
      display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px;
    }
    .drjay-cred {
      display: flex; align-items: center; gap: 12px;
      font-size: 0.88rem; color: #3a5068;
    }
    .drjay-cred::before {
      content: ''; flex-shrink: 0;
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--teal);
    }
    .drjay-img-wrap { position: relative; }
    .drjay-img {
      width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top;
      border-radius: 16px;
    }
    .drjay-quote-card {
      position: absolute; bottom: -20px; left: -20px;
      background: var(--navy); color: #fff;
      padding: 24px 28px; border-radius: 14px;
      max-width: 280px;
      box-shadow: 0 8px 40px rgba(0,0,0,.2);
    }
    .drjay-quote-card p {
      font-family: var(--sans); font-size: 0.95rem;
      font-style: italic; line-height: 1.55;
      color: rgba(255,255,255,.85);
    }
    .drjay-quote-card cite {
      display: block; margin-top: 12px;
      font-size: 0.75rem; color: var(--teal);
      letter-spacing: .06em; text-transform: uppercase; font-style: normal;
    }
    @media(max-width:768px) {
      .drjay-grid { grid-template-columns: 1fr; gap: 48px; }
      .drjay-quote-card { left: 0; }
    }

    /* ═══════════════════════════════════════════════════════════
       BEFORE / AFTER
    ════════════════════════════════════════════════════════════ */
    #before-after {
      background: var(--navy);
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }
    #before-after::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 50% 70% at 20% 60%, rgba(13,158,143,.1) 0%, transparent 60%);
      pointer-events: none;
    }
    .ba-head {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 64px;
      position: relative; z-index: 1;
    }
    .ba-head .label { color: var(--teal); margin-bottom: 14px; }
    .ba-head .h2 { color: #fff; margin-bottom: 14px; }
    .ba-head p { color: rgba(255,255,255,.6); font-size: 0.95rem; }

    .ba-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      max-width: 1160px;
      margin: 0 auto;
      position: relative; z-index: 1;
    }
    .ba-card {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 14px;
      overflow: hidden;
      transition: transform .4s var(--ease-out), border-color .3s;
    }
    .ba-card:hover {
      transform: translateY(-4px);
      border-color: var(--teal);
    }
    .ba-pair {
      display: flex;
      flex-direction: column;
      background: var(--navy);
    }
    .ba-slot {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      font-size: 0;
    }
    .ba-slot + .ba-slot { border-top: 0; }
    .ba-slot img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .ba-tag {
      position: absolute;
      top: 10px; left: 10px;
      font-family: var(--sans);
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: .2em;
      color: #fff;
      text-transform: uppercase;
      background: rgba(11,34,64,.78);
      padding: 5px 10px;
      border-radius: 4px;
      backdrop-filter: blur(4px);
    }
    .ba-tag.after {
      background: var(--teal);
    }
    .ba-caption {
      padding: 14px 18px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      margin: 0;
    }
    .ba-caption-title { color: #fff; font-weight: 600; font-size: 0.92rem; }
    .ba-caption-meta {
      color: rgba(255,255,255,.55);
      font-size: 0.72rem;
      font-family: var(--sans);
      letter-spacing: .04em;
      text-align: right;
    }
    .ba-cta-row {
      text-align: center;
      margin-top: 56px;
      position: relative; z-index: 1;
    }
    .ba-cta-row p {
      color: rgba(255,255,255,.7);
      margin-bottom: 16px;
      font-size: 0.98rem;
    }
    @media (max-width: 960px) {
      .ba-grid { grid-template-columns: repeat(2, 1fr); max-width: 760px; gap: 22px; }
    }
    @media (max-width: 580px) {
      .ba-grid { grid-template-columns: 1fr; max-width: 440px; }
      #before-after { padding: 72px 0; }
    }

    /* Radiant Club */
    #radiant-club {
      padding: 100px 0;
      background: linear-gradient(135deg, var(--teal) 0%, #0a7d70 100%);
      position: relative; overflow: hidden;
    }
    #radiant-club::before {
      content: ''; position: absolute; inset: 0;
      background:
        radial-gradient(circle at 15% 30%, rgba(255,255,255,.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 70%, rgba(11,34,64,.2) 0%, transparent 50%);
    }
    .rc-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
      position: relative; z-index: 1;
    }
    .rc-text .label { color: rgba(255,255,255,.75); margin-bottom: 14px; }
    .rc-text .h2 { color: #fff; margin-bottom: 20px; }
    .rc-text .body-lg { color: rgba(255,255,255,.85); margin-bottom: 28px; }
    .rc-price-card {
      background: rgba(255,255,255,.08); backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 20px; padding: 40px;
      color: #fff;
    }
    .rc-price {
      font-family: var(--serif); font-size: 4rem; font-weight: 800;
      line-height: 1; margin-bottom: 4px;
      letter-spacing: -0.03em;
    }
    .rc-price-sub {
      font-size: 0.85rem; color: rgba(255,255,255,.7);
      letter-spacing: .08em; text-transform: uppercase;
      margin-bottom: 28px; font-family: var(--sans);
    }
    .rc-features { list-style: none; padding: 0; margin: 0 0 28px; }
    .rc-features li {
      padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.12);
      font-size: 0.98rem; display: flex; align-items: start; gap: 12px;
    }
    .rc-features li:last-child { border-bottom: none; }
    .rc-check {
      color: #fff; background: rgba(255,255,255,.2);
      width: 22px; height: 22px; flex-shrink: 0;
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-size: 0.75rem; font-weight: 700; margin-top: 2px;
    }
    .rc-cta { width: 100%; justify-content: center; }
    .rc-cta.btn-primary { background: #fff; color: var(--teal); }
    .rc-cta.btn-primary:hover { background: var(--navy); color: #fff; }
    .rc-note { font-size: 0.8rem; color: rgba(255,255,255,.65); text-align: center; margin-top: 14px; }
    @media (max-width: 900px) { .rc-grid { grid-template-columns: 1fr; gap: 40px; } }

    /* Offers band */
    #offers { background: var(--offwhite); padding: 80px 0; }
    .offers-header { text-align: center; margin-bottom: 48px; }
    .offers-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    }
    .offer-card {
      background: #fff; border: 1px solid var(--border);
      border-radius: 16px; padding: 32px 28px;
      transition: transform .3s var(--ease-out), box-shadow .3s;
      position: relative;
    }
    .offer-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(11,34,64,.08);
    }
    .offer-card.headline {
      background: var(--navy); color: #fff; border-color: var(--navy);
    }
    .offer-tag {
      display: inline-block;
      font-size: 0.7rem; font-weight: 700; letter-spacing: .14em;
      text-transform: uppercase; color: var(--teal);
      margin-bottom: 16px;
    }
    .offer-card.headline .offer-tag { color: var(--teal-mid); }
    .offer-price {
      font-family: var(--serif); font-weight: 800;
      line-height: 1; margin-bottom: 6px;
      letter-spacing: -0.02em;
    }
    .offer-price .big { font-size: 2.8rem; }
    .offer-price .was {
      display: block; font-size: 0.9rem; color: var(--muted);
      font-weight: 500; text-decoration: line-through;
      margin-top: 6px; letter-spacing: 0;
    }
    .offer-card.headline .offer-price .was { color: rgba(255,255,255,.5); }
    .offer-title { font-size: 1.15rem; font-weight: 600; margin: 14px 0 10px; line-height: 1.3; }
    .offer-desc { font-size: 0.9rem; color: var(--muted); margin-bottom: 20px; line-height: 1.55; }
    .offer-card.headline .offer-desc { color: rgba(255,255,255,.7); }
    .offer-link {
      color: var(--teal); font-weight: 600; font-size: 0.9rem;
      text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
      transition: gap .3s;
    }
    .offer-card.headline .offer-link { color: var(--teal-mid); }
    .offer-link:hover { gap: 10px; }
    .offer-fineprint { font-size: 0.72rem; color: var(--muted); margin-top: 12px; font-style: italic; }
    .offer-card.headline .offer-fineprint { color: rgba(255,255,255,.45); }
    @media (max-width: 1100px) { .offers-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 900px) { .offers-grid { grid-template-columns: 1fr; } }

    /* ═══════════════════════════════════════════════════════════
       REVIEWS
    ════════════════════════════════════════════════════════════ */
    #reviews { background: var(--offwhite); padding: 100px 0; }
    .reviews-header { margin-bottom: 56px; }
    .reviews-header .label { margin-bottom: 14px; }
    .reviews-score {
      display: flex; align-items: baseline; gap: 14px;
      margin-bottom: 8px;
    }
    .reviews-score .h2 { margin-bottom: 0; }
    .reviews-score-star { color: var(--teal); font-size: 1.2rem; }
    .reviews-count { font-size: 0.9rem; color: var(--muted); }
    .reviews-grid {
      display: grid; grid-template-columns: repeat(4,1fr);
      gap: 16px;
    }
    .review-card {
      background: var(--white); border-radius: 14px;
      border: 1px solid var(--border);
      padding: 24px;
      transition: transform .3s var(--ease-out), box-shadow .3s;
    }
    .review-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 32px rgba(11,34,64,.08);
    }
    .review-stars { color: var(--teal); font-size: 0.85rem; margin-bottom: 12px; }
    .review-text {
      font-family: var(--sans); font-size: 0.92rem;
      line-height: 1.65; color: var(--navy); margin-bottom: 18px;
      font-style: italic;
    }
    .review-author { display: flex; align-items: center; gap: 10px; }
    .review-avatar {
      width: 36px; height: 36px; border-radius: 50%;
      background: var(--teal); color: #fff;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.8rem; font-weight: 600; flex-shrink: 0;
    }
    .review-name { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
    .review-meta { font-size: 0.75rem; color: var(--muted); }
    .reviews-cta { text-align: center; margin-top: 40px; }
    @media(max-width:900px) { .reviews-grid { grid-template-columns: repeat(2,1fr); } }
    @media(max-width:580px) { .reviews-grid { grid-template-columns: 1fr; } }

    /* ═══════════════════════════════════════════════════════════
       LOCATION / HOURS
    ════════════════════════════════════════════════════════════ */
    #location { background: var(--white); padding: 100px 0; }
    .location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
    .location-text .label { margin-bottom: 16px; }
    .location-text .h2 { margin-bottom: 24px; }
    .location-info { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
    .location-info-item { display: flex; gap: 14px; align-items: flex-start; }
    .loc-icon {
      width: 40px; height: 40px; border-radius: 10px;
      background: var(--teal-lt); border: 1px solid rgba(13,158,143,.2);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; flex-shrink: 0;
    }
    .loc-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 600; margin-bottom: 4px; }
    .loc-value { font-size: 0.92rem; color: var(--navy); line-height: 1.55; }
    .loc-value a { color: var(--teal); font-weight: 500; }
    .hours-table { width: 100%; }
    .hours-row {
      display: flex; justify-content: space-between;
      padding: 10px 0; border-bottom: 1px solid var(--border);
      font-size: 0.88rem;
    }
    .hours-row:last-child { border-bottom: none; }
    .hours-row .day { color: var(--muted); font-weight: 500; }
    .hours-row .time { color: var(--navy); font-weight: 500; }
    .hours-row.closed .time { color: var(--muted); }
    .map-placeholder {
      height: 100%; min-height: 380px;
      border-radius: 16px; border: 2px dashed var(--border);
      background: var(--offwhite);
      display: flex; align-items: center; justify-content: center;
      flex-direction: column; gap: 12px;
      color: var(--muted); font-family: monospace;
      font-size: 0.8rem; letter-spacing: .08em; text-transform: uppercase;
    }
    @media(max-width:768px) { .location-grid { grid-template-columns: 1fr; gap: 48px; } }

    /* ═══════════════════════════════════════════════════════════
       FAQ
    ════════════════════════════════════════════════════════════ */
    #faq { background: var(--offwhite); padding: 100px 0; }
    .faq-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
    .faq-sidebar .label { margin-bottom: 16px; }
    .faq-sidebar .h2 { margin-bottom: 24px; }
    .faq-sidebar .body-md { margin-bottom: 28px; }
    .faq-list { display: flex; flex-direction: column; gap: 8px; }
    .faq-item {
      background: var(--white); border-radius: 12px;
      border: 1px solid var(--border); overflow: hidden;
    }
    .faq-q {
      width: 100%; display: flex; justify-content: space-between; align-items: center;
      padding: 20px 24px; gap: 16px;
      font-size: 0.92rem; font-weight: 500; color: var(--navy);
      cursor: pointer; text-align: left;
      transition: color .2s;
    }
    .faq-q:hover { color: var(--teal); }
    .faq-arrow {
      flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
      background: var(--teal-lt); color: var(--teal);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.9rem;
      transition: transform .3s var(--ease-out);
    }
    .faq-item.open .faq-arrow { transform: rotate(45deg); }
    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height .4s var(--ease-out), padding .3s;
      font-size: 0.88rem; color: #4a6278; line-height: 1.7;
      padding: 0 24px;
    }
    .faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }
    @media(max-width:768px) { .faq-layout { grid-template-columns: 1fr; gap: 48px; } }

    /* ═══════════════════════════════════════════════════════════
       CTA BAND
    ════════════════════════════════════════════════════════════ */
    #cta-band {
      background: linear-gradient(135deg, var(--navy) 0%, #0a3040 100%);
      padding: 100px 0;
      text-align: center; position: relative; overflow: hidden;
    }
    #cta-band::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 50% 80% at 50% 50%, rgba(13,158,143,.12) 0%, transparent 60%);
    }
    .cta-band-content { position: relative; }
    .cta-band-content .label { color: var(--teal); margin-bottom: 16px; }
    .cta-band-content .h2 { color: #fff; margin-bottom: 16px; }
    .cta-band-content .body-lg { color: rgba(255,255,255,.65); max-width: 520px; margin: 0 auto 40px; }
    .cta-band-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
    .cta-band-phone {
      font-size: 0.85rem; color: rgba(255,255,255,.5);
    }
    .cta-band-phone a { color: rgba(255,255,255,.85); font-weight: 600; }

    /* ═══════════════════════════════════════════════════════════
       FOOTER
    ════════════════════════════════════════════════════════════ */
    #footer {
      background: var(--navy-deep);
      padding: 60px 0 32px;
      border-top: 1px solid rgba(255,255,255,.06);
    }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px; margin-bottom: 48px;
    }
    .footer-brand img { height: 36px; margin-bottom: 20px; }
    .footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
    .footer-contact a { display: block; font-size: 0.85rem; color: rgba(255,255,255,.6); margin-bottom: 8px; transition: color .2s; }
    .footer-contact a:hover { color: var(--teal); }
    .footer-col h4 {
      font-size: 0.78rem; text-transform: uppercase; letter-spacing: .12em;
      color: rgba(255,255,255,.35); font-weight: 600; margin-bottom: 18px;
    }
    .footer-col a {
      display: block; font-size: 0.85rem;
      color: rgba(255,255,255,.55); margin-bottom: 10px;
      transition: color .2s;
    }
    .footer-col a:hover { color: var(--teal); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.06);
      padding-top: 24px;
      display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
    }
    .footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,.3); }
    .footer-bottom-links { display: flex; gap: 20px; }
    .footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,.35); transition: color .2s; }
    .footer-bottom-links a:hover { color: rgba(255,255,255,.65); }
    @media(max-width:768px) {
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      .footer-brand { grid-column: 1/-1; }
    }
    @media(max-width:480px) {
      .footer-grid { grid-template-columns: 1fr; }
    }

    /* ═══════════════════════════════════════════════════════════
       FLOATING EMERGENCY BAR
    ════════════════════════════════════════════════════════════ */
    #floating-bar {
      position: fixed; bottom: 24px; right: 24px; z-index: 90;
      background: var(--navy); color: #fff;
      border-radius: 50px; padding: 14px 20px;
      display: flex; align-items: center; gap: 10px;
      box-shadow: 0 8px 32px rgba(0,0,0,.2);
      font-size: 0.82rem; font-weight: 500;
      opacity: 0; transform: translateY(12px);
      transition: all .4s var(--ease-out);
    }
    #floating-bar.show { opacity: 1; transform: none; }
    #floating-bar a { color: var(--teal); font-weight: 700; }
    #floating-bar-close {
      margin-left: 6px; opacity: .4; cursor: pointer; font-size: 1rem;
      transition: opacity .2s;
    }
    #floating-bar-close:hover { opacity: .8; }

    /* ─── TWEAKS PANEL ────────────────────────────────────── */
    #tweaks-panel {
      position: fixed; bottom: 24px; left: 24px; z-index: 200;
      background: var(--white); border-radius: 16px;
      box-shadow: 0 12px 48px rgba(11,34,64,.15);
      padding: 24px; width: 260px;
      border: 1px solid var(--border);
      display: none;
    }
    #tweaks-panel.visible { display: block; }
    .tweaks-title {
      font-size: 0.78rem; text-transform: uppercase; letter-spacing: .12em;
      font-weight: 700; color: var(--muted); margin-bottom: 18px;
    }
    .tweak-row { margin-bottom: 16px; }
    .tweak-label {
      display: flex; justify-content: space-between;
      font-size: 0.8rem; font-weight: 500; color: var(--navy);
      margin-bottom: 8px;
    }
    .tweak-options { display: flex; gap: 6px; flex-wrap: wrap; }
    .tweak-option {
      padding: 5px 12px; border-radius: 20px;
      font-size: 0.75rem; font-weight: 500; cursor: pointer;
      border: 1.5px solid var(--border); color: var(--muted);
      transition: all .2s;
    }
    .tweak-option.active {
      border-color: var(--teal); color: var(--teal);
      background: var(--teal-lt);
    }
    .tweak-swatch {
      width: 26px; height: 26px; border-radius: 50%;
      cursor: pointer; border: 2px solid transparent;
      transition: border-color .2s, transform .2s;
    }
    .tweak-swatch.active { border-color: var(--navy); transform: scale(1.12); }
    @media(max-width:480px) { #tweaks-panel { display: none !important; } }
  
    /* ═══════ BEFORE/AFTER GALLERY ═══════ */
    /* (second-pass overrides removed — earlier rules own these now) */

  