/*
 * Desert Adrenaline Identity System
 * Dubai Buggy Adventures — colors_and_type.css
 * v1.0 — May 2026
 *
 * Google Fonts import (use in HTML <head> or @import at top of stylesheet):
 * @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@300;400;600;700&family=Barlow:wght@300;400;500&display=swap');
 */

/* --- Base Reset & Defaults --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

/* Focus visibility — WCAG 2.1 AA SC 2.4.7 */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid #E8541A;
  outline-offset: 3px;
  border-radius: 2px;
}

body {
  background-color: var(--bg-primary);
  color: var(--fg-primary);
  font-family: var(--font-body);
  font-weight: var(--weight-body);
  line-height: var(--leading-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; }

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

/* Missing Layout Variables */
:root {
  --container-narrow: 800px;
  --section-pad: 96px;
  --section-pad-mobile: 48px;
  --card-pad: 32px;
  --card-pad-sm: 24px;
  --google-yellow: #FBBC05;
}

/* @font-face placeholders — font files to be uploaded by client.
   Until then, these resolve via Google Fonts <link> in HTML or local install. */
@font-face {
  font-family: 'Bebas Neue';
  src: local('Bebas Neue'), local('BebasNeue-Regular');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Barlow Condensed';
  src: local('Barlow Condensed'), local('BarlowCondensed-Regular');
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: 'Barlow';
  src: local('Barlow'), local('Barlow-Regular');
  font-weight: 300 500;
  font-display: swap;
}

/* ─────────────────────────────────────────────
   COLOR TOKENS
───────────────────────────────────────────── */
:root {
  /* Brand primaries */
  --color-desert-night:      #0A0A08; /* Near-black background — primary canvas */
  --color-ignition-orange:   #E8541A; /* Primary accent — CTAs, highlights, active states */
  --color-dune-gold:         #C8902A; /* Secondary warm accent — premium feel */
  --color-sand-dust:         #F0EDE6; /* Primary text on dark backgrounds */

  /* Extended palette */
  --color-charcoal:          #2A2820; /* Surface/card background */
  --color-deep-charcoal:     #14130F; /* Darker surface, specs panels */
  --color-muted-text:        #8A8A7E; /* Body copy, secondary text — #8A8A7E gives ≥5.1:1 on #0A0A08 (WCAG AA) */
  --color-divider:           rgba(240, 237, 230, 0.08); /* Subtle dividers */
  --color-orange-divider:    rgba(232, 84, 26, 0.12);   /* Header border, orange subtle */
  --color-orange-glow:       rgba(232, 84, 26, 0.22);   /* Radial glow in heroes */
  --color-gold-glow:         rgba(200, 144, 42, 0.15);  /* Radial glow secondary */

  /* Semantic aliases */
  --bg-primary:              var(--color-desert-night);
  --bg-surface:              var(--color-charcoal);
  --bg-surface-deep:         var(--color-deep-charcoal);
  --fg-primary:              var(--color-sand-dust);
  --fg-secondary:            var(--color-muted-text);
  --fg-accent:               var(--color-ignition-orange);
  --fg-accent-secondary:     var(--color-dune-gold);
  --border-subtle:           var(--color-divider);
  --border-orange:           var(--color-orange-divider);

  /* Interactive states */
  --color-cta-default:       #E8541A;
  --color-cta-hover:         #C43D08;
  --color-cta-active:        #A33206;
  --color-nav-hover:         #E8541A;
  --color-nav-active:        #E8541A;
}

/* ─────────────────────────────────────────────
   TYPOGRAPHY TOKENS
───────────────────────────────────────────── */
:root {
  /* Font families */
  --font-display:       'Bebas Neue', sans-serif;          /* Hero headlines, tour names, section titles */
  --font-headline:      'Barlow Condensed', sans-serif;    /* Sub-headings, CTAs, nav, badges */
  --font-body:          'Barlow', sans-serif;              /* Descriptions, reviews, FAQs */

  /* Display scale (Bebas Neue — always uppercase) */
  --text-display-hero:    clamp(56px, 8vw, 120px); /* Full-viewport hero */
  --text-display-xl:      clamp(48px, 6vw, 96px);  /* Section hero moments */
  --text-display-lg:      clamp(40px, 5vw, 72px);  /* Tour name headers */
  --text-display-md:      clamp(32px, 4vw, 56px);  /* Card titles, sub-sections */
  --text-display-sm:      28px;                     /* Minimum display size — never below */

  /* Headline scale (Barlow Condensed 700 — always uppercase) */
  --text-headline-lg:     24px;
  --text-headline-md:     18px;
  --text-headline-sm:     14px;
  --text-headline-xs:     12px;

  /* Body scale (Barlow 300) */
  --text-body-lg:         18px;
  --text-body-md:         16px;
  --text-body-sm:         14px;
  --text-body-xs:         12px;

  /* Letter spacing */
  --tracking-display:    0.02em;   /* ~50–100 tracking — display headlines */
  --tracking-headline:   0.05em;   /* ~30–80 tracking — subheads/nav */
  --tracking-eyebrow:    0.25em;   /* Wide eyebrow labels */
  --tracking-body:       0.01em;   /* Subtle body tracking */
  --tracking-cta:        0.12em;   /* CTA buttons */

  /* Line heights */
  --leading-display:   0.95;  /* Tight display headlines */
  --leading-headline:  1.1;   /* Condensed subheadings */
  --leading-body:      1.7;   /* Comfortable body reading */

  /* Font weights */
  --weight-display:    400; /* Bebas Neue is single-weight */
  --weight-headline:   700; /* Barlow Condensed Bold */
  --weight-subhead:    600; /* Barlow Condensed SemiBold */
  --weight-body:       300; /* Barlow Light */
  --weight-body-med:   500; /* Barlow Medium — for emphasis */
}

/* ─────────────────────────────────────────────
   SEMANTIC TYPE CLASSES
───────────────────────────────────────────── */

/* Display / Hero */
.t-display-hero {
  font-family: var(--font-display);
  font-size: var(--text-display-hero);
  font-weight: var(--weight-display);
  letter-spacing: var(--tracking-display);
  line-height: var(--leading-display);
  text-transform: uppercase;
  color: var(--fg-primary);
}

.t-display-xl {
  font-family: var(--font-display);
  font-size: var(--text-display-xl);
  font-weight: var(--weight-display);
  letter-spacing: var(--tracking-display);
  line-height: var(--leading-display);
  text-transform: uppercase;
  color: var(--fg-primary);
}

.t-display-lg {
  font-family: var(--font-display);
  font-size: var(--text-display-lg);
  font-weight: var(--weight-display);
  letter-spacing: var(--tracking-display);
  line-height: var(--leading-display);
  text-transform: uppercase;
  color: var(--fg-primary);
}

.t-display-md {
  font-family: var(--font-display);
  font-size: var(--text-display-md);
  font-weight: var(--weight-display);
  letter-spacing: var(--tracking-display);
  line-height: var(--leading-display);
  text-transform: uppercase;
  color: var(--fg-primary);
}

/* Headline / Sub-heading */
.t-headline-lg {
  font-family: var(--font-headline);
  font-size: var(--text-headline-lg);
  font-weight: var(--weight-headline);
  letter-spacing: var(--tracking-headline);
  line-height: var(--leading-headline);
  text-transform: uppercase;
  color: var(--fg-primary);
}

.t-headline-md {
  font-family: var(--font-headline);
  font-size: var(--text-headline-md);
  font-weight: var(--weight-headline);
  letter-spacing: var(--tracking-headline);
  line-height: var(--leading-headline);
  text-transform: uppercase;
  color: var(--fg-primary);
}

.t-headline-sm {
  font-family: var(--font-headline);
  font-size: var(--text-headline-sm);
  font-weight: var(--weight-headline);
  letter-spacing: var(--tracking-headline);
  line-height: var(--leading-headline);
  text-transform: uppercase;
  color: var(--fg-primary);
}

.t-headline-xs {
  font-family: var(--font-headline);
  font-size: var(--text-headline-xs);
  font-weight: var(--weight-headline);
  letter-spacing: var(--tracking-headline);
  line-height: var(--leading-headline);
  text-transform: uppercase;
  color: var(--fg-primary);
}

/* Eyebrow label */
.t-eyebrow {
  font-family: var(--font-headline);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--fg-accent);
}

/* Body */
.t-body-lg {
  font-family: var(--font-body);
  font-size: var(--text-body-lg);
  font-weight: var(--weight-body);
  line-height: var(--leading-body);
  color: var(--fg-secondary);
}

.t-body-md {
  font-family: var(--font-body);
  font-size: var(--text-body-md);
  font-weight: var(--weight-body);
  line-height: var(--leading-body);
  color: var(--fg-secondary);
}

.t-body-sm {
  font-family: var(--font-body);
  font-size: var(--text-body-sm);
  font-weight: var(--weight-body);
  line-height: var(--leading-body);
  color: var(--fg-secondary);
}

/* CTA label */
.t-cta {
  font-family: var(--font-headline);
  font-weight: 700;
  letter-spacing: var(--tracking-cta);
  text-transform: uppercase;
}

/* ─────────────────────────────────────────────
   SPACING & LAYOUT TOKENS
───────────────────────────────────────────── */
:root {
  --space-1:   4px;
  --space-2:   8px;
  --space-3:   12px;
  --space-4:   16px;
  --space-5:   24px;
  --space-6:   32px;
  --space-7:   40px;
  --space-8:   56px;
  --space-9:   80px;
  --space-10:  120px;
  --space-11:  160px;

  /* Layout */
  --container-max:  1280px;
  --container-pad:  40px;   /* desktop */
  --container-pad-mobile: 18px;

  /* Header heights */
  --header-h-desktop: 76px;
  --header-h-tablet:  62px;
  --header-h-mobile:  56px;

  /* Corner radii — very minimal, industrial */
  --radius-sm:   2px;
  --radius-md:   4px;
  --radius-lg:   6px;
  --radius-pill: 2px; /* brand uses near-square CTAs, not pills */

  /* Elevation / Shadow */
  --shadow-card:  0 2px 20px rgba(0,0,0,0.5);
  --shadow-glow:  0 0 40px rgba(232, 84, 26, 0.2);
}

/* ─────────────────────────────────────────────
   GLASSMORPHISM / OVERLAY TOKENS
   (used in sticky header and mobile menus)
───────────────────────────────────────────── */
:root {
  --glass-header-bg:     rgba(10, 10, 8, 0.72);
  --glass-header-blur:   blur(8px); /* @kind other */
  --glass-menu-bg:       rgba(10, 10, 8, 0.96);
  --glass-menu-blur:     blur(12px); /* @kind other */
}

/* ─────────────────────────────────────────────
   COMPONENT DEFAULTS (base resets for brand)
───────────────────────────────────────────── */
.dba-surface {
  background-color: var(--bg-primary);
  color: var(--fg-primary);
  font-family: var(--font-body);
  font-weight: var(--weight-body);
  -webkit-font-smoothing: antialiased;
}

.dba-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.dba-orange-rule {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--color-ignition-orange);
}

/* ============================================================
   LEGACY LAYOUT & COMPONENTS (MIGRATED TO NEW TOKENS)
   ============================================================ */

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* --- Section --- */
.section {
  padding: var(--section-pad) 0;
}

.section--dark {
  background-color: var(--bg-surface);
  background-image: radial-gradient(ellipse at 15% 85%, rgba(232,84,26,0.05) 0%, transparent 55%);
  border-top: 1px solid var(--border-orange);
}

/* --- Two-Part H1 Pattern --- */
.hero-h1 {
  text-align: center;
}

.hero-h1__keyword {
  display: block;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 13px;
  color: var(--fg-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.hero-h1__brand {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(56px, 8vw, 100px);
  color: var(--fg-primary);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.02em;
}

/* --- Headings --- */
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 6vw, 80px);
  color: var(--fg-primary);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
  text-wrap: balance;
}

h2.h2--sm {
  font-size: clamp(36px, 4.5vw, 60px);
}

h2.h2--center {
  text-align: center;
}

h3, .h3 {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 16px;
  color: var(--fg-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

/* --- Sub-headline --- */
.sub-headline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: var(--fg-primary);
  line-height: 1.7;
  max-width: var(--container-narrow);
  margin: 16px auto 0;
}

.sub-headline--center {
  text-align: center;
}

/* --- Body Text --- */
.prose {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: var(--fg-primary);
  line-height: 1.7;
  max-width: var(--container-narrow);
}

.prose p + p {
  margin-top: 20px;
}

/* --- Buttons / CTAs --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--fg-accent);
  color: #0A0A08;
  border-color: var(--fg-accent);
}

.btn--primary:hover {
  background-color: var(--color-cta-active);
  border-color: var(--color-cta-active);
  box-shadow: 0 8px 28px rgba(232,84,26,0.38);
  opacity: 1;
  transform: translateY(-1px);
}

.btn--ghost {
  background-color: transparent;
  color: var(--fg-primary);
  border-color: var(--fg-primary);
}

.btn--primary:active {
  transform: scale(0.97) translateY(1px) !important;
  background-color: var(--color-cta-active) !important;
  box-shadow: none !important;
}

.btn--ghost:active {
  transform: scale(0.97) !important;
}

.btn--full {
  width: 100%;
  text-align: center;
}

.btn-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-row--center {
  justify-content: center;
}

.btn-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
}

/* --- Cards --- */
.card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: var(--card-pad);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(8, 5, 0, 0.65), 0 0 0 1px rgba(232, 84, 26, 0.07);
}

.card--accent-top {
  border-top: 4px solid var(--fg-accent);
}

.card--accent-left {
  border-top: 1px solid rgba(232, 84, 26, 0.4);
}

.card__eyebrow {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 11px;
  color: var(--fg-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.card__title {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 16px;
  color: var(--fg-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.card__body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: var(--fg-secondary);
  line-height: 1.6;
}

.card__price {
  margin-top: 16px;
}

.card__price-prefix {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 9px;
  color: var(--fg-accent-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
}

.card__price-value {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--fg-accent);
  line-height: 1;
}

/* --- Ribbon (on cards) --- */
.ribbon {
  display: inline-block;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background-color: var(--fg-accent-secondary);
  color: var(--bg-primary);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}

/* --- Grids --- */
.grid {
  display: grid;
  gap: 24px;
}

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

/* --- Two-Column Layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* --- Stat Strip --- */
.stat-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 24px 0;
}

.stat-strip__item {
  text-align: center;
}

.stat-strip__number {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--fg-accent);
  line-height: 0.9;
}

.stat-strip__label {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 11px;
  color: var(--fg-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* Smaller inline stat strip for heroes */
.stat-strip--inline {
  gap: 24px;
  padding: 16px 0;
  justify-content: center;
}

.stat-strip--inline .stat-strip__number {
  font-size: 14px;
  font-family: var(--font-headline);
  font-weight: 700;
  color: var(--fg-primary);
}

.stat-strip--inline .stat-strip__item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.stat-strip--inline .stat-strip__label {
  font-size: 10px;
  margin-top: 0;
}

/* --- Image Placeholder --- */
.placeholder {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  padding: 32px;
  overflow: hidden;
}

.placeholder--hero {
  min-height: 420px;
  border-radius: 0;
}

.placeholder--video {
  aspect-ratio: 16 / 9;
  min-height: auto;
}

.placeholder--portrait {
  aspect-ratio: 3 / 4;
  min-height: auto;
  max-width: 220px;
}

.placeholder--square {
  aspect-ratio: 1 / 1;
  min-height: auto;
}

.placeholder__caption {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: var(--fg-secondary);
  font-style: italic;
  text-align: center;
  line-height: 1.5;
}

/* --- Ticker / Marquee --- */
.ticker {
  overflow: hidden;
  background-color: var(--bg-surface);
  padding: 16px 0;
  white-space: nowrap;
}

.ticker__track {
  display: inline-flex;
  animation: ticker-scroll 40s linear infinite;
}

.ticker__item {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 13px;
  color: var(--fg-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.ticker__item::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--fg-accent);
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(240, 237, 230, 0.1);
}

.faq-item__question {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 14px;
  color: var(--fg-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
}

.faq-item__question::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--fg-accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-item__question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-item__answer {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--fg-primary);
  line-height: 1.7;
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.4s ease;
}

.faq-item__answer > * {
  min-height: 0;
  padding-bottom: 0;
}

.faq-item.active .faq-item__answer {
  grid-template-rows: 1fr;
}

.faq-item.active .faq-item__answer > * {
  padding-bottom: 20px;
}

/* --- Review Card --- */
.review-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: var(--card-pad);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.review-card__google {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 12px;
  color: var(--fg-secondary);
  letter-spacing: 0.04em;
}

.review-card__stars {
  color: var(--google-yellow);
  font-size: 14px;
  letter-spacing: 2px;
}

.review-card__body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--fg-primary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}

.review-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.review-card__author {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 12px;
  color: var(--fg-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.review-card__date {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 11px;
  color: var(--fg-secondary);
}

.review-card__tag {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 10px;
  color: var(--fg-accent-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.review-card__readmore {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 11px;
  color: var(--fg-accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  background: none;
  border: none;
}

/* --- Aggregate Rating Display --- */
.aggregate-rating {
  text-align: center;
  padding: 32px 0;
}

.aggregate-rating__score {
  font-family: var(--font-display);
  font-size: 128px;
  color: var(--fg-accent);
  line-height: 0.9;
}

.aggregate-rating__stars {
  color: var(--google-yellow);
  font-size: 40px;
  letter-spacing: 8px;
  margin: 12px 0 8px;
}

.aggregate-rating__count {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--fg-secondary);
}

.aggregate-rating__google {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 14px;
  color: var(--fg-secondary);
  margin-top: 8px;
  letter-spacing: 0.04em;
}

/* --- Filter Pills --- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  justify-content: center;
}

.filter-pill {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid var(--fg-secondary);
  background: transparent;
  color: var(--fg-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-pill:hover,
.filter-pill.active {
  background-color: var(--fg-accent);
  border-color: var(--fg-accent);
  color: #fff;
}

/* --- Timeline (Cancellation) --- */
.timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  padding: 32px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 15%;
  right: 15%;
  height: 3px;
  background-color: var(--fg-accent);
}

.timeline__node {
  flex: 1;
  text-align: center;
  position: relative;
  max-width: 220px;
}

.timeline__dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--fg-accent);
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px var(--bg-primary), 0 0 0 6px var(--fg-accent);
}

.timeline__label {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 11px;
  color: var(--fg-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.timeline__outcome {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  color: var(--fg-secondary);
}

/* --- Pricing Table --- */
.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.price-table thead th {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 11px;
  color: var(--fg-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 16px 20px;
  background-color: var(--bg-surface);
  text-align: left;
  border-bottom: 2px solid var(--fg-accent);
}

.price-table tbody td {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--fg-primary);
  padding: 14px 20px;
  background-color: var(--bg-surface);
  border-bottom: 1px solid rgba(240, 237, 230, 0.06);
}

.price-table tbody tr:hover td {
  background-color: rgba(232, 84, 26, 0.06);
}

.price-table tbody td:first-child {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
}

/* --- Checklist --- */
.checklist {
  list-style: none;
}

.checklist li {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--fg-primary);
  line-height: 1.7;
  padding: 6px 0 6px 28px;
  position: relative;
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--fg-accent);
  font-weight: 700;
}

.checklist--add li::before {
  content: '+';
}

/* --- Pill Row --- */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.pill {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 12px 24px;
  border-radius: 100px;
  background-color: var(--bg-surface);
  color: var(--fg-primary);
}

/* --- Social Icons Row --- */
.social-row {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.social-row__icon {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 13px;
  color: var(--fg-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
  text-decoration: none;
}

.social-row__icon:hover {
  color: var(--fg-accent);
  opacity: 1;
}

/* --- Horizontal Scroll Row --- */
.scroll-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
}

.scroll-row::-webkit-scrollbar {
  height: 4px;
}

.scroll-row::-webkit-scrollbar-track {
  background: var(--bg-surface);
  border-radius: 4px;
}

.scroll-row::-webkit-scrollbar-thumb {
  background: var(--fg-secondary);
  border-radius: 4px;
}

.scroll-row > * {
  scroll-snap-align: start;
  flex-shrink: 0;
}

/* --- Masonry-ish Grid (CSS Columns) --- */
.masonry {
  column-count: 3;
  column-gap: 24px;
}

.masonry > * {
  break-inside: avoid;
  margin-bottom: 24px;
}

/* --- Caption --- */
.caption {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 11px;
  color: var(--fg-secondary);
  text-align: center;
  margin-top: 16px;
}

/* --- Section Divider --- */
.divider {
  width: 60px;
  height: 3px;
  background-color: var(--fg-accent);
  margin: 0 auto 32px;
  border-radius: 2px;
}

/* --- Guide Card --- */
.guide-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(8,5,0,0.65), 0 0 0 1px rgba(232,84,26,0.07);
}

.guide-card__image {
  aspect-ratio: 16 / 10;
  background: linear-gradient(145deg, #1E1C16 0%, #141310 60%, #1A1108 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.guide-card__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 25% 70%, rgba(232,84,26,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.guide-card__content {
  padding: var(--card-pad-sm);
}

.guide-card__title {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 15px;
  color: var(--fg-primary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
  line-height: 1.3;
}

.guide-card__excerpt {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  color: var(--fg-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
}

.guide-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.guide-card__time {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 11px;
  color: var(--fg-accent-secondary);
}

.guide-card__cta {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 12px;
  color: var(--fg-accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
}

/* --- Legal Page Styling --- */
.legal-section {
  margin-bottom: 48px;
}

.legal-section__number {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--fg-accent);
  margin-bottom: 8px;
}

.legal-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.legal-section p,
.legal-section li {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--fg-primary);
  line-height: 1.7;
}

.legal-section ul {
  list-style: none;
  padding-left: 0;
}

.legal-section ul li {
  padding: 6px 0 6px 24px;
  position: relative;
}

.legal-section ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--fg-accent);
}

/* --- Map Placeholder --- */
.map-placeholder {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Package Card --- */
.package-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(8,5,0,0.7), 0 0 0 1px rgba(232,84,26,0.09);
}

.package-card__image {
  aspect-ratio: 16 / 10;
  background: linear-gradient(145deg, #1E1C16 0%, #141310 60%, #1A1108 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.package-card__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 75%, rgba(232,84,26,0.12) 0%, transparent 55%);
  pointer-events: none;
}

.package-card__ribbon {
  position: absolute;
  top: 16px;
  right: 16px;
}

.package-card__content {
  padding: var(--card-pad);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.package-card__title {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 18px;
  color: var(--fg-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.package-card__includes {
  list-style: none;
  margin-bottom: 20px;
  flex: 1;
}

.package-card__includes li {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: var(--fg-secondary);
  line-height: 1.6;
  padding: 3px 0 3px 20px;
  position: relative;
}

.package-card__includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--fg-accent);
  font-size: 12px;
}

.package-card__price {
  margin-bottom: 16px;
}

.package-card__price .card__price-prefix {
  display: block;
}

.package-card__price .card__price-value {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--fg-accent);
  line-height: 1;
}

/* --- Team Card --- */
.team-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: var(--card-pad-sm);
  text-align: center;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
}

.team-card__portrait {
  width: 120px;
  height: 160px;
  border-radius: var(--radius-sm);
  background-color: rgba(122, 122, 110, 0.15);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card__name {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 14px;
  color: var(--fg-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.team-card__role {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  color: var(--fg-secondary);
  margin-bottom: 4px;
}

.team-card__quote {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  color: var(--fg-accent-secondary);
  font-style: italic;
  margin-top: 8px;
}

/* --- Rights Card Grid --- */
.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

/* --- Age Matrix --- */
.age-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-sm);
  padding: var(--card-pad-sm);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.age-card__age {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--fg-accent);
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.age-card__info {
  flex: 1;
}

.age-card__rule {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 13px;
  color: var(--fg-primary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}

.age-card__detail {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  color: var(--fg-secondary);
}

/* --- Season Strip --- */
.season-strip {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.season-row {
  display: flex;
  gap: 16px;
  align-items: center;
  background-color: var(--bg-surface);
  border-radius: var(--radius-sm);
  padding: 16px 24px;
}

.season-row__period {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 13px;
  color: var(--fg-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  min-width: 100px;
  flex-shrink: 0;
}

.season-row__label {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 13px;
  color: var(--fg-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  min-width: 100px;
  flex-shrink: 0;
}

.season-row__detail {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: var(--fg-secondary);
}

/* --- Author Bio --- */
.author-bio {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: var(--card-pad);
}

.author-bio__portrait {
  width: 180px;
  flex-shrink: 0;
}

.author-bio__text {
  flex: 1;
}

.author-bio__name {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 14px;
  color: var(--fg-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.author-bio__body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--fg-primary);
  line-height: 1.7;
}

.author-bio__stat {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 12px;
  color: var(--fg-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 16px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .grid--5 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .masonry { column-count: 2; }
  .hero-h1__brand { font-size: 68px; }
  h2, .h2 { font-size: clamp(44px, 6vw, 80px); }
}

@media (max-width: 768px) {
  .section { padding: var(--section-pad-mobile) 0; }
  .hero-h1__brand { font-size: 52px; }
  h2, .h2 { font-size: 40px; }
  h2.h2--sm { font-size: 36px; }

  .grid--2, .grid--3, .grid--4, .grid--5, .grid--2x3 {
    grid-template-columns: 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .masonry { column-count: 1; }

  .stat-strip { gap: 16px; }
  .stat-strip__number { font-size: 36px; }

  .btn-row { flex-direction: column; align-items: stretch; }

  .timeline {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding-left: 32px;
  }

  .timeline::before {
    top: 0;
    bottom: 0;
    left: 10px;
    right: auto;
    width: 3px;
    height: auto;
  }

  .timeline__node {
    text-align: left;
    max-width: 100%;
    padding-left: 24px;
  }

  .timeline__dot {
    position: absolute;
    left: -32px;
    top: 0;
    margin: 0;
  }

  .author-bio {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .scroll-row > * {
    min-width: 280px;
  }

  .price-table {
    display: block;
    overflow-x: auto;
  }

  .filter-bar {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
  }

  .filter-pill {
    flex-shrink: 0;
  }

  .social-row {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .hero-h1__brand { font-size: 42px; }
  h2, .h2 { font-size: 34px; }
  .card { padding: var(--card-pad-sm); }
  .container { padding: 0 16px; }
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-orange { color: var(--fg-accent); }
.text-gold { color: var(--fg-accent-secondary); }
.text-muted { color: var(--fg-secondary); }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* ─────────────────────────────────────────────
   REDUCED-MOTION ACCESSIBILITY
   Prevents animated opacity/transform on elements
   that use class-driven reveal animations.
   Covers content pages (reveal-on-scroll) + homepage (fade-up).
───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .fade-up,
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .ticker__track {
    animation: none;
  }
  .faq-item__answer {
    transition: none;
  }
}

/* ─────────────────────────────────────────────
   PHASE 4 — POLISH
───────────────────────────────────────────── */

/* Anchor scroll offset — clears fixed 76px header with breathing room */
[id] { scroll-margin-top: 96px; }

/* Footer grid — responsive collapse */
@media (max-width: 767px) {
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 28px !important; }
}
@media (max-width: 479px) {
  .footer-grid { grid-template-columns: 1fr !important; }
}

/* Footer links — hover transition (inline styles use color, so target opacity as fallback) */
footer a { transition: color 0.2s ease, opacity 0.2s ease; }
footer a:not([class]):hover { color: var(--fg-primary) !important; }

/* Guide card read-more underline */
.guide-card__cta:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─────────────────────────────────────────────
   HORIZONTAL SCROLL — prominent scrollbars + cue
   Applies to every horizontal scroll container so
   users clearly see there's more content sideways.
───────────────────────────────────────────── */

/* .review-scroll was missing its scroll layout — define it */
.review-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
}
.review-scroll > * {
  scroll-snap-align: start;
  flex-shrink: 0;
}

/* Firefox: full-width (not thin), accent-coloured bars */
.mobile-scroll,
.review-scroll,
.scroll-row,
.pricing-table-wrap,
.filter-bar,
.h-scroll {
  scrollbar-width: auto;
  scrollbar-color: var(--fg-accent) rgba(240,237,230,0.12);
}

/* WebKit/Blink: tall, rounded, brand-orange thumb on a visible track */
.mobile-scroll::-webkit-scrollbar,
.review-scroll::-webkit-scrollbar,
.scroll-row::-webkit-scrollbar,
.pricing-table-wrap::-webkit-scrollbar,
.filter-bar::-webkit-scrollbar,
.h-scroll::-webkit-scrollbar {
  height: 12px;
}
.mobile-scroll::-webkit-scrollbar-track,
.review-scroll::-webkit-scrollbar-track,
.scroll-row::-webkit-scrollbar-track,
.pricing-table-wrap::-webkit-scrollbar-track,
.filter-bar::-webkit-scrollbar-track,
.h-scroll::-webkit-scrollbar-track {
  background: rgba(240,237,230,0.10);
  border-radius: 10px;
}
.mobile-scroll::-webkit-scrollbar-thumb,
.review-scroll::-webkit-scrollbar-thumb,
.scroll-row::-webkit-scrollbar-thumb,
.pricing-table-wrap::-webkit-scrollbar-thumb,
.filter-bar::-webkit-scrollbar-thumb,
.h-scroll::-webkit-scrollbar-thumb {
  background: var(--fg-accent);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: padding-box;
  min-width: 64px;
}
.mobile-scroll::-webkit-scrollbar-thumb:hover,
.review-scroll::-webkit-scrollbar-thumb:hover,
.scroll-row::-webkit-scrollbar-thumb:hover,
.pricing-table-wrap::-webkit-scrollbar-thumb:hover,
.filter-bar::-webkit-scrollbar-thumb:hover,
.h-scroll::-webkit-scrollbar-thumb:hover {
  background: var(--fg-accent-secondary);
}

/* Keyboard / cue-click scrolling glides instead of jumping */
.is-hscroll { scroll-behavior: smooth; }

/* Scroll affordance cue — injected by scroll-cue.js, only shown
   when a container actually overflows and isn't scrolled to the end */
.scroll-cue {
  display: none;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: 100%;
  margin: 0 0 16px;
  padding: 8px 16px;
  background: rgba(232,84,26,0.10);
  border: 1px solid rgba(232,84,26,0.35);
  border-radius: 999px;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fg-accent-secondary);
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  transition: background 0.2s ease, opacity 0.3s ease;
}
.scroll-cue.is-visible { display: inline-flex; }
.scroll-cue:hover { background: rgba(232,84,26,0.18); }
.scroll-cue__arrows {
  color: var(--fg-accent);
  font-size: 15px;
  line-height: 1;
  animation: scroll-cue-nudge 1.4s ease-in-out infinite;
}
@keyframes scroll-cue-nudge {
  0%, 100% { transform: translateX(0); opacity: 0.5; }
  50% { transform: translateX(7px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-cue__arrows { animation: none; }
}

/* --- Scroll affordance: bottom control row (polish layer) ---
   Rendered below a horizontal scroller by scroll-cue.js when the icon
   sprite is present. Hidden until JS confirms the scroller overflows. */
.scroll-controls { display: none; }
.scroll-controls.is-active {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 14px 0 2px;
}
.scroll-controls__hint {
  display: none; /* desktop/mouse: hidden; shown on touch via media query below */
  align-items: center;
  gap: 7px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-secondary, #8A8A7E);
}
.scroll-controls__hint .scroll-controls__ic { color: var(--fg-accent, #E8541A); }
.scroll-controls__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  background: transparent;
  color: var(--fg-primary, #F0EDE6);
  border: 1px solid rgba(232,84,26,0.5);
  border-radius: 50%;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.scroll-controls__btn:hover:not(:disabled) {
  background: var(--fg-accent, #E8541A);
  border-color: var(--fg-accent, #E8541A);
  color: #0A0A08;
}
.scroll-controls__btn:focus-visible { outline: 2px solid var(--fg-accent, #E8541A); outline-offset: 2px; }
.scroll-controls__btn:disabled { opacity: 0.32; cursor: default; }
/* Show the swipe hint only on touch-capable devices (incl. hybrids). */
@media (any-pointer: coarse) {
  .scroll-controls__hint { display: inline-flex; }
}

/* GPU compositing for hover-animated cards */
.card-hover,
.package-card,
.guide-card,
.team-card,
.review-card {
  will-change: transform;
}

/* btn--ghost hover: add glow to match btn--primary */
.btn--ghost:hover {
  background-color: var(--fg-primary);
  color: var(--bg-primary);
  box-shadow: 0 4px 20px rgba(240, 237, 230, 0.15);
  transform: translateY(-2px);
  opacity: 1;
}

/* ─────────────────────────────────────────────
   PHASE 5 — MICRO-INTERACTIONS
───────────────────────────────────────────── */

/* Scroll progress bar */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-ignition-orange) 0%, var(--color-dune-gold) 100%);
  z-index: 10000;
  width: 0%;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* WhatsApp persistent float button */
#wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  animation: wa-pulse 3s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  will-change: transform;
}

#wa-float:hover {
  transform: scale(1.1);
  animation: none;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.65);
}

@keyframes wa-pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.07); }
}

/* Count-up number reveal */
[data-count] { tabular-nums: true; font-variant-numeric: tabular-nums; }

/* Review scroll dots */
.review-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
}
.review-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: var(--fg-secondary);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
  flex-shrink: 0;
}
.review-dot.active {
  width: 20px;
  background: var(--fg-accent);
}

/* Card stagger — CSS variable driven */
.stagger-child {
  transition-delay: var(--stagger-delay, 0ms);
}

/* Hero CTA pulse */
@keyframes cta-pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.025); }
}
.btn-cta-pulse {
  animation: cta-pulse 2.5s ease-in-out 1s infinite;
  will-change: transform;
}

/* Reduced-motion overrides for Phase 5 additions */
@media (prefers-reduced-motion: reduce) {
  #wa-float { animation: none; }
  #scroll-progress { display: none; }
  .card-hover, .package-card, .guide-card, .team-card, .review-card { will-change: auto; }
  .btn-cta-pulse { animation: none; }
}

/* ─────────────────────────────────────────────
   SCROLL & REVEAL ANIMATIONS
───────────────────────────────────────────── */

.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.reveal-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-on-scroll.revealed { opacity: 1; transform: translateY(0); }

::-webkit-scrollbar { width: 6px; height: 4px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--bg-surface); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--fg-accent); }

/* ─────────────────────────────────────────────
   HEADER NAVIGATION
───────────────────────────────────────────── */

.dbr-skip { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.dbr-skip:focus, .dbr-skip:focus-visible {
  position: fixed; left: 16px; top: 16px; width: auto; height: auto; overflow: visible;
  padding: 8px 20px; background: var(--fg-accent); color: #0A0A08;
  font-family: var(--font-headline); font-weight: 700; font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase; text-decoration: none;
  border-radius: 2px; outline: 2px solid #0A0A08; outline-offset: 2px; z-index: 10001;
}

.dbr-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--glass-header-bg); backdrop-filter: var(--glass-header-blur);
  -webkit-backdrop-filter: var(--glass-header-blur);
  border-bottom: 1px solid var(--border-orange); transition: background 0.3s ease;
}
.dbr-header.dbr-scrolled { background: rgba(10,10,8,0.92); }
.dbr-header.dbr-compressed .dbr-header-inner { height: 56px !important; }
.dbr-header.dbr-compressed { background: rgba(10,10,8,0.97) !important; border-bottom-color: rgba(232,84,26,0.22) !important; }

.dbr-header-inner {
  max-width: var(--container-max); margin: 0 auto; padding: 0 40px;
  height: var(--header-h-desktop); display: flex; align-items: center;
  justify-content: space-between; gap: 24px; transition: height 0.4s cubic-bezier(0.25,0,0,1);
}

.dbr-logo { flex-shrink: 0; text-decoration: none; display: block; }
.dbr-logo .l1 { font-family: var(--font-display); font-size: 16px; letter-spacing: 1px; color: var(--fg-primary); line-height: 1; }
.dbr-logo .rule { height: 1.5px; background: var(--fg-accent); margin: 2px 0; }
.dbr-logo .l2 { font-family: var(--font-display); font-size: 13px; letter-spacing: 4px; color: var(--fg-primary); line-height: 1; }

.dbr-nav { display: flex; align-items: center; gap: 20px; flex: 1; justify-content: center; }
.dbr-nav a {
  font-family: var(--font-headline); font-weight: 700; font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase; text-decoration: none;
  color: var(--fg-primary); transition: color 0.2s; white-space: nowrap;
}
.dbr-nav a:hover, .dbr-nav a.dbr-active { color: var(--fg-accent); }

.dbr-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.dbr-call {
  font-family: var(--font-headline); font-weight: 700; font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase; background: var(--fg-accent); color: #0A0A08;
  padding: 11px 18px; border-radius: var(--radius-sm); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px; transition: background 0.2s;
}
.dbr-call:hover { background: var(--color-cta-hover); color: #0A0A08; }
.dbr-ig {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  border: 1px solid rgba(240,237,230,0.2); background: transparent;
  text-decoration: none; flex-shrink: 0; transition: border-color 0.2s;
}
.dbr-ig:hover { border-color: rgba(232,84,26,0.55); }

.dbr-ham { display: none; flex-direction: column; gap: 4px; background: transparent; border: none; cursor: pointer; padding: 4px; }
.dbr-ham span { display: block; height: 2px; width: 24px; background: var(--fg-primary); border-radius: 1px; transition: transform 0.2s, opacity 0.2s; }
.dbr-ham span:nth-child(2) { width: 17px; background: var(--fg-accent); margin-left: auto; }
.dbr-ham.dbr-on span:nth-child(1) { transform: rotate(45deg) translate(3px,3px); }
.dbr-ham.dbr-on span:nth-child(2) { opacity: 0; }
.dbr-ham.dbr-on span:nth-child(3) { transform: rotate(-45deg) translate(3px,-3px); }

.dbr-mobile {
  display: none; background: var(--glass-menu-bg); backdrop-filter: var(--glass-menu-blur);
  -webkit-backdrop-filter: var(--glass-menu-blur);
  border-top: 1px solid rgba(232,84,26,0.25); padding: 18px 24px 26px;
}
.dbr-mobile a {
  display: flex; justify-content: space-between; align-items: center;
  text-decoration: none; font-family: var(--font-headline); font-weight: 700;
  font-size: 16px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--fg-primary); padding: 12px 0; border-bottom: 1px solid var(--border-subtle);
}
.dbr-mobile a.dbr-active { color: var(--fg-accent); }
.dbr-mobile a::after { content: '\203A'; color: rgba(240,237,230,0.25); font-size: 14px; }
.dbr-mobile .dbr-mobile-call {
  justify-content: center; background: var(--fg-accent); color: #fff;
  border: none; border-radius: var(--radius-md); margin-top: 18px; letter-spacing: 3px; font-size: 12px;
}
.dbr-mobile .dbr-mobile-call::after { content: ''; }
.dbr-spacer { height: var(--header-h-desktop); }

@media (max-width: 1024px) {
  .dbr-nav, .dbr-call { display: none; }
  .dbr-ham { display: flex; }
}


/* ─────────────────────────────────────────────
   HOMEPAGE LAYOUT COMPONENTS
───────────────────────────────────────────── */

.section-title {
  font-family: var(--font-display); font-size: clamp(44px, 6vw, 72px);
  letter-spacing: var(--tracking-display); line-height: var(--leading-display);
  color: var(--fg-primary); margin: 0; text-wrap: balance;
}
.title-48 {
  font-family: var(--font-display); font-size: clamp(40px, 5vw, 64px);
  letter-spacing: var(--tracking-display); line-height: var(--leading-display);
  color: var(--fg-primary); margin: 0 0 8px; text-wrap: balance;
}
.eyebrow {
  font-family: var(--font-headline); font-weight: 700; font-size: 11px;
  letter-spacing: 4px; color: var(--fg-accent); text-transform: uppercase; margin-bottom: 12px;
}
.lead {
  font-family: var(--font-body); font-weight: var(--weight-body); font-size: 14px;
  color: var(--fg-secondary); line-height: var(--leading-body);
}
.inline-link {
  font-family: var(--font-body); font-weight: var(--weight-body); font-size: 16px;
  color: var(--fg-accent); text-decoration: underline; text-underline-offset: 3px; cursor: pointer;
}
.inline-link:hover { color: var(--color-cta-hover); }

.btn-primary {
  font-family: var(--font-headline); font-weight: 700; font-size: 14px;
  letter-spacing: 2.5px; text-transform: uppercase; background: var(--fg-accent); color: #0A0A08;
  border: none; padding: 16px 36px; border-radius: var(--radius-sm); cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s; white-space: nowrap;
}
.btn-primary:hover {
  background: var(--color-cta-hover); color: #0A0A08;
  transform: translateY(-1px); box-shadow: 0 8px 28px rgba(232,84,26,0.38);
}
.btn-primary:active { transform: scale(0.97) translateY(1px) !important; background: var(--color-cta-active) !important; box-shadow: none !important; }

.btn-secondary {
  font-family: var(--font-headline); font-weight: 700; font-size: 14px;
  letter-spacing: 2px; text-transform: uppercase; background: transparent; color: var(--fg-primary);
  border: 1px solid var(--fg-primary); padding: 15px 28px; border-radius: var(--radius-sm); cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: border-color 0.2s, color 0.2s; white-space: nowrap;
}
.btn-secondary:hover { border-color: var(--fg-accent); color: var(--fg-accent); }
.btn-secondary:active { transform: scale(0.97) !important; }

.imgph {
  background: var(--bg-surface); display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px; padding: 20px; text-align: center;
}
.imgph .cap {
  font-family: var(--font-body); font-weight: var(--weight-body); font-size: 12px;
  font-style: italic; color: var(--fg-secondary); max-width: 280px; line-height: 1.5;
}

.ticker-wrap { overflow: hidden; }
.ticker-track { display: flex; width: max-content; animation: ticker-homepage 40s linear infinite; }
.ticker-wrap:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker-homepage { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.card-hover { overflow: hidden; position: relative; transition: box-shadow 0.3s; }
.card-hover::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--fg-accent);
  transform: scaleY(0.5); transform-origin: top; transition: transform 0.2s; z-index: 2;
}
.card-hover:hover::before { transform: scaleY(1); }
.card-hover:hover { box-shadow: 0 8px 32px rgba(8,5,0,0.7), 0 0 0 1px rgba(232,84,26,0.08); }
.card-img-zoom { transition: transform 0.4s ease; }
.card-hover:hover .card-img-zoom { transform: scale(1.04); }

.card-cta-strip {
  display: block; text-align: center; margin-top: 12px; padding: 10px;
  font-family: var(--font-headline); font-weight: 700; font-size: 12px;
  letter-spacing: 3px; color: var(--fg-accent); text-transform: uppercase; text-decoration: none;
  border-top: 1px solid rgba(122,122,110,0.15); transition: background 0.2s, color 0.2s;
}
.card-cta-strip:hover { background: var(--fg-accent); color: var(--fg-primary); }

.price-row { border-left: 3px solid transparent; transition: border-color 0.2s, background 0.2s; }
.price-row:hover { border-left-color: var(--fg-accent); background: rgba(232,84,26,0.04) !important; }
.pricing-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; cursor: pointer; gap: 16px; background: none; border: none; width: 100%;
}
.faq-q-text { font-family: var(--font-headline); font-weight: 700; font-size: 14px; color: var(--fg-primary); letter-spacing: 0.5px; transition: color 0.2s; }
.faq-plus { font-family: var(--font-headline); font-weight: 700; font-size: 20px; color: var(--fg-accent); flex-shrink: 0; transition: transform 0.2s; line-height: 1; }
.faq-a { display: grid; grid-template-rows: 0fr; overflow: hidden; transition: grid-template-rows 0.3s ease; }
.faq-a p { font-family: var(--font-body); font-weight: var(--weight-body); font-size: 14px; color: var(--fg-primary); line-height: var(--leading-body); margin: 0; padding-bottom: 20px; min-height: 0; }
.faq-item.open .faq-q-text { color: var(--fg-accent); }
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }

.grid-2x2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.grid-3   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-4   { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.grid-5   { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.grid-6   { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.two-col-60-40 { display: grid; grid-template-columns: 60fr 40fr; gap: 48px; align-items: start; }
.two-col-50-50 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.faq-layout    { display: grid; grid-template-columns: 35fr 65fr; gap: 48px; align-items: start; }

.gallery-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 8px; }
.gallery-hero { grid-row: 1 / 3; }
.gallery-grid figure { margin: 0; aspect-ratio: 1 / 1; overflow: hidden; position: relative; }
.gallery-grid figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-grid figure figcaption { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 12px 10px; background: linear-gradient(transparent, rgba(0,0,0,0.72)); color: #fff; font-family: 'Barlow', sans-serif; font-size: 11px; font-weight: 300; line-height: 1.35; letter-spacing: 0.3px; }

.panel { background: var(--bg-surface); padding: 24px; }
.panel-orange { border-top: 1px solid rgba(232,84,26,0.4); }
.panel-gold { border-top: 1px solid rgba(200,144,42,0.4); }
.panel h3 { font-family: var(--font-headline); font-weight: 700; font-size: 16px; color: var(--fg-primary); letter-spacing: 1px; }

.blist > div {
  font-family: var(--font-body); font-weight: var(--weight-body); font-size: 13px;
  color: var(--fg-primary); line-height: var(--leading-body);
  padding-left: 16px; position: relative; margin-bottom: 4px;
}
.blist > div .dash { position: absolute; left: 0; }

.hero-stats-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 5;
  background: rgba(42,40,32,0.7); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  height: 60px; display: flex; align-items: center; padding: 0 5%;
}
.hero-stats {
  max-width: var(--container-max); width: 100%; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
}
.stat-divider { width: 1px; height: 28px; background: rgba(122,122,110,0.3); margin: 0 20px; flex-shrink: 0; }
.stat-item { text-align: center; flex-shrink: 0; }
.stat-item .v { font-family: var(--font-display); font-size: 22px; color: var(--fg-accent); line-height: 1; }
.stat-item .l { font-family: var(--font-headline); font-weight: 700; font-size: 9px; letter-spacing: 3px; color: var(--fg-secondary); margin-top: 2px; }
.trust-label {
  font-family: var(--font-headline); font-weight: 700; font-size: 10px;
  letter-spacing: 4px; color: var(--fg-accent-secondary); text-transform: uppercase; flex-shrink: 0;
}

.mobile-scroll { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; gap: 16px; padding-bottom: 12px; }
.mobile-scroll > * { flex: 0 0 280px; scroll-snap-align: start; }

@keyframes hero-eyebrow-in { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes hero-line-up { from { transform: translateY(108%); } to { transform: translateY(0); } }
@keyframes hero-fade-up { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scroll-chevron-bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
.hero-eyebrow-cin { opacity: 0; animation: hero-eyebrow-in 0.7s cubic-bezier(0.16,1,0.3,1) 0.05s forwards; }
.hero-line-wrap { display: block; overflow: hidden; }
.hero-line { display: block; transform: translateY(108%); animation: hero-line-up 1s cubic-bezier(0.16,1,0.3,1) forwards; }
.hero-line-wrap:nth-child(1) .hero-line { animation-delay: 0.2s; }
.hero-line-wrap:nth-child(2) .hero-line { animation-delay: 0.35s; }
.hero-subline-cin { opacity: 0; animation: hero-fade-up 0.9s cubic-bezier(0.16,1,0.3,1) 0.52s forwards; }
.hero-body-cin    { opacity: 0; animation: hero-fade-up 0.9s cubic-bezier(0.16,1,0.3,1) 0.68s forwards; }
.hero-cta-cin     { opacity: 0; animation: hero-fade-up 0.9s cubic-bezier(0.16,1,0.3,1) 0.84s forwards; }
.hero-scroll-invite {
  position: absolute; bottom: 88px; left: 50%; transform: translateX(-50%); z-index: 6;
  display: flex; flex-direction: column; align-items: center; gap: 5px; pointer-events: none;
}
.hero-scroll-invite svg { animation: scroll-chevron-bounce 2.4s ease-in-out 1.8s infinite; }

@media (max-width: 1279px) {
  .grid-5 { grid-template-columns: repeat(3,1fr); }
  .grid-6 { grid-template-columns: repeat(3,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 767px) {
  .hero-stats-bar { height: auto; padding: 12px 5%; }
  .hero-stats { gap: 12px; justify-content: center; }
  .stat-divider { display: none; }
  .trust-label { width: 100%; text-align: center; margin-top: 4px; font-size: 9px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-2x2 { grid-template-columns: 1fr; }
  .two-col-60-40 { grid-template-columns: 1fr; gap: 32px; }
  .two-col-50-50 { grid-template-columns: 1fr; gap: 24px; }
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-hero { grid-column: 1 / -1; grid-row: auto; }
  .btn-primary, .btn-secondary { min-height: 44px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow-cin, .hero-line, .hero-subline-cin, .hero-body-cin, .hero-cta-cin {
    opacity: 1 !important; transform: none !important; animation: none !important;
  }
  .hero-scroll-invite svg { animation: none !important; }
  .ticker-track { animation-duration: 240s; }
}

/* ─────────────────────────────────────────────
   HERO SECTION LAYOUT (service pages)
───────────────────────────────────────────── */

.hero-section {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-section .placeholder--hero { position: absolute; inset: 0; min-height: 100%; width: 100%; z-index: 0; border-radius: 0; }
.hero-section .placeholder--hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,8,0.3) 0%, rgba(10,10,8,0.6) 50%, rgba(10,10,8,0.95) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 24px; }
.hero-sub {
  font-family: var(--font-body); font-weight: 300; font-size: 17px;
  color: var(--fg-primary); line-height: 1.7;
  max-width: 600px; margin: 20px auto 32px; opacity: 0.85;
}

.schedule-col { background-color: var(--bg-surface); border-radius: var(--radius-lg); padding: var(--card-pad); }
.schedule-col__title {
  font-family: var(--font-headline); font-weight: 700; font-size: 14px;
  color: var(--fg-accent); text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 24px; padding-bottom: 12px; border-bottom: 2px solid var(--fg-accent);
}
.schedule-item { display: flex; gap: 16px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid rgba(240,237,230,0.06); }
.schedule-item:last-child { border-bottom: none; }
.schedule-item__time {
  font-family: var(--font-headline); font-weight: 700; font-size: 13px;
  color: var(--fg-accent-secondary); text-transform: uppercase; letter-spacing: 0.04em; min-width: 60px; flex-shrink: 0;
}
.schedule-item__label { font-family: var(--font-body); font-weight: 300; font-size: 14px; color: var(--fg-primary); line-height: 1.5; }

.combo-card {
  background-color: var(--bg-surface); border-radius: var(--radius-lg); padding: var(--card-pad);
  text-align: center; border-top: 3px solid var(--fg-accent); transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.combo-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.combo-card__title { font-family: var(--font-headline); font-weight: 700; font-size: 16px; color: var(--fg-primary); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 16px; }
.combo-card__math { font-family: var(--font-body); font-weight: 300; font-size: 13px; color: var(--fg-secondary); line-height: 1.8; margin-bottom: 16px; }
.combo-card__math del { color: var(--fg-secondary); opacity: 0.6; }
.combo-card__price { font-family: var(--font-display); font-size: 36px; color: var(--fg-accent); line-height: 1; margin-bottom: 4px; }
.combo-card__save { font-family: var(--font-headline); font-weight: 700; font-size: 11px; color: var(--fg-accent-secondary); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 20px; }

.panel__title {
  font-family: var(--font-headline); font-weight: 700; font-size: 16px;
  color: var(--fg-accent); text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--fg-accent);
}
.panel--addons .panel__title { color: var(--fg-accent-secondary); border-bottom-color: var(--fg-accent-secondary); }

.feature-mini {
  background-color: rgba(232,84,26,0.08); border-radius: var(--radius-md); padding: 20px;
  text-align: center; border: 1px solid rgba(232,84,26,0.15);
}
.feature-mini__value { font-family: var(--font-display); font-size: 28px; color: var(--fg-accent); line-height: 1; margin-bottom: 8px; }
.feature-mini__label { font-family: var(--font-headline); font-weight: 700; font-size: 11px; color: var(--fg-primary); text-transform: uppercase; letter-spacing: 0.06em; }

.reviews-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-headline); font-weight: 700; font-size: 13px;
  color: var(--fg-accent); text-transform: uppercase; letter-spacing: 0.04em; margin-top: 32px;
}
.final-cta {
  text-align: center; padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(42,40,32,0.5) 50%, var(--bg-primary) 100%);
}
.final-cta h2 { margin-bottom: 16px; }

@media (max-width: 768px) { .hero-sub { font-size: 15px; } }

/* ─────────────────────────────────────────────
   REVIEWS PAGE
───────────────────────────────────────────── */

.review-card__body.expanded { -webkit-line-clamp: unset; display: block; }
.photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; }
.photo-grid__item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.photo-grid__item:nth-child(4) { grid-column: span 2; }
.photo-grid__item:nth-child(7) { grid-column: span 2; }
@media (max-width: 768px) {
  .photo-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .photo-grid__item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .photo-grid__item:nth-child(4), .photo-grid__item:nth-child(7) { grid-column: span 1; }
}
