/* ============================================================
   FROSTLINE RESORT — style.css
   ============================================================ */


/* ── 1. CSS Custom Properties ─────────────────────────────── */

:root {
  /* Colours */
  --white:     #FFFFFF;
  --lime:      #A3E635;
  --lime-deep: #6FA01E;
  --lemon:     #FDE047;
  --ink:       #0E120A;
  --ink-soft:  #3A3F33;
  --gray-bg:   #F4F5F0;

  /* Typography */
  --font-heading: 'Anton', sans-serif;
  --font-body:    'Manrope', sans-serif;

  /* Spacing scale */
  --space-xs:  0.5rem;   /*  8px */
  --space-s:   1rem;     /* 16px */
  --space-m:   1.5rem;   /* 24px */
  --space-l:   2.5rem;   /* 40px */
  --space-xl:  4rem;     /* 64px */
  --space-2xl: 6rem;     /* 96px */

  /* Layout */
  --container:    1200px;
  --radius-card:  16px;
  --radius-btn:   999px;

  /* Shadows */
  --shadow-soft: 0 4px 24px rgba(14, 18, 10, 0.08);
  --shadow-card: 0 2px 12px rgba(14, 18, 10, 0.06);

  /* Transitions */
  --transition: 0.2s ease;
}


/* ── 2. Reset ─────────────────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

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

ul,
ol {
  list-style: none;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}


/* ── 3. Base / Body ───────────────────────────────────────── */

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;           /* 16px */
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  animation: page-fade-in 0.4s ease both;
}

body.page-exit {
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: none;
}

@keyframes page-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}


/* ── 4. Typography ────────────────────────────────────────── */

/* Headings — Anton */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;           /* Anton has only one weight */
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
  color: var(--ink);
}

h1 { font-size: clamp(3rem,   8vw, 7rem); }
h2 { font-size: clamp(2rem,   5vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.125rem; }

/* Body copy — Manrope */
p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 65ch;
}

/* Lead / intro paragraph */
.lead {
  font-size: 1.125rem;
  font-weight: 500;
}

/* Section label ("WELCOME", "WHAT YOU CAN DO", etc.) */
.label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  background-color: var(--lemon);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: var(--space-s);
}

/* Lemon accent underline for headings */
.heading-accent {
  position: relative;
  display: inline-block;
}

.heading-accent::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--lemon);
  border-radius: 2px;
}


/* ── 5. Layout Utilities ──────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-m);
}

/* Section vertical rhythm */
.section {
  padding-block: var(--space-2xl);
}

/* Alternating section backgrounds */
.section--white    { background-color: var(--white); }
.section--gray     { background-color: var(--gray-bg); }
.section--dark     { background-color: var(--ink); color: var(--white); }

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

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

/* Centred section header block */
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header p {
  margin-inline: auto;
}


/* ── 6. Buttons ───────────────────────────────────────────── */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  background: var(--lime);
  border: none;
  border-bottom: 8px solid var(--lime-deep);
  border-radius: 16px;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: filter 0.1s ease, transform 0.1s ease, border-bottom-width 0.1s ease;
  box-shadow: 0 15px 25px -10px rgba(163, 230, 53, 0.7);
}

.btn:hover { filter: brightness(1.05); }

.btn:active {
  border-bottom-width: 0;
  transform: translateY(8px);
  box-shadow: none;
}

.btn:focus-visible {
  outline: 4px solid rgba(163, 230, 53, 0.5);
  outline-offset: 2px;
}

/* Small variant — header "Book Now" */
.btn--sm {
  font-size: 0.75rem;
  padding: 10px 22px;
  border-bottom-width: 6px;
  border-radius: 12px;
  box-shadow: 0 10px 20px -8px rgba(163, 230, 53, 0.65);
}

.btn--sm:active {
  transform: translateY(6px);
}


/* ── 7. Cards (shared base) ───────────────────────────────── */

.card {
  background-color: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.card__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card__img {
  transform: scale(1.04);
}

.card__body {
  padding: var(--space-m);
}

.card__title {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

.card__text {
  font-size: 0.9375rem;
  max-width: none;
}


/* ── 8. Scroll Reveal (base states) ──────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for sibling reveals */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }


/* ── 9. Reduced Motion ────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* ── 10. Responsive Helpers ───────────────────────────────── */

/* Grid: auto-fit columns */
.grid {
  display: grid;
  gap: var(--space-m);
}

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

@media (max-width: 900px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .grid--4,
  .grid--3,
  .grid--2 { grid-template-columns: 1fr; }

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


/* ── 11. Site Header ──────────────────────────────────────── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

/* No background — header is always fully transparent */
.site-header::before {
  display: none;
}

/* ── Hero / Banner: white logo + links until scrolled past banner ── */

.site-header--hero:not(.scrolled) .header__logo-img {
  filter: brightness(0) invert(1);
}

.site-header--hero:not(.scrolled) .nav__link {
  color: rgba(255, 255, 255, 0.92);
}

.site-header--hero:not(.scrolled) .nav__link::after {
  background-color: #fff;
}

.site-header--hero:not(.scrolled) .burger span {
  background-color: #fff;
}

.header__inner {
  position: relative;
  z-index: 1; /* sits above the ::before backdrop layer */
  display: flex;
  align-items: center;
  gap: var(--space-m);
  padding-block: 0.75rem;
  transition: padding-block var(--transition);
}

.site-header.scrolled .header__inner {
  padding-block: 0.5rem;
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 1001;
}

.header__logo-img {
  height: 60px;
  width: auto;
  display: block;
  transition: filter 0.4s ease;
}

/* Nav */
.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav__list {
  display: flex;
  gap: var(--space-l);
  align-items: center;
}

.nav__link {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--lemon);
  border-radius: 1px;
  transition: width var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

/* Desktop CTA */
.header__cta {
  flex-shrink: 0;
  z-index: 1001;
}

/* Mobile-only CTA (inside overlay) */
.nav__cta-mobile {
  display: none;
}

/* Burger button */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  flex-shrink: 0;
  z-index: 1001;
}

.burger span {
  display: block;
  height: 2px;
  background-color: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.4s ease;
  transform-origin: center;
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
@media (max-width: 768px) {
  .burger {
    display: flex;
    margin-left: auto; /* push burger to right edge of header */
  }

  .header__cta {
    display: none;
  }

  /* Full-screen slide-in panel — position:fixed relative to VIEWPORT
     (works now that ::before holds the backdrop-filter, not the header itself) */
  .header__nav {
    position: fixed;
    inset: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    padding: var(--space-2xl) var(--space-l) var(--space-l);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

  .header__nav.open {
    transform: translateX(0);
  }

  /* Dark text on white mobile overlay — override hero white-text rule */
  .header__nav.open .nav__link {
    color: var(--ink) !important;
  }
  .header__nav.open .nav__link::after {
    background-color: var(--lime) !important;
  }

  .nav__list {
    flex-direction: column;
    gap: var(--space-l);
    text-align: center;
  }

  .nav__link {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 10vw, 2.75rem);
    letter-spacing: -0.01em;
    line-height: 0.95;
  }

  .nav__link::after {
    height: 3px;
    bottom: -5px;
  }

  .nav__cta-mobile {
    display: inline-flex;
  }

  /* Reduce logo height on mobile to keep header compact */
  .header__logo-img {
    height: 44px;
  }
}


/* ── 12. Site Footer ──────────────────────────────────────── */

.site-footer {
  background-color: var(--ink);
  color: var(--white);
  padding-top: var(--space-2xl);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo-img {
  height: 88px;
  width: auto;
  display: block;
  margin-bottom: var(--space-xs);
  filter: brightness(0) invert(1);
}

.footer__tagline {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: none;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  color: var(--lime);
  letter-spacing: 0.12em;
  margin-bottom: var(--space-m);
}

.footer__col address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9375rem;
  line-height: 1.9;
  margin-bottom: var(--space-s);
}

.footer__col address a {
  transition: color var(--transition);
}

.footer__col address a:hover {
  color: var(--lime);
}

.footer__hours {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: none;
}

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__social a {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color var(--transition);
}

.footer__social a:hover {
  color: var(--lime);
}

.footer__bottom {
  padding-block: var(--space-m);
}

.footer__bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
  max-width: none;
  text-align: center;
}

.footer__dev {
  color: rgba(255, 255, 255, 0.35);
}

.footer__dev-link {
  color: var(--lime);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: color var(--transition), text-decoration-color var(--transition);
}

.footer__dev-link:hover,
.footer__dev-link:focus-visible {
  color: #c5f558;
  text-decoration-color: currentColor;
  outline: none;
}

@media (max-width: 900px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-l);
  }

  .footer__col--brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .footer__inner {
    grid-template-columns: 1fr;
  }
}


/* ── 13. Hero Section ─────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Media layer — gradient placeholder shown while video is absent */
.hero__media {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    #1c2d3a 0%,
    #1e3325 40%,
    #0e1a0e 100%
  );
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(14, 18, 10, 0.62) 0%,
    rgba(14, 18, 10, 0.38) 35%,
    rgba(14, 18, 10, 0.32) 100%);
  z-index: 1;
}

/* Content */
.hero__content {
  position: relative;
  z-index: 2;
  padding-block: var(--space-2xl);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-m);
}

/* Title */
.hero__title {
  color: var(--white);
  font-size: clamp(4.5rem, 14vw, 10.5rem);
  line-height: 0.9;
  margin: 0;
}

.hero__word {
  display: block;
}

/* Subtitle */
.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.2vw, 1.3125rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  max-width: 44ch;
  line-height: 1.55;
  margin: 0;
}

/* ── Staggered load animation ─────────── */

.hero__word,
.hero__sub,
.hero__btn {
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__word:nth-child(1) { animation-delay: 0.12s; }
.hero__word:nth-child(2) { animation-delay: 0.32s; }
.hero__word:nth-child(3) { animation-delay: 0.52s; }
.hero__sub               { animation-delay: 0.82s; }
.hero__btn               { animation-delay: 1.02s; }

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Placeholder hint (dev only — remove after adding video) */
.hero__hint {
  position: absolute;
  bottom: var(--space-m);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  white-space: nowrap;
  pointer-events: none;
}

@media (max-width: 600px) {
  .hero__title {
    font-size: clamp(3.25rem, 18vw, 5.5rem);
  }
}

/* Reduced-motion: skip animation, show elements immediately */
@media (prefers-reduced-motion: reduce) {
  .hero__word,
  .hero__sub,
  .hero__btn {
    opacity: 1;
    transform: none;
    animation: none;
  }
}


/* ── 14. Intro Section ────────────────────────────────────── */

.section-intro .container {
  max-width: 800px;
}

.intro__inner .label {
  margin-bottom: var(--space-s);
}

.intro__inner h2 {
  margin-bottom: var(--space-m);
  line-height: 1;
}


/* ── 15. Activities — image placeholder ──────────────────── */

/* Dark background shows through when the image file is absent */
.card__img {
  background-color: #1f2e1a;
}


/* ── 16. Stats Section ────────────────────────────────────── */

.stats-section {
  padding-block: var(--space-2xl);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-l);
  text-align: center;
}

.stat__number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  color: var(--lime);
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.stat__label {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: var(--space-s);
}

/* Stats stagger (separate parent from .grid, so re-declare) */
.stats-grid > .reveal:nth-child(2) { transition-delay: 0.1s; }
.stats-grid > .reveal:nth-child(3) { transition-delay: 0.2s; }
.stats-grid > .reveal:nth-child(4) { transition-delay: 0.3s; }

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-m);
  }
}


/* ── 17. Gallery Teaser ───────────────────────────────────── */

.teaser-item {
  border-radius: var(--radius-card);
  overflow: hidden;
}

.teaser-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background-color: #1f2e1a;   /* placeholder */
  transition: transform 0.4s ease;
}

.teaser-item:hover .teaser-img {
  transform: scale(1.04);
}

.teaser-cta {
  text-align: center;
  margin-top: var(--space-l);
}


/* ── 18. CTA Banner ───────────────────────────────────────── */

.cta-banner {
  min-height: 520px;
  display: flex;
  align-items: center;
  background: #1e3325;
}

.cta-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-m);
  padding-block: var(--space-2xl);
}

.cta-banner__content h2 {
  color: var(--white);
  font-size: clamp(2.75rem, 8vw, 5.5rem);
}

@media (max-width: 600px) {
  .cta-banner { min-height: 340px; }
}


/* ── 19. Page Banner (interior pages) ────────────────────── */

.page-banner {
  position: relative;
  min-height: clamp(380px, 50vh, 640px);
  display: flex;
  align-items: flex-end;
}

.page-banner__media {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1c2d3a 0%, #1e3325 100%);
}

.page-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 18, 10, 0.55);
  z-index: 1;
}

.page-banner__content {
  position: relative;
  z-index: 2;
  padding-bottom: var(--space-2xl);
}

.page-banner__content h1 {
  color: var(--white);
}

.page-banner__sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.125rem;
  font-weight: 500;
  max-width: none;
  margin-top: var(--space-s);
}

.page-banner--gallery {
  min-height: clamp(500px, 72vh, 900px);
  align-items: center;
  overflow: hidden;
}

.page-banner--gallery .page-banner__bg {
  object-position: center 25%;
  animation: kenburns-right 10s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes kenburns-right {
  0%   { transform: scale(1)    translate(0, 0);  transform-origin: 84% 50%; }
  100% { transform: scale(1.25) translateX(20px); transform-origin: right; }
}

@media (prefers-reduced-motion: reduce) {
  .page-banner--gallery .page-banner__bg {
    animation: none;
  }
}

.page-banner--gallery .page-banner__overlay {
  background: linear-gradient(to bottom,
    rgba(14, 18, 10, 0.60) 0%,
    rgba(14, 18, 10, 0.14) 40%,
    rgba(14, 18, 10, 0.08) 100%);
}

.page-banner--gallery .page-banner__content {
  padding-bottom: 0;
  z-index: 3;
}

.page-banner--gallery .page-banner__content h1,
.page-banner--gallery .page-banner__sub {
  text-shadow: 0 2px 20px rgba(14, 18, 10, 0.45);
}

.page-banner__fade {
  position: absolute;
  inset: auto 0 0 0;
  height: 28%;
  background: linear-gradient(to bottom, transparent, #ffffff);
  z-index: 2;
  pointer-events: none;
}


/* ── 20. Pricing Cards ────────────────────────────────────── */

.price-card {
  background: var(--white);
  border-radius: var(--radius-card);
  border: 2px solid transparent;
  padding: var(--space-l);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.price-card--popular {
  border-color: var(--lime);
  box-shadow: 0 4px 28px rgba(163, 230, 53, 0.18);
}

.price-card__badge {
  position: absolute;
  top: 0;
  right: var(--space-m);
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--lemon);
  padding: 3px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.price-card h3 {
  font-size: 1.25rem;
  color: var(--ink);
  line-height: 1.1;
}

.price-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-card__amount {
  font-family: var(--font-heading);
  font-size: clamp(2.75rem, 5vw, 3.75rem);
  color: var(--ink);
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.price-card__period {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--ink-soft);
}

.price-card__desc {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  max-width: none;
  line-height: 1.6;
  margin-top: auto;
}


/* ── 21. Pricing Disclaimer ───────────────────────────────── */

.pricing-disclaimer {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--ink-soft);
  max-width: none;
  margin-top: var(--space-xl);
  opacity: 0.65;
}


/* ── 22. Gallery Grid ─────────────────────────────────────── */

.gallery-grid {
  columns: 3;
  column-gap: 14px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: block;   /* override <figure> default margin */
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  background-color: #1f2e1a;
  transition: transform 0.45s ease;
}

/* Aspect-ratio placeholders while images are absent */
.gallery-item--landscape img { aspect-ratio: 16 / 9; }
.gallery-item--portrait  img { aspect-ratio:  3 / 4; }

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 18, 10, 0.58);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: var(--space-m);
}

.gallery-item__caption {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

.gallery-item:hover img              { transform: scale(1.05); }
.gallery-item:hover .gallery-item__overlay { opacity: 1; }

.gallery-item:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

@media (max-width: 900px) { .gallery-grid { columns: 2; } }
@media (max-width: 600px) { .gallery-grid { columns: 1; } }


/* ── 23. Lightbox ─────────────────────────────────────────── */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(14, 18, 10, 0.93);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-m);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: min(90vw, 1280px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

.lightbox__close {
  position: absolute;
  top: var(--space-m);
  right: var(--space-m);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.lightbox__close:hover,
.lightbox__close:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  .lightbox { transition: none; }
}


/* ── 24. Contact Layout ───────────────────────────────────── */

.contact-heading {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: var(--space-xl);
}

/* Full-viewport section: photo bleeds to right edge */
.contact-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: calc(var(--space-2xl) + var(--space-l));
}

/* Info column sits above photo */
.contact-section > .container {
  position: relative;
  z-index: 2;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-l);
}

.contact-item {
  display: flex;
  gap: var(--space-m);
  align-items: flex-start;
}

.contact-item__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--lime);
  margin-top: 3px;
}

.contact-item__text h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1;
  margin-bottom: 6px;
}

.contact-item__text address,
.contact-item__text p {
  font-style: normal;
  color: var(--ink);
  font-size: 0.9375rem;
  max-width: none;
  line-height: 1.75;
}

.contact-item__text a {
  color: var(--ink);
  transition: color var(--transition);
}

.contact-item__text a:hover {
  color: var(--lime-deep);
}

.contact-social {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Photo: absolute, right half → right edge of browser */
.contact-photo {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 1;
}

.contact-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Left fade: photo edge dissolves into white info column */
.contact-photo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 33%;
  background: linear-gradient(to right, #ffffff, transparent);
  pointer-events: none;
  z-index: 2;
}

/* Top fade: photo top edge dissolves into white page background */
.contact-photo::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 22%;
  background: linear-gradient(to bottom, #ffffff, transparent);
  pointer-events: none;
  z-index: 2;
}

.contact-note {
  font-style: italic;
  color: var(--ink-soft);
  font-size: 0.9375rem;
  max-width: none;
  margin-top: var(--space-xl);
}

@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
  }

  .contact-photo {
    display: none;
  }
}


/* ── 25. Activities V2 ────────────────────────────────────── */

/* Heading sits close to deck — rider photos fill the visual gap */
.activities-v2 .section-header {
  margin-bottom: var(--space-s);
}

/* Deck: flex row, generous top space for riders peeking above cards */
.activities-deck {
  display: flex;
  align-items: flex-start;
  padding-top: 180px;
  overflow: visible;
}

/* ── Card base ─────────────────── */
.act-card {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
  border-radius: 20px;
  overflow: visible;
  text-decoration: none;
  display: block;
  min-height: 520px;

  /* Initial state — animated in by JS observer */
  opacity: 0;
  transform: translateY(70px);
  transition:
    opacity    0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform  1s   cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.22s ease;
}

/* Staircase: each card 44 px lower than the previous */
.act-card:nth-child(2) { margin-top: 44px; }
.act-card:nth-child(3) { margin-top: 88px; }

/* Horizontal overlap */
.act-card:nth-child(n+2) { margin-left: -20px; }

/* Z-index: dark center card always on top */
.act-card:nth-child(1) { z-index: 1; }
.act-card:nth-child(2) { z-index: 3; }
.act-card:nth-child(3) { z-index: 2; }

/* ── Card animation trigger ────── */
.act-deck--animating .act-card { opacity: 1; transform: translateY(0); }
.act-deck--animating .act-card:nth-child(1) { transition-delay: 0s; }
.act-deck--animating .act-card:nth-child(2) { transition-delay: 0.2s; }
.act-deck--animating .act-card:nth-child(3) { transition-delay: 0.4s; }

/* ── Card colour variants ──────── */
.act-card--light {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 8px 32px rgba(14, 18, 10, 0.09);
}

.act-card--dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 12px 40px rgba(14, 18, 10, 0.4);
}

.act-card--light:hover {
  box-shadow: 0 0 30px 1px rgba(163, 230, 53, 0.35), 0 16px 48px rgba(14, 18, 10, 0.16);
}
.act-card--dark:hover {
  box-shadow: 0 0 30px 1px rgba(163, 230, 53, 0.35), 0 20px 56px rgba(14, 18, 10, 0.52);
}

/* ── Gradient border + inner press on hover ─ */
.act-card::before {
  content: '';
  position: absolute;
  inset: -3px;
  padding: 3px;
  border-radius: 23px;
  background: linear-gradient(163deg, var(--lime) 0%, var(--lemon) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.act-card:hover::before {
  opacity: 1;
}

/* ── Rider photo block ─────────── */
/* Anchored at card top: 140 px above edge, 260 px inside card */
.act-card__rider {
  position: absolute;
  top: -140px;
  left: 0;
  right: 0;
  height: 400px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  z-index: 10;
  pointer-events: none;
  user-select: none;
}

/* Gradient fades photo into card background at the bottom seam */
.act-card__rider::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 130px;
  pointer-events: none;
  z-index: 1;
}
.act-card--light .act-card__rider::after {
  background: linear-gradient(to bottom, transparent, var(--white));
}
.act-card--dark .act-card__rider::after {
  background: linear-gradient(to bottom, transparent, var(--ink));
}

/* Photo animation — separate from card, springs in from above */
.act-card__rider img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;

  /* Initial: 70 px above resting spot, slightly smaller, invisible */
  opacity: 0;
  transform: translateY(-70px) scale(0.9);
  transition:
    opacity   0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
    transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Rider delays = card delay + 0.45 s each */
.act-deck--animating .act-card:nth-child(1) .act-card__rider img {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.45s;
}
.act-deck--animating .act-card:nth-child(2) .act-card__rider img {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.65s;
}
.act-deck--animating .act-card:nth-child(3) .act-card__rider img {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.85s;
}

/* ── Card body ─────────────────── */
/* padding-top clears rider overlap (260 px inside card + 20 px gap) */
.act-card__body {
  padding: var(--space-l);
  padding-top: 280px;
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
  transition: transform 0.3s ease;
}

.act-card:hover .act-card__body {
  transform: scale(0.98);
}

/* ── Fact badge ────────────────── */
.act-card__stat {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--lemon);
  padding: 3px 11px;
  border-radius: 999px;
  align-self: flex-start;
}

.act-card--dark .act-card__stat {
  background: var(--lime);
}

/* ── Title ─────────────────────── */
.act-card__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 0.95;
  color: inherit;
  margin: 0;
}

/* ── Description ───────────────── */
.act-card__desc {
  font-size: 0.9375rem;
  max-width: none;
  line-height: 1.6;
}

.act-card--light .act-card__desc { color: var(--ink-soft); }
.act-card--dark  .act-card__desc { color: rgba(255, 255, 255, 0.58); }

/* ── CTA arrow ─────────────────── */
.act-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: auto;
  padding-top: var(--space-m);
  transition: gap 0.2s ease;
}

.act-card--light .act-card__cta { color: var(--ink); }
.act-card--dark  .act-card__cta { color: var(--lime); }
.act-card:hover  .act-card__cta { gap: 10px; }

/* ── Responsive ─────────────────── */
@media (max-width: 840px) {
  /* Switch deck out of flex entirely — block stacking is simpler and safe */
  .activities-deck {
    display: block;
    padding-top: 0;
  }

  /* Each card: full-width block, stagger and overlap all reset */
  .act-card {
    display: block;
    width: 100%;
    min-height: 0;
    margin: 0 0 24px 0 !important;
    z-index: auto !important;
    transform: translateY(0) !important;
  }
  .act-card:last-child { margin-bottom: 0 !important; }

  /* Hide rider photos entirely */
  .act-card__rider { display: none; }

  /* Body: no rider clearance needed — uniform padding on all sides */
  .act-card__body { padding-top: var(--space-l); }
}

/* ── Reduced motion ─────────────── */
@media (prefers-reduced-motion: reduce) {
  .act-card {
    opacity: 1 !important;
    transform: none !important;
    transition: box-shadow 0.2s ease !important;
  }
  .act-card::before { transition: none !important; }
  .act-card__body   { transition: none !important; }
  .act-card:hover .act-card__body { transform: none !important; }
  .act-card__rider img {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* ── 26. Booking Modal ─────────────────────────────────────── */

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-m);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.booking-modal.open {
  opacity: 1;
  visibility: visible;
}

.booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 18, 10, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.booking-sheet {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--space-l);
  transform: scale(0.94) translateY(24px);
  transition: transform 0.36s cubic-bezier(0.34, 1.56, 0.64, 1);
  scrollbar-width: thin;
  scrollbar-color: var(--lime) #f4f5f0;
}

.booking-modal.open .booking-sheet {
  transform: scale(1) translateY(0);
}

.booking-sheet p {
  max-width: none;
}

.booking-close {
  position: absolute;
  top: var(--space-m);
  right: var(--space-m);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gray-bg);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}

.booking-close:hover,
.booking-close:focus-visible {
  background: var(--lime);
  outline: none;
}

.booking-close:active {
  transform: scale(0.88);
}

.booking-close svg {
  transition: transform 0.2s ease;
}

.booking-close:hover svg {
  transform: rotate(90deg);
}

.booking-header {
  margin-bottom: var(--space-m);
  padding-right: 60px;
}

.booking-title {
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
}

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

.booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-s);
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.booking-field label,
.booking-field__label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  line-height: 1;
}

.booking-field input,
.booking-field select {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  background: #fff;
  border: 2px solid #d4d8cc;
  border-radius: 12px;
  padding: 0 16px;
  height: 48px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.booking-field input::placeholder {
  color: #b0bba5;
}

.booking-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233A3F33' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px 16px;
  padding-right: 40px;
  cursor: pointer;
}

.booking-field input:focus,
.booking-field select:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(163, 230, 53, 0.22);
}

.booking-counter {
  display: flex;
  align-items: stretch;
  border: 2px solid #d4d8cc;
  border-radius: 12px;
  overflow: hidden;
  height: 48px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-counter:focus-within {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(163, 230, 53, 0.22);
}

.booking-counter__btn {
  width: 48px;
  font-size: 1.375rem;
  line-height: 1;
  font-weight: 700;
  color: var(--ink);
  background: var(--gray-bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: none;
  font-family: var(--font-body);
  transition: background var(--transition);
}

.booking-counter__btn:hover {
  background: var(--lime);
}

.booking-counter__btn:active {
  opacity: 0.75;
}

.booking-counter__value {
  flex: 1;
  text-align: center;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.booking-checks {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.booking-check {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  user-select: none;
}

.booking-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.booking-check__box {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 2px solid #d4d8cc;
  background: #fff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease, border-color 0.18s ease,
              transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.booking-check__box svg {
  width: 14px;
  height: 14px;
  color: var(--ink);
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.15s ease,
              transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.booking-check input:checked + .booking-check__box {
  background: var(--lime);
  border-color: var(--lime);
  transform: scale(1.1);
}

.booking-check input:checked + .booking-check__box svg {
  opacity: 1;
  transform: scale(1);
}

.booking-check:hover .booking-check__box {
  border-color: var(--lime);
}

.booking-check input:focus-visible + .booking-check__box {
  outline: 3px solid var(--lime);
  outline-offset: 2px;
}

.booking-check__text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
}

.booking-submit {
  display: flex;
  width: 100%;
  justify-content: center;
}

.booking-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-xl) 0 var(--space-l);
  gap: var(--space-m);
}

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

.booking-success__icon {
  width: 80px;
  height: 80px;
  color: var(--lime);
  animation: bk-pop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.booking-success__title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
}

.booking-success__msg {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

@keyframes bk-pop {
  from { transform: scale(0.2) rotate(-20deg); opacity: 0; }
  to   { transform: scale(1)   rotate(0deg);   opacity: 1; }
}

@media (max-width: 600px) {
  .booking-modal {
    align-items: flex-end;
    padding: 0;
  }

  .booking-sheet {
    max-width: 100%;
    border-radius: 24px 24px 0 0;
    max-height: 92vh;
    padding: var(--space-m) var(--space-m)
             calc(var(--space-m) + env(safe-area-inset-bottom, 0px));
    transform: translateY(100%);
    transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .booking-modal.open .booking-sheet {
    transform: translateY(0);
  }

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

@media (prefers-reduced-motion: reduce) {
  .booking-modal,
  .booking-sheet          { transition: none; }
  .booking-success__icon  { animation: none; }
  .booking-check__box,
  .booking-check__box svg { transition: none; }
  .booking-close svg      { transition: none; }
}


/* ── 27. Pricing Cards — Interactivity ─────────────────────── */

.price-card {
  cursor: pointer;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(14, 18, 10, 0.16),
              0 0 0 2px rgba(163, 230, 53, 0.55);
}

.price-card--popular:hover {
  box-shadow: 0 24px 48px rgba(163, 230, 53, 0.24),
              0 0 0 2px var(--lime);
}

.price-card:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.price-card:active {
  transform: translateY(-5px);
  transition-duration: 0.1s;
}

.price-card__cta {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime-deep);
  margin-top: auto;
  transition: color 0.2s ease;
}

.price-card__cta span {
  display: inline-block;
  transition: transform 0.22s ease;
}

.price-card:hover .price-card__cta { color: #5a8418; }
.price-card:hover .price-card__cta span { transform: translateX(5px); }

@media (max-width: 600px) {
  .price-card {
    padding: var(--space-m);
  }
}

@media (prefers-reduced-motion: reduce) {
  .price-card:hover         { transform: none; }
  .price-card__cta span     { transition: none; }
}


/* ── 28. Plan Detail Modal ─────────────────────────────────── */

.plan-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-m);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.plan-modal.open {
  opacity: 1;
  visibility: visible;
}

.plan-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 18, 10, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.plan-sheet {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--space-l);
  transform: scale(0.94) translateY(24px);
  transition: transform 0.36s cubic-bezier(0.34, 1.56, 0.64, 1);
  scrollbar-width: thin;
  scrollbar-color: var(--lime) #f4f5f0;
}

.plan-modal.open .plan-sheet {
  transform: scale(1) translateY(0);
}

.plan-sheet p { max-width: none; }

.plan-close {
  position: absolute;
  top: var(--space-m);
  right: var(--space-m);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gray-bg);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
}

.plan-close:hover,
.plan-close:focus-visible {
  background: var(--lime);
  outline: none;
}

.plan-close:active  { transform: scale(0.88); }
.plan-close svg     { transition: transform 0.2s ease; }
.plan-close:hover svg { transform: rotate(90deg); }

.plan-hero {
  padding-right: 60px;
  margin-bottom: var(--space-m);
}

.plan-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  line-height: 1;
  margin-top: 6px;
}

.plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 10px;
}

.plan-price__amount {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 6vw, 3.25rem);
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}

.plan-price__period {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink-soft);
}

hr.plan-divider {
  border: 0;
  height: 1px;
  background: #e8ead3;
  margin: var(--space-m) 0;
}

.plan-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: var(--space-m);
}

.plan-section { margin-bottom: var(--space-m); }

.plan-section__label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-bottom: 12px;
  line-height: 1;
}

.plan-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-list__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}

.plan-check {
  width: 18px;
  height: 18px;
  color: var(--lime-deep);
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-meta {
  background: var(--gray-bg);
  border-radius: 12px;
  padding: var(--space-s) var(--space-m);
  margin-bottom: var(--space-m);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.plan-meta__row {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.plan-meta__label {
  font-weight: 700;
  color: var(--ink);
}

.plan-book {
  display: flex;
  width: 100%;
  justify-content: center;
}

@media (max-width: 600px) {
  .plan-modal {
    align-items: flex-end;
    padding: 0;
  }

  .plan-sheet {
    max-width: 100%;
    border-radius: 24px 24px 0 0;
    max-height: 92vh;
    padding: var(--space-m) var(--space-m)
             calc(var(--space-m) + env(safe-area-inset-bottom, 0px));
    transform: translateY(100%);
    transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .plan-modal.open .plan-sheet { transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .plan-modal,
  .plan-sheet     { transition: none; }
  .plan-close svg { transition: none; }
}


/* ── 29. Booking Form — Validation Errors ─────────────────── */

.booking-field--error input,
.booking-field--error select {
  border-color: #e05252 !important;
  box-shadow: 0 0 0 3px rgba(224, 82, 82, 0.14) !important;
}

.booking-field__error {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: #e05252;
  margin-top: 5px;
  line-height: 1.3;
}

.booking-label--optional {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--ink-soft);
  margin-left: 4px;
  opacity: 0.65;
  vertical-align: middle;
  line-height: 1;
}


/* ── 30. Animated Welcome — Intro Section ──────────────────── */

.intro__welcome {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: clamp(46px, 9vw, 86px);
  color: var(--ink);
  line-height: 1;
  margin: 0 0 var(--space-s);
  max-width: none;
}

.intro__welcome span {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
}

.intro__welcome.visible span {
  animation: letter-rise 0.48s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.intro__welcome.visible span:nth-child(1) { animation-delay:   0ms; }
.intro__welcome.visible span:nth-child(2) { animation-delay: 100ms; }
.intro__welcome.visible span:nth-child(3) { animation-delay: 200ms; }
.intro__welcome.visible span:nth-child(4) { animation-delay: 300ms; }
.intro__welcome.visible span:nth-child(5) { animation-delay: 400ms; }
.intro__welcome.visible span:nth-child(6) { animation-delay: 500ms; }
.intro__welcome.visible span:nth-child(7) { animation-delay: 600ms; }

@keyframes letter-rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .intro__welcome span {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}


/* ── 31. Coverflow Slider ──────────────────────────────────── */

.coverflow-section {
  overflow: hidden;
  padding-bottom: var(--space-2xl);
}

.coverflow {
  position: relative;
  width: 100%;
  margin-top: var(--space-l);
}

.coverflow__track {
  position: relative;
  height: clamp(280px, 44vw, 520px);
  perspective: 1400px;
  perspective-origin: 50% 50%;
}

.coverflow__slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(240px, 34vw, 440px);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.55s cubic-bezier(.22, 1, .36, 1),
    opacity   0.55s cubic-bezier(.22, 1, .36, 1),
    box-shadow 0.4s ease,
    outline-color 0.3s ease;
  will-change: transform, opacity;
  outline: 2px solid transparent;
  outline-offset: 4px;
}

.coverflow__slide.is-active {
  outline-color: var(--lime);
  box-shadow: 0 28px 64px rgba(14, 18, 10, 0.32);
}

.coverflow__inner {
  width: 100%;
  transition: transform 0.12s ease;
}

.coverflow__slide img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
}

/* Arrow buttons */
.coverflow__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  border: 2px solid rgba(163, 230, 53, 0.35);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform 0.2s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.coverflow__btn:hover {
  background: var(--lime);
  border-color: var(--lime);
  transform: translateY(-50%) scale(1.08);
}

.coverflow__btn:active {
  transform: translateY(-50%) scale(0.94);
}

.coverflow__btn:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 2px;
}

.coverflow__btn--prev { left: clamp(10px, 2.5vw, 36px); }
.coverflow__btn--next { right: clamp(10px, 2.5vw, 36px); }

@media (max-width: 600px) {
  .coverflow__track {
    height: clamp(190px, 68vw, 280px);
  }
  .coverflow__slide {
    width: clamp(170px, 68vw, 270px);
  }
  .coverflow__btn {
    width: 44px;
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .coverflow__slide {
    transition: opacity 0.25s ease;
  }
  .coverflow__inner {
    transition: none;
  }
}
