:root {
  --bg: #f4efe7;
  --bg-soft: #faf7f2;
  --surface: rgba(255, 255, 255, 0.7);
  --text: #18201a;
  --muted: #5a675e;
  --line: rgba(24, 32, 26, 0.1);
  --accent: #2d6a4f;
  --accent-dark: #1f4c39;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(20, 25, 21, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: linear-gradient(155deg, #f2ece4 0%, #f8f3eb 35%, #efe8de 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

h1,
h2 {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.01em;
}

p {
  margin: 0;
}

.site-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 10% 15%, rgba(45, 106, 79, 0.18), transparent 35%),
    radial-gradient(circle at 90% 10%, rgba(158, 106, 77, 0.18), transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(45, 106, 79, 0.1), transparent 40%);
  z-index: -1;
}

.shell {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(244, 239, 231, 0.78);
  border-bottom: 1px solid var(--line);
}

.home-page .site-header {
  position: absolute;
  width: 100%;
  background: linear-gradient(180deg, rgba(13, 25, 18, 0.38), transparent);
  border-bottom: 0;
  backdrop-filter: none;
}

.home-page .nav a {
  color: #fff;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.34);
}

.home-page .brand-logo {
  filter: brightness(0) invert(1) drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

.home-page .nav .btn-outline {
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(8px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  height: clamp(42px, 5vw, 56px);
  width: auto;
  display: block;
  filter: contrast(1.08) saturate(1.02);
}

.nav-links {
  display: flex;
  gap: 1.3rem;
}

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

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.collab-banner {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(
    92deg,
    rgba(45, 106, 79, 0.12) 0%,
    rgba(255, 255, 255, 0.45) 38%,
    rgba(209, 154, 115, 0.16) 100%
  );
}

.collab-banner-inner {
  padding: 0.45rem 0;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.collab-banner p {
  margin: 0;
  color: #263228;
  font-weight: 700;
  letter-spacing: 0.01em;
  flex: 1 1 520px;
}

.collab-logo {
  height: 96px;
  width: auto;
  display: block;
  object-fit: contain;
  flex: 0 0 auto;
}

.collab-banner a {
  color: var(--accent-dark);
  font-weight: 800;
}

.collab-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    104deg,
    transparent 0%,
    rgba(255, 255, 255, 0.25) 45%,
    transparent 70%
  );
  transform: translateX(-58%);
  animation: collabSweep 7.5s ease-in-out infinite;
  pointer-events: none;
}

.hero {
  padding: clamp(4rem, 9vw, 7rem) 0 5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 2rem;
}

.video-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  margin-bottom: clamp(1.4rem, 4vw, 3rem);
  width: 100%;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
}

.hero-video,
.hero-video-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  background: #14251b;
}

.hero-video-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(9, 24, 16, 0.72) 0%, rgba(9, 24, 16, 0.46) 44%, rgba(9, 24, 16, 0.22) 100%),
    linear-gradient(180deg, rgba(9, 24, 16, 0.44) 0%, rgba(9, 24, 16, 0.08) 42%, rgba(9, 24, 16, 0.5) 100%);
  pointer-events: none;
}

.video-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(5rem, 12vw, 9rem);
  background: linear-gradient(180deg, transparent, rgba(244, 239, 231, 0.96));
  pointer-events: none;
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 3;
  grid-area: 1 / 1;
  width: min(1120px, 92vw);
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: clamp(7rem, 14vw, 10rem) 0 clamp(3rem, 8vw, 5rem);
}

.video-hero .hero-content {
  max-width: 680px;
}

.video-hero .eyebrow,
.video-hero .hero-copy,
.video-hero .tagline,
.video-hero .hero-presale {
  color: rgba(255, 255, 255, 0.88);
}

.video-hero h1 {
  max-width: 12ch;
  color: #fff;
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}

.video-hero .btn-text {
  color: #fff8de;
}

.hero-content {
  display: grid;
  gap: 1.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--muted);
}

.hero h1 {
  font-size: clamp(2.1rem, 6.6vw, 5.1rem);
  max-width: 13ch;
}

.hero-copy {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  max-width: 68ch;
  color: #2b352e;
}

.tagline {
  font-weight: 600;
  color: var(--accent-dark);
}

.hero-presale {
  margin: -0.4rem 0 0;
  color: var(--accent-dark);
  font-weight: 800;
}

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

.hero-visual {
  margin: 0;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 26px 56px rgba(20, 25, 21, 0.14);
  background: var(--bg-soft);
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-visual img[hidden] {
  display: none !important;
}

.hero-carousel {
  position: relative;
}

.hero-slide-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 2;
  background: rgba(248, 243, 234, 0.88);
  border: 1px solid rgba(24, 32, 26, 0.14);
  border-radius: 14px;
  padding: 0.75rem 0.95rem;
}

.hero-slide-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  font-weight: 800;
  color: #4c5c52;
}

.hero-slide-title {
  margin: 0.2rem 0 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1rem, 2.1vw, 1.35rem);
  line-height: 1.2;
  color: #101914;
  font-weight: 700;
}

.carousel-controls {
  position: absolute;
  inset: auto 0 1rem 0;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
}

.carousel-btn {
  pointer-events: auto;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(26, 33, 27, 0.48);
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  transition: background-color 180ms ease, transform 180ms ease;
}

.carousel-btn:hover {
  background: rgba(26, 33, 27, 0.75);
  transform: translateY(-1px);
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
}

.carousel-dot {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  padding: 0;
}

.carousel-dot.is-active {
  background: #fff;
}

.section {
  margin-bottom: clamp(2.8rem, 7vw, 6rem);
}

.section-head {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.section h2 {
  font-size: clamp(1.7rem, 4vw, 3rem);
  max-width: 24ch;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

.card,
.program {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.card:hover,
.program:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 46px rgba(20, 25, 21, 0.13);
}

.card h3,
.program h3 {
  font-size: 1.24rem;
  margin-bottom: 0.55rem;
}

.card p,
.program p,
.philosophy p,
.cta p {
  color: #27322b;
}

.stack {
  display: grid;
  gap: 1rem;
}

.program {
  padding: 1.3rem 1.45rem;
}

.schedule-preview {
  display: grid;
  gap: 1rem;
}

.schedule-preview-grid {
  display: grid;
  gap: 1rem;
}

.schedule-summary-card,
.weekly-schedule-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.schedule-summary-card {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  padding: 1.35rem;
}

.schedule-summary-card h3 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
}

.schedule-summary-card p {
  color: #27322b;
}

.schedule-time-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.schedule-time-stack span {
  width: fit-content;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: rgba(31, 76, 57, 0.1);
  color: var(--accent-dark);
  font-weight: 800;
}

.page-hero {
  padding: clamp(3.2rem, 8vw, 6rem) 0 clamp(1.5rem, 3vw, 2.4rem);
  display: grid;
  gap: 1rem;
}

.page-hero h1 {
  max-width: 18ch;
  font-size: clamp(2.3rem, 6vw, 4.8rem);
}

.page-hero p:last-child {
  max-width: 64ch;
  color: #2b352e;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.policy-content {
  display: grid;
  gap: 1rem;
  max-width: 860px;
}

.policy-content article {
  padding: clamp(1.1rem, 2.4vw, 1.45rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
}

.policy-content h2 {
  margin-bottom: 0.55rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  letter-spacing: 0;
}

.policy-content p,
.policy-content li {
  color: #27322b;
}

.policy-content ul {
  margin: 0.55rem 0 0;
  padding-left: 1.1rem;
}

.weekly-schedule-card {
  padding: clamp(1.25rem, 3vw, 1.7rem);
}

.weekly-schedule-card .section-head p:last-child {
  max-width: 64ch;
  color: #27322b;
}

.schedule-list {
  display: grid;
  gap: 0.7rem;
}

.schedule-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.55fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.52);
}

.schedule-row strong {
  display: block;
  font-size: 1.05rem;
}

.schedule-row span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.schedule-row-featured {
  border-color: rgba(45, 106, 79, 0.28);
  background: rgba(45, 106, 79, 0.1);
}

.schedule-row-closed {
  opacity: 0.72;
}

.schedule-times {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.schedule-times span {
  padding: 0.34rem 0.65rem;
  border-radius: 999px;
  background: rgba(31, 76, 57, 0.08);
  color: var(--accent-dark);
}

.schedule-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.45rem;
}

.philosophy {
  display: grid;
  gap: 1.1rem;
}

.collaboration {
  display: grid;
  gap: 1rem;
}

.collab-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: start;
}

.collab-copy {
  display: grid;
  gap: 1rem;
}

.collab-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.2rem;
  display: grid;
  gap: 0.6rem;
}

.collab-card address {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  max-width: none;
}

.collab-link {
  font-weight: 700;
  color: var(--accent-dark);
  text-decoration: none;
  width: fit-content;
  border-bottom: 1px solid currentColor;
}

.collab-cta-row {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.4rem;
}

.collab-cta-primary {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  flex-wrap: nowrap;
}

.collab-aside {
  display: grid;
  gap: 1.2rem;
}

.collab-map {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--bg-soft);
  margin-top: 1.4rem;
}

.collab-map a {
  display: block;
  height: 100%;
}

.collab-map img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.address-label {
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.cta {
  background: linear-gradient(160deg, #1d4d39 0%, #2f6c4f 60%, #5b8d74 100%);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f7f9f8;
  padding: clamp(1.8rem, 3.5vw, 2.8rem);
  display: grid;
  gap: 1.5rem;
}

.cta-head,
.cta-copy {
  display: grid;
  gap: 0.7rem;
}

.booking-page {
  padding: clamp(2.5rem, 6vw, 5rem) 0 4rem;
}

.booking-page-simple {
  min-height: calc(100vh - 160px);
  display: grid;
  align-items: center;
}

.booking-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.booking-copy {
  display: grid;
  gap: 1rem;
  padding-top: 0.4rem;
}

.booking-copy h1 {
  font-size: clamp(2.1rem, 6vw, 4.3rem);
  max-width: 12ch;
}

.booking-copy p {
  color: #27322b;
  max-width: 44ch;
}

.booking-back-link {
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 800;
  width: fit-content;
  border-bottom: 1px solid currentColor;
}

.booking-card {
  margin: 0;
}

.booking-card-standalone {
  width: min(720px, 100%);
  margin: 0 auto;
}

.cta h2 {
  max-width: 20ch;
  text-wrap: balance;
}

.cta p {
  color: #e5f1ea;
  max-width: 48ch;
}

.cta p a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.booking-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.booking-choice-card {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  min-height: 320px;
  padding: clamp(1.1rem, 2.5vw, 1.45rem);
  border: 1px solid rgba(247, 218, 169, 0.36);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13);
}

.booking-choice-card-featured {
  background:
    linear-gradient(135deg, rgba(247, 242, 234, 0.18), rgba(208, 160, 120, 0.14)),
    rgba(255, 255, 255, 0.09);
}

.choice-kicker {
  width: fit-content;
  margin: 0;
  padding: 0.2rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(18, 28, 22, 0.22);
  color: #fff8de;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-choice-card h3,
.booking-choice-card p {
  margin: 0;
}

.booking-choice-card h3 {
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  max-width: 15ch;
}

.booking-choice-card .btn {
  width: fit-content;
  align-self: end;
}

.choice-actions,
.success-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
}

.app-coming-soon {
  width: fit-content;
  padding: 0.72rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 14px;
  background: rgba(255, 248, 225, 0.2);
  color: #fff8de;
  font-weight: 800;
  line-height: 1.35;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13);
}

.app-live-note {
  color: var(--accent-dark);
  font-weight: 800;
}

.success-actions {
  justify-content: center;
}

.lead-form {
  display: grid;
  gap: 1rem;
  margin-top: 0.6rem;
  align-items: start;
}

.lead-form[hidden],
.success-panel[hidden],
.cta-copy[hidden] {
  display: none !important;
}

.trap-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.booking-title {
  max-width: none;
  white-space: nowrap;
}

.lead-form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 0.42rem;
}

.field span,
.slot-field legend,
.trial-type-field legend {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.field small {
  color: rgba(247, 249, 248, 0.82);
  font-size: 0.82rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  color: #f7f9f8;
  padding: 0.9rem 1rem;
  font: inherit;
  transition: border-color 180ms ease, background-color 180ms ease,
    box-shadow 180ms ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(247, 249, 248, 0.66);
}

.field select {
  appearance: none;
}

.field select option {
  color: #18201a;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.field input::-webkit-date-and-time-value {
  text-align: left;
}

.trial-type-field {
  border: 0;
  padding: 0;
  margin: 0;
}

.trial-type-field legend {
  margin-bottom: 0.7rem;
}

.trial-type-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.trial-type-option {
  display: grid;
  gap: 0.35rem;
  min-height: 6rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: #f7f9f8;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease,
    background-color 180ms ease, box-shadow 180ms ease;
}

.trial-type-option span {
  font-weight: 800;
  line-height: 1.2;
}

.trial-type-option strong {
  color: #fff8de;
  font-size: 1.35rem;
  line-height: 1;
}

.trial-type-option:hover,
.trial-type-option:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.trial-type-option.is-selected {
  background: #f7f2ea;
  border-color: #f7f2ea;
  color: #1d3a2c;
  box-shadow: 0 12px 24px rgba(18, 28, 22, 0.18);
}

.trial-type-option.is-selected strong {
  color: #1d3a2c;
}

.trial-fee-note {
  display: grid;
  gap: 0.35rem;
  padding: 1.05rem 1.1rem;
  border: 1px solid rgba(247, 218, 169, 0.62);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 245, 219, 0.24), rgba(198, 142, 92, 0.22)),
    rgba(255, 255, 255, 0.1);
  color: #fffdf7;
  box-shadow: 0 16px 34px rgba(18, 28, 22, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.trial-fee-note strong {
  font-size: 1.08rem;
}

.trial-fee-note span {
  color: rgba(255, 253, 247, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
}

.slot-field {
  border: 0;
  padding: 0;
  margin: 0;
}

.slot-field[hidden] {
  display: none !important;
}

.slot-field legend {
  margin-bottom: 0.7rem;
}

.booking-loading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 4rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #f7f9f8;
  font-weight: 700;
}

.booking-loading[hidden] {
  display: none !important;
}

.booking-loading-spinner {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-top-color: #fff;
  animation: bookingSpin 0.8s linear infinite;
  flex: 0 0 auto;
}

.flatpickr-day.flatpickr-disabled-date,
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.notAllowed,
.flatpickr-day.prevMonthDay.flatpickr-disabled,
.flatpickr-day.nextMonthDay.flatpickr-disabled {
  color: rgba(24, 32, 26, 0.24) !important;
  cursor: not-allowed !important;
}

.flatpickr-day.prevMonthDay:not(.flatpickr-disabled):not(.flatpickr-disabled-date):not(.notAllowed),
.flatpickr-day.nextMonthDay:not(.flatpickr-disabled):not(.flatpickr-disabled-date):not(.notAllowed) {
  color: #3a413d !important;
  opacity: 1 !important;
}

.slot-group + .slot-group {
  margin-top: 1rem;
}

.slot-group[hidden] {
  display: none;
}

.slot-group-title {
  margin: 0 0 0.7rem;
  color: rgba(247, 249, 248, 0.82);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.time-slot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.time-slot {
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #f7f9f8;
  padding: 0.9rem 0.75rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease,
    background-color 180ms ease, box-shadow 180ms ease;
}

.time-slot:hover,
.time-slot:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.time-slot.is-selected {
  background: #f7f2ea;
  border-color: #f7f2ea;
  color: #1d3a2c;
  box-shadow: 0 12px 24px rgba(18, 28, 22, 0.18);
}

.lead-form-actions {
  display: grid;
  gap: 0.65rem;
}

.success-panel {
  display: grid;
  gap: 0.9rem;
  padding: 2.2rem 0 0.4rem;
  min-height: 420px;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.success-panel h2 {
  max-width: none;
}

.success-panel p:last-of-type {
  color: #f0f8d6;
  font-size: 1rem;
  font-weight: 600;
  max-width: 28ch;
}

.success-panel .btn {
  width: fit-content;
  justify-self: center;
}

.feedback-card {
  width: min(860px, 100%);
}

.feedback-title {
  max-width: none;
}

.feedback-form {
  gap: 1.35rem;
}

.feedback-group {
  display: grid;
  gap: 0.95rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.feedback-head {
  display: grid;
  gap: 0.25rem;
}

.feedback-head h3 {
  font-size: 1.2rem;
}

.feedback-head p {
  color: rgba(240, 246, 242, 0.84);
  max-width: none;
}

.smiley-scale {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.smiley-option {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: #f7f9f8;
  min-height: 120px;
  padding: 0.9rem 0.6rem;
  display: grid;
  gap: 0.45rem;
  align-content: center;
  justify-items: center;
  text-align: center;
  font: inherit;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease,
    background-color 180ms ease, box-shadow 180ms ease;
}

.smiley-option:hover,
.smiley-option:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.14);
  outline: none;
}

.smiley-option.is-selected {
  background: #f7f2ea;
  border-color: #f7f2ea;
  color: #1d3a2c;
  box-shadow: 0 12px 24px rgba(18, 28, 22, 0.18);
}

.smiley-face {
  font-size: 1.8rem;
  line-height: 1;
}

.smiley-label {
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
}

.feedback-text-field textarea {
  min-height: 132px;
  resize: vertical;
}

#feedback-word-count[data-tone="error"] {
  color: #ffe2d4;
}

.lead-submit {
  min-height: 3.2rem;
}

.lead-submit[disabled] {
  opacity: 0.7;
  cursor: wait;
}

.form-status {
  min-height: 1.5rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.form-status[data-tone="success"] {
  color: #f0f8d6;
}

.form-status[data-tone="error"] {
  color: #ffe2d4;
}

.form-status[data-tone="pending"] {
  color: #f8edd0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.67rem 1.2rem;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: transform 180ms ease, background-color 200ms ease,
    color 200ms ease, border-color 200ms ease;
}

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

.btn-solid {
  background: var(--accent);
  color: #fff;
}

.btn-solid:hover {
  background: var(--accent-dark);
}

.btn-light {
  background: #f7f2ea;
  color: #1e3b2c;
  border: 1px solid rgba(31, 76, 57, 0.35);
}

.btn-light:hover {
  background: #efe7db;
}

.btn-outline {
  border-color: rgba(24, 32, 26, 0.22);
  color: var(--text);
  background: rgba(255, 255, 255, 0.45);
}

.btn-outline:hover {
  border-color: rgba(24, 32, 26, 0.6);
}

.btn-text {
  color: var(--accent-dark);
  background: transparent;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.social-icon {
  width: 1.22rem;
  height: 1.22rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
}

@keyframes collabSweep {
  0% {
    transform: translateX(-58%);
  }
  55% {
    transform: translateX(42%);
  }
  100% {
    transform: translateX(42%);
  }
}

@keyframes bookingSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .collab-banner::before {
    animation: none;
  }
}

.site-footer {
  margin-top: 3.5rem;
  border-top: 1px solid var(--line);
  background: #101812;
  color: #f7f3ec;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(170px, 0.7fr) auto;
  align-items: start;
  gap: clamp(1.25rem, 4vw, 3rem);
  padding: clamp(2rem, 5vw, 3rem) 0;
}

.footer-brand,
.footer-links,
.app-downloads {
  display: grid;
  gap: 0.7rem;
}

.footer-brand p,
.app-downloads p {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.footer-brand span {
  max-width: 30ch;
  color: rgba(247, 243, 236, 0.74);
}

.footer-links {
  align-content: start;
}

.footer-inner a {
  color: rgba(247, 243, 236, 0.82);
  text-decoration: none;
  font-weight: 700;
}

.footer-inner a:hover {
  color: #fff;
}

.footer-inner .store-badge {
  color: #fff;
}

.app-downloads {
  justify-items: end;
}

.store-badge {
  min-width: 196px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  padding: 0.56rem 0.82rem;
  border: 1px solid rgba(247, 243, 236, 0.42);
  border-radius: 10px;
  background: #050706;
  color: #fff;
  line-height: 1.05;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.store-badge small {
  display: block;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.store-badge span:last-child {
  font-size: 1.22rem;
  font-weight: 800;
}

.play-icon {
  width: 1.9rem;
  height: 1.9rem;
  flex: 0 0 auto;
  clip-path: polygon(12% 4%, 90% 50%, 12% 96%);
  background:
    linear-gradient(145deg, #2dd4ff 0 32%, transparent 32%),
    linear-gradient(35deg, #58d66d 0 47%, transparent 47%),
    linear-gradient(145deg, transparent 42%, #ffd54a 42% 66%, #ff5f57 66%);
}

.apple-icon {
  width: 1.9rem;
  height: 1.9rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(247, 243, 236, 0.48);
  font-size: 0.72rem;
  font-weight: 900;
}

@media (max-width: 920px) {
  .nav {
    min-height: auto;
    padding: 0.85rem 0;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    padding-bottom: 0.4rem;
  }

  .cards-3,
  .cards-2 {
    grid-template-columns: 1fr;
  }

  .schedule-preview-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .collab-grid {
    grid-template-columns: 1fr;
  }
  .collab-cta-primary {
    flex-wrap: wrap;
  }

  .booking-choice-grid {
    grid-template-columns: 1fr;
  }

  .booking-choice-card {
    min-height: auto;
  }

  .carousel-controls {
    bottom: 0.7rem;
    padding: 0 0.7rem;
  }

  .carousel-dots {
    bottom: 0.7rem;
  }

  .hero-slide-overlay {
    top: 0.7rem;
    left: 0.7rem;
    right: 0.7rem;
    padding: 0.62rem 0.72rem;
  }

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

  .app-downloads {
    justify-items: start;
  }

}

@media (max-width: 560px) {
  .brand-logo {
    height: clamp(36px, 10vw, 44px);
  }

  .cta {
    padding: 1.35rem 1rem;
  }

  .cta h2 {
    max-width: none;
  }

  .nav-links {
    gap: 0.9rem;
    font-size: 0.9rem;
    overflow-x: auto;
  }

  .btn {
    padding: 0.62rem 1.05rem;
  }

  .collab-banner p {
    font-size: 0.9rem;
  }

  .collab-logo {
    height: 82px;
  }

  .hero-slide-title {
    font-size: 0.95rem;
  }

  .time-slot-grid {
    grid-template-columns: 1fr;
  }

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

  .schedule-times {
    justify-content: flex-start;
  }

  .trial-type-toggle {
    grid-template-columns: 1fr;
  }

  .choice-actions {
    display: grid;
    align-items: stretch;
  }

  .choice-actions .btn,
  .booking-choice-card .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .smiley-scale {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flatpickr-day.flatpickr-disabled-sunday {
  background: #f5f5f5;
  color: #bbb;
  cursor: not-allowed;
  position: relative;
}

/* optional: subtle strike or dot */
.flatpickr-day.flatpickr-disabled-sunday::after {
  content: "×";
  position: absolute;
  top: 2px;
  right: 4px;
  font-size: 10px;
  color: #999;
}
}
