/* Laurel Street Smiles — shared structure. Colors/fonts come from theme.css tokens. */
*, *::before, *::after { box-sizing: border-box; }
html { scrollbar-gutter: stable; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.73;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
p { margin: 0 0 1.1em; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0 0 .5em; line-height: 1.25; }

.container { max-width: 1140px; margin-inline: auto; padding-inline: 24px; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 8px; top: 8px; background: #fff; padding: 8px 12px; z-index: 99; }

/* ---------- Header ---------- */
.top-bar { background: var(--header-bg); }
.top-bar__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 100px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 62px; width: auto; }
.top-meta { display: flex; align-items: center; gap: 140px; }
.top-meta__item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--accent); }
.top-meta__item svg { width: 40px; height: 40px; stroke: var(--accent); fill: none; stroke-width: 1.3; }
.top-meta__label { color: var(--accent); }
.top-meta__text { display: flex; flex-direction: column; line-height: 1.35; }
.top-meta__sub { font-size: 11px; font-weight: 500; color: var(--ink-soft); }

.nav-bar { background: var(--navbar-bg); position: relative; z-index: 20; }
.nav-bar__inner { display: flex; align-items: center; }
.nav-toggle { display: none; }
.nav-list { list-style: none; display: flex; margin: 0; padding: 0; }
.nav-list a {
  display: block; padding: 15px 16px;
  font-size: 13px; font-weight: 500; letter-spacing: .02em;
  text-transform: uppercase; color: var(--nav-link);
}
.nav-list a:hover, .nav-list a[aria-current="page"] { color: var(--nav-link-active); }

/* ---------- Page hero band (interior) ---------- */
.page-hero { background: var(--hero-band-bg); background-size: cover; background-position: center; }
.page-hero__inner { padding: 54px 0 60px; }
.page-hero__eyebrow { color: #fff; font-size: 24px; font-weight: 400; margin: 0 0 6px; font-family: var(--font-display); }
.page-hero__title { color: #fff; font-size: 44px; font-weight: 600; margin: 0; }

/* ---------- Home hero ---------- */
.home-hero { position: relative; min-height: 600px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.home-hero__slides { position: absolute; inset: 0; }
.home-hero__slide { position: absolute; inset: 0; background-size: cover; background-position: center 30%; opacity: 0; transition: opacity 1s ease; }
.home-hero__slide.is-active { opacity: 1; }
.home-hero::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.18); }
.home-hero__dots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 1; }
.home-hero__dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.55); }
.home-hero__dot.is-active { background: var(--accent); }
.home-hero__content { position: relative; z-index: 1; text-align: center; padding: 40px 20px; }
.home-hero__welcome { color: var(--accent); font-size: 24px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 10px; }
.home-hero__logo { margin: 0 auto 10px; width: 270px; }
.home-hero__tag { color: #fff; font-size: 28px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; margin: 0; }

/* ---------- Sections ---------- */
.section { padding: 70px 0; }
.section--mint { background: var(--mint); }
.section--gray { background: var(--gray); }
.section--dark { background: var(--dark-photo-band-bg, var(--dark-band-bg)); background-size: cover; color: #fff; }
.section-title { color: var(--accent); font-size: 32px; font-weight: 600; margin: 0 0 8px; }
.section-sub { color: var(--ink-soft); font-size: 21px; font-weight: 600; margin: 0 0 18px; }
.center { text-align: center; }

/* welcome split */
.split { display: grid; grid-template-columns: 5fr 7fr; gap: 56px; align-items: start; }
.split > *, .cards > *, .review-cards > *, .contact-wrap > *, .cta-band__inner > *, .footer__inner > *, .review-strip > * { min-width: 0; }
.carousel { max-width: 100%; overflow: hidden; }
.split--even { grid-template-columns: 1fr 1fr; align-items: center; }
.split__media figcaption { font-size: 23px; font-weight: 600; color: var(--ink-soft); letter-spacing: .06em; margin-top: 18px; font-family: var(--font-display); }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.card { background: var(--card-bg); display: flex; flex-direction: column; }
.card__img { position: relative; }
.card__img img { width: 100%; aspect-ratio: 137/90; object-fit: cover; }
.card__icon { position: absolute; left: 18px; bottom: -28px; width: 56px; height: 56px; background: var(--accent); color: #fff; display: grid; place-items: center; }
.card__icon svg { width: 32px; height: 32px; }
.card__body { padding: 44px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.card__title { font-size: 19px; font-weight: 600; color: var(--ink-soft); margin: 0 0 10px; }
.card__text { font-size: 15px; color: var(--ink); flex: 1; }
.card__body .btn { align-self: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; border: 0; cursor: pointer;
  background: var(--accent); color: #fff;
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  padding: 12px 24px; border-radius: var(--btn-radius);
  transition: filter .15s ease;
}
.btn:hover { filter: brightness(.92); }
.btn--ghost { background: #fff; color: var(--accent); }
.btn--pill { border-radius: 999px; }

/* ---------- Reviews ---------- */
.reviews-band { }
.g-review-head { display: flex; align-items: center; gap: 14px; }
.g-review-head img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.stars { color: #F6BB06; letter-spacing: 2px; font-size: 17px; }
.review-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { background: var(--card-bg); padding: 18px; font-size: 14px; }
.review-card__who { display: flex; align-items: center; gap: 10px; font-weight: 700; color: #1548c1; }
.review-card__avatar { width: 44px; height: 44px; border-radius: 6px; background: #4285f4; color: #fff; display: grid; place-items: center; }
.review-card__ago { font-weight: 400; color: #777; font-size: 12px; }
.review-strip { display: grid; grid-template-columns: 200px 1fr; gap: 32px; align-items: start; background: var(--review-strip-bg); padding: 24px; }

/* testimonials carousel */
.testi { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.testi__item { display: grid; grid-template-columns: 170px 1fr; gap: 26px; align-items: start; }
.testi__who { text-align: center; }
.testi__who img { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; margin: 0 auto 12px; }
.testi__avatar { width: 120px; height: 120px; border-radius: 50%; background: var(--mint-strong); color: var(--accent); display: grid; place-items: center; font-family: var(--font-display); font-size: 52px; font-weight: 600; margin: 0 auto 12px; }
.testi__name { color: var(--accent); font-size: 17px; letter-spacing: .08em; text-transform: uppercase; font-weight: 500; }
.testi__quote { background: var(--card-bg); padding: 26px; font-style: italic; position: relative; }
.testi__quote::before { content: "\201C"; color: var(--accent); font-size: 44px; font-family: Georgia, serif; display: block; line-height: .6; margin-bottom: 12px; }

/* ---------- Contact ---------- */
.contact-wrap { display: grid; grid-template-columns: 5fr 6fr; }
.contact-info { background: var(--mint-strong); padding: 40px; }
.contact-form { background: var(--gray); padding: 40px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 6px; }
.field .req { color: #c0392b; }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border: 1px solid #d9d9d9; border-radius: 3px;
  font-family: var(--font-body); font-size: 14px; background: #fff; color: var(--ink);
}
.field textarea { min-height: 96px; font-family: monospace; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; gap: 0; } }
.icon-line { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; font-size: 15px; font-weight: 600; color: var(--ink-soft); }
.icon-line svg { width: 22px; height: 22px; flex: none; color: var(--accent); }
.hours { margin: 0; padding: 0; list-style: none; }
.hours li { font-size: 15px; }
.hours b { font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--dark-band-bg); background-size: cover; background-position: center; color: #fff; }
.cta-band__inner { display: grid; grid-template-columns: 6fr 5fr; gap: 48px; align-items: center; padding: 64px 0; }
.cta-band h2 { color: #fff; font-size: 28px; font-weight: 600; }
.cta-band p { font-size: 16px; }
.cta-band .actions { display: flex; gap: 18px; margin-top: 26px; }
.cta-band iframe { width: 100%; height: 260px; border: 0; display: block; }

/* ---------- Footer ---------- */
.footer { background: var(--footer-bg); color: #fff; }
.footer__inner { display: grid; grid-template-columns: 4fr 4fr 4fr; gap: 40px; padding: 44px 0; align-items: start; }
.footer__logo img { height: 84px; }
.footer h2 { color: #fff; font-size: 19px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 14px; }
.footer p, .footer a { color: #fff; font-size: 15px; font-weight: 500; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 8px; }
.footer__bottom { background: var(--footer-strip-bg); text-align: center; font-size: 12px; font-weight: 500; color: #f2f2f2; padding: 9px 0; }

/* profile card (about) */
.profile-card { display: flex; align-items: center; gap: 44px; background: var(--gray); padding: 30px 44px; }
.profile-card__photo { width: 230px; height: 230px; border-radius: 50%; object-fit: cover; object-position: top; flex: none; }
@media (max-width: 900px) { .profile-card { flex-direction: column; text-align: center; } }

/* ---------- Service page blocks ---------- */
.svc-dark { color: #fff; }
.svc-dark .split { align-items: center; }
.prose { overflow-wrap: break-word; }
.prose h2 { color: var(--accent); font-size: 28px; font-weight: 600; overflow-wrap: anywhere; }
.prose h3 { font-size: 19px; font-weight: 600; color: var(--ink-soft); }
.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li { position: relative; padding-left: 28px; margin-bottom: 10px; }
.checklist li::before { content: ""; position: absolute; left: 0; top: 4px; width: 17px; height: 17px; border-radius: 50%; background: var(--accent); }
.checklist li::after { content: ""; position: absolute; left: 4px; top: 8px; width: 8px; height: 5px; border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg); }

/* forms band (new patients) */
.formlinks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.formlinks a { color: #fff; font-weight: 600; text-decoration: underline; }
.formlinks svg { width: 46px; height: 46px; margin: 0 auto 16px; display: block; }

/* review funnel pages */
.funnel { min-height: 100vh; display: grid; place-items: center; background: var(--mint); padding: 40px 0; }
.funnel__box { text-align: center; max-width: 800px; padding: 0 24px; }
.funnel__q { color: var(--sage, #84A59D); font-size: 34px; font-weight: 600; font-family: var(--font-display); }

/* ---------- Reveal (adds only; content visible at rest) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { animation: rise .6s ease both; animation-timeline: view(); animation-range: entry 0% entry 42%; }
  @keyframes rise { from { opacity: .35; transform: translateY(14px); } to { opacity: 1; transform: none; } }
}

/* ---------- Mobile ---------- */
@media (max-width: 900px) {
  .top-bar__inner { flex-direction: column; padding: 14px 0; min-height: 0; gap: 8px; }
  .top-meta { gap: 28px; }
  .nav-bar__inner { flex-direction: column; align-items: stretch; }
  .nav-toggle { display: flex; align-items: center; gap: 8px; background: none; border: 0; font: inherit; padding: 12px 0; cursor: pointer; color: var(--nav-link-active); }
  .nav-toggle svg { width: 22px; height: 22px; }
  .nav-list { display: none; flex-direction: column; padding-bottom: 8px; }
  .nav-list.open { display: flex; }
  .nav-list a { padding: 10px 4px; }
  .split, .split--even, .cards, .review-cards, .testi, .contact-wrap, .cta-band__inner, .footer__inner, .formlinks { grid-template-columns: 1fr; }
  .testi__item { grid-template-columns: 1fr; flex-basis: 86% !important; }
  .page-hero__title { font-size: 34px; }
  .section { padding: 48px 0; }
  .review-strip { grid-template-columns: 1fr; }
}
