/* ==========================================================
   Gelner Optometry — Orion's Comet engine, palette-plum-copper
   ========================================================== */

/* --- Tokens --- */
:root {
  /* Brand (palette-plum-copper) */
  --brand-primary: #5C3A4D;          /* muted plum */
  --brand-primary-soft: #EFE4E7;     /* tinted-section bg */
  --brand-primary-deep: #3F2735;     /* deeper for hover/etc */
  --brand-accent: #B97140;           /* warm copper */
  --brand-accent-soft: #F0E1D2;

  /* Locked neutrals (engine-level — don't override) */
  --cream: #F5EFE6;
  --bone: #FAF6EF;
  --ink: #1F1B16;
  --ink-soft: #3D362E;
  --hairline: #E4DCC9;
  --star: #C9923E;

  /* Text */
  --text: #28231D;
  --text-muted: #6B6358;

  /* Type */
  --serif: "Source Serif 4", "Source Serif Pro", Georgia, "Times New Roman", serif;
  --sans: "Inter Tight", "Helvetica Neue", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Scale */
  --maxw: 1180px;
  --gutter: clamp(20px, 4vw, 40px);
  --section-y: clamp(40px, 5vw, 72px);
  --radius-sm: 4px;
  --radius-md: 8px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

img { max-width: 100%; display: block; }

a { color: var(--brand-primary); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--brand-primary-deep); }

/* --- Type system --- */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin: 0 0 18px;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; color: var(--ink); margin: 0 0 .5em; letter-spacing: -0.01em; }
h1 { font-size: clamp(38px, 5.6vw, 64px); line-height: 1.05; }
h2 { font-size: clamp(30px, 3.8vw, 44px); line-height: 1.12; }
h3 { font-size: clamp(22px, 2.4vw, 28px); line-height: 1.2; }
h4 { font-size: 19px; line-height: 1.3; }

p { margin: 0 0 1.1em; }
.lede { font-size: clamp(18px, 1.6vw, 21px); line-height: 1.55; color: var(--ink-soft); }
.muted { color: var(--text-muted); }

/* --- Layout --- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-y) 0; }
.section--cream { background: var(--cream); }
.section--bone { background: var(--bone); }
.section--tint { background: var(--brand-primary-soft); }
.section--ink { background: var(--ink); color: var(--bone); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--bone); }
.section--brand { background: var(--brand-primary); color: var(--bone); }
.section--brand h1, .section--brand h2, .section--brand h3 { color: var(--bone); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 16px 26px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  text-decoration: none;
  min-height: 52px;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn--primary {
  background: var(--brand-primary);
  color: #fff;
}
.btn--primary:hover { background: var(--brand-primary-deep); color: #fff; }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--bone); }
.section--ink .btn--ghost, .section--brand .btn--ghost { color: var(--bone); border-color: var(--bone); }
.section--ink .btn--ghost:hover, .section--brand .btn--ghost:hover { background: var(--bone); color: var(--ink); }
.section--brand .btn--primary { background: var(--bone); color: var(--brand-primary); }
.section--brand .btn--primary:hover { background: #fff; color: var(--brand-primary-deep); }

.btn--lg { padding: 20px 32px; font-size: 17px; min-height: 60px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* --- Header --- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 239, 230, 0.94);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--hairline);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--gutter);
  max-width: var(--maxw); margin: 0 auto;
  gap: 24px;
}
.brand-lockup { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.brand-lockup img { height: 40px; width: auto; }
.brand-lockup .brand-text {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  line-height: 1;
}
.brand-lockup .brand-text small {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-top: 4px;
}

.site-nav { display: flex; gap: 26px; align-items: center; }
.site-nav a {
  font-family: var(--sans);
  font-size: 15px;
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
}
.site-nav a:hover, .site-nav a.active { color: var(--brand-primary); }
.site-nav .nav-call {
  background: var(--brand-primary);
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
}
.site-nav .nav-call:hover { background: var(--brand-primary-deep); color: #fff; }

/* mobile sticky icon header */
:root { --mobile-bar-h: 64px; --mobile-bottom-h: 56px; }
.mobile-icon-bar { display: none; }
.mobile-bottom-bar { display: none; }
.mobile-menu { display: none; }

@media (max-width: 760px) {
  .site-header { display: none; }

  .mobile-menu {
    display: none;
    position: fixed; top: var(--mobile-bar-h); left: 0; right: 0; z-index: 49;
    background: var(--bone); border-bottom: 1px solid var(--hairline);
    padding: 8px var(--gutter) 16px;
  }
  .mobile-menu.is-open { display: block; }
  .mobile-menu__link {
    display: block; padding: 14px 0; text-decoration: none;
    color: var(--ink); font-weight: 500;
    border-bottom: 1px solid var(--hairline);
  }
  .mobile-menu__link:last-child { border-bottom: 0; }

  body { padding-bottom: var(--mobile-bottom-h); }

  .mobile-icon-bar {
    display: flex;
    position: sticky; top: 0; z-index: 50;
    background: rgba(245, 239, 230, 0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--hairline);
    padding: 10px 16px;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }
  .mobile-icon-bar .brand-lockup img { height: 32px; }
  .mobile-icon-bar .brand-lockup .brand-text { font-size: 16px; }
  .mobile-icon-bar .brand-lockup .brand-text small { display: none; }
  .mobile-icons { display: flex; gap: 6px; }
  .mobile-icons a {
    width: 44px; height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--ink); text-decoration: none; border-radius: 6px;
  }
  .mobile-icons a:hover { background: var(--brand-primary-soft); }
  .mobile-icons svg { width: 22px; height: 22px; }

  .mobile-bottom-bar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
    background: var(--ink);
    border-top: 1px solid #000;
  }
  .mobile-bottom-bar a {
    padding: 16px 12px;
    color: var(--bone);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    min-height: 56px;
    display: flex; align-items: center; justify-content: center; gap: 8px;
  }
  .mobile-bottom-bar a:first-child {
    background: var(--brand-primary);
    color: #fff;
  }
  body { padding-bottom: 56px; }
}

@media (max-width: 760px) {
  .site-nav .nav-link { display: none; }
}

/* --- Hero --- */
.hero {
  background: var(--cream);
  padding: clamp(32px, 5vw, 56px) 0 clamp(56px, 7vw, 96px);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.hero__photo {
  aspect-ratio: 4 / 5;
  background: var(--brand-primary-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo .photo-caption {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(31, 27, 22, 0.78);
  color: var(--bone);
  font-size: 12px;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
}
.hero h1 { margin-bottom: 22px; }
.hero .lede { margin-bottom: 28px; }
.hero__reviews {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
  font-size: 14px;
  color: var(--ink-soft);
}
.hero__reviews .stars { color: var(--star); letter-spacing: 0.05em; font-size: 16px; }
.hero__reviews .rating { font-weight: 600; color: var(--ink); }
.hero__trust {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-muted);
  border-top: 1px solid var(--hairline);
  padding-top: 18px;
}

@media (max-width: 760px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__photo { aspect-ratio: 4 / 3.5; order: -1; }
}

/* --- Reviews strip --- */
.reviews-strip { text-align: center; }
.reviews-strip__head {
  display: flex; flex-direction: column; align-items: center;
  margin-bottom: 56px;
}
.reviews-strip__rating {
  font-size: 22px;
  color: var(--star);
  letter-spacing: 0.1em;
}
.reviews-strip__rating-text {
  margin-top: 8px;
  font-size: 15px;
  color: var(--ink-soft);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}
.review-card {
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: left;
}
.review-card .stars { color: var(--star); margin-bottom: 12px; letter-spacing: 0.06em; }
.review-card blockquote {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink);
  margin: 0 0 18px;
  quotes: "\201C" "\201D";
}
.review-card blockquote::before { content: open-quote; color: var(--brand-accent); margin-right: 2px; }
.review-card blockquote::after { content: close-quote; color: var(--brand-accent); margin-left: 2px; }
.review-card cite {
  font-style: normal;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

@media (max-width: 880px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* --- Services grid --- */
.services-head { text-align: center; margin-bottom: 56px; }
.services-head .lede { max-width: 640px; margin: 12px auto 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bone);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -18px rgba(31, 27, 22, 0.25);
  color: inherit;
}
.service-card__photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--brand-primary-soft);
}
.service-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.service-card__body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.service-card__body h3 { margin: 0 0 8px; font-size: 22px; }
.service-card__body p { color: var(--ink-soft); font-size: 15px; flex: 1; margin: 0; }
.service-card__more {
  margin-top: 16px;
  font-size: 14px;
  color: var(--brand-accent);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Typographic service card variant (Dry Eye) */
.service-card--typo .service-card__photo {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-deep));
  color: var(--bone);
  text-align: center;
  padding: 32px;
}
.service-card--typo .service-card__photo span {
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1.1;
  font-style: italic;
  letter-spacing: -0.01em;
}

@media (max-width: 880px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .services-grid { grid-template-columns: 1fr; } }

/* --- About teaser --- */
.about-teaser__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.about-teaser__photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--brand-primary-soft);
  max-width: 380px;
}
.about-teaser__photo img { width: 100%; height: 100%; object-fit: cover; }
.about-teaser h2 { margin-bottom: 28px; max-width: 14ch; }
.about-teaser p { font-size: 17px; color: var(--ink-soft); }
.about-teaser .read-more {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  text-decoration: none;
  color: var(--brand-primary);
  border-bottom: 1px solid var(--brand-primary);
  padding-bottom: 2px;
}
@media (max-width: 760px) { .about-teaser__grid { grid-template-columns: 1fr; } }

/* --- Specialty highlight --- */
.specialty__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.specialty__photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--brand-primary);
}
.specialty__photo img { width: 100%; height: 100%; object-fit: cover; }
.specialty .pull-quote {
  border-left: 3px solid var(--brand-accent);
  padding: 6px 0 6px 22px;
  margin: 28px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
}
.specialty .pull-quote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: 14px;
  color: var(--text-muted);
  font-family: var(--sans);
  letter-spacing: 0.02em;
}
@media (max-width: 760px) { .specialty__grid { grid-template-columns: 1fr; } }

/* --- Anti-promise (dark) --- */
.anti-promise { text-align: center; padding: clamp(48px, 5vw, 72px) 0; }
.anti-promise h2 {
  font-size: clamp(34px, 4.6vw, 54px);
  max-width: 18ch;
  margin: 0 auto 28px;
}
.anti-promise p {
  max-width: 640px;
  margin: 0 auto 18px;
  color: rgba(250, 246, 239, 0.86);
  font-size: 18px;
  line-height: 1.6;
}

/* --- Personality grid --- */
.personality__head { text-align: center; margin-bottom: 48px; max-width: 600px; margin-left: auto; margin-right: auto; }
.personality__head .lede { font-style: italic; color: var(--ink-soft); }
.personality-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  aspect-ratio: 16 / 10;
}
.personality-grid > div {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--brand-primary-soft);
}
.personality-grid > div img { width: 100%; height: 100%; object-fit: cover; }
.personality-grid > div:nth-child(1) { grid-row: span 2; }
@media (max-width: 760px) {
  .personality-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    aspect-ratio: auto;
  }
  .personality-grid > div { aspect-ratio: 1 / 1; }
  .personality-grid > div:nth-child(1) { grid-column: span 2; aspect-ratio: 4 / 3; grid-row: auto; }
}

/* --- FAQ accordion --- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--hairline);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 8px 22px 0;
  font-family: var(--serif);
  font-size: 21px;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 26px;
  color: var(--brand-accent);
  font-weight: 300;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item__body {
  padding: 0 0 22px;
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 65ch;
}
.faq-item__body p:last-child { margin-bottom: 0; }
.faq-group-heading {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin: 48px 0 12px;
}
.faq-group-heading:first-of-type { margin-top: 0; }

/* --- Location block --- */
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(28px, 4vw, 56px);
}
.location__info { padding-top: 8px; }
.location__info h3 { font-size: 20px; margin: 24px 0 8px; font-family: var(--sans); font-weight: 600; letter-spacing: 0.02em; color: var(--ink); }
.location__info h3:first-child { margin-top: 0; }
.location__info p, .location__info address { font-style: normal; font-size: 16px; color: var(--ink-soft); }
.hours-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.hours-table th, .hours-table td { padding: 8px 0; text-align: left; border-bottom: 1px solid var(--hairline); }
.hours-table th { font-weight: 500; color: var(--text-muted); width: 40%; }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: 0; }
.hours-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}
.location__map {
  background: var(--brand-primary-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 380px;
  position: relative;
}
.location__map iframe { width: 100%; height: 100%; border: 0; position: absolute; inset: 0; }
@media (max-width: 760px) { .location__grid { grid-template-columns: 1fr; } .location__map { min-height: 320px; } }

/* --- Final CTA (brand) --- */
.final-cta { text-align: center; padding: clamp(48px, 5vw, 72px) 0; }
.final-cta h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 20px;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}
.final-cta p {
  max-width: 580px;
  margin: 0 auto 32px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(250, 246, 239, 0.92);
}
.final-cta .cta-row { justify-content: center; }

/* --- Footer --- */
.site-footer { padding: 64px 0 48px; }
.site-footer .wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
}
.site-footer h4 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 14px;
}
.site-footer a { color: rgba(250, 246, 239, 0.85); text-decoration: none; display: block; padding: 4px 0; font-size: 15px; }
.site-footer a:hover { color: #fff; }
.site-footer .footer-brand img { height: 44px; filter: invert(1); margin-bottom: 14px; }
.site-footer .footer-brand p { font-size: 14px; color: rgba(250, 246, 239, 0.7); line-height: 1.6; }
.site-footer .footer-legal {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(250, 246, 239, 0.12);
  padding-top: 24px;
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(250, 246, 239, 0.55);
}
.site-footer .footer-legal a { display: inline; color: rgba(250, 246, 239, 0.7); padding: 0; }
.site-footer .footer-legal .powered { font-style: italic; }
@media (max-width: 760px) {
  .site-footer .wrap { grid-template-columns: 1fr 1fr; }
  .site-footer .footer-brand { grid-column: span 2; }
}

/* --- Page header band (interior pages) --- */
.page-band {
  padding: clamp(60px, 7vw, 100px) 0 clamp(40px, 5vw, 60px);
  border-bottom: 1px solid var(--hairline);
}
.page-band__crumb {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--brand-accent);
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 600;
}
.page-band__crumb a { color: inherit; text-decoration: none; }
.page-band h1 { max-width: 18ch; margin-bottom: 18px; }
.page-band .lede { max-width: 60ch; }

/* --- About-specific --- */
.about-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
  padding: clamp(48px, 6vw, 88px) 0;
}
.about-hero__title { padding-bottom: 16px; }
.about-hero__title h1 { font-size: clamp(40px, 5.6vw, 64px); }
.about-hero__accent {
  background: var(--bone);
  padding: 22px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 36px -22px rgba(31, 27, 22, 0.3);
}
.about-hero__accent img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 2px; }
.about-hero__accent figcaption {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
  line-height: 1.4;
}
@media (max-width: 760px) { .about-hero { grid-template-columns: 1fr; } .about-hero__accent { max-width: 360px; margin: 0 auto; } }

.story-block {
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.story-block h2 { color: var(--ink); margin-bottom: 28px; }
.story-block p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 4em;
  float: left;
  line-height: 0.85;
  margin: 6px 12px 0 0;
  color: var(--brand-primary);
  font-weight: 400;
}
.story-block .pull-quote {
  border-left: 3px solid var(--brand-accent);
  padding: 8px 0 8px 24px;
  margin: 36px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  line-height: 1.4;
  color: var(--ink);
}

/* Doctor bio */
.doctor-bio {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.doctor-bio__photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--brand-primary-soft);
}
.doctor-bio__photo img { width: 100%; height: 100%; object-fit: cover; }
.doctor-bio h3 { font-family: var(--serif); font-size: 28px; margin: 0 0 4px; }
.doctor-bio .credentials { font-size: 14px; letter-spacing: 0.04em; color: var(--brand-accent); text-transform: uppercase; margin-bottom: 24px; font-weight: 600; }
.doctor-bio .faao-callout {
  background: var(--brand-primary-soft);
  border-left: 3px solid var(--brand-accent);
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 15px;
  color: var(--ink-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
@media (max-width: 760px) { .doctor-bio { grid-template-columns: 1fr; } .doctor-bio__photo { max-width: 320px; } }

/* Team text-only */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 28px;
}
.team-member {
  border-top: 2px solid var(--brand-accent);
  padding-top: 18px;
}
.team-member h4 { font-family: var(--serif); font-size: 22px; margin: 0 0 4px; }
.team-member .role { font-size: 13px; letter-spacing: 0.06em; color: var(--brand-accent); text-transform: uppercase; margin-bottom: 12px; font-weight: 600; }
.team-member p { color: var(--ink-soft); font-size: 15px; }
@media (max-width: 580px) { .team-grid { grid-template-columns: 1fr; } }

/* Philosophy tenets */
.tenets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 48px;
  max-width: 880px;
  margin: 0 auto;
}
.tenet h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--ink);
}
.tenet h3::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--brand-accent);
  margin-bottom: 16px;
}
.tenet p { color: var(--ink-soft); font-size: 15px; }
@media (max-width: 760px) { .tenets { grid-template-columns: 1fr; } }

/* --- Page hero (service / about / faq / contact) --- */
.page-hero {
  background: var(--cream);
  padding: clamp(48px, 6vw, 96px) 0 clamp(24px, 3vw, 40px);
}
.page-hero h1 { margin-bottom: 18px; }
.page-hero .lede { margin-bottom: 28px; max-width: 56ch; }
.page-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.page-hero__grid > div:first-child { display: flex; flex-direction: column; align-items: flex-start; }
.page-hero__grid > div:first-child .cta-row { justify-content: flex-start; }
.page-hero__photo {
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin-left: auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--brand-primary-soft);
}
.page-hero__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-hero__typo {
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin-left: auto;
  background: var(--brand-primary);
  color: var(--bone);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  padding: 32px; text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
}
@media (max-width: 760px) {
  .page-hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .page-hero__photo, .page-hero__typo { aspect-ratio: 4 / 3.5; order: -1; }
  .page-hero__grid > div:first-child { align-items: stretch; }
}

/* --- Legal pages (Privacy / Accessibility) --- */
.page-hero--legal {
  padding: clamp(40px, 4.5vw, 64px) 0 clamp(20px, 2.5vw, 32px);
  background: var(--cream);
}
.page-hero--legal h1 { margin-bottom: 10px; }
.page-hero--legal .legal-meta {
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin: 0;
}
.legal-body {
  padding: clamp(20px, 2.4vw, 32px) 0;
}
.legal-body .wrap {
  max-width: 720px;
}
.legal-body h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 30px);
  line-height: 1.2;
  margin: 0 0 18px;
}
.legal-body h2:not(:first-child) {
  margin-top: 44px;
}
.legal-body p,
.legal-body li {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink);
  max-width: 65ch;
}
.legal-body p { margin: 0 0 18px; }
.legal-body ul {
  margin: 0 0 22px;
  padding-left: 22px;
}
.legal-body li { margin-bottom: 8px; }
.legal-body strong { font-weight: 600; }
.legal-body a {
  color: var(--brand-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-body a[href^="tel:"],
.legal-body a[href^="mailto:"] {
  display: inline-block;
  min-height: 44px;
  line-height: 44px;
}
.legal-address {
  font-style: normal;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink);
  padding: 20px 22px;
  background: var(--bone);
  border-left: 3px solid var(--brand-accent);
  margin: 0 0 22px;
}
.legal-crosslink {
  margin-top: 36px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-soft);
}
@media (max-width: 580px) {
  .legal-body p, .legal-body li, .legal-address { font-size: 18px; }
}

/* --- Glossary page --- */
.glossary-nav-section { padding: clamp(20px, 2vw, 28px) 0; }
.glossary-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.glossary-nav a {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  padding: 10px 18px;
  border: 1px solid rgba(38, 32, 28, 0.18);
  border-radius: 999px;
  background: var(--bone);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.glossary-nav a:hover {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
}
.glossary-body { padding: clamp(36px, 4.4vw, 64px) 0; }
.glossary-body .wrap { max-width: 760px; }
.glossary-body h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 36px);
  margin: 0 0 28px;
  scroll-margin-top: 90px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(38, 32, 28, 0.14);
}
.glossary-list { margin: 0; }
.glossary-entry {
  padding: 22px 0;
  border-bottom: 1px solid rgba(38, 32, 28, 0.1);
}
.glossary-entry:last-child { border-bottom: 0; }
.glossary-entry dt {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 23px);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.glossary-entry dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  max-width: 65ch;
}
@media (max-width: 580px) {
  .glossary-entry dd { font-size: 17px; }
}

/* --- Why-grid (cards on service pages) --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 28px;
}
.why-grid--two { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); max-width: 880px; }
@media (min-width: 720px) {
  .why-grid--two { grid-template-columns: 1fr 1fr; margin-left: auto; margin-right: auto; }
}
@media (min-width: 960px) {
  .why-grid--five { grid-template-columns: repeat(6, 1fr); }
  .why-grid--five > * { grid-column: span 2; }
  .why-grid--five > *:nth-child(4) { grid-column: 2 / span 2; }
  .why-grid--five > *:nth-child(5) { grid-column: 4 / span 2; }
}
.why-card {
  background: var(--bone);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 28px;
  border-top: 3px solid var(--brand-primary);
}
.section--cream .why-card { background: var(--bone); }
.section--bone .why-card { background: var(--cream); }
.why-card h3 {
  font-family: var(--serif);
  font-size: 21px;
  margin: 0 0 12px;
  line-height: 1.25;
}
.why-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}

/* --- Big quote (service page pull quotes) --- */
.quote-feature { max-width: 820px; }
.big-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.35;
  color: var(--ink);
  margin: 0;
  padding: 8px 0 8px 28px;
  border-left: 3px solid var(--brand-accent);
  max-width: 32ch;
}
.section--cream .big-quote, .section--bone .big-quote { color: var(--ink); }
.section--ink .big-quote, .section--brand .big-quote { color: var(--bone); border-left-color: var(--brand-accent); }
.big-quote cite {
  display: block;
  margin-top: 18px;
  font-style: normal;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  font-weight: 500;
}
.section--ink .big-quote cite, .section--brand .big-quote cite { color: var(--brand-accent-soft); }

/* --- FAQ jump nav --- */
.faq-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 8px;
}
.faq-jump a {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  padding: 10px 18px;
  border: 1px solid rgba(38, 32, 28, 0.18);
  border-radius: 999px;
  background: var(--bone);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.faq-jump a:hover {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
}

/* --- More-questions teaser link (service-page FAQ teasers) --- */
.more-questions {
  margin-top: 28px;
  text-align: center;
}
.more-questions a {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--brand-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--brand-primary);
  padding-bottom: 2px;
}
.more-questions a:hover { color: var(--brand-primary-deep); border-color: var(--brand-primary-deep); }

/* --- Service page --- */
.service-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(48px, 6vw, 80px) 0;
}
.service-hero__photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--brand-primary-soft);
}
.service-hero__photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 760px) { .service-hero { grid-template-columns: 1fr; } }

.service-prose { max-width: 680px; margin: 0 auto; font-size: 17px; line-height: 1.65; color: var(--ink-soft); }
.service-prose h2 { color: var(--ink); margin: 48px 0 16px; font-size: 32px; }
.service-prose h2:first-child { margin-top: 0; }
.service-prose h3 { color: var(--ink); margin: 32px 0 10px; font-size: 22px; }
.service-prose ul { padding-left: 22px; }
.service-prose li { margin-bottom: 10px; }
.service-prose strong { color: var(--ink); font-weight: 600; }
.service-prose .pull-quote {
  border-left: 3px solid var(--brand-accent);
  padding: 6px 0 6px 22px;
  margin: 28px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 21px;
  line-height: 1.45;
  color: var(--ink);
}

.process-steps { counter-reset: step; padding: 0; list-style: none; margin: 24px 0; }
.process-step {
  counter-increment: step;
  position: relative;
  padding: 18px 0 18px 60px;
  border-bottom: 1px solid var(--hairline);
}
.process-step:last-child { border-bottom: 0; }
.process-step::before {
  content: counter(step);
  position: absolute; left: 0; top: 18px;
  width: 38px; height: 38px;
  background: var(--brand-primary);
  color: var(--bone);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 17px;
}
.process-step h4 { margin: 4px 0 6px; font-size: 17px; font-family: var(--sans); font-weight: 600; }
.process-step p { font-size: 15px; margin: 0; color: var(--ink-soft); }

/* Performed-by block */
.performed-by {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: center;
  background: var(--bone);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 32px 0;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.performed-by img { width: 120px; height: 120px; object-fit: cover; border-radius: 50%; }
.performed-by h4 { margin: 0 0 4px; font-family: var(--serif); font-size: 20px; }
.performed-by .role { font-size: 13px; letter-spacing: 0.04em; color: var(--brand-accent); text-transform: uppercase; font-weight: 600; margin-bottom: 8px; }
.performed-by p { font-size: 14px; margin: 0; color: var(--ink-soft); }
@media (max-width: 580px) { .performed-by { grid-template-columns: 1fr; text-align: center; } .performed-by img { margin: 0 auto; } }

/* --- Contact page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
}
.contact-form {
  background: var(--bone);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 32px;
}
.contact-form .field { margin-bottom: 18px; }
.contact-form label { display: block; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 16px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  min-height: 48px;
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: 2px solid var(--brand-accent); outline-offset: 1px; border-color: var(--brand-accent); }
.contact-form .form-note { font-size: 13px; color: var(--text-muted); margin-top: 10px; }

.contact-info h3 { font-family: var(--sans); font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--brand-accent); margin: 24px 0 6px; font-weight: 600; }
.contact-info h3:first-child { margin-top: 0; }
.contact-info p, .contact-info address { font-style: normal; font-size: 16px; color: var(--ink-soft); margin: 0 0 6px; }
.contact-info a { color: var(--brand-primary); }
.contact-info .phone-big { font-family: var(--serif); font-size: 32px; color: var(--ink); text-decoration: none; display: block; margin-bottom: 8px; }
.contact-info .phone-big:hover { color: var(--brand-primary); }

.contact-ambient {
  margin-top: 32px;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.contact-ambient img { width: 100%; height: 100%; object-fit: cover; }
.contact-ambient figcaption { font-size: 13px; color: var(--text-muted); margin-top: 10px; font-style: italic; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }

/* ==========================================================
   Page partial styles (about / service / faq / contact)
   ========================================================== */

/* Generic intro block */
.service-intro { max-width: 720px; margin: 0 auto; }
.service-intro h2 { margin: 0 0 18px; }
.service-intro--centered { text-align: center; }
.service-intro--centered p { text-align: left; }

/* Urgent-care list — tighter bullet-to-text gap */
.urgent-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}
.urgent-list li {
  position: relative;
  padding-left: 0;
  margin-bottom: 6px;
}
.urgent-list li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--brand-accent);
  font-weight: 700;
}
.service-intro p { font-size: 17px; line-height: 1.65; color: var(--ink-soft); margin: 0 0 14px; }
.service-intro p:last-child { margin-bottom: 0; }

/* About bio */
.about-bio {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.about-bio__photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-md); display: block; }
.about-bio__photo .photo-caption { font-size: 13px; color: var(--text-muted); margin-top: 10px; font-style: italic; }
.about-bio__copy h2 { margin-top: 0; }
.about-bio__copy h3 { font-family: var(--serif); font-size: 24px; margin-bottom: 16px; }
@media (max-width: 760px) { .about-bio { grid-template-columns: 1fr; } }

.cv-list { padding-left: 22px; margin: 0; }
.cv-list li { margin-bottom: 8px; color: var(--ink-soft); }
.cv-list strong { color: var(--ink); font-weight: 600; }

/* Heritage block */
.heritage {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.heritage__photo img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius-md); display: block; }
.heritage__photo .photo-caption { font-size: 13px; color: var(--text-muted); margin-top: 10px; font-style: italic; }
.heritage__copy h2 { margin-top: 6px; }
@media (max-width: 760px) { .heritage { grid-template-columns: 1fr; } }

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 760px) {
  .values-grid { grid-template-columns: 1fr; }
}
.value-card {
  background: var(--bone);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 28px;
}
.value-card h3 { font-family: var(--serif); font-size: 22px; margin: 0 0 10px; line-height: 1.25; }
.value-card p { margin: 0; color: var(--ink-soft); font-size: 16px; line-height: 1.6; }

/* Conditions grid */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
@media (min-width: 960px) {
  .conditions-grid { grid-template-columns: repeat(3, 1fr); }
}
.condition-card {
  background: var(--bone);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 26px;
  border-top: 3px solid var(--brand-accent);
}
.condition-card h3 { font-family: var(--serif); font-size: 21px; margin: 0 0 10px; line-height: 1.25; }
.condition-card p { margin: 0; color: var(--ink-soft); font-size: 15.5px; line-height: 1.6; }

/* Lens types definition list */
.lens-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
}
.lens-item {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: baseline;
}
.lens-item:last-child { border-bottom: 0; }
.lens-item dt {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  margin: 0;
}
.lens-item dd {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}
@media (max-width: 760px) {
  .lens-item { grid-template-columns: 1fr; gap: 8px; padding: 18px 0; }
  .lens-item dt { font-size: 22px; }
}

/* Process list */
.process-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 820px;
  display: grid;
  gap: 20px;
}
.process-list > li::marker { content: ""; }
.process-list li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 28px 32px;
  background: var(--bone);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
}
.process-num {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--brand-accent);
  line-height: 1;
  font-weight: 600;
  margin-bottom: 4px;
}
.process-list h3 { font-family: var(--serif); font-size: 22px; margin: 0 0 8px; line-height: 1.25; }
.process-list p { margin: 0; color: var(--ink-soft); font-size: 16px; line-height: 1.6; }
@media (max-width: 580px) {
  .process-list li { padding: 22px 20px; }
}

/* Optical / dry eye / medical card grid */
.optical-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
@media (min-width: 960px) {
  .optical-grid { grid-template-columns: repeat(6, 1fr); }
  .optical-grid > * { grid-column: span 2; }
  .optical-grid > *:nth-child(4) { grid-column: 2 / span 2; }
  .optical-grid > *:nth-child(5) { grid-column: 4 / span 2; }
  .optical-grid--seven > *:nth-child(4) { grid-column: auto / span 2; }
  .optical-grid--seven > *:nth-child(5) { grid-column: auto / span 2; }
  .optical-grid--seven > *:nth-child(6) { grid-column: auto / span 2; }
  .optical-grid--seven > *:nth-child(7) { grid-column: 3 / span 2; }
}
.optical-card {
  background: var(--bone);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 26px;
}
.optical-card h3 { font-family: var(--serif); font-size: 21px; margin: 0 0 10px; line-height: 1.25; }
.optical-card p { margin: 0; color: var(--ink-soft); font-size: 15.5px; line-height: 1.6; }

/* Check list */
.check-list {
  max-width: 720px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.check-list li {
  position: relative;
  padding: 14px 0 14px 32px;
  border-bottom: 1px solid var(--hairline);
  font-size: 16.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.check-list li:last-child { border-bottom: 0; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 22px;
  width: 16px; height: 8px;
  border-left: 2px solid var(--brand-accent);
  border-bottom: 2px solid var(--brand-accent);
  transform: rotate(-45deg);
}
.check-list strong { color: var(--ink); font-weight: 600; }

/* FAQ page */
.faq-page { max-width: 820px; margin: 0 auto; }
.faq-section-title {
  font-family: var(--serif);
  font-size: 28px;
  margin: 56px 0 16px;
  color: var(--ink);
}
.faq-section-title:first-child { margin-top: 0; }

/* Hours table */
.hours-table {
  width: 100%;
  max-width: 360px;
  border-collapse: collapse;
  margin: 4px 0 8px;
}
.hours-table th, .hours-table td {
  text-align: left;
  padding: 8px 0;
  font-weight: 400;
  font-size: 15.5px;
  border-bottom: 1px solid var(--hairline);
}
.hours-table th { color: var(--ink); width: 110px; font-weight: 500; }
.hours-table td { color: var(--ink-soft); }
.hours-note { font-size: 13px; color: var(--text-muted); font-style: italic; margin-top: 6px; }

/* Contact map row */
.contact-map-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: start;
}
.contact-map { aspect-ratio: 4/3; border-radius: var(--radius-md); overflow: hidden; }
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.contact-photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-md); display: block; }
.contact-photo .photo-caption { font-size: 13px; color: var(--text-muted); margin-top: 10px; font-style: italic; }
@media (max-width: 760px) { .contact-map-row { grid-template-columns: 1fr; } }

/* Contact form refinements (override generic) */
.contact-form h2 { margin-top: 0; }
.contact-form .form-intro { color: var(--ink-soft); font-size: 15px; margin: 0 0 22px; }
.contact-form label {
  display: block;
  margin-bottom: 16px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
}
.contact-form label > span {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}

/* Contact info phone link */
.contact-info h2 { margin-top: 0; }

/* Pull quote variants */
.pull-quote {
  border-left: 3px solid var(--brand-accent);
  padding: 8px 0 8px 24px;
  margin: 28px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
}
.pull-quote cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.pull-quote--cream { background: transparent; }

/* footer brand block */
.footer-brand__copy { margin: 0 0 14px; line-height: 1.6; color: rgba(250,246,239,0.85); }
.footer-brand__copy strong { color: #fff; }
.footer-brand__contact { margin: 0; line-height: 1.6; }
.footer-brand__contact a { display: inline; color: rgba(250,246,239,0.92); }
.footer-brand__contact a:first-child { color: #fff; font-weight: 500; }

/* footer hours grid */
.footer-hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 18px;
  margin: 0;
  font-size: 14px;
  color: rgba(250,246,239,0.85);
}
.footer-hours dt { color: #fff; font-weight: 500; }
.footer-hours dd { margin: 0; }

/* dry eye typo card on services grid */
.service-card__photo--typo {
  display: flex; align-items: center; justify-content: center;
  background: var(--brand-primary);
  color: var(--bone);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.2;
  text-align: center;
  padding: 24px;
}
.service-card__photo--typo span { display: block; }

/* Hide based on hash route */
.page { display: none; }
.page.active { display: block; }
