/* ==========================================================================
  BOOK IT EPIC — ARBITRAGE ARCHETYPE (B)
  Shared layout system with per-site theme tokens.
  ========================================================================== */

/* Palette variables are injected at build time from SiteConfig.palette */

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

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

body {
  font-family: 'DM Sans', 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--secondary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Display font for hero + section headings */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h1 em, h2 em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --------------------------------------------------------------------------
   NAV — sticky, transparent-on-hero, filled-on-scroll
   -------------------------------------------------------------------------- */

.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: color-mix(in srgb, var(--surface) 96%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: transform .2s;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-brand {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--primary);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav-brand:hover { text-decoration: none; }
.nav-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--text) 16%, transparent);
}
.nav-brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 0.95;
}
.nav-brand-sub {
  letter-spacing: 0.08em;
}
.nav-links { display: flex; gap: 26px; align-items: center; list-style: none; }
.nav-links a { color: var(--text); font-weight: 500; font-size: 15px; }
.nav-links a:hover { color: var(--accent); text-decoration: none; }
.nav-cta {
  padding: 10px 20px !important;
  background: var(--accent);
  color: var(--surface) !important;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
}
.nav-cta:hover { background: color-mix(in srgb, var(--accent) 85%, var(--text)); text-decoration: none !important; }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
}

/* --------------------------------------------------------------------------
   HERO — big image, headline overlay, feature strip beneath
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 640px;
  padding: 140px 0 60px;
  background: var(--primary);
  color: var(--surface);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.image-overlay::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, color-mix(in srgb, var(--text) 65%, transparent) 0%, color-mix(in srgb, var(--text) 35%, transparent) 45%, color-mix(in srgb, var(--text) 10%, transparent) 100%);
}
.image-overlay + .hero-content,
.image-overlay ~ .booking-card-body { position: relative; z-index: 2; }
.hero h1,
.hero-sub,
.booking-card-photo h3,
.booking-card-photo p,
.occasion-card.image-overlay .occasion-card-title,
.occasion-card.image-overlay .occasion-card-desc {
  text-shadow: 0 1px 3px color-mix(in srgb, var(--text) 50%, transparent);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 780px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent) 65%, transparent);
  background: color-mix(in srgb, var(--accent) 18%, transparent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--surface);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(40px, 5.5vw, 68px);
  color: var(--surface);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 20px;
  color: color-mix(in srgb, var(--surface) 92%, transparent);
  margin-bottom: 40px;
  max-width: 620px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Feature strip under hero */
.feature-strip {
  background: color-mix(in srgb, var(--primary) 92%, var(--text));
  padding: 20px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--surface) 12%, transparent);
}
.feature-strip-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  align-items: stretch;
  font-size: 14px;
  font-weight: 600;
  color: color-mix(in srgb, var(--surface) 92%, transparent);
}
.feature-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid color-mix(in srgb, var(--surface) 15%, transparent);
  border-radius: 10px;
  background: color-mix(in srgb, var(--surface) 4%, transparent);
}
.feature-strip-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  flex: 0 0 auto;
}

/* --------------------------------------------------------------------------
   SECTION — universal section wrapper with eyebrow + centered title
   -------------------------------------------------------------------------- */

.section { padding: 96px 0; background: var(--surface); }
.section-alt { background: var(--surface-alt); }
.section-dark {
  background: var(--primary);
  color: color-mix(in srgb, var(--surface) 92%, transparent);
}
.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(32px, 4vw, 50px);
  text-align: center;
  color: var(--primary);
  margin-bottom: 20px;
}
.section-sub {
  text-align: center;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 60px;
  font-size: 18px;
}

.section-dark .section-title { color: var(--surface); }
.section-dark .section-sub { color: color-mix(in srgb, var(--surface) 82%, transparent); }
.section-dark .section-eyebrow { color: color-mix(in srgb, var(--accent) 90%, var(--surface)); }

/* --------------------------------------------------------------------------
   BUTTONS + CTAS
   -------------------------------------------------------------------------- */

.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: transform .1s, box-shadow .1s;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: var(--surface);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent) 35%, transparent);
}
.btn-primary:hover { box-shadow: 0 6px 20px color-mix(in srgb, var(--accent) 45%, transparent); }
.btn-secondary {
  background: transparent;
  color: var(--surface);
  border: 1.5px solid color-mix(in srgb, var(--surface) 65%, transparent);
  backdrop-filter: blur(6px);
}
.btn-secondary:hover { background: color-mix(in srgb, var(--surface) 25%, transparent); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--surface); }
.btn-block { display: block; width: 100%; }

/* --------------------------------------------------------------------------
   FEATURE / PRODUCT SHOWCASE (Weekender-style split)
   -------------------------------------------------------------------------- */

.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.product-showcase > :only-child {
  grid-column: 1 / -1;
}
.product-showcase img {
  border-radius: 12px;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.product-showcase-body h3 {
  font-size: 30px;
  margin-bottom: 20px;
  color: var(--primary);
}
.product-showcase-body p { margin-bottom: 16px; color: var(--text-muted); font-size: 17px; }
.product-features {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
  margin: 24px 0 32px;
}
.product-features-item {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  padding-left: 28px;
  position: relative;
}
.product-features-item::before {
  content: "✓";
  position: absolute;
  left: 0; top: 1px;
  width: 20px; height: 20px;
  background: var(--secondary);
  color: var(--surface);
  border-radius: 50%;
  font-size: 12px;
  text-align: center;
  line-height: 20px;
  font-weight: 700;
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: 20px;
  margin: 24px 0 12px;
  align-items: stretch;
}

.scenario-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.scenario-item h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  color: var(--primary);
  line-height: 1.2;
}

.scenario-guidance {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
}

.scenario-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.scenario-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--surface-alt);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.scenario-facts {
  display: grid;
  gap: 10px;
  flex: 1 1 auto;
  min-height: 0;
  align-content: start;
}

.scenario-facts-group h5 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px;
  color: var(--primary);
  margin-bottom: 6px;
}

.scenario-facts-group ul {
  list-style: disc;
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.scenario-facts-group li {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.45;
}

.scenario-book-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: auto;
  align-items: stretch;
}

.scenario-book-tile {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 100%;
}

.scenario-book-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  color: var(--primary);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.scenario-book-meta {
  color: var(--text-muted);
  font-size: 12px;
}

.scenario-book-price {
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
}

.btn-sm {
  padding: 10px 12px;
  font-size: 13px;
}

.scenario-book-tile .btn {
  margin-top: auto;
}

.scenario-page-link {
  color: var(--secondary);
  font-weight: 700;
  font-size: 14px;
  margin-top: 6px;
}
.product-showcase-body > .scenario-grid + .btn {
  display: block;
  width: max-content;
  margin: 24px auto 0;
}

@media (min-width: 1201px) {
  .scenario-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .scenario-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 880px) {
  .scenario-book-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .product-showcase { grid-template-columns: 1fr; gap: 32px; }
  .product-features { grid-template-columns: 1fr; }
  .scenario-grid { grid-template-columns: 1fr; }
  .scenario-book-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   PRICING CARDS
   -------------------------------------------------------------------------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 840px; margin: 0 auto;
}
.pricing-card {
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 36px 32px;
  text-align: center;
  position: relative;
  transition: border-color .15s, transform .15s;
}
.pricing-card:hover {
  border-color: var(--secondary);
  transform: translateY(-4px);
}
.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--surface) 60%, var(--surface-alt) 100%);
}
.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--surface);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pricing-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 8px;
}
.pricing-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 54px;
  color: var(--primary);
  font-weight: 800;
  line-height: 1;
  margin: 12px 0 4px;
}
.pricing-value-sub { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }

/* --------------------------------------------------------------------------
   BOOKING GRID (operator/item cards)
   -------------------------------------------------------------------------- */

.booking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
  align-items: stretch;
}
.booking-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .15s, box-shadow .15s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.booking-card-photo {
  position: relative;
  min-height: 520px;
  border: none;
  overflow: hidden;
}
.booking-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--text) 8%, transparent);
}
.booking-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.booking-card-photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}
.booking-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.booking-card-photo .booking-card-body {
  position: relative;
  z-index: 2;
  margin-top: auto;
  justify-content: flex-end;
  min-height: 100%;
  padding: 22px;
}
.booking-operator {
  color: var(--secondary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.booking-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 8px;
}
.booking-price {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}
.booking-card-photo .booking-operator,
.booking-card-photo h3,
.booking-card-photo .booking-card-section h4,
.booking-card-photo .booking-card-section p,
.booking-card-photo .booking-card-section li,
.booking-card-photo .booking-card-details summary,
.booking-card-photo .booking-card p {
  color: color-mix(in srgb, var(--surface) 95%, transparent);
}
.booking-card-photo .booking-price {
  color: var(--surface);
  text-shadow: 0 2px 16px color-mix(in srgb, var(--text) 42%, transparent);
}
.booking-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 14px;
}
.booking-card-summary {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.booking-card-sections {
  display: grid;
  gap: 14px;
  margin-bottom: 16px;
  flex: 1;
}
.booking-card-section h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 6px;
}
.booking-card-section p,
.booking-card-section li {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}
.booking-card-section p + p,
.booking-card-section li + li {
  margin-top: 8px;
}
.booking-card-section ul,
.booking-card-details-body ul {
  list-style: disc;
  padding-left: 18px;
  margin: 8px 0 0;
  display: grid;
  gap: 8px;
}
.booking-card-details {
  border-top: 1px solid color-mix(in srgb, var(--line) 75%, transparent);
  padding-top: 12px;
}
.booking-card-details summary {
  cursor: pointer;
  color: var(--secondary);
  font-weight: 700;
  list-style: none;
  position: relative;
  padding-right: 22px;
}
.booking-card-details summary::-webkit-details-marker { display: none; }
.booking-card-details summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -1px;
  font-size: 18px;
  line-height: 1;
}
.booking-card-details[open] summary::after { content: "−"; }
.booking-card-details-body {
  display: grid;
  gap: 14px;
  padding-top: 12px;
}
.booking-card-body .btn {
  margin-top: auto;
}

/* --------------------------------------------------------------------------
   USE-CASE / OCCASION GRID (Bachelor, Bachelorette, Family, ...)
   -------------------------------------------------------------------------- */

.occasions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.occasion-card {
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
  border: 0;
  transition: transform .15s, box-shadow .15s;
  position: relative;
}
.occasion-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--text) 8%, transparent);
  text-decoration: none;
}
.occasion-card img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.occasion-card-body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 24px;
  background: transparent;
}
.occasion-card.image-overlay::after { z-index: 1; }
.occasion-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  color: var(--surface);
  margin-bottom: 8px;
}
.occasion-card-desc {
  font-size: 14px;
  color: color-mix(in srgb, var(--surface) 86%, transparent);
  line-height: 1.5;
}
.occasion-card-more {
  display: inline-block;
  margin-top: 14px;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
}

/* --------------------------------------------------------------------------
   WHY-US GRID (icon feature blocks)
   -------------------------------------------------------------------------- */

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.why-item h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 12px;
  padding-top: 14px;
  border-top: 3px solid var(--accent);
  display: inline-block;
}
.why-item p { color: var(--text-muted); font-size: 15px; }

/* --------------------------------------------------------------------------
   FAQ (collapsible)
   -------------------------------------------------------------------------- */

.faq { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq-item summary {
  display: block;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--primary);
  list-style: none;
  padding-right: 40px;
  position: relative;
}
.faq-question {
  display: block;
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0; top: -2px;
  font-size: 30px;
  font-weight: 300;
  color: var(--secondary);
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer {
  padding: 16px 0 4px;
  color: var(--text-muted);
  line-height: 1.65;
}
.faq-answer p + p { margin-top: 14px; }

/* Markdown-derived editorial content */
.editorial > * + * { margin-top: 20px; }
.editorial h2 { margin-top: 48px; margin-bottom: 0; }
.editorial h3,
.editorial h4,
.editorial h5,
.editorial h6 { margin-top: 32px; margin-bottom: 0; }
.editorial p,
.editorial ul,
.editorial ol,
.editorial blockquote,
.editorial table { margin-bottom: 0; }
.editorial ul,
.editorial ol { padding-left: 24px; display: grid; gap: 8px; }
.editorial table { margin-top: 0; }

/* --------------------------------------------------------------------------
   FINAL CTA — deep dark block at bottom
   -------------------------------------------------------------------------- */

.final-cta {
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 90%, var(--text)) 0%, color-mix(in srgb, var(--secondary) 30%, var(--primary)) 100%);
  color: var(--surface);
  padding: 100px 0;
  text-align: center;
}
.final-cta h2 { color: var(--surface); margin-bottom: 20px; font-size: clamp(32px, 4vw, 48px); }
.final-cta h2 em { color: var(--accent); font-style: italic; }
.final-cta p {
  color: color-mix(in srgb, var(--surface) 85%, transparent);
  font-size: 19px;
  max-width: 620px;
  margin: 0 auto 36px;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */

footer {
  background: var(--primary);
  color: color-mix(in srgb, var(--surface) 85%, transparent);
  padding: 60px 0 30px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--surface);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
.footer-tagline {
  color: color-mix(in srgb, var(--surface) 70%, transparent);
  line-height: 1.6;
  max-width: 340px;
  margin-bottom: 20px;
}
.footer-heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--surface) 50%, transparent);
  margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: color-mix(in srgb, var(--surface) 85%, transparent); }
.footer-links a:hover { color: var(--accent); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid color-mix(in srgb, var(--surface) 10%, transparent);
  padding-top: 24px;
  font-size: 12px;
  color: color-mix(in srgb, var(--surface) 50%, transparent);
  line-height: 1.6;
}
.footer-disclosure { margin-top: 8px; font-style: italic; }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   MOBILE BOOKING BAR (sticky bottom CTA)
   -------------------------------------------------------------------------- */

.mobile-book-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 12px 16px;
  box-shadow: 0 -4px 12px color-mix(in srgb, var(--text) 6%, transparent);
}
.mobile-book-bar .btn { width: 100%; padding: 14px; font-size: 17px; }
@media (max-width: 768px) {
  .mobile-book-bar { display: block; }
  body { padding-bottom: 78px; }
  .hero { padding-top: 100px; min-height: 520px; }
  .hero-sub { font-size: 17px; }
  .section { padding: 64px 0; }
}

/* --------------------------------------------------------------------------
   CTA BOXES (inline Lightframe booking links with emphasis boxes)
   -------------------------------------------------------------------------- */

.cta-box {
  position: relative;
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
  margin: 40px auto;
  max-width: 780px;
  background: var(--primary);
  color: var(--surface);
  overflow: hidden;
}
.cta-box h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--surface);
}
.cta-box h3 em {
  color: var(--accent);
  font-style: italic;
}
.cta-box p {
  color: color-mix(in srgb, var(--surface) 85%, transparent);
  margin-bottom: 24px;
  font-size: 17px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-box .btn { margin-top: 8px; }
@media (max-width: 768px) {
  .cta-box { padding: 36px 20px; margin: 24px 12px; }
  .cta-box h3 { font-size: 22px; }
}

/* --------------------------------------------------------------------------
   COST TABLE (comparison/details table)
   -------------------------------------------------------------------------- */

table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 16px;
}
th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
th {
  background: var(--surface-alt);
  font-weight: 600;
  color: var(--text);
}
tr:last-child td { border-bottom: none; }

/* Cost/pricing comparison table — used in article content */
.cost-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 32px;
  font-size: 15px;
  border-radius: 8px;
  overflow: hidden;
}
.cost-table th {
  background: var(--primary);
  color: var(--surface);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.03em;
}
.cost-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}
.cost-table tr:nth-child(even) {
  background: var(--surface-alt);
}
.cost-table tr:last-child td { border-bottom: none; }

.table-scroll {
  overflow: visible;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}
.comparison-table {
  width: 100%;
  min-width: 0;
  margin: 0;
  table-layout: fixed;
}
.comparison-table th,
.comparison-table td {
  white-space: normal;
  overflow: hidden;
}
.comparison-table .table-operator-head,
.comparison-table .table-operator-cell { width: 17%; }
.comparison-table .table-trip-head,
.comparison-table .table-trip-cell { width: 28%; }
.comparison-table .table-duration-head,
.comparison-table .table-duration-cell { width: 16%; }
.comparison-table .table-price-head,
.comparison-table .table-price-cell { width: 12%; }
.comparison-table .table-unit-head,
.comparison-table .table-unit-cell { width: 11%; }
.comparison-table .table-book-head,
.comparison-table .table-book-cell { width: 16%; }
.table-trip-cell { overflow: hidden; text-overflow: ellipsis; white-space: nowrap !important; }
.table-price-unit { display: none; }
.table-book-head,
.table-book-cell {
  text-align: right;
}
.table-book-cell {
  position: sticky;
  right: 0;
  z-index: 2;
  background: var(--surface);
}
.comparison-table tr:nth-child(even) .table-book-cell { background: var(--surface-alt); }
.table-book-btn {
  padding: 8px 12px;
  font-size: 13px;
  width: 110px;
  justify-content: center;
}
.table-book-empty {
  display: inline-block;
  width: 110px;
  height: 34px;
}

@media (min-width: 641px) and (max-width: 1024px) {
  .comparison-table .table-operator-head,
  .comparison-table .table-operator-cell { width: 24%; }
  .comparison-table .table-trip-head,
  .comparison-table .table-trip-cell { width: 39%; }
  .comparison-table .table-price-head,
  .comparison-table .table-price-cell { width: 19%; }
  .comparison-table .table-book-head,
  .comparison-table .table-book-cell { width: 18%; }
  .comparison-table .table-duration-head,
  .comparison-table .table-duration-cell,
  .comparison-table .table-unit-head,
  .comparison-table .table-unit-cell { display: none; }
  .comparison-table .table-price-unit { display: inline; }
  .comparison-table .table-book-btn { width: 100%; }
}

@media (max-width: 640px) {
  .table-scroll {
    overflow: visible;
    border: 0;
    background: transparent;
  }
  .pricing-table,
  .comparison-table {
    min-width: 0;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
    margin: -12px 0 20px;
  }
  .pricing-table thead,
  .comparison-table thead {
    display: none;
  }
  .pricing-table tbody,
  .comparison-table tbody {
    display: block;
  }
  .pricing-table tr,
  .comparison-table tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0 12px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
    box-shadow: 0 4px 14px color-mix(in srgb, var(--text) 6%, transparent);
  }
  .pricing-table td,
  .comparison-table td {
    display: block;
    padding: 0;
    border: 0;
    white-space: normal;
  }
  .comparison-table .table-operator-cell {
    grid-column: 1;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 700;
  }
  .comparison-table .table-trip-cell {
    grid-column: 2;
    text-align: right;
    color: var(--primary);
    font-weight: 700;
  }
  .comparison-table .table-price-cell {
    grid-column: 1 / -1;
    padding-top: 6px;
    color: var(--primary);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-weight: 800;
  }
  .comparison-table .table-duration-cell,
  .comparison-table .table-unit-cell {
    display: none;
  }
  .comparison-table .table-book-cell {
    grid-column: 1 / -1;
    width: 100%;
    padding-top: 14px;
    text-align: left;
  }
  .comparison-table .table-book-btn {
    display: flex;
    width: 100%;
    min-width: 0;
    justify-content: center;
  }
  .comparison-table .table-book-empty {
    display: block;
    width: 100%;
    height: 36px;
  }
  .comparison-table .table-price-unit { display: inline; }
}

/* --------------------------------------------------------------------------
   BREADCRUMB (for article/guide pages)
   -------------------------------------------------------------------------- */

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  color: var(--text-muted);
  margin: 16px 0 32px;
}
.breadcrumb a {
  color: var(--secondary);
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--text-muted); }
