/* ══════════════════════════════════════════════════════════════════
   CCR Website v2 — Full Rebuild CSS
   All new component styles for the upgraded homepage
   ══════════════════════════════════════════════════════════════════ */

/* ─── Additional Tokens ───────────────────────────────────────── */
:root {
  --ccr-gold: #c9a227;
  --ccr-green: #22c55e;
  --btn-sm-pad: var(--space-2) var(--space-4);
}

/* ─── Utility Additions ───────────────────────────────────────── */
.w-full { width: 100%; }
.body-copy { font-size: var(--text-base); color: var(--color-text-muted); line-height: 1.7; max-width: 56ch; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: var(--space-2); margin-block: var(--space-4); }
.feature-list li { display: flex; align-items: center; gap: var(--space-3); font-size: var(--text-sm); color: var(--color-text-muted); }
.feature-list li::before { content: '→'; color: var(--ccr-red); font-weight: 700; flex-shrink: 0; }

/* ─── Btn additions ───────────────────────────────────────────── */
.btn--sm { padding: var(--btn-sm-pad); font-size: var(--text-xs); }
.btn--block { width: 100%; justify-content: center; }
.btn--white { background: white; color: var(--ccr-red); font-weight: 700; }
.btn--white:hover { background: rgba(255,255,255,0.9); transform: translateY(-1px); }
.btn--outline {
  background: transparent;
  border: 1.5px solid var(--color-border);
  color: var(--color-text);
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-3) var(--space-6); border-radius: var(--radius-md);
  font-size: var(--text-sm); font-weight: 600; cursor: pointer;
  transition: all var(--ease) 180ms; text-decoration: none;
}
.btn--outline:hover { border-color: var(--ccr-red); color: var(--ccr-red); }

/* ─── Urgency Banner ──────────────────────────────────────────── */
.urgency-banner {
  background: var(--ccr-red);
  color: white;
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  position: relative;
  z-index: 200;
}
.urgency-banner .container { display: flex; align-items: center; justify-content: center; gap: var(--space-4); }
.urgency-banner__text { text-align: center; }
.urgency-banner__cta { color: white; font-weight: 700; text-decoration: underline; margin-left: var(--space-2); }
.urgency-banner__close { background: transparent; border: none; color: rgba(255,255,255,0.7); font-size: 1.25rem; line-height: 1; cursor: pointer; padding: 0 var(--space-2); position: absolute; right: var(--space-4); top: 50%; transform: translateY(-50%); }

/* ─── Site Header (Sticky) ────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ccr-red);
  transition: background 300ms var(--ease), box-shadow 300ms var(--ease);
}
.site-header.is-scrolled {
  background: var(--ccr-red);
  box-shadow: 0 2px 20px rgba(155,5,6,0.3);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  height: 64px;
}
.site-header__logo { text-decoration: none; flex-shrink: 0; }
.site-header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}
.nav-link {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  transition: all 180ms var(--ease);
  white-space: nowrap;
  display: flex; align-items: center; gap: var(--space-1);
}
.nav-link:hover { color: white; background: rgba(255,255,255,0.12); }
.nav-link--phone { color: rgba(255,255,255,0.7); font-size: var(--text-xs); }
.site-header__actions { display: flex; align-items: center; gap: var(--space-3); }

/* Mobile nav toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.12); border: none; border-radius: var(--radius-sm); cursor: pointer;
}
.mobile-menu-toggle span {
  display: block; width: 20px; height: 2px; background: white;
  border-radius: 2px; transition: all 180ms var(--ease);
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-6);
  background: #7a0405;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav__link {
  color: rgba(255,255,255,0.9); text-decoration: none;
  font-size: var(--text-base); padding: var(--space-3);
  border-radius: var(--radius-sm);
}
.mobile-nav__link:hover { background: rgba(255,255,255,0.1); color: white; }

@media (max-width: 768px) {
  .site-header__nav { display: none; }
  .nav-link--phone { display: none; }
  .mobile-menu-toggle { display: flex; }
  .header-book-btn { display: none; }
}

/* ─── Hero ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: white;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.72) 0%, rgba(155,5,6,0.45) 100%);
}
.hero__content {
  position: relative; z-index: 1;
  padding-block: clamp(var(--space-16), 12vh, var(--space-24));
  max-width: 720px;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-4);
  font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.06em;
  margin-bottom: var(--space-5); color: white;
}
.hero__headline {
  font-size: var(--text-hero);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-5);
  color: white;
}
.hero__explore {
  display: block;
  color: rgba(255,255,255,0.35);
  font-size: 0.6em;
  letter-spacing: 0.08em;
  font-weight: 400;
  margin-top: var(--space-1);
}
.hero__sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-8);
  max-width: 54ch;
  line-height: 1.6;
}
.hero__sub strong { color: white; }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-6);
}
.hero__trust-item {
  display: flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-sm); color: rgba(255,255,255,0.85);
}
.hero__rating {
  position: relative; z-index: 1;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: var(--space-3);
}
.hero__rating-inner {
  display: flex; align-items: center; gap: var(--space-4); flex-wrap: wrap;
}
.hero__rating-text { font-size: var(--text-sm); color: rgba(255,255,255,0.85); }
.hero__rating-text strong { color: white; }
.hero__rating-cta {
  color: rgba(255,255,255,0.7); font-size: var(--text-xs); text-decoration: underline;
  margin-left: auto;
}

/* ─── Booking Widget ─────────────────────────────────────────── */
.hero__booking-widget {
  background: rgba(255,255,255,0.97);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  max-width: 580px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
  color: var(--color-text);
}
.booking-widget__header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: var(--space-4);
}
.booking-widget__title { font-weight: 700; font-size: var(--text-base); }
.booking-widget__badge {
  background: #dcfce7; color: #15803d;
  font-size: var(--text-xs); font-weight: 600;
  padding: var(--space-1) var(--space-3); border-radius: var(--radius-full);
}
.booking-widget__fields {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.booking-widget__field { display: flex; flex-direction: column; gap: var(--space-1); }
.booking-widget__field label { font-size: var(--text-xs); font-weight: 600; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.booking-widget__field input,
.booking-widget__field select {
  padding: var(--space-3); border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md); font-size: var(--text-sm);
  background: var(--color-bg); color: var(--color-text);
  transition: border-color 150ms;
}
.booking-widget__field input:focus,
.booking-widget__field select:focus { border-color: var(--ccr-red); outline: none; }
.booking-widget__footer { display: flex; flex-direction: column; gap: var(--space-3); }
.booking-widget__price {
  display: flex; align-items: baseline; gap: var(--space-3); flex-wrap: wrap;
  padding: var(--space-3); background: var(--color-surface-2); border-radius: var(--radius-md);
}
.price-label { font-size: var(--text-xs); color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.price-value { font-size: var(--text-lg); font-weight: 700; color: var(--ccr-red); font-family: var(--font-display); }
.price-note { font-size: var(--text-xs); color: var(--color-text-muted); }
.price-note strong { color: var(--ccr-red); }
.booking-widget__btn { width: 100%; }

@media (max-width: 600px) {
  .booking-widget__fields { grid-template-columns: 1fr; }
  .hero__booking-widget { padding: var(--space-4); }
}

/* ─── Stars ──────────────────────────────────────────────────── */
.stars { color: #f59e0b; font-size: var(--text-lg); letter-spacing: 0.05em; line-height: 1; }
.stars--sm { font-size: var(--text-sm); }
.stars--lg { font-size: var(--text-xl); }

/* ─── Trust Bar ──────────────────────────────────────────────── */
.trust-bar {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-divider);
  padding-block: var(--space-4);
}
.trust-bar__inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--space-4);
}
.trust-badge {
  display: flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-sm); font-weight: 500; color: var(--color-text-muted);
}
.trust-badge svg { color: var(--ccr-red); flex-shrink: 0; }
.trust-badge--stars .stars { color: #f59e0b; }

/* ─── Section Headers ────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: var(--space-12); }
.section-eyebrow {
  display: inline-block;
  font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ccr-red);
  margin-bottom: var(--space-3);
}
.section-title {
  font-size: var(--text-2xl); font-weight: 700;
  color: var(--color-text); line-height: 1.1;
  letter-spacing: -0.025em; margin-bottom: var(--space-4);
}
.section-sub { font-size: var(--text-base); color: var(--color-text-muted); max-width: 56ch; margin-inline: auto; }

/* ─── New Pricing Cards ──────────────────────────────────────── */
.pricing-preview { background: var(--color-bg); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6); margin-bottom: var(--space-8);
}
.pricing-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--color-border);
  overflow: hidden;
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
  position: relative;
  opacity: 1; transform: translateY(20px);
}
.pricing-card.in-view { opacity: 1; transform: translateY(0); transition: opacity 400ms, transform 400ms var(--ease); }
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card--featured {
  border-color: var(--ccr-red);
  box-shadow: 0 0 0 2px var(--ccr-red), var(--shadow-md);
}
.pricing-card__badge {
  position: absolute; top: var(--space-3); right: var(--space-3);
  background: var(--ccr-red); color: white;
  font-size: var(--text-xs); font-weight: 700;
  padding: var(--space-1) var(--space-3); border-radius: var(--radius-full);
  text-transform: uppercase; letter-spacing: 0.06em; z-index: 1;
}
.pricing-card__img-wrap {
  background: #f5f4f0; padding: var(--space-4); text-align: center;
  height: 180px; display: flex; align-items: center; justify-content: center;
}
.pricing-card__img-wrap img { max-height: 150px; width: auto; object-fit: contain; }
.pricing-card__body { padding: var(--space-5); }
.pricing-card__name { font-size: var(--text-lg); color: var(--color-text); margin-bottom: var(--space-2); }
.pricing-card__desc { font-size: var(--text-sm); color: var(--color-text-muted); margin-bottom: var(--space-4); }
.pricing-card__rates { display: flex; flex-direction: column; gap: var(--space-2); margin-bottom: var(--space-5); }
.rate-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: var(--text-sm);
}
.rate-row span { color: var(--color-text-muted); }
.rate-row strong { color: var(--color-text); font-weight: 700; }
.rate-row--highlight {
  background: rgba(155,5,6,0.06); border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-3); margin-inline: calc(-1 * var(--space-3));
}
.rate-row--highlight strong { color: var(--ccr-red); }
.rate-row--walkin { border-top: 1px solid var(--color-divider); padding-top: var(--space-2); }
.rate-row--walkin span { font-style: italic; color: var(--color-text-faint); }

/* Discount strip */
.discount-strip {
  display: flex; flex-wrap: wrap; gap: var(--space-4);
  align-items: center; justify-content: center;
  padding: var(--space-4) var(--space-6);
  background: #fffbeb; border-radius: var(--radius-lg);
  border: 1px solid #fde68a;
  margin-bottom: var(--space-6);
}
.discount-item { display: flex; align-items: center; gap: var(--space-2); font-size: var(--text-sm); color: var(--color-text-muted); }
.discount-item strong { color: var(--color-text); }
.discount-item code { background: #fef3c7; padding: 2px 6px; border-radius: var(--radius-sm); font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.06em; color: #92400e; }
.discount-item svg { color: var(--ccr-red); flex-shrink: 0; }
.discount-item__link { color: var(--ccr-red); font-weight: 600; text-decoration: underline; }
.pricing-cta-row { text-align: center; }

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
}

/* ─── AI Cart Picker ─────────────────────────────────────────── */
.ai-assistant-section { background: var(--color-surface-2); }
.cart-picker {
  max-width: 640px; margin-inline: auto;
  background: var(--color-surface); border-radius: var(--radius-xl);
  border: 1.5px solid var(--color-border);
  overflow: hidden; box-shadow: var(--shadow-md);
}
.picker-step { display: none; padding: var(--space-8); }
.picker-step.active { display: block; }
.picker-q { font-size: var(--text-lg); font-weight: 700; margin-bottom: var(--space-6); text-align: center; }
.picker-options {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3);
}
.picker-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--space-2);
  padding: var(--space-4); border-radius: var(--radius-lg);
  border: 2px solid var(--color-border); background: var(--color-bg);
  cursor: pointer; transition: all 200ms var(--ease);
  font-size: var(--text-sm); font-weight: 600; color: var(--color-text);
}
.picker-btn:hover { border-color: var(--ccr-red); color: var(--ccr-red); background: rgba(155,5,6,0.04); }
.picker-btn.selected { border-color: var(--ccr-red); background: rgba(155,5,6,0.08); color: var(--ccr-red); }
.picker-icon { font-size: 1.75rem; }
.picker-back {
  display: block; margin-top: var(--space-5); background: none; border: none;
  color: var(--color-text-muted); font-size: var(--text-sm); cursor: pointer; text-align: center;
}
.picker-back:hover { color: var(--ccr-red); }
.picker-result { display: none; padding: var(--space-8); text-align: center; }
.picker-result.active { display: block; }
.picker-result__icon { font-size: 3rem; margin-bottom: var(--space-4); }
.picker-result__title { font-size: var(--text-xl); margin-bottom: var(--space-5); }
.picker-result__card { margin-bottom: var(--space-6); }
.result-detail { background: var(--color-surface-2); border-radius: var(--radius-lg); padding: var(--space-5); text-align: left; }
.result-cart-name { font-weight: 700; font-size: var(--text-base); margin-bottom: var(--space-2); }
.result-price { font-size: var(--text-2xl); font-weight: 700; color: var(--ccr-red); font-family: var(--font-display); margin-bottom: var(--space-2); }
.result-price span { font-size: var(--text-sm); font-weight: 400; color: var(--color-text-muted); }
.result-inclusions { font-size: var(--text-sm); color: var(--color-text-muted); }
.result-walkin { margin-top: var(--space-3); font-size: var(--text-sm); color: var(--color-text-muted); font-style: italic; }

/* ─── How It Works ───────────────────────────────────────────── */
.how-works { background: var(--color-bg); }
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6); margin-bottom: var(--space-8);
}
.step-card {
  text-align: center; padding: var(--space-8) var(--space-5);
  background: var(--color-surface); border-radius: var(--radius-xl);
  border: 1.5px solid var(--color-border);
  transition: all 300ms var(--ease);
  opacity: 1; transform: translateY(16px);
}
.step-card.in-view { opacity: 1; transform: translateY(0); }
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-card__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: var(--radius-full);
  background: var(--ccr-red); color: white;
  font-size: var(--text-sm); font-weight: 700; margin-bottom: var(--space-4);
}
.step-card__icon { color: var(--ccr-red); margin-bottom: var(--space-3); display: flex; justify-content: center; }
.step-card__title { font-size: var(--text-lg); font-weight: 700; margin-bottom: var(--space-2); }
.step-card__desc { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.6; }
.step-card__desc a { color: var(--ccr-red); }
.how-works__cta-row { display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap; }

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }
}

/* ─── Reviews ────────────────────────────────────────────────── */
.reviews-section { background: var(--color-surface-2); }
.reviews-rating-bar {
  display: flex; align-items: center; gap: var(--space-3);
  justify-content: center; flex-wrap: wrap; margin-top: var(--space-3);
}
.reviews-rating-num { font-size: var(--text-xl); font-weight: 700; }
.reviews-rating-source { font-size: var(--text-sm); color: var(--color-text-muted); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5); margin-bottom: var(--space-8);
}
.review-card {
  background: var(--color-surface); border-radius: var(--radius-xl);
  border: 1.5px solid var(--color-border);
  padding: var(--space-6);
  transition: all 300ms var(--ease);
  opacity: 1; transform: translateY(16px);
}
.review-card.in-view { opacity: 1; transform: translateY(0); }
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review-card__stars { color: #f59e0b; font-size: var(--text-base); margin-bottom: var(--space-3); }
.review-card__text { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.7; margin-bottom: var(--space-4); font-style: italic; }
.review-card__author { display: flex; align-items: center; gap: var(--space-3); }
.review-card__avatar {
  width: 36px; height: 36px; border-radius: var(--radius-full);
  background: var(--ccr-red); color: white; font-size: var(--text-xs);
  font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.review-card__author strong { display: block; font-size: var(--text-sm); }
.review-card__author span { font-size: var(--text-xs); color: var(--color-text-faint); }
.reviews-cta {
  text-align: center; padding: var(--space-6);
  background: var(--color-surface); border-radius: var(--radius-xl);
  border: 1.5px solid var(--color-border);
}
.reviews-cta p { font-size: var(--text-sm); color: var(--color-text-muted); margin-bottom: var(--space-4); max-width: 54ch; margin-inline: auto; }
.reviews-cta .btn + .btn { margin-left: var(--space-3); }

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}

/* ─── Video Section ──────────────────────────────────────────── */
.video-section { background: var(--color-bg); }
.video-section__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); align-items: center;
}
.video-section__text .section-title { text-align: left; }
.video-section__text .section-eyebrow { text-align: left; }
.video-embed-wrapper {
  position: relative; aspect-ratio: 16/9; border-radius: var(--radius-xl);
  overflow: hidden; cursor: pointer; background: #000;
  box-shadow: var(--shadow-lg);
}
.video-embed-wrapper img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; transition: opacity 300ms; }
.video-embed-wrapper:hover img { opacity: 0.5; }
.video-play-btn {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: transparent; border: none; cursor: pointer;
}
.video-play-btn svg { filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5)); transition: transform 200ms var(--ease); }
.video-embed-wrapper:hover .video-play-btn svg { transform: scale(1.12); }
.video-embed-label {
  position: absolute; bottom: var(--space-4); left: var(--space-4);
  font-size: var(--text-xs); color: rgba(255,255,255,0.8); background: rgba(0,0,0,0.5);
  padding: var(--space-1) var(--space-3); border-radius: var(--radius-full);
}

@media (max-width: 768px) {
  .video-section__inner { grid-template-columns: 1fr; }
}

/* ─── Conch Club ─────────────────────────────────────────────── */
.conch-club-section { background: var(--color-surface-2); }
.conch-club-card {
  display: grid; grid-template-columns: 1fr 280px;
  background: linear-gradient(135deg, var(--ccr-red) 0%, #5c0304 100%);
  border-radius: var(--radius-xl); overflow: hidden;
  color: white; padding: clamp(var(--space-8), 5vw, var(--space-12));
  gap: var(--space-8); align-items: center;
}
.conch-club-card__title { font-size: var(--text-2xl); color: white; margin-block: var(--space-3) var(--space-4); }
.conch-club-card__desc { font-size: var(--text-base); color: rgba(255,255,255,0.8); margin-bottom: var(--space-6); max-width: 42ch; }
.conch-club-card__perks { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); margin-bottom: var(--space-6); }
.conch-club-card__perks li { display: flex; align-items: center; gap: var(--space-2); font-size: var(--text-sm); color: rgba(255,255,255,0.9); }
.conch-club-card__right { display: flex; align-items: center; justify-content: center; }
.conch-club-card__badge { display: flex; flex-direction: column; align-items: center; gap: var(--space-3); }
.conch-club-card__badge span { font-size: var(--text-lg); font-weight: 700; letter-spacing: 0.12em; text-align: center; color: rgba(255,255,255,0.9); }

@media (max-width: 768px) {
  .conch-club-card { grid-template-columns: 1fr; }
  .conch-club-card__right { display: none; }
}

/* ─── FAQ Preview ────────────────────────────────────────────── */
.faq-preview { background: var(--color-bg); }
.faq-search-wrap { max-width: 560px; margin-inline: auto; margin-bottom: var(--space-8); }
.faq-search {
  display: flex; align-items: center; gap: var(--space-3);
  background: var(--color-surface); border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full); padding: var(--space-3) var(--space-5);
  box-shadow: var(--shadow-sm);
  transition: border-color 150ms;
}
.faq-search:focus-within { border-color: var(--ccr-red); }
.faq-search svg { color: var(--color-text-faint); flex-shrink: 0; }
.faq-search input {
  flex: 1; border: none; background: transparent; outline: none;
  font-size: var(--text-sm); color: var(--color-text);
}
.faq-list { max-width: 720px; margin-inline: auto; margin-bottom: var(--space-8); }
/* .faq-item styles live in faq.html page <style> block — do not set here */
/* .faq-item { } — intentionally empty to avoid opacity conflicts */
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-4); padding: var(--space-5) 0;
  background: transparent; border: none; cursor: pointer;
  font-size: var(--text-base); font-weight: 600; color: var(--color-text); text-align: left;
  transition: color 150ms;
}
.faq-q:hover { color: var(--ccr-red); }
.faq-q[aria-expanded="true"] { color: var(--ccr-red); }
.faq-q[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-chevron { flex-shrink: 0; transition: transform 200ms var(--ease); color: var(--color-text-faint); }
.faq-a { padding-bottom: var(--space-5); }
.faq-a p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.7; margin-bottom: var(--space-2); }
.faq-a strong { color: var(--color-text); }
.faq-more { text-align: center; }

/* ─── App Section ────────────────────────────────────────────── */
.app-section { background: var(--color-surface-2); }
.app-section__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); align-items: center;
}
.app-section__text .section-title { text-align: left; }
.app-section__text .section-eyebrow { text-align: left; }
.app-badges { display: flex; gap: var(--space-4); flex-wrap: wrap; margin-top: var(--space-5); }
.app-badge {
  display: inline-flex; align-items: center; gap: var(--space-3);
  background: var(--color-text); color: white;
  padding: var(--space-3) var(--space-5); border-radius: var(--radius-lg);
  text-decoration: none; transition: opacity 200ms;
}
.app-badge:hover { opacity: 0.85; }
.app-badge__sub { display: block; font-size: 0.65rem; opacity: 0.7; line-height: 1.2; }
.app-badge__main { display: block; font-size: var(--text-sm); font-weight: 700; line-height: 1.2; }
.app-section__coming-soon { font-size: var(--text-xs); color: var(--color-text-faint); margin-top: var(--space-3); }
.app-section__img img { max-width: 280px; margin-inline: auto; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }

@media (max-width: 768px) {
  .app-section__inner { grid-template-columns: 1fr; }
  .app-section__img { display: none; }
}

/* ─── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--ccr-black);
  color: rgba(255,255,255,0.7);
  padding-block: var(--space-16) var(--space-8);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8); margin-bottom: var(--space-12);
}
.footer-col--brand { padding-right: var(--space-8); }
.footer-tagline { font-size: var(--text-sm); margin-block: var(--space-4); line-height: 1.6; max-width: 32ch; }
.footer-contact { display: flex; flex-direction: column; gap: var(--space-2); }
.footer-contact a, .footer-contact address {
  font-size: var(--text-sm); color: rgba(255,255,255,0.6); text-decoration: none; font-style: normal;
}
.footer-contact a:hover { color: white; }
.footer-col__title { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: var(--space-4); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-2); }
.footer-col ul a { font-size: var(--text-sm); color: rgba(255,255,255,0.6); text-decoration: none; transition: color 150ms; }
.footer-col ul a:hover { color: white; }
.footer-social { display: flex; gap: var(--space-3); margin-top: var(--space-4); }
.footer-social a { color: rgba(255,255,255,0.5); transition: color 150ms; }
.footer-social a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-6);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-3);
}
.footer-bottom p { font-size: var(--text-xs); color: rgba(255,255,255,0.4); }
.footer-bottom__powered { color: rgba(255,255,255,0.3); }
.footer-bottom__powered strong { color: rgba(255,255,255,0.5); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col--brand { grid-column: 1 / -1; padding-right: 0; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ─── Floating Book Now Button ──────────────────────────────── */
.floating-book {
  position: fixed; bottom: var(--space-6); right: var(--space-6); z-index: 90;
  display: none; align-items: center; gap: var(--space-2);
  background: var(--ccr-red); color: white;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-full); font-weight: 700; font-size: var(--text-sm);
  text-decoration: none; box-shadow: 0 4px 20px rgba(155,5,6,0.4);
  transition: transform 200ms var(--ease), box-shadow 200ms;
}
.floating-book.is-visible { display: flex; }
.floating-book:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(155,5,6,0.5); }

/* ─── Mobile Sticky Book Bar ─────────────────────────────────── */
.mobile-book-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: var(--space-3) var(--space-4);
  gap: var(--space-3);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}
.mobile-book-bar__btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: var(--space-2);
  padding: var(--space-3) var(--space-4); border-radius: var(--radius-md);
  font-size: var(--text-sm); font-weight: 700; text-decoration: none;
  transition: all 180ms var(--ease);
}
.mobile-book-bar__btn--primary { background: var(--ccr-red); color: white; }
.mobile-book-bar__btn--primary:hover { background: var(--ccr-red-dark); }
.mobile-book-bar__btn--secondary { background: var(--color-surface-2); color: var(--color-text); border: 1px solid var(--color-border); }

@media (max-width: 768px) {
  .mobile-book-bar { display: flex; }
  body { padding-bottom: 72px; }
  .floating-book { display: none !important; }
}

/* ─── Dark Mode Adjustments ──────────────────────────────────── */
[data-theme='dark'] .hero__booking-widget { background: rgba(30,29,27,0.97); }
[data-theme='dark'] .booking-widget__field input,
[data-theme='dark'] .booking-widget__field select { background: var(--color-surface-2); border-color: var(--color-border); }
[data-theme='dark'] .pricing-card { background: var(--color-surface); border-color: var(--color-border); }
[data-theme='dark'] .discount-strip { background: rgba(200,162,39,0.08); border-color: rgba(200,162,39,0.2); }
[data-theme='dark'] .conch-club-card { background: linear-gradient(135deg, #7a0405 0%, #2a0102 100%); }
[data-theme='dark'] .step-card { background: var(--color-surface); }
[data-theme='dark'] .review-card { background: var(--color-surface); }

/* ─── Nav open body lock ─────────────────────────────────────── */
body.nav-open { overflow: hidden; }

/* ─── Stagger animations ─────────────────────────────────────── */
.pricing-card:nth-child(2) { transition-delay: 80ms; }
.pricing-card:nth-child(3) { transition-delay: 160ms; }
.step-card:nth-child(2) { transition-delay: 80ms; }
.step-card:nth-child(3) { transition-delay: 160ms; }
.review-card:nth-child(2) { transition-delay: 80ms; }
.review-card:nth-child(3) { transition-delay: 160ms; }

/* ─── Footer Full Logo Lockup ────────────────────────────────── */
.footer-logo--full {
  display: inline-block;
  margin-bottom: var(--space-4);
}
.footer-logo--full img {
  width: auto;
  height: 64px;
  max-width: 220px;
  object-fit: contain;
  border-radius: var(--radius-md);
  /* White background so the logo reads on dark footer */
  background: #fff;
  padding: 6px 10px;
}

/* ─── Header Logo — Full Lockup Shrunk to Top-Left Corner ───── */
.site-header__logo {
  gap: 0;
}
.site-header__logo span {
  display: none; /* wordmark is baked into the image */
}
.header-logo-img {
  height: 38px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  border-radius: 5px;
  background: #fff;
  padding: 3px 7px;
  display: block;
}
@media (max-width: 600px) {
  .header-logo-img {
    height: 32px;
    max-width: 130px;
  }
}

/* ─── Universal Nav Link Color Fix (all pages) ───────────────── */
.site-header__nav a,
.site-header__nav .nav-link,
.site-header__nav .active {
  color: rgba(255,255,255,0.88) !important;
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 180ms ease;
  white-space: nowrap;
}
.site-header__nav a:hover,
.site-header__nav .nav-link:hover {
  color: #fff !important;
  background: rgba(255,255,255,0.12);
}
.site-header__nav a.active,
.site-header__nav .active {
  color: #fff !important;
  background: rgba(255,255,255,0.15);
  font-weight: 700;
}

/* ─── Header Logo — Mascot Only (square icon) ───────────────── */
.header-logo-img {
  height: 44px !important;
  width: 44px !important;
  max-width: 44px !important;
  object-fit: cover !important;
  border-radius: 8px !important;
  background: transparent !important;
  padding: 0 !important;
  display: block;
}

/* ── Footer logo image ───────────────────────────────────────────────────── */
.footer-logo-link { display: inline-block; margin-bottom: var(--space-4, 1rem); }
.footer-logo-img {
  height: 64px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  background: white;
  border-radius: 10px;
  padding: 8px 14px;
  display: block;
}

/* ═══════════════════════════════════════════════════════════════════════════
   COMBO DEAL CARDS — Discounts page
   ═══════════════════════════════════════════════════════════════════════════ */
.combo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-8);
}
.combo-card {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: 20px;
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: border-color 250ms, box-shadow 250ms, transform 250ms;
  position: relative;
  overflow: hidden;
}
.combo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--ccr-red);
  border-radius: 20px 20px 0 0;
}
.combo-card:hover {
  border-color: rgba(155,5,6,0.3);
  box-shadow: 0 8px 32px rgba(155,5,6,0.12);
  transform: translateY(-3px);
}
.combo-card--custom {
  background: linear-gradient(135deg, rgba(155,5,6,0.05) 0%, rgba(155,5,6,0.02) 100%);
  border-color: rgba(155,5,6,0.25);
  border-style: dashed;
}
.combo-card--custom::before { background: linear-gradient(90deg, var(--ccr-red), #ff6b35); }
.combo-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}
.combo-icon {
  font-size: 2.5rem;
  line-height: 1;
  flex-shrink: 0;
}
.combo-badge {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--ccr-red);
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.combo-badge--alt   { background: #1a7f5a; }
.combo-badge--sunset { background: #c85d1a; }
.combo-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  margin: 0;
}
.combo-desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.65;
  flex: 1;
}
.combo-includes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--color-surface-2);
  border-radius: 12px;
  padding: var(--space-4);
}
.combo-includes li {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.4;
}
.combo-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: auto;
}
.combo-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}
.combo-email {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-align: center;
  text-decoration: none;
}
.combo-email:hover { color: var(--ccr-red); }

/* ═══════════════════════════════════════════════════════════════════════════
   SOCIAL CLICK BOXES — Blog page
   ═══════════════════════════════════════════════════════════════════════════ */
.social-wall-platforms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-8);
  margin-bottom: var(--space-8);
}
@media (max-width: 768px) {
  .social-wall-platforms { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .social-wall-platforms { grid-template-columns: 1fr 1fr; gap: var(--space-3); }
}
.social-platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-6) var(--space-4);
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  color: white;
  transition: transform 250ms, box-shadow 250ms, opacity 200ms;
  min-height: 140px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.social-platform-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.22);
  opacity: 0.95;
  color: white;
}
/* Platform-specific brand colors */
.social-platform-card:nth-child(1) { background: linear-gradient(135deg, #e1306c, #833ab4, #405de6); }
.social-platform-card:nth-child(2) { background: linear-gradient(135deg, #010101, #1a1a1a); }
.social-platform-card:nth-child(3) { background: linear-gradient(135deg, #1877f2, #0d65d9); }
.social-platform-card:nth-child(4) { background: linear-gradient(135deg, #ff4500, #ff6534); }
.sp-icon {
  font-size: 2.4rem;
  line-height: 1;
}
.sp-info {
  text-align: center;
}
.sp-name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.sp-handle {
  font-size: var(--text-sm);
  opacity: 0.8;
  margin-top: 2px;
}
.sp-arrow { display: none; }

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER FIX — ensure grid layout works on sub-pages too
   ═══════════════════════════════════════════════════════════════════════════ */
.footer-bottom__powered { 
  font-size: var(--text-sm); 
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}
.footer-bottom__powered strong { color: rgba(255,255,255,0.85); }

/* ── Fade-up fallback: if JS observer doesn't fire, still show content ── */
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1 !important; transform: none !important; }
}
/* Ensure pricing-card, review-card, step-card show without observer */
.pricing-card, .review-card, .step-card {
  opacity: 1;
  transform: none;
}
.pricing-card.in-view, .review-card.in-view, .step-card.in-view {
  opacity: 1;
  transform: none;
}

/* ── Header Book Now button — sub-pages match homepage red ───────────────── */
.btn-book-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  padding: 0.45rem 1.1rem;
  background: white;
  color: var(--ccr-red) !important;
  border: 1.5px solid white;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background 180ms, color 180ms, opacity 180ms;
}
.btn-book-header:hover {
  background: rgba(255,255,255,0.88);
  color: var(--ccr-red) !important;
  opacity: 1;
}
