/* =============================================================
   Mount Etna Tours — styles.css
   Stack: plain HTML/CSS/JS, mobile-first, single stylesheet
   ============================================================= */

/* -------------------------------------------------------------
   1. Design tokens
   ------------------------------------------------------------- */
:root {
  /* Brand colours (from fonts-colors.txt) */
  --c-primary:         #C85A2E;  /* Molten lava orange — primary CTAs */
  --c-primary-deep:    #8F3D2E;  /* Dark volcanic terracotta — headings, hover */
  --c-accent:          #C85A2E;
  --c-accent-bright:   #E8A33B;  /* Sulphur / volcanic ochre — HERO CTA + dark-bg eyebrow */
  --c-cream:           #F7F3EE;  /* Warm volcanic ash white */
  --c-cream-soft:      #F2EBE0;  /* Section--alt background */
  --c-travertine:      #E8DED1;  /* Dusty lava-stone beige — borders, surface */
  --c-travertine-soft: #EFE6D8;  /* Categories + featured-tour outer */
  --c-olive:           #596B5D;  /* Muted Sicilian-vineyard olive */
  --c-olive-deep:      #455349;
  --c-charcoal:        #2B2623;  /* Charcoal basalt — body text on light, footer */
  --c-charcoal-mute:   #5C534E;
  --c-white:           #FFFFFF;

  /* Audit/legacy aliases (direct hex so contrast_audit.py can resolve) */
  --c-ice:          #F7F3EE;
  --c-navy:         #8F3D2E;
  --c-ocean:        #8F3D2E;
  --c-slate:        #5C534E;
  --c-amber:        #C85A2E;
  --c-amber-bright: #E8A33B;
  --c-gold:         #C85A2E;

  /* Typography */
  --font-display: "Sora", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing */
  --section-py: clamp(2rem, 4vw, 3.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);
}

/* -------------------------------------------------------------
   2. Reset + base
   ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-charcoal);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

section[id] { scroll-margin-top: 5.5rem; }

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

a { color: var(--c-primary-deep); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--c-primary); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--c-primary-deep);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
}
h1 { font-size: clamp(1.95rem, 4.6vw, 3.1rem); }
h2 { font-size: clamp(1.55rem, 3.4vw, 2.3rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.45rem); }

p { margin: 0 0 var(--space-md) 0; }
ul, ol { margin: 0 0 var(--space-md) 0; padding-left: 1.3rem; }
li { margin-bottom: 0.4rem; }

strong { font-weight: 700; color: var(--c-charcoal); }

.container { width: var(--container); margin: 0 auto; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-primary-deep);
  margin-bottom: var(--space-sm);
}

/* -------------------------------------------------------------
   3. Buttons
   ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.92rem 1.55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  min-height: 48px;
  text-align: center;
  white-space: nowrap;
}
.btn--primary {
  background: var(--c-primary);
  color: var(--c-white);
  border-color: var(--c-primary);
}
.btn--primary:hover {
  background: var(--c-primary-deep);
  border-color: var(--c-primary-deep);
  color: var(--c-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--secondary {
  background: transparent;
  color: var(--c-cream);
  border-color: rgba(247, 243, 238, 0.55);
}
.btn--secondary:hover {
  background: rgba(247, 243, 238, 0.15);
  border-color: var(--c-cream);
  color: var(--c-white);
}
.btn--ghost {
  background: var(--c-white);
  color: var(--c-primary-deep);
  border-color: var(--c-travertine);
}
.btn--ghost:hover {
  background: var(--c-cream-soft);
  border-color: var(--c-primary-deep);
}

/* -------------------------------------------------------------
   4. Header
   ------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 238, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-travertine);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: 0.85rem 0;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-primary-deep);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.brand:hover { color: var(--c-primary); }
.brand__mark {
  display: inline-block;
  width: 1.5rem; height: 1.5rem;
  margin-right: 0.45rem;
  vertical-align: -0.3rem;
  background: var(--c-primary);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M3 20h18L13 4.5a1.2 1.2 0 0 0-2 0z' fill='black'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M3 20h18L13 4.5a1.2 1.2 0 0 0-2 0z' fill='black'/></svg>") center/contain no-repeat;
}
.site-nav { display: none; }
.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin: 0; padding: 0;
}
.site-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-charcoal);
  text-decoration: none;
  padding: 0.4rem 0;
}
.site-nav a:hover { color: var(--c-primary-deep); }
.site-nav .btn { padding: 0.55rem 1.1rem; min-height: 40px; font-size: 0.9rem; }
.site-nav .btn--primary { color: var(--c-white); }
.site-nav .btn--primary:hover { color: var(--c-white); }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-sm);
  width: 44px; height: 44px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--c-charcoal);
  margin: 0 auto;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 981px) {
  .nav-toggle { display: none; }
  .site-nav { display: block; }
}
@media (max-width: 980px) {
  .site-nav.is-open {
    display: block;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--c-cream);
    border-bottom: 1px solid var(--c-travertine);
    box-shadow: var(--shadow-md);
  }
  .site-nav.is-open ul {
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1rem 1.25rem;
    gap: 0;
  }
  .site-nav.is-open li { border-bottom: 1px solid var(--c-travertine); }
  .site-nav.is-open li:last-child { border-bottom: 0; padding-top: 0.6rem; }
  .site-nav.is-open a {
    display: block;
    padding: 0.85rem 0.25rem;
  }
}

/* -------------------------------------------------------------
   5. Hero
   ------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(3rem, 7vw, 5.5rem) 0 var(--space-2xl);
  color: var(--c-cream);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 16, 14, 0.78) 0%,
    rgba(20, 16, 14, 0.58) 42%,
    rgba(20, 16, 14, 0.65) 100%
  );
  z-index: -1;
}
.hero-content {
  width: var(--container);
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}
.hero-overlay {
  margin-bottom: var(--space-lg);
}
.hero-overlay > :last-child { margin-bottom: 0; }

.hero .eyebrow {
  color: var(--c-accent-bright);
  font-size: 0.82rem;
}
.hero h1 {
  color: var(--c-cream);
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.70), 0 1px 3px rgba(0, 0, 0, 0.55);
}
.hero-lede {
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.55;
  color: var(--c-cream);
  margin-bottom: var(--space-md);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65), 0 1px 2px rgba(0, 0, 0, 0.50);
}
.hero strong { color: inherit; font-weight: 700; }
.hero-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  font-size: 0.96rem;
  color: var(--c-cream);
}
.hero-rating .stars { color: var(--c-accent-bright); letter-spacing: 0.04em; }
.hero-rating .score { font-weight: 700; }

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: var(--space-lg);
}
.hero-pills span {
  display: inline-flex;
  align-items: center;
  font-size: 0.84rem;
  font-weight: 500;
  padding: 0.42rem 0.85rem;
  background: rgba(255, 255, 255, 0.13);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 999px;
  color: var(--c-cream);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
/* HERO PRIMARY CTA = YELLOW — hero-only override */
.hero .btn--primary {
  background: var(--c-accent-bright);
  border-color: var(--c-accent-bright);
  color: var(--c-charcoal);
}
.hero .btn--primary:hover {
  background: #d4912f;
  border-color: #d4912f;
  color: var(--c-charcoal);
}

@media (max-width: 640px) {
  .hero { min-height: 86vh; padding-top: 4rem; padding-bottom: 5rem; }
  .hero-actions .btn { width: 100%; }
}

/* -------------------------------------------------------------
   6. Facts strip
   ------------------------------------------------------------- */
.facts {
  background: var(--c-cream-soft);
  border-bottom: 1px solid var(--c-travertine);
  padding: clamp(1rem, 2vw, 1.4rem) 0;
}
.facts__row {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 1.4rem;
}
.facts__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.facts__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.4vw, 1.55rem);
  color: var(--c-primary-deep);
  line-height: 1.15;
  margin-bottom: 0.18rem;
}
.facts__label {
  font-size: clamp(0.85rem, 1.3vw, 0.96rem);
  color: var(--c-charcoal-mute);
}
@media (min-width: 720px) {
  .facts__row { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1080px) {
  .facts__row {
    grid-template-columns: repeat(5, 1fr);
    column-gap: 0;
  }
  .facts__item:not(:last-child) {
    border-right: 1px solid var(--c-travertine);
  }
}

/* -------------------------------------------------------------
   7. Sections (generic)
   ------------------------------------------------------------- */
.section { padding: var(--section-py) 0; 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--travertine { background: var(--c-travertine-soft); }

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

/* Eyebrow override on dark sections.
   Charcoal-dark backgrounds (hero gradient, dark sections, gallery) can host
   the saturated yellow (E8A33B, ~7:1 against charcoal). Olive (#596B5D) is
   mid-luminance — saturated yellow drops to ~3.4:1, so olive sections use
   cream (~5.2:1) instead. */
.section--dark .eyebrow,
.hero .eyebrow,
.gallery .eyebrow {
  color: var(--c-accent-bright);
}
.section--olive .eyebrow,
.cta-banner .eyebrow,
.why-choose .eyebrow,
.faq .eyebrow {
  color: var(--c-cream);
}

.section-head {
  max-width: 760px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}
.section-head .eyebrow { display: inline-block; }
.section-head__sub {
  font-size: 1.04rem;
  color: var(--c-charcoal-mute);
  margin: 0.25rem auto 0;
  max-width: 640px;
}
.section--dark .section-head__sub,
.section--olive .section-head__sub {
  color: rgba(247, 243, 238, 0.80);
}

/* -------------------------------------------------------------
   8. Intro section (combined: prose + grid + CTA)
   ------------------------------------------------------------- */
.intro__body {
  max-width: 760px;
  margin: 0 auto var(--space-xl);
  text-align: left;
}
.intro__body p {
  font-size: 1.06rem;
  line-height: 1.7;
}

.experience-summary__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 1000px;
  margin: 0 auto var(--space-lg);
}
.experience-summary__col {
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: clamp(1.25rem, 2.2vw, 1.75rem);
  box-shadow: var(--shadow-sm);
}
.experience-summary__col h3 {
  margin: 0 0 0.95rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--c-travertine);
  color: var(--c-primary-deep);
}
.experience-summary__col ul {
  list-style: none;
  margin: 0; padding: 0;
}
.experience-summary__col li {
  position: relative;
  padding-left: 1.85rem;
  margin-bottom: 0.7rem;
  font-size: 0.98rem;
  line-height: 1.5;
}
.experience-summary__col li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.32rem;
  width: 1.15rem; height: 1.15rem;
  border-radius: 50%;
  background: var(--c-primary);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z' fill='white'/></svg>") center/0.85rem no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z' fill='white'/></svg>") center/0.85rem no-repeat;
}
.experience-summary__cta {
  text-align: center;
  margin: 0;
}
@media (min-width: 720px) {
  .experience-summary__grid { grid-template-columns: 1fr 1fr; }
}

/* -------------------------------------------------------------
   9. Experience (5-step itinerary — Florence pattern)
   ------------------------------------------------------------- */
.itinerary__list {
  list-style: none;
  margin: 0 0 var(--space-lg);
  padding: 0;
  display: grid;
  gap: var(--space-md);
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.itinerary__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-md);
  align-items: start;
  background: var(--c-cream);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: clamp(1.1rem, 2vw, 1.5rem);
  box-shadow: var(--shadow-sm);
}
.section--alt .itinerary__item { background: var(--c-white); }
.itinerary__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.4vw, 2.2rem);
  line-height: 1;
  color: var(--c-primary);
  letter-spacing: -0.02em;
  min-width: 2.3rem;
}
.itinerary__item h3 { margin-bottom: 0.4rem; }
.itinerary__item p { margin-bottom: 0; font-size: 0.98rem; line-height: 1.6; }

/* -------------------------------------------------------------
   10. Featured tour card (side-by-side with widget)
   ------------------------------------------------------------- */
.tour-card {
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 2.5vw, 2rem);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 1120px;
  margin: 0 auto;
}
@media (min-width: 1025px) {
  .tour-card { grid-template-columns: 1.18fr 1fr; gap: var(--space-xl); align-items: start; }
}
.tour-card .eyebrow { color: var(--c-primary-deep); margin-bottom: 0.45rem; }
.tour-card h2 { margin-bottom: var(--space-sm); font-size: clamp(1.25rem, 2.5vw, 1.7rem); }
.tour-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.95rem;
  align-items: center;
  font-size: 0.93rem;
  color: var(--c-charcoal-mute);
  margin-bottom: var(--space-md);
}
.tour-card__meta strong { color: var(--c-charcoal); }
.tour-card__meta .stars { color: var(--c-accent); letter-spacing: 0.04em; }
.tour-card__meta .pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  background: var(--c-cream-soft);
  border: 1px solid var(--c-travertine);
  color: var(--c-primary-deep);
}
.tour-card__lede { margin-bottom: var(--space-md); }
.tour-card__list {
  list-style: none;
  margin: 0 0 var(--space-md);
  padding: 0;
}
.tour-card__list li {
  position: relative;
  padding-left: 1.85rem;
  margin-bottom: 0.55rem;
  font-size: 0.97rem;
}
.tour-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.30rem;
  width: 1.15rem; height: 1.15rem;
  border-radius: 50%;
  background: var(--c-primary);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z' fill='white'/></svg>") center/0.85rem no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z' fill='white'/></svg>") center/0.85rem no-repeat;
}
.tour-card__meeting {
  margin: var(--space-md) 0 0;
  font-size: 0.9rem;
  color: var(--c-charcoal-mute);
  font-style: italic;
}
.tour-card__widget {
  background: var(--c-cream-soft);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: 1rem;
  min-height: 320px;
}

/* -------------------------------------------------------------
   11. Highlights (4-card grid)
   ------------------------------------------------------------- */
.highlights__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
.highlights__intro {
  max-width: 760px;
  margin: 0 auto var(--space-lg);
  text-align: center;
  color: var(--c-charcoal-mute);
  font-size: 1.02rem;
}
.highlight-card {
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: clamp(1.25rem, 2.2vw, 1.7rem);
  box-shadow: var(--shadow-sm);
}
.highlight-card .eyebrow { display: block; margin-bottom: 0.4rem; }
.highlight-card h3 { margin-bottom: 0.6rem; font-size: 1.15rem; }
.highlight-card p { margin: 0; font-size: 0.97rem; line-height: 1.6; }
@media (min-width: 640px)  { .highlights__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .highlights__grid { grid-template-columns: repeat(4, 1fr); } }

/* -------------------------------------------------------------
   12. Etna stats (optional landmark by-the-numbers)
   ------------------------------------------------------------- */
.etna-stats { background: var(--c-travertine-soft); border-top: 1px solid var(--c-travertine); border-bottom: 1px solid var(--c-travertine); }
.etna-stats__row {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin: 0; padding: 0;
}
.etna-stats__item {
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: clamp(1rem, 1.8vw, 1.35rem);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.etna-stats__value {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--c-primary);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}
.etna-stats__label {
  display: block;
  font-size: 0.92rem;
  color: var(--c-charcoal-mute);
  line-height: 1.4;
}
@media (min-width: 720px) {
  .etna-stats__row { grid-template-columns: repeat(4, 1fr); }
}

/* -------------------------------------------------------------
   13. Gallery (full-width strip)
   ------------------------------------------------------------- */
.gallery { padding-bottom: 0; }
.gallery .container { margin-bottom: var(--space-lg); }
.gallery .section-head__sub { color: rgba(247, 243, 238, 0.78); }
.gallery__wrapper {
  position: relative;
  padding-bottom: var(--section-py);
}
.gallery__wrapper--full {
  width: 100vw;
  margin-left:  calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.gallery__wrapper--full::after {
  content: "";
  position: absolute;
  right: 0; top: 0;
  width: 80px; height: 100%;
  background: linear-gradient(to right, rgba(43, 38, 35, 0), var(--c-charcoal));
  pointer-events: none;
  z-index: 1;
}
.gallery__strip {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--c-accent-bright) rgba(247, 243, 238, 0.10);
  padding-left:  max(1rem, calc((100vw - 1240px) / 2));
  padding-right: max(1rem, calc((100vw - 1240px) / 2));
  padding-bottom: 1rem;
}
.gallery__strip::-webkit-scrollbar { height: 8px; }
.gallery__strip::-webkit-scrollbar-track { background: rgba(247, 243, 238, 0.10); border-radius: 4px; }
.gallery__strip::-webkit-scrollbar-thumb { background: var(--c-accent-bright); border-radius: 4px; }

.gallery__item {
  flex: 0 0 78vw;
  max-width: 460px;
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(247, 243, 238, 0.08);
}
.gallery__item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.gallery__item figcaption {
  padding: 0.7rem 0.95rem;
  font-size: 0.86rem;
  color: rgba(247, 243, 238, 0.82);
}
@media (min-width: 720px) {
  .gallery__item { flex: 0 0 46vw; }
  .gallery__item img { height: 320px; }
}
@media (min-width: 1080px) {
  .gallery__item { flex: 0 0 30vw; }
}

.gallery__arrow {
  display: none;
}
@media (min-width: 1080px) {
  .gallery__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px; height: 44px;
    background: rgba(247, 243, 238, 0.92);
    color: var(--c-charcoal);
    border: 1px solid var(--c-travertine);
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    font-size: 1.3rem;
    font-family: var(--font-display);
    font-weight: 600;
    box-shadow: var(--shadow-md);
  }
  .gallery__arrow:hover { background: var(--c-white); }
  .gallery__arrow--prev { left: 1.5rem; }
  .gallery__arrow--next { right: 1.5rem; }
}

/* -------------------------------------------------------------
   14. Included / Not included (2-column lists)
   ------------------------------------------------------------- */
.included__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 1000px;
  margin: 0 auto;
}
.included__col {
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: clamp(1.25rem, 2vw, 1.7rem);
  box-shadow: var(--shadow-sm);
}
.included__col h3 {
  margin: 0 0 0.85rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--c-travertine);
}
.included__col ul {
  list-style: none;
  margin: 0; padding: 0;
}
.included__col li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: 0.55rem;
  font-size: 0.97rem;
}
.included__col--yes li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 1.2rem; height: 1.2rem;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-primary);
  color: var(--c-white);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 700;
}
.included__col--no li::before {
  content: "×";
  position: absolute; left: 0; top: 0;
  width: 1.2rem; height: 1.2rem;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-olive);
  color: var(--c-white);
  border-radius: 50%;
  font-size: 0.95rem;
  font-weight: 700;
}
@media (min-width: 720px) {
  .included__grid { grid-template-columns: 1fr 1fr; }
}

/* -------------------------------------------------------------
   15. Why choose (olive, 4-card grid)
   ------------------------------------------------------------- */
.why-choose__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
.why-card {
  background: rgba(247, 243, 238, 0.06);
  border: 1px solid rgba(247, 243, 238, 0.18);
  border-radius: var(--radius-md);
  padding: clamp(1.2rem, 2.2vw, 1.65rem);
  color: var(--c-cream);
}
.why-card .eyebrow { color: var(--c-accent-bright); }
.why-card h3 { color: var(--c-cream); margin-bottom: 0.55rem; font-size: 1.12rem; }
.why-card p { color: rgba(247, 243, 238, 0.88); font-size: 0.96rem; margin: 0; line-height: 1.6; }
@media (min-width: 640px)  { .why-choose__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .why-choose__grid { grid-template-columns: repeat(4, 1fr); } }

/* -------------------------------------------------------------
   16. South vs North comparison table
   ------------------------------------------------------------- */
.vs-table__wrap {
  max-width: 920px;
  margin: 0 auto var(--space-md);
  overflow-x: auto;
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  background: var(--c-white);
  box-shadow: var(--shadow-sm);
}
.vs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.vs-table th, .vs-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--c-travertine);
}
.vs-table thead th {
  background: var(--c-cream-soft);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--c-primary-deep);
  font-size: 0.97rem;
}
.vs-table tbody th {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--c-charcoal);
  width: 30%;
  background: var(--c-cream-soft);
}
.vs-table tbody td:nth-child(2) {
  font-weight: 600;
  color: var(--c-primary-deep);
}
.vs-table tr:last-child th,
.vs-table tr:last-child td { border-bottom: 0; }
.vs-table__note {
  max-width: 920px;
  margin: 0 auto;
  font-size: 0.97rem;
  color: var(--c-charcoal-mute);
  text-align: center;
}
.vs-table__note strong { color: var(--c-primary-deep); }

/* -------------------------------------------------------------
   17. Reviews (4 quote cards)
   ------------------------------------------------------------- */
.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
.review-card {
  background: var(--c-cream-soft);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: clamp(1.2rem, 2.2vw, 1.55rem);
  box-shadow: var(--shadow-sm);
}
.review-card__stars {
  color: var(--c-accent);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.55rem;
}
.review-card blockquote {
  margin: 0 0 0.85rem;
  font-style: italic;
  color: var(--c-charcoal);
  font-size: 0.99rem;
  line-height: 1.55;
}
.review-card__attrib {
  font-size: 0.88rem;
  color: var(--c-charcoal-mute);
  margin: 0;
}
.review-card__attrib strong { color: var(--c-primary-deep); font-weight: 600; }
@media (min-width: 720px)  { .reviews__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .reviews__grid { grid-template-columns: repeat(4, 1fr); } }

/* -------------------------------------------------------------
   18. Practical info (6 Q&A cards)
   ------------------------------------------------------------- */
.practical__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 1080px;
  margin: 0 auto;
}
.practical-card {
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: clamp(1.15rem, 2vw, 1.5rem);
  box-shadow: var(--shadow-sm);
}
.practical-card h3 {
  font-size: 1.06rem;
  margin-bottom: 0.55rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.practical-card h3::before {
  content: "";
  display: inline-block;
  width: 1.5rem; height: 0.16rem;
  background: var(--c-primary);
  border-radius: 2px;
}
.practical-card p { margin: 0; font-size: 0.96rem; line-height: 1.6; }
@media (min-width: 720px)  { .practical__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .practical__grid { grid-template-columns: 1fr 1fr 1fr; } }

/* -------------------------------------------------------------
   19. FAQ accordion
   ------------------------------------------------------------- */
.faq { background: var(--c-olive); color: var(--c-cream); }
.faq h2 { color: var(--c-cream); }
.faq__list {
  max-width: 880px;
  margin: 0 auto;
}
.faq__item {
  background: rgba(247, 243, 238, 0.06);
  border: 1px solid rgba(247, 243, 238, 0.18);
  border-radius: var(--radius-md);
  margin-bottom: 0.65rem;
  overflow: hidden;
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--c-cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background 0.2s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 1.45rem;
  color: var(--c-accent-bright);
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
}
.faq__item[open] summary { background: rgba(247, 243, 238, 0.04); }
.faq__item[open] summary::after { content: "−"; }
.faq__item summary:hover { background: rgba(247, 243, 238, 0.10); }
.faq__answer {
  padding: 0 1.15rem 1.1rem;
  font-size: 0.97rem;
  line-height: 1.65;
  color: rgba(247, 243, 238, 0.92);
}
.faq__answer p { margin: 0; }

/* -------------------------------------------------------------
   20. Categories / alternates (#also)
   ------------------------------------------------------------- */
.also { background: var(--c-travertine-soft); }
.also__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 1080px;
  margin: 0 auto;
}
.category-card {
  display: block;
  background: var(--c-cream-soft);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: clamp(1.25rem, 2.2vw, 1.7rem);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--c-charcoal);
  transition: transform var(--transition), box-shadow var(--transition);
}
.category-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--c-charcoal);
  border-color: var(--c-primary-deep);
}
.category-card .eyebrow { display: block; color: var(--c-primary-deep); }
.category-card h3 { margin-bottom: 0.5rem; }
.category-card p { font-size: 0.97rem; line-height: 1.55; margin-bottom: var(--space-sm); }
.category-card__featured {
  display: block;
  font-size: 0.88rem;
  color: var(--c-charcoal-mute);
  margin-bottom: 0.8rem;
  font-style: italic;
}
.category-card__cta {
  display: inline-block;
  font-weight: 600;
  color: var(--c-primary);
  font-size: 0.94rem;
  letter-spacing: 0.01em;
}
.category-card:hover .category-card__cta { color: var(--c-primary-deep); }
.category-card__cta::after { content: " →"; }
@media (min-width: 720px) { .also__grid { grid-template-columns: 1fr 1fr; } }

/* -------------------------------------------------------------
   21. Final CTA banner (#book-now) — OLIVE
   ------------------------------------------------------------- */
.cta-banner {
  background: var(--c-olive);
  color: var(--c-cream);
  padding: var(--section-py) 0;
  text-align: center;
}
.cta-banner__inner {
  max-width: 720px;
  margin: 0 auto;
}
.cta-banner h2 { color: var(--c-cream); margin-bottom: var(--space-md); }
.cta-banner p { color: rgba(247, 243, 238, 0.92); font-size: 1.04rem; margin-bottom: var(--space-md); }
.cta-banner__bullets {
  list-style: none;
  margin: 0 0 var(--space-md);
  padding: 0;
  display: grid;
  gap: 0.5rem;
  text-align: left;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner__bullets li {
  position: relative;
  padding-left: 1.7rem;
  font-size: 0.97rem;
  color: rgba(247, 243, 238, 0.94);
}
.cta-banner__bullets li::before {
  content: "✓";
  position: absolute; left: 0; top: 0.05rem;
  width: 1.2rem; height: 1.2rem;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-accent-bright);
  color: var(--c-charcoal);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 700;
}
.cta-banner__disclosure {
  font-size: 0.84rem;
  color: rgba(247, 243, 238, 0.88);
  margin-top: var(--space-md);
  margin-bottom: 0;
}

/* -------------------------------------------------------------
   22. Footer
   ------------------------------------------------------------- */
.site-footer {
  background: var(--c-charcoal);
  color: rgba(247, 243, 238, 0.80);
  padding: 3rem 0 1.5rem;
  font-size: 0.92rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}
.site-footer h4 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--c-accent-bright);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}
.site-footer a { color: rgba(247, 243, 238, 0.88); text-decoration: none; }
.site-footer a:hover { color: var(--c-accent-bright); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.45rem; }
.site-footer__brand { font-size: 0.93rem; line-height: 1.65; }
.site-footer__brand .brand {
  color: var(--c-cream);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  display: inline-block;
}
.site-footer__bottom {
  border-top: 1px solid rgba(247, 243, 238, 0.16);
  padding-top: 1.25rem;
  font-size: 0.84rem;
  color: rgba(247, 243, 238, 0.60);
  text-align: center;
  line-height: 1.6;
}
.site-footer__bottom p { margin: 0.25rem 0; }
@media (min-width: 720px) { .site-footer__grid { grid-template-columns: 2fr 1fr 1fr; } }

/* -------------------------------------------------------------
   23. Utilities
   ------------------------------------------------------------- */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
