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

    :root {
      --navy: #0d1b2a;
      --navy-mid: #1a2d42;
      --gold: #c9a84c;
      --gold-light: #e8cc82;
      --cream: #f8f4ee;
      --cream-dark: #ede7dc;
      --text: #2c2c2c;
      --text-muted: #6b6b6b;
      --white: #ffffff;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
    }

    /* ── ANNOUNCEMENT BAR ── */
    #announcement-bar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 101;
      background: var(--navy);
      color: var(--cream);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      padding: 0.55rem 5%;
      font-family: 'Inter', sans-serif;
      font-size: 0.8rem;
      font-weight: 400;
      letter-spacing: 0.02em;
      flex-wrap: wrap;
      text-align: center;
    }
    .announcement-link {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      background: var(--gold);
      color: var(--navy);
      font-weight: 600;
      font-size: 0.75rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 0.3rem 0.85rem;
      border-radius: 2px;
      white-space: nowrap;
      transition: background 0.2s;
    }
    .announcement-link:hover { background: var(--gold-light); }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 40px; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 5%;
      background: var(--white);
      border-bottom: 1px solid rgba(201,168,76,0.18);
      box-shadow: 0 1px 16px rgba(0,0,0,0.06);
    }
    .nav-logo {
      display: flex;
      flex-direction: column;
      line-height: 1;
      text-decoration: none;
    }
    .nav-logo span:first-child {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 500;
      color: var(--navy);
      letter-spacing: 0.06em;
    }
    .nav-logo span:last-child {
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.72rem;
      font-weight: 300;
      color: var(--gold);
      letter-spacing: 0.3em;
      text-transform: uppercase;
    }
    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
      align-items: center;
    }
    .nav-links a {
      position: relative;
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: color 0.2s;
      padding-bottom: 3px;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0; right: 0;
      height: 1.5px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.25s ease;
    }
    .nav-links a:hover { color: var(--navy); }
    .nav-links a.active { color: var(--gold); }
    .nav-links a.active::after { transform: scaleX(1); }
    .nav-cta {
      background: var(--gold) !important;
      color: var(--navy) !important;
      padding: 0.55rem 1.3rem !important;
      border-radius: 2px;
      font-weight: 600 !important;
      transition: background 0.2s !important;
      letter-spacing: 0.08em !important;
    }
    .nav-cta::after { display: none !important; }
    .nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }
    /* Hamburger */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
    }
    .nav-hamburger span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--navy);
      transition: transform 0.3s, opacity 0.3s;
    }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
    /* Nav switches to hamburger before the desktop links + CTA button run out of room and wrap */
    @media (max-width: 1100px) {
      nav { padding: 1rem 4%; }
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
    }
    /* Mobile menu */
    .nav-mobile {
      position: fixed;
      top: 105px; left: 0; right: 0;
      z-index: 99;
      background: var(--white);
      border-bottom: 1px solid rgba(201,168,76,0.18);
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
      display: none;
      flex-direction: column;
      max-height: calc(100vh - 105px);
      max-height: calc(100dvh - 105px);
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }
    .nav-mobile.open { display: flex; }
    .nav-mobile a {
      padding: 1rem 5%;
      border-bottom: 1px solid rgba(201,168,76,0.08);
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: color 0.2s, background 0.2s;
    }
    .nav-mobile a:last-child { border-bottom: none; }
    .nav-mobile a:hover,
    .nav-mobile a.active { color: var(--gold); background: rgba(201,168,76,0.04); }
    .nav-mobile .nav-cta {
      margin: 0.5rem 5% 0.25rem;
      padding: 0.9rem 1rem !important;
      text-align: center;
      border-radius: 4px;
    }
    .nav-mobile::after {
      content: '';
      position: sticky;
      bottom: 0;
      display: block;
      height: 28px;
      margin-top: -28px;
      background: linear-gradient(to bottom, transparent, var(--white) 85%);
      pointer-events: none;
    }

    /* ── HERO ── */
    #hero {
      height: 100vh;
      min-height: 680px;
      background-image: url('hero-grid.webp');
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      background-color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
      padding: 0 5%;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .hero-badge {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      border: 1px solid rgba(201,168,76,0.45);
      border-radius: 50px;
      padding: 0.45rem 1.25rem;
      margin-bottom: 2rem;
      font-size: 0.72rem;
      letter-spacing: 0.06em;
      color: var(--navy);
      transition: border-color 0.2s;
    }
    .hero-badge:hover { border-color: rgba(201,168,76,0.75); }
    .hero-badge-link {
      display: flex;
      align-items: center;
      gap: 0.35rem;
      font-weight: 600;
      color: var(--gold);
      text-decoration: none;
      font-size: 0.72rem;
    }
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 6vw, 5.5rem);
      font-weight: 300;
      line-height: 1.08;
      color: var(--navy);
      margin-bottom: 1.75rem;
      max-width: 820px;
    }
    .hero-title em {
      font-style: italic;
      color: var(--navy);
    }
    .hero-subtitle {
      font-size: 1rem;
      font-weight: 300;
      line-height: 1.75;
      color: rgba(13,27,42,0.65);
      max-width: 500px;
      margin-bottom: 2.5rem;
    }
    .hero-actions {
      display: flex;
      gap: 1.25rem;
      flex-wrap: wrap;
      justify-content: center;
    }
    .btn-primary {
      display: inline-block;
      background: var(--navy);
      color: var(--white);
      text-decoration: none;
      padding: 1rem 2.25rem;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border-radius: 2px;
      transition: background 0.2s, transform 0.2s;
    }
    .btn-primary:hover { background: var(--navy-mid); transform: translateY(-1px); }
    .btn-outline {
      display: inline-block;
      border: 1px solid rgba(13,27,42,0.25);
      color: var(--navy);
      text-decoration: none;
      padding: 1rem 2.25rem;
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border-radius: 2px;
      transition: border-color 0.2s, background 0.2s;
    }
    .btn-outline:hover { border-color: var(--gold); background: rgba(201,168,76,0.06); }
    .hero-scroll {
      position: absolute;
      bottom: 2.5rem;
      left: 5%;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      color: rgba(13,27,42,0.35);
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
    }
    .scroll-line {
      width: 2.5rem;
      height: 1px;
      background: rgba(13,27,42,0.2);
      animation: scrollPulse 2s ease-in-out infinite;
    }
    @keyframes scrollPulse {
      0%, 100% { opacity: 0.3; }
      50% { opacity: 0.9; }
    }

    /* ── SECTION BASE ── */
    section { padding: 6rem 5%; scroll-margin-top: 108px; }
    .section-label {
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .section-label::before {
      content: '';
      width: 2rem;
      height: 1px;
      background: var(--gold);
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 4vw, 3.5rem);
      font-weight: 400;
      line-height: 1.2;
      color: var(--navy);
      margin-bottom: 1.25rem;
    }
    .section-sub {
      font-size: 0.95rem;
      line-height: 1.8;
      color: var(--text-muted);
      max-width: 520px;
    }

    /* ── STATS STRIP ── */
    #stats {
      background: var(--navy);
      padding: 3.5rem 5%;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      text-align: center;
    }
    .stat-item {
      padding: 1.5rem 1rem;
      border-left: 1px solid rgba(201,168,76,0.2);
    }
    .stat-item:first-child { border-left: none; }
    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem;
      font-weight: 400;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 0.4rem;
    }
    .stat-label {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
    }

    /* ── SERVICES ── */
    #services { background: var(--cream); }
    .services-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: end;
      margin-bottom: 4rem;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5px;
      background: rgba(201,168,76,0.15);
    }
    .service-card {
      background: var(--white);
      padding: 2.75rem 2.25rem;
      transition: background 0.3s;
      cursor: default;
    }
    .service-card:hover { background: var(--navy); }
    .service-icon {
      width: 3rem;
      height: 3rem;
      margin-bottom: 1.5rem;
      color: var(--gold);
    }
    .service-card:hover .service-icon { color: var(--gold-light); }
    .service-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.45rem;
      font-weight: 500;
      color: var(--navy);
      margin-bottom: 0.75rem;
      transition: color 0.3s;
    }
    .service-card:hover .service-name { color: var(--white); }
    .service-desc {
      font-size: 0.875rem;
      line-height: 1.75;
      color: var(--text-muted);
      transition: color 0.3s;
    }
    .service-card:hover .service-desc { color: rgba(255,255,255,0.6); }
    a.service-card { text-decoration: none; color: inherit; display: flex; flex-direction: column; cursor: pointer; }
    a.service-card:hover { background: var(--navy); }
    a.service-card:hover .service-icon { color: var(--gold-light); }
    a.service-card:hover .service-name { color: var(--white); }
    a.service-card:hover .service-desc { color: rgba(255,255,255,0.6); }
    a.service-card:hover .service-card-cta { color: var(--gold-light); }
    .service-card-cta {
      margin-top: auto;
      padding-top: 1.1rem;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      transition: color 0.3s;
    }
    .service-prose {
      max-width: 820px;
      margin: 0 auto;
      padding: 1.5rem 5%;
    }
    .service-prose p {
      font-size: 0.95rem;
      line-height: 1.85;
      color: var(--text-muted);
    }
    .service-prose p + p { margin-top: 1.5rem; }
    .service-prose a { color: var(--gold); text-decoration: none; }
    .service-prose a:hover { text-decoration: underline; }
    .service-cta-section {
      padding: 5rem 5%;
      text-align: center;
      background: var(--cream);
    }
    .service-cta-section .section-label { justify-content: center; }
    .service-cta-section .section-label::before { display: none; }
    .service-cta-section .section-title { text-align: center; }
    .service-cta-section .section-sub { max-width: 560px; margin: 1rem auto 2rem; text-align: center; }
    .service-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

    /* ── TEAM ── */
    #team { background: var(--white); }
    .team-header { margin-bottom: 3.5rem; }
    .team-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
    .team-card {
      background: var(--cream);
      border-radius: 4px;
      overflow: hidden;
      display: grid;
      grid-template-columns: 200px 1fr;
      box-shadow: 0 4px 24px rgba(13,27,42,0.07);
      transition: box-shadow 0.3s, transform 0.3s;
    }
    .team-card:hover {
      box-shadow: 0 12px 40px rgba(13,27,42,0.13);
      transform: translateY(-3px);
    }
    .team-avatar {
      width: 200px;
      background: var(--navy-mid);
      display: flex;
      align-items: stretch;
      justify-content: center;
      flex-shrink: 0;
      overflow: hidden;
      position: relative;
    }
    .team-avatar::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(13,27,42,0.05) 0%,
        rgba(13,27,42,0.15) 100%
      );
      pointer-events: none;
    }
    .team-photo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
      filter: contrast(1.08) brightness(1.04) saturate(1.1);
      transition: transform 0.4s ease, filter 0.4s ease;
    }
    .team-card:hover .team-photo {
      transform: scale(1.03);
      filter: contrast(1.1) brightness(1.06) saturate(1.15);
    }
    .team-avatar svg { width: 72px; opacity: 0.35; }
    .team-info { padding: 2.25rem 2rem; }
    .team-credential {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.3rem;
    }
    .team-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 500;
      color: var(--navy);
      margin-bottom: 1rem;
    }
    .team-bio {
      font-size: 0.875rem;
      line-height: 1.75;
      color: var(--text-muted);
      margin-bottom: 1.25rem;
    }
    .team-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
    }
    .team-tag {
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      background: rgba(201,168,76,0.15);
      color: var(--navy);
      padding: 0.3rem 0.65rem;
      border-radius: 2px;
    }

    /* ── EYEWEAR ── */
    #eyewear { background: var(--cream); }
    .eyewear-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: end;
      margin-bottom: 3.5rem;
    }
    .brands-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      grid-auto-rows: 90px;
      gap: 1px;
      background: rgba(201,168,76,0.15);
      margin-bottom: 3rem;
    }
    .brand-tile {
      background: var(--white);
      padding: 1.5rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 90px;
      overflow: hidden;
      transition: background 0.25s;
    }
    .brand-tile:hover { background: var(--navy); }
    .brand-logo {
      max-height: 42px;
      max-width: 160px;
      width: auto;
      height: auto;
      object-fit: contain;
      filter: brightness(0) saturate(0);
      opacity: 0.7;
      transition: filter 0.25s, opacity 0.25s, transform 0.25s;
      display: block;
    }
    .brand-tile:hover .brand-logo {
      filter: brightness(0) saturate(0) invert(1);
      opacity: 1;
      transform: scale(1.06);
    }
    .brand-tile-more {
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-muted);
      transition: color 0.25s;
    }
    .brand-tile:hover .brand-tile-more { color: rgba(255,255,255,0.5); }
    .eyewear-note {
      text-align: center;
      font-size: 0.875rem;
      color: var(--text-muted);
      font-style: italic;
    }
    .eyewear-note a { color: var(--gold); text-decoration: none; }

    /* ── INSURANCE ── */
    #insurance {
      background: var(--navy);
      text-align: center;
      padding: 5rem 5%;
    }
    #insurance .section-label { justify-content: center; }
    #insurance .section-label::before { display: none; }
    #insurance .section-title { color: var(--white); }
    #insurance .section-sub { color: rgba(255,255,255,0.55); margin: 0 auto 3rem; text-align: center; }
    .insurance-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.75rem;
      max-width: 760px;
      margin: 0 auto;
    }
    .insurance-pill {
      background: var(--white);
      border: 1px solid rgba(255,255,255,0.12);
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.01em;
      padding: 0.65rem 1.5rem;
      border-radius: 50px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
      transition: transform 0.2s, box-shadow 0.2s;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 3rem;
    }
    .insurance-pill:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.22); }
    .insurance-pill.davis-vision { color: #00838F; }
    .insurance-pill.spectera { color: #002677; }
    .insurance-logo {
      max-height: 1.6rem;
      max-width: 6.5rem;
      width: auto;
      height: auto;
      object-fit: contain;
      display: block;
    }

    /* ── EDITORIAL FRAMES ── */
    #frames-edit {
      background: var(--navy);
      padding: 5rem 5% 0;
    }
    .frames-edit-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 2.5rem;
    }
    .frames-edit-header .section-title { color: var(--white); margin-bottom: 0; }
    .frames-edit-header .section-sub { color: rgba(255,255,255,0.5); max-width: 380px; text-align: right; }
    .editorial-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      grid-template-rows: 440px 280px;
      gap: 3px;
    }
    .edit-cell {
      overflow: hidden;
      position: relative;
      cursor: pointer;
    }
    .edit-cell.tall { grid-row: 1 / 3; }
    .edit-cell img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s;
      filter: brightness(0.88) contrast(1.05) saturate(0.95);
      display: block;
    }
    .edit-cell:hover img {
      transform: scale(1.05);
      filter: brightness(0.95) contrast(1.05) saturate(1.05);
    }
    .edit-caption {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 2rem 1.75rem 1.5rem;
      background: linear-gradient(transparent, rgba(13,27,42,0.75));
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
    }
    .edit-caption-brand {
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold-light);
    }
    .edit-caption-label {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
      font-style: italic;
      color: rgba(255,255,255,0.7);
    }
    .frames-quote-strip {
      margin-top: 3px;
      height: 300px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .frames-quote-strip img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.28) saturate(0.5);
    }
    .frames-quote-content {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 2rem 15%;
    }
    .frames-quote-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.6rem, 3.5vw, 2.75rem);
      font-weight: 300;
      font-style: italic;
      color: var(--white);
      line-height: 1.45;
      margin-bottom: 1.25rem;
    }
    .frames-quote-attr {
      font-size: 0.68rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .frames-thumb-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3px;
      margin-top: 3px;
    }
    .frames-thumb {
      height: 220px;
      overflow: hidden;
      position: relative;
    }
    .frames-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease, filter 0.4s;
      filter: brightness(0.85) contrast(1.05) saturate(0.9);
    }
    .frames-thumb:hover img {
      transform: scale(1.06);
      filter: brightness(0.95) contrast(1.05) saturate(1.1);
    }
    .frames-thumb-label {
      position: absolute;
      bottom: 1.25rem; left: 1.25rem;
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold-light);
    }

    /* ── TESTIMONIALS ── */
    #testimonials { background: var(--white); }
    .testimonials-header { margin-bottom: 3.5rem; }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .testimonial-card {
      background: var(--cream);
      padding: 2.5rem;
      border-radius: 4px;
      position: relative;
    }
    .testimonial-card::before {
      content: '\201C';
      font-family: 'Cormorant Garamond', serif;
      font-size: 5rem;
      color: var(--gold);
      opacity: 0.25;
      position: absolute;
      top: 0.5rem;
      left: 1.5rem;
      line-height: 1;
    }
    .testimonial-stars {
      display: flex;
      gap: 0.2rem;
      margin-bottom: 1.25rem;
    }
    .star { color: var(--gold); font-size: 0.85rem; }
    .testimonial-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-style: italic;
      line-height: 1.7;
      color: var(--navy);
      margin-bottom: 1.5rem;
    }
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .author-avatar {
      width: 2.75rem;
      height: 2.75rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 500;
      color: var(--white);
      flex-shrink: 0;
    }
    .author-name { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
    .author-location { font-size: 0.75rem; color: var(--text-muted); }

    /* ── CONTACT ── */
    #contact {
      background: var(--cream);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }
    .contact-info .section-sub { margin-bottom: 2.5rem; }
    .info-items { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
    .info-item { display: flex; gap: 1.25rem; align-items: flex-start; }
    .info-icon {
      width: 2.5rem;
      height: 2.5rem;
      background: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--gold);
    }
    .info-icon svg { width: 1.1rem; height: 1.1rem; }
    .info-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--navy);
      margin-bottom: 0.2rem;
    }
    .info-value { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
    .info-value a { color: var(--gold); text-decoration: none; }
    .contact-form-wrapper {
      background: var(--white);
      padding: 3rem;
      border-radius: 4px;
    }
    .form-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.75rem;
      font-weight: 500;
      color: var(--navy);
      margin-bottom: 0.4rem;
    }
    .form-sub { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 2rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      margin-bottom: 1rem;
    }
    label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--navy);
    }
    input, select, textarea {
      background: var(--cream);
      border: 1px solid rgba(13,27,42,0.12);
      border-radius: 2px;
      padding: 0.75rem 1rem;
      font-family: 'Inter', sans-serif;
      font-size: 0.875rem;
      color: var(--text);
      outline: none;
      transition: border-color 0.2s;
      width: 100%;
    }
    input:focus, select:focus, textarea:focus { border-color: var(--gold); }
    textarea { resize: vertical; min-height: 90px; }
    .btn-book {
      width: 100%;
      background: var(--navy);
      color: var(--white);
      border: none;
      padding: 1rem;
      font-family: 'Inter', sans-serif;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border-radius: 2px;
      cursor: pointer;
      transition: background 0.2s;
      margin-top: 0.5rem;
    }
    .btn-book:hover { background: var(--navy-mid); }

    /* ── FOOTER ── */
    footer { background: var(--navy); padding: 4rem 5% 2rem; }
    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .footer-brand-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.7rem;
      font-weight: 500;
      color: var(--white);
      letter-spacing: 0.06em;
      display: block;
      margin-bottom: 0.15rem;
    }
    .footer-brand-sub {
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.72rem;
      font-weight: 300;
      color: var(--gold);
      letter-spacing: 0.3em;
      text-transform: uppercase;
      display: block;
      margin-bottom: 1.25rem;
    }
    .footer-tagline { font-size: 0.875rem; line-height: 1.75; color: rgba(255,255,255,0.4); max-width: 260px; }
    .footer-col h4 {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.25rem;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 0.65rem; }
    .footer-col ul a {
      font-size: 0.875rem;
      color: rgba(255,255,255,0.45);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-col ul a:hover { color: var(--gold-light); }
    .footer-reviews {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.5rem 0;
      border-top: 1px solid rgba(255,255,255,0.1);
      flex-wrap: wrap;
    }
    .footer-reviews-label {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: rgba(255,255,255,0.35);
    }
    .footer-review-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      font-size: 0.82rem;
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-review-badge:hover { color: var(--gold-light); }
    .footer-review-badge strong { color: var(--gold); }
    .footer-review-count { color: rgba(255,255,255,0.4); font-size: 0.78rem; }
    .footer-reviews-sep { color: rgba(255,255,255,0.25); }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 2rem;
    }
    .footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
    .footer-socials { display: flex; gap: 1rem; }
    .social-link {
      width: 2.25rem;
      height: 2.25rem;
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.4);
      text-decoration: none;
      transition: border-color 0.2s, color 0.2s;
    }
    .social-link:hover { border-color: var(--gold); color: var(--gold); }
    .social-link svg { width: 1rem; height: 1rem; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1100px) {
      .team-grid { grid-template-columns: 1fr; }
      .brands-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 90px; }
      .brand-logo { max-height: 38px; max-width: 130px; }
      .editorial-grid { grid-template-columns: 1fr; grid-template-rows: 380px 260px 260px; }
      .edit-cell.tall { grid-row: auto; }
      .frames-thumb-row { grid-template-columns: 1fr 1fr; }
      .frames-thumb:last-child { display: none; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .stat-item:nth-child(3) { border-left: none; }
    }
    @media (max-width: 900px) {
      .services-header { grid-template-columns: 1fr; gap: 1.5rem; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .eyewear-header { grid-template-columns: 1fr; gap: 1.5rem; }
      #contact { grid-template-columns: 1fr; gap: 3rem; }
      .testimonials-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .hero-lens { display: none; }
      .hero-content { max-width: 90%; margin-left: auto; margin-right: auto; }
      .services-grid { grid-template-columns: 1fr; }
      .brands-grid { grid-template-columns: repeat(2, 1fr); }
      .brand-tile { height: 90px !important; min-height: 0 !important; overflow: hidden; }
      .brand-logo { max-height: 32px !important; max-width: 115px !important; }
      .team-card { grid-template-columns: 1fr; }
      .team-avatar { width: 100%; height: 260px; }
      .team-photo { object-position: center 20%; }
      .form-row { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; }
    }

    /* ── ABOUT ── */
    #about { background: var(--navy); }
    .about-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }
    .about-split .section-title { color: var(--white); }
    .about-split .section-sub { color: rgba(255,255,255,0.6); margin-bottom: 2.5rem; }
    .about-split.about-split-fill { align-items: stretch; }
    .about-photo-fill {
      width: 100%;
      height: 100%;
      border-radius: 4px;
      overflow: hidden;
      border: 1px solid rgba(201,168,76,0.2);
      box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    }
    @media (max-width: 768px) {
      .about-photo-fill { height: 360px; }
    }
    .about-values {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }
    .about-value {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }
    .about-value-icon {
      width: 2.25rem;
      height: 2.25rem;
      border-radius: 50%;
      background: rgba(201,168,76,0.15);
      border: 1px solid rgba(201,168,76,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--gold);
    }
    .about-value-icon svg { width: 1rem; height: 1rem; }
    .about-value-text strong {
      display: block;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--white);
      letter-spacing: 0.04em;
      margin-bottom: 0.2rem;
    }
    .about-value-text span {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.5);
      line-height: 1.55;
    }
    .about-visual-panel {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .about-rings {
      width: 380px;
      height: 380px;
      border-radius: 50%;
      border: 1px solid rgba(201,168,76,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    .about-rings::before {
      content: '';
      position: absolute;
      inset: 40px;
      border-radius: 50%;
      border: 1px solid rgba(201,168,76,0.1);
    }
    .about-rings-inner {
      width: 50%;
      aspect-ratio: 1;
      border-radius: 50%;
      background: radial-gradient(ellipse at 35% 35%, rgba(201,168,76,0.18) 0%, rgba(13,27,42,0.6) 70%);
      border: 1px solid rgba(201,168,76,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .about-rings-inner svg { width: 64px; opacity: 0.45; color: var(--gold); }

    /* ── EDUCATION ── */
    #education { background: var(--cream); }
    .education-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: end;
      margin-bottom: 3.5rem;
    }
    .education-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .edu-card {
      background: var(--white);
      border-radius: 4px;
      padding: 2.25rem 2rem 2rem;
      display: flex;
      flex-direction: column;
      gap: 0;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .edu-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.09); }
    .edu-tag {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }
    .edu-icon {
      width: 2.75rem;
      height: 2.75rem;
      background: rgba(201,168,76,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      margin-bottom: 1.25rem;
    }
    .edu-icon svg { width: 1.1rem; height: 1.1rem; }
    .edu-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem;
      font-weight: 500;
      color: var(--navy);
      margin-bottom: 0.85rem;
      line-height: 1.3;
    }
    .edu-body {
      font-size: 0.875rem;
      line-height: 1.75;
      color: var(--text-muted);
      flex: 1;
      margin-bottom: 1.5rem;
    }
    .edu-link {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      transition: gap 0.2s;
    }
    .edu-link:hover { gap: 0.7rem; }
    a.edu-card { text-decoration: none; color: inherit; display: flex; flex-direction: column; cursor: pointer; }

    /* Mobile nav tweaks */
    @media (max-width: 768px) {
      .about-split { grid-template-columns: 1fr; gap: 2.5rem; }
      .about-rings { width: 240px; height: 240px; }
      .education-header { grid-template-columns: 1fr; gap: 1.5rem; }
      .education-grid { grid-template-columns: 1fr; }
    }

    /* ── SCROLL ANIMATIONS ── */
    .vo-hidden {
      opacity: 0;
      transform: translateY(30px);
    }
    .vo-fade {
      opacity: 0;
    }
    /* Respect reduced-motion preference */
    @media (prefers-reduced-motion: reduce) {
      .vo-hidden, .vo-fade { opacity: 1 !important; transform: none !important; transition: none !important; }
    }

    /* ── PAGE HERO ── */
    .page-hero {
      padding: 8rem 5% 4rem;
      background: var(--navy);
      text-align: center;
    }
    .page-hero .section-label { justify-content: center; }
    .page-hero .section-label::before { display: none; }
    .page-hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      font-weight: 300;
      color: var(--white);
      margin-bottom: 1.25rem;
      line-height: 1.1;
    }
    .page-hero-sub {
      font-size: 1rem;
      font-weight: 300;
      color: rgba(255,255,255,0.6);
      max-width: 540px;
      margin: 0 auto;
      line-height: 1.75;
    }

    /* ── OVERVIEW / TEASER GRID ── */
    #overview { background: var(--white); }
    .overview-header { margin-bottom: 3rem; }
    .teaser-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
    .teaser-card {
      background: var(--cream);
      border-radius: 4px;
      padding: 2.25rem 2rem;
      border-left: 3px solid rgba(201,168,76,0.3);
      transition: border-color 0.2s, transform 0.2s;
    }
    .teaser-card:hover { border-color: var(--gold); transform: translateY(-3px); }
    .teaser-label {
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.6rem;
    }
    .teaser-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 500;
      color: var(--navy);
      margin-bottom: 0.75rem;
    }
    .teaser-desc {
      font-size: 0.875rem;
      line-height: 1.75;
      color: var(--text-muted);
      margin-bottom: 1.25rem;
    }
    .teaser-link {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      transition: gap 0.2s;
    }
    .teaser-link:hover { gap: 0.7rem; }
    @media (max-width: 768px) { .teaser-grid { grid-template-columns: 1fr; } }

/* Pediatric feature responsive */
@media (max-width: 768px) {
  #pediatric-feature > div { grid-template-columns: 1fr !important; }
  #pediatric-feature > div > div:last-child { padding: 3rem 5% !important; }
  .page-hero { padding-top: 11rem; }
  #intake-header { padding-top: 11rem; }
}

/* ── INTAKE FORM PAGE ──────────────────────────────────────────── */

#intake-header {
  padding: 8rem 5% 3.5rem;
  text-align: center;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
}
.intake-page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 500;
  color: var(--navy);
  margin: 0.5rem 0 1rem;
  letter-spacing: 0.02em;
}
.intake-page-sub {
  max-width: 640px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
}

#intake-form-section {
  background: var(--white);
  padding: 3rem 5% 5rem;
}
.intake-form {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Section blocks */
.form-section {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 6px;
  padding: 2rem 2rem 1.75rem;
}
.form-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--cream-dark);
}
.form-section-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
.form-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.form-section-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  margin-top: -0.5rem;
  line-height: 1.6;
}
.form-subsection {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--cream-dark);
}
.form-subsection-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.85rem;
}

/* Form rows & groups */
.form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.form-row:last-child { margin-bottom: 0; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1 1 180px;
}
.form-group-full { flex: 1 1 100%; }
.form-group-sm   { flex: 0 1 140px; }
.form-group-xs   { flex: 0 1 80px; }

.form-group label, .form-subsection-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}
.form-hint {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-muted);
  font-size: 0.75rem;
}
.req { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.6rem 0.85rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group textarea {
  resize: vertical;
  line-height: 1.6;
}

/* Yes / No radio rows */
.yn-stack {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.yn-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding: 0.65rem 0.85rem;
  background: var(--cream);
  border-radius: 4px;
}
.yn-label {
  font-size: 0.88rem;
  color: var(--text);
  flex: 1 1 200px;
}
.yn-radios {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}
.yn-opt {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--text);
  cursor: pointer;
  font-weight: 500;
}
.yn-opt input[type="radio"] {
  accent-color: var(--gold);
  width: 15px;
  height: 15px;
  cursor: pointer;
}
.yn-inline-extra {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.yn-inline-extra input {
  width: 60px;
  padding: 0.3rem 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
}
.yn-inline-extra input:focus {
  outline: none;
  border-color: var(--gold);
}

/* Checkbox grids */
.cb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 0.5rem 1rem;
}
.cb-grid-3 {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.cb-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.87rem;
  color: var(--text);
  cursor: pointer;
  padding: 0.35rem 0;
}
.cb-item input[type="checkbox"] {
  accent-color: var(--gold);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  cursor: pointer;
}
.cb-item:hover { color: var(--navy); }

/* Review of Systems categories */
.ros-cat {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px dashed var(--cream-dark);
}
.ros-cat:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.ros-cat-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* Submit area */
.intake-submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  text-align: center;
}
.intake-submit-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.6;
}
.btn-intake-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--navy);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  padding: 0.9rem 2.5rem;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-intake-submit:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .form-section { padding: 1.5rem 1rem 1.25rem; }
  .form-row { gap: 0.75rem; }
  .form-group, .form-group-sm, .form-group-xs { flex: 1 1 100%; }
  .cb-grid, .cb-grid-3 { grid-template-columns: 1fr 1fr; }
  .yn-row { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

/* ── WHY CHOOSE US ── */
#why-us {
  background: var(--white);
  text-align: center;
}
#why-us .section-label { justify-content: center; }
#why-us .section-label::before { display: none; }
.why-header {
  max-width: 620px;
  margin: 0 auto 3.5rem;
}
.why-header .section-sub { max-width: none; margin: 0 auto; }
.why-header .section-title em { font-style: italic; color: var(--gold); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: rgba(201,168,76,0.12);
  max-width: 1200px;
  margin: 0 auto;
}
.why-card {
  background: var(--white);
  padding: 2.75rem 1.75rem;
  text-align: left;
  transition: background 0.3s;
}
.why-card:hover { background: var(--navy); }
.why-icon-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.75rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.65rem;
}
.why-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.65rem;
  transition: color 0.3s;
}
.why-card:hover .why-card-title { color: var(--white); }
.why-card-desc {
  font-size: 0.83rem;
  line-height: 1.75;
  color: var(--text-muted);
  transition: color 0.3s;
}
.why-card:hover .why-card-desc { color: rgba(255,255,255,0.55); }
@media (max-width: 1000px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .why-grid { grid-template-columns: 1fr; }
}
.why-grid-3col {
  grid-template-columns: repeat(3, 1fr);
  max-width: 820px;
}
.why-grid-3col .why-icon-num,
.why-grid-3col .why-card-title {
  overflow-wrap: break-word;
}
@media (max-width: 680px) {
  .why-grid-3col .why-card { padding: 1.25rem 0.6rem; }
  .why-grid-3col .why-icon-num { font-size: 1.5rem; margin-bottom: 0.35rem; }
  .why-grid-3col .why-card-title { font-size: 0.78rem; margin-bottom: 0.35rem; }
  .why-grid-3col .why-card-desc { font-size: 0.68rem; line-height: 1.4; }
}
@media (max-width: 420px) {
  .why-grid-3col .why-card { padding: 1rem 0.4rem; }
  .why-grid-3col .why-icon-num { font-size: 1.3rem; }
  .why-grid-3col .why-card-title { font-size: 0.72rem; }
  .why-grid-3col .why-card-desc { font-size: 0.64rem; }
}

/* ── CONTACT MAP ── */
.contact-map {
  margin-top: 2rem;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.2);
}
.contact-map iframe { display: block; }

/* ── FAQ SECTION ───────────────────────────────────────────────── */
#faq { background: var(--cream); }
.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--cream-dark);
}
.faq-item:first-child { border-top: 1px solid var(--cream-dark); }
.faq-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.65rem;
  letter-spacing: 0.01em;
  line-height: 1.4;
}
.faq-a {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--text-muted);
}
.faq-a a { color: var(--gold); text-decoration: none; }
.faq-a a:hover { text-decoration: underline; }

/* ── LENS LAB ──────────────────────────────────────────────────── */
#lens-lab {
  background: var(--navy);
  padding: 7rem 5%;
  position: relative;
  overflow: hidden;
}
.ll-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.ll-glow-1 {
  width: 700px; height: 700px;
  top: -300px; right: -200px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
}
.ll-glow-2 {
  width: 500px; height: 500px;
  bottom: -200px; left: -100px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
}
.ll-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 5rem;
  align-items: center;
}

/* Clock visual */
.ll-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.ll-clock {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ll-clock-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: llSpin 30s linear infinite;
}
@keyframes llSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.ll-num-wrap {
  position: relative;
  z-index: 2;
  text-align: center;
  line-height: 1;
  pointer-events: none;
}
.ll-big-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 8.5rem;
  font-weight: 300;
  line-height: 0.9;
  background: linear-gradient(170deg, #ffffff 0%, #f0d97a 35%, #c9a84c 65%, #8a6520 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 12px rgba(201,168,76,0.4));
}
.ll-big-unit {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.35rem;
}
.ll-subline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  line-height: 1.75;
  font-style: italic;
  letter-spacing: 0.02em;
  max-width: 260px;
}
.ll-subline em { color: rgba(201,168,76,0.7); font-style: italic; }

/* Content */
.ll-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: 0.01em;
}
.ll-title em { font-style: italic; color: var(--gold-light); }
.ll-desc {
  font-size: 0.9rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2rem;
}

/* Feature list */
.ll-features {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1.5rem;
  margin-bottom: 2.25rem;
}
.ll-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.ll-star {
  color: var(--gold);
  font-size: 0.6rem;
  flex-shrink: 0;
  margin-top: 4px;
}

/* Price block */
.ll-price-block {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 5px;
  overflow: hidden;
}
.ll-price-left {
  padding: 1.5rem 2rem;
  flex-shrink: 0;
}
.ll-price-eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.15rem;
}
.ll-price-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1;
  background: linear-gradient(170deg, #f0d97a 0%, #c9a84c 50%, #8a6520 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 6px rgba(201,168,76,0.25));
}
.ll-price-caption {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}
.ll-price-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(201,168,76,0.2);
}
.ll-price-right {
  padding: 1.5rem 1.75rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  font-style: italic;
}

@media (max-width: 960px) {
  .ll-inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .ll-visual { order: -1; }
  .ll-features { grid-template-columns: 1fr; }
  .ll-price-block { flex-direction: column; }
  .ll-price-divider { width: auto; height: 1px; align-self: stretch; }
  .ll-price-right { padding: 1.25rem 1.75rem; border-top: none; }
}

/* ── HERO LENS PILL ────────────────────────────────────────────── */
.hero-lens-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 2rem;
  padding: 0.7rem 1.25rem 0.7rem 0.85rem;
  background: rgba(13,27,42,0.75);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 50px;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
  cursor: pointer;
}
.hero-lens-pill:hover {
  border-color: rgba(201,168,76,0.75);
  background: rgba(13,27,42,0.9);
  transform: translateY(-1px);
}
.hlp-clock {
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.hlp-clock-svg {
  width: 44px;
  height: 44px;
  animation: llSpin 12s linear infinite;
}
.hlp-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.hlp-main {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
}
.hlp-price {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* ── LENS STRIP (homepage) ─────────────────────────────────────── */
#lens-strip {
  display: block;
  text-decoration: none;
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  padding: 3rem 5%;
  transition: background 0.25s;
  cursor: pointer;
}
#lens-strip:hover { background: #0f2030; }
.lstp-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 2.5rem;
}
.lstp-clock {
  position: relative;
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lstp-ring-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: llSpin 18s linear infinite;
}
.lstp-numwrap {
  position: relative;
  z-index: 2;
  text-align: center;
  line-height: 1;
}
.lstp-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1;
  background: linear-gradient(170deg, #f0d97a 0%, #c9a84c 55%, #8a6520 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lstp-unit {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.1rem;
}
.lstp-divider {
  width: 1px;
  height: 60px;
  background: rgba(201,168,76,0.2);
  flex-shrink: 0;
}
.lstp-eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.lstp-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 0.4rem;
}
.lstp-heading em { font-style: italic; color: var(--gold-light); }
.lstp-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}
.lstp-cta-wrap { flex-shrink: 0; }
.lstp-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(180deg, #f0d97a 0%, #c9a84c 45%, #a8852e 100%);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.65rem 1.4rem;
  border-radius: 3px;
  white-space: nowrap;
  border-top: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 3px 8px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.4);
  transition: transform 0.15s, box-shadow 0.15s;
}
#lens-strip:hover .lstp-cta {
  transform: translateY(-1px);
  box-shadow: 0 5px 12px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.4);
}
@media (max-width: 860px) {
  .lstp-inner { grid-template-columns: auto 1fr; gap: 1.5rem; }
  .lstp-divider { display: none; }
  .lstp-cta-wrap { grid-column: 1 / -1; }
}

/* ── EYEWEAR PAGE LENS CALLOUT ─────────────────────────────────── */
#lens-callout-ew {
  display: block;
  text-decoration: none;
  background: var(--navy);
  padding: 3.5rem 5%;
  cursor: pointer;
  transition: background 0.25s;
}
#lens-callout-ew:hover { background: #0f2030; }
.lcew-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 3rem;
}
.lcew-clock {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lcew-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: llSpin 16s linear infinite;
}
.lcew-numwrap {
  position: relative;
  z-index: 2;
  text-align: center;
  line-height: 1;
}
.lcew-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1;
  background: linear-gradient(170deg, #f0d97a 0%, #c9a84c 55%, #8a6520 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lcew-unit {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.1rem;
  font-family: 'Cormorant Garamond', serif;
}
.lcew-eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.lcew-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 0.4rem;
}
.lcew-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}
.lcew-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(180deg, #f0d97a 0%, #c9a84c 45%, #a8852e 100%);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.65rem 1.4rem;
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
  border-top: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 3px 8px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.4);
  transition: transform 0.15s, box-shadow 0.15s;
}
#lens-callout-ew:hover .lcew-cta {
  transform: translateY(-1px);
  box-shadow: 0 5px 12px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.4);
}
@media (max-width: 768px) {
  .lcew-inner { grid-template-columns: auto 1fr; gap: 1.5rem; }
  .lcew-cta { grid-column: 1 / -1; }
}

/* ─────────────────────────────────────────────────────────────────
   NAV DROPDOWN (Eye Education submenu)
───────────────────────────────────────────────────────────────── */
.nav-links .has-dropdown { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.2);
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  transform: translateX(-50%) translateY(4px);
  padding: 0.4rem 0;
  z-index: 200;
  border-radius: 12px;
  overflow: hidden;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-divider {
  height: 1px;
  margin: 0.3rem 1rem 0.4rem;
  background: rgba(201,168,76,0.2);
}
.nav-dropdown a {
  display: block;
  padding: 0.65rem 1.4rem;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0;
  text-transform: none;
  border: none;
}
.nav-dropdown a:hover { color: var(--gold); background: var(--cream); }
.nav-dropdown a.nav-dropdown-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.85rem;
}
.nav-dropdown a.nav-dropdown-all:hover { color: var(--gold); }
.nav-dropdown a.nav-dropdown-all::after {
  content: '→';
  color: var(--gold);
  font-size: 0.75rem;
  transition: transform 0.2s;
}
.nav-dropdown a.nav-dropdown-all:hover::after { transform: translateX(3px); }
.nav-dropdown a:not(.nav-dropdown-all) {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.nav-dropdown-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--gold);
}
.nav-dropdown-mega {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-width: 520px;
}
.nav-dropdown-mega .nav-dropdown-all,
.nav-dropdown-mega .nav-dropdown-divider {
  grid-column: 1 / -1;
}
.nav-dropdown-col { display: flex; flex-direction: column; }
.nav-dropdown-col:first-child { border-right: 1px solid rgba(201,168,76,0.15); }
.nav-dropdown-col-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.6rem 1.4rem 0.4rem;
}
.nav-mobile-parent {
  color: var(--navy) !important;
  font-weight: 600 !important;
}
.nav-mobile-sub {
  padding-left: 2.25rem !important;
  font-size: 0.75rem !important;
  color: var(--text-muted) !important;
  background: rgba(201,168,76,0.03);
  border-bottom: 1px solid rgba(201,168,76,0.05) !important;
}
.nav-mobile-sub::before {
  content: '↳ ';
  color: var(--gold);
}

/* ─────────────────────────────────────────────────────────────────
   EDUCATION ARTICLES (expanded articles)
───────────────────────────────────────────────────────────────── */
.edu-articles { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.edu-article {
  border-bottom: 1px solid rgba(201,168,76,0.18);
  padding: 3rem 0;
}
.edu-article:first-child { border-top: 1px solid rgba(201,168,76,0.18); }
.edu-article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.edu-article-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(201,168,76,0.3);
}
.edu-article-time {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.edu-article h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.edu-article-preview p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 72ch;
}
.edu-article-full {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.edu-article.expanded .edu-article-full { max-height: 4000px; }
.edu-article-full h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin: 1.75rem 0 0.6rem;
}
.edu-article-full p {
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--text-muted);
  max-width: 72ch;
  margin-bottom: 0.85rem;
}
.edu-article-full ul, .edu-article-full ol {
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--text-muted);
  padding-left: 1.5rem;
  margin-bottom: 0.85rem;
  max-width: 68ch;
}
.edu-article-full li { margin-bottom: 0.35rem; }
.edu-article-full strong { color: var(--navy); font-weight: 600; }
.edu-article-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.edu-read-more {
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.6rem 1.35rem;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.edu-read-more:hover { background: var(--gold); color: var(--white); }
.edu-article .edu-link {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.04em;
}
.edu-article .edu-link:hover { color: var(--gold); }

/* ─────────────────────────────────────────────────────────────────
   WHAT TO EXPECT (services.html)
───────────────────────────────────────────────────────────────── */
#what-to-expect { background: var(--cream); }
.expect-header { max-width: 620px; margin-bottom: 3.5rem; }
.expect-steps {
  max-width: 860px;
  display: flex;
  flex-direction: column;
}
.expect-step {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: 0 2rem;
  position: relative;
}
.expect-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 1.55rem;
  top: 3.5rem;
  bottom: 0;
  width: 1px;
  background: rgba(201,168,76,0.3);
}
.expect-num {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid rgba(201,168,76,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 500;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.expect-content { padding: 0.5rem 0 3rem; }
.expect-step:last-child .expect-content { padding-bottom: 0; }
.expect-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.expect-content p {
  font-size: 0.9rem;
  line-height: 1.82;
  color: var(--text-muted);
  max-width: 58ch;
}
.expect-total {
  margin-top: 3rem;
  padding: 1.25rem 1.75rem;
  border: 1px solid rgba(201,168,76,0.3);
  border-left: 3px solid var(--gold);
  background: var(--white);
  max-width: 500px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.expect-total strong { color: var(--navy); }

/* ─────────────────────────────────────────────────────────────────
   FAQ ACCORDION (services.html)
───────────────────────────────────────────────────────────────── */
.faq-accordion { max-width: 820px; margin: 0 auto; }
.faq-accordion-item {
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.faq-accordion-item:first-child { border-top: 1px solid rgba(201,168,76,0.2); }
.faq-accordion-btn {
  width: 100%;
  text-align: left;
  padding: 1.4rem 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.35;
  transition: color 0.2s;
}
.faq-accordion-btn:hover { color: var(--gold); }
.faq-chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: var(--gold);
}
.faq-accordion-item.open .faq-chevron { transform: rotate(180deg); }
.faq-accordion-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.faq-accordion-body p {
  padding: 0 3rem 1.5rem 0;
  font-size: 0.92rem;
  line-height: 1.88;
  color: var(--text-muted);
}
.faq-accordion-body a { color: var(--gold); text-decoration: none; }
.faq-accordion-body a:hover { text-decoration: underline; }

/* ─────────────────────────────────────────────────────────────────
   GLOSSARY PAGE
───────────────────────────────────────────────────────────────── */
#glossary { background: var(--white); }
.glossary-intro { max-width: 640px; margin-bottom: 3.5rem; }
.glossary-intro p { font-size: 0.95rem; line-height: 1.85; color: var(--text-muted); }
.glossary-alpha-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 3.5rem;
  padding: 1rem 0 1.25rem;
  border-bottom: 1px solid rgba(201,168,76,0.18);
  position: sticky;
  top: 110px;
  background: var(--white);
  z-index: 50;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.glossary-alpha-btn {
  width: 2.1rem;
  height: 2.1rem;
  background: none;
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  text-decoration: none;
}
.glossary-alpha-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold);
}
.glossary-section { margin-bottom: 3rem; scroll-margin-top: 120px; }
.glossary-letter-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--gold);
  border-bottom: 1px solid rgba(201,168,76,0.25);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  line-height: 1;
}
.glossary-term {
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0 2rem;
  align-items: baseline;
}
.glossary-term dt {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
}
.glossary-term dd {
  font-size: 0.9rem;
  line-height: 1.82;
  color: var(--text-muted);
  margin: 0;
}
.glossary-term dd em {
  font-style: italic;
  color: var(--navy);
  font-size: 0.88rem;
}
@media (max-width: 640px) {
  .glossary-term { grid-template-columns: 1fr; gap: 0.3rem; }
  .glossary-term dt { font-size: 1rem; }
}


/* ─────────────────────────────────────────────────────────────────
   EYEWEAR CINEMATIC SHOWCASE
───────────────────────────────────────────────────────────────── */
#eyewear-showcase {
  position: relative;
  width: 100%;
  height: clamp(260px, 40vw, 600px);
  overflow: hidden;
  background: #000;
  display: block;
}
#eyewear-showcase::before,
#eyewear-showcase::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: clamp(24px, 4vw, 52px);
  background: #000;
  z-index: 15;
  pointer-events: none;
}
#eyewear-showcase::before { top: 0; }
#eyewear-showcase::after  { bottom: 0; }

.showcase-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.showcase-slide.active  { opacity: 1; z-index: 2; }
/* leaving sits on top while fading so the outgoing image holds its position */
.showcase-slide.leaving { opacity: 0; z-index: 3; }

.showcase-img {
  position: absolute;
  inset: -6%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

/* Shared animation timing for active + leaving */
.showcase-slide.active  .showcase-img,
.showcase-slide.leaving .showcase-img {
  animation-duration: 5.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
}
/* Running when visible, paused when leaving — same name so animation doesn't restart */
.showcase-slide.active  .showcase-img { animation-play-state: running; }
.showcase-slide.leaving .showcase-img { animation-play-state: paused;  }

/* Animation names applied identically for active + leaving */
.showcase-slide:nth-child(1).active  .showcase-img,
.showcase-slide:nth-child(1).leaving .showcase-img { animation-name: showcase-kb-a; }
.showcase-slide:nth-child(2).active  .showcase-img,
.showcase-slide:nth-child(2).leaving .showcase-img { animation-name: showcase-kb-b; }
.showcase-slide:nth-child(3).active  .showcase-img,
.showcase-slide:nth-child(3).leaving .showcase-img { animation-name: showcase-kb-c; }
.showcase-slide:nth-child(4).active  .showcase-img,
.showcase-slide:nth-child(4).leaving .showcase-img { animation-name: showcase-kb-d; }
.showcase-slide:nth-child(5).active  .showcase-img,
.showcase-slide:nth-child(5).leaving .showcase-img { animation-name: showcase-kb-a; }
.showcase-slide:nth-child(6).active  .showcase-img,
.showcase-slide:nth-child(6).leaving .showcase-img { animation-name: showcase-kb-b; }
.showcase-slide:nth-child(7).active  .showcase-img,
.showcase-slide:nth-child(7).leaving .showcase-img { animation-name: showcase-kb-c; }
.showcase-slide:nth-child(8).active  .showcase-img,
.showcase-slide:nth-child(8).leaving .showcase-img { animation-name: showcase-kb-d; }
.showcase-slide:nth-child(9).active  .showcase-img,
.showcase-slide:nth-child(9).leaving .showcase-img { animation-name: showcase-kb-a; }
.showcase-slide:nth-child(10).active  .showcase-img,
.showcase-slide:nth-child(10).leaving .showcase-img { animation-name: showcase-kb-b; }
.showcase-slide:nth-child(11).active  .showcase-img,
.showcase-slide:nth-child(11).leaving .showcase-img { animation-name: showcase-kb-c; }
.showcase-slide:nth-child(12).active  .showcase-img,
.showcase-slide:nth-child(12).leaving .showcase-img { animation-name: showcase-kb-d; }
.showcase-slide:nth-child(13).active  .showcase-img,
.showcase-slide:nth-child(13).leaving .showcase-img { animation-name: showcase-kb-a; }

@keyframes showcase-kb-a {
  0%   { transform: scale(1)    translate(0, 0); }
  100% { transform: scale(1.1)  translate(-2%, -1.5%); }
}
@keyframes showcase-kb-b {
  0%   { transform: scale(1.09) translate(-1.5%, 1%); }
  100% { transform: scale(1)    translate(2%, -1%); }
}
@keyframes showcase-kb-c {
  0%   { transform: scale(1)    translate(1.5%, 0.5%); }
  100% { transform: scale(1.1)  translate(-1.5%, -2%); }
}
@keyframes showcase-kb-d {
  0%   { transform: scale(1.08) translate(0.5%, -1.5%); }
  100% { transform: scale(1)    translate(-1.5%, 1.5%); }
}

.showcase-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.18) 50%, rgba(0,0,0,0.04) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 25%, transparent 65%, rgba(0,0,0,0.55) 100%);
  z-index: 3;
}

.showcase-caption {
  position: absolute;
  bottom: clamp(44px, 8vw, 88px);
  left: clamp(22px, 7%, 88px);
  z-index: 10;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s 0.55s ease, transform 0.65s 0.55s ease;
}
.showcase-slide.active .showcase-caption {
  opacity: 1;
  transform: translateY(0);
}
.showcase-eyeline {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.45rem;
}
.showcase-brand-name {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 5.5vw, 4rem);
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1;
}

.showcase-dots {
  position: absolute;
  bottom: clamp(10px, 1.8vw, 18px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 20;
}
.showcase-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.28);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
  flex-shrink: 0;
}
.showcase-dot.active {
  background: var(--gold);
  transform: scale(1.5);
}

.showcase-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  z-index: 20;
  opacity: 0.7;
  transition: none;
}
.showcase-progress.animating {
  width: 100%;
  transition: width 5s linear;
}

.showcase-counter {
  position: absolute;
  bottom: clamp(10px, 1.8vw, 18px);
  right: clamp(14px, 3%, 32px);
  z-index: 20;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 768px) {
  .showcase-caption { bottom: 48px; left: 20px; }
  .showcase-counter { display: none; }
}

/* ── MYOPIA MANAGEMENT ── */
#myopia-management { background: var(--cream); }
#dry-eye-treatments { background: var(--cream); }
.myopia-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 4rem;
  margin-bottom: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201,168,76,0.18);
}
.myopia-intro-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.85rem;
}
.myopia-intro-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-muted);
}
.myopia-intro-block p + p { margin-top: 0.85rem; }
.myopia-treatments-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 1.75rem;
}
.myopia-treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.myopia-treatment-card {
  background: var(--white);
  padding: 2.75rem 2.25rem;
  transition: background 0.3s;
  border-radius: 4px;
}
.myopia-treatment-card:hover { background: var(--navy); }
.myopia-treatment-card:hover .service-icon { color: var(--gold-light); }
.myopia-treatment-card:hover .service-name { color: var(--white); }
.myopia-treatment-card:hover .service-desc { color: rgba(255,255,255,0.6); }
.myopia-cta-strip {
  background: var(--navy);
  border-radius: 4px;
  padding: 3rem 2.5rem;
  text-align: center;
}
.myopia-cta-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin: 0 auto 1.75rem;
}
@media (max-width: 900px) {
  .myopia-treatment-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .myopia-treatment-grid { grid-template-columns: 1fr; }
  .myopia-intro-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── AREA SERVED ── */
#area-served {
  background: var(--cream);
  text-align: center;
}
.area-header {
  max-width: 600px;
  margin: 0 auto 3.5rem;
}
.area-header .section-label { justify-content: center; }
.area-header .section-label::before { display: none; }
.area-header .section-title em { font-style: italic; color: var(--gold); }
.area-header .section-sub { max-width: none; margin: 0 auto; }
.area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}
.area-card {
  background: var(--white);
  border-radius: 4px;
  padding: 3rem 2.75rem;
  border: 1px solid rgba(201,168,76,0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.area-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.area-drive {
  font-family: 'Inter', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.5);
  padding: 0.22rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}
.area-city {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 1.1rem;
}
.area-rule {
  width: 2rem;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.area-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--text-muted);
}
@media (max-width: 640px) { .area-grid { grid-template-columns: 1fr; } }

/* ── PROMO FLYER MODAL ── */
#promo-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vh 5vw;
  background: rgba(13, 27, 42, 0.78);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0s linear 0.45s;
}
#promo-overlay.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s ease, visibility 0s linear 0s;
}
.promo-modal {
  position: relative;
  /* Width is capped by max-width, viewport width, AND viewport height
     (via the aspect ratio) so the flyer never overflows or crops on
     short/tall or narrow/wide screens. 1536/1024 = 1.5.
     Caps scaled to 70% (30% smaller) of full flyer size. */
  width: min(784px, 64.4vw, calc(61.6vh * 1536 / 1024));
  aspect-ratio: 1536 / 1024;
  background: var(--cream);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(13, 27, 42, 0.35);
  transform: scale(0.92) translateY(10px);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease;
}
#promo-overlay.active .promo-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.promo-modal img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--cream);
}
.promo-close {
  position: absolute;
  top: 2.1%;
  right: 1.23%;
  width: 3.6%;
  aspect-ratio: 1;
  min-width: 24px;
  min-height: 24px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 50%;
}
.promo-close:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}
.promo-book {
  position: absolute;
  left: 77.5%;
  top: 88%;
  width: 21%;
  height: 6%;
  display: block;
}
.promo-book:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
  border-radius: 4px;
}
@media (max-width: 640px) {
  #promo-overlay { padding: 3vh 4vw; }
  .promo-modal {
    width: min(92.1vw, calc(83.3vh * 1536 / 1024));
    border-radius: 10px;
  }
}
