/* =================================================================
   borghesegallery-tours.com — design-elegant + new palette
   Palette: #E52A4F #F76E6E #F9B9A9 #FCE6CA #F9E19A
   Titles: #473041   Body: #4A3430
   Display: Raleway · Body: Source Sans 3
   ================================================================= */

:root {
  /* Section backgrounds (rhythm) */
  --c-bg: #FCE6CA;             /* cream peach — page warm ivory */
  --c-white: #ffffff;          /* white alternate */
  --c-dark: #473041;           /* deepest plum — dark sections + footer */

  /* Text */
  --c-charcoal: #473041;       /* TITLE color */
  --c-body: #4A3430;           /* BODY color */
  --c-cream: #FCE6CA;          /* text on dark surfaces */

  /* Brand */
  --c-primary: #E52A4F;        /* user crimson — decorative accent only (fails AA on white text) */
  --c-primary-deep: #B81E40;   /* button bg, links, eyebrows — AA on white */
  --c-primary-darker: #8C152F; /* hover state on deep buttons */

  /* Warm accents */
  --c-coral: #F76E6E;          /* coral pink */
  --c-peach: #F9B9A9;          /* soft peach */
  --c-peach-cream: #FCE6CA;    /* pale cream peach */
  --c-yellow: #F9E19A;         /* soft pastel yellow */

  /* Pillar slots (4 distinct, each AA with its text) */
  --c-pillar-1: #FB8080;       /* coral pink (AA on body text) */
  --c-pillar-2: #F9B9A9;       /* soft peach */
  --c-pillar-3: #FCE6CA;       /* pale cream peach */
  --c-pillar-4: #F9E19A;       /* soft pastel yellow */

  --c-border: rgba(74, 52, 48, 0.16);

  --container: min(1290px, 100% - 2rem);
  --container-narrow: min(800px, 100% - 2rem);
  --container-tight: min(750px, 100% - 2rem);

  --font-display: "Raleway", "Source Sans 3", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --font-quote: Georgia, "Times New Roman", serif;

  --section-py: clamp(3.5rem, 7vw, 6.25rem);
  --section-py-tight: clamp(2.5rem, 5vw, 4rem);

  --shadow-card: 0 12px 18px -6px rgba(74, 52, 48, 0.06);
  --shadow-strip: 0 18px 40px -14px rgba(74, 52, 48, 0.20);
  --shadow-lift:  0 22px 50px -18px rgba(74, 52, 48, 0.40);

  --ease: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

/* ----- 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-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-body);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--c-primary-deep); text-decoration: none; transition: color 0.12s var(--ease); }
a:hover, a:focus { color: var(--c-primary-darker); }
a:focus-visible { outline: 2px solid var(--c-primary-deep); outline-offset: 3px; }

button { font: inherit; cursor: pointer; }

section[id] { scroll-margin-top: 5rem; }
@media (min-width: 1000px) { section[id] { scroll-margin-top: 7rem; } }

.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;
}

.skip-link {
  position: absolute; left: 8px; top: -100px; z-index: 999;
  background: var(--c-primary-deep); color: var(--c-white);
  padding: 10px 16px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.9rem;
  transition: top 0.18s var(--ease);
}
.skip-link:focus { top: 8px; color: var(--c-white); }

/* ----- Containers ----- */
.container { width: var(--container); margin-inline: auto; }
.container--narrow { width: var(--container-narrow); margin-inline: auto; }
.container--tight  { width: var(--container-tight);  margin-inline: auto; }

/* ----- Typography ----- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--c-charcoal);
  letter-spacing: -0.005em;
  line-height: 1.18;
  margin: 0 0 0.5em;
}
h2 { font-size: clamp(1.65rem, 3.6vw, 2.4rem); }
h3 { font-size: clamp(1.18rem, 2.2vw, 1.4rem); font-weight: 500; }
p { margin: 0 0 1rem; }
strong { font-weight: 600; color: var(--c-charcoal); }
em { font-style: italic; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-primary-deep);  /* AA-compliant crimson tone */
  margin: 0 0 0.7rem;
}
/* Eyebrow on dark surfaces — peach */
.hero .eyebrow,
.gallery .eyebrow,
.why-choose .eyebrow,
.why-choose .why-card .eyebrow,
.cta-banner .eyebrow {
  color: var(--c-peach);
}
/* Per-pillar eyebrow (each text/bg pair audited) */
.hero-pillar--1 .eyebrow { color: var(--c-charcoal); }
.hero-pillar--2 .eyebrow { color: var(--c-charcoal); }
.hero-pillar--3 .eyebrow { color: var(--c-charcoal); }
.hero-pillar--4 .eyebrow { color: var(--c-charcoal); }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem;
}
.section-head h2 { margin-bottom: 0.6rem; }
.section-head__sub {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: var(--c-body);
  margin: 0;
  opacity: 0.78;
}
.section-head--prose { text-align: left; }

/* ----- Buttons (square, bold, locked transitions) ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.96rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  min-height: 56px;
  border-radius: 0;
  text-decoration: none;
  transition: background 0.12s var(--ease), transform 0.12s var(--ease), box-shadow 0.12s var(--ease), color 0.12s var(--ease);
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--c-primary-deep);
  color: var(--c-white);
  box-shadow: 0 6px 18px -8px rgba(184, 30, 64, 0.55);
}
.btn--primary:hover, .btn--primary:focus {
  background: var(--c-primary-darker);
  color: var(--c-white);
  transform: translate3d(0, -3px, 0);
  box-shadow: 0 14px 28px -10px rgba(184, 30, 64, 0.55);
}
.btn--ghost {
  background: transparent;
  color: var(--c-cream);
  border-color: rgba(252, 230, 202, 0.55);
}
.btn--ghost:hover, .btn--ghost:focus {
  background: rgba(252, 230, 202, 0.14);
  color: var(--c-cream);
  border-color: var(--c-cream);
  transform: translate3d(0, -3px, 0);
}
.btn--ghost-dark {
  background: transparent;
  color: var(--c-charcoal);
  border-color: rgba(74, 52, 48, 0.3);
}
.btn--ghost-dark:hover, .btn--ghost-dark:focus {
  background: rgba(74, 52, 48, 0.06);
  color: var(--c-charcoal);
  border-color: var(--c-charcoal);
  transform: translate3d(0, -3px, 0);
}
.btn--entry-ticket {
  background: var(--c-primary-deep);
  color: var(--c-white);
  border-color: var(--c-primary-deep);
}
.btn--entry-ticket:hover, .btn--entry-ticket:focus {
  background: var(--c-primary-darker);
  color: var(--c-white);
  border-color: var(--c-primary-darker);
}
.btn--private-tours {
  background: #F9B9A9;
  color: var(--c-charcoal);
  border-color: #F9B9A9;
}
.btn--private-tours:hover, .btn--private-tours:focus {
  background: #f4ad9a;
  color: var(--c-charcoal);
  border-color: #f4ad9a;
}
.btn--lg { padding: 18px 36px; min-height: 60px; font-size: 1rem; }
.btn--xl { padding: 20px 42px; min-height: 64px; font-size: 1.05rem; letter-spacing: 0.08em; }

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 230, 202, 0.94);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--c-border);
}
.header-inner {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--c-charcoal);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  background: var(--c-charcoal);
  color: var(--c-cream);
  border-radius: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.18rem;
}
.brand-text { line-height: 1.1; }
.brand-text span { color: var(--c-primary-deep); }
.brand:hover, .brand:focus { color: var(--c-primary-deep); }

.primary-nav { display: flex; align-items: center; gap: 1.5rem; }
.primary-nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-charcoal);
  padding: 0.4rem 0;
  position: relative;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -4px 0;
  height: 2px;
  background: var(--c-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s var(--ease);
}
.primary-nav a:hover::after, .primary-nav a:focus::after { transform: scaleX(1); }
.primary-nav a:hover, .primary-nav a:focus { color: var(--c-primary-deep); }
.primary-nav .btn { color: var(--c-white); padding: 0.65rem 1.2rem; min-height: 44px; font-size: 0.85rem; }
.primary-nav .btn:hover, .primary-nav .btn:focus { color: var(--c-white); }
.primary-nav .btn::after { content: none; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--c-border);
  border-radius: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.nav-toggle__bar {
  width: 22px; height: 2px;
  background: var(--c-charcoal);
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----- HERO (full-bleed) ----- */
.hero {
  position: relative;
  min-height: clamp(640px, 95vh, 900px);
  isolation: isolate;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: -1;
}
.hero-overlay {
  position: relative;
  min-height: inherit;
  display: flex;
  align-items: flex-start;
  padding: clamp(3.5rem, 8vh, 6rem) 0 clamp(8rem, 14vw, 11rem);
  background:
    linear-gradient(90deg, rgba(16, 12, 10, 0.9) 0%, rgba(16, 12, 10, 0.8) 34%, rgba(16, 12, 10, 0.44) 72%, rgba(16, 12, 10, 0.2) 100%),
    linear-gradient(180deg, rgba(26, 18, 14, 0.22) 0%, rgba(26, 18, 14, 0.38) 56%, rgba(16, 12, 10, 0.66) 100%);
}
.hero-content {
  width: var(--container);
  margin-inline: auto;
  max-width: 760px;
  color: var(--c-cream);
}
.hero-h1 {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(2rem, 5.6vw, 3.6rem);
  line-height: 1.08;
  color: var(--c-cream);
  margin: 0 0 1.1rem;
}
.hero-h1__sub {
  display: block;
  font-weight: 200;
  font-style: italic;
  font-size: 0.9em;
}
.hero-h1__sub-break {
  display: block;
}
.hero-lede {
  font-size: clamp(1.14rem, 2vw, 1.4rem);
  font-weight: 300;
  line-height: 1.55;
  color: rgba(252, 230, 202, 0.95);
  margin: 0 0 1.4rem;
  max-width: 640px;
}
.hero strong { color: inherit; }

.hero-rating {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 0.4em;
  font-size: 1.1rem;
  margin: 0 0 1.3rem;
  color: rgba(252, 230, 202, 0.92);
}
.hero-rating .stars { color: var(--c-yellow); font-size: 1.25rem; letter-spacing: 0.02em; }
.hero-rating .stars__half { color: rgba(249, 225, 154, 0.55); }
.hero-rating strong { font-weight: 700; color: var(--c-cream); }
.hero-rating__sep { opacity: 0.6; margin: 0 0.05em; }
.hero-rating__meta { color: rgba(252, 230, 202, 0.78); }

.hero-bullets {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.hero-bullets li {
  position: relative;
  padding-left: 1.4rem;
  color: rgba(252, 230, 202, 0.92);
  font-size: 0.98rem;
  line-height: 1.5;
}
.hero-bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.65em;
  width: 12px; height: 2px;
  background: var(--c-peach);
}

/* Trust pills — standalone badges */
.hero-pills {
  list-style: none;
  margin: 0 0 1.7rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.hero-pills li {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(252, 230, 202, 0.94);
  background: rgba(252, 230, 202, 0.08);
  padding: 0.55rem 0.95rem;
  border: 1px solid rgba(252, 230, 202, 0.32);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* ----- HERO PILLARS (overlap, gap-0 strip, 4 distinct colors) ----- */
.pillars {
  padding: 0 0 var(--section-py);
  background: var(--c-white);
  position: relative;
  display: flow-root;  /* BFC barrier — stops the grid's negative margin-top from
                          collapsing through and pulling the section bg up over the hero */
}
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: -80px;
  position: relative;
  z-index: 5;
  box-shadow: var(--shadow-lift);
}
.hero-pillar {
  display: flex;
  flex-direction: column;
  padding: 1.8rem 1.5rem 1.7rem;
  border-radius: 0;
  text-decoration: none;
  position: relative;
  transition: filter 0.12s var(--ease), transform 0.12s var(--ease);
}
.hero-pillar--1 { background: var(--c-pillar-1); color: var(--c-body); }
.hero-pillar--2 { background: var(--c-pillar-2); color: var(--c-body); }
.hero-pillar--3 { background: var(--c-pillar-3); color: var(--c-body); }
.hero-pillar--4 { background: var(--c-pillar-4); color: var(--c-body); }
.hero-pillar:hover, .hero-pillar:focus-visible { transform: translate3d(0, -3px, 0); }
.hero-pillar:hover { filter: brightness(1.05); }
.hero-pillar--2:hover, .hero-pillar--4:hover { filter: brightness(1.02); }
.hero-pillar:focus-visible { outline: 2px solid var(--c-charcoal); outline-offset: -3px; }

.hero-pillar .eyebrow { margin-bottom: 0.6rem; font-size: 0.7rem; }
.hero-pillar__h {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.28rem;
  line-height: 1.22;
  color: inherit;
  margin: 0 0 0.7rem;
}
.hero-pillar p {
  font-size: 1rem;
  line-height: 1.55;
  margin: 0;
  color: inherit;
}
.hero-pillar p em { color: inherit; font-style: italic; }
.hero-pillar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.hero-pillar__list li {
  position: relative;
  padding-left: 16px;
  font-size: 0.9rem;
  color: inherit;
}
.hero-pillar--1 .hero-pillar__list li::before,
.hero-pillar--2 .hero-pillar__list li::before,
.hero-pillar--3 .hero-pillar__list li::before,
.hero-pillar--4 .hero-pillar__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 2px;
  background: var(--c-primary-deep);
}

/* ----- SECTION ALT (white, alternates with cream peach) ----- */
.section--alt { background: var(--c-white); }

/* ----- INTRO ----- */
.intro { padding: 1.5rem 0 var(--section-py-tight); }
.intro__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 1.6rem;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
.intro__body p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--c-body);
  margin: 0 0 1.2rem;
}
.intro__meta {
  border-left: 3px solid var(--c-primary);
  padding-left: 1rem;
  margin: 1.4rem 0 0;
  font-size: 0.95rem;
  color: var(--c-body);
  font-weight: 500;
  font-style: italic;
}
.intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}
.intro__media {
  margin: 0;
  align-self: stretch;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-strip);
  background: var(--c-bg);
  overflow: hidden;
}
.intro__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

/* ----- QUICK FACTS ----- */
.quick-facts {
  padding: var(--section-py-tight) 0;
  background: var(--c-bg);
}
.quick-facts__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-strip);
  background: var(--c-white);
}
.quick-fact {
  padding: 1.6rem 1.5rem;
  border-right: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.quick-fact:nth-child(2n) { border-right: 0; }
.quick-fact:nth-last-child(-n+2) { border-bottom: 0; }
.quick-fact h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.08rem;
  color: var(--c-charcoal);
}
.quick-fact p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--c-body);
}

/* ----- HIGHLIGHTS ----- */
.highlights {
  padding: var(--section-py-tight) 0;
  background: var(--c-bg);
}
.highlights__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-strip);
}
.highlight-card {
  padding: 2rem 1.7rem;
  border-right: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.highlight-card:nth-child(2n) { border-right: 0; }
.highlight-card:nth-last-child(-n+2) { border-bottom: 0; }
.highlight-card .eyebrow { margin-bottom: 0.5rem; }
.highlight-card h3 { margin: 0 0 0.7rem; color: var(--c-charcoal); }
.highlight-card p { font-size: 0.98rem; color: var(--c-body); margin: 0; }

/* ----- EXPERIENCE ----- */
.experience { padding: var(--section-py-tight) 0; }
.experience__body p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--c-body);
  margin: 0 0 1.2rem;
}
.experience-best {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 1.5rem 1.6rem;
  background: var(--c-bg);
  display: grid;
  gap: 0.6rem;
  color: var(--c-body);
  border-left: 4px solid var(--c-primary);
}
.experience-best li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--c-body);
  font-size: 0.96rem;
  line-height: 1.5;
}
.experience-best li::before {
  content: "·";
  position: absolute;
  left: 0; top: -0.05em;
  color: var(--c-primary-deep);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

/* ----- GUIDED INTRO ----- */
.guided-intro {
  padding: var(--section-py-tight) 0 1.35rem;
}
.guided-intro__body p {
  margin: 0 0 1rem;
  color: var(--c-body);
  font-size: 1.02rem;
  line-height: 1.68;
}
.guided-intro__cta {
  margin-top: 1.3rem;
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--c-primary);
  font-weight: 600;
  color: var(--c-charcoal);
}

/* ----- TOUR SPOTLIGHT ----- */
.tour-spotlight {
  padding: var(--section-py-tight) 0;
  background: var(--c-bg);
}
.tour-spotlight__card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 500px);
  gap: 1.5rem;
  align-items: start;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-strip);
  padding: 1.35rem;
}
.tour-spotlight__content {
  min-width: 0;
}
.tour-spotlight__content h2 {
  margin: 0 0 0.45rem;
}
.tour-spotlight__meta {
  margin: 0 0 0.8rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-primary-deep);
}
.tour-spotlight__content p {
  margin: 0 0 0.9rem;
  color: var(--c-body);
  line-height: 1.68;
}
.tour-spotlight__cta {
  margin: 1.4rem 0 0;
}
.tour-spotlight__widget {
  min-width: 0;
}
.tour-spotlight__widget > div {
  min-height: 320px;
}
.tour-spotlight__meta-badge {
  display: inline-block;
  padding: 0.18rem 0.6rem;
  background: var(--c-primary-deep);
  color: var(--c-white);
  border-radius: 999px;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
}
.tour-spotlight__list-h {
  margin: 0.2rem 0 0.55rem !important;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--c-charcoal);
}
.tour-spotlight__included {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.tour-spotlight__included li {
  position: relative;
  padding-left: 1.85rem;
  font-size: 0.97rem;
  line-height: 1.55;
  color: var(--c-body);
}
.tour-spotlight__included li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18rem;
  width: 1.2rem;
  height: 1.2rem;
  background: var(--c-primary-deep);
  border-radius: 999px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='%23ffffff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='M3.5 8.4l3 3 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.85rem 0.85rem;
}
.tour-spotlight__content .tour-spotlight__bonus {
  margin: 0 0 1rem;
  padding: 0.85rem 1.05rem;
  background: var(--c-bg);
  border-left: 4px solid var(--c-primary);
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--c-body);
}
.tour-spotlight__content .tour-spotlight__meet {
  margin: 0.4rem 0 0;
  font-size: 0.88rem;
  font-style: italic;
  color: rgba(74, 52, 48, 0.78);
  line-height: 1.5;
}

/* ----- OFFER GRIDS ----- */
.offer-grid {
  padding: var(--section-py-tight) 0;
  background: var(--c-bg);
}
.offer-grid__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
.offer-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: 1.3rem;
  align-items: start;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-strip);
  padding: 1.35rem;
}
.offer-card__content {
  min-width: 0;
}
.offer-card__content h3 {
  margin: 0 0 0.45rem;
  color: var(--c-charcoal);
}
.offer-card__meta {
  margin: 0 0 0.8rem;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-primary-deep);
}
.offer-card__content p {
  margin: 0 0 0.9rem;
  color: var(--c-body);
  line-height: 1.66;
}
.offer-card__widget {
  min-width: 0;
}
.offer-card__widget > div {
  min-height: 320px;
}

/* ----- GALLERY (horizontal scroll on dark) ----- */
.gallery {
  padding: var(--section-py-tight) 0;
  background: var(--c-dark);
  color: var(--c-cream);
  overflow: hidden;
  position: relative;
}
.gallery h2 { color: var(--c-cream); }
.gallery .section-head__sub { color: rgba(252, 230, 202, 0.85); opacity: 1; }
.gallery__wrapper {
  position: relative;
  margin-top: 0.5rem;
}
.gallery__strip {
  list-style: none;
  margin: 0; padding: 0 calc((100vw - 1290px) / 2);
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--c-coral) rgba(252, 230, 202, 0.1);
}
.gallery__strip::-webkit-scrollbar { height: 8px; }
.gallery__strip::-webkit-scrollbar-track { background: rgba(252, 230, 202, 0.08); }
.gallery__strip::-webkit-scrollbar-thumb { background: var(--c-coral); }

.gallery__item {
  flex: 0 0 78vw;
  aspect-ratio: 3/2;
  overflow: hidden;
  scroll-snap-align: start;
  background: rgba(252, 230, 202, 0.06);
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.32s var(--ease);
}
.gallery__item:hover img { transform: scale(1.04); }
.gallery__wrapper::after {
  content: "";
  position: absolute;
  right: 0; top: 0;
  width: 80px; height: 100%;
  background: linear-gradient(90deg, transparent, var(--c-dark));
  pointer-events: none;
}
.gallery__arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: var(--c-cream);
  color: var(--c-charcoal);
  border: 0;
  border-radius: 0;
  font-size: 1.5rem;
  font-family: var(--font-display);
  z-index: 3;
  box-shadow: var(--shadow-strip);
  transition: background 0.12s var(--ease), color 0.12s var(--ease);
}
.gallery__arrow:hover, .gallery__arrow:focus {
  background: var(--c-primary-deep);
  color: var(--c-white);
}
.gallery__arrow--prev { left: 1rem; }
.gallery__arrow--next { right: 1rem; }

/* ----- ITINERARY ----- */
.itinerary { padding: var(--section-py-tight) 0; background: var(--c-bg); }
.itinerary__steps {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 1.5rem;
}
.itinerary-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.2rem;
  align-items: flex-start;
  background: var(--c-white);
  padding: 1.6rem 1.7rem;
  border-left: 4px solid var(--c-primary);
  border-top: 1px solid var(--c-border);
  border-right: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  box-shadow: var(--shadow-card);
}
.itinerary-step__num {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  background: var(--c-charcoal);
  color: var(--c-cream);
  border-radius: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
}
.itinerary-step h3 { margin: 0.2rem 0 0.5rem; color: var(--c-charcoal); }
.itinerary-step p { margin: 0; color: var(--c-body); font-size: 0.98rem; }

/* ----- INCLUDED ----- */
.included { padding: var(--section-py-tight) 0; background: var(--c-white); }
.included__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-strip);
}
.included__col {
  background: var(--c-white);
  padding: 1.8rem 1.7rem;
  border-right: 1px solid var(--c-border);
}
.included__col:last-child { border-right: 0; background: var(--c-bg); }
.included__col h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.18rem;
  color: var(--c-charcoal);
}
.included__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.included__col li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.97rem;
  color: var(--c-body);
}
.included__col--in li::before {
  content: "·";
  position: absolute;
  left: 0; top: -0.2em;
  color: var(--c-primary);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1;
}
.included__col--out li::before {
  content: "·";
  position: absolute;
  left: 0; top: -0.2em;
  color: var(--c-primary-deep);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1;
}

/* ----- WHY-CHOOSE (dark) ----- */
.why-choose {
  padding: var(--section-py-tight) 0;
  background: var(--c-dark);
  color: var(--c-cream);
}
.why-choose h2 { color: var(--c-cream); }
.why-choose .section-head__sub { color: rgba(252, 230, 202, 0.85); opacity: 1; }
.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(252, 230, 202, 0.14);
}
.why-card {
  background: rgba(252, 230, 202, 0.04);
  padding: 1.7rem 1.4rem;
  border-right: 1px solid rgba(252, 230, 202, 0.12);
}
.why-card:last-child { border-right: 0; }
.why-card .eyebrow { margin-bottom: 0.5rem; }
.why-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--c-cream);
  margin: 0 0 0.6rem;
}
.why-card p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.55;
  color: rgba(252, 230, 202, 0.90);
}

/* ----- REVIEWS ----- */
.reviews { padding: var(--section-py-tight) 0; background: var(--c-bg); }
.reviews__grid { display: grid; gap: 0; border: 1px solid var(--c-border); box-shadow: var(--shadow-strip); background: var(--c-white); }
.reviews__grid--3 { grid-template-columns: repeat(3, 1fr); }
.review-card {
  background: var(--c-white);
  padding: 1.9rem 1.6rem;
  border-right: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
}
.review-card:last-child { border-right: 0; }
.review-card__stars {
  color: var(--c-primary-deep);
  letter-spacing: 0.06em;
  font-size: 1.05rem;
  margin: 0 0 0.9rem;
}
.review-card__star--off { color: rgba(184, 30, 64, 0.28); }
.review-card blockquote {
  margin: 0 0 1rem;
  padding: 0;
  font-family: var(--font-quote);
  font-style: italic;
  color: var(--c-body);
  font-size: 1rem;
  line-height: 1.6;
  flex-grow: 1;
}
.review-card cite {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  color: var(--c-primary-deep);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ----- PRACTICAL ----- */
.practical { padding: var(--section-py-tight) 0; background: var(--c-white); }
.practical__list { margin: 0; padding: 0; display: grid; gap: 0; border-top: 1px solid var(--c-border); }
.practical__row {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 1.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--c-border);
  align-items: start;
}
.practical__row dt h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--c-charcoal);
}
.practical__row dd { margin: 0; font-size: 0.98rem; color: var(--c-body); line-height: 1.6; }

/* ----- FAQ ----- */
.faq { padding: var(--section-py-tight) 0; background: var(--c-bg); }
.faq__list { display: grid; gap: 0; border: 1px solid var(--c-border); box-shadow: var(--shadow-strip); background: var(--c-white); }
.faq-item { border-bottom: 1px solid var(--c-border); }
.faq-item:last-child { border-bottom: 0; }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.2rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.06rem;
  color: var(--c-charcoal);
  position: relative;
  padding-right: 3rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.4rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--c-primary);
  transition: transform 0.2s var(--ease);
  line-height: 1;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p {
  margin: 0;
  padding: 0 1.5rem 1.4rem;
  color: var(--c-body);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* ----- CTA BANNER ----- */
.cta-banner {
  padding: var(--section-py-tight) 0;
  background: #875e78;
  color: var(--c-cream);
  text-align: center;
}
.cta-banner h2 { color: var(--c-cream); }
.cta-banner .section-head__sub { color: rgba(252, 230, 202, 0.92); opacity: 1; }
.cta-banner__list {
  list-style: none;
  margin: 1.5rem auto;
  padding: 0;
  max-width: 540px;
  display: grid;
  gap: 0.6rem;
  text-align: left;
}
.cta-banner__list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.97rem;
  color: rgba(252, 230, 202, 0.92);
}
.cta-banner__list li::before {
  content: "·";
  position: absolute;
  left: 0; top: -0.25em;
  color: var(--c-peach);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1;
}
.cta-banner__other {
  margin: 1.6rem 0 0.9rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: rgba(252, 230, 202, 0.96);
}
.cta-banner__widget {
  margin: 0 auto 1.2rem;
  max-width: 1520px;
}
.cta-banner__widget > div {
  min-height: 280px;
}
.cta-banner__disclosure {
  font-size: 0.82rem;
  color: rgba(252, 230, 202, 0.82);
  margin: 0;
  font-style: italic;
}

/* ----- FOOTER (full-bleed solid dark) ----- */
.site-footer {
  background: var(--c-dark);
  color: rgba(252, 230, 202, 0.92);
  padding: clamp(2.75rem, 5vw, 4.25rem) 0 1.75rem;
}
.footer-inner { width: var(--container); margin-inline: auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}
.footer-brand p {
  margin: 0.9rem 0 0;
  color: rgba(252, 230, 202, 0.78);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 360px;
}
.brand--footer { color: var(--c-cream); }
.brand--footer .brand-mark { background: var(--c-cream); color: var(--c-dark); }
.brand--footer .brand-text span { color: var(--c-peach); }
.brand--footer:hover, .brand--footer:focus { color: var(--c-cream); }

.footer-col h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-peach);
  margin: 0 0 1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer-col a {
  color: rgba(252, 230, 202, 0.92);
  font-size: 0.94rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color 0.12s var(--ease), border-color 0.12s var(--ease);
}
.footer-col a:hover, .footer-col a:focus {
  color: var(--c-cream);
  border-bottom-color: var(--c-peach);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(252, 230, 202, 0.18);
  display: grid;
  gap: 0.4rem;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(252, 230, 202, 0.72);
}

/* =================================================================
   BREAKPOINTS  —  mobile-first additions
   ================================================================= */

@media (min-width: 720px) {
  .pillars__grid { grid-template-columns: repeat(2, 1fr); margin-top: -56px; }
  .hero-pillar:nth-child(odd) { border-right: 1px solid rgba(252, 230, 202, 0.06); }
  .hero-pillar:nth-last-child(-n+2) { border-bottom: 0; }
  .hero-pillar:nth-child(-n+2) { border-bottom: 1px solid rgba(252, 230, 202, 0.06); }
  .gallery__item { flex-basis: 46vw; }
}

@media (min-width: 1000px) {
  .pillars__grid { grid-template-columns: repeat(4, 1fr); margin-top: -80px; }
  .hero-pillar { border-bottom: 0 !important; border-right: 1px solid rgba(252, 230, 202, 0.06); }
  .hero-pillar:last-child { border-right: 0; }
  .gallery__arrow { display: inline-flex; align-items: center; justify-content: center; }
}

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

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--c-bg);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1rem 1.2rem;
    border-bottom: 1px solid var(--c-border);
    box-shadow: var(--shadow-card);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
  }
  .primary-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .primary-nav a {
    padding: 0.95rem 0;
    border-bottom: 1px solid var(--c-border);
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .primary-nav a::after { display: none; }
  .primary-nav .btn {
    margin-top: 0.7rem;
    justify-content: center;
    padding: 1rem 1.4rem;
    min-height: 56px;
  }

  .intro__layout { grid-template-columns: 1fr; }
  .quick-facts__grid { grid-template-columns: 1fr; }
  .quick-fact { border-right: 0; }
  .quick-fact:not(:last-child) { border-bottom: 1px solid var(--c-border); }
  .tour-spotlight__card { grid-template-columns: 1fr; }
  .offer-grid__cards { grid-template-columns: 1fr; }
  .offer-card { grid-template-columns: 1fr; }
  .highlights__grid { grid-template-columns: 1fr; }
  .highlight-card { border-right: 0; }
  .highlight-card:not(:last-child) { border-bottom: 1px solid var(--c-border); }
  .why-choose__grid { grid-template-columns: 1fr; }
  .why-card { border-right: 0; border-bottom: 1px solid rgba(252, 230, 202, 0.12); }
  .why-card:last-child { border-bottom: 0; }
  .reviews__grid--3 { grid-template-columns: 1fr; }
  .review-card { border-right: 0; border-bottom: 1px solid var(--c-border); }
  .review-card:last-child { border-bottom: 0; }
  .included__grid { grid-template-columns: 1fr; }
  .included__col { border-right: 0; border-bottom: 1px solid var(--c-border); }
  .included__col:last-child { border-bottom: 0; }
  .practical__row { grid-template-columns: 1fr; gap: 0.4rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .hero { min-height: auto; }
  .hero-overlay { padding-bottom: 6rem; padding-top: 4rem; }

  .gallery__strip { padding-left: 1rem; padding-right: 1rem; }
  .gallery__item { flex-basis: 78vw; }
}

@media (max-width: 719px) {
  .pillars__grid { grid-template-columns: 1fr; gap: 0; margin-top: -40px; }
  .hero-pillar { border-right: 0 !important; border-bottom: 1px solid rgba(252, 230, 202, 0.08) !important; }
  .hero-pillar:last-child { border-bottom: 0 !important; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .gallery__strip { padding: 0 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
