/* =====================================================================
   cinqueterrefromflorence.tours — single stylesheet
   Layout: ToursCE-style blog article (per blog-design-instructions.md)
   Palette: Classic Cinque Terre (per fonts-colors.txt)
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Palette — Classic Cinque Terre */
  --c-seablue:    #0E5F76;   /* primary CTA bg, deep accent */
  --c-seablue-d:  #0a4a5d;   /* CTA hover */
  --c-turquoise:  #2FA7B5;   /* turquoise on dark bg (footer/CTA) */
  --c-turquoise-d:#0f7480;   /* turquoise on light — links on cream/white (AA) */
  --c-yellow:     #F4C542;   /* badges on dark backgrounds */
  --c-yellow-d:   #8a6d05;   /* mustard for small text on white (AA-safe) */
  --c-coral:      #D96C4A;   /* warm accent — H2 borders, tag chip border */
  --c-coral-d:    #9e3f1f;   /* coral text on light surfaces (AA-safe) */
  --c-coral-l:    #FFEFE6;   /* warm callout bg */
  --c-coral-bd:   #E8A98D;   /* coral border */
  --c-olive:      #6F8F5E;   /* olive bg / decorative */
  --c-olive-d:    #4d6741;   /* olive text on cream (AA) */
  --c-cream:      #FFF7EA;   /* page bg */
  --c-cream-d:    #F2EBD7;   /* tinted secondary surface */
  --c-white:      #FFFFFF;
  --c-charcoal:   #24323A;   /* main text + heading colour */
  --c-text-sec:   #4f5560;   /* body prose */
  --c-text-mut:   #5d6772;   /* meta, captions, muted (AA on cream) */
  --c-border:     rgba(36,50,58,0.10);
  --c-border-md:  rgba(36,50,58,0.18);
  --c-success:    #2e8a4a;   /* check icon green */

  /* Mapped tokens (matches blog-design-instructions semantics) */
  --accent:        var(--c-coral);    /* H2 borders, tag chips, callout left, accent dots */
  --accent-dark:   var(--c-coral-d);
  --accent-light:  var(--c-coral-l);
  --accent-border: var(--c-coral-bd);
  --cta:           var(--c-seablue);  /* primary buttons */
  --cta-hover:     var(--c-seablue-d);
  --link:          var(--c-turquoise-d);   /* AA-safe link colour on light bg */
  --badge:         var(--c-yellow);
  --soft:          var(--c-olive-d);
  --eyebrow-on-light: var(--c-coral-d);  /* small-text eyebrow on white/cream */

  --bg-page:    var(--c-cream);
  --bg-surface: var(--c-white);
  --bg-subtle:  var(--c-cream-d);

  --text-primary:   var(--c-charcoal);
  --text-secondary: var(--c-text-sec);
  --text-muted:     var(--c-text-mut);

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

  /* Fonts */
  --font-head: "Fraunces", "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

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

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  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;
}

/* ---------- Type ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.25;
  margin: 0;
  font-feature-settings: "kern", "liga", "ss01";
}

p { margin: 0 0 16px; }
p:last-child { margin-bottom: 0; }

/* Accent everywhere we use it for inline emphasis */
.text-coral   { color: var(--c-coral); }
.text-blue    { color: var(--c-seablue); }
.text-mut     { color: var(--text-muted); }
.weight-500   { font-weight: 500; }

/* ---------- Header (sticky) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--c-border);
  height: 64px;
  display: flex; align-items: center;
}
.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-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.brand:hover { color: var(--text-primary); text-decoration: none; }
.brand .brand-accent { color: var(--c-coral); }

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

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--c-border-md);
  border-radius: 6px;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  color: var(--text-primary);
}
.nav-toggle:focus-visible { outline: 2px solid var(--cta); outline-offset: 2px; }
.nav-toggle .bar { display: block; width: 18px; height: 2px; background: currentColor; position: relative; }
.nav-toggle .bar::before,
.nav-toggle .bar::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: currentColor; }
.nav-toggle .bar::before { top: -6px; }
.nav-toggle .bar::after { top: 6px; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--c-border);
}
.breadcrumb-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 10px var(--gutter);
  font-size: 12px;
  color: var(--text-muted);
}
.breadcrumb-inner a { color: var(--text-muted); }
.breadcrumb-inner a:hover { color: var(--c-coral); text-decoration: none; }
.breadcrumb-inner .sep { margin: 0 6px; opacity: 0.6; }
.breadcrumb-inner .here { 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: 32px var(--gutter) 0;
}
.meta-row {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 12px;
  color: var(--text-muted);
}
.meta-row .meta-piece {
  display: inline-flex; align-items: center; gap: 5px;
}

/* Tag chip */
.tag {
  display: inline-block;
  background: var(--accent-light);
  color: var(--c-coral-d);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  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-h1 {
  font-size: clamp(28px, 4.2vw, 38px);
  font-weight: 600;
  max-width: 820px;
  margin: 0 0 14px;
  color: var(--text-primary);
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.article-deck {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 760px;
  line-height: 1.6;
  margin: 0 0 22px;
}

.hero-figure {
  position: relative;
  width: 100%;
  margin: 0;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  background: var(--c-cream-d);
}
.hero-figure img {
  width: 100%;
  height: clamp(280px, 36vw, 440px);
  object-fit: cover;
  display: block;
}
.hero-figure::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(36,50,58,0.45));
  pointer-events: none;
}
.hero-caption {
  position: absolute;
  bottom: 14px; left: 18px; right: 18px;
  font-size: 12px;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

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

.article-col { min-width: 0; }

/* ---------- Author / source bar ---------- */
.author-bar {
  background: var(--bg-subtle);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex; gap: 14px; align-items: center;
  margin: 0 0 26px;
}
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--c-coral);
  color: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14px;
  font-family: var(--font-head);
  flex-shrink: 0;
}
.author-info { font-size: 13px; line-height: 1.5; }
.author-info .author-name { font-weight: 600; color: var(--text-primary); }
.author-info .author-role { font-size: 12px; color: var(--text-muted); }

/* ---------- Table of contents ---------- */
.toc-card {
  background: var(--bg-surface);
  border: 1px solid var(--c-border);
  border-left: 3px solid var(--c-coral);
  border-radius: 10px;
  padding: 18px 22px;
  margin: 0 0 32px;
}
.toc-title {
  font-family: var(--font-body);
  font-size: 12px;
  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: 8px 24px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13.5px;
}
.toc-list li { display: flex; gap: 8px; align-items: baseline; }
.toc-list .toc-num {
  font-family: var(--font-head);
  font-size: 12px;
  color: var(--eyebrow-on-light);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  min-width: 18px;
}
.toc-list a { color: var(--text-secondary); }
.toc-list a:hover { color: var(--c-coral); text-decoration: none; }

/* ---------- Article H2 / H3 ---------- */
.article-col h2 {
  font-size: clamp(22px, 2.4vw, 26px);
  font-weight: 600;
  margin: 36px 0 14px;
  padding-top: 8px;
  border-top: 3px solid var(--c-coral);
  display: inline-block;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.article-col h2:first-child { margin-top: 0; }

.article-col h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 22px 0 8px;
  color: var(--text-primary);
}

.article-col p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 16px;
  color: var(--text-secondary);
}
.article-col p strong { color: var(--text-primary); font-weight: 600; }

.article-section { margin-bottom: 32px; }

/* Section eyebrow (yellow uppercase mini-label above some headings) */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--eyebrow-on-light);
  text-transform: uppercase;
  margin: 0 0 6px;
  display: block;
}

/* ---------- Hero pillars / why-stand-out (4 short blocks) ---------- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 8px 0 28px;
}
.pillar-card {
  background: var(--bg-surface);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  padding: 18px 20px;
  display: block;
}
.pillar-card .pillar-eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.3px;
  color: var(--eyebrow-on-light);
  text-transform: uppercase;
  margin: 0 0 6px;
}
.pillar-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 8px;
  line-height: 1.3;
}
.pillar-card p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: var(--text-secondary);
}

/* ---------- Village mini-cards ---------- */
.villages {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 8px 0 0;
}
.village {
  background: var(--bg-surface);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  padding: 18px 22px;
}
.village h3 {
  font-family: var(--font-head);
  font-size: 19px;
  margin: 0 0 4px;
  display: flex; gap: 10px; align-items: baseline;
  flex-wrap: wrap;
}
.village h3 .village-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--c-olive);
  background: rgba(111,143,94,0.12);
  padding: 2px 8px;
  border-radius: 12px;
}
.village .village-best {
  font-size: 12px;
  color: var(--c-coral-d);
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: 0.01em;
}
.village p { font-size: 14.5px; line-height: 1.65; margin: 0; }

/* ---------- Itinerary timeline ---------- */
.itinerary {
  list-style: none;
  padding: 0; margin: 8px 0 0;
  counter-reset: step;
}
.itinerary li {
  position: relative;
  padding: 0 0 22px 56px;
  counter-increment: step;
}
.itinerary li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0; top: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--c-seablue);
  color: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}
.itinerary li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 19px; top: 40px;
  width: 2px;
  height: calc(100% - 36px);
  background: var(--c-border-md);
}
.itinerary li h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 4px;
}
.itinerary li p { font-size: 14.5px; line-height: 1.65; margin: 0; }
.itinerary li .step-time {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--eyebrow-on-light);
  font-weight: 700;
  margin-right: 8px;
}

/* ---------- Inline tour CTA card ---------- */
.tour-cta-card {
  background: var(--bg-surface);
  border: 1px solid var(--c-border);
  border-radius: 14px;
  overflow: hidden;
  margin: 28px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 380px);
  gap: 0;
  box-shadow: 0 6px 20px -10px rgba(36,50,58,0.18);
}
.tour-cta-content { padding: 22px 26px 24px; }
.tour-cta-content .pillar-eyebrow,
.tour-cta-content .eyebrow {
  color: var(--eyebrow-on-light);
}
.tour-cta-content h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  margin: 4px 0 10px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.tour-cta-meta {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0 0 14px;
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 6px 10px;
}
.tour-cta-meta .sep { color: var(--text-muted); opacity: 0.55; }
.tour-cta-meta strong { color: var(--text-primary); font-weight: 600; }
.meta-pill {
  display: inline-block;
  background: var(--c-seablue);
  color: var(--c-white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 3px 10px;
  border-radius: 12px;
  text-transform: uppercase;
}
.tour-cta-content p {
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0 0 14px;
  color: var(--text-secondary);
}

.tour-included {
  list-style: none;
  padding: 0; margin: 0 0 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.tour-included li {
  position: relative;
  padding: 0 0 0 28px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}
.tour-included li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--c-seablue);
}
.tour-included li::after {
  content: "";
  position: absolute;
  left: 5px; top: 7px;
  width: 8px; height: 5px;
  border-left: 2px solid var(--c-white);
  border-bottom: 2px solid var(--c-white);
  transform: rotate(-45deg);
}

.tour-cta-bonus {
  background: var(--accent-light);
  border-left: 3px solid var(--c-coral);
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--c-coral-d);
}
.tour-cta-bonus strong { color: var(--c-coral-d); font-weight: 700; }

.tour-cta-meet {
  font-size: 12.5px;
  color: var(--text-muted);
  font-style: italic;
  margin: 0;
  line-height: 1.55;
}
.tour-cta-meet strong { color: var(--text-secondary); font-style: normal; font-weight: 600; }

.tour-cta-widget {
  background: var(--bg-subtle);
  padding: 14px;
  display: flex; align-items: stretch; justify-content: stretch;
  min-height: 360px;
  border-left: 1px solid var(--c-border);
}
.tour-cta-widget > div { width: 100%; }

/* ---------- Included / Not Included two-column ---------- */
.io-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 6px 0 0;
}
.io-col h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--c-border);
}
.io-list { list-style: none; padding: 0; margin: 0; }
.io-list li {
  position: relative;
  padding: 4px 0 4px 26px;
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.55;
}
.io-list--check li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--c-success);
}
.io-list--check li::after {
  content: "";
  position: absolute;
  left: 3px; top: 13px;
  width: 7px; height: 4px;
  border-left: 2px solid var(--c-white);
  border-bottom: 2px solid var(--c-white);
  transform: rotate(-45deg);
}
.io-list--no li {
  color: var(--text-muted);
}
.io-list--no li::before {
  content: "";
  position: absolute;
  left: 2px; top: 13px;
  width: 12px; height: 2px;
  background: var(--c-text-mut);
  opacity: 0.6;
}

/* ---------- Why choose this tour — comparison cards ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 6px 0 0;
}
.why-card {
  background: var(--bg-surface);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  padding: 16px 18px;
}
.why-card .pillar-eyebrow { color: var(--c-yellow-d); }
.why-card h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  margin: 4px 0 8px;
}
.why-card p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: var(--text-secondary);
}

/* ---------- Callout box ---------- */
.callout {
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  border-left: 4px solid var(--c-coral);
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  margin: 24px 0;
}
.callout p {
  font-size: 15px;
  color: var(--c-coral-d);
  margin: 0;
  line-height: 1.65;
}
.callout p strong { color: var(--c-coral-d); font-weight: 700; }
.callout .callout-cite {
  display: block;
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--c-olive);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 6px 0 0;
}
.review-card {
  background: var(--bg-surface);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  padding: 18px 20px;
}
.review-stars {
  color: #8a6d05;   /* gold star glyphs — AA on white (4.92:1) */
  font-size: 16px;
  letter-spacing: 1px;
  margin: 0 0 6px;
  font-weight: 700;
}
.review-card blockquote {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-primary);
  margin: 0 0 10px;
  font-weight: 400;
}
.review-card blockquote::before { content: "\201C"; }
.review-card blockquote::after  { content: "\201D"; }
.review-card .review-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}
.review-card .review-meta strong { color: var(--text-primary); font-weight: 600; }
.review-source {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0 0 14px;
  font-style: italic;
}

/* ---------- Practical info Q&A ---------- */
.practical-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 28px;
  margin: 6px 0 0;
}
.practical-item h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--text-primary);
}
.practical-item p {
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0;
  color: var(--text-secondary);
}

/* ---------- FAQ accordion ---------- */
.faq-list { margin: 6px 0 0; }
details.faq {
  background: var(--bg-surface);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  margin: 0 0 10px;
  padding: 0;
  overflow: hidden;
}
details.faq[open] { border-color: var(--c-coral-bd); }
details.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 22px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  color: var(--text-primary);
  display: flex; justify-content: space-between; align-items: center;
  gap: 18px;
  line-height: 1.4;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+";
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  color: var(--c-coral);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
details.faq[open] summary::after { content: "−"; transform: rotate(0deg); }
details.faq .faq-body {
  padding: 0 22px 18px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-secondary);
}
details.faq .faq-body p { margin: 0; }

/* ---------- Share row ---------- */
.share-row {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 12px;
  padding-top: 22px;
  margin-top: 30px;
  border-top: 1px solid var(--c-border);
}
.share-row .share-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg-surface);
  border: 1px solid var(--c-border-md);
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 12.5px;
  color: var(--text-secondary);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.share-btn:hover { border-color: var(--c-coral); color: var(--c-coral); text-decoration: none; }

/* ---------- Sidebar ---------- */
.sidebar {
  position: sticky;
  top: 84px;
  align-self: start;
}
.sidebar-card {
  background: var(--bg-surface);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  padding: 18px 20px;
  margin: 0 0 18px;
}
.sidebar-card h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--c-border);
  color: var(--text-primary);
}

.facts-list { list-style: none; margin: 0; padding: 0; }
.facts-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 13px;
  padding: 9px 0;
  border-bottom: 1px solid var(--c-border);
  gap: 12px;
}
.facts-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.facts-list .facts-key { color: var(--text-muted); }
.facts-list .facts-val {
  color: var(--text-primary);
  font-weight: 600;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* Sidebar warm CTA card */
.sidebar-cta {
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  border-radius: 10px;
  padding: 18px 20px;
  margin: 0 0 18px;
}
.sidebar-cta h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 8px;
  padding: 0; border: 0;
  color: var(--c-coral-d);
}
.sidebar-cta p {
  font-size: 13px;
  color: #7a4020;
  line-height: 1.55;
  margin: 0 0 14px;
}
.sidebar-cta .btn { width: 100%; text-align: center; }

/* Sidebar mini-tours */
.mini-tours { list-style: none; padding: 0; margin: 0; }
.mini-tours li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--c-border);
}
.mini-tours li:last-child { border-bottom: 0; padding-bottom: 2px; }
.mini-tours .mini-thumb {
  width: 56px; height: 56px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}
.mini-tours .mini-info { font-size: 13px; line-height: 1.4; min-width: 0; }
.mini-tours .mini-info a {
  color: var(--text-primary);
  font-weight: 600;
  text-decoration: none;
  display: block;
  margin-bottom: 2px;
}
.mini-tours .mini-info a:hover { color: var(--c-coral); }
.mini-tours .mini-meta {
  font-size: 11.5px;
  color: var(--c-coral);
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* Sidebar widget shell */
.sidebar-widget {
  background: var(--bg-surface);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  padding: 14px;
  margin: 0 0 18px;
  min-height: 320px;
}
.sidebar-widget .widget-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  margin: 0 0 8px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--cta);
  color: var(--c-white);
  border: none;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.18s, transform 0.12s, color 0.18s;
  cursor: pointer;
}
.btn:hover {
  background: var(--cta-hover);
  color: var(--c-white);
  text-decoration: none;
  transform: translateY(-1px);
}
.btn:focus-visible {
  outline: 2px solid var(--c-yellow);
  outline-offset: 2px;
}
.btn--coral { background: var(--c-coral); }
.btn--coral:hover { background: var(--c-coral-d); }
.btn--ghost {
  background: transparent;
  border: 1px solid var(--c-border-md);
  color: var(--text-primary);
  padding: 8px 18px;
}
.btn--ghost:hover { background: var(--bg-surface); border-color: var(--c-coral); color: var(--c-coral); }
.btn--lg { padding: 13px 28px; font-size: 14.5px; }
.btn--full { width: 100%; text-align: center; }

/* Header nav button — must out-specificity the nav link rule */
.primary-nav .btn { color: var(--c-white); padding: 8px 18px; font-size: 13px; }
.primary-nav .btn:hover { color: var(--c-white); text-decoration: none; }

/* ---------- "Other ways to see Cinque Terre" — alternates section ---------- */
.alternates {
  background: var(--bg-page);
  border-top: 1px solid var(--c-border);
  padding: 56px var(--gutter);
}
.alternates-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}
.alternates-head {
  text-align: left;
  margin-bottom: 32px;
  max-width: 760px;
}
.alternates-head .eyebrow { color: var(--c-yellow-d); }
.alternates-head h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--text-primary);
  border-top: 3px solid var(--c-coral);
  padding-top: 10px;
  display: inline-block;
  letter-spacing: -0.01em;
}
.alternates-head p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 8px 0 0;
  max-width: 720px;
}

.alternates-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.alt-card {
  background: var(--bg-surface);
  border: 1px solid var(--c-border);
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 380px);
  gap: 0;
  box-shadow: 0 4px 18px -10px rgba(36,50,58,0.14);
}
.alt-card-content { padding: 22px 26px; }
.alt-card .pillar-eyebrow { color: var(--c-yellow-d); }
.alt-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  margin: 4px 0 10px;
  line-height: 1.25;
  letter-spacing: -0.005em;
}
.alt-card-meta {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0 0 14px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px 10px;
}
.alt-card-meta .sep { color: var(--text-muted); opacity: 0.55; }
.alt-card-meta strong { color: var(--text-primary); font-weight: 600; }
.alt-card-content p {
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0 0 12px;
  color: var(--text-secondary);
}
.alt-card .tour-included { margin-bottom: 0; }
.alt-card-widget {
  background: var(--bg-subtle);
  padding: 14px;
  display: flex; align-items: stretch; justify-content: stretch;
  min-height: 360px;
  border-left: 1px solid var(--c-border);
}
.alt-card-widget > div { width: 100%; }

/* ---------- Final CTA banner ---------- */
.final-cta {
  background: var(--c-seablue);
  background: linear-gradient(135deg, var(--c-seablue) 0%, #0a4a5d 100%);
  color: var(--c-white);
  padding: 56px var(--gutter);
}
.final-cta-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.final-cta .eyebrow { color: var(--c-yellow); }
.final-cta h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 600;
  color: var(--c-white);
  margin: 0 0 14px;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.final-cta p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  margin: 0 0 22px;
  max-width: 680px;
  margin-left: auto; margin-right: auto;
}
.final-cta ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 26px;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px 22px;
  max-width: 720px;
}
.final-cta ul li {
  font-size: 13.5px;
  color: rgba(255,255,255,0.92);
  display: inline-flex; align-items: center; gap: 7px;
}
.final-cta ul li::before {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-yellow);
}
.final-cta .btn--coral {
  background: var(--c-coral);
}
.final-cta .btn--coral:hover { background: #b85631; }
.final-cta .disclosure {
  font-size: 11.5px;
  color: rgba(255,255,255,0.62);
  margin: 18px 0 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-charcoal);
  color: rgba(255,253,247,0.88);
  padding: 48px var(--gutter) 28px;
}
.footer-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .brand {
  color: var(--c-white);
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255,253,247,0.72);
  margin: 0;
  max-width: 360px;
}
.footer-col h3 {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--c-yellow);
  margin: 0 0 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin: 0 0 9px; }
.footer-col a {
  color: rgba(255,253,247,0.85);
  font-size: 13.5px;
  text-decoration: none;
  font-weight: 400;
}
.footer-col a:hover { color: var(--c-white); border-bottom: 1px solid var(--c-yellow); 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: 12px;
  color: rgba(255,253,247,0.62);
  line-height: 1.55;
}
.footer-bottom p { margin: 0; }
.footer-disclosure { max-width: 580px; }

/* ---------- Inline article images ---------- */
.inline-img {
  width: 100%;
  border-radius: 10px;
  margin: 22px 0 6px;
}
.inline-img + figcaption {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0 0 22px;
  text-align: left;
}

/* ---------- Anchor scroll-margin ---------- */
section[id], .article-section[id] { scroll-margin-top: 88px; }

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

@media (max-width: 1080px) {
  .alt-card { grid-template-columns: 1fr; }
  .alt-card-widget { border-left: 0; border-top: 1px solid var(--c-border); }
  .tour-cta-card { grid-template-columns: 1fr; }
  .tour-cta-widget { border-left: 0; border-top: 1px solid var(--c-border); }
}

@media (max-width: 1024px) {
  .layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .sidebar { position: relative; top: auto; }
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .practical-grid { grid-template-columns: 1fr; }
  .toc-list { grid-template-columns: 1fr; }
  .io-grid { grid-template-columns: 1fr; gap: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .alternates { padding: 44px var(--gutter); }
}

@media (max-width: 720px) {
  .article-header-inner { padding-top: 24px; }
  .hero-figure img { height: 240px; }
  .article-h1 { font-size: 26px; }
  .article-deck { font-size: 15.5px; }
  .article-col h2 { font-size: 22px; margin-top: 30px; }
  .tour-cta-content, .alt-card-content { padding: 20px 22px; }
  .tour-cta-content h3 { font-size: 20px; }
  .alt-card h3 { font-size: 18px; }
  .itinerary li { padding-left: 50px; }
  .itinerary li::before { width: 36px; height: 36px; font-size: 13px; }
  .itinerary li:not(:last-child)::after { left: 17px; height: calc(100% - 32px); }
  .review-card blockquote { font-size: 14.5px; }
  .meta-row { gap: 8px; font-size: 11.5px; }
  .layout { padding: 26px var(--gutter) 48px; }
}

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    display: none;
    position: absolute;
    top: 64px;
    right: 0;
    width: 100%;
    max-width: 100%;
    background: var(--bg-surface);
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-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: 12px 4px;
    font-size: 14px;
    border-bottom: 1px solid var(--c-border);
  }
  .primary-nav a:last-child { border-bottom: 0; }
  .primary-nav .btn {
    margin-top: 12px;
    text-align: center;
    width: 100%;
    padding: 12px 18px;
  }
}
