@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: optional;
  src: url("./static/fonts/Manrope-Variable.woff2") format("woff2");
}

:root {
  --bg-cream: #f8f6f3;
  --bg-warm: #f6f4ef;
  --bg-dark: #333333;
  --bg-page: #fcfbf9;
  --text-dark: #333333;
  --text-muted: #5c5c5c;
  --text-muted-strong: #4a4a4a;
  --accent: #c6953a;
  --brand: #434c60;
  --cta: #c4682f;
  --cta-hover: #b35d27;
  --cta-text: #ffffff;
  --white: #ffffff;
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 10px 24px rgba(0, 0, 0, 0.06);
  --radius: 8px;
  --max-width: 1200px;
  scroll-padding-top: 0px;
}

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

body {
  margin: 0;
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--bg-page);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Typography spacing */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.6em;
  line-height: 1.2;
}

p {
  margin: 0 0 0.9em;
}

ul,
ol {
  margin: 0 0 1em;
}

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

a {
  color: var(--brand);
  text-decoration: none;
  text-decoration-color: rgba(67, 76, 96, 0.4);
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

a:hover {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: var(--accent);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(198, 149, 58, 0.6);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  padding: 0.75rem 1.25rem;
  background: #fff;
  color: var(--text-dark);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: var(--shadow-card);
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

ul {
  padding-left: 1.2rem;
}

ul li {
  margin: 0.4rem 0;
}

.section-header > *:last-child,
.card > *:last-child,
.hero-content > *:last-child,
.pricing-card > *:last-child,
.center > *:last-child,
.site-footer > *:last-child {
  margin-bottom: 0;
}

.container {
  width: min(var(--max-width), 92vw);
  margin: 0 auto;
}

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

.center {
  text-align: center;
}

.light {
  color: #f8f6f3;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(252, 251, 249, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.header-left,
.header-right {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.header-left {
  align-items: flex-start;
}

.header-right {
  align-items: flex-end;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
}

.brand img {
  width: 180px;
  height: auto;
}

.header-proof {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.6);
}

@media (min-width: 641px) {
  .header-proof {
    display: none;
  }
}

.header-proof .proof-stars {
  color: var(--accent);
  letter-spacing: 0.2em;
  font-size: 0.8rem;
}

.header-trust {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
}

.site-nav {
  display: flex;
  gap: 1.2rem;
  font-size: 0.95rem;
}

.site-nav a {
  color: var(--text-dark);
  font-weight: 500;
  text-decoration: none;
}

.site-nav a:hover {
  text-decoration: none;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  min-height: 44px;
  border-radius: var(--radius);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  background: transparent;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--cta);
  color: var(--cta-text);
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 10px 22px rgba(196, 104, 47, 0.25);
}

.button-primary:hover {
  background: var(--cta-hover);
}

.button-primary::after {
  content: "→";
  font-size: 1.05em;
}

.button-secondary {
  background: #f8f6f3;
  color: var(--text-dark);
  border-color: rgba(0, 0, 0, 0.15);
}

.button-outline {
  color: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.45);
}

.icon-button {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.icon-button:hover {
  border-color: rgba(0, 0, 0, 0.25);
}

.icon-button-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

.testimonial-nav [data-hero-prev]:hover .icon-button-arrow {
  transform: translateY(-1px) skewX(-14deg) translateX(-1px);
}

.testimonial-nav [data-hero-next]:hover .icon-button-arrow {
  transform: translateY(-1px) skewX(14deg) translateX(1px);
}

/* Hero */
.hero {
  background: var(--bg-warm);
  padding: 2rem 0 3rem;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(0.98);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.hero-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-soft);
}

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-benefits-overlay {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  width: 85%;
  max-width: 520px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  padding: 0.5rem 1.25rem;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.hero-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  text-align: center;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.2;
  margin: 0;
  max-width: 20ch;
  font-weight: 700;
}

.hero-content p {
  margin: 0;
  max-width: 48ch;
}

.hero-rating {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
}

.hero-rating span:first-child {
  color: var(--accent);
  letter-spacing: 0.1em;
}

.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  font-weight: 600;
  min-height: 48px;
}

.hero-benefits-overlay .hero-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 1rem;
  justify-items: center;
  text-align: center;
}

.hero-benefits-overlay .hero-benefits li {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  justify-content: center;
}

.hero-benefits span {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  border-radius: 4px;
  margin-right: 0.6rem;
  font-size: 0.85rem;
}

.hero-note {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.hero-trust {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.6);
  margin: 0;
}

.map-link {
  margin-top: 1.5rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.hero-cta .button {
  min-width: 180px;
}

.hero-testimonial {
  padding: 1.5rem;
  grid-column: span 2;
  text-align: center;
  min-height: 220px;
}

.hero-testimonial .testimonial-meta {
  gap: 0.5rem;
  justify-content: center;
}

.testimonial-stars {
  color: var(--accent);
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
}

.testimonial-quote {
  font-style: italic;
  color: var(--text-muted-strong);
  font-size: 1.05rem;
  margin: 0 0 1rem;
  min-height: 3.6em;
}

.testimonial-meta div:first-child {
  font-weight: 600;
}

.testimonial-meta div:last-child {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(0, 0, 0, 0.5);
}

.testimonial-nav {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  min-height: 44px;
}

.testimonial-dots {
  display: flex;
  gap: 0.4rem;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.3);
  background: transparent;
  cursor: pointer;
}

.testimonial-dots button.is-active {
  background: var(--text-dark);
  border-color: var(--text-dark);
}

/* Section styling */
.section {
  padding: 4.75rem 0;
}

.section[id] {
  scroll-margin-top: 96px;
}

.section-header[id] {
  scroll-margin-top: 96px;
}

.section-anchor {
  height: 0;
  scroll-margin-top: 110px;
}


.section-warm {
  background: linear-gradient(180deg, #f8f5f0 0%, #fbfaf7 100%);
}

.section-warm .section-header {
  text-align: center;
}

.section-warm .section-header p {
  margin: 0 auto;
}

.section-warm .card {
  background: #fffdf8;
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.section-warm .step {
  background: var(--brand);
}

.section-light {
  background: #fbfaf7;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.section-dark {
  background: var(--bg-dark);
  color: #f8f6f3;
}

.section-textured {
  background: var(--bg-warm);
}

.section-image {
  position: relative;
  background: var(--bg-warm);
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  color: #1b1b1b;
}

.section-image-limited {
  --bg-image: url("./static/limited-availability-bg.webp");
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(246, 244, 239, 0.78);
}

.overlay.dark {
  background: rgba(0, 0, 0, 0.5);
}

.section-image .container {
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 2.25rem;
}

.section-header h2 {
  letter-spacing: -0.01em;
}

.section-header h2 {
  margin: 0.6rem 0 0.6rem;
  font-size: clamp(1.9rem, 3.2vw, 2.4rem);
  font-weight: 600;
}

.section-header p {
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto;
}

.section-light .section-header {
  text-align: center;
}

.section-light .section-header p {
  color: var(--text-muted-strong);
  margin: 0 auto;
}

.section-light .card {
  background: #fff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.05);
}

.section-header.light p,
.section-dark a {
  color: rgba(255, 255, 255, 0.8);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.45);
  margin: 0 0 0.4rem;
}

.section-header.light .eyebrow {
  color: rgba(255, 255, 255, 0.5);
}

/* Cards */
.card-grid {
  display: grid;
  gap: 1.4rem;
}

.card-grid.two-up {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

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

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

.card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1.4rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.section-light .card.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
  padding: 1.25rem 1rem;
}

.section-light .card.center h3 {
  margin: 0;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.section-light .card.center p {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.6);
  white-space: nowrap;
  line-height: 1.2;
}

@media (hover: hover) {
  .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.12);
  }
}

.card h3 {
  margin-top: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.card a {
  font-weight: 600;
}

.step {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--text-dark);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 600;
  margin: 0 auto 1rem;
}

.video-card {
  margin-top: 2.25rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.video-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 0;
}

.video-frame[data-embed] {
  background: #1b1b1b;
  background-image: var(--embed-poster);
  background-size: cover;
  background-position: center;
}

.embed-poster-video {
  --embed-poster: url("./static/backgrounds/video-hero-still.webp");
}

.embed-poster-map {
  --embed-poster: url("./static/backgrounds/map-poster.webp");
}

.video-frame[data-embed]::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.45));
  pointer-events: none;
  z-index: 0;
}

.video-frame.short {
  padding-bottom: 50%;
}

.video-frame.map-frame {
  padding-bottom: 50%;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 1;
}

.embed-button {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--radius);
  background: rgba(15, 17, 21, 0.55);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  z-index: 1;
}

.embed-button .embed-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.25);
  display: grid;
  place-items: center;
}

.embed-button .embed-icon::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent #ffffff;
  margin-left: 3px;
}

.embed-button .embed-label {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.embed-button:hover {
  background: rgba(15, 17, 21, 0.7);
}

/* Pricing */
.pricing-note {
  margin: 1.75rem auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.pricing-note span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
}

.section-dark .pricing-note span {
  color: rgba(255, 255, 255, 0.75);
}

.pricing-note span::before {
  content: "";
  width: 18px;
  height: 18px;
  display: inline-block;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><circle cx='10' cy='10' r='10' fill='%23c6953a'/><path d='M5.2 10.4l2.7 2.7 6-6' stroke='%23fff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.section-dark .card {
  color: var(--text-dark);
}

.section-dark .card a {
  color: var(--brand);
}

.pricing-card {
  position: relative;
  text-align: center;
}

.pricing-card .price {
  margin-top: 0.25rem;
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: 600;
}

.pricing-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Treatments */
.treatment-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 0.85rem;
}

[data-treatments-grid] .card p {
  margin: 0 0 0.6em;
}

.therapist-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 0.8rem;
}

.therapist-title {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.therapist-name {
  font-weight: 600;
}

.therapist-specialty {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Reviews */
.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.7);
}

.review-stars {
  color: var(--accent);
  letter-spacing: 0.12em;
}

.review-meta strong {
  letter-spacing: 0.01em;
}

[data-reviews-grid] .card p:last-child {
  font-style: italic;
  color: rgba(0, 0, 0, 0.55);
}

/* Content helpers */
.lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  margin: 0 auto 1.5rem;
}

.quote {
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.faq-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-item {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-card);
  padding: 1.25rem;
}

.faq-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.faq-item p {
  margin: 0;
  color: var(--text-muted);
}

@media (max-width: 960px) {
  .faq-list {
    grid-template-columns: 1fr;
  }
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.75rem 0 1rem;
}

.muted {
  color: rgba(0, 0, 0, 0.65);
  font-size: 0.95rem;
}

.section-note {
  margin-top: 1.5rem;
}

.section-dark .muted {
  color: rgba(255, 255, 255, 0.75);
}

.section-dark .button + .muted {
  margin-top: 0.85rem;
}

.cta-strip {
  margin-top: 2rem;
  font-weight: 600;
}

.cta-strip a {
  margin: 0 0.75rem;
}

/* Footer */
.site-footer {
  background: #0f1115;
  color: rgba(255, 255, 255, 0.75);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-inner p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 960px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .header-left {
    flex: 1 1 220px;
  }

  .header-right {
    flex: 1 1 180px;
  }

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

  .hero-testimonial {
    grid-column: auto;
  }

  .site-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
  }

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

  .card-grid.four-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-card img {
    min-height: 320px;
  }
}

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

  .section {
    padding: 3.25rem 0;
  }

  .header-inner {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.5rem 0;
  }

  .header-left,
  .header-right {
    width: 100%;
    align-items: center;
    text-align: center;
    flex: none;
  }

  .header-proof {
    display: none;
  }

  .brand img {
    width: 150px;
  }

  .header-proof,
  .header-trust {
    letter-spacing: 0.1em;
  }

  .site-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero-content {
    padding: 1.25rem;
    gap: 0.75rem;
  }

  .hero-content h1 {
    font-size: clamp(1.55rem, 5.4vw, 1.95rem);
    line-height: 1.15;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .hero-rating {
    display: none;
  }

  .hero-grid {
    gap: 0.75rem;
  }

  .hero {
    padding: 1.25rem 0 2rem;
  }

  .hero-image {
    order: 1;
  }

  .hero-content {
    order: 2;
  }

  .hero-testimonial {
    order: 3;
  }

  .hero-card img {
    min-height: 170px;
  }

  .video-card {
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .video-frame {
    border-radius: 12px;
  }

  .treatment-icon {
    width: 72px;
    height: 72px;
  }

  [data-treatments-grid] .card {
    text-align: center;
  }

  [data-treatments-grid] .card .treatment-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-benefits-overlay {
    display: none;
  }

  .hero-benefits {
    display: none;
  }

  .hero-benefits span {
    width: 18px;
    height: 18px;
    margin-right: 0.4rem;
    font-size: 0.7rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .button-secondary {
    display: inline-flex;
  }

  .hero-trust {
    font-size: 0.7rem;
    letter-spacing: 0.05em;
  }

  .section-light .card.center p {
    white-space: normal;
  }

  .hero-cta .button,
  .cta-row .button {
    width: 100%;
  }

  .card-grid {
    gap: 1rem;
  }

  .card-grid.three-up {
    grid-template-columns: 1fr;
  }

  .card-grid.four-up {
    grid-template-columns: 1fr;
  }
}

/* Booking page embed */
.booking-embed-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--white);
}

.booking-embed-wrapper iframe {
  width: 100%;
  min-height: 600px;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .booking-embed-wrapper {
    margin: 0 -1rem;
    border-radius: 0;
  }
  
  .booking-embed-wrapper iframe {
    min-height: 800px;
    height: 100vh;
    max-height: 1200px;
  }
}
