/* Charmacu — Serene Bloom–inspired palette, acupuncture + chiropractic */

:root {
  --cream: #ffffff;
  --cream-dark: #f5f5f5;
  --ink: #1a1a1a;
  --ink-muted: #4a4a4a;
  --sage: #6b8f71;
  --sage-dark: #4f6b54;
  --sage-soft: rgba(107, 143, 113, 0.12);
  --stone: #d4cec4;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: "Barlow Semi Condensed", "Barlow", system-ui, sans-serif;
  --font-body: "Barlow", system-ui, sans-serif;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: -0.011em;
  color: var(--ink);
  background: var(--white);
}

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

a {
  color: var(--sage-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
.h3-sub {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 0.5em;
}

h1 {
  font-size: clamp(2.75rem, 6.5vw, 4.25rem);
  letter-spacing: -0.04em;
  font-weight: 700;
  line-height: 1.05;
}

/* Page h1s must not show a misleading focus ring or text-selection chrome on load */
h1 {
  -webkit-user-select: none;
  user-select: none;
  caret-color: transparent;
}

h1:focus,
h1:focus-visible {
  outline: none;
  box-shadow: none;
}

h1::selection,
h1 *::selection {
  background: transparent;
}

h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

h3 {
  font-size: 1.4rem;
  font-weight: 700;
}

.h3-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 1.5rem;
  color: var(--ink);
  letter-spacing: 0;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.container-narrow {
  width: min(720px, 92vw);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
  width: min(1120px, 92vw);
  margin-inline: auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0;
}

.logo-img {
  display: block;
  height: clamp(34px, 4.2vw, 46px);
  width: auto;
  max-width: min(240px, 58vw);
  object-fit: contain;
}

.logo:hover {
  text-decoration: none;
  color: var(--sage-dark);
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--sage) 0%, var(--sage-dark) 100%);
  box-shadow: 0 4px 12px var(--sage-soft);
}

.logo-mark::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), transparent 55%);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s, opacity 0.2s;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-muted);
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--sage-dark);
}

.nav-cta {
  padding: 0.55rem 1.25rem;
  background: var(--ink);
  color: var(--white) !important;
  border-radius: 999px;
}

.nav-cta:hover {
  background: var(--sage-dark);
  color: var(--white) !important;
  text-decoration: none;
}

/* Hero — headline block, wide carousel below (reference-style) */
.hero--stack {
  position: relative;
  background: var(--white);
  padding: calc(var(--header-h) + 2rem) 0 0;
}

.hero-inner {
  width: min(1120px, 92vw);
  margin-inline: auto;
  padding-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.hero-copy {
  max-width: 52rem;
}

.hero-media {
  width: 100%;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.hero-media-inner {
  /* Break out of the centered layout to true full-viewport width */
  width: 100vw;
  max-width: none;
  margin-inline: calc(50% - 50vw);
  padding-inline: 0;
  box-sizing: border-box;
}

.hero-carousel-wrap {
  position: relative;
  width: 100%;
}

.hero-carousel-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: clamp(1rem, 2.5vw, 1.75rem) clamp(1rem, 3vw, 2rem) 3.75rem;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.12) 42%,
      transparent 55%
    ),
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.45) 45%,
      rgba(0, 0, 0, 0.08) 78%,
      transparent 100%
    );
  pointer-events: none;
}

.hero-carousel-headline {
  margin: 0;
  max-width: min(100%, 28ch);
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6.5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.hero-carousel-headline-accent {
  color: #c5dcc9;
}

.hero-carousel-overlay-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
}

.hero-carousel-caption {
  margin: 0;
  max-width: 52ch;
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  font-weight: 500;
  line-height: 1.5;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
}

.hero-carousel-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  pointer-events: auto;
}

.hero-carousel-cta .btn-on-carousel.btn-primary {
  background: var(--white);
  color: var(--ink);
}

.hero-carousel-cta .btn-on-carousel.btn-primary:hover {
  background: var(--cream-dark);
  color: var(--ink);
  text-decoration: none;
}

.hero-carousel-cta .btn-on-carousel.btn-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
}

.hero-carousel-cta .btn-on-carousel.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  color: #ffffff;
  text-decoration: none;
}

.hero-carousel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--cream-dark);
  box-shadow: var(--shadow);
  width: 100%;
}

.hero-carousel-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  min-height: 280px;
  max-height: min(460px, 52vh);
}

.hero-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.75s ease;
  pointer-events: none;
}

.hero-carousel-slide.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.hero-carousel-slide picture {
  position: absolute;
  inset: 0;
  display: block;
}

.hero-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-carousel-controls {
  position: absolute;
  bottom: 0.875rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 0.45rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
}

.hero-carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(42, 40, 38, 0.22);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-carousel-dot:hover {
  background: rgba(42, 40, 38, 0.4);
}

.hero-carousel-dot.is-active {
  background: var(--ink);
  transform: scale(1.2);
}

@media (prefers-reduced-motion: reduce) {
  .hero-carousel-slide {
    transition: opacity 0.01s;
  }
}

.eyebrow {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  margin: 0 0 1.25rem;
  font-weight: 600;
}

.hero-line2 {
  color: var(--ink);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--sage-dark);
  color: var(--white);
  text-decoration: none;
  box-shadow: var(--shadow);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(0, 0, 0, 0.14);
}

.btn-ghost:hover {
  border-color: var(--sage);
  color: var(--sage-dark);
  text-decoration: none;
}

.btn-full {
  width: 100%;
}

.btn-inline {
  margin-top: 1rem;
}

/* Sections */
.section {
  padding: clamp(4rem, 10vw, 6rem) 0;
}

.section-alt {
  background: var(--cream-dark);
}

.section-head {
  text-align: left;
  max-width: 38rem;
  margin: 0 0 2.5rem;
}

.section-intro {
  margin: 0;
  color: var(--ink-muted);
  font-size: 1.125rem;
  font-weight: 500;
}

.lead {
  font-size: 1.1875rem;
  color: var(--ink-muted);
  font-weight: 500;
}

.lead strong {
  color: var(--ink);
  font-weight: 600;
}

/* About */
.split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.practitioner-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
  background: var(--cream-dark);
  aspect-ratio: 4 / 5;
  max-height: min(560px, 70vh);
}

.practitioner-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.practitioner-copy p {
  margin: 0 0 1rem;
  color: var(--ink-muted);
}

.practitioner-copy p:last-child {
  margin-bottom: 0;
}

.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
  background: var(--cream-dark);
  aspect-ratio: 4 / 5;
  max-height: min(560px, 70vh);
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-copy p {
  margin: 0 0 1rem;
  color: var(--ink-muted);
}

.about-copy p:last-child {
  margin-bottom: 0;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.service-block--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem 2rem;
  align-items: center;
}

@media (max-width: 768px) {
  .service-block--wide {
    grid-template-columns: 1fr;
  }
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--sage-soft);
  margin-bottom: 1rem;
  background-image: radial-gradient(circle at 30% 30%, var(--sage) 0%, transparent 45%);
  opacity: 0.9;
}

.service-icon--spine {
  background-image: linear-gradient(90deg, transparent 45%, var(--sage) 45%, var(--sage) 55%, transparent 55%),
    radial-gradient(ellipse 80% 40% at 50% 50%, var(--sage-soft), transparent);
}

.service-icon--combined {
  background-image: linear-gradient(135deg, var(--sage-soft), rgba(107, 143, 113, 0.35));
}

.service-block--wide .service-icon {
  margin-bottom: 0;
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-list li {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: grid;
  gap: 0.25rem;
}

.service-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.svc-name {
  font-weight: 600;
  color: var(--ink);
}

.svc-meta {
  font-size: 0.875rem;
  color: var(--sage-dark);
}

.svc-note {
  font-size: 0.9375rem;
  color: var(--ink-muted);
}

.integrated-copy {
  margin: 0;
  color: var(--ink-muted);
  max-width: 52ch;
}

/* Benefits */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.benefit-card {
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.benefit-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--ink-muted);
}

.benefit-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sage);
  margin-bottom: 1rem;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.quote-card {
  margin: 0;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
}

.quote-card p {
  margin: 0 0 1rem;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  font-style: normal;
  line-height: 1.55;
  color: var(--ink);
}

.quote-card footer {
  font-size: 0.875rem;
  color: var(--ink-muted);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-item {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: var(--cream-dark);
  border: 1px solid var(--stone);
}

.gallery-item.g1 {
  background: linear-gradient(145deg, #dde6df, #c5d4c8);
}

.gallery-item.g2 {
  background: linear-gradient(145deg, #e8e4dc, #d4cec4);
}

.gallery-item.g3 {
  background: linear-gradient(145deg, #cfd9d0, #a8b9aa);
}

.gallery-item.g4 {
  background: linear-gradient(145deg, #ebe7e0, #c9c4bc);
}

.gallery-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--ink-muted);
  margin-top: 1.5rem;
}

/* FAQ */
.faq-list {
  margin: 0;
}

.faq-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-item dt {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.faq-item dd {
  margin: 0;
  color: var(--ink-muted);
}

/* Form */
.booking-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.form-row {
  margin-bottom: 1.25rem;
}

.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-row label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid var(--sage);
  outline-offset: 2px;
  border-color: var(--sage);
}

.form-row textarea {
  resize: vertical;
  min-height: 100px;
}

.form-status {
  margin: 1rem 0 0;
  min-height: 1.5em;
  font-size: 0.9375rem;
}

.form-status.success {
  color: var(--sage-dark);
}

.form-status.error {
  color: #8b4513;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.88);
  padding: 3.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.logo-footer {
  color: var(--white);
}

.logo-footer .logo-mark {
  box-shadow: none;
}

.footer-tag {
  margin: 0.75rem 0 1rem;
  font-size: 0.9375rem;
  opacity: 0.9;
}

.footer-address {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  opacity: 0.8;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.92);
  opacity: 0.95;
}

.site-footer a:hover {
  opacity: 1;
  color: #b8d4bc;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.8125rem;
  opacity: 0.65;
  text-align: center;
}

/* Blazor layout & nav */
.layout-root {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.layout-main {
  flex: 1;
}

.site-nav a.active {
  color: var(--sage-dark);
}

.book-page {
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: 4rem;
}

.book-container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.book-layout {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

.book-aside {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.book-aside-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 1.25rem;
  aspect-ratio: 4 / 5;
  max-height: 280px;
  background: var(--cream-dark);
}

.book-aside-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.book-aside-kicker {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sage-dark);
  margin: 0 0 0.5rem;
}

.book-aside-lead {
  font-size: 1.0625rem;
  color: var(--ink-muted);
  line-height: 1.55;
  margin: 0 0 1rem;
}

.book-aside-list {
  margin: 0;
  padding: 0 0 0 1.2rem;
  color: var(--ink-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.book-aside-list li {
  margin-bottom: 0.65rem;
}

.book-aside-list li:last-child {
  margin-bottom: 0;
}

.book-aside-icon {
  margin-top: 1.25rem;
  color: var(--sage-dark);
  opacity: 0.45;
}

.book-main-head {
  margin-bottom: 1.25rem;
}

.book-main-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
  line-height: 1.15;
}

.book-main-intro {
  margin: 0;
  color: var(--ink-muted);
  font-size: 1.0625rem;
}

.book-panel {
  margin-top: 1.25rem;
  padding: 1.5rem;
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.book-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
  margin-bottom: 0;
}

.book-paths {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  align-items: stretch;
  margin-top: 1.25rem;
}

.book-help + .book-paths {
  margin-top: 1.5rem;
}

.book-paths .book-cta-card {
  max-width: none;
}

.book-card-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: var(--ink);
}

.book-cta-sub--top {
  margin: 0 0 1.25rem;
}

.book-cta-hint {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  color: var(--ink-muted);
  line-height: 1.45;
  opacity: 0.9;
}

.book-cta-second {
  margin-top: 0.75rem;
}

.book-cta-card {
  padding: 2rem 1.75rem;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 28rem;
}

.btn-book-lg {
  width: 100%;
  justify-content: center;
  padding: 1rem 1.75rem;
  font-size: 1.0625rem;
}

.book-cta-sub {
  margin: 1rem 0 0;
  font-size: 0.9375rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

.book-panel--widget {
  margin-top: 1.5rem;
}

.book-square-notes {
  margin-top: 1.75rem;
}

.book-square-dash-note {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--ink-muted);
  line-height: 1.55;
  max-width: none;
}

.book-square-dash-note strong {
  color: var(--ink);
}

.square-embed-area {
  min-height: 320px;
  margin-top: 1rem;
}

.book-help {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--cream-dark);
  border-radius: var(--radius);
  font-size: 1rem;
  color: var(--ink-muted);
}

.book-help code {
  font-size: 0.85em;
  background: rgba(255, 255, 255, 0.7);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

/* Mobile */
@media (max-width: 900px) {
  .book-layout {
    grid-template-columns: 1fr;
  }

  .book-aside {
    position: static;
  }

  .book-aside-visual {
    max-height: 200px;
    aspect-ratio: 21 / 9;
  }
}

@media (max-width: 960px) {
  .hero-carousel-viewport {
    aspect-ratio: 16 / 10;
    min-height: 220px;
    max-height: min(380px, 45vh);
  }

  .hero-carousel-overlay {
    padding-bottom: 3.25rem;
  }

  .hero-carousel-headline {
    max-width: 100%;
  }

  .hero-carousel-caption {
    max-width: none;
  }

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

  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .site-nav a {
    display: block;
    padding: 0.85rem 0;
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.5rem;
  }

  .site-header.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .site-header.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .form-row.two {
    grid-template-columns: 1fr;
  }

  .booking-form {
    padding: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
