/* =====================================================================
   newspaper-style — lower-antelope-canyon.com
   Palette: vibrant gold + crisp white + navajo white + coral + indian red.
   Fonts: Inter (body) + Lora (display serif).
   ===================================================================== */

:root {
  /* ====== PROJECT PALETTE ====== */
  --accent:         #E7693B;  /* coral, decorative top-borders + hover */
  --accent-deep:    #A93410;  /* AA on white + page: CTA bg, links, eyebrows */
  --accent-soft:    #FFF1DD;  /* tinted surface: tag chips, callouts */
  --accent-border:  #ECCCAB;  /* hairline on tinted surfaces */
  --accent-text:    #6A2208;  /* AA on --accent-soft: text inside callouts */
  --secondary:      #C9A227;  /* secondary accent (gold): check fills, timeline rails */
  --secondary-deep: #7C611A;  /* AA on --page: gold text */
  --secondary-soft: #FFF6D8;  /* pale gold surface */
  --secondary-bd:   #E7D38F;
  --secondary-text: #4D3B0F;  /* AA on --secondary-soft */
  --star:           #B8483D;  /* AA on --surface: rating star glyphs */
  --ink:            #2A1F18;  /* deep warm brown: headings, footer bg */
  --page:           #FFF8EC;  /* warm cream page background */
  --surface-alt:    #FFF3E0;  /* lighter alternate surface */
  --surface:        #FFFFFF;  /* card / article surface */
  --text:           #3E2D22;  /* warm-dark body text — AA */
  --text-muted:     #6E5847;  /* meta / caption — AA */

  /* dark-surface text roles (used on --ink + final-CTA gradient) */
  --on-ink:        rgba(255,253,247,.92);
  --on-ink-mute:   rgba(255,253,247,.72);
  --ink-heading:   #FFD700;   /* vibrant gold footer headings on --ink */
  --ink-eyebrow:   #FFB873;   /* warm coral eyebrow on --ink */
  --cta-eyebrow:   #FFD18F;
  --cta-grad-end:  #5C3F2A;

  /* fonts */
  --font-head: "Lora", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* derived (leave alone) */
  --border:    rgba(42,31,24,.12);
  --border-md: rgba(42,31,24,.20);

  /* scale (leave alone) */
  --space-xs: 6px; --space-sm: 12px; --space-md: 20px; --space-lg: 32px; --space-xl: 48px;
  --section-py: clamp(2.6rem, 6vw, 4.4rem);
  --container: 1140px;
  --measure: 760px;
  --radius: 12px;
  --radius-sm: 8px;
  --header-h: 64px;
  --shadow-card: 0 1px 2px rgba(42,31,24,.05), 0 8px 24px -12px rgba(42,31,24,.18);
  --shadow-soft: 0 2px 10px -4px rgba(42,31,24,.14);
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px; line-height: 1.72;
  color: var(--text); background: var(--page);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-deep); }
a:hover { color: var(--accent); }
h1, h2, h3, h4 {
  font-family: var(--font-head); color: var(--ink);
  font-weight: 600; line-height: 1.18; margin: 0 0 .5em; letter-spacing: -.01em;
}
h1 { font-size: clamp(2rem, 1.3rem + 3vw, 3rem); }
h2 { font-size: clamp(1.55rem, 1.2rem + 1.6vw, 2.05rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.2rem; }
strong { color: var(--ink); font-weight: 600; }
hr { border: 0; border-top: 1px solid var(--border); margin: var(--space-lg) 0; }
.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;
}
:focus-visible { outline: 2px solid var(--accent-deep); outline-offset: 2px; border-radius: 3px; }

/* ---------- layout helpers ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: var(--measure); }
.prose { max-width: var(--measure); }
.prose p { color: var(--text); }
section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }
.section-pad { padding: var(--section-py) 0; }
.text-center { text-align: center; }
.lede { font-size: 1.14rem; color: var(--text); }

/* ---------- header (sticky) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--surface); border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; gap: 20px;
  min-height: var(--header-h); padding: 8px 24px;
  max-width: var(--container); margin: 0 auto;
}
.brand {
  display: flex; align-items: center; gap: 9px;
  text-decoration: none; color: var(--ink);
  font-family: var(--font-head); font-weight: 600; font-size: 1.16rem;
  letter-spacing: -.01em; white-space: nowrap;
}
.brand:hover { color: var(--ink); }
.brand svg { display: block; flex: none; }
.brand b { color: var(--accent-deep); font-weight: 600; }
.primary-nav { margin-left: auto; }
.primary-nav ul {
  display: flex; align-items: center; gap: 4px;
  list-style: none; margin: 0; padding: 0;
}
.primary-nav a {
  display: inline-block; padding: 8px 12px;
  font-size: .95rem; font-weight: 600;
  color: var(--text); text-decoration: none; border-radius: 6px;
}
.primary-nav a:hover { color: var(--accent-deep); background: var(--accent-soft); }
.primary-nav a[aria-current="page"] { color: var(--accent-deep); }
.primary-nav .nav-cta {
  margin-left: 6px; background: var(--accent-deep); color: #fff;
  padding: 9px 16px; border-radius: 7px;
}
.primary-nav .nav-cta:hover { background: var(--accent); color: #fff; }
.nav-toggle {
  display: none; margin-left: auto;
  width: 44px; height: 44px; padding: 0;
  background: transparent; border: 1px solid var(--border-md); border-radius: 8px;
  cursor: pointer; color: var(--ink);
  align-items: center; justify-content: center;
}
.nav-toggle svg { display: block; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open  { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* ---------- breadcrumb ---------- */
.breadcrumb { background: var(--surface); border-bottom: 1px solid var(--border); font-size: .82rem; }
.breadcrumb ol {
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
  list-style: none; margin: 0 auto; padding: 9px 24px;
  max-width: var(--container); color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent-deep); }
.breadcrumb li[aria-current="page"] { color: var(--ink); font-weight: 600; }
.breadcrumb li + li::before { content: "\203A"; margin-right: 6px; color: var(--border-md); }

/* ---------- buttons ---------- */
.btn-primary, .btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 1rem; font-weight: 700;
  border-radius: 8px; cursor: pointer; text-decoration: none;
  border: 1px solid transparent; padding: 12px 22px;
  transition: background .15s ease, transform .15s ease;
}
.btn-primary { background: var(--accent-deep); color: #fff; }
.btn-primary:hover { background: var(--accent); color: #fff; transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--border-md); }
.btn-secondary:hover { border-color: var(--accent-deep); color: var(--accent-deep); }
.btn--full, .btn-block { display: flex; width: 100%; justify-content: center; }
.btn-text {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; font-size: 1.18rem;
  color: var(--secondary-deep); text-decoration: none;
  border: 1.5px solid var(--secondary-deep);
  border-radius: 8px; padding: 10px 20px;
  transition: background .15s ease, color .15s ease;
}
.btn-text:hover { background: var(--secondary-deep); color: #fff; gap: 9px; }

/* ---------- eyebrow + accented H2 (legal pages) ---------- */
.eyebrow {
  display: inline-block; font-family: var(--font-body);
  font-size: .76rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .14em; color: var(--accent-deep); margin: 0 0 .5rem;
}
.h2-accent {
  display: inline-block; padding-top: 10px;
  border-top: 3px solid var(--accent); margin-bottom: .55em;
}

/* ---------- tag chips ---------- */
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 1.1rem; }
.tag {
  display: inline-block; background: var(--accent-soft); color: var(--accent-deep);
  font-size: .72rem; font-weight: 700; padding: 4px 11px; border-radius: 20px;
  border: 1px solid var(--accent-border); text-transform: uppercase; letter-spacing: .04em;
}
.tag--olive { background: var(--secondary-soft); color: var(--secondary-deep); border-color: var(--secondary-bd); }

/* ---------- checklist ---------- */
.checklist { list-style: none; padding: 0; margin: 0 0 1.2rem; display: grid; gap: 9px; }
.checklist li { position: relative; padding-left: 30px; color: var(--text); font-size: 1rem; line-height: 1.55; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 2px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--secondary)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    no-repeat center;
}
.checklist--cross li::before {
  background: #B9B0A6
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E")
    no-repeat center;
}

/* ---------- callout ---------- */
.callout {
  background: var(--accent-soft); border: 1px solid var(--accent-border);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 22px; margin: 1.4rem 0;
}
.callout p { margin: 0; color: var(--accent-text); }
.callout p + p { margin-top: .7rem; }
.callout strong { color: var(--accent-deep); }
.callout__label {
  display: block; font-size: .76rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--accent-deep); margin-bottom: 6px;
}
.callout--olive { background: var(--secondary-soft); border-color: var(--secondary-bd); border-left-color: var(--secondary); }
.callout--olive p { color: var(--secondary-text); }
.callout--olive strong, .callout--olive .callout__label { color: var(--secondary-deep); }
.callout-cite {
  display: block; margin-top: 10px; font-size: .8rem;
  color: var(--secondary-deep); font-weight: 700; font-style: normal; letter-spacing: .01em;
}

/* ---------- fact grid ---------- */
.fact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 1.3rem 0; }
.fact-grid > div {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 13px 16px;
}
.fact-grid .label {
  display: block; font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; color: var(--text-muted); margin-bottom: 3px;
}
.fact-grid .value { font-size: 1.02rem; font-weight: 600; color: var(--ink); }

/* ---------- article header ---------- */
.article-header { background: var(--surface); border-bottom: 1px solid var(--border); }
.article-header-inner { max-width: var(--container); margin: 0 auto; padding: 34px 24px 0; }
.meta-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  margin-bottom: 15px; font-size: .8rem; color: var(--text-muted);
}
.meta-row .meta-piece { display: inline-flex; align-items: center; gap: 5px; }
.meta-row .meta-piece::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); display: inline-block;
}
.article-h1 {
  font-size: clamp(1.9rem, 1.2rem + 3vw, 2.95rem); font-weight: 600;
  max-width: 24ch; margin: 0 0 .4em; color: var(--ink);
  line-height: 1.12; letter-spacing: -.015em;
}
.article-deck {
  font-size: 1.18rem; color: var(--text); max-width: 64ch;
  line-height: 1.6; margin: 0 0 1.5rem;
}
.hero-figure {
  position: relative; width: 100%; margin: 0;
  border-radius: var(--radius) var(--radius) 0 0; overflow: hidden;
  background: var(--surface-alt);
}
.hero-figure img { width: 100%; height: clamp(280px, 36vw, 460px); object-fit: cover; display: block; }
.hero-figure::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to bottom, transparent 48%, rgba(28,18,12,.55));
}
.hero-caption {
  position: absolute; left: 18px; right: 18px; bottom: 14px;
  font-size: .8rem; color: #fff; font-weight: 600;
  text-shadow: 0 1px 5px rgba(0,0,0,.7);
}

/* ---------- two-column layout ---------- */
.layout {
  max-width: var(--container); margin: 0 auto;
  padding: var(--section-py) 24px;
  display: grid; grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(2rem, 4vw, 3.2rem); align-items: start;
}
.article-col { min-width: 0; }
.sidebar { position: sticky; top: calc(var(--header-h) + 18px); display: grid; gap: 20px; }

/* ---------- author bar ---------- */
.author-bar {
  background: var(--surface-alt); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px 16px;
  display: flex; gap: 14px; align-items: center; margin: 0 0 26px;
}
.avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: var(--accent-deep); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
}
.author-info { font-size: .86rem; line-height: 1.5; }
.author-info .author-name { font-weight: 700; color: var(--ink); }
.author-info .author-role { font-size: .8rem; color: var(--text-muted); }

/* ---------- TL;DR / Key Takeaways card (GEO/AEO most-cited block) ---------- */
.tldr-card {
  background: var(--secondary-soft); border: 1px solid var(--secondary-bd);
  border-left: 4px solid var(--secondary);
  border-radius: var(--radius); padding: 20px 24px; margin: 0 0 26px;
}
.tldr-title {
  font-family: var(--font-body);
  font-size: .76rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--secondary-deep); margin: 0 0 12px;
}
.tldr-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.tldr-card li {
  position: relative; padding-left: 22px;
  font-size: .95rem; line-height: 1.6; color: var(--text);
}
.tldr-card li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--secondary);
}
.tldr-card strong { color: var(--ink); }

/* ---------- comparison table (HTML, snippet-eligible) ---------- */
.comparison-table {
  width: 100%; border-collapse: collapse;
  margin: 1.4rem 0 1.2rem;
  font-size: .92rem; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
}
.comparison-table th, .comparison-table td {
  text-align: left; padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.comparison-table thead th {
  background: var(--accent-soft); color: var(--accent-deep);
  font-family: var(--font-head); font-weight: 600;
  font-size: 1rem;
}
.comparison-table th:first-child { width: 28%; }
.comparison-table tbody th {
  background: var(--surface-alt); color: var(--ink); font-weight: 600;
  vertical-align: top;
}
.comparison-table tr:last-child th, .comparison-table tr:last-child td { border-bottom: 0; }
.comparison-table caption {
  caption-side: top; text-align: left;
  font-size: .78rem; color: var(--text-muted);
  font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 8px;
}
@media (max-width: 640px) {
  .comparison-table { font-size: .86rem; }
  .comparison-table th, .comparison-table td { padding: 10px 11px; }
}

/* ---------- updated-at chip (freshness signal near H1) ---------- */
.updated-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--secondary-soft); color: var(--secondary-deep);
  border: 1px solid var(--secondary-bd);
  border-radius: 14px; padding: 3px 11px;
  font-size: .74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  margin: 0 0 18px;
}
.updated-chip::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--secondary); display: inline-block;
}

/* ---------- TOC card ---------- */
.toc-card {
  background: var(--surface); border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm); padding: 18px 22px; margin: 0 0 34px;
}
.toc-title {
  font-size: .74rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--text-muted); margin: 0 0 13px;
}
.toc-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 26px;
  list-style: none; padding: 0; margin: 0; font-size: .92rem;
}
.toc-list li { display: flex; gap: 9px; align-items: baseline; }
.toc-list .toc-num {
  font-family: var(--font-head); font-size: .78rem; font-weight: 600;
  color: var(--accent-deep); min-width: 18px;
}
.toc-list a { color: var(--text); text-decoration: none; }
.toc-list a:hover { color: var(--accent-deep); }

/* ---------- article sections ---------- */
.article-section { margin-bottom: 38px; }
.article-section > h2 {
  font-size: clamp(1.45rem, 1.2rem + 1.3vw, 1.85rem);
  font-weight: 600; margin: 0 0 .5em; padding-top: 10px;
  border-top: 3px solid var(--accent); display: inline-block; line-height: 1.22;
}
.article-section > h3 { margin: 1.6rem 0 .5rem; }
.article-section > p { max-width: var(--measure); }
.cat-eyebrow {
  display: block; font-size: .76rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .13em; color: var(--accent-deep); margin: 0 0 6px;
}
.section-link { margin-top: 14px; }
.intro__meta {
  border-left: 3px solid var(--accent); padding: 4px 0 4px 14px; margin-top: 1.3rem;
  font-size: .95rem; color: var(--text-muted);
}
.intro__meta strong { color: var(--ink); }

/* ---------- inline prose links ---------- */
.ilink {
  color: var(--accent-deep); font-weight: 600;
  text-decoration: underline; text-decoration-color: var(--accent-border);
  text-underline-offset: 2px; text-decoration-thickness: 1.5px;
}
.ilink:hover { color: var(--accent); text-decoration-color: var(--accent); }
.ilink--olive { color: var(--secondary-deep); text-decoration-color: var(--secondary-bd); }
.ilink--olive:hover { color: var(--secondary); text-decoration-color: var(--secondary); }

/* ---------- inline image ---------- */
.inline-img { width: 100%; border-radius: var(--radius-sm); margin: 20px 0 6px; }
figure.inline { margin: 0; }
figure.inline figcaption { font-size: .8rem; color: var(--text-muted); margin: 0 0 4px; }

/* ---------- pillars grid ---------- */
.pillars-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px; margin: 14px 0 6px;
}
.pillar-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 18px 20px;
  display: block; text-decoration: none;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.pillar-card:hover { border-color: var(--accent-border); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.pillar-eyebrow {
  display: block; font-size: .68rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-deep); margin: 0 0 6px;
}
.pillar-card h3 { font-size: 1.05rem; font-weight: 600; color: var(--ink); margin: 0 0 7px; line-height: 1.3; }
.pillar-card p { font-size: .92rem; line-height: 1.55; margin: 0; color: var(--text); }

/* ---------- featured tour card ---------- */
.tour-cta-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; margin: 18px 0;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(300px, 360px);
  box-shadow: var(--shadow-card);
}
.tour-cta-content { padding: 22px 24px 24px; min-width: 0; }
.tour-cta-content h3 { font-size: 1.32rem; font-weight: 600; color: var(--ink); margin: 4px 0 9px; line-height: 1.24; }
.tour-cta-meta {
  font-size: .86rem; color: var(--text-muted); margin: 0 0 13px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px 9px;
}
.tour-cta-meta .stars { color: var(--star); letter-spacing: 1px; }
.tour-cta-meta strong { color: var(--ink); font-weight: 700; }
.tour-cta-meta .sep { color: var(--border-md); }
.meta-pill {
  display: inline-block; background: var(--accent-deep); color: #fff;
  font-size: .68rem; font-weight: 700; letter-spacing: .04em;
  padding: 3px 10px; border-radius: 12px; text-transform: uppercase;
}
.tour-cta-content > p { font-size: .96rem; line-height: 1.62; margin: 0 0 14px; color: var(--text); }
.tour-included { list-style: none; padding: 0; margin: 0 0 16px; display: grid; gap: 8px; }
.tour-included li { position: relative; padding-left: 28px; font-size: .9rem; color: var(--text); line-height: 1.5; }
.tour-included li::before {
  content: ""; position: absolute; left: 0; top: 1px;
  width: 19px; height: 19px; border-radius: 50%;
  background: var(--secondary)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    no-repeat center;
}
.tour-cta-widget {
  background: var(--surface-alt); padding: 14px;
  border-left: 1px solid var(--border);
  display: flex; align-items: stretch; min-height: 360px;
}
.tour-cta-widget > div { width: 100%; }

/* ---------- timeline ---------- */
.timeline { counter-reset: step; display: grid; gap: 0; margin-top: 1.4rem; max-width: var(--measure); }
.timeline li { list-style: none; counter-increment: step; position: relative; padding: 0 0 22px 56px; }
.timeline li::before {
  content: counter(step); position: absolute; left: 0; top: 0;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--accent-deep); color: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center;
}
.timeline li::after {
  content: ""; position: absolute; left: 18px; top: 38px; bottom: 0;
  width: 2px; background: var(--accent-border);
}
.timeline li:last-child { padding-bottom: 0; }
.timeline li:last-child::after { display: none; }
.timeline .t-time {
  display: block; font-weight: 700; color: var(--ink); font-size: .8rem;
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px;
}
.timeline .t-body { color: var(--text); }

/* ---------- reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin: 6px 0 0; }
.review-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 20px;
}
.review-card .review-stars { color: var(--star); font-size: 1rem; letter-spacing: 1px; margin: 0 0 6px; font-weight: 700; }
.review-card blockquote {
  font-family: var(--font-head); font-style: italic; font-size: 1rem;
  line-height: 1.55; color: var(--ink); 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: .82rem; color: var(--text-muted); margin: 0; }
.review-card .review-meta strong { color: var(--ink); font-weight: 700; }
.review-source { font-size: .95rem; color: var(--text-muted); font-style: italic; margin: 0 0 14px; }

/* ---------- practical info ---------- */
.practical-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 28px; margin: 6px 0 0; }
.practical-item h3 { font-size: 1.02rem; font-weight: 600; color: var(--ink); margin: 0 0 5px; }
.practical-item p { font-size: .92rem; line-height: 1.6; margin: 0; color: var(--text); }

/* ---------- FAQ ---------- */
.faq-list { margin: 1.2rem 0 0; }
details.faq {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); margin: 0 0 10px; padding: 0; overflow: hidden;
}
details.faq[open] { border-color: var(--accent-border); }
details.faq summary {
  list-style: none; cursor: pointer; padding: 16px 22px;
  font-family: var(--font-head); font-weight: 600; font-size: 1.06rem; color: var(--ink);
  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: 1.4rem;
  color: var(--accent); flex-shrink: 0; line-height: 1;
}
details.faq[open] summary::after { content: "\2212"; }
details.faq .faq-body { padding: 0 22px 18px; font-size: .96rem; line-height: 1.7; color: var(--text); }
details.faq .faq-body p { margin: 0 0 .7rem; }
details.faq .faq-body p:last-child { margin-bottom: 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(--border);
}
.share-label { font-size: .8rem; color: var(--text-muted); font-weight: 600; }
.share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--surface); border: 1px solid var(--border-md);
  border-radius: 6px; padding: 7px 14px; font-size: .82rem;
  color: var(--text); cursor: pointer; text-decoration: none; font-family: var(--font-body);
}
.share-btn:hover { border-color: var(--accent-deep); color: var(--accent-deep); }

/* ---------- sidebar cards ---------- */
.sidebar-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 20px; margin: 0 0 18px;
}
.sidebar-card h3 {
  font-size: 1.02rem; font-weight: 600; margin: 0 0 13px;
  padding-bottom: 10px; border-bottom: 1px solid var(--border);
}
.facts-list { list-style: none; margin: 0; padding: 0; }
.facts-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px; font-size: .88rem; padding: 9px 0; border-bottom: 1px solid var(--border);
}
.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(--ink); font-weight: 700; text-align: right; }
.facts-list li.facts-list__wide { flex-direction: column; align-items: flex-start; gap: 4px; }
.facts-list .facts-formats { display: flex; flex-direction: column; gap: 3px; font-size: .86rem; line-height: 1.5; color: var(--text-muted); }
.facts-list .facts-formats .ff-line { white-space: nowrap; }
.sidebar-cta {
  background: var(--accent-soft); border: 1px solid var(--accent-border);
  border-radius: var(--radius); padding: 18px 20px; margin: 0 0 18px;
}
.sidebar-cta h3 { font-size: 1.02rem; font-weight: 600; color: var(--accent-deep); margin: 0 0 7px; }
.sidebar-cta p { font-size: .86rem; color: var(--accent-text); line-height: 1.55; margin: 0 0 14px; }
.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(--border); }
.mini-tours li:last-child { border-bottom: 0; padding-bottom: 0; }
.mini-thumb { width: 58px; height: 58px; border-radius: 7px; object-fit: cover; flex: none; background: var(--surface-alt); display:flex; align-items:center; justify-content:center; color: var(--accent-deep); font-family: var(--font-head); font-weight:700; font-size:1.2rem; }
.mini-info { font-size: .86rem; line-height: 1.4; min-width: 0; }
.mini-info a { color: var(--ink); font-weight: 700; text-decoration: none; display: block; margin-bottom: 2px; }
.mini-info a:hover { color: var(--accent-deep); }
.mini-meta { font-size: .76rem; color: var(--accent-deep); font-weight: 700; }
.sidebar-widget {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px; margin: 0 0 18px; min-height: 320px;
}
.widget-label {
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-muted); font-weight: 700; margin: 0 0 8px;
}

/* ---------- alternates ---------- */
.alternates { background: var(--surface-alt); border-top: 1px solid var(--border); padding: var(--section-py) 0; }
.alternates-inner { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.alternates-head { max-width: 64ch; margin-bottom: 1.6rem; }
.alternates-head .eyebrow { display: block; margin: 0 0 .55rem; }
.alternates-head h2 {
  font-size: clamp(1.5rem, 1.2rem + 1.4vw, 1.95rem); font-weight: 600;
  margin: 0 0 .55em; padding-top: 10px;
  border-top: 3px solid var(--accent); display: table;
}
.alternates-head p { font-size: 1.05rem; color: var(--text-muted); margin: 0; line-height: 1.6; }
.alternates-widget {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px; min-height: 300px;
}
.alternates-disclosure { font-size: .8rem; color: var(--text-muted); margin: 1.75rem 0 0; }
.alternates-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
.alt-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card);
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(300px, 360px);
}
.alt-card-content { padding: 22px 24px; min-width: 0; }
.alt-card-content h3 { font-size: 1.2rem; font-weight: 600; color: var(--ink); margin: 4px 0 9px; line-height: 1.25; }
.alt-card-widget {
  background: var(--surface-alt); padding: 14px; border-left: 1px solid var(--border);
  display: flex; align-items: stretch; min-height: 360px;
}
.alt-card-widget > div { width: 100%; }

/* ---------- final CTA ---------- */
.final-cta {
  background: linear-gradient(135deg, var(--ink) 0%, var(--cta-grad-end) 100%);
  color: var(--on-ink); padding: clamp(1.75rem, 4vw, 2.75rem) 0;
}
.final-cta-inner { max-width: 880px; margin: 0 auto; padding: 0 24px; text-align: center; }
.final-cta .eyebrow { color: var(--cta-eyebrow); }
.final-cta h2 { font-size: clamp(1.7rem, 1.2rem + 2vw, 2.5rem); font-weight: 600; color: #fff; margin: 0 0 .4em; line-height: 1.18; }
.final-cta > .final-cta-inner > p:not([class]) {
  font-size: 1.05rem; line-height: 1.65; color: var(--on-ink);
  margin: 0 auto 1.4rem; max-width: 60ch;
}
.final-cta ul {
  list-style: none; padding: 0; margin: 0 auto 1.6rem;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; max-width: 64ch;
}
.final-cta ul li { font-size: .9rem; color: var(--on-ink); display: inline-flex; align-items: center; gap: 8px; }
.final-cta ul li::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--ink-eyebrow); display: inline-block; flex: none;
}
.final-cta .disclosure { font-size: .8rem; color: var(--on-ink-mute); margin: 2rem 0 0; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: var(--on-ink); }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  max-width: var(--container); margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) 24px 1.75rem;
}
.footer-brand .brand { color: #fff; margin-bottom: 12px; }
.footer-brand .brand b { color: var(--ink-eyebrow); }
.footer-brand p { color: var(--on-ink-mute); font-size: .95rem; }
.footer-col h3 {
  font-family: var(--font-body); color: var(--ink-heading);
  font-size: .82rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .14em; margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-col a {
  color: var(--on-ink); text-decoration: none; font-size: .95rem;
  border-bottom: 1px solid transparent; padding-bottom: 1px;
}
.footer-col a:hover { color: #fff; border-bottom-color: var(--ink-heading); }
.footer-bottom {
  max-width: var(--container); margin: 0 auto; padding: 1.5rem 24px 2rem;
  border-top: 1px solid rgba(255,253,247,.18);
}
.footer-bottom p { margin: 0 0 .4rem; font-size: .84rem; color: var(--on-ink-mute); }
.footer-bottom p:last-child { margin-bottom: 0; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1024px) {
  .layout { grid-template-columns: 1fr; }
  .sidebar { position: static; grid-template-columns: repeat(2, 1fr); }
  .sidebar-cta { grid-column: 1 / -1; }
  .tour-cta-card, .alt-card { grid-template-columns: 1fr; }
  .tour-cta-widget, .alt-card-widget { border-left: 0; border-top: 1px solid var(--border); }
}
@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: var(--surface); border-bottom: 1px solid var(--border);
    box-shadow: 0 14px 30px -16px rgba(42,31,24,.4);
    margin-left: 0; padding: 8px 0 14px;
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .18s ease, opacity .18s ease;
  }
  .primary-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 0 16px; }
  .primary-nav a { padding: 13px 12px; border-radius: 8px; font-size: 1.02rem; }
  .primary-nav li + li { border-top: 1px solid var(--border); }
  .primary-nav .nav-cta { margin: 10px 0 0; text-align: center; }
  .primary-nav li.nav-cta-li { border-top: 0; }
}
@media (max-width: 820px) {
  .pillars-grid, .toc-list, .reviews-grid, .practical-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .fact-grid { grid-template-columns: 1fr; }
  .sidebar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-figure img { height: 240px; }
  .tour-cta-content, .alt-card-content { padding: 20px 20px 22px; }
}
@media (max-width: 420px) {
  .container, .header-inner, .breadcrumb ol, .article-header-inner,
  .footer-grid, .footer-bottom, .layout, .alternates-inner,
  .final-cta-inner { padding-left: 16px; padding-right: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
