:root {
  --bg: #f7fbff;
  --ink: #023047;
  --muted: #2f617d;
  --line: rgba(2, 48, 71, 0.14);

  --blue: 142 202 230;
  --purple: 33 158 188;
  --teal: 255 183 3;

  --card-bg: rgba(255, 255, 255, 0.68);
  --card-border: rgba(255, 255, 255, 0.88);
  --soft-shadow: 0 16px 34px rgba(2, 48, 71, 0.08);

  --cta-surface-start: #6d3907;
  --cta-surface-mid: #fb8500;
  --cta-surface-end: #ffb703;
  --promo-surface-start: #023047;
  --promo-surface-mid: #0d4760;
  --promo-surface-end: #126782;

  --accent: #fb8500;
  --accent-hover: #dd7300;
  --accent-strong: #023047;

  --button-light-bg: rgba(255, 255, 255, 0.88);
  --button-light-hover: #ffffff;
  --button-light-ink: #023047;

  --modal-bg: #f6fbff;
  --modal-ink: #023047;
  --modal-muted: #2f617d;
  --modal-line: rgba(2, 48, 71, 0.2);
  --modal-backdrop: rgba(2, 48, 71, 0.5);

  --section-padding-y: clamp(3.6rem, 9vw, 7.8rem);

  /* Central typography controls */
  --hero-h1-size: clamp(2.4rem, 5.4vw, 4.6rem);
  --hero-lead-size: clamp(1.12rem, 2.6vw, 1.5rem);
  --section-h2-size: clamp(1.95rem, 2.8vw, 2.75rem);
  --hero-heading-max: 20ch;
  --section-heading-max: 30ch;
  --cta-heading-max: 20ch;
  --section-lead-size: clamp(1.04rem, 1.18vw, 1.14rem);
  --section-copy-line: 1.64;
  --support-copy-size: clamp(0.95rem, 1vw, 1rem);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  max-width: 100%;
  overflow-x: hidden;
}

html.prep-page-html {
  scroll-behavior: auto;
  scroll-padding-top: 0;
}

body {
  font-family: "Sora", "Avenir Next", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.58;
  padding-top: 72px;
  max-width: 100%;
  overflow-x: hidden;
}

body.prep-page {
  padding-top: 0;
  min-height: 100vh;
  overflow-y: auto;
}

body.modal-open {
  overflow: hidden;
}

h1,
h2,
h3 {
  font-family: "Sora", "Avenir Next", "Segoe UI", sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

h1,
h2 {
  font-weight: 700;
}

h3 {
  font-weight: 600;
}

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

a,
button {
  font: inherit;
  color: inherit;
}

a {
  text-decoration: none;
}

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

button {
  background: none;
  border: 0;
  cursor: pointer;
}

.canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 14% 12%, rgba(33, 158, 188, 0.16), transparent 42%),
    radial-gradient(circle at 86% 16%, rgba(142, 202, 230, 0.19), transparent 46%),
    radial-gradient(circle at 46% 88%, rgba(255, 183, 3, 0.12), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #f4faff 100%);
}

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

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(9px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(2, 48, 71, 0.12);
  transition: transform 0.24s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 10px));
}

.header-inner {
  min-height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.menu-toggle {
  display: none;
}

.menu-toggle-icon {
  display: inline-grid;
  gap: 4px;
}

.menu-toggle-icon span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

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

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

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

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

.nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  letter-spacing: 0.01em;
  transition: transform 0.16s ease, background-color 0.18s ease, border-color 0.18s ease;
}

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

.button-nav {
  background: linear-gradient(135deg, var(--cta-surface-start), var(--cta-surface-mid));
  color: #f6f9fc;
}

.button-primary {
  background: var(--button-light-bg);
  color: var(--button-light-ink);
  border-color: rgba(32, 51, 72, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--button-light-hover);
}

.button-primary-hero {
  background: linear-gradient(135deg, #fb8500, #ffb703);
  color: #ffffff;
  border: 0;
  box-shadow: 0 10px 24px rgba(251, 133, 0, 0.28);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.24);
}

.button-primary-hero:hover,
.button-primary-hero:focus-visible {
  background: linear-gradient(135deg, #ff9800, #ffc034);
  box-shadow: 0 12px 26px rgba(251, 133, 0, 0.32);
}

.button-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(2, 48, 71, 0.2);
}

body.prep-page .site-header {
  position: static;
  top: auto;
  backdrop-filter: none;
}

main {
  width: 100%;
  margin: 0 0 54px;
  display: grid;
  overflow-x: clip;
}

body.prep-page main {
  display: block;
  overflow-x: visible;
}

main .container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.section {
  --tone: var(--blue);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  padding: var(--section-padding-y) 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  animation: sectionFade 0.64s ease both;
}

body.prep-page .section {
  animation: none;
}

body.prep-page .prep-page-section {
  display: block;
  min-height: auto;
  padding-top: clamp(2.4rem, 5vw, 3.6rem);
}

body.prep-page .prep-page-section::before,
body.prep-page .prep-page-section::after {
  display: none;
}

.section.section-no-pad {
  padding: 0;
}

.section-v-align-top {
  align-items: flex-start;
}

.section-v-align-center {
  align-items: center;
}

.section-content-v-align-top {
  align-content: start;
}

.section-content-v-align-center {
  align-content: center;
}

main > .section:nth-of-type(3n + 1) {
  --tone: var(--blue);
}

main > .section:nth-of-type(3n + 2) {
  --tone: var(--purple);
}

main > .section:nth-of-type(3n + 3) {
  --tone: var(--teal);
}

main > .section:nth-of-type(1) {
  animation-delay: 0.03s;
}
main > .section:nth-of-type(2) {
  animation-delay: 0.08s;
}
main > .section:nth-of-type(3) {
  animation-delay: 0.13s;
}
main > .section:nth-of-type(4) {
  animation-delay: 0.18s;
}
main > .section:nth-of-type(5) {
  animation-delay: 0.23s;
}
main > .section:nth-of-type(6) {
  animation-delay: 0.28s;
}
main > .section:nth-of-type(7) {
  animation-delay: 0.33s;
}
main > .section:nth-of-type(8) {
  animation-delay: 0.38s;
}
main > .section:nth-of-type(9) {
  animation-delay: 0.43s;
}

.section::before,
.section::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.section::before {
  width: 360px;
  height: 360px;
  left: -210px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(var(--tone), 0.3), rgba(var(--tone), 0));
  filter: blur(5px);
}

.section::after {
  width: 300px;
  height: 300px;
  right: -165px;
  top: -140px;
  background: radial-gradient(circle, rgba(var(--tone), 0.28), rgba(var(--tone), 0));
  filter: blur(5px);
}

.hero {
  position: relative;
  min-height: clamp(520px, 74vh, 780px);
  overflow: hidden;
}

.hero.section::before,
.hero.section::after {
  display: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    linear-gradient(116deg, rgba(1, 14, 22, 0.82) 0%, rgba(3, 22, 34, 0.74) 34%, rgba(6, 42, 58, 0.54) 62%, rgba(11, 73, 102, 0.22) 100%),
    radial-gradient(circle at 14% 18%, rgba(255, 183, 3, 0.14) 0%, rgba(255, 183, 3, 0) 24%),
    radial-gradient(circle at 82% 20%, rgba(142, 202, 230, 0.18) 0%, rgba(142, 202, 230, 0) 22%),
    radial-gradient(circle at 54% 88%, rgba(251, 133, 0, 0.14) 0%, rgba(251, 133, 0, 0) 30%),
    url("../images/workshops/workshop-hero-background.jpg") right center / cover no-repeat,
    linear-gradient(135deg, #041f30 0%, #0a3750 34%, #0f5c73 66%, #198391 100%);
}

.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-media::before {
  background:
    radial-gradient(circle at 72% 40%, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 18%),
    radial-gradient(circle at 24% 58%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 16%),
    linear-gradient(118deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 40%);
  mix-blend-mode: screen;
  opacity: 0.42;
}

.hero-media::after {
  background:
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 74px);
  opacity: 0.12;
  transform: scale(1.12) translateX(4%);
  transform-origin: center;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
}

.hero .tag {
  color: rgba(255, 255, 255, 1);
}

.hero-tag-chip {
  display: inline-block;
  padding: 0.2rem 0.46rem 0.22rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
}

.hero-promo-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.46rem;
  max-width: min(100%, 28rem);
  margin: 0 0 0.95rem;
  padding: 0.28rem 0.76rem 0.3rem 0.46rem;
  border-radius: 999px;
  border: 0;
  background:
    linear-gradient(180deg, #ffd768 0%, #ffc52e 62%, #ffb300 100%);
  box-shadow:
    0 12px 24px rgba(251, 133, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -1px 0 rgba(166, 88, 0, 0.18);
}

.hero-promo-icon {
  position: relative;
  flex-shrink: 0;
  display: inline-block;
  width: 1.18rem;
  height: 1.18rem;
  border-radius: 999px;
  border: 2px solid #854304;
}

.hero-promo-icon::before,
.hero-promo-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #854304;
  border-radius: 999px;
}

.hero-promo-icon::before {
  top: 0.19rem;
  width: 0.12rem;
  height: 0.44rem;
}

.hero-promo-icon::after {
  bottom: 0.18rem;
  width: 0.12rem;
  height: 0.12rem;
}

.hero-promo-title {
  min-width: 0;
  font-size: clamp(0.8rem, 1.2vw, 0.88rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #6f3604;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.16);
}

.tag,
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: rgba(2, 48, 71, 0.68);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.hero h1 {
  font-size: var(--hero-h1-size);
  max-width: var(--hero-heading-max);
  margin-bottom: 1rem;
  color: #ffffff;
  text-wrap: balance;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.2), 0 4px 10px rgba(0, 0, 0, 0.1)
}

.lead {
  font-size: var(--section-lead-size);
  color: var(--muted);
  max-width: 60ch;
  margin-bottom: 1.25rem;
  line-height: 1.52;
}

.hero .lead {
  font-size: var(--hero-lead-size);
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  font-weight: 600;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: 0.62rem;
  margin-bottom: 1.2rem;
}

.hero-metric {
  display: flex;
  align-items: center;
  gap: 0.56rem;
  padding: 0.62rem 0.72rem;
  border: 0;
  background: rgba(4, 16, 31, 0.48);
  border-radius: 12px;
  min-height: 68px;
}

.metric-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  display: inline-grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.95);
  flex-shrink: 0;
}

.metric-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metric-label {
  font-size: 0.72rem;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 0.22rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.42);
}

.metric-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.42);
}

.metric-value-seats {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.42rem;
}

.metric-value-main {
  font-size: 1.08em;
  font-weight: 700;
}

.metric-value-detail {
  font-size: 0.74rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.25;
  white-space: nowrap;
}

.price-old {
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(255, 255, 255, 0.86);
  color: rgba(255, 255, 255, 0.8);
  margin-right: 0.28rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.82rem;
  margin-top: 0.2rem;
}

.cta-inline-wrap {
  margin-top: 0.95rem;
}

.cta-inline-wrap,
.cta-inline-link {
  width: fit-content;
}

.cta-inline-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.45;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
  cursor: pointer;
  opacity: 0.74;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.cta-inline-link:hover,
.cta-inline-link:focus-visible {
  color: var(--ink);
  opacity: 1;
}

.cta-inline-copy {
  margin-bottom: 0;
  width: auto;
  max-width: 42rem;
  color: var(--muted);
  opacity: 0.78;
}

.cta-inline-link-light {
  color: rgba(255, 255, 255, 0.9);
  opacity: 0.7;
}

.cta-inline-copy-light {
  color: rgba(255, 255, 255, 0.9);
  opacity: 0.74;
}

.cta-inline-link-light:hover,
.cta-inline-link-light:focus-visible {
  color: #ffffff;
  opacity: 1;
}

.hero .button-ghost {
  color: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.1);
}

.hero .button-ghost:hover,
.hero .button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.section-head {
  margin-bottom: clamp(1.9rem, 4vw, 3rem);
}

.section:not(.hero) h2 {
  font-size: var(--section-h2-size);
  max-width: var(--section-heading-max);
  text-wrap: balance;
}

.section:not(.hero) .lead,
.section:not(.hero) .body-copy {
  font-size: var(--section-lead-size);
  line-height: var(--section-copy-line);
}

.section.section-full-height {
  min-height: 100svh;
}

.card-grid,
.timeline,
.faq-grid,
.photo-strip {
  display: grid;
  gap: 0.84rem;
}

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

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

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

.card,
.time-block,
.media-card,
.quote-card,
.faq-item,
.pricing-box,
.cta-wrap,
.final-cta-inner {
  background: transparent;
  border: 0;
  border-radius: 0;
}

.card,
.media-card,
.faq-item,
.quote-card {
  padding: 0;
}

.card {
  padding: 1rem;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  border-radius: 14px;
}

.outcome-card {
  padding: 1.7rem 1.55rem 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.96);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.76));
  box-shadow: 0 16px 28px rgba(2, 48, 71, 0.1);
}

.outcome-card h3 {
  font-size: clamp(1.56rem, 2vw, 1.92rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 0.78rem;
}

.outcome-card p {
  font-size: 1.02rem;
  line-height: 1.65;
}

.card-style-large {
  padding: clamp(2rem, 3vw, 2.6rem) clamp(1.9rem, 2.8vw, 2.45rem) clamp(2.15rem, 3vw, 2.75rem);
  border-radius: 18px;
  box-shadow: 0 18px 34px rgba(2, 48, 71, 0.12);
}

.outcome-card.card-style-large h3 {
  font-size: 26px;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 0.92rem;
}

.card-style-large p {
  font-size: 1.12rem;
  line-height: 1.72;
}

.location-grid .card {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.66rem;
  min-height: 220px;
  aspect-ratio: var(--location-card-ratio);
}

.location-grid .card .button {
  width: auto;
}

.location-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.location-section.section::before,
.location-section.section::after {
  display: none;
}

.location-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(251, 133, 0, 0.16), transparent 34%),
    radial-gradient(circle at 88% 20%, rgba(33, 158, 188, 0.14), transparent 36%),
    linear-gradient(135deg, #fff9f0 0%, #ffffff 46%, #f3faff 100%);
  z-index: 0;
}

.location-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(1.4rem, 3vw, 2.8rem);
  align-items: center;
}

.location-layout-no-gallery {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.location-layout-no-gallery .location-panel {
  max-width: 760px;
}

.location-panel {
  padding: clamp(1.5rem, 3.6vw, 2.7rem);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 44px rgba(2, 48, 71, 0.12);
  backdrop-filter: blur(12px);
}

.location-head {
  margin-bottom: 0;
}

.location-head h2 {
  max-width: var(--section-heading-max);
  margin-bottom: 1rem;
}

.location-head .body-copy {
  max-width: 47ch;
  color: var(--muted);
}

.location-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.location-link {
  background: linear-gradient(135deg, var(--cta-surface-start), var(--cta-surface-mid));
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(2, 48, 71, 0.14);
}

.location-link:hover,
.location-link:focus-visible {
  background: linear-gradient(135deg, #8e4d08, #ffb703);
}

.location-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-areas:
    "feature feature feature feature detail-a detail-a"
    "feature feature feature feature detail-b detail-b"
    "wide wide wide wide wide wide";
  grid-template-rows: clamp(160px, 15vw, 210px) clamp(160px, 15vw, 210px) clamp(185px, 17vw, 240px);
  gap: 0.85rem;
}

.location-gallery-single {
  grid-template-columns: 1fr;
  grid-template-areas: "feature";
  grid-template-rows: clamp(320px, 32vw, 520px);
}

.location-gallery-pair {
  grid-template-areas:
    "feature feature feature detail-a detail-a detail-a";
  grid-template-rows: clamp(300px, 30vw, 460px);
}

.location-thumb {
  position: relative;
  display: block;
  width: 100%;
  min-height: 100%;
  border-radius: 22px;
  overflow: hidden;
  padding: 0;
  background: #edf4f8;
  box-shadow: 0 18px 36px rgba(2, 48, 71, 0.14);
}

.location-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(2, 48, 71, 0.12));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.location-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.location-thumb:hover::after,
.location-thumb:focus-visible::after {
  opacity: 1;
}

.location-thumb:hover img,
.location-thumb:focus-visible img {
  transform: scale(1.03);
  filter: saturate(1.05);
}

.location-thumb:focus-visible {
  outline: 3px solid rgba(2, 48, 71, 0.18);
  outline-offset: 4px;
}

.location-thumb-feature {
  grid-area: feature;
}

.location-thumb-detail-a {
  grid-area: detail-a;
}

.location-thumb-detail-b {
  grid-area: detail-b;
}

.location-thumb-wide {
  grid-area: wide;
}

.instructor-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.instructor-section.section::before,
.instructor-section.section::after {
  display: none;
}

.instructor-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(33, 158, 188, 0.16), transparent 34%),
    radial-gradient(circle at 86% 78%, rgba(251, 133, 0, 0.15), transparent 38%),
    linear-gradient(135deg, #f6fbff 0%, #ffffff 54%, #fff8ef 100%);
  z-index: 0;
}

.instructor-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(1.4rem, 3vw, 2.8rem);
  align-items: center;
}

.instructor-panel {
  padding: clamp(1.5rem, 3.6vw, 2.7rem);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 24px 44px rgba(2, 48, 71, 0.1);
  backdrop-filter: blur(12px);
}

.instructor-head {
  margin-bottom: 0;
}

.instructor-head h2 {
  margin-bottom: 1rem;
}

.instructor-head .body-copy {
  max-width: 52ch;
  margin-bottom: 0;
  color: var(--muted);
}

.instructor-head .body-copy + .body-copy {
  margin-top: 0.9rem;
}

.instructor-photo-frame {
  position: relative;
  width: min(100%, 420px);
  justify-self: end;
  border-radius: 28px;
  overflow: hidden;
  background: #e9f0f5;
  box-shadow: 0 24px 44px rgba(2, 48, 71, 0.14);
}

.instructor-photo-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.partner-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.partner-section.section::before,
.partner-section.section::after {
  display: none;
}

.partner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 183, 3, 0.16), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(33, 158, 188, 0.14), transparent 36%),
    linear-gradient(145deg, #fffdf7 0%, #ffffff 48%, #f4fbff 100%);
  z-index: 0;
}

.partner-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(1.4rem, 3vw, 2.8rem);
  align-items: center;
}

.partner-panel {
  padding: clamp(1.5rem, 3.6vw, 2.7rem);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 44px rgba(2, 48, 71, 0.1);
  backdrop-filter: blur(12px);
}

.partner-head {
  margin-bottom: 0;
}

.partner-head h2 {
  max-width: var(--section-heading-max);
  margin-bottom: 1rem;
}

.partner-head .body-copy {
  max-width: 53ch;
  margin-bottom: 0;
  color: var(--muted);
}

.partner-offer-card {
  padding: clamp(1.55rem, 3.6vw, 2.5rem);
  border-radius: 30px;
  background: linear-gradient(160deg, var(--promo-surface-start) 0%, var(--promo-surface-mid) 58%, var(--promo-surface-end) 100%);
  color: #ffffff;
  box-shadow: 0 24px 44px rgba(2, 48, 71, 0.18);
}

.partner-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.75rem;
}

.partner-logo {
  width: min(240px, 72%);
  height: auto;
  margin-bottom: 0.55rem;
  filter: brightness(0) invert(1);
}

.partner-benefits {
  list-style: none;
  display: grid;
  gap: 0.78rem;
  margin-bottom: 1.2rem;
}

.partner-benefits li {
  position: relative;
  padding-left: 1.35rem;
  color: rgba(255, 255, 255, 0.92);
}

.partner-benefits li::before {
  content: "";
  position: absolute;
  top: 0.46rem;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #ffb703;
  box-shadow: 0 0 0 6px rgba(255, 183, 3, 0.18);
}

.partner-offer-card .microcopy {
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 1.25rem;
}

.partner-link {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.22);
}

.partner-link:hover,
.partner-link:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.gallery-dialog {
  width: min(1280px, 100%);
  max-height: none;
  padding: 0;
  background: transparent;
  border: 0;
  overflow: visible;
  color: #ffffff;
}

#gallery-modal {
  padding: 10px;
}

#gallery-modal .modal-backdrop {
  background: rgba(2, 8, 18, 0.86);
}

.gallery-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(5, 15, 29, 0.72);
  color: #ffffff;
  display: grid;
  place-items: center;
  transition: background-color 0.16s ease, transform 0.16s ease;
}

.gallery-close:hover,
.gallery-close:focus-visible {
  background: rgba(5, 15, 29, 0.9);
  transform: translateY(-1px);
}

.gallery-close svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#gallery-image {
  display: block;
  width: min(1280px, calc(100vw - 20px));
  max-height: calc(100vh - 20px);
  object-fit: contain;
  border-radius: 14px;
  background: transparent;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.46);
}

.card h3,
.time-block h3,
.faq-item h3 {
  font-size: 1.03rem;
  margin-bottom: 0.38rem;
}

.card p,
.time-block p,
.faq-item p,
.body-copy,
.partner-note,
.quote-card span,
.media-card figcaption,
.modal-intro,
.modal-policy,
.modal-note {
  color: var(--muted);
}

.card p,
.time-block p,
.faq-answer p,
.final-cta-inner p {
  font-size: var(--section-lead-size);
  line-height: var(--section-copy-line);
}

.timeline {
  gap: 0.72rem;
}

.time-block {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 0.95rem;
  padding: 1rem;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  border-radius: 14px;
}

.time {
  font-weight: 700;
  color: #023047;
}

.program-head {
  max-width: 760px;
}

.program-head h2 {
  max-width: 16ch;
}

.program-head .body-copy {
  max-width: 64ch;
}

.program-note {
  padding: clamp(1.8rem, 2.8vw, 2.3rem) clamp(1.75rem, 2.6vw, 2.2rem) clamp(1.9rem, 2.9vw, 2.45rem);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 18px;
  background: transparent;
  box-shadow: none;
}

.program-note-inline {
  margin-bottom: 1.35rem;
}

.program-note-outro {
  margin-top: 1.35rem;
  margin-bottom: 0;
}

.program-note-time {
  margin-bottom: 0.45rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6c849b;
}

.program-note h3 {
  font-size: 1.24rem;
  margin-bottom: 0.42rem;
}

.program-note p {
  color: var(--muted);
  font-size: var(--section-lead-size);
  line-height: var(--section-copy-line);
  max-width: 66ch;
}

.program-timeline {
  gap: 1.35rem;
}

.program-slot {
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 1.6rem;
  padding: clamp(2rem, 3vw, 2.6rem) clamp(1.9rem, 2.8vw, 2.45rem) clamp(2.15rem, 3vw, 2.75rem);
  border-radius: 18px;
  border: 1px solid rgba(2, 48, 71, 0.1);
  background:
    radial-gradient(circle at top right, rgba(255, 183, 3, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 36px rgba(2, 48, 71, 0.08);
  align-items: start;
}

.program-slot.is-lunch {
  background:
    radial-gradient(circle at 84% 20%, rgba(255, 183, 3, 0.16), transparent 28%),
    radial-gradient(circle at 14% 18%, rgba(33, 158, 188, 0.18), transparent 32%),
    linear-gradient(160deg, var(--promo-surface-start) 0%, var(--promo-surface-mid) 58%, var(--promo-surface-end) 100%);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 42px rgba(2, 48, 71, 0.18);
}

.program-slot.is-lunch h3,
.program-slot.is-lunch p {
  color: rgba(255, 255, 255, 0.94);
}

.program-slot.is-lunch .time {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.program-time-wrap {
  display: flex;
  align-items: flex-start;
}

.program-slot .time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(2, 48, 71, 0.08);
  color: #194567;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.program-slot-copy {
  min-width: 0;
}

.program-slot h3 {
  font-size: clamp(1.28rem, 2vw, 1.6rem);
  line-height: 1.08;
  margin-bottom: 0.5rem;
}

.program-slot p {
  max-width: 68ch;
  font-size: var(--section-lead-size);
  line-height: var(--section-copy-line);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.included-section {
  position: relative;
  overflow: visible;
}

.included-section .container {
  width: min(1320px, calc(100vw - 56px));
}

.included-section.section::before,
.included-section.section::after {
  display: none;
}

.included-offer-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(320px, 0.8fr);
  gap: clamp(1.8rem, 3.4vw, 2.9rem);
  align-items: stretch;
  padding: clamp(4rem, 9vw, 6.4rem);
  border-radius: 32px;
  border: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 214, 143, 0.22), transparent 28%),
    radial-gradient(circle at 84% 16%, rgba(255, 183, 3, 0.24), transparent 30%),
    linear-gradient(160deg, var(--cta-surface-start) 0%, var(--cta-surface-mid) 54%, var(--cta-surface-end) 100%);
  box-shadow: 0 24px 44px rgba(2, 48, 71, 0.2);
}

.included-copy {
  display: grid;
  align-content: start;
  gap: 0;
}

.included-head {
  max-width: 680px;
  margin-bottom: 1.3rem;
}

.included-copy .kicker {
  color: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.included-head h2 {
  max-width: var(--section-heading-max);
  color: #ffffff;
}

.included-detail-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.84rem;
}

.included-detail-item {
  position: relative;
  padding: 0 0 0 1.3rem;
  font-size: var(--section-lead-size);
  line-height: var(--section-copy-line);
  font-weight: 400;
  color: #ffffff;
}

.included-detail-item::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.14);
}

.pricing-box {
  padding: 0;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 100%;
  padding: clamp(3.15rem, 4.6vw, 3.5rem) clamp(1.7rem, 3vw, 2.2rem) clamp(1.8rem, 3vw, 2.2rem);
  border-radius: 24px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 183, 3, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(127, 70, 8, 0.94), rgba(201, 109, 10, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 32px rgba(2, 48, 71, 0.18);
  color: #f6fbff;
}

.pricing-days-badge {
  position: absolute;
  top: 1rem;
  left: clamp(1rem, 2.4vw, 1.35rem);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 36px;
  max-width: none;
  padding: 0.42rem 0.8rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: linear-gradient(135deg, rgba(255, 249, 238, 0.98), rgba(255, 255, 255, 0.92));
  color: #7a3d05;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(109, 57, 7, 0.18);
}

.pricing-days-badge.is-ended {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.pricing-label {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 0.55rem;
}

.pricing-main {
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.pricing-card .pricing-label,
.pricing-card .pricing-sub,
.pricing-card .microcopy {
  color: #ffffff;
}

.pricing-card .pricing-main {
  color: #ffffff;
  font-size: clamp(2.1rem, 3vw, 2.7rem);
}

.pricing-active-row {
  display: grid;
  justify-items: start;
  gap: 0.25rem;
  margin-bottom: 0.42rem;
}

.pricing-old-inline {
  font-size: 1.12rem;
  line-height: 1.1;
  margin-bottom: 0;
}

.pricing-main-current {
  font-size: clamp(3rem, 5.2vw, 4.15rem);
  line-height: 0.94;
}

.pricing-sub {
  margin-bottom: 0.66rem;
  font-size: var(--section-lead-size);
  line-height: var(--section-copy-line);
}

.pricing-sub-current {
  margin-bottom: 0;
}

.pricing-box .button {
  margin-top: 0.35rem;
}

.pricing-card .button {
  margin-top: 0.95rem;
}

.pricing-card .microcopy {
  max-width: 30ch;
  margin-top: 0.65rem;
}

.other-cities-section {
  position: relative;
  overflow: visible;
}

.other-cities-section.section {
  padding-top: clamp(1.15rem, 2.8vw, 1.6rem);
  padding-bottom: clamp(1.25rem, 3vw, 1.8rem);
}

.other-cities-section.section::before,
.other-cities-section.section::after {
  display: none;
}

.other-cities-shell {
  padding: clamp(1.4rem, 3vw, 1.9rem);
  border-radius: 28px;
  border: 1px solid rgba(2, 48, 71, 0.08);
  background:
    radial-gradient(circle at 14% 18%, rgba(33, 158, 188, 0.1), transparent 32%),
    radial-gradient(circle at 84% 18%, rgba(255, 183, 3, 0.12), transparent 30%),
    linear-gradient(160deg, rgba(246, 251, 255, 0.96), rgba(255, 255, 255, 0.96));
  box-shadow: 0 20px 36px rgba(2, 48, 71, 0.08);
}

.other-cities-head {
  margin-bottom: 1.15rem;
}

.other-cities-head h2 {
  max-width: 20ch;
}

.other-cities-head .body-copy {
  max-width: 52ch;
  margin-bottom: 0;
  color: var(--muted);
}

.other-cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
}

.other-city-card {
  display: grid;
  gap: 0.55rem;
  align-content: start;
  min-height: 100%;
  padding: 1rem 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(2, 48, 71, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 26px rgba(2, 48, 71, 0.07);
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.other-city-card:hover,
.other-city-card:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(2, 48, 71, 0.16);
  box-shadow: 0 18px 30px rgba(2, 48, 71, 0.11);
}

.other-city-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.other-city-date,
.other-city-venue {
  margin-bottom: 0;
}

.other-city-date {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}

.other-city-status {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.52rem;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.other-city-status.is-open {
  background: rgba(33, 158, 188, 0.14);
  color: #0a5e6e;
}

.other-city-status.is-full {
  background: rgba(251, 133, 0, 0.14);
  color: #9a5200;
}

.other-city-status.is-closed {
  background: rgba(2, 48, 71, 0.1);
  color: #456075;
}

.other-city-card h3 {
  font-size: clamp(1.08rem, 1.8vw, 1.22rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #0a3750;
}

.other-city-venue {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.other-city-address {
  color: inherit;
}

.other-cities-all-link {
  margin-top: 0.9rem;
  margin-bottom: 0;
}

.body-copy {
  margin-bottom: 0.8rem;
}

.photo-placeholder {
  min-height: 148px;
  display: grid;
  place-items: center;
  text-align: center;
  color: rgba(2, 48, 71, 0.64);
  background:
    radial-gradient(circle at 18% 16%, rgba(33, 158, 188, 0.24), transparent 38%),
    radial-gradient(circle at 84% 82%, rgba(255, 183, 3, 0.22), transparent 36%),
    rgba(255, 255, 255, 0.56);
  border: 1px dashed rgba(2, 48, 71, 0.2);
  border-radius: 10px;
  padding: 0.8rem;
}

.media-card figcaption {
  margin-top: 0.62rem;
  font-size: 0.89rem;
}

.photo-strip .photo-placeholder {
  min-height: 118px;
}

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

.testimonial-slider {
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  gap: 1rem;
  align-items: center;
}

.slider-window {
  min-height: 260px;
  position: relative;
}

.slider-track {
  position: relative;
  min-height: 260px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: grid;
  align-content: center;
  justify-items: stretch;
}

.testimonial-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.quote-card {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: clamp(1.35rem, 2.2vw, 1.8rem) clamp(1.2rem, 2vw, 1.6rem) clamp(1.45rem, 2.3vw, 1.95rem);
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  text-align: center;
}

.quote-card p {
  max-width: 50ch;
  margin: 0 auto 0.75rem;
  font-size: clamp(1.16rem, 1.45vw, 1.5rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.6;
  color: #ffffff;
  text-shadow: 0 1px 10px rgba(2, 18, 28, 0.22);
}

.quote-card span {
  display: block;
  font-size: 0.98rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 8px rgba(2, 18, 28, 0.16);
}

.slider-arrow {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  box-shadow: none;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.slider-arrow:hover,
.slider-arrow:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
}

.slider-dot.is-active {
  background: #ffb703;
  border-color: #ffb703;
}

.proof-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(2, 48, 71, 0.68), rgba(2, 48, 71, 0.58)),
    linear-gradient(135deg, rgba(11, 78, 102, 0.14), rgba(255, 183, 3, 0.04)),
    url("../images/workshops/zagreb-workshop-live.jpg") center 42% / cover no-repeat;
}

.proof-section.section::before,
.proof-section.section::after {
  display: none;
}

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

.proof-head .kicker {
  color: rgba(255, 255, 255, 0.68);
}

.proof-head h2 {
  color: #ffffff;
  font-size: clamp(1.9rem, 2.5vw, 2.45rem);
  max-width: 13ch;
  text-shadow: 0 1px 10px rgba(2, 18, 28, 0.16);
}

.cta-wrap {
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.4rem;
}

.cta-actions {
  text-align: right;
}

.microcopy {
  margin-top: 0.5rem;
  font-size: var(--support-copy-size);
  line-height: 1.56;
}

.reserve-section {
  position: relative;
  overflow: visible;
}

.reserve-section .container {
  width: min(1320px, calc(100vw - 56px));
}

.reserve-section.section::before,
.reserve-section.section::after {
  display: none;
}

.reserve-stack {
  display: grid;
  gap: 1.15rem;
}

.reserve-stack > * {
  width: 100%;
}

.reserve-banner {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 1.15rem;
  max-width: none;
  margin: 0 auto;
  padding: clamp(3.1rem, 6vw, 4.6rem);
  border-radius: 32px;
  border: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 214, 143, 0.2), transparent 30%),
    radial-gradient(circle at 84% 20%, rgba(255, 183, 3, 0.2), transparent 28%),
    linear-gradient(160deg, var(--cta-surface-start) 0%, var(--cta-surface-mid) 54%, var(--cta-surface-end) 100%);
  box-shadow: 0 18px 36px rgba(2, 48, 71, 0.16);
  text-align: center;
  overflow: hidden;
}

.reserve-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  pointer-events: none;
}

.reserve-banner > * {
  position: relative;
  z-index: 1;
}

.reserve-banner .kicker,
.reserve-banner h2,
.reserve-banner .body-copy,
.reserve-banner-actions {
  margin: 0;
}

.reserve-banner .kicker {
  color: #ffffff;
}

.reserve-banner h2 {
  max-width: var(--cta-heading-max);
  color: #ffffff;
  text-wrap: balance;
}

.reserve-banner .body-copy {
  color: #ffffff;
}

.reserve-banner .reserve-summary-line {
  max-width: none;
  color: #ffffff;
  white-space: nowrap;
}

.reserve-summary-line strong {
  font-weight: 700;
  color: #ffffff;
}

.reserve-banner-actions {
  display: grid;
  justify-items: center;
  gap: 0.95rem;
}

.reserve-banner .button-primary-hero {
  min-width: min(100%, 320px);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(255, 255, 255, 0.92));
  color: #7a3d05;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 14px 28px rgba(109, 57, 7, 0.18);
  text-shadow: none;
}

.reserve-banner .button-primary-hero:hover,
.reserve-banner .button-primary-hero:focus-visible {
  background: linear-gradient(180deg, #ffffff, rgba(255, 250, 244, 0.98));
  box-shadow: 0 16px 30px rgba(109, 57, 7, 0.2);
}

.reserve-banner .microcopy {
  max-width: 34ch;
  margin-top: 0;
  color: rgba(246, 251, 255, 0.78);
}

.reserve-banner .cta-inline-wrap {
  margin-top: 0;
}

.reserve-followup-card {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 1.15rem;
  max-width: none;
  margin: 0 auto;
  padding: clamp(3.1rem, 6vw, 4.6rem);
  border-radius: 32px;
  border: 1px solid rgba(2, 48, 71, 0.1);
  background:
    radial-gradient(circle at 12% 18%, rgba(33, 158, 188, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(246, 251, 255, 0.9));
  box-shadow: 0 18px 32px rgba(2, 48, 71, 0.1);
  text-align: center;
  overflow: hidden;
}

.reserve-followup-card > * {
  position: relative;
  z-index: 1;
}

.reserve-followup-card .kicker,
.reserve-followup-card h2,
.reserve-followup-card .body-copy,
.reserve-followup-note {
  margin: 0;
}

.reserve-followup-card .kicker {
  color: rgba(2, 48, 71, 0.68);
}

.reserve-followup-card h2 {
  max-width: var(--cta-heading-max);
  color: var(--ink);
  text-wrap: balance;
}

.reserve-followup-card .body-copy {
  color: var(--muted);
}

.reserve-followup-summary {
  max-width: 56ch;
}

.reserve-followup-actions {
  justify-items: center;
  gap: 0.68rem;
}

.reserve-followup-actions .button-primary {
  min-width: min(100%, 320px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92));
  color: var(--ink);
  border-color: rgba(2, 48, 71, 0.14);
  box-shadow: 0 14px 28px rgba(2, 48, 71, 0.1);
}

.reserve-followup-actions .button-primary:hover,
.reserve-followup-actions .button-primary:focus-visible {
  background: linear-gradient(180deg, #ffffff, rgba(252, 254, 255, 0.98));
  box-shadow: 0 16px 30px rgba(2, 48, 71, 0.12);
}

.reserve-followup-note {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
  max-width: 34ch;
}

.faq-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.faq-section.section::before,
.faq-section.section::after {
  display: none;
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(33, 158, 188, 0.12), transparent 32%),
    radial-gradient(circle at 84% 22%, rgba(251, 133, 0, 0.14), transparent 34%),
    linear-gradient(145deg, #f7fbff 0%, #ffffff 54%, #fffaf1 100%);
  z-index: 0;
}

.faq-head {
  position: relative;
  z-index: 1;
}

.faq-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.35rem;
  width: 100%;
}

.faq-item {
  border: 0;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.76));
  box-shadow: 0 16px 28px rgba(2, 48, 71, 0.1);
  overflow: hidden;
  padding: clamp(2rem, 3vw, 2.6rem) clamp(1.9rem, 2.8vw, 2.45rem) clamp(2.15rem, 3vw, 2.75rem);
}

.faq-summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0;
  cursor: pointer;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary-text {
  font-size: 26px;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.faq-summary-icon {
  position: relative;
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
}

.faq-summary-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.68rem;
  height: 0.68rem;
  border-right: 2px solid rgba(2, 48, 71, 0.72);
  border-bottom: 2px solid rgba(2, 48, 71, 0.72);
  transform: translate(-50%, -60%) rotate(45deg);
  transition: transform 0.18s ease;
}

.faq-item[open] .faq-summary-icon::before {
  transform: translate(-50%, -35%) rotate(-135deg);
}

.faq-answer {
  margin-top: clamp(0.42rem, 0.8vw, 0.58rem);
  padding: 0;
}

.faq-answer p {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.72;
}

.final-cta-inner {
  padding: 0;
  text-align: center;
}

.final-cta-inner h2 {
  margin-bottom: 0.5rem;
}

.final-cta-inner p {
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.proof-head {
  display: grid;
  gap: 0.45rem;
  justify-items: center;
  max-width: min(760px, 100%);
  margin-inline: auto;
  text-align: center;
}

.proof-head .kicker,
.proof-head h2 {
  margin-bottom: 0;
}

.proof-head h2 {
  max-width: var(--section-heading-max);
}

.ai-built-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.ai-built-section.section::before,
.ai-built-section.section::after {
  display: none;
}

.ai-built-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 16%, rgba(33, 158, 188, 0.12), transparent 30%),
    radial-gradient(circle at 86% 24%, rgba(251, 133, 0, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(248, 252, 255, 0.74), rgba(244, 250, 255, 0.9));
  z-index: 0;
}

.ai-built-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(1.4rem, 3vw, 2.6rem);
  padding: clamp(1.55rem, 3.4vw, 2.5rem);
  border-radius: 34px;
  border: 1px solid rgba(2, 48, 71, 0.1);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 183, 3, 0.12), transparent 24%),
    radial-gradient(circle at 14% 18%, rgba(33, 158, 188, 0.12), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92) 0%, rgba(247, 251, 255, 0.96) 54%, rgba(255, 249, 241, 0.94) 100%);
  box-shadow: 0 22px 40px rgba(2, 48, 71, 0.12);
  overflow: hidden;
}

.ai-built-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.04));
  pointer-events: none;
}

.ai-built-shell > * {
  position: relative;
  z-index: 1;
}

.ai-built-copy,
.ai-built-panel,
.ai-built-grid {
  display: grid;
}

.ai-built-copy {
  gap: 1rem;
  align-content: start;
}

.ai-built-copy .kicker,
.ai-built-copy h2,
.ai-built-copy .body-copy,
.ai-built-note {
  margin: 0;
}

.ai-built-copy .kicker {
  color: rgba(2, 48, 71, 0.58);
}

.ai-built-copy h2 {
  max-width: 15ch;
  color: var(--ink);
  text-wrap: balance;
}

.ai-built-copy .body-copy {
  max-width: 60ch;
  color: var(--muted);
}

.ai-built-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.ai-built-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(2, 48, 71, 0.12);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.ai-built-note {
  max-width: 56ch;
  color: rgba(2, 48, 71, 0.72);
}

.ai-built-panel {
  gap: 1rem;
  align-content: start;
  padding: clamp(1.2rem, 2.8vw, 1.65rem);
  border-radius: 26px;
  border: 1px solid rgba(2, 48, 71, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(244, 249, 255, 0.82));
  backdrop-filter: blur(10px);
}

.ai-built-panel-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(2, 48, 71, 0.56);
}

.ai-built-grid {
  gap: 0.85rem;
}

.ai-built-card {
  padding: 1rem 1rem 1.05rem;
  border-radius: 20px;
  border: 1px solid rgba(2, 48, 71, 0.08);
  background: rgba(255, 255, 255, 0.78);
}

.ai-built-card strong,
.ai-built-card p {
  margin: 0;
}

.ai-built-card strong {
  display: block;
  margin-bottom: 0.38rem;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.15;
}

.ai-built-card p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.58;
}

.site-footer {
  padding: clamp(2.2rem, 5vw, 3.4rem) 0 30px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 0.9rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-inner a {
  color: var(--ink);
  font-weight: 600;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: grid;
  place-items: center;
  padding: 16px;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: var(--modal-backdrop);
}

.modal-dialog {
  position: relative;
  width: min(640px, 100%);
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  background: var(--modal-bg);
  border: 1px solid var(--modal-line);
  border-radius: 26px;
  color: var(--modal-ink);
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: 0 24px 54px rgba(2, 48, 71, 0.22);
}

.reservation-dialog {
  width: min(760px, 100%);
  background:
    radial-gradient(circle at top right, rgba(255, 183, 3, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 251, 255, 0.96));
}

.interest-dialog {
  width: min(640px, 100%);
  background:
    radial-gradient(circle at top left, rgba(33, 158, 188, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(246, 251, 255, 0.97));
}

.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.modal-head-copy {
  display: grid;
  gap: 0.45rem;
}

.modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(2, 48, 71, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: var(--modal-ink);
  font-weight: 700;
}

.modal-close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.modal-dialog h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 0;
}

.modal-intro {
  color: var(--modal-muted);
  margin-bottom: 0;
}

.reservation-form {
  position: relative;
  display: grid;
  gap: 0.95rem;
}

.reservation-form[hidden] {
  display: none;
}

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

.reservation-field {
  position: relative;
  display: block;
}

.reservation-field-full {
  grid-column: 1 / -1;
}

.reservation-field span {
  position: absolute;
  top: 0.78rem;
  left: 1rem;
  color: rgba(2, 48, 71, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  pointer-events: none;
}

.reservation-form input[type="text"],
.reservation-form input[type="email"],
.reservation-form input[type="tel"],
.reservation-form input[type="url"],
.reservation-form select {
  width: 100%;
  min-height: 60px;
  padding: 1.7rem 1rem 0.72rem;
  border: 1px solid rgba(2, 48, 71, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--modal-ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.reservation-form select {
  padding-right: 3.2rem;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(2, 48, 71, 0.62) 50%),
    linear-gradient(135deg, rgba(2, 48, 71, 0.62) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  font: inherit;
}

.reservation-form select:invalid {
  color: rgba(2, 48, 71, 0.62);
}

.reservation-form select option {
  color: var(--modal-ink);
}

.reservation-form textarea {
  width: 100%;
  min-height: 124px;
  padding: 1.85rem 1rem 0.95rem;
  border: 1px solid rgba(2, 48, 71, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--modal-ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
  resize: vertical;
  font: inherit;
}

.reservation-form input[type="text"]:focus,
.reservation-form input[type="email"]:focus,
.reservation-form input[type="tel"]:focus,
.reservation-form input[type="url"]:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  outline: none;
  border-color: rgba(251, 133, 0, 0.42);
  box-shadow: 0 0 0 4px rgba(251, 133, 0, 0.12);
}

.reservation-form input[type="text"]:focus + span,
.reservation-form input[type="email"]:focus + span,
.reservation-form input[type="tel"]:focus + span,
.reservation-form input[type="url"]:focus + span,
.reservation-form select:focus + span,
.reservation-form textarea:focus + span {
  color: var(--ink);
}

.reservation-field span em {
  font-style: normal;
  font-weight: 600;
  color: rgba(2, 48, 71, 0.42);
}

.reservation-field-error {
  margin: 0.45rem 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(196, 51, 38, 0.95);
  line-height: 1.4;
}

.reservation-field-error[hidden] {
  display: none;
}

.reservation-field-has-error input {
  border-color: rgba(196, 51, 38, 0.65) !important;
  box-shadow: 0 0 0 3px rgba(196, 51, 38, 0.12);
}

.reservation-field-has-error span {
  color: rgba(196, 51, 38, 0.95);
}

.reservation-company-panel {
  display: grid;
  gap: 0.7rem;
}

.reservation-check {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.72rem;
  align-items: start;
  padding: 0.1rem 0;
  cursor: pointer;
}

.reservation-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.reservation-check-indicator {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-top: 0.18rem;
  border-radius: 7px;
  border: 1.5px solid rgba(2, 48, 71, 0.24);
  background: #ffffff;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

.reservation-check-indicator::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--cta-surface-mid), var(--cta-surface-end));
  transform: scale(0);
  transition: transform 0.16s ease;
}

.reservation-check input:checked + .reservation-check-indicator {
  border-color: rgba(251, 133, 0, 0.55);
  background: rgba(255, 255, 255, 0.98);
}

.reservation-check input:checked + .reservation-check-indicator::after {
  transform: scale(1);
}

.reservation-check input:focus-visible + .reservation-check-indicator {
  outline: 2px solid rgba(251, 133, 0, 0.35);
  outline-offset: 3px;
}

.reservation-check-copy {
  display: grid;
  gap: 0.14rem;
  line-height: 1.5;
}

.reservation-check-copy strong {
  color: var(--modal-ink);
  font-size: 1rem;
}

.reservation-check-copy span {
  color: var(--modal-muted);
  font-size: 0.94rem;
}

.reservation-check-consent .reservation-check-copy {
  gap: 0;
}

.reservation-company-fields[hidden] {
  display: none;
}

.reservation-company-fields {
  display: grid;
  gap: 0.85rem;
}

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

.reservation-form-actions {
  display: grid;
  margin-top: 0.1rem;
}

.reservation-form-actions .button-primary {
  width: 100%;
  min-height: 54px;
  border: 0;
  background: linear-gradient(135deg, var(--cta-surface-mid), var(--cta-surface-end));
  color: #ffffff;
  box-shadow: 0 16px 26px rgba(251, 133, 0, 0.22);
}

.reservation-form-actions .button-primary:hover,
.reservation-form-actions .button-primary:focus-visible {
  background: linear-gradient(135deg, #ff9800, #ffc034);
  box-shadow: 0 18px 28px rgba(251, 133, 0, 0.24);
}

.reservation-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.modal-meta {
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
}

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

.reservation-success {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.reservation-success[hidden] {
  display: none;
}

.reservation-success-card {
  display: grid;
  gap: 0.4rem;
  padding: 1.2rem 1.2rem 1.28rem;
  border-radius: 22px;
  border: 1px solid rgba(251, 133, 0, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 241, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.reservation-success-message {
  margin: 0;
  color: var(--modal-ink);
  font-size: 1.08rem;
  line-height: 1.6;
  font-weight: 600;
}

.reservation-success-note {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(2, 48, 71, 0.04);
  border: 1px solid rgba(2, 48, 71, 0.08);
}

.reservation-success-note strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--modal-ink);
}

.reservation-success-note p {
  margin: 0;
  color: var(--modal-muted);
}

.modal-head-hidden {
  display: none !important;
}

.reservation-payment-choice {
  display: grid;
  gap: 0.4rem;
  margin-top: 0.4rem;
}

.reservation-payment-choice[hidden] {
  display: none;
}

/* Confirmation hero — calm success aesthetic, dominant message. */
.reservation-payment-confirm {
  display: grid;
  gap: 0.7rem;
  padding: 1.6rem 1.3rem 1.6rem;
  border-radius: 22px;
  border: 1px solid rgba(43, 182, 115, 0.22);
  background:
    linear-gradient(170deg, rgba(232, 250, 240, 0.92), rgba(245, 253, 248, 0.92));
  text-align: center;
}

.reservation-payment-confirm-icon {
  justify-self: center;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(43, 182, 115, 0.16);
  color: rgb(28, 138, 86);
}

.reservation-payment-confirm-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reservation-payment-confirm-title {
  margin: 0;
  color: var(--modal-ink);
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 700;
}

.reservation-payment-confirm-body {
  margin: 0;
  color: var(--modal-muted);
  font-size: 0.97rem;
  line-height: 1.55;
}

.reservation-payment-confirm-close {
  justify-self: center;
  margin-top: 0.4rem;
  padding: 0.7rem 1.6rem;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  background: rgba(2, 48, 71, 0.06);
  color: var(--modal-ink);
  border: 1px solid rgba(2, 48, 71, 0.16);
}

.reservation-payment-confirm-close:hover,
.reservation-payment-confirm-close:focus-visible {
  background: rgba(2, 48, 71, 0.1);
}

.reservation-payment-confirm-close:disabled {
  opacity: 0.6;
  cursor: progress;
}

.reservation-payment-confirm-summary {
  display: grid;
  gap: 0.55rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(43, 182, 115, 0.18);
  background: rgba(255, 255, 255, 0.55);
  text-align: left;
}

.reservation-payment-confirm-summary[hidden] {
  display: none;
}

.reservation-payment-confirm-summary-workshop {
  margin: 0;
  display: grid;
  gap: 0.15rem;
  font-size: 0.95rem;
  color: var(--modal-ink);
}

.reservation-payment-confirm-summary-workshop strong {
  font-weight: 700;
}

.reservation-payment-confirm-summary-meta {
  font-size: 0.85rem;
  color: var(--modal-muted);
  line-height: 1.4;
  word-break: break-word;
}

.reservation-payment-confirm-summary-prices {
  margin: 0;
  display: grid;
  gap: 0.3rem;
}

.reservation-payment-confirm-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--modal-muted);
}

.reservation-payment-confirm-summary-row[hidden] {
  display: none;
}

.reservation-payment-confirm-summary-row dt {
  margin: 0;
}

.reservation-payment-confirm-summary-row dd {
  margin: 0;
  color: var(--modal-ink);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.reservation-payment-confirm-summary-row-coupon dd {
  color: rgba(196, 51, 38, 0.92);
}

.reservation-payment-confirm-summary-row-total {
  margin-top: 0.2rem;
  padding-top: 0.4rem;
  border-top: 1px dashed rgba(43, 182, 115, 0.25);
  font-size: 0.97rem;
}

.reservation-payment-confirm-summary-row-total dd {
  font-size: 1.02rem;
  font-weight: 700;
  color: rgb(28, 138, 86);
}

/* "ili" divider between confirmation and bonus offer. */
.reservation-payment-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.6rem;
  margin: 0.4rem 0;
  color: rgba(2, 48, 71, 0.45);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.reservation-payment-divider[hidden] {
  display: none;
}

.reservation-payment-divider::before,
.reservation-payment-divider::after {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, rgba(2, 48, 71, 0), rgba(2, 48, 71, 0.18), rgba(2, 48, 71, 0));
}

/* Bonus offer block — clearly opt-in framing, secondary visual weight. */
.reservation-payment-bonus {
  display: grid;
  gap: 0.75rem;
  padding: 1.3rem 1.3rem 1.45rem;
  border-radius: 22px;
  border: 1px dashed rgba(2, 48, 71, 0.16);
  background: rgba(255, 252, 247, 0.85);
}

.reservation-payment-bonus[hidden] {
  display: none;
}

.reservation-payment-bonus-eyebrow {
  margin: 0;
  align-self: start;
  justify-self: start;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: rgba(251, 133, 0, 0.14);
  color: rgba(196, 102, 0, 0.95);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reservation-payment-bonus-title {
  margin: 0;
  color: var(--modal-ink);
  font-size: 1.18rem;
  line-height: 1.34;
  font-weight: 700;
}

.reservation-payment-bonus-title span[data-payment-discount-percent] {
  background: linear-gradient(135deg, var(--cta-surface-mid), var(--cta-surface-end));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.reservation-payment-bonus-intro {
  margin: 0;
  color: var(--modal-muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.reservation-payment-choice-amounts {
  display: grid;
  gap: 0.4rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(2, 48, 71, 0.08);
  background: rgba(255, 255, 255, 0.7);
}

.reservation-payment-choice-amount-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 0.93rem;
  color: var(--modal-muted);
}

.reservation-payment-choice-amount-row[hidden] {
  display: none;
}

.reservation-payment-choice-amount-row strong {
  color: var(--modal-ink);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.reservation-payment-choice-amount-row-discount strong {
  color: rgba(196, 51, 38, 0.92);
}

.reservation-payment-choice-amount-row-total {
  margin-top: 0.25rem;
  padding-top: 0.45rem;
  border-top: 1px dashed rgba(2, 48, 71, 0.18);
  font-size: 1.05rem;
}

.reservation-payment-choice-amount-row-total strong {
  font-size: 1.16rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--cta-surface-mid), var(--cta-surface-end));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.reservation-payment-bonus-cta {
  margin-top: 0.3rem;
  width: 100%;
  min-height: 50px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, var(--cta-surface-mid), var(--cta-surface-end));
  color: #ffffff;
  box-shadow: 0 14px 24px rgba(251, 133, 0, 0.2);
}

.reservation-payment-bonus-cta:hover,
.reservation-payment-bonus-cta:focus-visible {
  background: linear-gradient(135deg, #ff9800, #ffc034);
  box-shadow: 0 18px 28px rgba(251, 133, 0, 0.24);
}

.reservation-payment-bonus-cta:disabled {
  opacity: 0.6;
  cursor: progress;
}

.reservation-payment-bonus-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--modal-muted);
}

.reservation-payment-choice-feedback {
  margin: 0;
  font-size: 0.92rem;
  color: var(--modal-ink);
  font-weight: 600;
}

.reservation-payment-choice-feedback[data-tone="error"] {
  color: rgba(196, 51, 38, 0.95);
}

.reservation-payment-choice-feedback[data-tone="pending"] {
  color: rgba(2, 48, 71, 0.7);
}

.reservation-payment-choice-feedback[hidden] {
  display: none;
}

.modal-policy,
.modal-note,
.form-feedback {
  color: var(--modal-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.form-feedback {
  min-height: 1.6rem;
  margin-top: 0.85rem;
  font-weight: 700;
}

.form-feedback[hidden] {
  display: none;
}

.prep-page-section {
  padding-top: clamp(7.5rem, 12vw, 10rem);
}

.prep-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: start;
  max-width: 780px;
  margin: 0 auto;
}

.prep-intro-card,
.prep-form-card {
  position: relative;
  border-radius: 32px;
  border: 1px solid rgba(7, 73, 104, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 251, 255, 0.98));
  box-shadow: 0 28px 70px rgba(7, 73, 104, 0.12);
}

.prep-intro-card {
  display: grid;
  gap: 1.4rem;
  padding: clamp(1.55rem, 2.5vw, 2rem);
}

.prep-intro-card h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.02;
}

.prep-intro-card .lead {
  margin: 0;
  max-width: 38rem;
}

.prep-meta-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.prep-meta-item {
  display: grid;
  gap: 0.24rem;
  padding: 0.95rem 1rem;
  border-radius: 20px;
  background: rgba(7, 73, 104, 0.05);
  border: 1px solid rgba(7, 73, 104, 0.08);
}

.prep-meta-item span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.prep-meta-item strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.4;
}

.prep-note-card {
  display: grid;
  gap: 1rem;
  padding: 1.25rem 1.3rem;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 248, 238, 0.96), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(251, 133, 0, 0.16);
}

.prep-note-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.25rem;
}

.prep-note-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.72rem;
}

.prep-note-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ink);
  line-height: 1.65;
}

.prep-note-list a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.14em;
}

.prep-note-list li::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cta-surface-mid), var(--cta-surface-end));
}

.prep-note-fineprint {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.prep-form-card {
  display: grid;
  gap: 1.15rem;
  padding: clamp(1.45rem, 2.2vw, 1.9rem);
}

.prep-form-head {
  display: grid;
  gap: 0.45rem;
}

.prep-form-head h2,
.prep-form-head .body-copy {
  margin: 0;
}

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

.prep-form .reservation-field-full {
  grid-column: auto;
}

.prep-form .reservation-field span {
  right: 3.4rem;
  line-height: 1.2;
  max-width: calc(100% - 4.4rem);
}

.prep-form input[type="text"],
.prep-form input[type="email"],
.prep-form input[type="url"],
.prep-form select {
  min-height: 72px;
  padding-top: 2rem;
}

.prep-field-note {
  margin: -0.1rem 0 0.2rem;
  padding: 0.8rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(251, 133, 0, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 249, 224, 0.96), rgba(255, 252, 240, 0.96));
  color: rgba(2, 48, 71, 0.72);
  font-size: 0.86rem;
  line-height: 1.58;
}

.prep-fieldset {
  display: grid;
  gap: 0.95rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.prep-fieldset + .prep-fieldset {
  padding-top: 1.05rem;
  border-top: 1px solid rgba(2, 48, 71, 0.08);
}

.prep-fieldset legend {
  margin-bottom: 0.9rem;
  padding: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
}

.prep-scale-grid {
  display: grid;
  gap: 0.9rem;
}

.prep-scale-card {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 1rem 1.05rem 1.05rem;
  border: 1px solid rgba(2, 48, 71, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.98));
}

.prep-scale-label {
  margin: 0;
  padding: 0;
  color: var(--modal-ink);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.45;
}

.prep-scale-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.prep-scale-option {
  position: relative;
  display: block;
  flex: 0 0 48px;
  cursor: pointer;
}

.prep-scale-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.prep-scale-value {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(2, 48, 71, 0.12);
  background: rgba(255, 255, 255, 0.96);
  color: var(--modal-ink);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
  transition:
    border-color 0.18s ease,
    background-color 0.18s ease,
    box-shadow 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.prep-scale-option:hover .prep-scale-value {
  border-color: rgba(251, 133, 0, 0.24);
  transform: translateY(-1px);
}

.prep-scale-option input:checked + .prep-scale-value {
  border-color: rgba(251, 133, 0, 0.45);
  background: linear-gradient(135deg, var(--cta-surface-mid), var(--cta-surface-end));
  color: #ffffff;
  box-shadow: 0 10px 18px rgba(251, 133, 0, 0.2);
}

.prep-scale-option input:focus-visible + .prep-scale-value {
  outline: 2px solid rgba(251, 133, 0, 0.35);
  outline-offset: 2px;
}

.prep-checkbox-group {
  display: grid;
  gap: 0.8rem;
}

.prep-checkbox-group .reservation-check {
  padding: 1rem 1.05rem;
  border-radius: 20px;
  border: 1px solid rgba(2, 48, 71, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.98));
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.prep-checkbox-group .reservation-check:hover {
  border-color: rgba(251, 133, 0, 0.2);
  box-shadow: 0 12px 24px rgba(7, 73, 104, 0.06);
  transform: translateY(-1px);
}

.prep-checkbox-group .reservation-check-copy strong {
  line-height: 1.35;
}

.prep-checkbox-group .reservation-check-copy span {
  line-height: 1.55;
}

.prep-optional-panel {
  display: grid;
  gap: 0.9rem;
}

.prep-optional-panel[hidden] {
  display: none;
}

@media (max-width: 680px) {
  .modal-head {
    flex-direction: column;
  }

  .modal-close {
    align-self: flex-start;
  }

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

  .reservation-field-full {
    grid-column: auto;
  }

  .reservation-company-fields {
    margin-left: 0;
  }

  .prep-meta-list {
    grid-template-columns: 1fr;
  }
}
@keyframes sectionFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .hero-grid,
  .split,
  .included-offer-layout,
  .location-layout,
  .instructor-layout,
  .partner-layout,
  .ai-built-shell {
    grid-template-columns: 1fr;
  }

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

  .hero h1 {
    max-width: var(--hero-heading-max);
  }

  .instructor-photo-frame {
    justify-self: start;
  }
}

@media (min-width: 1024px) {
  .hero .lead {
    font-size: max(24px, var(--hero-lead-size));
  }
}

@media (max-width: 900px) {
  .card-grid-3,
  .photo-strip {
    grid-template-columns: 1fr;
  }

  .location-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "feature feature"
      "detail-a detail-b"
      "wide wide";
    grid-template-rows: clamp(250px, 42vw, 360px) clamp(180px, 30vw, 230px) clamp(190px, 32vw, 250px);
  }

  .location-gallery-single {
    grid-template-columns: 1fr;
    grid-template-areas: "feature";
    grid-template-rows: clamp(250px, 54vw, 380px);
  }

  .location-gallery-pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas: "feature detail-a";
    grid-template-rows: clamp(220px, 42vw, 340px);
  }

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

  .program-slot {
    gap: 1rem;
    padding: 1.9rem 1.55rem 2rem;
  }

  .program-slot .time {
    font-size: 0.92rem;
  }

  .program-slot h3 {
    max-width: none;
  }

  .program-note {
    padding: 1.9rem 1.55rem 2rem;
  }

  .cta-wrap,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .reserve-banner {
    max-width: 100%;
  }

  .ai-built-copy h2 {
    max-width: 18ch;
  }

  .cta-actions {
    text-align: left;
  }

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

  .slider-window,
  .slider-track {
    min-height: 320px;
  }
}

@media (max-width: 680px) {
  .container,
  main .container {
    width: 100%;
    max-width: 1160px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .included-section .container,
  .reserve-section .container {
    width: 100%;
    max-width: 1320px;
    padding-left: 16px;
    padding-right: 16px;
  }

  body {
    padding-top: 72px;
  }

  .header-inner {
    position: relative;
    min-height: 60px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 0.75rem;
    row-gap: 0;
    padding: 10px 20px;
  }

  .site-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    box-shadow: none;
  }

  .nav {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    grid-column: 1 / -1;
    width: 100%;
    justify-content: stretch;
    gap: 0.55rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(0);
    transition: max-height 0.2s ease, opacity 0.18s ease, padding 0.18s ease, visibility 0.18s ease;
  }

  .nav a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0.68rem 0.85rem;
    border: 1px solid rgba(2, 48, 71, 0.08);
    border-radius: 14px;
    background: rgba(245, 250, 255, 0.92);
    font-size: 0.82rem;
  }

  .nav .button-nav {
    grid-column: auto;
    margin-top: 0.2rem;
  }

  .site-header.menu-open .nav {
    max-height: 420px;
    padding-top: 0.85rem;
    padding-bottom: 0.5rem;
    border-top: 1px solid rgba(2, 48, 71, 0.08);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .section {
    padding: 2.35rem 0;
  }

  .hero {
    min-height: clamp(500px, 88svh, 620px);
  }

  .hero h1,
  .hero .lead {
    max-width: none;
  }

  .hero-promo-banner {
    max-width: 100%;
  }

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

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

  .button {
    width: 100%;
  }

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

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

  .location-gallery {
    grid-template-columns: 1fr;
    grid-template-areas:
      "feature"
      "detail-a"
      "detail-b"
      "wide";
    grid-template-rows: repeat(4, clamp(220px, 58vw, 320px));
  }

  .location-gallery-single,
  .location-gallery-pair {
    grid-template-columns: 1fr;
    grid-template-areas: "feature";
    grid-template-rows: clamp(220px, 58vw, 320px);
  }

  .location-gallery-pair {
    grid-template-areas:
      "feature"
      "detail-a";
    grid-template-rows: repeat(2, clamp(220px, 58vw, 320px));
  }

  .instructor-photo-frame {
    width: min(100%, 360px);
    justify-self: stretch;
  }

  .faq-summary {
    padding: 0;
  }

  .faq-item {
    padding: 1.9rem 1.55rem 2rem;
  }

  .faq-answer {
    margin-top: 0.42rem;
  }

  .faq-summary-text {
    font-size: 1.75rem;
  }

  .faq-answer p {
    font-size: 1.02rem;
  }

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

  .slider-window,
  .slider-track {
    min-height: 300px;
  }

  .quote-card {
    padding: 1.25rem 1.1rem 1.35rem;
  }

  .quote-card p {
    font-size: 1.14rem;
    max-width: none;
  }

  .quote-card span {
    font-size: 0.92rem;
  }

  .proof-head h2 {
    font-size: clamp(1.65rem, 7vw, 2rem);
    max-width: 12ch;
  }

  .section-head h2,
  .reserve-banner h2,
  .reserve-followup-card h2,
  .ai-built-copy h2,
  .proof-head h2 {
    overflow-wrap: anywhere;
  }

  .reserve-banner h2,
  .reserve-followup-card h2 {
    font-size: clamp(1.34rem, 6.2vw, 1.78rem);
    line-height: 1.06;
    letter-spacing: -0.03em;
  }

  .reserve-summary-line {
    white-space: normal;
  }

  .included-head h2,
  .reserve-banner h2 {
    max-width: none;
  }

  .included-offer-layout,
  .pricing-card,
  .reserve-banner,
  .reserve-followup-card,
  .other-cities-shell,
  .other-city-card,
  .ai-built-shell,
  .ai-built-panel,
  .ai-built-card {
    border-radius: 22px;
  }

  .included-offer-layout,
  .reserve-banner,
  .reserve-followup-card {
    padding: 1.25rem 1rem 1.35rem;
  }

  .other-cities-shell {
    padding: 1.05rem 1rem 1.1rem;
  }

  .pricing-card {
    align-items: stretch;
    padding: 1.1rem 1rem 1.2rem;
    overflow: visible;
  }

  .pricing-main-current {
    font-size: clamp(1.9rem, 10vw, 2.45rem);
  }

  .pricing-active-row {
    width: 100%;
    gap: 0.35rem;
  }

  .ai-built-shell {
    padding: 1.25rem 1.05rem;
  }

  .ai-built-badges {
    flex-direction: column;
    align-items: stretch;
  }

  .ai-built-badges span {
    justify-content: center;
    text-align: center;
  }

  .pricing-days-badge {
    position: static;
    min-height: 36px;
    max-width: 100%;
    padding: 0.42rem 0.72rem;
    font-size: 0.62rem;
    margin-bottom: 0.7rem;
    white-space: normal;
    line-height: 1.15;
  }

  .reserve-banner,
  .reserve-followup-card {
    justify-items: stretch;
    text-align: left;
    overflow: visible;
  }

  .reserve-banner > *,
  .reserve-followup-card > *,
  .pricing-card > * {
    min-width: 0;
  }

  .reserve-banner .kicker,
  .reserve-followup-card .kicker {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .reserve-banner .body-copy,
  .reserve-followup-card .body-copy,
  .reserve-followup-note {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .reserve-banner-actions,
  .reserve-followup-actions,
  .location-actions {
    width: 100%;
    justify-items: stretch;
  }

  .reserve-banner .button-primary-hero,
  .reserve-followup-actions .button-primary {
    min-width: 0;
    max-width: 100%;
    min-height: 46px;
    padding-inline: 1rem;
    white-space: normal;
    line-height: 1.2;
    text-align: center;
  }

  .reserve-banner .reserve-summary-line,
  .reserve-followup-summary,
  .reserve-followup-note,
  .ai-built-note,
  .ai-built-copy .body-copy {
    max-width: none;
    overflow-wrap: anywhere;
  }

  .slider-arrow {
    display: none;
  }
}

@media (max-width: 420px) {
  .header-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand {
    font-size: 1.05rem;
  }

  .button,
  .nav a,
  .footer-inner,
  .body-copy,
  .microcopy,
  .reserve-summary-line,
  .pricing-sub,
  .pricing-label,
  .ai-built-note,
  .partner-benefits li {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .button {
    padding: 10px 14px;
    font-size: 0.84rem;
  }

  .nav {
    gap: 0.5rem;
  }

  .hero-promo-banner {
    gap: 0.42rem;
    padding: 0.26rem 0.66rem 0.28rem 0.4rem;
  }

  .hero-promo-icon {
    width: 1.05rem;
    height: 1.05rem;
  }

  .hero-promo-icon::before {
    top: 0.16rem;
    height: 0.38rem;
  }

  .hero-promo-icon::after {
    bottom: 0.16rem;
  }

  .hero-promo-title {
    font-size: 0.68rem;
  }

  .hero-grid > *,
  .location-layout > *,
  .included-offer-layout > *,
  .instructor-layout > *,
  .partner-layout > *,
  .ai-built-shell > *,
  .reserve-stack > *,
  .footer-inner > * {
    min-width: 0;
  }

  .section-head h2,
  .reserve-banner h2,
  .reserve-followup-card h2,
  .ai-built-copy h2,
  .proof-head h2 {
    text-wrap: initial;
    overflow-wrap: anywhere;
  }

  .location-panel,
  .instructor-panel,
  .partner-panel,
  .partner-offer-card,
  .program-slot,
  .program-note,
  .faq-item,
  .quote-card,
  .outcome-card {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .reserve-banner,
  .reserve-followup-card {
    justify-items: stretch;
    text-align: left;
  }

  .reserve-banner-actions,
  .reserve-followup-actions,
  .location-actions {
    width: 100%;
    justify-items: stretch;
  }

  .reserve-banner .button-primary-hero,
  .reserve-followup-actions .button-primary,
  .nav .button-nav {
    min-width: 0;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .pricing-card {
    padding: 0.95rem 0.9rem 1rem;
  }

  .reserve-banner h2,
  .reserve-followup-card h2 {
    font-size: clamp(1.22rem, 8.6vw, 1.6rem);
  }

  .reserve-banner,
  .reserve-followup-card {
    padding: 1.1rem 0.9rem 1.15rem;
  }

  .reserve-banner .body-copy,
  .reserve-followup-card .body-copy,
  .reserve-followup-note {
    font-size: 0.88rem;
  }

  .pricing-active-row {
    width: 100%;
    gap: 0.35rem;
  }

  .pricing-main-current {
    font-size: clamp(2rem, 11vw, 2.6rem);
    line-height: 0.98;
  }

  .reserve-banner .reserve-summary-line,
  .reserve-followup-summary,
  .reserve-followup-note,
  .ai-built-note,
  .ai-built-copy .body-copy {
    max-width: none;
  }

  .footer-inner {
    gap: 0.55rem;
  }
}

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

  * {
    animation: none !important;
    transition: none !important;
  }
}

body.mockup-page {
  min-height: 100vh;
}

.mockup-showcase {
  gap: clamp(2.8rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
}

.mockup-intro {
  min-height: min(82vh, 720px);
  align-items: center;
}

.mockup-intro-inner {
  max-width: 860px;
}

.mockup-intro h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  max-width: 11ch;
  margin-bottom: 1rem;
}

.mockup-intro .lead {
  max-width: 56ch;
  margin-bottom: 1.35rem;
}

.mockup-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.mockup-meta span,
.mockup-chip,
.mockup-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.45rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(2, 48, 71, 0.12);
  background: rgba(255, 255, 255, 0.76);
  color: rgba(2, 48, 71, 0.82);
  box-shadow: 0 10px 24px rgba(2, 48, 71, 0.06);
  font-size: 0.82rem;
  font-weight: 600;
}

.mockup-group {
  align-items: flex-start;
}

.mockup-head {
  max-width: 760px;
}

.mockup-stack {
  display: grid;
  gap: 1.5rem;
}

.cta-mockup {
  position: relative;
  padding: clamp(1.25rem, 3vw, 1.7rem);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.62));
  box-shadow: 0 18px 36px rgba(2, 48, 71, 0.08);
  overflow: hidden;
}

.cta-mockup::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 15%, rgba(33, 158, 188, 0.12), transparent 32%),
    radial-gradient(circle at 86% 18%, rgba(255, 183, 3, 0.12), transparent 28%);
  pointer-events: none;
}

.cta-mockup > * {
  position: relative;
  z-index: 1;
}

.mockup-variant-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.mockup-variant-head p {
  color: rgba(2, 48, 71, 0.7);
  font-weight: 600;
}

.mockup-badge {
  background: rgba(2, 48, 71, 0.08);
  box-shadow: none;
}

.mockup-checklist {
  gap: 0.74rem;
}

.mockup-checklist li {
  font-size: 1.03rem;
  line-height: 1.6;
}

.mockup-divider {
  height: 1px;
  margin: 1rem 0;
  background: linear-gradient(
    90deg,
    rgba(2, 48, 71, 0),
    rgba(2, 48, 71, 0.14),
    rgba(2, 48, 71, 0)
  );
}

.mockup-price-block + .mockup-price-block {
  margin-top: 0.45rem;
}

.cta-mockup-offer-split .offer-split-grid,
.cta-mockup-reserve-asym .reserve-asym-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.85fr);
  gap: 1.35rem;
  align-items: stretch;
}

.offer-copy h3,
.reserve-center-shell h3,
.reserve-asym-copy h3,
.reserve-rail-copy h3 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  max-width: 12ch;
  margin-bottom: 1rem;
}

.offer-price-card,
.offer-action-panel,
.reserve-seat-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  background:
    linear-gradient(180deg, rgba(2, 48, 71, 0.94), rgba(10, 78, 105, 0.9));
  box-shadow: 0 18px 32px rgba(2, 48, 71, 0.18);
  color: #f6fbff;
}

.offer-price-card .pricing-label,
.offer-price-card .pricing-sub,
.offer-action-panel .pricing-label,
.offer-action-panel .pricing-sub,
.reserve-seat-card .microcopy,
.reserve-seat-card .reserve-seat-label {
  color: rgba(246, 251, 255, 0.8);
}

.offer-price-card .pricing-main,
.offer-action-panel .pricing-main {
  color: #ffffff;
}

.offer-price-card .button,
.offer-action-panel .button,
.reserve-seat-card .button {
  margin-top: 0.9rem;
}

.cta-mockup-offer-band .offer-band-shell {
  padding: clamp(1.45rem, 3vw, 2rem);
  border-radius: 24px;
  background:
    linear-gradient(140deg, rgba(255, 249, 240, 0.96), rgba(243, 249, 255, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.offer-band-copy {
  max-width: 700px;
  margin-bottom: 1.2rem;
}

.offer-band-copy h3 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  max-width: 11.5ch;
  margin-bottom: 0.9rem;
}

.offer-band-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.35rem;
}

.offer-band-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: end;
}

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

.offer-price-tile,
.offer-mini-card,
.reserve-fact-card {
  padding: 1rem 1.05rem 1.1rem;
  border-radius: 20px;
  border: 1px solid rgba(2, 48, 71, 0.1);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 24px rgba(2, 48, 71, 0.06);
}

.offer-price-tile .pricing-main,
.reserve-fact-card strong {
  display: block;
  margin-bottom: 0.2rem;
}

.offer-button-cluster {
  display: grid;
  justify-items: start;
}

.cta-mockup-offer-grid .offer-grid-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.offer-grid-lead {
  grid-column: span 2;
  padding: clamp(1.2rem, 3vw, 1.6rem);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 248, 235, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.92);
}

.offer-grid-lead h3 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  max-width: 10.5ch;
  margin-bottom: 0.85rem;
}

.offer-mini-card {
  display: grid;
  gap: 0.38rem;
}

.offer-mini-card strong {
  font-size: 1.06rem;
  letter-spacing: -0.02em;
}

.reserve-center-shell {
  display: grid;
  justify-items: center;
  gap: 1rem;
  padding: clamp(1.6rem, 4vw, 2.3rem);
  text-align: center;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.94);
}

.reserve-center-shell h3 {
  max-width: 11ch;
  margin-bottom: 0;
}

.reserve-center-shell .body-copy {
  max-width: 40ch;
  margin-bottom: 0;
}

.reserve-meta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.reserve-actions-inline {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
}

.reserve-asym-copy {
  display: grid;
  align-content: center;
}

.reserve-fact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.4rem;
}

.reserve-fact-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(2, 48, 71, 0.12);
  font-size: 0.84rem;
  font-weight: 600;
}

.reserve-seat-card {
  align-items: center;
  text-align: center;
}

.reserve-seat-number {
  font-size: clamp(3.6rem, 9vw, 5.8rem);
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.reserve-seat-label {
  margin-top: 0.35rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.cta-mockup-reserve-rail .reserve-rail-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr) auto;
  gap: 1rem;
  align-items: center;
  padding: clamp(1.25rem, 3vw, 1.6rem);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(240, 248, 255, 0.84));
  border: 1px solid rgba(255, 255, 255, 0.95);
}

.reserve-rail-copy h3 {
  max-width: 10ch;
  margin-bottom: 0;
}

.reserve-rail-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.reserve-fact-card span {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(2, 48, 71, 0.62);
}

.reserve-fact-card strong {
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.reserve-rail-cta {
  display: grid;
  justify-items: start;
}

@media (max-width: 1120px) {
  .cta-mockup-offer-split .offer-split-grid,
  .cta-mockup-reserve-asym .reserve-asym-grid,
  .cta-mockup-reserve-rail .reserve-rail-shell {
    grid-template-columns: 1fr;
  }

  .cta-mockup-offer-grid .offer-grid-panels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-grid-lead {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .offer-band-cta,
  .reserve-rail-facts {
    grid-template-columns: 1fr;
  }

  .offer-price-inline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .mockup-intro {
    min-height: auto;
    padding-top: 4rem;
  }

  .mockup-intro h1,
  .offer-copy h3,
  .offer-band-copy h3,
  .offer-grid-lead h3,
  .reserve-center-shell h3,
  .reserve-asym-copy h3,
  .reserve-rail-copy h3 {
    max-width: none;
  }

  .cta-mockup {
    border-radius: 22px;
  }

  .cta-mockup-offer-grid .offer-grid-panels {
    grid-template-columns: 1fr;
  }

  .reserve-rail-cta,
  .offer-button-cluster {
    justify-items: stretch;
  }
}
