/* =========================================================================
   Loch Ness Tours From Edinburgh — styles.css
   Palette: Loch Blue / Highland Pine / Golden Heather (fonts-colors.txt)
   Pattern: /new-site-simple (golfcartsinrome.com lineage)
   ========================================================================= */

:root {
  /* === COLOUR ROLES === */
  --c-primary:        #1F4E79;  /* Loch Blue — CTAs, links, headings, brand */
  --c-primary-deep:   #163A5C;  /* Deeper loch blue — heading hover, eyebrow on light */
  --c-accent:         #D4A44A;  /* Golden Heather — stars, accents on dark */
  --c-accent-bright:  #F2C14E;  /* Brighter heather — hero CTA + eyebrow on dark */
  --c-cream:          #F8FAFB;  /* Mist White — base background */
  --c-cream-soft:     #EEF2F3;  /* Loch Mist Grey — alt sections + cards on cream */
  --c-travertine:     #DDE4E7;  /* Subtle surface / borders */
  --c-travertine-soft:#E7EDEF;  /* Light cool tan — Categories bg + featured-card outer */
  --c-olive:          #2F5D50;  /* Highland Pine — why-choose, faq, final CTA bg */
  --c-olive-deep:     #244840;  /* Deeper pine — hover / border on olive */
  --c-charcoal:       #27313A;  /* Deep Slate — gallery bg, FOOTER bg, body text */
  --c-charcoal-mute:  #4B5563;  /* Soft Charcoal — supporting text (>=4.5:1 on cream) */
  --c-white:          #FFFFFF;

  /* === TYPOGRAPHY === */
  --font-display: "Montserrat", Georgia, "Times New Roman", serif;
  --font-body:    "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* === SPACING === */
  --section-py: clamp(2.75rem, 5vw, 4.5rem);
  --space-xs:   0.5rem;
  --space-sm:   0.875rem;
  --space-md:   1.5rem;
  --space-lg:   2rem;
  --space-xl:   3rem;
  --space-2xl:  4.5rem;

  /* === LAYOUT === */
  --max-width:        1240px;
  --container:        min(1240px, 100% - 2rem);
  --container-narrow: min(820px, 100% - 2rem);
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --transition: 220ms ease;
  --shadow-sm:  0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md:  0 10px 28px rgba(0, 0, 0, 0.12);
  --shadow-lg:  0 18px 40px -14px rgba(0, 0, 0, 0.35);

  /* === LEGACY/AUDIT ALIASES (literal hex per skill §8c) === */
  --c-ice:           #F8FAFB;  /* light text on dark */
  --c-navy:          #163A5C;  /* headings */
  --c-ocean:         #1F4E79;  /* alt heading colour */
  --c-slate:         #4B5563;  /* supporting text */
  --c-amber:         #F2C14E;  /* bright accent (real dark-bg accent) */
  --c-amber-bright:  #F2C14E;
  --c-gold:          #D4A44A;
}

/* === RESET / BASE === */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--c-charcoal);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary); text-decoration: none; }
a:hover { color: var(--c-primary-deep); }
strong { color: var(--c-primary-deep); font-weight: 700; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--c-primary-deep);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h2 { font-size: clamp(1.55rem, 3.4vw, 2.3rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p { margin-bottom: var(--space-md); }
ul { padding-left: 1.1rem; }

/* === LAYOUT HELPERS === */
.container { width: var(--container); max-width: var(--max-width); margin-inline: auto; }
.section  { padding-block: var(--section-py); background: var(--c-cream); }
.section--alt   { background: var(--c-cream-soft); }
.section--dark  { background: var(--c-charcoal); color: var(--c-cream); }
.section--olive { background: var(--c-olive);    color: var(--c-cream); }
.section--tan   { background: var(--c-travertine-soft); }
section[id] { scroll-margin-top: 5.5rem; }

.section--dark h2, .section--dark h3,
.section--olive h2, .section--olive h3 { color: var(--c-white); }
.section--dark p, .section--olive p { color: var(--c-cream); }

/* Heading-colour rhythm — alternate Loch Blue (default navy) and Highland Pine
   down the light sections so the page isn't monotonously blue. Both pass AA on
   cream / cream-soft / tan / white. Dark + olive sections keep white (above). */
#intro h2,
#guided-tour h2,
#loch-ness-stats h2,
#vs-inverness h2,
#practical-info h2,
#also h2 { color: var(--c-olive); }
/* the intro's two sub-column headers sit under a pine H2 — match them to pine */
#intro .experience-summary__col h3 { color: var(--c-olive); }

/* === EYEBROW === */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-primary-deep);
  margin-bottom: var(--space-sm);
}
/* eyebrow on dark backgrounds -> bright heather */
.hero .eyebrow,
.section--dark .eyebrow,
.section--olive .eyebrow,
.gallery .eyebrow,
.why-choose .eyebrow,
.cta-banner .eyebrow { color: var(--c-accent-bright); }

/* === SECTION HEAD (centered block) === */
.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto var(--space-xl);
}
.section-head__sub {
  color: var(--c-charcoal-mute);
  font-size: 1.05rem;
  margin-bottom: 0;
}
.section--dark .section-head__sub,
.section--olive .section-head__sub { color: var(--c-travertine); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.btn--primary { background: var(--c-primary); color: var(--c-white); }
.btn--primary:hover { background: var(--c-primary-deep); color: var(--c-white); transform: translateY(-1px); }
.btn--secondary {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn--secondary:hover { background: rgba(255, 255, 255, 0.12); color: var(--c-white); }
.btn--block { width: 100%; }

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 250, 251, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-travertine);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
}
.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--c-primary-deep);
  letter-spacing: -0.01em;
}
.brand:hover { color: var(--c-primary); }
.nav { display: flex; align-items: center; gap: 1.4rem; }
.nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--c-charcoal);
}
.nav a:hover { color: var(--c-primary); }
.nav .btn--primary { color: var(--c-white); padding: 0.6rem 1.1rem; }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--c-primary-deep);
  cursor: pointer;
  padding: 0.3rem;
}

/* === HERO (two-zone, frosted panel) === */
.hero {
  position: relative;
  min-height: clamp(560px, 84vh, 760px);
  display: flex;
  align-items: center;
  padding-block: var(--space-2xl);
  overflow: hidden;
  color: var(--c-cream);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  /* two-axis wash: horizontal pass darkens the left-aligned text zone,
     vertical pass keeps top/bottom readable (no-panel hero variant) */
  background:
    linear-gradient(90deg, rgba(18, 24, 30, 0.68) 0%, rgba(18, 24, 30, 0.36) 46%, rgba(18, 24, 30, 0.08) 100%),
    linear-gradient(180deg, rgba(18, 24, 30, 0.42) 0%, rgba(18, 24, 30, 0.12) 40%, rgba(18, 24, 30, 0.52) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: var(--container);
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}
/* no-panel hero: no frosted box — text sits on the photo + two-axis gradient */
.hero-overlay { margin-bottom: var(--space-lg); }
.hero-overlay > :last-child { margin-bottom: 0; }
.hero .eyebrow { text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55), 0 1px 10px rgba(0, 0, 0, 0.4); }
.hero h1 {
  color: var(--c-white);
  font-size: clamp(1.9rem, 4.6vw, 3.1rem);
  margin-bottom: var(--space-sm);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6), 0 2px 18px rgba(0, 0, 0, 0.45);
}
.hero strong { color: inherit; }
.hero-lede {
  font-size: clamp(1.02rem, 1.7vw, 1.2rem);
  color: var(--c-cream);
  margin-bottom: var(--space-md);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6), 0 1px 12px rgba(0, 0, 0, 0.45);
  max-width: 60ch;
}
.hero-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.98rem;
  margin-bottom: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55), 0 1px 10px rgba(0, 0, 0, 0.4);
}
.hero-rating .stars { color: var(--c-accent-bright); letter-spacing: 1px; }
.hero-rating .score { font-family: var(--font-display); font-weight: 700; }
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: var(--space-md);
}
.hero-pills span {
  font-size: 0.86rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(31, 40, 48, 0.5);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--c-white);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
/* yellow hero primary CTA (hero-only override) */
.hero .btn--primary {
  background: var(--c-accent-bright);
  color: var(--c-charcoal);
  border-color: var(--c-accent-bright);
}
.hero .btn--primary:hover {
  background: #E6B23E;
  color: var(--c-charcoal);
}

/* === FACTS STRIP === */
.facts {
  background: var(--c-cream-soft);
  border-bottom: 1px solid var(--c-travertine);
  padding-block: clamp(1rem, 2vw, 1.4rem);
}
.facts__row {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 0.5rem;
}
.facts__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.15rem;
  padding: 0.3rem 0.6rem;
}
.facts__value {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--c-primary-deep);
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  line-height: 1.1;
}
.facts__label {
  font-size: clamp(0.92rem, 1.3vw, 1.02rem);
  color: var(--c-charcoal-mute);
}

/* === INTRO === */
/* roomier top/bottom than the locked --section-py so the lead editorial
   block breathes under the facts strip */
#intro { padding-block: clamp(3rem, 5.5vw, 4.75rem); }
.intro__body {
  max-width: 820px;
  margin: 0 auto;
}
.intro__body p:last-child { margin-bottom: 0; }
.experience-summary__grid {
  max-width: 1000px;
  margin: var(--space-xl) auto var(--space-md);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}
.experience-summary__col {
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.experience-summary__col h3 {
  padding-bottom: 0.6rem;
  margin-bottom: 0.9rem;
  border-bottom: 2px solid var(--c-travertine);
}
.experience-summary__col ul { list-style: none; padding: 0; margin: 0; }
.experience-summary__col li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: 0.7rem;
  line-height: 1.5;
}
.experience-summary__col li:last-child { margin-bottom: 0; }
.experience-summary__col li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 1.35rem;
  height: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-charcoal);     /* dark check ON gold fill (~6.7:1) */
  background: var(--c-accent);  /* Golden Heather */
  border-radius: 50%;
}
.experience-summary__cta { text-align: center; margin: var(--space-md) 0 0; }

/* === ITINERARY (used by #experience AND #reality-check) === */
.itinerary__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 880px;
  display: grid;
  gap: 1.1rem;
}
.itinerary__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: start;
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.itinerary__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--c-charcoal);   /* dark numeral ON the gold fill (~6.7:1) */
  line-height: 1;
  flex: 0 0 auto;
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-accent); /* Golden Heather fill */
  border-radius: 50%;
  box-shadow: 0 4px 10px -3px rgba(212, 164, 74, 0.6);
}
.itinerary__item h3 { margin-bottom: 0.35rem; }
.itinerary__item p { margin-bottom: 0; color: var(--c-charcoal-mute); }
.itinerary .experience-summary__cta { margin-top: var(--space-lg); }

/* === GUIDED TOUR CARD + WIDGET === */
.guided-tour { background: var(--c-travertine-soft); }
.guided-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: start;
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-md);
  max-width: 1080px;
  margin-inline: auto;
}
.guided-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.8rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--c-charcoal-mute);
}
.guided-card__meta .stars { color: var(--c-accent); }
.guided-card__meta .pill {
  font-size: 0.82rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: var(--c-cream-soft);
  color: var(--c-primary-deep);
  border: 1px solid var(--c-travertine);
}
.guided-card__list { list-style: none; padding: 0; margin: 0 0 var(--space-md); }
.guided-card__list li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: 0.6rem;
}
.guided-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 1.35rem;
  height: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-white);
  background: var(--c-primary);
  border-radius: 50%;
}
.guided-card__note { font-style: italic; color: var(--c-charcoal-mute); font-size: 0.95rem; margin-bottom: 0; }
.guided-card__widget {
  background: var(--c-cream-soft);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: 0.6rem;
  min-height: 320px;
}

/* === HIGHLIGHTS / WHY-CHOOSE / CARD GRIDS === */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  max-width: 1100px;
  margin-inline: auto;
}
.feature-card {
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.feature-card .eyebrow { margin-bottom: 0.5rem; }
.feature-card h3 { margin-bottom: 0.5rem; }
.feature-card p { margin-bottom: 0; color: var(--c-charcoal-mute); }
/* why-choose cards sit on olive */
.why-choose .feature-card {
  background: var(--c-olive-deep);
  border-color: rgba(255, 255, 255, 0.14);
}
.why-choose .feature-card h3 { color: var(--c-white); }
.why-choose .feature-card p { color: var(--c-cream); }
.why-choose .feature-card .eyebrow { color: var(--c-accent-bright); }

/* === LOCH NESS STATS (4-tile, dedicated class) === */
.stats-strip {
  background: var(--c-travertine-soft);
  border-block: 1px solid var(--c-travertine);
  padding-block: var(--section-py);   /* was missing — header was touching the top border */
}
.stats-strip__row {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 980px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.stats-strip__item {
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.3rem 1rem;
  text-align: center;
}
.stats-strip__value {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--c-primary);   /* navy, not gold */
  line-height: 1.05;
}
.stats-strip__label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.95rem;
  color: var(--c-charcoal-mute);
}

/* === GALLERY (full-width scroll) === */
.gallery { background: var(--c-charcoal); color: var(--c-cream); }
.gallery h2 { color: var(--c-white); }
.gallery .section-head__sub { color: var(--c-travertine); }
.gallery__wrapper { position: relative; margin-top: var(--space-lg); }
.gallery__wrapper--full {
  width: 100vw;
  margin-left:  calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.gallery__wrapper::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 80px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(39, 49, 58, 0) 0%, rgba(39, 49, 58, 0.9) 100%);
  z-index: 2;
}
.gallery__strip {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--c-accent) rgba(255, 255, 255, 0.15);
  padding-left:  max(1rem, calc((100vw - 1240px) / 2));
  padding-right: max(1rem, calc((100vw - 1240px) / 2));
}
.gallery__strip::-webkit-scrollbar { height: 8px; }
.gallery__strip::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.12); border-radius: 999px; }
.gallery__strip::-webkit-scrollbar-thumb { background: var(--c-accent); border-radius: 999px; }
.gallery__item {
  flex: 0 0 78vw;
  max-width: 460px;
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--c-olive-deep);
}
.gallery__item img { width: 100%; height: 280px; object-fit: cover; }
.gallery__item figcaption {
  font-size: 0.85rem;
  color: var(--c-travertine);
  padding: 0.6rem 0.8rem;
}
.gallery__arrow {
  position: absolute;
  top: 40%;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(248, 250, 251, 0.92);
  color: var(--c-primary-deep);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: none;
  box-shadow: var(--shadow-md);
}
.gallery__arrow--prev { left: 1.2rem; }
.gallery__arrow--next { right: 1.2rem; }

/* === INCLUDED (2-col) === */
.included__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  max-width: 1000px;
  margin-inline: auto;
}
.included__col {
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.included__col h3 { margin-bottom: 0.9rem; padding-bottom: 0.6rem; border-bottom: 2px solid var(--c-travertine); }
.included__col ul { list-style: none; padding: 0; margin: 0; }
.included__col li { position: relative; padding-left: 1.8rem; margin-bottom: 0.6rem; line-height: 1.5; }
.included__col li:last-child { margin-bottom: 0; }
.included__col--yes li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--c-olive); font-weight: 700;
}
.included__col--no li::before {
  content: "✕"; position: absolute; left: 0; top: 0; color: var(--c-charcoal-mute); font-weight: 700;
}

/* === VS TABLE === */
.vs-table__wrap { max-width: 960px; margin-inline: auto; overflow-x: auto; }
.vs-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.vs-table th, .vs-table td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--c-travertine);
  vertical-align: top;
  font-size: 0.98rem;
}
.vs-table thead th {
  background: var(--c-primary);
  color: var(--c-white);
  font-family: var(--font-display);
}
.vs-table tbody th { background: var(--c-cream-soft); color: var(--c-primary-deep); font-weight: 700; width: 26%; }
.vs-table td:nth-child(2) { color: var(--c-primary-deep); font-weight: 600; }
.vs-table tbody tr:last-child th, .vs-table tbody tr:last-child td { border-bottom: 0; }
.vs-table__note {
  max-width: 800px;
  margin: var(--space-md) auto 0;
  text-align: center;
  color: var(--c-charcoal-mute);
}

/* === REVIEWS === */
.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  max-width: 1100px;
  margin-inline: auto;
}
.review-card {
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.review-card .stars { color: var(--c-accent); letter-spacing: 1px; }
.review-card p { margin: 0.6rem 0; }
.review-card cite {
  font-style: normal;
  font-weight: 700;
  color: var(--c-primary-deep);
  font-size: 0.92rem;
}
.reviews__provenance {
  text-align: center;
  color: var(--c-charcoal-mute);
  font-size: 0.92rem;
  margin: var(--space-lg) auto 0;
  max-width: 720px;
}

/* === PRACTICAL INFO === */
.practical__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  max-width: 1080px;
  margin-inline: auto;
}
.practical-card {
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.practical-card h3 { margin-bottom: 0.4rem; }
.practical-card p { margin-bottom: 0; color: var(--c-charcoal-mute); }

/* === FAQ === */
.faq__list { max-width: 980px; margin: 0 auto; }
.faq__item {
  background: var(--c-olive-deep);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  margin-bottom: 0.8rem;
  overflow: hidden;
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--c-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.4rem; color: var(--c-accent-bright); flex: 0 0 auto; }
.faq__item[open] summary::after { content: "–"; }
.faq__item .faq__answer { padding: 0 1.4rem 1.2rem; color: var(--c-cream); }
.faq__answer p:last-child { margin-bottom: 0; }

/* === CATEGORIES (#also) === */
.also__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  max-width: 1100px;
  margin-inline: auto;
}
.category-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: var(--c-cream-soft);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-sm);
  color: var(--c-charcoal);
  transition: var(--transition);
}
.category-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); color: var(--c-charcoal); }
.category-card h3 { margin-bottom: 0.2rem; }
.category-card p { margin-bottom: 0.4rem; color: var(--c-charcoal-mute); }
.category-card__featured {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-primary-deep);
}
.category-card__cta {
  margin-top: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--c-primary);
}
.category-card:hover .category-card__cta { color: var(--c-primary-deep); }

/* === FINAL CTA BANNER === */
.cta-banner { background: var(--c-olive); color: var(--c-cream); }
.cta-banner .container { max-width: 820px; text-align: center; }
.cta-banner h2 { color: var(--c-white); }
.cta-banner__bullets {
  list-style: none;
  padding: 0;
  margin: var(--space-md) auto;
  display: inline-flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}
.cta-banner__bullets li { position: relative; padding-left: 1.8rem; }
.cta-banner__bullets li::before {
  content: "✓"; position: absolute; left: 0; color: var(--c-accent-bright); font-weight: 700;
}
.cta-banner__disclosure { font-size: 0.85rem; color: var(--c-travertine); margin-top: var(--space-md); }
.cta-banner .btn--primary {
  background: var(--c-accent-bright);
  color: var(--c-charcoal);
  border-color: var(--c-accent-bright);
}
.cta-banner .btn--primary:hover { background: #E6B23E; color: var(--c-charcoal); }

/* === FOOTER === */
.site-footer { background: var(--c-charcoal); color: var(--c-travertine); padding-block: var(--space-2xl) var(--space-lg); }
.site-footer a { color: var(--c-travertine); }
.site-footer a:hover { color: var(--c-white); }
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: var(--space-xl);
}
.footer__brand-name { font-family: var(--font-display); font-weight: 700; color: var(--c-white); font-size: 1.15rem; margin-bottom: 0.6rem; }
.footer__col h4 { color: var(--c-white); font-size: 0.95rem; margin-bottom: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; }
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: 0.5rem; }
.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: var(--space-md);
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
}
.footer__disclosure { max-width: 70ch; }

/* === RESPONSIVE === */
@media (min-width: 600px) {
  .stats-strip__row { gap: 1.2rem; }
}
@media (min-width: 720px) {
  .facts__row { grid-template-columns: repeat(3, 1fr); }
  .experience-summary__grid { grid-template-columns: 1fr 1fr; }
  .included__grid { grid-template-columns: 1fr 1fr; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .reviews__grid { grid-template-columns: 1fr 1fr; }
  .practical__grid { grid-template-columns: 1fr 1fr; }
  .also__grid { grid-template-columns: 1fr 1fr; }
  .stats-strip__row { grid-template-columns: repeat(4, 1fr); }
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .gallery__item { flex-basis: 48vw; }
}
@media (min-width: 1024px) {
  .gallery__item { flex-basis: 32vw; }
}
@media (min-width: 1080px) {
  .facts__row { grid-template-columns: repeat(5, 1fr); }
  .facts__item:not(:last-child) { border-right: 1px solid var(--c-travertine); }
  .gallery__arrow { display: flex; align-items: center; justify-content: center; }
}
@media (max-width: 1024px) {
  .guided-card { grid-template-columns: 1fr; }
}
@media (max-width: 980px) {
  .nav {
    position: fixed;
    inset: 4rem 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--c-cream);
    border-bottom: 1px solid var(--c-travertine);
    padding: 0.5rem 1rem 1rem;
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 0.7rem 0; width: 100%; border-bottom: 1px solid var(--c-travertine); }
  .nav .btn--primary { margin-top: 0.6rem; }
  .nav-toggle { display: block; }
}
@media (hover: none) {
  .gallery__arrow { display: none !important; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
