/* ==========================================================================
   bestpompeiitours.com — Manrope/Inter, cream + parchment + terracotta + teal + olive
   Design tokens locked to the new-site-simple pattern. Per-section blocks below.
   ========================================================================== */

:root {
  /* COLOUR ROLES */
  --c-primary:        #B9623C;
  --c-primary-deep:   #8E4A2E;
  --c-accent:         #3490A8;
  --c-accent-bright:  #E2B53A;
  --c-cream:          #FAF7F2;
  --c-cream-soft:     #F0E8DA;
  --c-travertine:     #E0D5C1;
  --c-travertine-soft:#EDE2CC;
  --c-olive:          #62504D;
  --c-olive-deep:     #4A3B39;
  --c-charcoal:       #2A2220;
  --c-charcoal-mute:  #6B5B57;
  --c-white:          #FFFFFF;

  /* TYPOGRAPHY */
  --font-display: "Montserrat", 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);

  /* AUDIT ALIASES (contrast_audit.py compatibility) */
  --c-ice: var(--c-cream);
  --c-navy: var(--c-primary-deep);
  --c-ocean: var(--c-primary-deep);
  --c-slate: var(--c-charcoal-mute);
  --c-amber: var(--c-accent);
  --c-amber-bright: var(--c-accent-bright);
  --c-gold: var(--c-accent);
}

/* ==========================================================================
   RESET + BASE
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

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

img,
picture,
video,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--c-primary-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

a:hover {
  color: var(--c-primary);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--c-charcoal);
  line-height: 1.2;
  margin: 0 0 var(--space-md) 0;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); }
h4 { font-size: 1.05rem; }

p {
  margin: 0 0 var(--space-md) 0;
}

ul, ol {
  margin: 0 0 var(--space-md) 0;
  padding-left: 1.4rem;
}

li { margin-bottom: 0.3rem; }

strong { font-weight: 600; }

.container {
  width: var(--container);
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: var(--section-py) 0;
}

.section--alt {
  background: var(--c-cream-soft);
}

.section--dark {
  background: var(--c-charcoal);
  color: var(--c-cream);
}

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

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

/* eyebrow — DEFAULT on light bg */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-primary-deep);
  margin-bottom: var(--space-sm);
}

/* eyebrow — OVERRIDE on dark sections */
.section--olive .eyebrow,
.section--dark .eyebrow,
.cta-banner .eyebrow,
.hero .eyebrow,
.why-choose .eyebrow,
.gallery .eyebrow,
.faq .eyebrow {
  color: var(--c-accent-bright);
}

.section-head {
  margin-bottom: var(--space-xl);
  text-align: center;
}

.section-head h2 {
  margin-bottom: var(--space-sm);
}

.section-head__sub {
  color: var(--c-charcoal-mute);
  font-size: 1.05rem;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.section--olive .section-head__sub,
.section--dark .section-head__sub {
  color: rgba(250, 247, 242, 0.8);
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--c-primary);
  color: var(--c-cream);
  border-color: var(--c-primary);
}

.btn--primary:hover {
  background: var(--c-primary-deep);
  border-color: var(--c-primary-deep);
  color: var(--c-cream);
}

.btn--secondary {
  background: transparent;
  color: var(--c-cream);
  border-color: rgba(250, 247, 242, 0.7);
}

.btn--secondary:hover {
  background: rgba(250, 247, 242, 0.12);
  color: var(--c-cream);
  border-color: var(--c-cream);
}

/* Hero primary CTA — YELLOW override (hero-only) */
.hero .btn--primary {
  background: var(--c-accent-bright);
  color: var(--c-charcoal);
  border-color: var(--c-accent-bright);
}

.hero .btn--primary:hover {
  background: #D1A032;
  border-color: #D1A032;
  color: var(--c-charcoal);
}

.hero strong { color: inherit; }

/* ==========================================================================
   HEADER + NAV
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-travertine);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
  width: var(--container);
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--c-primary-deep);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.brand:hover { color: var(--c-primary); }

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.3rem;
}

.nav__list a {
  color: var(--c-charcoal);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav__list a:hover { color: var(--c-primary); }

.nav .btn {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-sm);
  width: 42px;
  height: 36px;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--c-charcoal);
  margin: 4px auto;
  transition: var(--transition);
}

@media (max-width: 980px) {
  .nav-toggle { display: inline-block; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--c-cream);
    border-bottom: 1px solid var(--c-travertine);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    display: none;
    gap: 0.8rem;
  }
  .nav.is-open { display: flex; }
  .nav__list {
    flex-direction: column;
    gap: 0.5rem;
  }
  .nav__list a {
    display: block;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--c-travertine);
  }
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--c-cream);
  isolation: isolate;
  padding: 6rem 0 var(--space-2xl) 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(42, 34, 32, 0.55) 0%,
    rgba(42, 34, 32, 0.35) 40%,
    rgba(42, 34, 32, 0.7) 100%);
  z-index: -1;
}

.hero-content {
  width: var(--container);
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.hero-overlay {
  background: rgba(42, 34, 32, 0.42);
  -webkit-backdrop-filter: blur(14px) saturate(115%);
  backdrop-filter: blur(14px) saturate(115%);
  border: 1px solid rgba(250, 247, 242, 0.16);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3.5vw, 2.4rem) clamp(1.4rem, 3vw, 2.4rem);
  box-shadow: 0 24px 60px -22px rgba(0, 0, 0, 0.55);
  margin-bottom: var(--space-lg);
}

.hero-overlay > :last-child {
  margin-bottom: 0;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .hero-overlay {
    background: rgba(42, 34, 32, 0.78);
  }
}

.hero h1 {
  color: var(--c-cream);
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: rgba(250, 247, 242, 0.95);
  max-width: 56ch;
  margin-bottom: var(--space-md);
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.hero-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  color: rgba(250, 247, 242, 0.95);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
}

.hero-rating .stars {
  color: var(--c-accent-bright);
  letter-spacing: 2px;
}

.hero-rating .score {
  font-weight: 700;
  color: var(--c-cream);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: var(--space-lg);
}

.hero-pills span {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: rgba(250, 247, 242, 0.14);
  border: 1px solid rgba(250, 247, 242, 0.3);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--c-cream);
  backdrop-filter: blur(4px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 640px) {
  .hero {
    min-height: 78vh;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

/* ==========================================================================
   FACTS STRIP (#facts) — 5-tile horizontal row
   ========================================================================== */

.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: repeat(2, 1fr);
  gap: 1rem 1.5rem;
}

@media (min-width: 720px) {
  .facts__row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1080px) {
  .facts__row {
    grid-template-columns: repeat(5, 1fr);
  }
  .facts__item + .facts__item {
    border-left: 1px solid var(--c-travertine);
    padding-left: 1.5rem;
  }
}

.facts__item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.facts__value {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  font-weight: 600;
  color: var(--c-primary-deep);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.facts__label {
  font-size: clamp(0.92rem, 1.3vw, 1.02rem);
  color: var(--c-charcoal-mute);
  line-height: 1.3;
}

/* ==========================================================================
   INTRO (#intro) — combined eyebrow + H2 + 2 paragraphs + grid + CTA
   ========================================================================== */

.intro__body {
  max-width: 700px;
  margin: 0 auto var(--space-xl) auto;
  text-align: center;
}

.intro__body p {
  font-size: 1.05rem;
  color: var(--c-charcoal);
  margin-bottom: var(--space-md);
}

.experience-summary__grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 720px) {
  .experience-summary__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.experience-summary__col {
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
}

.experience-summary__col h3 {
  font-size: 1.15rem;
  color: var(--c-primary-deep);
  border-bottom: 1px solid var(--c-travertine);
  padding-bottom: 0.6rem;
  margin-bottom: var(--space-md);
}

.experience-summary__col ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.experience-summary__col li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.7rem;
  font-size: 0.97rem;
  line-height: 1.5;
  color: var(--c-charcoal);
}

.experience-summary__col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--c-primary);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='none' stroke='%23FAF7F2' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='M5 10l3 3 7-7'/></svg>");
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: center;
}

.experience-summary__cta {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ==========================================================================
   EXPERIENCE (#experience) — 5-step Florence pattern
   ========================================================================== */

.itinerary__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 880px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.itinerary__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  background: var(--c-cream-soft);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.5rem;
}

.itinerary__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--c-primary);
  line-height: 1;
  letter-spacing: -0.03em;
  align-self: start;
}

.itinerary__item h3 {
  font-size: 1.1rem;
  color: var(--c-charcoal);
  margin-bottom: 0.4rem;
}

.itinerary__item p {
  font-size: 0.97rem;
  color: var(--c-charcoal-mute);
  line-height: 1.55;
  margin: 0;
}

/* ==========================================================================
   FEATURED TOUR CARD (#guided-tour) — side-by-side text + widget
   ========================================================================== */

.guided-tour {
  background: var(--c-travertine-soft);
  padding: var(--section-py) 0;
}

.guided-tour__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

@media (min-width: 1024px) {
  .guided-tour__grid {
    grid-template-columns: 1.1fr 1fr;
    gap: var(--space-2xl);
  }
}

.guided-tour__text h2 {
  margin-bottom: var(--space-md);
  color: var(--c-primary-deep);
}

.guided-tour__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
  color: var(--c-charcoal-mute);
}

.guided-tour__meta strong {
  color: var(--c-primary-deep);
  font-weight: 700;
  font-size: 1.05rem;
}

.guided-tour__pill {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  background: var(--c-primary);
  color: var(--c-cream);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  margin-left: 0.3rem;
}

.guided-tour__intro {
  font-size: 1.02rem;
  color: var(--c-charcoal);
  margin-bottom: var(--space-md);
}

.guided-tour__included {
  list-style: none;
  padding-left: 0;
  margin: 0 0 var(--space-md) 0;
}

.guided-tour__included li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.6rem;
  font-size: 0.97rem;
  color: var(--c-charcoal);
}

.guided-tour__included li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--c-primary);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='none' stroke='%23FAF7F2' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='M5 10l3 3 7-7'/></svg>");
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: center;
}

.guided-tour__reviews {
  font-size: 0.97rem;
  color: var(--c-charcoal-mute);
  margin-bottom: var(--space-md);
}

.guided-tour__meeting {
  font-size: 0.92rem;
  color: var(--c-charcoal-mute);
  font-style: italic;
  border-left: 3px solid var(--c-primary);
  padding-left: 0.85rem;
}

.guided-tour__widget {
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: 1rem;
  min-height: 380px;
}

/* ==========================================================================
   HIGHLIGHTS (#highlights) — 4-card grid
   ========================================================================== */

.highlights__intro {
  max-width: 640px;
  margin: 0 auto var(--space-xl) auto;
  text-align: center;
  color: var(--c-charcoal-mute);
  font-size: 1.02rem;
}

.highlights__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 720px) {
  .highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .highlights__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.highlight-card {
  background: var(--c-cream-soft);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.5rem;
}

.highlight-card .eyebrow {
  margin-bottom: 0.6rem;
  font-size: 0.72rem;
}

.highlight-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: var(--c-charcoal);
}

.highlight-card p {
  font-size: 0.95rem;
  color: var(--c-charcoal-mute);
  line-height: 1.55;
  margin: 0;
}

/* ==========================================================================
   GALLERY (#gallery) — FULL-WIDTH horizontal-scroll strip
   ========================================================================== */

.gallery {
  background: var(--c-charcoal);
  color: var(--c-cream);
  padding: var(--section-py) 0;
}

.gallery .section-head h2 { color: var(--c-cream); }
.gallery .section-head__sub { color: rgba(250, 247, 242, 0.75); }

.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;
  width: 90px;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(42, 34, 32, 0) 0%, var(--c-charcoal) 100%);
}

.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: rgba(250, 247, 242, 0.4) transparent;
  padding-bottom: 0.7rem;
  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.1); border-radius: 4px; }
.gallery__strip::-webkit-scrollbar-thumb { background: rgba(250, 247, 242, 0.45); border-radius: 4px; }
.gallery__strip::-webkit-scrollbar-thumb:hover { background: rgba(250, 247, 242, 0.65); }

.gallery__item {
  flex: 0 0 78vw;
  max-width: 580px;
  scroll-snap-align: start;
  margin: 0;
  display: flex;
  flex-direction: column;
}

@media (min-width: 720px) {
  .gallery__item { flex: 0 0 46vw; }
}

@media (min-width: 1080px) {
  .gallery__item { flex: 0 0 30vw; max-width: 420px; }
}

.gallery__item img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.gallery__item figcaption {
  font-size: 0.88rem;
  color: rgba(250, 247, 242, 0.8);
  margin-top: 0.55rem;
  padding: 0 0.25rem;
  line-height: 1.4;
}

.gallery__arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(250, 247, 242, 0.92);
  color: var(--c-charcoal);
  border: 1px solid var(--c-travertine);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  font-family: var(--font-display);
}

.gallery__arrow:hover { background: var(--c-cream); }
.gallery__arrow--prev { left: 0.75rem; }
.gallery__arrow--next { right: 0.75rem; }

@media (min-width: 1080px) and (hover: hover) {
  .gallery__arrow { display: inline-block; }
}

/* ==========================================================================
   INCLUDED/NOT INCLUDED (#included) — 2-col lists
   ========================================================================== */

.included__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 720px) {
  .included__grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
}

.included__col {
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.75rem;
}

.included__col h3 {
  font-size: 1.1rem;
  color: var(--c-primary-deep);
  border-bottom: 1px solid var(--c-travertine);
  padding-bottom: 0.6rem;
  margin-bottom: var(--space-md);
}

.included__col ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.included__col li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.7rem;
  font-size: 0.97rem;
  line-height: 1.5;
  color: var(--c-charcoal);
}

.included__col--yes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--c-primary);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='none' stroke='%23FAF7F2' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='M5 10l3 3 7-7'/></svg>");
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: center;
}

.included__col--no li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--c-charcoal-mute);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='none' stroke='%23FAF7F2' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='M6 6l8 8M14 6l-8 8'/></svg>");
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ==========================================================================
   WHY CHOOSE (#why-choose) — 4-card comparison grid on olive
   ========================================================================== */

.section--olive {
  background: var(--c-olive);
  color: var(--c-cream);
}

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

.why-choose__intro {
  max-width: 640px;
  margin: 0 auto var(--space-xl) auto;
  text-align: center;
  color: rgba(250, 247, 242, 0.85);
  font-size: 1.02rem;
}

.why-choose__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 720px) {
  .why-choose__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1080px) {
  .why-choose__grid { grid-template-columns: repeat(4, 1fr); }
}

.why-choose-card {
  background: rgba(250, 247, 242, 0.08);
  border: 1px solid rgba(250, 247, 242, 0.18);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.6rem;
}

.why-choose-card h3 {
  font-size: 1.05rem;
  color: var(--c-cream);
  margin-bottom: 0.7rem;
}

.why-choose-card p {
  font-size: 0.95rem;
  color: rgba(250, 247, 242, 0.85);
  line-height: 1.55;
  margin: 0;
}

/* ==========================================================================
   REVIEWS (#reviews)
   ========================================================================== */

.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 1080px;
  margin: 0 auto;
}

@media (min-width: 720px) {
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
}

.review-card {
  background: var(--c-cream-soft);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.65rem;
  position: relative;
}

.review-card__stars {
  color: var(--c-accent-bright);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.review-card blockquote {
  margin: 0 0 var(--space-md) 0;
  font-size: 0.98rem;
  color: var(--c-charcoal);
  line-height: 1.55;
  font-style: italic;
}

.review-card__author {
  font-size: 0.9rem;
  color: var(--c-charcoal-mute);
  font-weight: 600;
}

.review-card__author span {
  font-weight: 400;
  margin-left: 0.4rem;
}

/* ==========================================================================
   PRACTICAL INFO (#practical-info) — 6 Q&A
   ========================================================================== */

.practical__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 720px) {
  .practical__grid { grid-template-columns: repeat(2, 1fr); }
}

.practical-card {
  background: var(--c-white);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.55rem;
}

.practical-card h3 {
  font-size: 1.02rem;
  color: var(--c-primary-deep);
  margin-bottom: 0.55rem;
}

.practical-card p {
  font-size: 0.96rem;
  color: var(--c-charcoal);
  line-height: 1.55;
  margin: 0;
}

/* ==========================================================================
   FAQ (#faq) — accordion on olive
   ========================================================================== */

.faq {
  background: var(--c-olive);
  color: var(--c-cream);
  padding: var(--section-py) 0;
}

.faq .section-head h2 { color: var(--c-cream); }
.faq .section-head__sub { color: rgba(250, 247, 242, 0.85); }

.faq__list {
  max-width: 820px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid rgba(250, 247, 242, 0.2);
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 2.2rem 1rem 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--c-cream);
  position: relative;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--c-accent-bright);
  font-weight: 400;
  line-height: 1;
}

.faq__item[open] summary::after { content: "−"; }

.faq__item p {
  margin: 0 0 1rem 0;
  padding-right: 1.2rem;
  font-size: 0.97rem;
  color: rgba(250, 247, 242, 0.9);
  line-height: 1.6;
}

/* ==========================================================================
   ALSO / CATEGORIES (#also) — 2x2 light-bg cards
   ========================================================================== */

.also {
  background: var(--c-travertine-soft);
}

.also__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 1080px;
  margin: 0 auto;
}

@media (min-width: 720px) {
  .also__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
}

.category-card {
  display: flex;
  flex-direction: column;
  background: var(--c-cream-soft);
  border: 1px solid var(--c-travertine);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.7rem;
  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);
}

.category-card .eyebrow {
  font-size: 0.72rem;
  margin-bottom: 0.55rem;
}

.category-card h3 {
  font-size: 1.15rem;
  color: var(--c-primary-deep);
  margin-bottom: 0.7rem;
}

.category-card p {
  font-size: 0.95rem;
  color: var(--c-charcoal);
  line-height: 1.55;
  margin: 0 0 var(--space-md) 0;
  flex-grow: 1;
}

.category-card__featured {
  display: block;
  font-size: 0.85rem;
  color: var(--c-primary-deep);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.category-card__cta {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.category-card:hover .category-card__cta { color: var(--c-primary-deep); }

/* ==========================================================================
   FINAL CTA (#book-now) — olive
   ========================================================================== */

.cta-banner {
  background: var(--c-olive);
  color: var(--c-cream);
  padding: var(--section-py) 0;
  text-align: center;
}

.cta-banner h2 { color: var(--c-cream); margin-bottom: var(--space-md); }

.cta-banner__body {
  max-width: 620px;
  margin: 0 auto;
}

.cta-banner__body p {
  font-size: 1.02rem;
  color: rgba(250, 247, 242, 0.92);
  margin-bottom: var(--space-md);
}

.cta-banner__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-md) 0;
  text-align: left;
  display: inline-block;
}

.cta-banner__bullets li {
  position: relative;
  padding-left: 1.8rem;
  font-size: 0.97rem;
  color: rgba(250, 247, 242, 0.92);
  margin-bottom: 0.55rem;
}

.cta-banner__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--c-accent-bright);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='none' stroke='%232A2220' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='M5 10l3 3 7-7'/></svg>");
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: center;
}

.cta-banner__disclosure {
  font-size: 0.82rem;
  color: rgba(250, 247, 242, 0.7);
  font-style: italic;
  margin-bottom: var(--space-lg);
}

.cta-banner .btn--primary {
  background: var(--c-primary);
  color: var(--c-cream);
  border-color: var(--c-primary);
}

.cta-banner .btn--primary:hover {
  background: var(--c-primary-deep);
  border-color: var(--c-primary-deep);
}

/* ==========================================================================
   FOOTER — charcoal
   ========================================================================== */

.site-footer {
  background: var(--c-charcoal);
  color: rgba(250, 247, 242, 0.85);
  padding: var(--space-2xl) 0 var(--space-lg) 0;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 720px) {
  .site-footer__grid { grid-template-columns: 2fr 1fr 1fr; }
}

.site-footer h4 {
  color: var(--c-cream);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.site-footer__brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--c-accent-bright);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.site-footer p {
  font-size: 0.92rem;
  color: rgba(250, 247, 242, 0.8);
  line-height: 1.55;
  margin: 0 0 var(--space-sm) 0;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer ul li { margin-bottom: 0.5rem; }

.site-footer ul a {
  color: rgba(250, 247, 242, 0.85);
  text-decoration: none;
  font-size: 0.93rem;
}

.site-footer ul a:hover {
  color: var(--c-accent-bright);
  text-decoration: underline;
}

.site-footer__bottom {
  border-top: 1px solid rgba(250, 247, 242, 0.15);
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.83rem;
  color: rgba(250, 247, 242, 0.65);
}

.site-footer__disclosure {
  flex-basis: 100%;
  font-style: italic;
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   LEGAL / 404 PAGE BODIES (shared shell)
   ========================================================================== */

.page-body {
  background: var(--c-cream);
  padding: var(--space-2xl) 0;
}

.page-body__inner {
  max-width: 800px;
  margin: 0 auto;
}

.page-body h1 {
  color: var(--c-primary-deep);
  margin-bottom: var(--space-md);
}

.page-body h2 {
  font-size: 1.4rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  color: var(--c-charcoal);
}

.page-body p,
.page-body li {
  color: var(--c-charcoal);
  font-size: 1rem;
  line-height: 1.65;
}

.page-body a { color: var(--c-primary-deep); }

.page-404 {
  text-align: center;
  padding: var(--space-2xl) 0;
}

.page-404 h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: var(--space-sm);
}

.page-404__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

.page-404 .btn--secondary {
  color: var(--c-primary-deep);
  border-color: var(--c-primary-deep);
}

.page-404 .btn--secondary:hover {
  background: rgba(142, 74, 46, 0.1);
}

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