/* ==========================================================================
   BOOK IT EPIC — ARBITRAGE ARCHETYPE (B)
   Visual gold standard: tahoepartypontoon.com
   Bold hero, italicized emphasis words, warm cta, sticky nav.
   ========================================================================== */

/* 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: '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: 'Bricolage Grotesque', 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h1 em, h2 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 700;
}

.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: rgba(255,255,255,0.96);
  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: 'Bricolage Grotesque', 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 rgba(0,0,0,0.16);
}
.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: #fff !important;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
}
.nav-cta:hover { background: #E5651F; 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: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,43,69,0.35) 0%, rgba(13,43,69,0.75) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 780px;
}
.hero-eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(40px, 5.5vw, 68px);
  color: #fff;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 20px;
  color: rgba(255,255,255,0.92);
  margin-bottom: 40px;
  max-width: 620px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Feature strip under hero */
.feature-strip {
  background: var(--surface-alt);
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.feature-strip-inner {
  display: flex; gap: 28px; align-items: center; justify-content: center;
  flex-wrap: wrap;
  font-size: 14px; font-weight: 500;
  color: var(--text);
}
.feature-strip-item::before {
  content: "•"; color: var(--secondary); margin-right: 10px; font-size: 20px; vertical-align: middle;
}

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

.section { padding: 96px 0; }
.section-alt { background: var(--surface-alt); }
.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  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;
}

/* --------------------------------------------------------------------------
   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: #fff;
  box-shadow: 0 4px 12px rgba(249,115,22,0.35);
}
.btn-primary:hover { box-shadow: 0 6px 20px rgba(249,115,22,0.45); }
.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(6px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.25); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.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 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: #fff;
  border-radius: 50%;
  font-size: 12px;
  text-align: center;
  line-height: 20px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .product-showcase { grid-template-columns: 1fr; gap: 32px; }
  .product-features { 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: #fff;
  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, #fff 60%, var(--surface-alt) 100%);
}
.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pricing-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 8px;
}
.pricing-value {
  font-family: 'Bricolage Grotesque', sans-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;
}
.booking-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .15s, box-shadow .15s;
}
.booking-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
.booking-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.booking-card-body { padding: 18px; }
.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: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 8px;
}
.booking-price {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}
.booking-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 14px;
}

/* --------------------------------------------------------------------------
   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: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .15s, box-shadow .15s;
}
.occasion-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  text-decoration: none;
}
.occasion-card img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.occasion-card-body { padding: 22px; }
.occasion-card-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 8px;
}
.occasion-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  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: 'Bricolage Grotesque', sans-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 {
  cursor: pointer;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--primary);
  list-style: none;
  padding-right: 40px;
  position: relative;
}
.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;
}

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

.final-cta {
  background: var(--primary);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}
.final-cta h2 { color: #fff; margin-bottom: 20px; font-size: clamp(32px, 4vw, 48px); }
.final-cta h2 em { color: var(--accent); font-style: italic; }
.final-cta p {
  color: rgba(255,255,255,0.85);
  font-size: 19px;
  max-width: 620px;
  margin: 0 auto 36px;
}

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

footer {
  background: #0A1F32;
  color: rgba(255,255,255,0.85);
  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: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
.footer-tagline {
  color: rgba(255,255,255,0.7);
  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: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.85); }
.footer-links a:hover { color: var(--accent); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  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: #fff;
  border-top: 1px solid var(--line);
  padding: 12px 16px;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.06);
}
.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: #fff;
  overflow: hidden;
}
.cta-box h3 {
  font-family: 'Bricolage Grotesque', 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}
.cta-box h3 em {
  color: var(--accent);
  font-style: italic;
}
.cta-box p {
  color: rgba(255,255,255,0.85);
  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: #fff;
  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; }

/* --------------------------------------------------------------------------
   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); }
