:root {
  /* Brand Colors */
  --pink-flash: #ff3ba6;
  --pink-soft: #ffd9ef;
  --pink-deep: #d4167a;
  --midnight: #1d0024;
  --ink: #2e0b30;
  --text-base: #42203e;
  --bg-soft: #fff7fb;

  /* Layout */
  --max-width: 1080px;

  /* 8pt Spacing Scale (Design System) */
  --space-xs: 0.5rem;    /* 8px */
  --space-sm: 1rem;      /* 16px */
  --space-md: 1.5rem;    /* 24px */
  --space-lg: 2rem;      /* 32px */
  --space-xl: 2.5rem;    /* 40px */
  --space-2xl: 3rem;     /* 48px */
  --space-3xl: 4rem;     /* 64px */
  --space-4xl: 5rem;     /* 80px */

  /* Border Radius Scale */
  --radius-sm: 12px;     /* Small elements, tight curves */
  --radius-md: 16px;     /* Buttons, form inputs, badges */
  --radius-lg: 20px;     /* Medium cards, containers */
  --radius-xl: 24px;     /* Large cards */
  --radius-2xl: 28px;    /* Featured containers, packages */
  --radius-full: 999px;  /* Pills, circular elements */
}

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

body {
  margin: 0;
  font-family: "Spline Sans", "Poppins", "Segoe UI", sans-serif;
  color: var(--text-base);
  background-color: var(--bg-soft);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* ==========================================================================
   VIEWPORT OVERFLOW PREVENTION RULES
   Added: 2025-10-17
   Purpose: Prevent any element from exceeding viewport width and causing
            horizontal scroll on mobile devices
   Keyword Trigger: "overflow" should trigger css-code-reviewer agent
   ========================================================================== */

html {
  overflow-x: hidden;
  /* Prevent horizontal scroll at root level */
}

body {
  overflow-x: hidden;
  /* Prevent horizontal scroll on body */
  max-width: 100vw;
  /* Constrain body to viewport width */
}

/* Universal Text Overflow Protection */
h1, h2, h3, h4, h5, h6, p, span, div, a, li {
  overflow-wrap: break-word;
  /* Break long words if necessary */
  word-wrap: break-word;
  /* Legacy browser support */
  max-width: 100%;
  /* Never exceed parent container */
}

/* Prevent Images/Media from Overflowing */
img, video, iframe {
  max-width: 100%;
  /* Never exceed container width */
  height: auto;
  /* Maintain aspect ratio */
}

/* Container Safety Net */
.hero-content,
.section,
main {
  max-width: 100%;
  /* Ensure containers never exceed viewport */
  overflow-x: hidden;
  /* Clip any child overflow */
}

.container {
  max-width: 100vw;
  /* Ensure container never exceeds viewport */
  box-sizing: border-box;
  /* Include padding in width calculation */
}

/* Flex Container Overflow Protection */
.header-inner,
.addon-header,
.goal-list li {
  flex-wrap: wrap;
  /* Allow items to wrap on narrow viewports */
  max-width: 100%;
  /* Constrain to parent width */
}

/* Hero Brand Mark Overflow Protection */
.hero-brand-mark {
  max-width: 100%;
  /* Prevent ultra-wide letter-spacing from overflowing */
  overflow: hidden;
  /* Clip any overflow */
}

/* Card Grid and Addon Grid Viewport Protection */
.card-grid,
.addon-grid {
  max-width: 100vw;
  /* Never exceed viewport width */
}

/* ==========================================================================
   END VIEWPORT OVERFLOW PREVENTION
   ========================================================================== */

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

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1.25rem;
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(29, 0, 36, 0.18);
}

.container {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 12;
  background: linear-gradient(135deg, rgba(29, 0, 36, 0.95) 0%, rgba(70, 0, 90, 0.9) 50%, rgba(29, 0, 36, 0.95) 100%);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(255, 59, 166, 0.3);
  border-bottom: 1px solid rgba(255, 59, 166, 0.2);
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

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

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 28px rgba(29, 0, 36, 0.16);
}

.site-header.scrolled .header-inner {
  padding: 0.75rem 0;
}

.site-header.scrolled .brand {
  color: var(--ink);
}

.site-header.scrolled:not(.nav-open) .nav-links a {
  color: var(--ink);
}

.site-header.scrolled:not(.nav-open) .nav-links a::after {
  background: linear-gradient(135deg, var(--pink-flash), var(--pink-deep));
}

.site-header.scrolled:not(.nav-open) .nav-links a:hover,
.site-header.scrolled:not(.nav-open) .nav-links a:focus-visible {
  color: var(--pink-deep);
}

.site-header.scrolled .menu-toggle {
  color: var(--ink);
  border-color: rgba(46, 11, 48, 0.16);
  background: rgba(255, 255, 255, 0.8);
}

.site-header.scrolled .header-cta {
  border-color: rgba(255, 59, 166, 0.3);
  color: var(--pink-deep);
  background: rgba(255, 59, 166, 0.08);
}

.site-header.scrolled .header-cta:hover,
.site-header.scrolled .header-cta:focus-visible {
  background: rgba(255, 59, 166, 0.16);
  color: var(--pink-deep);
}

.brand {
  font-family: "Syne", "Spline Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ff3ba6, #ffd9ef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

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

.brand-logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.brand-logo:hover {
  opacity: 0.8;
}

.brand-text {
  display: none;
}

@media (max-width: 767px) {
  .brand-logo img {
    display: block;
    width: 60px;
    height: 60px;
  }

  .brand-cta-mobile {
    display: none;
  }
}

.brand-cta-mobile {
  display: none;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3rem;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.3s ease;
  margin-left: auto;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: scale(1.1);
}

.menu-toggle .menu-line {
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}

.nav-links {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 5rem 1.5rem 3rem;
  background: rgb(0, 0, 0);
  backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.35s ease;
  z-index: 13;
}

.nav-links a {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  padding: 0 1.5rem;
  min-height: 56px;
  width: min(420px, 100%);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(40, 40, 40, 0.95);
  transition: background 0.3s ease, color 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
  background: rgba(255, 83, 193, 0.5);
  border-color: rgba(255, 83, 193, 0.8);
}

.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--pink-flash), var(--pink-deep));
  color: #fff;
  box-shadow: 0 22px 42px rgba(255, 59, 166, 0.4);
}

.nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
  font-weight: 300;
  line-height: 1;
}

.nav-close:hover,
.nav-close:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.nav-close:focus-visible {
  outline: 3px solid var(--pink-flash);
  outline-offset: 2px;
}

.site-header.nav-open .nav-links {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.site-header.nav-open .menu-toggle {
  color: #fff;
}

.site-header.nav-open .menu-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 26px;
}

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

.site-header.nav-open .menu-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 26px;
}

.header-cta {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 0 2rem;
  background: #08010f;
  color: #fff;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at center, rgba(8, 1, 15, 0.9) 0%, rgba(8, 1, 15, 0.75) 40%, rgba(8, 1, 15, 0.5) 70%, rgba(8, 1, 15, 0.2) 90%, transparent 100%);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-glow {
  position: absolute;
  inset: -30% -20% auto;
  height: 70vh;
  background: radial-gradient(45% 55% at 50% 50%, rgba(255, 83, 193, 0.6), transparent 65%);
  filter: blur(80px);
  opacity: 0.75;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: center;
  align-items: center;
  padding: 0 1rem;
}

.hero-brand-mark {
  margin: 0;
  max-width: 90vw;
  font-family: "Syne", "Spline Sans", sans-serif;
  font-size: clamp(1.8rem, 7vw, 5rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: transparent;
  background: linear-gradient(120deg, rgba(255, 217, 239, 0.95), rgba(255, 112, 191, 0.85));
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0.94;
}

.hero-tagline {
  margin: 0;
  font-size: clamp(1rem, 3.8vw, 2.1rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.92);
  text-transform: uppercase;
}

.hero-subheadline {
  margin: 0;
  max-width: 34rem;
  font-size: clamp(0.95rem, 2.6vw, 1.5rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.86);
}

.hero-description {
  margin: 0;
  max-width: 30rem;
  font-size: clamp(0.9rem, 2.4vw, 1.3rem);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

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

.hero-brand-mark,
.hero-tagline,
.hero-subheadline,
.hero-description,
.hero-book,
.hero-ghost {
  opacity: 0;
  transform: translateY(24px);
  animation: heroFade 0.8s ease forwards;
}

.hero-brand-mark {
  animation-delay: 0s;
}

.hero-tagline {
  animation-delay: 0.5s;
}

.hero-subheadline {
  animation-delay: 1s;
}

.hero-description {
  animation-delay: 1.5s;
}

.hero-book {
  animation-delay: 2s;
}

.hero-ghost {
  animation-delay: 2.5s;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.85rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink-flash), var(--pink-deep));
  color: #fff;
  box-shadow: 0 22px 40px rgba(255, 59, 166, 0.35);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 28px 48px rgba(255, 59, 166, 0.45);
}

.hero-book {
  padding-inline: clamp(1.8rem, 6vw, 2.6rem);
  font-size: clamp(1rem, 2.8vw, 1.25rem);
}

.hero-ghost {
  padding-inline: clamp(1.6rem, 5vw, 2.3rem);
  font-size: clamp(0.95rem, 2.6vw, 1.15rem);
}

.btn-secondary {
  background: rgba(255, 217, 239, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 217, 239, 0.5);
  backdrop-filter: blur(6px);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 217, 239, 0.25);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.85);
  background: rgba(8, 1, 15, 0.3);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.btn-outline {
  border: 2px solid rgba(255, 217, 239, 0.8);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.8rem 1.6rem;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: rgba(255, 217, 239, 0.2);
  transform: translateY(-2px);
}

.mobile-sticky-cta {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--pink-flash), var(--pink-deep));
  color: #fff;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 28px 48px rgba(255, 59, 166, 0.35);
  z-index: 11;
  font-size: 1rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

main {
  padding: var(--space-3xl) 0 var(--space-4xl);
}

.section {
  padding: var(--space-3xl) 0;
}

.section:nth-of-type(even) {
  background: rgba(255, 217, 239, 0.18);
  backdrop-filter: blur(4px);
}

.section-header {
  max-width: 680px;
  margin-bottom: var(--space-xl);
}

.section-header h2 {
  margin: 0 0 0.75rem;
  font-family: "Syne", "Spline Sans", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  color: var(--ink);
}

.section-header p {
  margin: 0;
  color: rgba(46, 11, 48, 0.72);
  font-size: 1.05rem;
}

.section-story {
  background: linear-gradient(160deg, rgba(255, 247, 251, 0.9), rgba(255, 217, 239, 0.4));
}

.story-layout {
  display: grid;
  gap: var(--space-md);
}

.story-card,
.goal-card {
  background: #fff;
  border-radius: var(--radius-2xl);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: 0 26px 44px rgba(73, 15, 70, 0.1);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.story-card h2 {
  margin: 0;
  font-family: "Syne", "Spline Sans", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--ink);
}

.story-card p {
  margin: 0;
  color: rgba(46, 11, 48, 0.75);
  font-size: 1rem;
}

.story-highlight {
  margin-top: 0.25rem;
  padding: 1.25rem 1.5rem;
  border-radius: 20px;
  background: rgba(255, 61, 166, 0.12);
  color: var(--ink);
  font-weight: 500;
}

.story-highlight strong {
  color: var(--pink-deep);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.goal-card {
  background: linear-gradient(160deg, rgba(255, 61, 166, 0.2), rgba(255, 247, 251, 0.92));
  border: 1px solid rgba(255, 61, 166, 0.2);
}

.goal-card h3 {
  margin: 0 0 1rem;
  font-family: "Syne", "Spline Sans", sans-serif;
  font-size: 1.4rem;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

.goal-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.05rem;
  color: rgba(46, 11, 48, 0.78);
}

.goal-label {
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.goal-value {
  font-weight: 700;
  color: var(--pink-deep);
}

.goal-footer {
  margin: 1.5rem 0 0;
  font-size: 0.95rem;
  color: rgba(46, 11, 48, 0.75);
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  overflow-x: visible;
  padding: 0;
  margin: 0;
}

.card-grid::after {
  display: none;
}

.card-grid::-webkit-scrollbar {
  display: none;
}

.card {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 40px rgba(73, 15, 70, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 52px rgba(73, 15, 70, 0.15);
}

.card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition: transform 0.55s ease;
}

.card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 1, 15, 0.05) 10%, rgba(8, 1, 15, 0.65) 100%);
  z-index: 1;
  transition: background 0.45s ease;
}

.card:hover .card-image {
  transform: scale(1.1);
}

.card:hover .card-image::after {
  background: linear-gradient(180deg, rgba(8, 1, 15, 0.25) 0%, rgba(8, 1, 15, 0.75) 100%);
}

.card-image-unleashed {
  background-image: linear-gradient(120deg, rgba(255, 61, 166, 0.25), rgba(255, 217, 239, 0.4)),
    url("uploads/unleashed_1760587119_68f06d6f7d4f9.jpg");
}

.card-image-turbo {
  background-image: linear-gradient(120deg, rgba(255, 61, 166, 0.25), rgba(255, 217, 239, 0.4)),
    url("uploads/turbokick_1760587098_68f06d5a1ec61.jpg");
}

.card-image-peach {
  background-image: linear-gradient(120deg, rgba(255, 61, 166, 0.25), rgba(255, 217, 239, 0.4)),
    url("uploads/the_peach_project_1760587189_68f06db56e54a.jpg");
}

.card-image-total {
  background-image: linear-gradient(120deg, rgba(255, 61, 166, 0.25), rgba(255, 217, 239, 0.4)),
    url("uploads/total_body_burn_1760587173_68f06da543285.jpg");
}

.card-pill {
  position: absolute;
  top: 1rem;
  left: 1rem;
  margin: 0;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink-deep);
  background: rgba(255, 247, 251, 0.78);
}

.card-body {
  padding: 1.5rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}

.card h3 {
  margin: 0;
  font-family: "Syne", "Spline Sans", sans-serif;
  font-size: 1.6rem;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.card p {
  margin: 0;
  color: rgba(46, 11, 48, 0.7);
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--pink-deep);
  transition: transform 0.3s ease, color 0.3s ease;
}

.card-cta:hover,
.card-cta:focus-visible {
  color: var(--pink-flash);
  transform: translateX(4px);
}

.packages-grid {
  display: grid;
  gap: 1.5rem;
  grid-auto-rows: 1fr;
  max-width: 100%;
}

.package-card {
  max-width: 100%;
}

.package-note {
  margin: 1.5rem 0 0;
  font-size: 0.95rem;
  color: rgba(46, 11, 48, 0.65);
  text-align: center;
}

.package-card {
  background: linear-gradient(145deg, rgba(255, 217, 239, 0.55), rgba(255, 59, 166, 0.16));
  border-radius: var(--radius-2xl);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: 0 24px 40px rgba(73, 15, 70, 0.1);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.package-card.featured {
  background: linear-gradient(160deg, rgba(255, 59, 166, 0.3), rgba(255, 217, 239, 0.75));
  border: 2px solid rgba(255, 59, 166, 0.45);
  transform: scale(1.05);
  box-shadow: 0 34px 52px rgba(73, 15, 70, 0.15);
  z-index: 1;
}

.package-pill {
  align-self: flex-start;
  margin: 0;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink-deep);
  background: rgba(255, 61, 166, 0.16);
}

.package-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(8, 1, 15, 0.78);
  color: #fff;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.package-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  transition: transform 0.55s ease;
}

.package-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 1, 15, 0.05) 5%, rgba(8, 1, 15, 0.6) 100%);
  z-index: 1;
  transition: background 0.45s ease;
}

.package-card:hover .package-image {
  transform: scale(1.08);
}

.package-card:hover .package-image::after {
  background: linear-gradient(180deg, rgba(8, 1, 15, 0.25) 0%, rgba(8, 1, 15, 0.75) 100%);
}

.package-image-first {
  background-image: linear-gradient(140deg, rgba(255, 61, 166, 0.2), rgba(255, 217, 239, 0.4)),
    url("uploads/first_class_1760587143_68f06d87dd1d5.jpg");
}

.package-image-pack {
  background-image: linear-gradient(140deg, rgba(255, 61, 166, 0.2), rgba(255, 217, 239, 0.4)),
    url("uploads/4_class_pass_1760587157_68f06d95d43d8.jpg");
}

.package-image-unlimited {
  background-image: linear-gradient(140deg, rgba(255, 61, 166, 0.2), rgba(255, 217, 239, 0.4)),
    url("uploads/founding_unlimited_1760587208_68f06dc800752.jpg");
}

.package-image-elite {
  background-image: linear-gradient(140deg, rgba(255, 61, 166, 0.25), rgba(255, 247, 251, 0.6)),
    url("uploads/first_class_1760587143_68f06d87dd1d5.jpg");
}

.package-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.package-card h3 {
  margin: 0;
  font-family: "Syne", "Spline Sans", sans-serif;
  font-size: 1.6rem;
  color: var(--ink);
}

.package-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--pink-deep);
  font-family: "Syne", "Spline Sans", sans-serif;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  max-width: 100%;
  overflow-wrap: break-word;
}

.package-card .price span {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(46, 11, 48, 0.7);
  margin-left: 0.25rem;
}

.price-retail {
  font-size: 1.5rem !important;
  font-weight: 400 !important;
  color: rgba(46, 11, 48, 0.4) !important;
  text-decoration: line-through;
  margin-right: 0.5rem !important;
  margin-left: 0 !important;
}

.package-card .price-large {
  font-size: clamp(2.4rem, 4vw, 3rem);
  color: var(--pink-deep);
}

.package-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  color: rgba(46, 11, 48, 0.78);
}

.package-benefits li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.98rem;
}

.package-benefits li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--pink-deep);
  font-size: 1rem;
}

/* Availability Badge - High Impact, Psychological Urgency */
.availability-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.3);
  z-index: 5;
  animation: pulse-glow 2s ease-in-out infinite;
}

.available-count {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.available-label {
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 0.95;
  line-height: 1.2;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 12px 32px rgba(34, 197, 94, 0.6);
    transform: scale(1.02);
  }
}

.price-regular {
  text-decoration: line-through;
  color: rgba(46, 11, 48, 0.5);
  font-size: 0.85em;
  margin-right: 0.5rem;
}

.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  max-width: 100%;
}

.price-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255, 247, 251, 0.8);
  color: var(--pink-deep);
}

.package-card .btn {
  align-self: stretch;
  justify-content: center;
  gap: 0.4rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.package-card .btn .btn-icon {
  margin-left: 0.6rem;
  font-size: 1.1em;
}

.package-card:hover .btn {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(255, 59, 166, 0.3);
}

.package-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.package-list {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.45rem;
  color: rgba(46, 11, 48, 0.8);
}

.addon-grid {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  margin: 0 -1.25rem;
  padding: 0.5rem 1.25rem 1rem 0;
  scroll-snap-type: x mandatory;
}

.addon-grid::after {
  content: "";
  flex: 0 0 1rem;
}

.addon-grid::-webkit-scrollbar {
  display: none;
}

.addon-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: 0 20px 36px rgba(73, 15, 70, 0.08);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  min-width: 78%;
  scroll-snap-align: start;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.addon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 42px rgba(73, 15, 70, 0.12);
}

.addon-card.active {
  box-shadow: 0 28px 46px rgba(73, 15, 70, 0.15);
}

.addon-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.addon-card h3 {
  margin: 0;
  font-family: "Syne", "Spline Sans", sans-serif;
  font-size: 1.5rem;
  color: var(--ink);
}

.addon-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pink-deep);
}

.addon-card p {
  margin: 0;
  color: rgba(46, 11, 48, 0.75);
}

.addon-btn {
  align-self: stretch;
  justify-content: center;
  gap: 0.35rem;
  background: linear-gradient(135deg, var(--pink-flash), var(--pink-deep));
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  font-family: inherit;
  appearance: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.addon-btn-label {
  transition: opacity 0.25s ease;
}

.addon-btn-check {
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.addon-card.active .addon-btn-check {
  opacity: 1;
  transform: scale(1);
}

.addon-card.active .addon-btn-label {
  opacity: 0;
}

.addon-btn:hover,
.addon-btn:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--pink-deep), var(--pink-flash));
}

.addon-card.active .addon-btn {
  background: linear-gradient(135deg, rgba(255, 61, 166, 0.2), rgba(255, 99, 183, 0.35));
  color: var(--pink-deep);
}

.addon-card.just-added .addon-btn {
  animation: addonPulse 0.4s ease;
}

.addon-quantity {
  display: none;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.75rem;
}

.addon-card.active .addon-quantity {
  display: inline-flex;
}

.quantity-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 61, 166, 0.35);
  background: rgba(255, 61, 166, 0.12);
  color: var(--pink-deep);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.quantity-btn:hover,
.quantity-btn:focus-visible {
  background: rgba(255, 61, 166, 0.22);
}

.quantity-value {
  font-weight: 600;
  font-size: 1.05rem;
  min-width: 1.5rem;
  text-align: center;
  color: var(--ink);
}

.addon-totals {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.75rem;
  padding: 1.25rem 1.5rem;
  border-radius: 20px;
  background: rgba(255, 61, 166, 0.08);
}

.addon-total-label {
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--pink-deep);
}

.addon-total-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pink-deep);
}

.reserve-form {
  display: grid;
  gap: var(--space-md);
  background: #fff;
  border-radius: var(--radius-2xl);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: 0 30px 46px rgba(73, 15, 70, 0.1);
}

.reserve-layout {
  display: grid;
  gap: 2rem;
}

.reserve-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.reserve-card h2 {
  margin: 0;
  font-family: "Syne", "Spline Sans", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: var(--ink);
}

.reserve-card p {
  margin: 0;
  color: rgba(46, 11, 48, 0.75);
}

.form-disclaimer {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(46, 11, 48, 0.6);
}

.reserve-note {
  background: linear-gradient(160deg, rgba(255, 61, 166, 0.14), rgba(255, 247, 251, 0.85));
  border-radius: var(--radius-xl);
  padding: var(--space-lg) 1.75rem;
  margin-top: 0;
  box-shadow: 0 24px 38px rgba(73, 15, 70, 0.08);
  color: rgba(46, 11, 48, 0.78);
}

.reserve-note h3 {
  margin: 0 0 0.75rem;
  font-family: "Syne", "Spline Sans", sans-serif;
  font-size: 1.4rem;
  color: var(--ink);
}

.section-reserve {
  padding-top: var(--space-4xl);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.form-field label {
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.upsell-hint {
  margin-bottom: 0.75rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, rgba(255, 217, 239, 0.4), rgba(255, 59, 166, 0.12));
  border: 2px solid rgba(255, 59, 166, 0.3);
  border-radius: 16px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--pink-deep);
  line-height: 1.5;
  animation: slideIn 0.4s ease;
}

.upsell-hint strong {
  color: var(--pink-flash);
  font-weight: 700;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-field input,
.form-field select,
.form-field textarea {
  border: 1px solid rgba(255, 59, 166, 0.25);
  border-radius: var(--radius-md);
  padding: 0.85rem var(--space-sm);
  font-size: 1rem;
  font-family: inherit;
  color: var(--text-base);
  background: rgba(255, 247, 251, 0.9);
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--pink-flash);
  box-shadow: 0 0 0 4px rgba(255, 59, 166, 0.18);
}

.reserve-form.is-processing {
  opacity: 0.9;
}

.reserve-form.is-processing .reserve-submit {
  cursor: progress;
}

.form-status {
  display: none;
  margin-top: 1.25rem;
  padding: 1.1rem 1.35rem;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-info {
  background: rgba(255, 217, 239, 0.35);
  color: var(--ink);
  border: 1px solid rgba(255, 59, 166, 0.22);
}

.form-status.is-success {
  background: rgba(46, 204, 113, 0.12);
  color: #1f5130;
  border: 1px solid rgba(46, 204, 113, 0.25);
}

.form-status.is-error {
  background: rgba(208, 16, 76, 0.08);
  color: #5d0f2a;
  border: 1px solid rgba(208, 16, 76, 0.25);
}

/* Thank You Modal */
.thank-you-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.thank-you-modal.is-visible {
  opacity: 1;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 1, 15, 0.92);
  backdrop-filter: blur(8px);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(145deg, #ffffff, rgba(255, 217, 239, 0.15));
  border-radius: 32px;
  padding: 2.5rem;
  max-width: 540px;
  width: calc(100% - 2rem);
  box-shadow: 0 24px 80px rgba(255, 61, 166, 0.35), 0 8px 32px rgba(8, 1, 15, 0.25);
  text-align: center;
  border: 2px solid rgba(255, 61, 166, 0.3);
}

.modal-content h2 {
  margin: 0 0 1rem 0;
  font-family: "Syne", "Spline Sans", sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  color: var(--pink-deep);
  letter-spacing: -0.02em;
}

.modal-gratitude {
  font-size: 1.15rem;
  line-height: 1.65;
  color: rgba(46, 11, 48, 0.85);
  margin: 0 0 2rem 0;
}

.modal-summary {
  background: rgba(255, 217, 239, 0.3);
  border: 1px solid rgba(255, 61, 166, 0.25);
  border-radius: 20px;
  padding: 1.5rem;
  margin: 0 0 2rem 0;
}

.modal-summary h3 {
  margin: 0 0 0.75rem 0;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(46, 11, 48, 0.65);
  font-weight: 600;
}

.modal-summary p {
  margin: 0.4rem 0;
  font-size: 1.05rem;
  color: var(--ink);
}

.modal-amount {
  font-size: 2rem !important;
  font-weight: 700 !important;
  color: var(--pink-deep) !important;
  font-family: "Syne", "Spline Sans", sans-serif;
  margin-top: 0.5rem !important;
}

.modal-next-steps {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(46, 11, 48, 0.75);
  margin: 0 0 2rem 0;
}

.modal-close {
  width: 100%;
  font-size: 1.15rem;
  padding: 1.1rem 2rem;
}

@media (max-width: 520px) {
  .modal-content {
    padding: 2rem 1.5rem;
    border-radius: 24px;
  }

  .modal-gratitude {
    font-size: 1.05rem;
  }

  .modal-amount {
    font-size: 1.7rem !important;
  }
}

.form-field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(46, 11, 48, 0.6) 50%),
    linear-gradient(135deg, rgba(46, 11, 48, 0.6) 50%, transparent 50%);
  background-position: calc(100% - 22px) calc(50% + 3px), calc(100% - 16px) calc(50% + 3px);
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

.checkbox-group {
  display: grid;
  border: 1px solid rgba(255, 59, 166, 0.2);
  border-radius: 18px;
  padding: 1.25rem 1.5rem;
  gap: 0.75rem;
  background: rgba(255, 247, 251, 0.6);
}

.checkbox-group legend {
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  padding: 0 0.25rem;
  margin-bottom: 0.75rem;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.98rem;
  color: rgba(46, 11, 48, 0.8);
}

.form-field--wide {
  grid-column: span 1;
}

.submit-btn {
  justify-self: flex-start;
}

.faq-grid {
  display: grid;
  gap: 1.5rem;
}

.faq-item {
  background: linear-gradient(135deg, rgba(255, 247, 251, 0.95), rgba(255, 255, 255, 0.98));
  border-radius: 24px;
  box-shadow: 0 8px 20px rgba(73, 15, 70, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 59, 166, 0.15);
}

.faq-item:hover {
  box-shadow: 0 12px 28px rgba(73, 15, 70, 0.12);
  border-color: rgba(255, 59, 166, 0.25);
}

.faq-item.active {
  box-shadow: 0 16px 36px rgba(73, 15, 70, 0.15);
  background: linear-gradient(135deg, rgba(255, 217, 239, 0.15), rgba(255, 247, 251, 0.98));
}

.faq-item.active .faq-toggle {
  background: rgba(255, 61, 166, 0.12);
  color: var(--pink-deep);
}

.faq-item.active .faq-question {
  color: var(--pink-deep);
  font-weight: 700;
}

.faq-toggle {
  width: 100%;
  border: none;
  background: none;
  padding: 1.75rem 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  font-family: "Syne", "Spline Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1.6;
}

.faq-toggle:focus-visible {
  outline: 3px solid var(--pink-flash);
  outline-offset: 2px;
}

.faq-question {
  text-align: left;
}

.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: rgba(46, 11, 48, 0.45);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-icon::before {
  width: 100%;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 100%;
}

.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
  background: var(--pink-deep);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 2rem;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}

.faq-content[hidden] {
  display: block;
  max-height: 0;
  opacity: 0;
  padding: 0 2rem;
}

.faq-item.active .faq-content {
  max-height: 500px;
  opacity: 1;
  padding: 0 2rem 1.75rem;
}

.faq-item.active .faq-content:not([hidden]) {
  max-height: 500px;
  opacity: 1;
}

.faq-content p {
  margin: 0;
  color: rgba(46, 11, 48, 0.75);
  font-size: 1rem;
  line-height: 1.6;
}

.site-footer {
  background: linear-gradient(145deg, #2d0533, #120014 85%);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-branding {
  gap: 1.25rem;
}

.footer-logo {
  font-family: "Syne", "Spline Sans", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-tagline {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-col h4 {
  margin: 0;
  font-family: "Syne", "Spline Sans", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

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

.footer-list a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-social-list span {
  margin-right: 0.5rem;
}

.footer-contact {
  margin: 0.5rem 0 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
  font-weight: 500;
}

.footer-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-form {
  display: grid;
  gap: 0.75rem;
}

.footer-form input {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

.footer-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.footer-form input:focus {
  outline: 2px solid rgba(255, 59, 166, 0.6);
  outline-offset: 2px;
}

.footer-submit {
  width: 100%;
}

.footer-bottom {
  margin-top: 2.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.95rem;
}

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

.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.footer-bottom-links a:hover,
.footer-bottom-links a:focus-visible,
.footer-social-list a:hover,
.footer-social-list a:focus-visible,
.footer-list a:hover,
.footer-list a:focus-visible {
  color: var(--pink-soft);
}

.footer-bottom p {
  margin: 0;
}

/* ==========================================================================
   FAQ MOBILE SPACING FIX (Better text breathing room)
   Added: 2025-10-17
   Purpose: Improve FAQ box padding and text spacing on mobile
   ========================================================================== */

@media (max-width: 600px) {
  .faq-toggle {
    padding: 1.5rem 1.5rem;
    /* Reduced horizontal padding to prevent text crowding */
    font-size: 1.05rem;
    /* Slightly smaller font for better fit */
    gap: 1rem;
    /* Reduce gap for better mobile fit */
    line-height: 1.5;
    /* Improved line spacing */
  }

  .faq-item.active .faq-content {
    padding: 0 1.5rem 1.5rem;
    /* Reduced horizontal padding for better text breathing */
  }

  .faq-content {
    padding: 0 1.5rem;
    /* Reduced horizontal padding for better text breathing */
  }

  .faq-content p {
    font-size: 0.95rem;
    /* Slightly smaller text on mobile */
    line-height: 1.7;
    /* Increased line height for better readability */
  }
}

/* ==========================================================================
   MOBILE FORM FIX (344px minimum viewport)
   Added: 2025-10-17
   Purpose: Fix payment form overflow on small mobile screens
   ========================================================================== */

@media (max-width: 500px) {
  .section-reserve .container {
    padding: 0 1.5rem;
    /* Increased from 16px to 24px for better centering on mobile */
  }

  .reserve-layout {
    gap: var(--space-md);
    /* Reduce from 32px to 24px */
  }

  .reserve-form {
    padding: var(--space-sm) var(--space-md);
    /* Reduce from 40px/32px to 16px/24px on mobile */
    gap: var(--space-sm);
    /* Reduce gap from 24px to 16px */
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    padding: 0.75rem 0.5rem;
    /* Reduce horizontal padding from 16px to 8px */
    font-size: 0.95rem;
    /* Reduce from 1rem for better fit */
  }

  .form-field label {
    font-size: 0.9rem;
    /* Reduce label size slightly */
  }

  .upsell-hint {
    padding: 0.75rem 1rem;
    /* Reduce from 16px/20px */
    font-size: 0.9rem;
    /* Reduce from 0.95rem */
  }

  .reserve-note {
    padding: var(--space-sm) var(--space-md);
    /* Reduce from 32px/48px */
  }

  .reserve-note h3 {
    font-size: 1.1rem;
    /* Reduce from 1.4rem */
  }

  .checkbox-group {
    padding: var(--space-md) var(--space-sm);
    /* Reduce from 20px/24px to 24px/16px */
  }
}

/* ==========================================================================
   END MOBILE FORM FIX
   ========================================================================== */

/* Ultra-small screens (344px - 360px) */
@media (max-width: 360px) {
  .section-reserve .container {
    padding: 0 1.25rem;
    /* Increased padding for better centering: 1.25rem × 2 = 20px each side */
  }

  .reserve-form {
    padding: var(--space-sm) 1.25rem;
    /* 16px vertical, 20px horizontal */
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    padding: 0.625rem 0.5rem;
    /* Slightly reduced padding */
    font-size: 0.9rem;
  }

  .reserve-card h2 {
    font-size: 1.6rem;
    /* Smaller heading on ultra-small screens */
  }

  .reserve-note {
    padding: 1rem 1.25rem;
    /* Tighter padding for sidebar */
  }
}

@media (min-width: 768px) {
  .site-header {
    background: rgba(29, 0, 36, 0.86);
  }

  .header-inner {
    padding: 1.3rem 0;
  }

  .brand {
    font-size: 1.6rem;
  }

  .menu-toggle {
    display: none;
  }

  .nav-close {
    display: none;
  }

  .nav-links {
    position: static;
    opacity: 1 !important;
    pointer-events: auto !important;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    visibility: visible !important;
  }

  .nav-links a {
    color: rgba(255, 217, 239, 0.85);
    background: transparent;
    padding: 0;
    min-height: auto;
    width: auto;
    border-radius: 0;
    position: relative;
  }

  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, var(--pink-flash), var(--pink-deep));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }

  .nav-links a:hover::after,
  .nav-links a:focus-visible::after {
    transform: scaleX(1);
  }

  .nav-links .nav-cta {
    display: none;
  }

  .header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero {
    padding-top: 9rem;
  }

  .hero-content {
    max-width: 36rem;
    margin: 0 auto;
  }

  .hero-brand-mark {
    letter-spacing: 0.12em;
  }

  .card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    overflow: visible;
  }

  .card-grid::after {
    display: none;
  }

  .card {
    flex: unset;
    min-width: unset;
    scroll-snap-align: unset;
  }

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

  .addon-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    overflow: visible;
  }

  .addon-grid::after {
    display: none;
  }

  .addon-card {
    min-width: unset;
    scroll-snap-align: unset;
  }

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

  .footer-form {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .footer-submit {
    width: auto;
  }

  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

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

  .reserve-form .form-field:nth-child(3),
  .reserve-form .form-field:nth-child(4),
  .submit-btn,
  .form-field--wide {
    grid-column: span 2;
  }

  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-sticky-cta {
    display: none;
  }

  .story-layout {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    align-items: stretch;
  }

  .reserve-layout {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    align-items: flex-start;
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2.5rem;
  }

  .nav-links {
    justify-self: center;
  }

  .hero {
    min-height: 85vh;
    padding-top: 7rem;
  }

  .hero-content {
    margin: 0 auto;
  }

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

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

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

  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2.5rem;
  }

  .footer-form {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (max-width: 767px) {
  .package-card.featured {
    order: -1;
  }
}

.site-header.nav-open ~ .mobile-sticky-cta {
  opacity: 0;
  transform: translate(-50%, 120%);
  pointer-events: none;
}

body.nav-active .mobile-sticky-cta {
  opacity: 0;
  transform: translate(-50%, 120%);
  pointer-events: none;
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes addonPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

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

/* ========================================
   Legal Pages & Terms Checkbox Styling
   ======================================== */

/* Legal page layout */
.legal-page {
  padding: 4rem 0;
  min-height: 100vh;
}

.legal-content {
  max-width: 50rem;
  margin: 0 auto;
  line-height: 1.7;
}

.legal-content h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  margin-bottom: 0.5rem;
  color: var(--pink);
}

.legal-meta {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.legal-content h3 {
  font-size: 1.125rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--gray-800);
}

.legal-content p {
  margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: var(--pink);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--gray-900);
}

.legal-notice {
  background: linear-gradient(135deg, rgba(255, 59, 167, 0.1), rgba(255, 59, 167, 0.05));
  border-left: 4px solid var(--pink);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  border-radius: 0.5rem;
}

.legal-notice-footer {
  margin-top: 3rem;
  text-align: center;
  font-style: italic;
}

/* Terms checkbox styling */
.form-field--checkbox {
  margin: 1.5rem 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  cursor: pointer;
  accent-color: var(--pink);
}

.checkbox-label span {
  color: var(--gray-700);
}

.checkbox-label a {
  color: var(--pink);
  text-decoration: underline;
}

.checkbox-label a:hover {
  color: var(--gray-900);
}

/* Footer legal links */
.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin: 0.5rem 0;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--gray-500);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--pink);
}

@media (max-width: 767px) {
  .legal-page {
    padding: 2rem 0;
  }

  .legal-content {
    padding: 0 1rem;
  }

  .checkbox-label {
    font-size: 0.875rem;
  }

  .footer-links {
    gap: 1rem;
  }
}
