/* ============================================================
   O Eyecare — 2026 UI Renewal · "Our Doctor" page styles
   New file (never edit the shared oeyecare-2026.css). Loaded in
   addition to the base design system by layout_doctor.jsp.
   Design source: claude-design-2026/doctor.html · doctor-page.jsx
   ============================================================ */

/* ------------------------------------------------------------
   Solid header on this light page.
   The doctor page has no dark video hero, so the header must not
   sit transparent-with-white-text over the cream background.
   We replicate the base `.oe-header.is-solid` look, scoped to the
   page body class so the shared header.jsp / CSS stay untouched.
   ------------------------------------------------------------ */
.oe-doc-page .oe-header {
  background: rgba(246, 241, 233, .92);
  backdrop-filter: saturate(140%) blur(10px);
  box-shadow: 0 1px 0 var(--border-subtle);
}
.oe-doc-page .oe-header .oe-nav__link,
.oe-doc-page .oe-header .oe-nav__caret,
.oe-doc-page .oe-header .oe-header__phone,
.oe-doc-page .oe-header .oe-lang__toggle,
.oe-doc-page .oe-header .oe-header__burger {
  color: var(--ink-900);
}
.oe-doc-page .oe-header .oe-brand__tag {
  color: var(--text-muted);
}
/* Logo: this page is always in the solid state, so show the ink lockup. */
.oe-doc-page .oe-header .oe-brand__logo--white { display: none; }
.oe-doc-page .oe-header .oe-brand__logo--ink { display: block; }
.oe-doc-page .oe-header .oe-header__book { color: var(--ink-900); border-color: var(--ink-900); }
.oe-doc-page .oe-header .oe-header__book:hover { background: var(--ink-900); color: #fff; }

/* ------------------------------------------------------------
   Hero — portrait + quote / name / signature
   ------------------------------------------------------------ */
.oe-doc-hero {
  background: var(--surface-page);
}
.oe-doc-hero__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
  padding-top: 128px;
  padding-bottom: 56px;
}
.oe-doc-hero__photo {
  border-radius: var(--radius-md);
  overflow: hidden;
}
.oe-doc-hero__photo img {
  width: 100%;
  height: auto;
  display: block;
}
.oe-doc-hero__eyebrow {
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin: 0 0 24px;
}
.oe-doc-quote {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: -.01em;
  color: var(--text-primary);
}
.oe-doc-quote em { font-style: italic; }
.oe-doc-name {
  margin-top: 32px;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-900);
}
.oe-doc-role {
  margin-top: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-muted);
}
.oe-doc-script {
  margin-top: 16px;
  font-family: 'Mr De Haviland', cursive;
  font-size: 52px;
  line-height: 1;
  color: var(--ink-900);
}

/* ------------------------------------------------------------
   Bio — heading + narrative + education
   ------------------------------------------------------------ */
.oe-doc-bio {
  background: var(--surface-card);
  padding: 72px 0;
}
.oe-doc-bio__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
}
.oe-doc-bio__lead {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0;
}
.oe-doc-bio__lead + .oe-doc-bio__lead {
  margin-top: 22px;
  color: var(--text-muted);
}
.oe-doc-edu {
  margin-top: 44px;
  padding-top: 40px;
  border-top: 1px solid var(--border-subtle);
}
.oe-doc-edu__label {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-900);
  margin-bottom: 28px;
}
.oe-doc-edu__list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.oe-doc-edu__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.oe-doc-edu__body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* ------------------------------------------------------------
   Areas of focus — four cards
   ------------------------------------------------------------ */
.oe-doc-focus {
  background: var(--surface-cream);
  padding: 72px 0;
}
.oe-doc-focus__head { margin-bottom: 44px; }
.oe-doc-focus__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.oe-doc-focus-card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 30px 26px;
}
.oe-doc-focus-card__title {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-900);
  margin: 0 0 14px;
}
.oe-doc-focus-card__desc {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

/* ------------------------------------------------------------
   Closing CTA band (dark)
   ------------------------------------------------------------ */
.oe-doc-cta {
  background: var(--ink-900);
  color: #fff;
  padding: 80px 0;
}
.oe-doc-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.oe-doc-cta__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: -.01em;
  margin: 0;
}
.oe-doc-cta__desc {
  font-family: var(--font-body);
  font-size: 17px;
  opacity: .82;
  margin-top: 12px;
}

/* ------------------------------------------------------------
   Responsive ( <= 760px ) — mirrors doctor.html mobile rules
   ------------------------------------------------------------ */
@media (max-width: 760px) {
  .oe-doc-hero__grid,
  .oe-doc-bio__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .oe-doc-hero__grid { padding-top: 118px; }
  .oe-doc-quote { font-size: 19px; }
  .oe-doc-name { font-size: 16px; font-weight: 500; }
  .oe-doc-script { font-size: 44px; }

  /* areas of focus: horizontal swipe carousel */
  .oe-doc-focus__grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding-bottom: 10px;
    scrollbar-width: none;
  }
  .oe-doc-focus__grid::-webkit-scrollbar { display: none; }
  .oe-doc-focus__grid > * {
    flex: 0 0 300px;
    width: 300px;
    max-width: 82vw;
    scroll-snap-align: start;
  }

  .oe-doc-cta__title { font-size: 30px; }
}
