/* Cutler Optometrists — base styles */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ─── theme variables (overridden by aesthetic preset) ─── */
:root {
  --bg: #fafaf7;
  --bg-alt: #f1efe8;
  --ink: #161819;
  --ink-soft: #4a4d4f;
  --ink-muted: #8a8d8f;
  --line: rgba(15, 42, 74, 0.12);
  --line-soft: rgba(15, 42, 74, 0.06);
  --brand: #0f2a4a;
  --accent: #c9a96e;
  --accent-soft: #e8dcc0;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter Tight', 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --radius: 4px;
  --radius-lg: 10px;
  --maxw: 1240px;
  --pad: clamp(20px, 4vw, 56px);
}

/* aesthetic: warm (heritage) */
[data-aesthetic="warm"] {
  --bg: #f6f1e7;
  --bg-alt: #ebe3d1;
  --ink: #1f1a13;
  --ink-soft: #4a3f2e;
  --ink-muted: #8a7d68;
  --line: rgba(31, 58, 61, 0.18);
  --line-soft: rgba(31, 58, 61, 0.08);
  --brand: #1f3a3d;
  --accent: #b08968;
  --accent-soft: #d9c3a8;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter Tight', system-ui, sans-serif;
}

/* aesthetic: clinical (default) — already set in :root */

/* aesthetic: premium (editorial) */
[data-aesthetic="premium"] {
  --bg: #ffffff;
  --bg-alt: #f5f4f1;
  --ink: #0a0a0a;
  --ink-soft: #3a3a3a;
  --ink-muted: #8a8a8a;
  --line: rgba(0, 0, 0, 0.12);
  --line-soft: rgba(0, 0, 0, 0.05);
  --brand: #111111;
  --accent: #d96b3a;
  --accent-soft: #f3d9c8;
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Inter Tight', system-ui, sans-serif;
}

/* aesthetic: friendly (approachable) */
[data-aesthetic="friendly"] {
  --bg: #f0ede5;
  --bg-alt: #e3dfd2;
  --ink: #1c2620;
  --ink-soft: #4a554d;
  --ink-muted: #88928a;
  --line: rgba(45, 74, 62, 0.16);
  --line-soft: rgba(45, 74, 62, 0.06);
  --brand: #2d4a3e;
  --accent: #a8a89a;
  --accent-soft: #d6d6c8;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter Tight', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
}

/* ─── primitives ─── */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.eyebrow.accent { color: var(--accent); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(40px, 6.4vw, 84px); line-height: 1.02; letter-spacing: -0.025em; }
h2 { font-size: clamp(30px, 4vw, 52px); line-height: 1.05; letter-spacing: -0.02em; }
h3 { font-size: clamp(20px, 2vw, 26px); line-height: 1.2; }
h4 { font-size: 16px; line-height: 1.3; }

p { margin: 0; }
.lead { font-size: clamp(17px, 1.4vw, 20px); line-height: 1.5; color: var(--ink-soft); text-wrap: pretty; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.005em;
  transition: transform .12s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn.ghost {
  background: transparent;
  color: var(--brand);
}
.btn.ghost:hover { background: var(--brand); color: #fff; }
.btn.accent {
  background: var(--accent);
  color: var(--brand);
  border-color: var(--accent);
}
.btn .arrow { display: inline-block; transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-weight: 500;
  background: none;
  border: 0;
  border-bottom: 1px solid transparent;
  padding: 0 0 1px;
  font: inherit;
  cursor: pointer;
  transition: border-color .2s ease;
}
.link-arrow:hover { border-bottom-color: var(--brand); }

/* ─── topbar + nav ─── */
.topbar {
  background: var(--brand);
  color: rgba(255,255,255,0.86);
  font-size: 12.5px;
  letter-spacing: 0.01em;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 9px;
  padding-bottom: 9px;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a:hover { color: var(--accent); }
.topbar .dot { color: var(--accent); margin: 0 10px; }

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--bg);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(10px);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}
.brand-mark {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-display);
  color: var(--ink);
}
.brand-mark .name {
  font-size: 22px;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.brand-mark .since {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
  padding: 0; margin: 0;
}
.nav-links a {
  color: var(--ink-soft);
  font-size: 14.5px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color .15s ease;
}
.nav-links a.active { color: var(--brand); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1.5px;
  background: var(--accent);
}
.nav-links a:hover { color: var(--ink); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-phone {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.menu-btn { display: none; }

/* ─── hero ─── */
.hero {
  position: relative;
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(40px, 6vw, 80px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
}
.hero-copy .eyebrow { margin-bottom: 22px; display: inline-flex; align-items: center; gap: 10px; }
.hero-copy .eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.hero-copy h1 .it {
  font-style: italic;
  font-weight: 300;
  color: var(--brand);
}
.hero-copy h1 .accent { color: var(--accent); }
.hero-copy .lead { margin-top: 28px; max-width: 52ch; }
.hero-cta {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-meta {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  max-width: 540px;
}
.hero-meta .num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--brand);
  display: block;
  line-height: 1;
}
.hero-meta .lbl {
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

.hero-img-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-alt);
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-wrap .badge {
  position: absolute;
  bottom: 18px; left: 18px;
  background: var(--bg);
  padding: 14px 18px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.hero-img-wrap .badge .num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--brand);
  line-height: 1;
}
.hero-img-wrap .badge .lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ─── trust strip ─── */
.trust {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 22px 0;
  background: var(--bg);
}
.trust .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.trust .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.trust .funds {
  display: flex;
  gap: clamp(20px, 3vw, 44px);
  align-items: center;
  flex-wrap: wrap;
}
.trust .fund {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--ink-soft);
  letter-spacing: -0.01em;
  opacity: 0.78;
}

/* ─── section ─── */
.section {
  padding: clamp(60px, 9vw, 120px) 0;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(20px, 4vw, 80px);
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section-head .eyebrow { margin-bottom: 14px; }
.section-head .lead { max-width: 60ch; }

/* ─── services preview cards ─── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.svc-card {
  background: var(--bg);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background .25s ease;
  cursor: pointer;
}
.svc-card:hover { background: var(--bg-alt); }
.svc-card .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.14em;
}
.svc-card h3 {
  font-size: 24px;
}
.svc-card p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.55;
  flex: 1;
}
.svc-card .more {
  font-size: 13px;
  color: var(--brand);
  font-weight: 500;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ─── intro split ─── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
}
.split.reverse > :first-child { order: 2; }
.split-img {
  aspect-ratio: 5/6;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-alt);
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-copy h2 { margin-bottom: 20px; }
.split-copy .lead { margin-bottom: 22px; }
.split-copy .stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.split-copy .stat .num {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
  color: var(--brand);
}
.split-copy .stat .lbl {
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 6px;
  line-height: 1.4;
}

/* ─── team preview ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 4vw, 48px);
}
.team-card {
  position: relative;
}
.team-card .photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-alt);
  margin-bottom: 20px;
}
.team-card .photo img { width:100%; height:100%; object-fit: cover; }
.team-card h3 { font-size: 28px; margin-bottom: 4px; }
.team-card .creds {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.team-card p {
  color: var(--ink-soft);
  font-size: 15px;
}
.specialties {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.chip {
  font-size: 12px;
  padding: 4px 10px;
  background: var(--bg-alt);
  border-radius: 999px;
  color: var(--ink-soft);
}

/* ─── reviews ─── */
.reviews {
  background: var(--bg-alt);
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.review {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review .stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
}
.review p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.4;
  color: var(--ink);
  text-wrap: pretty;
}
.review .who {
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: auto;
  display: flex;
  justify-content: space-between;
}

/* ─── final cta ─── */
.cta-band {
  background: var(--brand);
  color: #fff;
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(201, 169, 110, 0.18), transparent 60%);
  pointer-events: none;
}
.cta-band .container { position: relative; }
.cta-band h2 { color: #fff; max-width: 18ch; }
.cta-band .row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: end;
}
.cta-band p {
  color: rgba(255,255,255,0.74);
  margin-top: 18px;
  max-width: 50ch;
}
.cta-band .actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cta-band .btn { background: var(--accent); border-color: var(--accent); color: var(--brand); }
.cta-band .btn.ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.cta-band .btn.ghost:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* ─── footer ─── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--line-soft);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-grid h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  margin-bottom: 18px;
}
.footer-grid ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-grid a { color: var(--ink-soft); font-size: 14.5px; }
.footer-grid a:hover { color: var(--ink); }
.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--ink-muted);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom .ahpra {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
}

/* ─── page header (for inner pages) ─── */
.page-head {
  padding: clamp(56px, 8vw, 110px) 0 clamp(40px, 5vw, 70px);
  border-bottom: 1px solid var(--line-soft);
}
.page-head .eyebrow { margin-bottom: 16px; }
.page-head h1 {
  font-size: clamp(40px, 5.6vw, 76px);
  max-width: 16ch;
  margin-bottom: 24px;
}
.page-head .lead { max-width: 60ch; }

/* ─── services page ─── */
.svc-detail {
  display: grid;
  grid-template-columns: 0.6fr 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(48px, 6vw, 80px) 0;
  border-bottom: 1px solid var(--line-soft);
}
.svc-detail:last-child { border-bottom: 0; }
.svc-detail .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.14em;
}
.svc-detail h2 { font-size: clamp(28px, 3vw, 40px); margin-top: 8px; }
.svc-detail .img {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-alt);
}
.svc-detail .img img { width:100%; height:100%; object-fit: cover; }
.svc-detail .body p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.6; }
.svc-detail .body p + p { margin-top: 14px; }
.svc-detail .body ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.svc-detail .body li {
  padding-left: 22px;
  position: relative;
}
.svc-detail .body li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 1px;
  background: var(--accent);
}

/* ─── contact page ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(48px, 6vw, 80px) 0;
}
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-info .block .lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.contact-info .block .val {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  line-height: 1.3;
}
.contact-info .block .val a { color: var(--brand); }
.contact-info .block .val a:hover { color: var(--accent); }
.contact-info .hours {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 15px;
  color: var(--ink-soft);
}
.contact-info .hours .row { display: flex; justify-content: space-between; max-width: 320px; }
.contact-info .hours .row .closed { color: var(--ink-muted); }

.map {
  aspect-ratio: 16/12;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
}
.map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* contact form */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 8px;
}
.contact-form .full { grid-column: 1 / -1; }
.contact-form label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
}
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  font: inherit;
  color: var(--ink);
  font-size: 15px;
  outline: none;
  transition: border-color .15s ease;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  border-color: var(--brand);
}
.contact-form textarea { min-height: 110px; resize: vertical; }

/* ─── booking modal ─── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 24, 30, 0.55);
  backdrop-filter: blur(6px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: fadeIn .22s ease;
}
@keyframes fadeIn { from { opacity: 0; } }
.modal {
  width: 100%;
  max-width: 640px;
  max-height: calc(100vh - 32px);
  background: var(--bg);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  animation: slideUp .28s cubic-bezier(.2,.8,.2,1);
}
@keyframes slideUp { from { opacity: 0; transform: translateY(14px); } }
.modal header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px 18px;
  border-bottom: 1px solid var(--line-soft);
}
.modal header h3 { font-size: 22px; }
.modal header .step {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.14em;
}
.modal .close-x {
  appearance: none;
  border: 0;
  background: transparent;
  font-size: 22px;
  color: var(--ink-muted);
  width: 32px; height: 32px;
  border-radius: 999px;
}
.modal .close-x:hover { background: var(--bg-alt); color: var(--ink); }
.modal .body {
  padding: 28px;
  overflow-y: auto;
  flex: 1;
}
.modal .body h4 {
  font-size: 22px;
  font-family: var(--font-display);
  margin-bottom: 8px;
}
.modal .body .help {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin-bottom: 22px;
}
.modal footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px;
  border-top: 1px solid var(--line-soft);
  background: var(--bg-alt);
}
.modal .progress {
  display: flex;
  gap: 6px;
}
.modal .progress .pip {
  width: 28px; height: 4px;
  background: var(--line);
  border-radius: 2px;
}
.modal .progress .pip.done { background: var(--accent); }
.modal .progress .pip.cur { background: var(--brand); }

.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.option {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--bg);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all .15s ease;
}
.option:hover { border-color: var(--brand); }
.option.selected { border-color: var(--brand); background: var(--bg-alt); box-shadow: inset 0 0 0 1px var(--brand); }
.option .ttl { font-family: var(--font-display); font-size: 18px; color: var(--ink); }
.option .sub { font-size: 13px; color: var(--ink-muted); }
.option .price { font-size: 12.5px; color: var(--accent); margin-top: 4px; font-family: var(--font-mono); }

.date-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.date-cell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 4px;
  background: var(--bg);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: all .15s ease;
}
.date-cell:hover:not(:disabled) { border-color: var(--brand); }
.date-cell.selected { background: var(--brand); color: #fff; border-color: var(--brand); }
.date-cell:disabled { opacity: 0.32; cursor: not-allowed; }
.date-cell .dow { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; }
.date-cell .dnum { font-family: var(--font-display); font-size: 18px; }

.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 18px;
}
.time-cell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  background: var(--bg);
  font-family: var(--font-mono);
  font-size: 13px;
  transition: all .15s ease;
}
.time-cell:hover:not(:disabled) { border-color: var(--brand); }
.time-cell.selected { background: var(--brand); color: #fff; border-color: var(--brand); }
.time-cell:disabled { opacity: 0.3; cursor: not-allowed; }

.confirm-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14.5px;
}
.confirm-row:last-child { border-bottom: 0; }
.confirm-row .k {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  align-self: center;
}
.confirm-row .v { color: var(--ink); }

.success {
  text-align: center;
  padding: 20px 8px 8px;
}
.success .check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 32px;
}
.success h4 { margin-bottom: 10px; font-size: 28px; }
.success p { color: var(--ink-soft); max-width: 42ch; margin: 0 auto; }

/* ─── responsive ─── */
@media (max-width: 980px) {
  .hero-grid, .split, .team-grid, .footer-grid, .cta-band .row, .contact-grid { grid-template-columns: 1fr; }
  .split.reverse > :first-child { order: 0; }
  .svc-grid, .review-grid { grid-template-columns: 1fr 1fr; }
  .svc-detail { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section-head { grid-template-columns: 1fr; align-items: start; }
  .cta-band .actions { justify-content: flex-start; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .menu-btn { display: inline-flex; }
  .svc-grid, .review-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { grid-template-columns: 1fr 1fr; }
  .option-grid, .time-grid { grid-template-columns: 1fr 1fr; }
  .date-grid { grid-template-columns: repeat(7, 1fr); }
  .modal { max-height: 100vh; border-radius: 0; }
  .topbar .container { font-size: 11.5px; }
}
