/* ─── Google Fonts ───────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garant:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* ─── Design Tokens ──────────────────────────────────────────── */
:root {
  --cream:        #f5f8fc;
  --cream-mid:    #e8eef5;
  --ink:          #0d1f2d;
  --ink-soft:     #3d5568;
  --green:        #1a4f7a;
  --green-dark:   #0d2e4e;
  --green-light:  #2573b0;
  --gold:         #b8933f;
  --gold-light:   #d4ad5c;
  --white:        #ffffff;
  --border:       rgba(26,79,122,0.12);
  --shadow-sm:    0 2px 12px rgba(13,31,45,0.07);
  --shadow-md:    0 8px 40px rgba(13,31,45,0.11);
  --shadow-lg:    0 24px 80px rgba(13,31,45,0.15);
  --r:            4px;
  --r-lg:         12px;
  --serif:        'Cormorant Garant', Georgia, serif;
  --sans:         'DM Sans', system-ui, sans-serif;
  --nav-h:        72px;
}

/* ─── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Utilities ──────────────────────────────────────────────── */
.wrap { width: min(1160px, 92vw); margin-inline: auto; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 30px; border-radius: 2px;
  cursor: pointer; border: none; transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,147,63,0.4); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.8); }
.btn-outline-green {
  background: transparent; color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-outline-green:hover { background: var(--green); color: var(--white); }
.btn-white { background: var(--white); color: var(--gold); }
.btn-white:hover { background: var(--ink); color: var(--white); transform: translateY(-2px); }

.section-label {
  display: block; font-family: var(--sans); font-size: 0.7rem;
  font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.section-title {
  font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 600; line-height: 1.15; color: var(--ink);
}
.section-title em { font-style: italic; color: var(--green); }
.section-sub {
  font-size: 1rem; color: var(--ink-soft);
  max-width: 580px; line-height: 1.75; margin-top: 16px;
}

/* ─── Floating Review Badges ─────────────────────────────────── */
.float-reviews {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%);
  z-index: 300; display: flex; flex-direction: column; gap: 4px;
}
.float-badge {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: rgba(255,255,255,0.96); border: 1px solid var(--border);
  border-right: none;
  border-radius: 10px 0 0 10px;
  padding: 12px 14px;
  width: 76px;
  box-shadow: -4px 4px 20px rgba(13,31,45,0.13);
  transition: width 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  text-decoration: none;
  transform: translateX(0);
}
.float-badge:hover {
  width: 88px;
  box-shadow: -6px 6px 28px rgba(13,31,45,0.2);
  transform: translateX(-4px);
}
.float-logo { width: 52px; height: 28px; object-fit: contain; }
.float-stars { font-size: 0.7rem; letter-spacing: 1px; line-height: 1; }
.float-stars-tp  { color: #00b67a; }
.float-stars-google { color: #fbbc05; }
.float-label {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-soft); text-align: center;
}

@media (max-width: 768px) {
  .float-reviews { display: none; }
}

/* ─── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,0.96);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: var(--white);
  box-shadow: 0 1px 32px rgba(28,43,28,0.09);
}
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.nav-logo {
  display: flex; align-items: center; justify-self: start;
  padding: 7px 10px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--r);
  box-shadow: 0 10px 30px rgba(13,31,45,0.13);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.nav-logo:hover { background: var(--white); box-shadow: 0 12px 34px rgba(13,31,45,0.18); }
.logo-main {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 600;
  color: var(--white); transition: color 0.4s;
}
.logo-sub {
  font-family: var(--sans); font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); transition: color 0.4s;
}
.nav.scrolled .logo-main { color: var(--ink); }
.nav.scrolled .logo-sub  { color: var(--gold); }
.nav-logo img {
  height: 38px !important;
  width: auto !important;
  object-fit: contain;
  filter: none;
}
.nav.scrolled .nav-logo { background: var(--white); border-color: var(--border); box-shadow: var(--shadow-sm); }
.nav-links { display: flex; gap: 32px; justify-self: center; }
.nav-links a {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--ink-soft);
  transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav.scrolled .nav-links a { color: var(--ink-soft); }
.nav.scrolled .nav-links a:hover { color: var(--ink); }

.nav-actions { display: flex; align-items: center; justify-content: flex-end; gap: 16px; justify-self: end; }

/* ─── Dropdowns ──────────────────────────────────────────────── */
.nav-item-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px);
  background: var(--white); min-width: 240px; padding: 12px 0;
  box-shadow: var(--shadow-md); border-radius: 0 0 8px 8px;
  border-top: 3px solid var(--gold);
  opacity: 0; visibility: hidden; transition: all 0.3s ease;
  z-index: 300;
}
.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown-menu li { width: 100%; }
.dropdown-menu a {
  display: block; padding: 10px 24px; font-size: 0.78rem;
  color: var(--ink-soft) !important; text-transform: none;
  letter-spacing: 0.04em; transition: all 0.2s;
}
.dropdown-menu a:hover { background: var(--cream); color: var(--gold) !important; padding-left: 28px; }
.dropdown-menu a::after { display: none; }

/* ─── Sub-page Elements ──────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: var(--cream-mid);
  color: var(--ink);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.page-hero p {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.breadcrumb {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.content-section { padding: 100px 0; }
.rich-text { max-width: 800px; margin: 0 auto; font-size: 1.05rem; color: var(--ink-soft); line-height: 1.8; }
.rich-text h2, .rich-text h3 { color: var(--ink); font-family: var(--serif); margin: 40px 0 20px; }
.rich-text p { margin-bottom: 24px; }
.rich-text ul { margin-bottom: 24px; list-style: disc; padding-left: 20px; }
.rich-text ol { margin-bottom: 24px; list-style: decimal; padding-left: 20px; }
.rich-text li { margin-bottom: 10px; }
.rich-text img,
.content-section > .wrap > img {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.content-media {
  margin: 0 0 44px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--cream-mid);
}
.content-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.content-section .rich-text > img:first-child {
  margin-bottom: 40px;
}
.content-section.flush-top { padding-top: 72px; }
.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 56px;
  align-items: center;
  margin-bottom: 72px;
}
.split-intro.reverse { grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr); }
.split-intro.reverse .split-media { order: 1; }
.split-intro.reverse .split-copy { order: 2; }
.split-media {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--cream-mid);
  box-shadow: var(--shadow-md);
}
.split-media img {
  width: 100%;
  min-height: 420px;
  height: 100%;
  object-fit: cover;
}
.split-copy h2,
.content-block h2,
.content-block h3 {
  font-family: var(--serif);
  color: var(--ink);
}
.split-copy h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
  margin-bottom: 22px;
}
.split-copy p,
.content-block p {
  color: var(--ink-soft);
  line-height: 1.82;
  margin-bottom: 18px;
}
.kicker {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.content-block {
  max-width: 920px;
  margin: 0 auto 76px;
}
.content-block.wide { max-width: none; }
.content-block h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.15;
  margin-bottom: 22px;
}
.content-block h3 {
  font-size: 1.55rem;
  line-height: 1.2;
  margin: 0 0 14px;
}
.content-block ul,
.content-block ol {
  color: var(--ink-soft);
  line-height: 1.75;
}
.content-block li { margin-bottom: 10px; }
.callout-panel {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
}
.callout-panel h2,
.callout-panel h3,
.callout-panel p,
.callout-panel li { color: var(--ink); }
.callout-panel p,
.callout-panel li { color: var(--ink-soft); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.card-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.info-card,
.step-card,
.package-card,
.faq-card,
.testimonial-card,
.related-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.info-card,
.step-card,
.package-card,
.faq-card,
.testimonial-card {
  padding: 30px;
}
.info-card h3,
.step-card h3,
.package-card h3,
.faq-card h3 {
  font-family: var(--serif);
  color: var(--ink);
  margin-bottom: 10px;
}
.info-card p,
.step-card p,
.package-card p,
.faq-card p,
.testimonial-card p {
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.72;
}
.step-card .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 18px;
}
.procedure-timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  counter-reset: procedure;
}
.procedure-timeline .step-card {
  position: relative;
  overflow: hidden;
}
.procedure-timeline .step-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(184,147,63,0));
}
.prep-feature {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-top: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.prep-feature figure {
  border-radius: var(--r);
  overflow: hidden;
  background: var(--cream-mid);
}
.prep-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.prep-feature h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  color: var(--ink);
  margin-bottom: 10px;
}
.prep-feature p {
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 10px;
}
.soft-note {
  font-size: 0.88rem;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}
.price-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.price-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px;
}
.price-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.price-card span {
  color: var(--ink-soft);
  font-size: 0.88rem;
}
.package-card {
  display: flex;
  flex-direction: column;
}
.package-price {
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
}
.package-card ul {
  margin: 14px 0 18px;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.65;
}
.model-note {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.image-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 36px 0 0;
}
.image-band img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.related-card { overflow: hidden; }
.related-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.related-card div { padding: 24px; }
.related-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--ink);
  margin-bottom: 10px;
}
.testimonial-card blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 18px;
}
.testimonial-card cite {
  color: var(--gold);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.aid-types-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.aid-type-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.aid-type-card img {
  height: 130px;
  width: 100%;
  object-fit: contain;
  margin-bottom: 22px;
  box-shadow: none;
}
.aid-type-card h3,
.aid-type-card h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.aid-type-card p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ─── Frames & Lenses Specifics ─────────────────────────────── */
.new-arrivals,
.brand-showcase,
.lens-suppliers {
  padding: 100px 0;
}
.brand-showcase { background: var(--cream-mid); }
.lens-suppliers { background: var(--cream); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .section-sub { margin-inline: auto; }

.arrivals-hero { border-radius: var(--r-lg); overflow: hidden; margin-bottom: 24px; box-shadow: var(--shadow-md); }
.arrivals-hero img { width: 100%; height: auto; transition: transform 0.6s ease; }
.arrivals-hero:hover img { transform: scale(1.02); }

.brand-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-bottom: 64px; }
.brand-feature-img { 
  height: 480px; border-radius: var(--r-lg); overflow: hidden; 
  background-size: cover; background-position: center; position: relative;
}
.brand-feature-overlay {
  position: absolute; inset: 0; background: rgba(13,31,45,0.4);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 40px; color: var(--white);
}
.brand-feature-overlay h3 { font-family: var(--serif); font-size: 2.4rem; margin-bottom: 8px; }
.brand-tag { 
  display: inline-block; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; 
  letter-spacing: 0.12em; color: var(--gold-light); margin-bottom: 16px;
}
.brand-feature-overlay p { font-size: 0.94rem; line-height: 1.6; opacity: 0.9; }
.brand-feature-points {
  margin: 14px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}
.brand-feature-points li {
  font-size: 0.84rem;
  line-height: 1.5;
  opacity: 0.95;
}

.brand-range-intro {
  margin: 8px auto 0;
  background: rgba(255,255,255,0.66);
}

.brand-logos-wrap {
  margin-top: 40px;
  padding-top: 34px;
  border-top: 1px solid var(--border);
}
.logo-rail-label {
  margin: 0 0 16px;
  text-align: center;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
}
.brand-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.logo-item {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
}
.logo-item img {
  max-height: 44px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  opacity: 0.82; filter: none; transition: opacity 0.25s, transform 0.25s;
}
.logo-item:hover img { opacity: 1; transform: scale(1.04); }

.lens-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.lens-card { 
  background: var(--white); padding: 48px 32px; border-radius: var(--r-lg); 
  text-align: center; box-shadow: var(--shadow-sm); transition: all 0.3s;
}
.lens-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.lens-logo { height: 64px; width: auto; margin-bottom: 24px; object-fit: contain; }
.lens-card h3 { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 16px; color: var(--ink); }
.lens-card p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.7; }
.lens-points {
  text-align: left;
  margin: 16px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}
.lens-points li {
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
.lens-cta {
  margin-top: 34px;
  text-align: left;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.blog-card-alt,
.team-member-alt {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.blog-card-alt {
  padding: 0 28px 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.blog-card-alt:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-alt img {
  width: calc(100% + 56px) !important;
  height: 240px !important;
  max-width: none;
  margin: 0 -28px 24px !important;
  border-radius: var(--r-lg) var(--r-lg) 0 0 !important;
  object-fit: cover;
}
.blog-card-alt h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.22;
  margin-bottom: 12px;
  color: var(--ink);
}
.blog-card-alt p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.team-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}
.team-member-alt {
  text-align: center;
  padding-bottom: 28px;
}
.team-member-alt img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top center;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 24px;
}
.team-member-alt h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  margin: 0 20px 4px;
}
.team-member-alt .role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 20px 10px;
}
.team-member-alt .desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 24px;
}

.nav-cta .btn { font-size: 0.75rem; padding: 10px 22px; }
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  color: var(--white); font-size: 1.5rem; line-height: 1;
}
.nav.scrolled .hamburger { color: var(--ink); }

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  padding-bottom: 96px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('assets/hearing-tests.jpg');
  background-size: cover; background-position: center 25%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    155deg,
    rgba(10,22,40,0.88) 0%,
    rgba(13,46,88,0.72) 55%,
    rgba(10,22,40,0.45) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 780px; padding-top: calc(var(--nav-h) + 48px);
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--sans); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 24px;
}
.hero-eyebrow span { display: block; width: 40px; height: 1.5px; background: var(--gold); }
.hero h1 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 1.06; color: var(--white); margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 1.08rem; color: rgba(255,255,255,0.78);
  line-height: 1.8; max-width: 560px; margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.45); font-size: 0.65rem;
  letter-spacing: 0.2em; text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; } 50% { opacity: 1; }
}

/* ─── Hero Social Proof Pills ────────────────────────────────── */
.hero-social-proof {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px;
}
.proof-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px; padding: 8px 18px 8px 10px;
  font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px); transition: background 0.25s, border-color 0.25s;
}
.proof-pill:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.4); }
.proof-pill img {
  height: 22px; width: auto; max-width: 76px; object-fit: contain;
  filter: none; opacity: 1;
  background: var(--white);
  border-radius: 999px;
  padding: 3px 7px;
}
.proof-pill-stars { color: #fbbc05; font-size: 0.85rem; letter-spacing: 1px; }
.proof-pill-tp .proof-pill-stars { color: #00b67a; }

/* ─── Why Us ─────────────────────────────────────────────────── */
.why-us { padding: 100px 0; background: var(--cream-mid); }
.why-us-header { text-align: center; margin-bottom: 64px; }
.why-us-header .section-label { color: var(--gold); }
.why-us-header .section-title { color: var(--ink); }
.why-us-header .section-sub { color: var(--ink-soft); margin-inline: auto; }
.why-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
}
.why-card {
  background: var(--white); padding: 44px 36px;
  border: 1px solid var(--border);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  position: relative; overflow: hidden;
}
.why-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.why-card:hover { background: var(--white); border-color: rgba(26,79,122,0.26); transform: translateY(-4px); }
.why-card:hover::after { transform: scaleX(1); }
.why-icon { font-size: 1.8rem; margin-bottom: 20px; line-height: 1; }
.why-card h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--ink); margin-bottom: 12px; }
.why-card p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.8; margin: 0; }

/* ─── Stats Bar ──────────────────────────────────────────────── */
.stats-bar { background: var(--cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-inner {
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat-item {
  padding: 40px 28px; text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  display: block; font-family: var(--serif); font-size: 2.8rem;
  font-weight: 600; color: var(--gold); line-height: 1; margin-bottom: 10px;
}
.stat-label {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-soft);
}

/* ─── Services ───────────────────────────────────────────────── */
.services { padding: 100px 0; background: var(--cream); }
.services-header { text-align: center; margin-bottom: 64px; }
.services-header .section-sub { margin-inline: auto; }
.services-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2px;
}
.service-card {
  background: var(--white); padding: 44px 32px 0;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 48px; height: 48px; margin-bottom: 24px;
  background: var(--cream-mid); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
}
.service-card h3 {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 600;
  line-height: 1.2; margin-bottom: 12px; color: var(--ink);
}
.service-card p {
  font-size: 0.88rem; color: var(--ink-soft); line-height: 1.75;
  margin-bottom: 12px; flex: 1;
}
.service-price {
  display: block; font-weight: 600; color: var(--green);
  font-size: 0.82rem; letter-spacing: 0.04em; margin-bottom: 20px;
}
.service-link {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 8px;
  padding-bottom: 32px; transition: gap 0.2s;
}
.service-link:hover { gap: 14px; }
.service-img {
  margin: 20px -32px 0; height: 190px; overflow: hidden;
  background: var(--cream-mid);
}
.service-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s ease;
}
.service-card:hover .service-img img { transform: scale(1.06); }

/* ─── Feature Sections ───────────────────────────────────────── */
.feature { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.feature-img { position: relative; overflow: hidden; background: var(--cream-mid); }
.feature-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.feature:hover .feature-img img { transform: scale(1.03); }
.feature-body {
  background: var(--white); color: var(--ink);
  padding: 88px 80px; display: flex; flex-direction: column; justify-content: center;
}
.feature.alt .feature-body { background: var(--cream); color: var(--ink); }
.feature-body .section-label { color: var(--gold); }
.feature.alt .feature-body .section-label { color: var(--gold); }
.feature-body .section-title { color: var(--ink); }
.feature.alt .feature-body .section-title { color: var(--ink); }
.feature-body .section-sub { color: var(--ink-soft); max-width: none; }
.feature.alt .feature-body .section-sub { color: var(--ink-soft); }
.feature-list { margin: 28px 0 36px; display: flex; flex-direction: column; gap: 14px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 0.94rem; line-height: 1.6; color: var(--ink-soft);
}
.split-copy .feature-list li,
.content-block .feature-list li { color: var(--ink-soft); }
.feature.alt .feature-list li { color: var(--ink-soft); }
.feature-list li::before {
  content: '';
  display: block; flex-shrink: 0;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23fff' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat;
  margin-top: 1px;
}

/* ─── Team ───────────────────────────────────────────────────── */
.team { padding: 100px 0; background: var(--cream); }
.team-header { text-align: center; margin-bottom: 64px; }
.team-header .section-sub { margin-inline: auto; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.team-card {
  background: var(--white); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-photo { height: 340px; overflow: hidden; background: var(--cream-mid); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.5s ease; }
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-info { padding: 32px 28px 36px; text-align: center; }
.team-info h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.team-role {
  display: block; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.team-bio { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.75; }

/* ─── Testimonials ───────────────────────────────────────────── */
.testimonials { background: var(--cream-mid); padding: 100px 0; }
.testimonials-header { text-align: center; margin-bottom: 64px; }
.testimonials-header .section-label { color: var(--gold); }
.testimonials-header .section-title { color: var(--ink); }
.testimonials-header .section-sub { color: var(--ink-soft); margin-inline: auto; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 52px; }
.review-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 36px 30px;
  transition: background 0.3s, border-color 0.3s;
}
.review-card:hover { background: var(--white); border-color: rgba(26,79,122,0.26); }
.review-stars { display: flex; gap: 3px; margin-bottom: 18px; font-size: 1rem; color: var(--gold-light); }
.review-quote {
  font-family: var(--serif); font-size: 1.15rem; font-style: italic;
  line-height: 1.65; color: var(--ink); margin-bottom: 22px;
}
.review-author {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(61,85,104,0.75);
}
.review-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.review-platform {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 2px; padding: 14px 26px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-soft);
  transition: background 0.25s, border-color 0.25s;
}
.review-platform:hover { background: var(--white); border-color: rgba(26,79,122,0.28); color: var(--ink); }
.review-platform img { height: 18px; width: auto; filter: none; opacity: 0.85; }
.review-platform:hover img { opacity: 1; }

/* ─── Our Story ──────────────────────────────────────────────── */
.about-story { background: var(--cream-mid); padding: 100px 0; }
.story-inner { max-width: 860px; margin-inline: auto; text-align: center; }
.story-inner .section-title { margin-bottom: 44px; }
.story-columns {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  text-align: left; margin-bottom: 52px;
}
.story-columns p { font-size: 0.96rem; color: var(--ink-soft); line-height: 1.85; }
.story-pull {
  font-family: var(--serif); font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-style: italic; font-weight: 600; line-height: 1.5;
  color: var(--green-dark);
  border-left: 4px solid var(--gold);
  padding: 24px 40px; margin: 0 0 44px;
  text-align: left; background: rgba(26,79,122,0.06); border-radius: 0 var(--r-lg) var(--r-lg) 0;
}
.story-close { font-size: 0.96rem; color: var(--ink-soft); line-height: 1.85; max-width: 680px; margin-inline: auto; }

/* ─── Review Platforms ───────────────────────────────────────── */
.review-platforms {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  margin-top: 60px;
}
.platform-badge {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-lg); padding: 32px 48px;
  transition: background 0.3s, border-color 0.3s, transform 0.25s;
  min-width: 220px;
}
.platform-badge:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.3); transform: translateY(-4px); }
.platform-badge-top {
  display: flex; align-items: center; justify-content: center;
  min-width: 128px; height: 44px;
  padding: 8px 14px;
  background: var(--white);
  border-radius: 999px;
}
.platform-logo-img { height: 26px; max-width: 104px; width: auto; object-fit: contain; filter: none; }
.platform-trustpilot .platform-logo-img { height: 24px; }
.platform-stars {
  font-size: 1.5rem; letter-spacing: 2px; color: #00b67a; line-height: 1;
}
.platform-stars-google { color: #fbbc05; }
.platform-label {
  font-size: 0.82rem; color: rgba(255,255,255,0.65); margin: 0; letter-spacing: 0.04em;
}
.platform-label strong { color: var(--white); }
.platform-cta {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold-light);
  transition: color 0.2s;
}
.platform-badge:hover .platform-cta { color: var(--white); }

/* ─── CTA Banner ─────────────────────────────────────────────── */
.cta-banner { background: var(--gold); padding: 80px 0; text-align: center; }
.cta-banner h2 {
  font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 600; color: var(--white); line-height: 1.18; margin-bottom: 14px;
}
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 36px; }
.cta-banner-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-ghost-white {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.9); }

/* ─── Contact ────────────────────────────────────────────────── */
.contact { padding: 100px 0; background: var(--cream-mid); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%;
  background: var(--green); display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.contact-item-label {
  display: block; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
}
.contact-item-body { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.7; }
.contact-item-body a:hover { color: var(--green); }
.contact-map {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-md); height: 440px;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; }

/* ─── Footer ─────────────────────────────────────────────────── */
.footer { background: var(--cream-mid); color: var(--ink); padding: 72px 0 28px; border-top: 1px solid var(--border); }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 52px; border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.footer-logo .logo-main { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--ink); margin-bottom: 4px; display: block; }
.footer-logo .logo-sub { font-size: 0.6rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 18px; }
.footer-logo p { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.75; max-width: 260px; }
.footer-logo address { font-size: 0.82rem; color: var(--ink-soft); font-style: normal; margin-top: 14px; line-height: 1.7; }
.footer-col h4 {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.85rem; color: var(--ink-soft); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--ink); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 0.78rem; color: rgba(61,85,104,0.82);
}
.footer-bottom a { color: var(--ink-soft); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--ink); }

/* ─── Scroll Reveal ──────────────────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
[data-reveal].visible { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1040px) {
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .feature { grid-template-columns: 1fr; min-height: auto; }
  .feature-img { height: 380px; }
  .feature-body { padding: 64px 52px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
.lens-grid, .team-row { grid-template-columns: 1fr; }
.brand-grid { grid-template-columns: 1fr; }
.brand-logos { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .split-intro,
  .split-intro.reverse,
  .card-grid,
  .card-grid.two,
  .aid-types-grid,
  .price-list,
  .related-grid,
  .procedure-timeline {
    grid-template-columns: 1fr 1fr;
  }
  .split-intro.reverse .split-media,
  .split-intro.reverse .split-copy { order: initial; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav-inner { grid-template-columns: 1fr auto; }
  .nav-logo { padding: 6px 8px; }
  .nav-logo img { height: 32px !important; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .team-grid { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; }
  .reviews-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .story-columns { grid-template-columns: 1fr; gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-map { height: 320px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .feature-body { padding: 52px 28px; }
  .blog-grid { grid-template-columns: 1fr; }
.new-arrivals, .brand-showcase, .lens-suppliers { padding: 72px 0; }
.brand-feature-img { height: 380px; }
.brand-logos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split-intro,
  .split-intro.reverse,
  .card-grid,
  .card-grid.two,
  .aid-types-grid,
  .price-list,
  .related-grid,
  .image-band,
  .procedure-timeline,
  .prep-feature {
    grid-template-columns: 1fr;
  }
  .split-media img { min-height: 300px; }
  .callout-panel { padding: 32px 26px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  .hero-ctas, .cta-banner-btns, .review-ctas { flex-direction: column; align-items: flex-start; }
  .cta-banner-btns, .review-ctas { align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
