:root {
  /* Decorative purples (buttons, gradients, icons) */
  --purple: #7c3aed;
  --lavender: #a78bfa;
  --mauve: #c4b5fd;
  --pink: #e879f9;
  --pink-soft: #f0abfc;
  /* Accessible text on light backgrounds (WCAG AA 4.5:1+) */
  --purple-dark: #5b21b6;
  --purple-text: #5b21b6;
  --indigo: #1e1b4b;
  --indigo-soft: #312e81;
  --text: #1f1d2b;
  --muted: #475569;
  --white: #fff;
  --bg: #fafbfc;
  --bg-soft: #f8f7fc;
  --bg-band: #f3f0ff;
  --border: rgba(91, 33, 212, 0.12);
  /* Sage & teal — green accent (on neutral surfaces, not on green illustrations) */
  --sage: #6ee7b7;
  --mint: #5eead4;
  --teal: #14b8a6;
  --teal-dark: #0f766e;
  --teal-text: #115e59;
  --sage-soft: #f0fdf4;
  --sage-band: #d1fae5;
  --star: var(--teal-dark);
  --max: 1140px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(91, 33, 182, 0.08);
  --shadow-lg: 0 20px 50px rgba(91, 33, 182, 0.14);
  /* Button/UI gradient — dark enough for white label contrast */
  --gradient: linear-gradient(135deg, #6d28d9 0%, #7c3aed 55%, #6d28d9 100%);
  --gradient-soft: linear-gradient(180deg, #faf5ff 0%, #fdfcff 100%);
  --focus-ring: 0 0 0 3px rgba(91, 33, 212, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--gradient);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1.75rem;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.34);
  filter: brightness(1.03);
  outline: none;
}

.btn:focus-visible {
  box-shadow: var(--focus-ring), 0 12px 28px rgba(124, 58, 237, 0.34);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.btn-sm {
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.22);
}

.section-eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--bg-band);
  color: var(--purple-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-eyebrow--center {
  display: block;
  width: fit-content;
  margin-inline: auto;
}

.section-eyebrow--sage {
  background: var(--sage-band);
  color: var(--teal-text);
}

.section-title {
  text-align: center;
  margin: 0 0 1rem;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.section-title .accent,
.accent {
  background: linear-gradient(90deg, var(--purple-dark) 0%, var(--teal-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.accent-teal {
  background: linear-gradient(90deg, var(--purple-dark) 0%, var(--teal-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-subtitle {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 252, 255, 0.82);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand img {
  width: 40px;
  height: auto;
  flex-shrink: 0;
}

.brand h1 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.1;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  background: var(--indigo);
  border-radius: 2px;
  transition: background 0.2s ease;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

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

.site-nav ul a {
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s ease;
}

.site-nav ul a:hover,
.site-nav ul a:focus-visible {
  color: var(--purple-text);
}

.site-nav ul a:focus-visible {
  outline: 2px solid var(--purple-text);
  outline-offset: 3px;
  border-radius: 4px;
}

.site-nav .btn {
  color: var(--white);
  background: var(--teal-dark);
  box-shadow: 0 4px 14px rgba(15, 118, 110, 0.25);
}

.site-nav .btn:hover,
.site-nav .btn:focus-visible {
  color: var(--white);
  background: var(--teal-text);
  filter: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  background: url("assets/images/hero-illustration.png") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(30, 27, 75, 0.25) 0%,
    rgba(49, 15, 99, 0.5) 42%,
    rgba(30, 27, 75, 0.62) 100%
  );
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 40%, rgba(30, 27, 75, 0.35), transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 1rem;
  max-width: 780px;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 1.25rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(30, 27, 75, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hero h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-shadow: 0 2px 24px rgba(30, 27, 75, 0.45);
}

.hero-lead {
  margin: 0 auto 2rem;
  max-width: 560px;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  text-shadow: 0 1px 16px rgba(30, 27, 75, 0.35);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

/* Hero primary CTA */
.hero-actions .btn {
  background: var(--teal-dark);
  color: var(--white);
  border: 2px solid var(--teal-dark);
  box-shadow: 0 8px 28px rgba(15, 118, 110, 0.35);
}

.hero-actions .btn:hover,
.hero-actions .btn:focus-visible {
  background: var(--teal-text);
  color: var(--white);
  border-color: var(--teal-text);
  filter: none;
}

.hero-actions .btn:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
  box-shadow: 0 8px 28px rgba(30, 27, 75, 0.28);
}

.hero-actions .btn-ghost {
  background: var(--indigo);
  color: var(--white);
  border: 2px solid var(--white);
  backdrop-filter: none;
}

.hero-actions .btn-ghost:hover,
.hero-actions .btn-ghost:focus-visible {
  background: var(--indigo-soft);
  color: var(--white);
  box-shadow: none;
}

.hero-actions .btn-ghost:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

/* Features */
.intro {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.intro::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -5%;
  width: min(420px, 50vw);
  height: min(420px, 50vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.1), transparent 70%);
  pointer-events: none;
}

.intro:not(.features-band) {
  border-bottom: 1px solid var(--border);
}

.intro h2 {
  text-align: center;
  margin: 0 0 3rem;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.feature-split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.feature-media {
  aspect-ratio: 3 / 2;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: var(--white);
}

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

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 1.05rem;
  font-weight: 500;
}

.feature-list li::before {
  content: "";
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.15rem;
  border-radius: 50%;
  background-color: var(--purple-dark);
  box-shadow: 0 4px 12px rgba(91, 33, 212, 0.25);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M2.5 6l2.5 2.5 4.5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.7rem;
}

.features-band {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--white) 85%);
  position: relative;
  overflow: hidden;
}

.features-band::before {
  content: "";
  position: absolute;
  bottom: 5%;
  left: -8%;
  width: min(360px, 45vw);
  height: min(360px, 45vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.07), transparent 70%);
  pointer-events: none;
}

.features-band .section-eyebrow {
  background: var(--white);
  border: 1px solid rgba(20, 184, 166, 0.22);
  color: var(--teal-text);
}

.features-band .feature-media {
  box-shadow: var(--shadow-lg);
}

.features-band .feature-list li::before {
  background-color: var(--teal-dark);
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.22);
}

.features-band .feature-split {
  direction: rtl;
}

.features-band .feature-split > * {
  direction: ltr;
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
  background: var(--bg-soft);
}

.testimonials-rating {
  text-align: center;
  margin: -0.5rem 0 2.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.testimonials-rating strong {
  color: var(--purple-dark);
}

.testimonials-rating a {
  color: var(--purple-text);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.testimonial-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.stars {
  color: var(--teal-dark);
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin: 0 0 1rem;
}

.testimonial-card blockquote {
  margin: 0;
  font-style: normal;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
}

.testimonial-quote-wrap {
  position: relative;
  margin-bottom: 1rem;
  border-radius: var(--radius-sm);
  transition: background-color 0.2s ease;
}

.testimonial-quote-wrap.is-expandable {
  cursor: pointer;
}

.testimonial-quote-wrap.is-expandable:hover {
  background-color: rgba(91, 33, 212, 0.06);
}

.testimonial-quote-wrap.is-expandable:focus-visible {
  outline: 2px solid var(--purple-text);
  outline-offset: 2px;
}

.testimonial-text {
  margin: 0;
}

.testimonial-text.is-collapsed {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.testimonial-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3.5rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--white) 72%);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.25s ease;
}

.testimonial-quote-wrap.is-expanded .testimonial-fade {
  opacity: 0;
}

.testimonial-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin: 0.35rem auto 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--purple-text);
  pointer-events: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-quote-wrap.is-expandable:hover .testimonial-chevron {
  border-color: var(--purple-dark);
  box-shadow: 0 4px 12px rgba(91, 33, 212, 0.12);
}

.testimonial-chevron svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.25s ease;
}

.testimonial-quote-wrap.is-expanded .testimonial-chevron svg {
  transform: rotate(180deg);
}

.testimonial-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-google-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--purple-text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.testimonial-google-link:hover {
  color: var(--indigo-soft);
}

/* About */
.about {
  padding: 5rem 0;
  background: var(--bg);
}

.about .section-title {
  margin-bottom: 2.5rem;
}

.about-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple-dark), var(--lavender));
  z-index: 1;
}

.about-media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--bg-soft);
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.about-lead {
  margin: 0 auto;
  max-width: 52ch;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
}

.about-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.about-points li {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.about-points li::before {
  content: "";
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background-color: var(--purple-dark);
  box-shadow: 0 4px 12px rgba(91, 33, 212, 0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M2.5 6l2.5 2.5 4.5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.7rem;
}

.about-points strong {
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.35;
}

.about-points span {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.about-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.about-cta-text {
  margin: 0;
  max-width: 46ch;
  font-size: 0.95rem;
  color: var(--muted);
}

.about-footer .btn {
  background: var(--teal-dark);
  color: var(--white);
  border: none;
  box-shadow: 0 8px 24px rgba(15, 118, 110, 0.28);
  cursor: pointer;
  font: inherit;
}

.about-footer .btn:hover,
.about-footer .btn:focus-visible {
  background: var(--teal-text);
  color: var(--white);
  filter: none;
  box-shadow: 0 12px 28px rgba(15, 118, 110, 0.34);
}

.about-footer .btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.35), 0 12px 28px rgba(15, 118, 110, 0.34);
}

/* Booking */
.contact {
  padding: 5rem 0 6rem;
  background: var(--bg-soft);
}

.booking-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.booking-media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  background: var(--white);
}

.booking-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.booking-card {
  padding: 2rem;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.booking-lead {
  margin: 0 0 1.25rem;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.65;
}

.booking-points {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.booking-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

.booking-points li::before {
  content: "";
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.1rem;
  border-radius: 50%;
  background-color: var(--teal-dark);
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.22);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M2.5 6l2.5 2.5 4.5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.7rem;
}

.booking-btn {
  width: 100%;
  background: var(--teal-dark);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(15, 118, 110, 0.28);
}

.booking-btn:hover,
.booking-btn:focus-visible {
  background: var(--teal-text);
  color: var(--white);
  filter: none;
  box-shadow: 0 12px 28px rgba(15, 118, 110, 0.34);
}

.booking-btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.35), 0 12px 28px rgba(15, 118, 110, 0.34);
}

.booking-note {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.booking-modal[hidden] {
  display: none;
}

.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 27, 75, 0.55);
  backdrop-filter: blur(4px);
}

.booking-modal__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(100%, 920px);
  max-height: min(900px, 92vh);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.booking-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.booking-modal__title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.booking-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.booking-modal__close:hover,
.booking-modal__close:focus-visible {
  background: var(--white);
  border-color: var(--purple-dark);
  outline: none;
}

.booking-modal__body {
  flex: 1;
  min-height: 0;
  background: var(--white);
}

.booking-modal__body iframe {
  display: block;
  width: 100%;
  height: min(840px, calc(92vh - 4.5rem));
  border: 0;
}

/* Footer */
.site-footer {
  background: var(--indigo);
  color: rgba(255, 255, 255, 0.88);
  padding: 2.5rem 0;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
  background: var(--purple-dark);
  border-color: var(--lavender);
  transform: translateY(-2px);
}

.social-links img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.site-footer p {
  margin: 0;
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 900px) {
  .feature-split,
  .testimonial-grid,
  .booking-split {
    grid-template-columns: 1fr;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

  .features-band .feature-split {
    direction: ltr;
  }
}

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

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(253, 252, 255, 0.98);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(16px);
    display: none;
    padding: 1rem;
  }

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

  .site-nav ul {
    flex-direction: column;
    gap: 0.25rem;
    width: 100%;
  }

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

  .site-nav .btn-sm {
    width: 100%;
    margin-top: 0.5rem;
  }

  .hero {
    min-height: 75vh;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: min(100%, 280px);
  }
}
