/* =========================================================================
   Tandem PDX — Master Stylesheet
   =========================================================================
   Sections:
     1.  Variables (design tokens)
     2.  Reset & base
     3.  Layout helpers
     4.  Navigation
     5.  Buttons
     6.  Cards & badges
     7.  Homepage hero
     8.  Section blocks (How it Works, Value Prop, Testimonials, CTAs)
     9.  Page header (interior pages)
    10.  Experience detail page
    11.  Checkout page
    12.  Confirmation / ticket
    13.  My Tickets page
    14.  Gift card page
    15.  Footer
    16.  Responsive (≤ 768 px, ≤ 480 px)
   ========================================================================= */


/* ── 1. Variables ─────────────────────────────────────────────────────── */
:root {
  /* Forest greens — primary brand */
  --forest-50:  #f0f7f1;
  --forest-100: #d9edd9;
  --forest-700: #1a5220;
  --forest-800: #17431c;
  --forest-900: #133718;
  --forest-950: #0a2010;

  /* Ember oranges — accent */
  --ember-50:  #fff7ed;
  --ember-100: #ffedd5;
  --ember-200: #fed7aa;
  --ember-400: #fb923c;
  --ember-500: #f97316;
  --ember-600: #ea580c;
  --ember-700: #c2410c;

  /* Stone neutrals */
  --cream:     #fafaf5;
  --stone-50:  #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-300: #d6d3d1;
  --stone-400: #a8a29e;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --stone-700: #44403c;
  --stone-900: #1c1917;

  /* Typography */
  --font-serif: Georgia, Cambria, 'Times New Roman', serif;
  --font-sans:  -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Layout */
  --max-width: 1152px;
  --px: 1.5rem;           /* page horizontal padding */

  /* Radii */
  --r-sm:   0.5rem;
  --r-md:   1rem;
  --r-lg:   1.5rem;
  --r-xl:   2rem;
  --r-pill: 9999px;
}


/* ── 2. Reset & base ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: #1a2e1a;
  line-height: 1.6;
}

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

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

ul { list-style: none; }

button { font-family: var(--font-sans); cursor: pointer; }

h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.15; }


/* ── 3. Layout helpers ────────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--px);
}

.section        { padding: 5rem 0; }
.section--tinted { background: var(--stone-100); }
.section--dark   { background: var(--forest-950); }

/* Small all-caps label above headings */
.eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest-700);
  margin-bottom: 0.75rem;
}

.section-header          { text-align: center; margin-bottom: 3.5rem; }
.section-header h2       { font-size: clamp(1.75rem, 3vw, 2.5rem); color: var(--forest-900); }
.section-header p        { color: var(--stone-500); margin-top: 0.75rem; max-width: 480px; margin-inline: auto; }


/* ── 4. Navigation ────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,250,245,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--stone-200);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--forest-900);
  letter-spacing: -0.02em;
}
.logo-glyph  { font-size: 1.4rem; }
.logo-accent { color: var(--ember-600); }

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--stone-600);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--forest-800); }
.nav-links a.btn { color: #fff; }
.nav-links a.btn:hover { color: #fff; }

/* Hamburger — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
  border-radius: var(--r-sm);
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--forest-800);
  transition: transform 0.2s, opacity 0.2s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Account dropdown ───────────────────────────────────────────────── */
.nav-account { position: relative; display: flex; align-items: center; }

.nav-account-btn {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--forest-700);
  border: none;
  border-radius: var(--r-pill);
  padding: 0.3rem 0.75rem 0.3rem 0.4rem;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  transition: background 0.15s;
}
.nav-account-btn:hover { background: var(--forest-800); }

.nav-account-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-account-chevron {
  width: 0;
  height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid rgba(255,255,255,0.7);
  transition: transform 0.15s;
  flex-shrink: 0;
}
.nav-account.open .nav-account-chevron { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--r-md);
  box-shadow: 0 4px 16px rgba(0,0,0,0.09);
  min-width: 168px;
  padding: 0.35rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.15s, transform 0.15s;
  z-index: 200;
}
.nav-account.open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.55rem 0.75rem;
  border-radius: var(--r-sm);
  font-size: 0.85rem;
  font-family: inherit;
  font-weight: 500;
  color: var(--forest-900);
  text-decoration: none;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  line-height: 1;
  transition: background 0.1s;
}
.nav-dropdown-item:hover { background: var(--stone-50); color: var(--forest-900); }

.nav-dropdown-divider {
  height: 1px;
  background: var(--stone-100);
  margin: 0.3rem 0.4rem;
}

.nav-dropdown-signout { color: var(--stone-600); }
.nav-dropdown-signout:hover { color: var(--forest-900); }


/* ── 5. Buttons ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.1s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary { background: var(--forest-700); color: #fff; }
.btn-primary:hover { background: var(--forest-800); }

.btn-ember { background: var(--ember-600); color: #fff; }
.btn-ember:hover { background: var(--ember-700); }

.btn-outline {
  background: transparent;
  color: var(--forest-700);
  border: 1.5px solid var(--forest-700);
}
.btn-outline:hover { background: var(--forest-50); }

.btn-lg { font-size: 1rem; padding: 0.9rem 2rem; }
.btn-sm { font-size: 0.75rem; padding: 0.45rem 1rem; }
.btn-full { width: 100%; justify-content: center; }


/* ── 6. Cards & badges ────────────────────────────────────────────────── */
.card {
  display: block;
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--stone-100);
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: box-shadow 0.25s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

/* Placeholder image block (replaces <img> for POC) */
.card-img {
  position: relative;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  overflow: hidden;
  transition: opacity 0.3s;
}
.card:hover .card-img { opacity: 0.9; }

/* Badge overlays on the card image */
.card-badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  pointer-events: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  border-radius: var(--r-pill);
  font-size: 0.68rem;
  font-weight: 700;
  border: 1px solid;
  backdrop-filter: blur(4px);
}
.badge-savings  { background: rgba(255,247,237,0.92); color: var(--ember-700); border-color: var(--ember-200); }
.badge-romance  { background: rgba(253,242,248,0.92); color: #be185d; border-color: #fbcfe8; }
.badge-adventure{ background: rgba(239,246,255,0.92); color: #1d4ed8; border-color: #bfdbfe; }
.badge-culture  { background: rgba(245,243,255,0.92); color: #6d28d9; border-color: #ddd6fe; }
.badge-food     { background: rgba(255,251,235,0.92); color: #b45309; border-color: #fde68a; }

.card-body { padding: 1.25rem; }

.card-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--forest-900);
  margin-bottom: 0.2rem;
  transition: color 0.15s;
}
.card:hover .card-title { color: var(--forest-700); }

.card-tagline {
  font-size: 0.78rem;
  color: var(--stone-500);
  line-height: 1.45;
  margin-bottom: 0.9rem;
}

/* Stop pills inside card */
.card-stops { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.stop-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.68rem;
  color: var(--stone-600);
  background: var(--stone-50);
  border: 1px solid var(--stone-200);
  padding: 0.18rem 0.55rem;
  border-radius: var(--r-pill);
}

.card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 0.9rem;
  border-top: 1px solid var(--stone-100);
}

.price-block { line-height: 1; }
.price-now   { font-size: 1.5rem; font-weight: 700; color: var(--forest-900); }
.price-label { font-size: 0.68rem; color: var(--stone-400); margin-left: 0.2rem; }
.price-was   { font-size: 0.7rem; color: var(--stone-400); text-decoration: line-through; margin-top: 0.3rem; }

.duration { font-size: 0.75rem; color: var(--stone-500); }

/* Card grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
}


/* ── 7. Homepage hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Placeholder gradient — replace with a real photo by adding an <img> inside .hero-bg */
  background: linear-gradient(135deg, var(--forest-950) 0%, #173d20 55%, #2d5a1b 100%);
}

/* Decorative texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(234,88,12,0.18) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 6rem var(--px);
}

.hero .eyebrow { color: rgba(255,255,255,0.6); }

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  color: #fff;
  max-width: 580px;
  margin-bottom: 1.4rem;
}
.hero h1 em { color: var(--ember-400); font-style: normal; }

.hero-body {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 420px;
  line-height: 1.65;
  margin-bottom: 2.25rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.hero-link {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.15s;
}
.hero-link:hover { color: #fff; }

.hero-stats { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.stat-chip {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border-radius: var(--r-md);
  padding: 0.7rem 1.1rem;
  color: #fff;
}
.stat-value { font-size: 1.4rem; font-weight: 700; line-height: 1; }
.stat-label { font-size: 0.65rem; color: rgba(255,255,255,0.6); margin-top: 0.15rem; }


/* ── 8. Section blocks ────────────────────────────────────────────────── */

/* How it works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2.5rem;
}
.step-icon { font-size: 2.75rem; margin-bottom: 1rem; }
.step-num  { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; color: var(--stone-300); margin-bottom: 0.4rem; }
.step h3   { font-family: var(--font-serif); font-size: 1.15rem; color: var(--forest-900); margin-bottom: 0.6rem; }
.step p    { font-size: 0.85rem; color: var(--stone-500); line-height: 1.65; }

/* Value proposition (Why Tandem) */
.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.value-img-block {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  /* Placeholder gradient */
  background: linear-gradient(135deg, #173d20 0%, var(--forest-800) 100%);
}

.value-points { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.1rem; }
.value-point  { display: flex; gap: 1rem; }
.value-point-icon  { font-size: 1.3rem; flex-shrink: 0; padding-top: 0.1rem; }
.value-point-title { font-size: 0.875rem; font-weight: 600; color: var(--forest-900); }
.value-point-sub   { font-size: 0.8rem; color: var(--stone-500); margin-top: 0.1rem; }

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.testimonial {
  background: var(--stone-50);
  border: 1px solid var(--stone-100);
  border-radius: var(--r-lg);
  padding: 1.5rem;
}
.t-stars  { color: var(--ember-500); margin-bottom: 0.9rem; letter-spacing: 0.05em; }
.t-quote  { font-size: 0.85rem; color: var(--stone-600); line-height: 1.65; font-style: italic; margin-bottom: 1.1rem; }
.t-author { font-size: 0.85rem; font-weight: 600; color: var(--forest-900); }
.t-exp    { font-size: 0.72rem; color: var(--stone-400); margin-top: 0.1rem; }

/* Dark CTA band */
.cta-dark { text-align: center; }
.cta-dark .eyebrow { color: rgba(167,209,169,0.65); justify-content: center; display: block; }
.cta-dark h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); color: #fff; margin-bottom: 1rem; }
.cta-dark p  { color: rgba(255,255,255,0.65); font-size: 1rem; max-width: 460px; margin: 0 auto 2.25rem; line-height: 1.65; }

/* Gift card CTA box */
.gift-box {
  background: var(--ember-50);
  border: 1px solid var(--ember-200);
  border-radius: var(--r-xl);
  padding: 3rem 2rem;
  text-align: center;
}
.gift-box .gift-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.gift-box h2 { font-size: 1.75rem; color: var(--forest-900); margin-bottom: 0.6rem; }
.gift-box p  { color: var(--stone-500); max-width: 380px; margin: 0 auto 2rem; font-size: 0.9rem; }

/* Featured section header with side link */
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}


/* ── 9. Page header (interior pages) ─────────────────────────────────── */
.page-header {
  background: var(--forest-950);
  padding: 4rem 0 3.5rem;
  color: #fff;
}
.page-header .eyebrow { color: rgba(167,209,169,0.6); }
.page-header h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.page-header p  { color: rgba(255,255,255,0.65); margin-top: 0.75rem; max-width: 500px; }


/* ── 10. Experience detail page ───────────────────────────────────────── */
.exp-hero {
  position: relative;
  height: 440px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.exp-hero-bg {
  position: absolute;
  inset: 0;
  /* gradient set inline by JS */
}
.exp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,32,16,0.85) 0%, rgba(10,32,16,0.2) 60%, transparent 100%);
}
.exp-hero-content {
  position: relative;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--px) 2rem;
  color: #fff;
}
.exp-hero-content h1 { font-size: clamp(1.7rem, 4vw, 2.75rem); margin-bottom: 0.4rem; }
.exp-hero-content p  { opacity: 0.8; font-size: 1rem; }
.exp-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.75rem;
}
.exp-hero-meta span { font-size: 0.8rem; opacity: 0.75; }

/* Two-column layout: main content + booking sidebar */
.exp-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  padding: 3rem 0;
  align-items: start;
}

.exp-main section { margin-bottom: 2.5rem; }
.exp-main h2 { font-family: var(--font-serif); font-size: 1.35rem; color: var(--forest-900); margin-bottom: 1.25rem; }
.exp-description { font-size: 0.925rem; color: var(--stone-600); line-height: 1.7; }

/* Stop list */
.stops-list { display: flex; flex-direction: column; gap: 1rem; }
.stop-card {
  display: flex;
  gap: 1rem;
  padding: 1.1rem;
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--r-md);
}
.stop-num {
  width: 2rem;
  height: 2rem;
  background: var(--forest-700);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.stop-name     { font-weight: 600; color: var(--forest-900); font-size: 0.9rem; margin-bottom: 0.15rem; }
.stop-meta     { font-size: 0.72rem; color: var(--stone-400); margin-bottom: 0.4rem; }
.stop-desc     { font-size: 0.83rem; color: var(--stone-500); line-height: 1.55; }

/* Includes checklist */
.includes-list { display: flex; flex-direction: column; gap: 0.65rem; }
.includes-list li {
  display: flex;
  gap: 0.7rem;
  font-size: 0.875rem;
  color: var(--stone-600);
}
.includes-list li::before { content: '✓'; color: var(--forest-700); font-weight: 700; flex-shrink: 0; }

/* Reviews */
.reviews-list { display: flex; flex-direction: column; gap: 1rem; }
.review {
  padding: 1.1rem 1.25rem;
  background: var(--stone-50);
  border-radius: var(--r-md);
}
.review-stars  { color: var(--ember-500); font-size: 0.9rem; margin-bottom: 0.5rem; }
.review-body   { font-size: 0.85rem; color: var(--stone-600); line-height: 1.6; font-style: italic; margin-bottom: 0.6rem; }
.review-author { font-size: 0.8rem; font-weight: 600; color: var(--forest-900); }

/* Booking sidebar */
.booking-card {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  position: sticky;
  top: 5rem;
}
.booking-price .price-now { font-size: 2rem; }
.booking-price .price-was { margin-top: 0.3rem; }
.savings-pill {
  display: inline-flex;
  margin-top: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ember-700);
  background: var(--ember-50);
  border: 1px solid var(--ember-200);
  padding: 0.2rem 0.6rem;
  border-radius: var(--r-pill);
}
.booking-meta { margin: 1.25rem 0; display: flex; flex-direction: column; gap: 0.5rem; }
.booking-meta li { display: flex; gap: 0.5rem; font-size: 0.8rem; color: var(--stone-500); }
.booking-meta li span:first-child { font-weight: 600; color: var(--stone-700); min-width: 72px; }
.booking-divider { border: none; border-top: 1px solid var(--stone-200); margin: 1.25rem 0; }


/* ── 11. Checkout page ────────────────────────────────────────────────── */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  padding: 3rem 0;
  align-items: start;
}

/* Form sections */
.form-section       { margin-bottom: 2rem; }
.form-section h2    { font-family: var(--font-serif); font-size: 1.1rem; color: var(--forest-900); margin-bottom: 0.4rem; }
.form-section-rule  { border: none; border-top: 1px solid var(--stone-200); margin-bottom: 1.25rem; }

.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.78rem; font-weight: 500; color: var(--stone-700); }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  padding: 0.6rem 0.875rem;
  border: 1.5px solid var(--stone-200);
  border-radius: var(--r-sm);
  background: #fff;
  color: var(--stone-900);
  outline: none;
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--forest-700); }
.form-group textarea { resize: vertical; min-height: 80px; }

/* Time slot radio buttons styled as pills */
.time-slots        { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.time-slot         { position: relative; }
.time-slot input   { position: absolute; opacity: 0; width: 0; height: 0; }
.time-slot label {
  display: block;
  padding: 0.45rem 1.1rem;
  border: 1.5px solid var(--stone-200);
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  color: var(--stone-600);
  cursor: pointer;
  transition: all 0.15s;
}
.time-slot input:checked + label {
  border-color: var(--forest-700);
  background: var(--forest-50);
  color: var(--forest-800);
  font-weight: 600;
}

/* Stripe placeholder — dashed box where the card element will go */
.stripe-slot {
  border: 2px dashed var(--stone-300);
  border-radius: var(--r-md);
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
  background: var(--stone-50);
}
.stripe-slot p { font-size: 0.8rem; color: var(--stone-500); line-height: 1.55; }
.stripe-slot .stripe-note {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.72rem;
  color: var(--stone-400);
  background: var(--stone-100);
  border: 1px solid var(--stone-200);
  border-radius: var(--r-sm);
  padding: 0.3rem 0.7rem;
}

/* Order summary card */
.order-card {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  position: sticky;
  top: 5rem;
}
.order-card h3 { font-family: var(--font-serif); font-size: 1.05rem; color: var(--forest-900); margin-bottom: 1rem; }

/* Placeholder image in order card */
.order-img {
  border-radius: var(--r-md);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.order-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--stone-600);
  margin-bottom: 0.4rem;
}
.order-line.order-total {
  font-weight: 700;
  color: var(--forest-900);
  padding-top: 0.75rem;
  border-top: 1px solid var(--stone-200);
  margin-top: 0.5rem;
}

/* Checkout breadcrumb */
.checkout-back { color: var(--stone-500); font-size: 0.8rem; display: inline-flex; align-items: center; gap: 0.4rem; margin-bottom: 1.5rem; }
.checkout-back:hover { color: var(--forest-700); }


/* ── 12. Confirmation / ticket ────────────────────────────────────────── */
.confirm-wrap {
  max-width: 600px;
  margin: 4rem auto;
  padding: 0 var(--px);
  text-align: center;
}
.confirm-icon { font-size: 4rem; margin-bottom: 1.25rem; }
.confirm-wrap h1 { font-size: 2.25rem; color: var(--forest-900); margin-bottom: 0.75rem; }
.confirm-wrap > p { color: var(--stone-500); line-height: 1.65; font-size: 0.925rem; }

.ticket {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  margin: 2rem 0;
  text-align: left;
}
.ticket-id   { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone-400); margin-bottom: 0.4rem; }
.ticket-name { font-family: var(--font-serif); font-size: 1.4rem; color: var(--forest-900); }
.ticket-rows { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.ticket-row  { display: flex; font-size: 0.875rem; color: var(--stone-600); gap: 0.5rem; }
.ticket-row strong { color: var(--stone-700); min-width: 90px; font-weight: 600; }

.ticket-qr-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px dashed var(--stone-200);
}
.qr-block {
  width: 80px;
  height: 80px;
  background: var(--stone-100);
  border: 1px solid var(--stone-200);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}
.qr-note { font-size: 0.75rem; color: var(--stone-500); line-height: 1.55; }

.confirm-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 0.5rem; }


/* ── 13. My Tickets page ──────────────────────────────────────────────── */
.tickets-grid { display: flex; flex-direction: column; gap: 1rem; }
.ticket-row-card {
  display: flex;
  gap: 1.25rem;
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  align-items: center;
}
.ticket-row-img {
  width: 80px;
  height: 60px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}
.ticket-row-name { font-family: var(--font-serif); font-size: 1.05rem; color: var(--forest-900); margin-bottom: 0.2rem; }
.ticket-row-meta { font-size: 0.78rem; color: var(--stone-500); }

.tickets-empty {
  text-align: center;
  padding: 5rem 1rem;
}
.tickets-empty p { color: var(--stone-500); margin: 0.75rem 0 2rem; }

/* Filter bar (experiences page) */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.filter-btn {
  padding: 0.38rem 1rem;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--stone-200);
  background: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--stone-600);
  cursor: pointer;
  transition: all 0.15s;
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--forest-700);
  color: var(--forest-700);
  background: var(--forest-50);
}


/* ── 14. Login page ───────────────────────────────────────────────────── */
.auth-wrap {
  max-width: 420px;
  margin: 4rem auto;
  padding: 0 var(--px);
}
.auth-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--forest-900);
  margin-bottom: 2rem;
  text-decoration: none;
}
.tab-bar {
  display: flex;
  border: 1.5px solid var(--stone-200);
  border-radius: var(--r-pill);
  padding: 0.25rem;
  background: var(--stone-100);
  margin-bottom: 1.75rem;
}
.tab-btn {
  flex: 1;
  padding: 0.5rem;
  border: none;
  background: transparent;
  border-radius: var(--r-pill);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--stone-500);
  cursor: pointer;
  transition: all 0.15s;
  font-family: var(--font-sans);
}
.tab-btn.active {
  background: #fff;
  color: var(--forest-900);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.auth-error {
  display: none;
  font-size: 0.8rem;
  color: #dc2626;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--r-sm);
  padding: 0.65rem 0.875rem;
  margin-bottom: 1rem;
}
.auth-success {
  display: none;
  font-size: 0.8rem;
  color: var(--forest-700);
  background: var(--forest-50);
  border: 1px solid var(--forest-100);
  border-radius: var(--r-sm);
  padding: 0.65rem 0.875rem;
  margin-bottom: 1rem;
}
.pw-field {
  position: relative;
}
.pw-field input {
  padding-right: 2.75rem;
  width: 100%;
  box-sizing: border-box;
}
.pw-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--stone-400);
  display: flex;
  align-items: center;
  line-height: 1;
}
.pw-toggle:hover { color: var(--stone-600); }
.pw-label-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.4rem;
}
.pw-label-row label { margin-bottom: 0; }
.forgot-link {
  font-size: 0.75rem;
  color: var(--forest-700);
  text-decoration: none;
}
.forgot-link:hover { text-decoration: underline; }


/* ── 15. Gift card page ───────────────────────────────────────────────── */
.gift-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 0;
}
.gift-visual {
  border-radius: var(--r-xl);
  aspect-ratio: 3/2;
  background: linear-gradient(135deg, var(--forest-950) 0%, #2d5a1b 60%, var(--ember-700) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 0.75rem;
}
.gift-visual .gift-card-label { font-family: var(--font-serif); font-size: 1.5rem; }
.gift-visual .gift-card-sub   { font-size: 0.8rem; opacity: 0.65; }
.gift-visual .gift-card-glyph { font-size: 3.5rem; }

.gift-form-group { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.gift-form-group input {
  flex: 1;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  padding: 0.65rem 1rem;
  border: 1.5px solid var(--stone-200);
  border-radius: var(--r-pill);
  outline: none;
  transition: border-color 0.15s;
}
.gift-form-group input:focus { border-color: var(--forest-700); }

.faq-list { display: flex; flex-direction: column; gap: 1.25rem; }
.faq-item { border-bottom: 1px solid var(--stone-200); padding-bottom: 1.25rem; }
.faq-q { font-weight: 600; color: var(--forest-900); margin-bottom: 0.4rem; font-size: 0.925rem; }
.faq-a { font-size: 0.875rem; color: var(--stone-500); line-height: 1.65; }


/* ── 15. Footer ───────────────────────────────────────────────────────── */
.footer {
  background: var(--stone-900);
  color: var(--stone-400);
  padding: 2.5rem 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  justify-content: space-between;
}
.footer-brand { font-family: var(--font-serif); font-size: 1.1rem; color: #fff; }
.footer-links { display: flex; gap: 1.75rem; }
.footer-links a { font-size: 0.8rem; color: var(--stone-400); transition: color 0.15s; }
.footer-links a:hover { color: #fff; }
.footer-legal { width: 100%; font-size: 0.72rem; color: var(--stone-600); border-top: 1px solid var(--stone-800); padding-top: 1.25rem; margin-top: 0.5rem; }


/* ── 16. Responsive ───────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Nav */
  .hamburger { display: flex; }
  .nav { position: relative; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--cream);
    border-top: 1px solid var(--stone-200);
    border-bottom: 1px solid var(--stone-200);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 0.85rem var(--px);
    width: 100%;
    border-bottom: 1px solid var(--stone-100);
  }
  .nav-links .btn { margin: 0.75rem var(--px) 0.75rem; width: auto; }
  .nav-account { width: 100%; }
  .nav-account-btn { display: none; }
  .nav-dropdown {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    min-width: unset;
  }
  .nav-dropdown-item {
    padding: 0.85rem var(--px);
    border-radius: 0;
    font-size: 0.875rem;
    font-weight: 500;
    border-bottom: 1px solid var(--stone-100);
    line-height: normal;
  }
  .nav-dropdown-divider { display: none; }

  /* Layouts */
  .value-grid        { grid-template-columns: 1fr; gap: 2rem; }
  .exp-layout        { grid-template-columns: 1fr; }
  .checkout-layout   { grid-template-columns: 1fr; }
  .gift-layout       { grid-template-columns: 1fr; gap: 2rem; }
  .booking-card      { position: static; }
  .order-card        { position: static; }
  .section-header-row { flex-direction: column; align-items: flex-start; gap: 1rem; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  :root { --px: 1rem; }
  .section { padding: 3rem 0; }
  .hero { min-height: 70vh; }
  .hero-content { padding: 4rem var(--px); }
  .card-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .exp-hero { height: 320px; }
  .confirm-wrap { margin: 2.5rem auto; }
}
