:root {
  --bg-top: #f6f4ee;
  --bg-bottom: #dce9ef;
  --surface: rgba(255, 252, 247, 0.88);
  --surface-strong: #fffdfa;
  --text-main: #18303d;
  --text-muted: #5b7280;
  --accent: #0c7289;
  --accent-deep: #074f61;
  --accent-soft: #8cd4d8;
  --warm: #d59552;
  --success: #1b8f68;
  --warning: #b97222;
  --border: 1px solid rgba(12, 114, 137, 0.12);
  --shadow-lg: 0 28px 70px rgba(24, 48, 61, 0.12);
  --shadow-md: 0 18px 40px rgba(24, 48, 61, 0.1);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text-main);
  font-family: "Outfit", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(140, 212, 216, 0.45), transparent 32%),
    radial-gradient(circle at top right, rgba(255, 245, 233, 0.75), transparent 26%),
    linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
}

a,
button,
input,
select {
  font: inherit;
}

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

button {
  cursor: pointer;
}

a {
  color: var(--accent-deep);
}

.site-shell {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 24px 0 40px;
}

.panel,
.info-tile,
.service-panel,
.hours-card,
.contact-card {
  background: var(--surface);
  border: var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding: 14px 18px;
  background: rgba(255, 252, 247, 0.9);
  border: var(--border);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(24, 48, 61, 0.08);
  backdrop-filter: blur(16px);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text-main);
  text-decoration: none;
}

.site-brand strong,
.topbar h1,
.topbar h2,
.hero-section h1,
.page-banner h1,
.section-header h2,
.cta-band h2,
.hero-copy h2,
.puzzle-header h2,
.completion-card h2,
.service-panel h2,
.promo-hero h2 {
  font-family: "Cormorant Garamond", serif;
}

.site-brand strong {
  display: block;
  font-size: 1.25rem;
}

.site-brand__logo {
  width: 74px;
  height: auto;
}

.site-brand__eyebrow,
.section-kicker,
.eyebrow,
.service-panel__tag,
.puzzle-tag,
.status-pill,
.headline-note,
.clue-chip,
.promo-pill {
  margin: 0 0 6px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-brand__eyebrow,
.section-kicker,
.eyebrow,
.service-panel__tag {
  color: var(--accent-deep);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
}

.site-nav a.is-active {
  background: rgba(12, 114, 137, 0.1);
  color: var(--accent-deep);
}

.nav-cta {
  margin-left: 6px;
}

.nav-toggle {
  display: none;
  padding: 12px 16px;
  border: none;
  border-radius: 999px;
  background: rgba(12, 114, 137, 0.1);
  color: var(--accent-deep);
  font-weight: 700;
}

main {
  display: grid;
  gap: 28px;
}

.hero-section,
.page-banner,
.promo-hero,
.cta-band,
.puzzle-card,
.completion-card,
.hero {
  padding: clamp(22px, 4vw, 42px);
}

.hero-section__grid,
.content-section--split,
.promo-hero,
.game-layout,
.hero-grid {
  display: grid;
  gap: 24px;
}

.hero-section__grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.hero-section h1,
.page-banner h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.92;
}

.lede,
.hero-section p,
.page-banner p,
.info-tile p,
.service-panel p,
.hours-card p,
.contact-card p,
.promo-hero p,
.hero-copy p,
.puzzle-card p,
.completion-card p,
.site-footer,
.disclaimer,
.tiny-note,
.message {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.hero-actions,
.section-actions,
.completion-actions,
.puzzle-actions,
.lock-actions,
.lens-options,
.code-entry,
.lock-display,
.clue-strip,
.feature-strip,
.promo-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.topbar-link,
.text-link {
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button.primary,
.topbar-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 18px 32px rgba(7, 79, 97, 0.24);
}

.button.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid rgba(24, 48, 61, 0.12);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text-main);
  text-decoration: none;
  font-weight: 700;
}

.button.ghost {
  padding: 12px 16px;
  border: none;
  background: transparent;
  color: var(--accent-deep);
  font-weight: 800;
}

.text-link {
  color: var(--accent-deep);
  font-weight: 800;
  text-decoration: none;
}

.button:hover,
.topbar-link:hover,
.text-link:hover,
.site-nav a:hover {
  transform: translateY(-1px);
}

.button:focus-visible,
.topbar-link:focus-visible,
.text-link:focus-visible,
.site-nav a:focus-visible,
.nav-toggle:focus-visible,
.lens-option:focus-visible,
.difference-button:focus-visible,
.pair-choice:focus-visible,
.lock-digit:focus-visible,
.text-input:focus-visible,
.sequence-slot:focus-visible {
  outline: 3px solid rgba(12, 114, 137, 0.28);
  outline-offset: 3px;
}

.hero-stage {
  position: relative;
  min-height: 420px;
  border-radius: calc(var(--radius-xl) + 4px);
  background:
    linear-gradient(160deg, rgba(9, 79, 97, 0.08), rgba(255, 250, 242, 0.88)),
    radial-gradient(circle at 20% 24%, rgba(140, 212, 216, 0.5), transparent 20%),
    radial-gradient(circle at 80% 22%, rgba(213, 149, 82, 0.24), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(245, 250, 252, 0.9));
  border: var(--border);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.hero-stage__card {
  position: absolute;
  width: min(280px, 70%);
  padding: 22px;
  border-radius: 26px;
  background: rgba(255, 252, 247, 0.92);
  border: 1px solid rgba(12, 114, 137, 0.12);
  box-shadow: var(--shadow-md);
}

.hero-stage__card span,
.promo-preview__card span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-stage__card strong,
.promo-preview__card strong {
  font-size: 1.5rem;
  line-height: 1.1;
}

.hero-stage__card--large {
  top: 34px;
  left: 30px;
}

.hero-stage__card--accent {
  right: 26px;
  bottom: 42px;
  background: linear-gradient(145deg, rgba(12, 114, 137, 0.95), rgba(7, 79, 97, 0.92));
  color: #fff;
}

.hero-stage__card--accent span {
  color: rgba(255, 255, 255, 0.78);
}

.hero-stage__orbit {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 260px;
  height: 260px;
  border: 18px solid rgba(7, 79, 97, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -44%);
  box-shadow: 0 0 0 28px rgba(140, 212, 216, 0.12);
}

.feature-chip,
.info-tile,
.service-panel,
.hours-card,
.contact-card,
.status-card,
.stat-card,
.info-card,
.match-row,
.focus-card,
.scene-card {
  padding: 20px;
}

.feature-chip,
.promo-pill {
  border-radius: 999px;
  border: 1px solid rgba(12, 114, 137, 0.14);
  background: rgba(255, 255, 255, 0.72);
}

.feature-chip strong {
  display: block;
  margin-bottom: 4px;
}

.content-section {
  display: grid;
  gap: 18px;
}

.section-header {
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.section-header h2,
.service-panel h2,
.promo-hero h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 0.95;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid--two,
.content-section--split,
.promo-hero {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-tile h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.promo-callout {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.hours-card,
.contact-card {
  display: grid;
  gap: 16px;
}

.detail-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background:
    linear-gradient(135deg, rgba(7, 79, 97, 0.96), rgba(12, 114, 137, 0.9)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  color: #fff;
}

.cta-band .section-kicker,
.cta-band h2,
.cta-band p,
.cta-band a {
  color: inherit;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 0.96;
}

.global-footer {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  padding: 18px 8px 0;
  color: var(--text-muted);
}

.global-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.global-footer__copyright,
.global-footer__note {
  margin: 0;
}

.promo-preview {
  display: grid;
  gap: 16px;
  align-content: center;
}

.promo-preview__card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  border: var(--border);
  box-shadow: var(--shadow-md);
}

.promo-preview__card--alt {
  background: linear-gradient(145deg, rgba(213, 149, 82, 0.18), rgba(255, 255, 255, 0.82));
}

.page-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 10px 0 8px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-logo {
  width: 104px;
  height: auto;
  object-fit: contain;
}

.logo-badge {
  display: inline-flex;
  width: fit-content;
}

.logo-badge img {
  width: clamp(148px, 24vw, 220px);
  height: auto;
}

.topbar h1,
.topbar h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 0.92;
}

.hero-grid,
.game-layout {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
}

.game-layout {
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 20px;
}

.hero-copy,
.puzzle-header,
.sidebar,
.completion-card,
.hero-visual,
.lens-grid,
.difference-grid,
.pair-grid,
.lock-grid,
.progress-shell,
.hero-stats,
.completion-meta,
.scene,
.difference-buttons,
.pair-choice-wrap,
.lens-sequence {
  display: grid;
  gap: 16px;
}

.hero-copy h2,
.puzzle-header h2,
.completion-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.95;
}

.hero-stats,
.completion-meta {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-visual {
  align-content: center;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.7), rgba(230, 247, 255, 0.92)),
    repeating-linear-gradient(90deg, transparent 0 48px, rgba(12, 114, 137, 0.05) 48px 49px);
  border-radius: var(--radius-lg);
  border: var(--border);
  padding: 20px;
}

.lens-art {
  position: relative;
  height: 220px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 32% 48%, rgba(255, 255, 255, 0.92) 0 24%, transparent 24%),
    radial-gradient(circle at 68% 48%, rgba(255, 255, 255, 0.92) 0 24%, transparent 24%),
    linear-gradient(135deg, rgba(12, 114, 137, 0.2), rgba(7, 79, 97, 0.42));
}

.lens-art::before,
.lens-art::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 110px;
  height: 110px;
  border: 6px solid rgba(24, 48, 61, 0.7);
  border-radius: 50%;
  transform: translateY(-50%);
}

.lens-art::before {
  left: 18px;
}

.lens-art::after {
  right: 18px;
}

.lens-bridge {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 84px;
  height: 10px;
  border-radius: 999px;
  background: rgba(24, 48, 61, 0.7);
  transform: translate(-50%, -50%);
}

.progress-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.progress-bar {
  height: 12px;
  border-radius: 999px;
  background: rgba(24, 48, 61, 0.08);
  overflow: hidden;
}

.progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-soft), var(--accent));
  transition: width 220ms ease;
}

.puzzle-tag,
.status-pill,
.headline-note,
.clue-chip {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
}

.puzzle-tag,
.clue-chip {
  background: rgba(12, 114, 137, 0.1);
  color: var(--accent-deep);
}

.status-pill,
.headline-note {
  background: rgba(27, 143, 104, 0.12);
  color: var(--success);
}

.message {
  min-height: 26px;
  font-weight: 700;
}

.message.success {
  color: var(--success);
}

.message.warning {
  color: var(--warning);
}

.message.neutral {
  color: var(--text-muted);
}

.lens-option,
.difference-button,
.pair-choice,
.text-input,
.lock-digit,
.sequence-slot {
  border: 1px solid rgba(24, 48, 61, 0.14);
  background: var(--surface-strong);
}

.lens-option,
.difference-button,
.pair-choice {
  padding: 16px;
  border-radius: 18px;
  font-weight: 800;
}

.lens-option.active,
.difference-button.found,
.pair-choice.selected,
.sequence-slot.filled {
  border-color: rgba(12, 114, 137, 0.35);
  background: linear-gradient(135deg, rgba(12, 114, 137, 0.14), rgba(140, 212, 216, 0.28));
}

.focus-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(238, 248, 255, 0.9));
  border-radius: var(--radius-lg);
  border: var(--border);
}

.blur-target {
  display: grid;
  gap: 8px;
  place-items: center;
  min-height: 160px;
  border-radius: 18px;
  background:
    radial-gradient(circle at center, rgba(140, 212, 216, 0.22), transparent 55%),
    linear-gradient(180deg, rgba(12, 114, 137, 0.08), rgba(255, 255, 255, 0.85));
}

.blur-value {
  font-size: clamp(2.6rem, 8vw, 4.6rem);
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: 0.24em;
  transition: filter 160ms ease, opacity 160ms ease;
}

.text-input {
  width: min(220px, 100%);
  padding: 14px 16px;
  border-radius: 16px;
  color: var(--text-main);
}

.scene {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.scene-card {
  min-height: 94px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: var(--border);
}

.scene-card span {
  display: block;
  margin-top: 8px;
  font-size: 1.6rem;
}

.difference-buttons,
.pair-choice-wrap {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.difference-button,
.pair-choice {
  text-align: left;
}

.lock-digit {
  width: 72px;
  padding: 16px 12px;
  border-radius: 20px;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
}

.site-footer {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 0 6px;
  font-size: 0.95rem;
}

.site-footer a {
  color: var(--accent-deep);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sequence-slots {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.sequence-slot {
  min-height: 72px;
  padding: 12px;
  border-radius: 18px;
  color: var(--text-muted);
  display: grid;
  gap: 4px;
  place-items: center;
  text-align: center;
  font-weight: 700;
}

.lens-symbol {
  font-size: 1.3rem;
  line-height: 1;
}

.lens-option {
  align-items: center;
  display: inline-grid;
  gap: 6px;
  justify-items: center;
  min-width: 112px;
  text-align: center;
}

.lens-option.used {
  opacity: 0.42;
}

.focus-meter {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  width: min(220px, 100%);
}

.focus-meter-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(24, 48, 61, 0.12);
}

.focus-meter-bar.active {
  background: linear-gradient(90deg, var(--accent-soft), var(--accent));
}

.scene-card--standard strong {
  font-size: 1.18rem;
}

.scene-card--standard span {
  font-size: 1.4rem;
  line-height: 1.3;
}

.scene--fine .scene-card {
  padding: 14px 12px;
}

.scene-card--fine strong {
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.scene-card--fine span {
  font-size: 0.82rem;
  line-height: 1.25;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 980px) {
  .hero-section__grid,
  .card-grid--three,
  .card-grid--two,
  .content-section--split,
  .promo-hero,
  .hero-grid,
  .game-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    order: -1;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: static;
    align-items: flex-start;
    border-radius: 28px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 6px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    text-align: center;
  }

  .nav-cta {
    margin-left: 0;
  }
}

@media (max-width: 680px) {
  .site-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 18px;
  }

  .hero-section h1,
  .page-banner h1 {
    font-size: clamp(2.3rem, 13vw, 3.6rem);
  }

  .hero-stage {
    min-height: 300px;
  }

  .hero-stage__card {
    width: calc(100% - 30px);
  }

  .hero-stage__card--large,
  .hero-stage__card--accent {
    left: 15px;
    right: 15px;
  }

  .hero-stage__card--large {
    top: 16px;
  }

  .hero-stage__card--accent {
    bottom: 18px;
  }

  .hero-stage__orbit {
    width: 180px;
    height: 180px;
    border-width: 14px;
  }

  .hero-stats,
  .completion-meta,
  .pair-choice-wrap,
  .difference-buttons,
  .scene,
  .sequence-slots {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .section-actions,
  .completion-actions,
  .puzzle-actions,
  .lock-actions,
  .lens-options,
  .code-entry,
  .lock-display,
  .clue-strip,
  .feature-strip,
  .promo-stack {
    flex-direction: column;
  }

  .button,
  .topbar-link,
  .text-input,
  .lock-digit {
    width: 100%;
  }

  .brand-lockup {
    align-items: flex-start;
    flex-direction: column;
  }
}

.scheduler-shell {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 4vw, 34px);
}

.scheduler-shell__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.scheduler-shell__top h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.96;
}

.scheduler-frame-wrap {
  min-height: 880px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(12, 114, 137, 0.12);
  background: rgba(255, 255, 255, 0.8);
}

.scheduler-frame {
  width: 100%;
  min-height: 880px;
  border: 0;
  background: #fff;
}

@media (max-width: 820px) {
  .scheduler-shell__top {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .scheduler-frame-wrap,
  .scheduler-frame {
    min-height: 980px;
  }
}

.media-split {
  align-items: center;
}

.media-split--reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.visual-panel {
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  border: var(--border);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-lg);
}

.visual-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.visual-panel--warm {
  background: linear-gradient(145deg, rgba(234, 212, 189, 0.3), rgba(255, 255, 255, 0.86));
}

.visual-panel--dark {
  background: linear-gradient(145deg, rgba(24, 48, 61, 0.08), rgba(12, 114, 137, 0.12));
}

.compact-grid .info-tile {
  min-height: 100%;
}

.page-banner--compact {
  align-content: center;
}

@media (max-width: 980px) {
  .media-split,
  .media-split--reverse {
    grid-template-columns: 1fr;
  }
}

.hero-section--editorial {
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(248, 251, 252, 0.88)),
    radial-gradient(circle at top right, rgba(140, 212, 216, 0.18), transparent 28%);
}

.trust-inline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 8px;
}

.trust-inline div {
  padding-top: 14px;
  border-top: 1px solid rgba(12, 114, 137, 0.14);
}

.trust-inline strong,
.signature-band__items strong,
.editorial-list strong {
  display: block;
  margin-bottom: 6px;
}

.trust-inline span,
.editorial-list span {
  color: var(--text-muted);
  line-height: 1.6;
}

.signature-band {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
  padding: 26px 30px;
}

.signature-band__headline h2,
.editorial-copy h2,
.visit-band__block h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.96;
}

.signature-band__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.signature-band__items article {
  padding: 18px 0 4px;
  border-top: 1px solid rgba(12, 114, 137, 0.16);
}

.signature-band__items p,
.editorial-copy p,
.visit-band__block p {
  margin: 0;
}

.editorial-split {
  grid-template-columns: 1fr 1fr;
}

.editorial-copy,
.promo-callout--editorial {
  padding: 30px;
}

.editorial-copy {
  display: grid;
  gap: 18px;
}

.editorial-list {
  display: grid;
  gap: 18px;
  padding-top: 8px;
}

.editorial-list div {
  padding-top: 16px;
  border-top: 1px solid rgba(12, 114, 137, 0.14);
}

.visual-panel--tall {
  min-height: 540px;
}

.visit-band {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  padding: 30px;
  align-items: start;
}

.visit-band__block {
  display: grid;
  gap: 14px;
}

.visit-band__divider {
  width: 1px;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(12, 114, 137, 0.02), rgba(12, 114, 137, 0.18), rgba(12, 114, 137, 0.02));
}

@media (max-width: 980px) {
  .trust-inline,
  .signature-band,
  .signature-band__items,
  .editorial-split,
  .visit-band {
    grid-template-columns: 1fr;
  }

  .visit-band__divider {
    display: none;
  }
}

@media (max-width: 680px) {
  .trust-inline {
    gap: 12px;
  }

  .signature-band,
  .editorial-copy,
  .promo-callout--editorial,
  .visit-band {
    padding: 22px;
  }

  .visual-panel--tall {
    min-height: 360px;
  }
}

body {
  letter-spacing: -0.01em;
}

.site-header {
  top: 18px;
  padding: 16px 20px;
  background: rgba(255, 252, 247, 0.76);
  border: 1px solid rgba(12, 114, 137, 0.1);
  border-radius: 30px;
  box-shadow: 0 20px 48px rgba(24, 48, 61, 0.12);
}

.site-brand {
  gap: 16px;
}

.site-brand strong {
  font-size: 1.42rem;
  letter-spacing: -0.02em;
}

.site-brand__logo {
  width: 82px;
}

.site-brand__eyebrow,
.section-kicker,
.eyebrow,
.service-panel__tag,
.puzzle-tag,
.status-pill,
.headline-note,
.clue-chip,
.promo-pill {
  letter-spacing: 0.16em;
}

.site-nav {
  gap: 8px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
}

.site-nav a {
  padding: 12px 16px;
  font-size: 0.98rem;
  font-weight: 700;
}

.site-nav a.is-active {
  background: rgba(12, 114, 137, 0.1);
}

.site-nav .nav-cta,
.site-nav .nav-cta.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 14px 28px rgba(7, 79, 97, 0.2);
}

.hero-section h1,
.page-banner h1 {
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.hero-section h1 {
  font-size: clamp(3.6rem, 7vw, 5.8rem);
}

.page-banner h1,
.signature-band__headline h2,
.editorial-copy h2,
.visit-band__block h2,
.cta-band h2,
.scheduler-shell__top h2 {
  letter-spacing: -0.04em;
}

.lede,
.hero-section p,
.page-banner p,
.info-tile p,
.service-panel p,
.hours-card p,
.contact-card p,
.promo-hero p,
.hero-copy p,
.puzzle-card p,
.completion-card p,
.site-footer,
.disclaimer,
.tiny-note,
.message {
  font-size: 1.02rem;
  line-height: 1.72;
}

.page-banner {
  padding: clamp(26px, 4vw, 46px);
}

.page-banner--editorial {
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(246, 250, 251, 0.9)),
    radial-gradient(circle at right top, rgba(140, 212, 216, 0.16), transparent 30%);
}

.button.primary,
.topbar-link {
  padding: 15px 24px;
}

.button.secondary {
  padding: 14px 21px;
}

.visual-panel {
  border-radius: 34px;
}

.visual-panel--tall {
  min-height: 580px;
}

.editorial-copy,
.promo-callout--editorial,
.signature-band,
.visit-band {
  backdrop-filter: blur(18px);
}

@media (max-width: 820px) {
  .site-header {
    border-radius: 26px;
  }

  .site-nav {
    padding: 0;
    background: transparent;
  }
}

@media (max-width: 680px) {
  .site-brand strong {
    font-size: 1.18rem;
  }

  .hero-section h1,
  .page-banner h1 {
    letter-spacing: -0.035em;
  }

  .visual-panel--tall {
    min-height: 360px;
  }
}

.frame-frenzy {
  display: grid;
  gap: 24px;
  padding: clamp(22px, 4vw, 36px);
}

.frame-frenzy__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.frame-frenzy__header h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 0.96;
}

.frame-frenzy__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.frame-frenzy__layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 20px;
}

.frame-frenzy__sidebar,
.frame-frenzy__main {
  display: grid;
  gap: 16px;
}

.frame-frenzy__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.frame-frenzy__board {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.7);
  border: var(--border);
}

.frame-tile {
  min-height: 88px;
  padding: 10px 8px;
  border: 1px solid rgba(24, 48, 61, 0.08);
  border-radius: 20px;
  display: grid;
  place-items: center;
  gap: 6px;
  text-align: center;
  color: #18303d;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.frame-tile.is-selected {
  outline: 3px solid rgba(12, 114, 137, 0.3);
  transform: translateY(-1px);
}

.frame-tile__icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.frame-tile__label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.frame-tile--round {
  background: linear-gradient(145deg, #edf7f8, #d6ecee);
}

.frame-tile--square {
  background: linear-gradient(145deg, #f5eee5, #ead8c5);
}

.frame-tile--cat {
  background: linear-gradient(145deg, #dce7ef, #c6d5df);
}

.frame-tile--aviator {
  background: linear-gradient(145deg, #e8f0eb, #d3e4d8);
}

.frame-tile--bold {
  background: linear-gradient(145deg, #ece6f2, #dad0e7);
}

.frame-tile--tint {
  background: linear-gradient(145deg, #f1e9d7, #eadba8);
}

.promo-duo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.promo-duo__card {
  padding: 26px;
  border-radius: 30px;
  border: var(--border);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  color: var(--text-main);
  background: rgba(255, 252, 247, 0.84);
}

.promo-duo__card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 0.96;
}

.promo-duo__card p {
  margin: 0;
  color: var(--text-muted);
}

.promo-duo__card--game {
  background: linear-gradient(145deg, rgba(24, 48, 61, 0.06), rgba(255, 255, 255, 0.82));
}

.promo-duo__card--match {
  background: linear-gradient(145deg, rgba(12, 114, 137, 0.12), rgba(255, 255, 255, 0.86));
}

.promo-duo__card--stack {
  background: linear-gradient(145deg, rgba(196, 163, 79, 0.18), rgba(255, 255, 255, 0.88));
}

@media (max-width: 980px) {
  .frame-frenzy__layout,
  .promo-duo {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .frame-frenzy__header,
  .frame-frenzy__toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .frame-frenzy__board {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .frame-tile {
    min-height: 82px;
  }
}


.frame-frenzy__toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.frame-frenzy__board {
  touch-action: none;
  user-select: none;
}

.frame-tile {
  transition: transform 120ms ease, box-shadow 120ms ease, outline-color 120ms ease, opacity 120ms ease;
}

.frame-tile.is-selected {
  box-shadow: 0 10px 22px rgba(12, 114, 137, 0.18);
}

@media (max-width: 680px) {
  .frame-frenzy__toolbar-actions {
    width: 100%;
  }

  .frame-frenzy__toolbar-actions .button {
    width: 100%;
  }
}

.frame-tile,
.frame-tile__icon {
  -webkit-user-drag: none;
}


#ff-timer.is-warning {
  color: #b33b1d;
  text-shadow: 0 0 16px rgba(179, 59, 29, 0.16);
}

.countdown-meter {
  height: 10px;
  margin: 10px 0 4px;
  border-radius: 999px;
  background: rgba(24, 48, 61, 0.1);
  overflow: hidden;
}

.countdown-meter span {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8cd4d8, #0c7289);
  transition: width 180ms linear, background 180ms linear;
}

.countdown-meter span.is-warning {
  background: linear-gradient(90deg, #f0b16e, #b33b1d);
}

.frame-frenzy__board .frame-tile.is-selected {
  transform: translate(var(--drag-x, 0px), var(--drag-y, 0px)) scale(1.04) !important;
  z-index: 3;
  box-shadow: 0 16px 34px rgba(12, 114, 137, 0.26) !important;
  opacity: 0.96;
}

.theme-neighborhood {
  background:
    radial-gradient(circle at top left, rgba(255, 217, 181, 0.58), transparent 28%),
    radial-gradient(circle at top right, rgba(212, 240, 236, 0.78), transparent 24%),
    linear-gradient(180deg, #fff8f1, #f9f2e8 48%, #eef7f6 100%);
  font-family: "Nunito", sans-serif;
  letter-spacing: 0;
}

.theme-neighborhood .site-brand strong,
.theme-neighborhood .hero-neighborhood h1,
.theme-neighborhood .page-banner--neighborhood h1,
.theme-neighborhood .story-card h2,
.theme-neighborhood .feature-split__copy h2,
.theme-neighborhood .visit-ribbon h2,
.theme-neighborhood .cta-burst h2 {
  font-family: "DM Serif Display", serif;
}

.site-shell--neighborhood {
  width: min(1220px, calc(100% - 28px));
}

.site-header--neighborhood {
  position: sticky;
  top: 14px;
  padding: 14px 18px;
  border-radius: 34px;
  background: rgba(255, 251, 245, 0.82);
  border: 1px solid rgba(199, 144, 74, 0.14);
  box-shadow: 0 24px 50px rgba(36, 67, 79, 0.1);
}

.site-nav--neighborhood {
  background: rgba(255, 255, 255, 0.55);
}

.site-nav--neighborhood a.is-active {
  background: rgba(10, 124, 134, 0.12);
}

.neighborhood-main {
  display: grid;
  gap: 26px;
}

.hero-neighborhood {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: clamp(22px, 5vw, 44px);
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(255, 248, 241, 0.94)),
    radial-gradient(circle at 18% 16%, rgba(255, 217, 181, 0.24), transparent 22%),
    radial-gradient(circle at 82% 20%, rgba(212, 240, 236, 0.22), transparent 20%);
}

.hero-neighborhood__copy,
.feature-split__copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

.hero-neighborhood h1,
.page-banner--neighborhood h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.93;
  letter-spacing: -0.04em;
}

.hero-neighborhood__art,
.feature-split__art {
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(199, 144, 74, 0.14);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 22px 48px rgba(36, 67, 79, 0.08);
}

.hero-neighborhood__art img,
.feature-split__art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.neighborhood-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.neighborhood-notes div,
.feature-list li {
  padding: 16px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(10, 124, 134, 0.12);
}

.neighborhood-notes strong,
.feature-list strong {
  display: block;
  margin-bottom: 4px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.story-card {
  padding: 28px;
  min-height: 240px;
  display: grid;
  gap: 14px;
}

.story-card h2,
.feature-split__copy h2,
.visit-ribbon h2,
.cta-burst h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.story-card--sunny {
  background: linear-gradient(180deg, #fffdf7, #fff0d9);
}

.story-card--mint {
  background: linear-gradient(180deg, #fbfffe, #e8f7f4);
}

.story-card--peach {
  background: linear-gradient(180deg, #fffaf6, #ffe7d2);
}

.feature-split--neighborhood {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 22px;
  padding: 28px;
}

.feature-list {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list span {
  color: var(--text-muted);
}

.visit-ribbon {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.98), rgba(248, 254, 252, 0.92)),
    radial-gradient(circle at 12% 18%, rgba(255, 217, 181, 0.16), transparent 24%);
}

.cta-burst {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px;
  background: linear-gradient(135deg, #0a7c86, #176a7b 60%, #f6c36d 140%);
  color: #fff8f1;
}

.cta-burst .section-kicker,
.cta-burst h2 {
  color: inherit;
}

.global-footer--neighborhood {
  padding-top: 8px;
}

.page-banner--neighborhood {
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(248, 253, 252, 0.9)),
    radial-gradient(circle at top right, rgba(212, 240, 236, 0.24), transparent 24%);
}

@media (max-width: 980px) {
  .hero-neighborhood,
  .feature-split--neighborhood,
  .story-grid,
  .visit-ribbon {
    grid-template-columns: 1fr;
  }

  .cta-burst {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .site-header--neighborhood {
    border-radius: 28px;
  }

  .neighborhood-notes {
    grid-template-columns: 1fr;
  }

  .hero-neighborhood,
  .feature-split--neighborhood,
  .story-card,
  .visit-ribbon,
  .cta-burst,
  .page-banner--neighborhood {
    padding: 22px;
  }
}

.hero-neighborhood__art,
.feature-split__art {
  position: relative;
}

.hero-neighborhood__art::after,
.feature-split__art::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.36), transparent 68%);
  pointer-events: none;
}

.story-card {
  overflow: hidden;
  position: relative;
}

.story-card::before {
  content: "";
  position: absolute;
  right: -24px;
  top: -24px;
  width: 120px;
  height: 120px;
  border-radius: 28px;
  background: rgba(255,255,255,0.32);
  transform: rotate(18deg);
}

.map-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  padding: 28px;
  align-items: stretch;
}

.map-section__copy {
  display: grid;
  gap: 14px;
  align-content: center;
}

.map-section__copy h2 {
  margin: 0;
  font-family: "DM Serif Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.map-embed-wrap {
  overflow: hidden;
  min-height: 420px;
  border-radius: 30px;
  border: 1px solid rgba(199, 144, 74, 0.14);
  background: #f6f1ea;
  box-shadow: 0 20px 44px rgba(36, 67, 79, 0.08);
}

.map-embed {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

@media (max-width: 980px) {
  .map-section {
    grid-template-columns: 1fr;
  }
}

/* Practice-led homepage refresh */
.theme-neighborhood {
  background: #f7f1e8;
  color: #1f2d33;
}

.theme-neighborhood .site-shell--neighborhood {
  width: min(1220px, calc(100% - 32px));
  padding-top: 20px;
}

.theme-neighborhood .panel {
  background: #fbf8f2;
  border: 1px solid rgba(31, 45, 51, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(31, 45, 51, 0.06);
  backdrop-filter: none;
}

.site-header--neighborhood {
  display: grid;
  gap: 14px;
  padding: 16px 20px 18px;
  border-radius: 18px;
  background: rgba(251, 248, 242, 0.96);
  border: 1px solid rgba(31, 45, 51, 0.08);
  box-shadow: 0 14px 28px rgba(31, 45, 51, 0.05);
}

.practice-header__utility,
.practice-header__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.practice-header__utility {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(31, 45, 51, 0.08);
  color: #5b666c;
  font-size: 0.9rem;
}

.practice-header__utility p {
  margin: 0;
}

.practice-header__utility a {
  color: #0e6e7c;
  font-weight: 700;
  text-decoration: none;
}

.practice-header__main {
  align-items: center;
}

.theme-neighborhood .site-nav--neighborhood {
  gap: 4px;
  padding: 0;
  background: transparent;
}

.theme-neighborhood .site-nav--neighborhood a {
  padding: 10px 14px;
  border-radius: 10px;
}

.theme-neighborhood .site-nav--neighborhood a.is-active {
  background: rgba(14, 110, 124, 0.08);
}

.theme-neighborhood .site-nav--neighborhood .nav-cta,
.theme-neighborhood .site-nav--neighborhood .nav-cta.is-active {
  border-radius: 999px;
}

.theme-neighborhood .neighborhood-main {
  gap: 64px;
  padding-top: 22px;
}

.hero-practice {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 42px;
  align-items: start;
}

.hero-practice--compact {
  align-items: center;
}

.hero-practice__copy {
  display: grid;
  gap: 22px;
  align-content: start;
  padding-top: 20px;
}

.hero-practice h1 {
  margin: 0;
  max-width: 10ch;
  font-family: "DM Serif Display", serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.hero-practice .lede {
  max-width: 58ch;
  font-size: 1.08rem;
  line-height: 1.75;
  color: #526168;
}

.proof-inline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 12px;
}

.proof-inline div {
  padding-top: 14px;
  border-top: 1px solid rgba(31, 45, 51, 0.1);
}

.proof-inline strong,
.practice-note strong,
.service-columns__grid h3,
.local-visit__aside h3,
.patient-journey__steps strong {
  display: block;
  margin-bottom: 6px;
}

.proof-inline span,
.practice-note p,
.service-columns__grid p,
.patient-journey__steps p,
.local-visit__aside p,
.local-visit__details dd {
  color: #526168;
  line-height: 1.68;
}

.hero-practice__media {
  display: grid;
  gap: 16px;
}

.practice-photo-frame {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(31, 45, 51, 0.08);
  background: linear-gradient(180deg, #f9f5ee, #efe6d7);
  box-shadow: 0 20px 40px rgba(31, 45, 51, 0.08);
}

.practice-photo-frame img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  padding: 28px;
}

.practice-photo-frame--wide img {
  height: 420px;
  object-fit: cover;
  padding: 0;
}

.practice-photo-frame figcaption {
  padding: 14px 18px 18px;
  border-top: 1px solid rgba(31, 45, 51, 0.08);
  color: #5b666c;
  font-size: 0.92rem;
}

.practice-snapshot {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.practice-snapshot__card {
  padding: 18px;
  border: 1px solid rgba(31, 45, 51, 0.08);
  border-radius: 14px;
  background: #fcfaf5;
}

.practice-snapshot__card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.practice-snapshot__photo,
.practice-detail-photo,
.service-photo-strip figure {
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(31, 45, 51, 0.08);
  background: #f4eee5;
}

.practice-snapshot__photo img,
.practice-detail-photo img,
.service-photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.practice-snapshot__photo {
  min-height: 100%;
}

.practice-snapshot__photo--stacked {
  margin-bottom: 4px;
}

.practice-snapshot__photo img {
  height: 100%;
  min-height: 160px;
  object-fit: contain;
  object-position: center;
  background: #f4eee5;
}

.practice-snapshot__photo figcaption {
  padding: 10px 12px 12px;
  color: #5b666c;
  font-size: 0.86rem;
}

.practice-snapshot__card p,
.proof-band p,
.editorial-practice__intro p,
.section-heading p {
  margin: 0;
  color: #526168;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(31, 45, 51, 0.08);
  border-bottom: 1px solid rgba(31, 45, 51, 0.08);
}

.proof-band > div {
  display: grid;
  gap: 6px;
}

.proof-band__label {
  color: #0e6e7c;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.proof-band a {
  color: #1f2d33;
  font-size: 1.08rem;
  font-weight: 800;
  text-decoration: none;
}

.editorial-practice {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: start;
}

.editorial-practice__intro,
.editorial-practice__body,
.service-columns,
.patient-journey,
.local-visit {
  display: grid;
  gap: 18px;
}

.editorial-practice__intro h2,
.section-heading h2,
.local-visit__copy h2,
.cta-burst--practice h2 {
  margin: 0;
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.editorial-practice__body {
  gap: 18px;
}

.practice-detail-photo {
  min-height: 320px;
}

.practice-note-list {
  display: grid;
  gap: 0;
}

.practice-note {
  padding: 20px 0;
  border-top: 1px solid rgba(31, 45, 51, 0.08);
}

.practice-note:first-child {
  padding-top: 0;
  border-top: 0;
}

.section-heading {
  display: grid;
  gap: 10px;
  max-width: 680px;
}

.service-columns__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 34px;
}

.service-photo-strip {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 14px;
  margin-top: 4px;
}

.service-photo-strip figure {
  aspect-ratio: 1 / 0.9;
}

.service-columns__grid article {
  padding-top: 18px;
  border-top: 1px solid rgba(31, 45, 51, 0.08);
}

.promo-hero--practice {
  align-items: start;
}

.theme-neighborhood .page-shell {
  width: min(1120px, 100%);
  padding: 0;
}

.theme-neighborhood .topbar {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(31, 45, 51, 0.08);
}

.theme-neighborhood .topbar h2,
.theme-neighborhood .topbar h1,
.theme-neighborhood .scheduler-shell__top h2,
.theme-neighborhood .frame-frenzy__header h2 {
  font-family: "DM Serif Display", serif;
}

.theme-neighborhood .site-footer {
  color: #5b666c;
}

.service-columns__grid h3 {
  margin: 0;
  font-size: 1.15rem;
}

.patient-journey {
  padding: 34px;
  border: 1px solid rgba(31, 45, 51, 0.08);
  border-radius: 18px;
  background: #fbf8f2;
}

.patient-journey__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.patient-journey__steps li {
  display: grid;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(31, 45, 51, 0.1);
}

.local-visit {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 38px;
  align-items: start;
}

.local-visit__copy {
  display: grid;
  gap: 18px;
}

.local-visit__details {
  display: grid;
  gap: 16px;
  margin: 0;
}

.local-visit__details div {
  padding-top: 16px;
  border-top: 1px solid rgba(31, 45, 51, 0.08);
}

.local-visit__details dt {
  margin-bottom: 6px;
  color: #0e6e7c;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.local-visit__details dd {
  margin: 0;
}

.local-visit__aside {
  padding: 24px;
  border-left: 1px solid rgba(31, 45, 51, 0.08);
}

.local-visit__aside h3 {
  margin: 0;
  font-family: "DM Serif Display", serif;
  font-size: 1.8rem;
  line-height: 1;
}

.cta-burst--practice {
  border-radius: 18px;
  background: #1f3d46;
  color: #f8f4ee;
  border-color: rgba(31, 61, 70, 0.92);
  box-shadow: 0 22px 40px rgba(31, 45, 51, 0.12);
}

.cta-burst--practice .section-kicker,
.cta-burst--practice h2,
.cta-burst--practice p,
.cta-burst--practice a {
  color: inherit;
}

.theme-neighborhood .panel.cta-burst--practice {
  background: #1f3d46;
}

.cta-burst--practice .button.secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #f8f4ee;
}

.arrival-strip {
  display: grid;
  gap: 20px;
}

.arrival-strip__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 14px;
}

.arrival-strip__grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(31, 45, 51, 0.08);
  background: #fbf8f2;
}

.arrival-strip__grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.arrival-strip__grid figcaption {
  padding: 12px 14px 14px;
  color: #5b666c;
  font-size: 0.92rem;
}

.vision-stack {
  display: grid;
  gap: 24px;
  padding: clamp(22px, 4vw, 34px);
}

.vision-stack__header,
.vision-stack__toolbar,
.vision-stack__board-wrap,
.vision-stack__controls,
.vision-stack__actions,
.vision-stack__toolbar-actions {
  display: flex;
  gap: 12px;
}

.vision-stack__header,
.vision-stack__toolbar,
.vision-stack__board-wrap {
  align-items: flex-start;
  justify-content: space-between;
}

.vision-stack__header h2 {
  margin: 0;
  font-family: "DM Serif Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
}

.vision-stack__actions,
.vision-stack__toolbar-actions,
.vision-stack__controls {
  flex-wrap: wrap;
}

.vision-stack__layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
}

.vision-stack__sidebar,
.vision-stack__main {
  display: grid;
  gap: 16px;
}

.vision-stack__board-wrap {
  gap: 18px;
}

.vision-stack__canvas,
.vision-stack__next canvas {
  border: 1px solid rgba(31, 45, 51, 0.08);
  border-radius: 18px;
  background: #f3ede2;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.vision-stack__canvas {
  width: min(100%, 300px);
  height: auto;
}

.vision-stack__next {
  min-width: 148px;
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 18px;
  border: 1px solid rgba(31, 45, 51, 0.08);
  border-radius: 18px;
  background: #fbf8f2;
}

.vision-stack__next p {
  margin: 0;
  color: #526168;
  font-weight: 700;
}

.vision-stack__controls {
  justify-content: center;
}

.vision-stack__controls .button {
  min-width: 108px;
}

@media (max-width: 980px) {
  .practice-header__utility,
  .practice-header__main,
  .hero-practice,
  .editorial-practice,
  .local-visit,
  .proof-band,
  .patient-journey__steps,
  .service-columns__grid,
  .arrival-strip__grid,
  .vision-stack__layout {
    grid-template-columns: 1fr;
  }

  .practice-header__utility,
  .practice-header__main {
    flex-direction: column;
    align-items: flex-start;
  }

  .proof-inline,
  .practice-snapshot,
  .service-photo-strip {
    grid-template-columns: 1fr;
  }

  .local-visit__aside {
    padding: 0;
    border-left: 0;
    border-top: 1px solid rgba(31, 45, 51, 0.08);
    padding-top: 20px;
  }

  .vision-stack__board-wrap {
    flex-direction: column;
  }
}

@media (max-width: 820px) {
  .site-header--neighborhood {
    position: static;
  }

  .theme-neighborhood .site-nav--neighborhood {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .theme-neighborhood .site-shell--neighborhood {
    width: min(100% - 20px, 1220px);
  }

  .hero-practice h1 {
    font-size: clamp(2.5rem, 12vw, 3.6rem);
  }

  .patient-journey,
  .local-visit__aside {
    padding: 22px;
  }

  .proof-band {
    gap: 20px;
  }

  .vision-stack__header,
  .vision-stack__toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .vision-stack__controls .button,
  .vision-stack__actions .button,
  .vision-stack__toolbar-actions .button {
    width: 100%;
  }
}
