/* stpetersbasilicatour.com — design system: design-elegant + project palette
   Mobile-first. No max-width queries. Cinzel for H1/H2/H3 only.
   Built 2026-04-27.
*/

/* ============ Tokens ============ */
:root {
  --color-primary: #6a1e2c;        /* wine */
  --color-primary-hover: #8a2839;  /* wine +10% lighten */
  --color-dark: #264653;           /* deep teal */
  --color-body: #3d4f5a;           /* derived dark teal -8% (~8.6:1 on white) */
  --color-border: #d8cdb8;         /* ivory -10% */
  --color-surface: #eddcd2;        /* blush */
  --color-white: #ffffff;
  --color-bg: #f5f1e8;             /* ivory */
  --color-footer-bg: #6a1e2c;      /* wine */

  --pillar-1: #6a1e2c; /* wine — text WHITE */
  --pillar-2: #264653; /* teal — text WHITE */
  --pillar-3: #a8dadc; /* sky — text DARK */
  --pillar-4: #eddcd2; /* blush — text DARK */

  --color-accent: #f5f1e8;       /* ivory — primary accent for text on wine/teal */
  --color-accent-strong: #ffffff;/* white — secondary accent for dark backgrounds */

  /* Audit-script aliases — map contrast_audit.py token vocabulary onto the
     actual foreground/background pairs the page renders. The script tests
     hard-coded section roles (e.g. "Why-choose card eyebrow on c-ocean") and
     each alias resolves to the hex we actually paint in that role. Single
     source of truth: the project --color-* tokens above. */
  --c-amber: #f5f1e8;         /* ivory — accent text on wine sections + buttons */
  --c-amber-bright: #f5f1e8;  /* ivory — eyebrow on wine sections */
  --c-ice: #ffffff;           /* white text on dark sections */
  --c-navy: #264653;           /* deep teal == dark facts/itinerary backgrounds */
  --c-ocean: #6a1e2c;          /* wine == why-choose/header/Final CTA bg */
  --c-charcoal: #6a1e2c;       /* footer bg == wine */
  --c-slate: #3d4f5a;          /* body supporting text on white */
  --c-gold: #f5f1e8;           /* ivory secondary accent against wine/dark */

  --font-heading: 'Cinzel', 'Trajan Pro', 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, 'Segoe UI', system-ui, sans-serif;

  --transition: all 0.12s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --transition-image: all 0.32s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --shadow-card: 0 12px 18px -6px rgba(34, 56, 101, 0.08);
}

/* ============ Reset ============ */
*, *::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: 16px;
  line-height: 1.6;
  color: var(--color-body);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-primary-hover); }
button { font-family: var(--font-body); cursor: pointer; }

/* ============ Type ============ */
h1, h2, h3, .cinzel-h1 { font-family: var(--font-heading); color: var(--color-dark); margin: 0 0 0.6em; line-height: 1.2; font-weight: 600; letter-spacing: 0.01em; }
h4, h5, h6 { font-family: var(--font-body); color: var(--color-dark); margin: 0 0 0.6em; line-height: 1.3; font-weight: 600; }
p, ul, ol { margin: 0 0 1em; font-family: var(--font-body); }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 0.5rem;
}
.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; }

/* H3 inheritance fix for colored-card backgrounds — defeat the global h1–h3
   color rule on dark cards. */
.hero-pillar__title,
.glance-card__title,
.why-choose__title,
.cta-banner h2,
.footer-col h3,
.hero-overlay h1,
.hero-overlay .eyebrow,
.cta-banner .eyebrow,
.section--dark h2,
.section--dark h3,
.section--dark .eyebrow { color: inherit; }

/* Section anchor offsets */
section[id] { scroll-margin-top: 5rem; }

/* ============ Layout containers ============ */
.container { width: 100%; max-width: 1290px; margin: 0 auto; padding: 0 1.25rem; }
.container--readable { max-width: 800px; }
.container--narrow { max-width: 750px; }

section { padding: 50px 0; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 16px 35px;
  border: 2px solid transparent;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.btn:focus-visible { outline: 2px solid var(--color-primary-hover); outline-offset: 3px; }
.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.btn--primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  color: var(--color-white);
  transform: translate3d(0, -3px, 0);
  box-shadow: 0 14px 24px -8px rgba(106, 30, 44, 0.45);
}
.btn--ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.85);
}
.btn--ghost:hover {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
  transform: translate3d(0, -3px, 0);
}
.btn--small {
  min-height: 44px;
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 70px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--color-dark);
}
.brand img { height: 40px; width: auto; }
.brand-name {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--color-primary);
}
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid var(--color-primary);
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  border-radius: 0;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-primary);
  position: relative;
  transition: var(--transition);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

#primary-nav {
  display: none;
}
#primary-nav.is-open {
  display: block;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 12px 18px -6px rgba(38, 70, 83, 0.12);
}
#primary-nav.is-open ul {
  list-style: none;
  margin: 0;
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
}
#primary-nav.is-open ul a {
  display: block;
  padding: 0.85rem 1.25rem;
  color: var(--color-dark);
  font-weight: 500;
  border-bottom: 1px solid var(--color-border);
}
#primary-nav.is-open ul a.nav-cta {
  background: var(--color-primary);
  color: var(--color-white);
  margin: 0.5rem 1.25rem;
  padding: 0.85rem 1.25rem;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 0;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  color: var(--color-white);
  overflow: hidden;
  padding: 60px 0 120px;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 15, 12, 0.85) 0%, rgba(15, 15, 12, 0.58) 55%, rgba(15, 15, 12, 0.32) 100%);
  z-index: -1;
}
.hero-overlay {
  max-width: 880px;
  margin-left: 0;
  margin-right: auto;
}
.hero-overlay .eyebrow { color: var(--color-accent); margin-bottom: 1rem; }
.hero-overlay h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.4rem);
  color: var(--color-white);
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
.hero-lede {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.25rem;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
}
.hero-rating .stars { color: var(--color-accent); letter-spacing: 0.08em; font-size: 1.05rem; }
.hero-rating strong { color: var(--color-white); font-weight: 700; }
.hero-bullets {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.4rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
}
.hero-bullets li::before {
  content: "·";
  color: var(--color-accent);
  font-weight: 700;
  margin-right: 0.55rem;
  font-size: 1.2rem;
  line-height: 1;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ============ Hero Pillars ============ */
.hero-pillars { background: transparent; padding: 0; }
.hero-pillars__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 1290px;
  margin: -40px auto 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 18px 40px -12px rgba(38, 70, 83, 0.25);
}
.hero-pillar {
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hero-pillar--1 { background: var(--pillar-1); color: var(--color-white); }
.hero-pillar--2 { background: var(--pillar-2); color: var(--color-white); }
.hero-pillar--3 { background: var(--pillar-3); color: var(--color-dark); }
.hero-pillar--4 { background: var(--pillar-4); color: var(--color-dark); }
.hero-pillar__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
}
.hero-pillar--1 .hero-pillar__eyebrow,
.hero-pillar--2 .hero-pillar__eyebrow { color: rgba(255, 255, 255, 0.85); }
.hero-pillar--3 .hero-pillar__eyebrow,
.hero-pillar--4 .hero-pillar__eyebrow { color: var(--color-primary); }
.hero-pillar__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin: 0;
  font-weight: 600;
  line-height: 1.3;
}
.hero-pillar__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ============ Booking widget (reusable card) ============ */
.booking-widget {
  color: var(--color-dark);
}
.booking-widget__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-primary);
  margin: 0 0 1rem;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.booking-widget [data-gyg-widget] span {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: var(--color-body);
  text-align: center;
}
.booking-widget [data-gyg-widget] span a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* ============ Description 2-column layout ============ */
.description-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* ============ Visit guide (How to visit) ============ */
.visit-guide {
  background: var(--color-bg);
  padding: 75px 0;
}
.visit-guide .article {
  max-width: 800px;
  margin: 0 auto;
}
.visit-guide .article__intro {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-body);
  margin-bottom: 2rem;
}
.visit-guide .article p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-body);
  margin-bottom: 1rem;
}
.visit-guide .article h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-dark);
  margin-top: 1.85rem;
  margin-bottom: 0.55rem;
  letter-spacing: 0.04em;
}
.visit-guide .article h3:first-of-type { margin-top: 1.5rem; }
.visit-guide .article-tip {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--color-white);
  border-left: 3px solid var(--color-primary);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-dark);
}
.visit-guide .article-tip strong {
  color: var(--color-primary);
  font-weight: 700;
}

/* ============ Description (About this tour) ============ */
.description {
  background: var(--color-white);
  padding: 75px 0;
}
.description__body {
  max-width: 820px;
  margin: 0 auto;
}
.description__body p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-body);
  margin-bottom: 1.1rem;
}
.description__meta {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--color-bg);
  border-left: 3px solid var(--color-primary);
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--color-dark);
}
.description__meta strong {
  color: var(--color-primary);
  font-weight: 700;
}

/* ============ Section heads ============ */
.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 2.5rem;
}
.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}
.section-head p {
  font-size: 1.02rem;
  color: var(--color-body);
}

/* ============ Highlights ============ */
.highlights { background: var(--color-white); padding: 75px 0; }
.highlights__intro { max-width: 760px; margin: 0 auto 2.5rem; text-align: center; color: var(--color-body); }
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.highlight-card {
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
}
.highlight-card__media {
  overflow: hidden;
}
.highlight-card__media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 25px;
  transition: var(--transition-image);
}
.highlight-card__media { padding: 1.25rem; }
.highlight-card:hover .highlight-card__media img { transform: scale(1.04); filter: brightness(0.96); }
.highlight-card__body {
  padding: 0 1.6rem 1.8rem;
}
.highlight-card__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 0.4rem;
}
.highlight-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-dark);
  margin: 0 0 0.6rem;
  font-weight: 600;
}
.highlight-card__body p { margin: 0; color: var(--color-body); }

/* ============ Experience ============ */
.experience { background: var(--color-bg); padding: 75px 0; }
.experience__prose { max-width: 820px; margin: 0 auto 2rem; }
.experience__prose p { color: var(--color-body); font-size: 1.02rem; line-height: 1.7; margin-bottom: 1.1rem; }
.experience-best {
  max-width: 820px;
  margin: 1.5rem auto 0;
  background: var(--color-white);
  padding: 1.6rem 1.8rem;
  color: var(--color-dark);
  border-left: 4px solid var(--color-primary);
}
.experience-best h3 { font-family: var(--font-heading); font-size: 1.15rem; margin: 0 0 0.75rem; color: var(--color-dark); }
.experience-best ul { margin: 0; padding-left: 1.2rem; color: var(--color-body); }
.experience-best li { margin-bottom: 0.4rem; color: var(--color-dark); }

/* ============ Gallery ============ */
.gallery { background: var(--color-white); padding: 75px 0; }
.gallery__viewport {
  position: relative;
}
.gallery__strip {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 1rem 1.25rem 1.5rem;
}
.gallery__strip::-webkit-scrollbar { display: none; }
.gallery__strip:focus-visible { outline: 2px solid var(--color-primary-hover); outline-offset: -2px; }
.gallery__item {
  flex: 0 0 78vw;
  scroll-snap-align: start;
}
.gallery__item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 25px;
  transition: var(--transition-image);
}
.gallery__item img:hover { filter: brightness(0.96); }
.gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  background: var(--color-white);
  color: var(--color-dark);
  border: 1px solid var(--color-border);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.gallery__nav:hover { background: var(--color-primary); color: var(--color-white); border-color: var(--color-primary); }
.gallery__nav:focus-visible { outline: 2px solid var(--color-primary-hover); outline-offset: 3px; }
.gallery__nav--prev { left: 0.5rem; }
.gallery__nav--next { right: 0.5rem; }
.gallery__nav[hidden] { display: none; }

/* ============ Itinerary ============ */
.itinerary { background: var(--color-bg); padding: 75px 0; }
.itinerary-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 820px;
  display: grid;
  gap: 1.2rem;
}
.itinerary-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.25rem;
  background: var(--color-white);
  padding: 1.5rem 1.6rem;
  align-items: start;
}
.itinerary-step__num {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
}
.itinerary-step h3 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--color-dark); margin: 0 0 0.4rem; }
.itinerary-step p { margin: 0; color: var(--color-body); }

/* ============ Included ============ */
.included { background: var(--color-white); padding: 75px 0; }
.included__cols {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.included__col h3 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--color-dark); border-bottom: 2px solid var(--color-primary); padding-bottom: 0.5rem; margin-bottom: 1rem; }
.included__col ul { list-style: none; padding: 0; margin: 0; }
.included__col li { position: relative; padding-left: 1.5rem; margin-bottom: 0.6rem; color: var(--color-body); }
.included__col--in li::before { content: "·"; color: var(--color-primary); position: absolute; left: 0.4rem; font-weight: 700; font-size: 1.4rem; line-height: 1; }
.included__col--out li::before { content: "—"; color: var(--color-primary); position: absolute; left: 0; font-weight: 700; }

/* ============ Why-choose ============ */
.why-choose {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 75px 0;
}
.why-choose .section-head h2 { color: var(--color-white); }
.why-choose .section-head p { color: rgba(255, 255, 255, 0.85); }
.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.why-choose-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 1.5rem 1.5rem;
}
.why-choose-card .why-choose-card__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-accent);
  margin: 0 0 0.4rem;
}
.why-choose-card h3 {
  font-family: var(--font-heading);
  color: var(--color-white);
  font-size: 1.15rem;
  margin: 0 0 0.7rem;
}
.why-choose-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.97rem;
  line-height: 1.55;
}

/* ============ Reviews ============ */
.reviews { background: var(--color-bg); padding: 75px 0; }
.reviews__source {
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-body);
  margin: -1.25rem auto 2rem;
  max-width: 700px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 1290px;
  margin: 0 auto;
}
.review-card {
  background: var(--color-white);
  padding: 1.6rem 1.6rem;
  border-left: 4px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: var(--shadow-card);
}
.review-card__stars { color: var(--color-primary); letter-spacing: 0.1em; font-size: 1rem; }
.review-card blockquote {
  margin: 0;
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--color-dark);
}
.review-card__cite {
  margin: 0;
  font-style: normal;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-body);
}

/* ============ Practical info ============ */
.practical { background: var(--color-white); padding: 75px 0; }
.practical-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.practical-block {
  padding: 1.4rem 1.5rem;
  background: var(--color-bg);
}
.practical-block h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-dark);
  margin: 0 0 0.55rem;
}
.practical-block p { margin: 0; color: var(--color-body); }

/* ============ FAQ ============ */
.faq { background: var(--color-bg); padding: 75px 0; }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-list details {
  background: var(--color-white);
  border-left: 4px solid var(--color-primary);
  padding: 1.1rem 1.3rem;
  margin-bottom: 0.85rem;
}
.faq-list summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-dark);
  list-style: none;
  position: relative;
  padding-right: 2rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--color-primary);
  font-weight: 400;
  line-height: 1;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details[open] { box-shadow: var(--shadow-card); }
.faq-list .faq-answer {
  margin: 0.7rem 0 0;
  color: var(--color-body);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ============ Final CTA ============ */
.cta-banner {
  background-color: var(--color-primary);
  background-image: linear-gradient(90deg, rgba(15, 15, 12, 0.85) 0%, rgba(15, 15, 12, 0.58) 55%, rgba(15, 15, 12, 0.32) 100%), url('../st-peters-basilica.webp');
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  padding: 100px 0;
  text-align: center;
}
.cta-banner h2 {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
}
.cta-banner__lede {
  max-width: 720px;
  margin: 0 auto 1.5rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
}
.cta-banner ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 1.5rem;
  max-width: 600px;
  display: grid;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.92);
}
.cta-banner ul li::before {
  content: "·";
  color: var(--color-accent);
  font-weight: 700;
  margin-right: 0.55rem;
  font-size: 1.4rem;
  line-height: 0;
  vertical-align: middle;
}
.cta-banner .btn--ghost { border-color: rgba(255, 255, 255, 0.85); color: var(--color-white); }
.cta-banner .btn--ghost:hover { background: var(--color-white); color: var(--color-primary); }
.cta-banner__primary {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
}
.cta-banner__primary:hover {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}
.cta-banner__micro {
  display: block;
  margin-top: 1rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
}
.cta-banner__disclosure {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner__widget {
  max-width: 540px;
  margin: 2rem auto;
  padding: 1.5rem;
  background: var(--color-white);
  color: var(--color-dark);
  text-align: left;
}
.cta-banner__widget-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-primary);
  margin: 0 0 1rem;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cta-banner__widget [data-gyg-widget] span {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: var(--color-body);
  text-align: center;
}
.cta-banner__widget [data-gyg-widget] span a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* ============ Footer ============ */
.site-footer {
  background: var(--color-footer-bg);
  color: rgba(255, 255, 255, 0.92);
  padding: 4rem 0 1.75rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.footer-brand {
  text-align: left;
  align-self: start;
  justify-self: start;
}
.footer-brand .brand { justify-content: flex-start; }
.footer-brand .brand-name { color: var(--color-bg); }
.footer-brand p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  margin-top: 0.75rem;
}
.footer-col h3 {
  color: var(--color-bg);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.footer-col a:hover {
  color: var(--color-white);
  border-bottom-color: var(--color-bg);
}
.footer-bottom {
  max-width: 1240px;
  margin: 2rem auto 0;
  padding: 1.5rem 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: 0.5rem;
  text-align: left;
}
.footer-bottom p { margin: 0; font-size: 0.85rem; color: rgba(255, 255, 255, 0.7); }
.footer-bottom .footer-disclosure { color: rgba(255, 255, 255, 0.78); }

/* ============ Static page (privacy/affiliate-disclosure/404) ============ */
.static-page {
  padding: 60px 0 75px;
  background: var(--color-white);
  min-height: 50vh;
}
.static-page .container--readable h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 1.5rem;
}
.static-page p, .static-page ul { color: var(--color-body); }
.static-page h2 {
  font-size: 1.35rem;
  margin-top: 2rem;
}

/* ============ 404 ============ */
.notfound { padding: 80px 0; text-align: center; background: var(--color-bg); }
.notfound h1 { font-family: var(--font-heading); font-size: clamp(2rem, 6vw, 3rem); }

/* ============ Tablet (≥690px) ============ */
@media (min-width: 690px) {
  section { padding: 60px 0; }
  .hero { padding: 90px 0 140px; }
  .hero-pillars__grid { grid-template-columns: repeat(2, 1fr); margin-top: -48px; }
  .hero-pillar { padding: 2.4rem 1.8rem; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .included__cols { grid-template-columns: 1.5fr 1fr; }
  .why-choose-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .practical-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item { flex: 0 0 60vw; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); }
  .itinerary-step { grid-template-columns: 80px 1fr; }
}

/* ============ Desktop (≥1000px) ============ */
@media (min-width: 1000px) {
  section { padding: 75px 0; }
  section[id] { scroll-margin-top: 7rem; }
  .nav-toggle { display: none; }
  #primary-nav,
  #primary-nav.is-open {
    display: block;
    position: static;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  #primary-nav ul,
  #primary-nav.is-open ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  #primary-nav ul a {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 0.9rem;
    color: var(--color-dark);
    font-weight: 500;
    font-size: 0.95rem;
    border: 0;
  }
  #primary-nav ul a:hover { color: var(--color-primary); }
  #primary-nav ul a.nav-cta {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.6rem 1.2rem;
    margin-left: 0.5rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.04em;
    font-size: 0.85rem;
  }
  #primary-nav ul a.nav-cta:hover { background: var(--color-primary-hover); color: var(--color-white); }
  .header-inner { height: 90px; }
  .hero { padding: 110px 0 160px; }
  .hero-pillars__grid { grid-template-columns: repeat(4, 1fr); margin-top: -80px; }
  .description-layout { grid-template-columns: 1.7fr 1fr; gap: 3rem; align-items: start; }
  .description-layout .description__body { max-width: none; margin: 0; }
  .highlights-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .why-choose-grid { grid-template-columns: repeat(4, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
  .practical-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery__item { flex: 0 0 480px; }
  .gallery__item img { height: 320px; }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; }
  .footer-bottom p { font-size: 0.85rem; }
  .footer-bottom .footer-disclosure { max-width: 70%; }
}
