/* =========================================================================
   Galleria Borghese — Editorial Blog (cinqueterre-style)
   Fonts: Fraunces (heads) + DM Sans (body)
   Palette: warm orange + cream + charcoal
   Font sizes bumped site-wide per user request.
   ========================================================================= */

:root{
  /* Accent palette */
  --accent:        #e07b39;
  --accent-dark:   #c05a1f;
  --accent-light:  #fff3ec;
  --accent-border: #f0b080;
  --accent-hover:  #a14a16;

  /* CTA + link (kept warm-orange but accent-dark for AA on white) */
  --cta:           #c05a1f;
  --cta-hover:     #a14a16;
  --link:          #c05a1f;

  /* Text */
  --text-primary:   #1a1a1a;
  --text-secondary: #3a342f;
  --text-muted:     #5d544a;
  --text-warm:      #6b3a1f;

  /* Backgrounds */
  --bg-page:    #fbf7f0;
  --bg-surface: #ffffff;
  --bg-subtle:  #f3ede2;

  /* Borders */
  --border:    rgba(26,26,26,.10);
  --border-md: rgba(26,26,26,.18);

  /* Status */
  --success: #2e8a4a;

  /* Spacing */
  --space-xs: 6px;
  --space-sm: 12px;
  --space-md: 20px;
  --space-lg: 32px;
  --space-xl: 40px;

  /* Layout */
  --content-max: 1140px;
  --gutter: 24px;

  /* Type */
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;
  --font-heading: 'Fraunces', Georgia, 'Times New Roman', serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-secondary);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--link);
  text-decoration: none;
  transition: color 0.18s ease;
}
a:hover { color: var(--cta-hover); text-decoration: underline; text-underline-offset: 3px; }
a:focus-visible { outline: 2px solid var(--cta); outline-offset: 2px; border-radius: 2px; }

button { font: inherit; cursor: pointer; }

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

/* Section anchor offset for sticky header */
[id] { scroll-margin-top: 88px; }

::selection { background: var(--accent); color: #fff; }

/* ---------- Type ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.22;
  margin: 0;
  font-feature-settings: "kern", "liga", "ss01";
  letter-spacing: -0.005em;
}
p { margin: 0 0 18px; }
p:last-child { margin-bottom: 0; }
strong { color: var(--text-primary); font-weight: 600; }
em { font-style: italic; }

/* ---------- Sticky site header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
}
.site-header__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand:hover { color: var(--text-primary); text-decoration: none; }
.brand strong { color: var(--accent-dark); font-weight: 700; }
.brand__mark { width: 28px; height: 28px; flex: 0 0 auto; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-md);
  border-radius: 6px;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  padding: 0;
}
.nav-toggle:focus-visible { outline: 2px solid var(--cta); outline-offset: 2px; }
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle__close { display: none; }
.nav-toggle.is-open .nav-toggle__open { display: none; }
.nav-toggle.is-open .nav-toggle__close { display: inline-flex; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.primary-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.primary-nav a:hover { color: var(--accent-dark); text-decoration: none; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
}
.breadcrumb__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 10px var(--gutter);
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent-dark); text-decoration: none; }
.breadcrumb__sep { margin: 0 4px; opacity: 0.6; }
.breadcrumb__current { color: var(--text-primary); font-weight: 500; }

/* ---------- Article header zone ---------- */
.article-header {
  background: var(--bg-surface);
}
.article-header__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 36px var(--gutter) 0;
}
.article-header__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--text-muted);
}
.article-header__meta svg {
  width: 14px; height: 14px;
  vertical-align: middle;
  margin-right: 4px;
}

/* Tag chip */
.tag {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 20px;
  border: 1px solid var(--accent-border);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  line-height: 1.5;
  font-family: var(--font-body);
}

.article-header__h1 {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4.4vw, 42px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  max-width: 840px;
  margin: 0 0 16px;
}
.article-header__deck {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 760px;
  line-height: 1.6;
  margin: 0 0 24px;
}

/* ---------- Hero image (inside article header) ---------- */
.hero-image {
  position: relative;
  width: 100%;
  margin: 0;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  background: var(--bg-subtle);
}
.hero-image img {
  width: 100%;
  height: clamp(280px, 36vw, 440px);
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(26,26,26,0.45));
  pointer-events: none;
}
.hero-image__caption {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.92);
  font-weight: 500;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.55);
}

/* ---------- Two-column blog layout ---------- */
.blog-layout {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 36px var(--gutter) 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: start;
  background: var(--bg-page);
}
.article-body { min-width: 0; }

/* ---------- Author bar ---------- */
.author-bar {
  background: var(--bg-subtle);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 0 0 28px;
}
.author-bar__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-dark);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: 600 15px/1 var(--font-heading);
  flex: 0 0 auto;
}
.author-bar__name {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}
.author-bar__role {
  font-size: 13px;
  color: var(--text-muted);
}

/* ---------- Table of contents ---------- */
.toc-box {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  padding: 20px 22px;
  margin: 0 0 32px;
}
.toc-box__title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--text-muted);
  margin: 0 0 14px;
}
.toc-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
}
.toc-list li {
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.toc-list__num {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--accent-dark);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  min-width: 22px;
  flex: 0 0 auto;
}
.toc-list a {
  color: var(--text-secondary);
  line-height: 1.45;
}
.toc-list a:hover { color: var(--accent-dark); text-decoration: none; }

/* ---------- Article sections ---------- */
.article-section {
  background: var(--bg-surface);
  padding: 26px 28px;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 28px;
}
.article-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.8vw, 30px);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
  padding-top: 10px;
  border-top: 3px solid var(--accent);
  display: inline-block;
  color: var(--text-primary);
}
.article-section h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.005em;
  margin: 28px 0 10px;
  color: var(--text-primary);
}
.article-section h3:first-of-type { margin-top: 8px; }
.article-section p {
  font-size: 17px;
  line-height: 1.78;
  margin: 0 0 16px;
  color: var(--text-secondary);
}
.article-section p:last-child { margin-bottom: 0; }
.article-section em { font-style: italic; }

/* Section eyebrow */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--accent-dark);
  text-transform: uppercase;
  margin: 0 0 6px;
  display: block;
}

/* ---------- Info / fact grid (2x2) ---------- */
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 18px 0 22px;
}
@media (min-width: 480px) { .info-grid { grid-template-columns: 1fr 1fr; } }
.info-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 18px;
}
.info-card__label {
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}
.info-card__value {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
}

/* ---------- Callout / highlight box ---------- */
.callout {
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  border-left: 4px solid var(--accent);
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-warm);
}
.callout p {
  color: var(--text-warm);
  font-size: 16px;
  margin: 0;
  line-height: 1.7;
}
.callout strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--accent-dark);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}

/* ---------- Checklist ---------- */
.checklist {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.checklist li {
  position: relative;
  padding: 6px 0 6px 30px;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 13px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--success);
}
.checklist li::after {
  content: "";
  position: absolute;
  left: 4px; top: 15px;
  width: 8px; height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* ---------- Inline tour-CTA card ---------- */
.tour-cta {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin: 24px 0 28px;
  box-shadow: 0 6px 20px -10px rgba(26,26,26,0.18);
}
.tour-cta__image {
  position: relative;
  height: 160px;
  overflow: hidden;
}
.tour-cta__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Per-card focal-point overrides */
#tour-123287 .tour-cta__image img { object-position: center top; }
#tour-415304 .tour-cta__image img { object-position: center 30%; }
.tour-cta__body {
  padding: 22px 26px 18px;
}
.tour-cta__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 700;
  margin: 0 0 8px;
}
.tour-cta__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin: 0 0 10px;
  line-height: 1.25;
}
.tour-cta__desc {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 16px;
}
.tour-cta__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 6px;
}
.tour-cta__price {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.005em;
}
.tour-cta__price small {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0;
}
.tour-cta__widget {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  padding: 14px;
  min-height: 360px;
}
.tour-cta__widget [data-gyg-href] {
  margin: 0;
  min-height: 332px;
  display: block;
}

/* ---------- Tables (cost, comparison) ---------- */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin: 18px 0 22px;
}
.data-table thead th {
  background: var(--accent-light);
  color: var(--accent-dark);
  text-align: left;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  line-height: 1.4;
}
.data-table td, .data-table th[scope="row"] {
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.6;
}
.data-table tbody tr:nth-child(odd) td,
.data-table tbody tr:nth-child(odd) th[scope="row"] { background: #fdfaf5; }
.data-table th[scope="row"] {
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
  background: var(--bg-subtle);
}
.data-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ---------- Reviews ---------- */
.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 18px 0 0;
}
@media (min-width: 600px) { .review-grid { grid-template-columns: 1fr 1fr; } }
.review-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 22px;
}
.review-card__stars {
  color: #8a6d05;
  font-size: 17px;
  letter-spacing: 1.5px;
  margin: 0 0 8px;
  font-weight: 700;
}
.review-card__quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--text-primary);
  margin: 0 0 12px;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.review-card__attr {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 0;
}
.review-card__attr strong { color: var(--text-primary); font-weight: 600; }

/* ---------- FAQ accordion ---------- */
.faq-list { margin: 18px 0 0; }
.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 0;
  overflow: hidden;
}
.faq-item[open] { border-color: var(--accent-border); }
.faq-item summary {
  padding: 18px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.4;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  min-height: 44px;
  letter-spacing: -0.005em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 22px;
  color: var(--accent-dark);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.18s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item-body {
  padding: 0 24px 20px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-secondary);
}
.faq-item-body p { margin: 0; }

/* ---------- Share row ---------- */
.share-row {
  background: var(--bg-surface);
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.share-row__label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  margin-right: 4px;
}
.share-row .btn-secondary svg { width: 14px; height: 14px; flex: 0 0 auto; }

/* ---------- Buttons ---------- */
.btn-primary {
  background: var(--cta);
  color: #fff;
  border: 0;
  padding: 11px 24px;
  border-radius: 6px;
  font: 600 14.5px/1.2 var(--font-body);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background .18s ease, transform .12s ease;
  letter-spacing: 0.01em;
}
.btn-primary:hover { background: var(--cta-hover); color: #fff; text-decoration: none; transform: translateY(-1px); }
.btn-primary--nav { padding: 8px 18px; font-size: 13.5px; }
.btn-secondary {
  background: var(--bg-surface);
  border: 1px solid var(--border-md);
  color: var(--text-secondary);
  padding: 8px 15px;
  border-radius: 6px;
  font: 500 13px/1.2 var(--font-body);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: border-color .15s ease, color .15s ease;
}
.btn-secondary:hover { color: var(--accent-dark); border-color: var(--accent-dark); text-decoration: none; }

.primary-nav .btn-primary,
.primary-nav .btn-primary:hover { color: #fff; }

/* ---------- Sidebar ---------- */
.sidebar {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 84px;
  align-self: start;
}
.sidebar-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 22px;
  margin: 0 0 20px;
}
.sidebar-card h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin: 0 0 14px;
  letter-spacing: -0.005em;
}

/* Quick facts table */
.quick-facts {
  margin: 0;
  padding: 0;
  list-style: none;
}
.quick-facts li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 14.5px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.45;
}
.quick-facts li:last-child { border-bottom: 0; padding-bottom: 0; }
.quick-facts__key { color: var(--text-muted); flex: 0 0 auto; }
.quick-facts__val {
  color: var(--text-primary);
  font-weight: 600;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* Related mini-tours */
.mini-tours { list-style: none; padding: 0; margin: 0; }
.mini-tours li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.mini-tours li:last-child { border-bottom: 0; padding-bottom: 2px; }
.mini-tours a {
  display: flex;
  gap: 12px;
  text-decoration: none;
  align-items: center;
  flex: 1;
}
.mini-tours a:hover { text-decoration: none; }
.mini-tours__thumb {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
  flex: 0 0 auto;
}
.mini-tours__thumb img { width: 100%; height: 100%; object-fit: cover; }
.mini-tours__info { min-width: 0; }
.mini-tours__title {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 3px;
  display: block;
}
.mini-tours a:hover .mini-tours__title { color: var(--accent-dark); }
.mini-tours__price {
  font-size: 13px;
  color: var(--accent-dark);
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* Sidebar warm CTA card */
.sidebar-cta {
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  border-radius: 10px;
  padding: 20px 22px;
  margin: 0 0 20px;
}
.sidebar-cta h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--accent-dark);
  margin: 0 0 10px;
  border: 0;
  padding: 0;
  letter-spacing: -0.005em;
}
.sidebar-cta p {
  font-size: 14px;
  color: var(--text-warm);
  margin: 0 0 14px;
  line-height: 1.6;
}
.sidebar-cta .btn-primary {
  display: block;
  text-align: center;
  width: 100%;
  padding: 11px 18px;
  font-size: 14px;
}

/* ---------- "Other ways to see" / related-posts grid ---------- */
.related-posts {
  background: var(--bg-page);
  border-top: 1px solid var(--border);
  padding: 56px var(--gutter);
}
.related-posts__inner {
  max-width: var(--content-max);
  margin: 0 auto;
}
.related-posts h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 500;
  margin: 0 0 24px;
  color: var(--text-primary);
  padding-top: 10px;
  border-top: 3px solid var(--accent);
  display: inline-block;
  letter-spacing: -0.015em;
}
.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 768px) { .related-grid { grid-template-columns: repeat(3, 1fr); } }
.related-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 4px 18px -10px rgba(26,26,26,0.14);
}
.related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px -10px rgba(26,26,26,0.22);
  text-decoration: none;
}
.related-card__image {
  height: 160px;
  overflow: hidden;
}
.related-card__image img { width: 100%; height: 100%; object-fit: cover; }
.related-card__body { padding: 16px 18px 18px; }
.related-card__tag { margin-bottom: 8px; }
.related-card__title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
  margin: 0 0 6px;
  letter-spacing: -0.005em;
  display: block;
}
.related-card__date {
  font-size: 12.5px;
  color: var(--text-muted);
  display: block;
}

/* ---------- Final CTA banner ---------- */
.final-cta {
  background: linear-gradient(135deg, var(--cta) 0%, var(--cta-hover) 100%);
  color: #fff;
  padding: 56px var(--gutter);
}
.final-cta__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.final-cta .eyebrow { color: #ffd9b8; }
.final-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 500;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.final-cta p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
  margin: 0 auto 24px;
  max-width: 680px;
}
.final-cta__bullets {
  list-style: none;
  padding: 0;
  margin: 0 auto 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  max-width: 720px;
}
.final-cta__bullets li {
  font-size: 14.5px;
  color: rgba(255,255,255,0.92);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.final-cta__bullets li::before {
  content: "";
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #f4c542;
}
.final-cta .btn-primary {
  background: #f4c542;
  color: #2a1a08;
  padding: 13px 28px;
  font-size: 15px;
}
.final-cta .btn-primary:hover { background: #fff; color: var(--accent-dark); }

/* ---------- Site footer ---------- */
.site-footer {
  background: #1a1a1a;
  color: rgba(255,253,247,0.88);
  padding: 48px var(--gutter) 28px;
}
.site-footer__inner {
  max-width: var(--content-max);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
}
.footer-brand .brand { color: #fff; }
.footer-brand .brand strong { color: var(--accent); }
.footer-brand p {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.65;
  max-width: 360px;
  color: rgba(255,253,247,0.72);
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #f4c542;
  margin: 0 0 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin: 0 0 10px; }
.footer-col a {
  color: rgba(255,253,247,0.85);
  font-size: 14px;
  text-decoration: none;
  font-weight: 400;
}
.footer-col a:hover { color: #fff; border-bottom: 1px solid #f4c542; text-decoration: none; }

.footer-bottom {
  max-width: var(--content-max);
  margin: 32px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,253,247,0.16);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: rgba(255,253,247,0.62);
  line-height: 1.55;
}
.footer-bottom a { color: rgba(255,253,247,0.72); }
.footer-bottom a:hover { color: #fff; text-decoration: none; }
.footer-disclosure {
  max-width: var(--content-max);
  margin: 16px auto 0;
  padding: 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(255,253,247,0.62);
  font-style: italic;
}

/* ---------- Focus ---------- */
:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 2px;
}

/* GYG widget container default */
[data-gyg-href] { min-height: 360px; }

/* ====================================================================
   RESPONSIVE
   ==================================================================== */

@media (max-width: 1024px) {
  .blog-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .sidebar { position: relative; top: auto; }
  .review-grid { grid-template-columns: 1fr; }
  .toc-list { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .article-header__inner { padding-top: 28px; }
  .info-grid { grid-template-columns: 1fr; }
  .article-section { padding: 22px 22px; }
  .article-section h2 { font-size: 22px; }
  .tour-cta__body { padding: 20px 22px 16px; }
  .tour-cta__title { font-size: 20px; }
  .related-posts { padding: 44px var(--gutter); }
  .final-cta { padding: 44px var(--gutter); }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .article-header__deck { font-size: 16.5px; }
  .article-section p { font-size: 16px; }
  .faq-item summary { font-size: 16px; padding: 16px 20px; }
  .faq-item-body { font-size: 15px; padding: 0 20px 16px; }
}

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    display: none;
    position: absolute;
    top: 64px;
    right: 0;
    width: 100%;
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px var(--gutter) 16px;
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a {
    display: block;
    padding: 14px 4px;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
  }
  .primary-nav a:last-child { border-bottom: 0; }
  .primary-nav .btn-primary {
    margin-top: 12px;
    text-align: center;
    width: 100%;
    padding: 12px 18px;
    font-size: 14px;
  }
}
