/* ==========================================================================
   IncaTrail.biz - Main Stylesheet
   Optimized for speed, SEO, accessibility and mobile-first experience
   ========================================================================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

:root {
  --color-primary: #1b5e3a;       /* Andean deep green */
  --color-primary-dark: #133f28;
  --color-accent: #d97706;        /* Inca gold/terracotta */
  --color-accent-light: #f59e0b;
  --color-ink: #1a1d1a;
  --color-body: #2e332e;
  --color-muted: #6b7064;
  --color-line: #e3e5df;
  --color-bg: #ffffff;
  --color-bg-alt: #f7f6f2;
  --color-bg-dark: #0f2a1c;
  --color-stone: #d6cfc1;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 14px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.15);

  --container: 1200px;
  --container-narrow: 780px;
}

html, body { height: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-body);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--color-primary); text-decoration: none; transition: color .2s; }
a:hover, a:focus { color: var(--color-accent); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--color-ink);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.75rem); margin-bottom: .5rem; }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.75rem); margin: 1.5rem 0 .75rem; }
h4 { font-size: 1.15rem; font-family: var(--font-sans); font-weight: 700; margin-bottom: .5rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.25rem; margin-bottom: 1rem; }
li { margin-bottom: .35rem; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--color-ink); color: #fff; padding: 8px 16px;
  z-index: 999; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { top: 0; }

/* --- Layout --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.container.narrow { max-width: var(--container-narrow); }

.section {
  padding: 5rem 0;
}
.section-alt { background: var(--color-bg-alt); }
.section-dark { background: var(--color-bg-dark); color: #eae7de; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3rem;
}
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: .75rem;
}
.section-sub { color: var(--color-muted); font-size: 1.05rem; margin-top: .75rem; }
.section-dark .section-sub { color: #c4bfb1; }

.h3-divider {
  margin: 3rem 0 1.5rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--color-line);
}
.h3-light { border-color: rgba(255,255,255,.15); }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: transform .15s, background .2s, box-shadow .2s;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(217,119,6,0.35);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-accent-light);
  color: #fff;
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover, .btn-ghost:focus {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: #fff;
}
.btn-large { padding: 1.1rem 2rem; font-size: 1.1rem; }

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--color-line);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.25rem;
  gap: 1rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-ink);
  font-weight: 800;
}
.logo:hover { color: var(--color-primary); }
.logo-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 34px; height: 34px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  font-size: 1rem;
}
.logo-text strong { color: var(--color-accent); font-weight: 800; }
.logo-tld { color: var(--color-muted); font-weight: 500; font-size: .85em; }

.main-nav { display: flex; align-items: center; }
.nav-list {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}
.nav-list li { margin: 0; }
.nav-list a {
  color: var(--color-body);
  font-weight: 500;
  font-size: .95rem;
  padding: .5rem 0;
  position: relative;
}
.nav-list a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  height: 2px; width: 0;
  background: var(--color-accent);
  transition: width .25s;
}
.nav-list a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--color-ink);
  transition: transform .2s;
}

@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .nav-list {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--color-line);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all .2s;
  }
  .nav-list.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-list li { border-bottom: 1px solid var(--color-line); }
  .nav-list li:last-child { border-bottom: none; }
  .nav-list a { display: block; padding: .9rem 0; }
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 6rem 0 4rem;
  /* IMAGE TO REPLACE: hero-machu-picchu-inca-trail.webp — behind everything */
  background:
    linear-gradient(180deg, rgba(15,42,28,0.55) 0%, rgba(15,42,28,0.75) 100%),
    #0f2a1c url('/images/hero-machu-picchu-inca-trail.webp') center center / cover no-repeat;
}
.hero-overlay { display: none; }
.hero-content { position: relative; z-index: 2; max-width: 820px; }
.hero-tag {
  display: inline-block;
  background: rgba(217,119,6,0.95);
  color: #fff;
  font-size: .8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: .45rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: #fff;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.hero-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: #e9e5d9;
  max-width: 720px;
  margin-bottom: 2rem;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.75rem;
}
.hero-facts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  max-width: 720px;
}
.hero-facts li {
  background: rgba(15,42,28,0.55);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: .85rem 1rem;
  backdrop-filter: blur(4px);
}
.hero-facts strong {
  display: block;
  font-size: 1.5rem;
  font-family: var(--font-display);
  color: var(--color-accent-light);
  line-height: 1.1;
}
.hero-facts span {
  font-size: .8rem;
  color: #d9d5c8;
  margin-top: .25rem;
  display: block;
}

/* --- Two column --- */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}
.two-col.reversed > :first-child { order: 2; }
@media (max-width: 880px) {
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col.reversed > :first-child { order: 0; }
}

.prose { font-size: 1.03rem; }
.prose p { margin-bottom: 1.1rem; }
.prose-small { font-size: .95rem; color: var(--color-muted); }
.prose-dark { color: #d4d1c5; }
.prose-dark strong { color: #fff; }

.info-card, .mini-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.section-alt .info-card { background: #fff; }
.info-card h3, .mini-card h4 { margin-top: 1rem; }
.info-card-image-placeholder,
.day-image-placeholder,
.prep-image-placeholder,
.resp-image-placeholder,
.wide-image-placeholder {
  width: 100%;
  background: linear-gradient(135deg, #e5e0d5 0%, #cfc7b5 100%);
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}
.wide-image-placeholder { aspect-ratio: 16 / 9; margin: 0 auto 2.5rem; max-width: 1200px; }
.day-image-placeholder { aspect-ratio: 3 / 2; max-width: 480px; margin-bottom: 1.5rem; }
.prep-image-placeholder,
.resp-image-placeholder { aspect-ratio: 3 / 2; }

.info-card-image-placeholder::after,
.day-image-placeholder::after,
.prep-image-placeholder::after,
.resp-image-placeholder::after,
.wide-image-placeholder::after {
  content: attr(aria-label);
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 1rem;
  color: #8a8170;
  font-size: .85rem;
  font-weight: 500;
}

.checklist {
  list-style: none;
  padding: 0;
}
.checklist li {
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: .6rem;
  font-size: .97rem;
}
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.mini-specs {
  list-style: none;
  padding: 0;
}
.mini-specs li {
  padding: .55rem 0;
  border-bottom: 1px dashed var(--color-line);
  font-size: .95rem;
}
.mini-specs li:last-child { border-bottom: none; }

/* --- Callouts --- */
.callout {
  margin-top: 2.5rem;
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius);
  border-left: 5px solid;
}
.callout h4 { margin-bottom: .5rem; }
.callout p { margin-bottom: 0; font-size: .97rem; }
.callout-warning {
  background: #fff7ed;
  border-color: var(--color-accent);
  color: #704a1a;
}
.callout-warning h4 { color: #7a3b00; }
.callout-info {
  background: #eef5f0;
  border-color: var(--color-primary);
  color: #1f4a33;
}
.callout-dark {
  background: rgba(255,255,255,0.05);
  border-color: var(--color-accent-light);
  color: #d4d1c5;
}
.callout-dark h4 { color: #fff; }

/* --- Timeline / Itinerary --- */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}
.timeline-day {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.timeline-day:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.day-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.day-header h4 { color: #fff; margin: 0; font-size: 1.1rem; }
.day-number {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  padding: .3rem .85rem;
  border-radius: 100px;
  font-size: .8rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.day-body { padding: 1.75rem; }
.day-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
}
.day-stats > div dt {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--color-muted);
  margin-bottom: .25rem;
}
.day-stats > div dd {
  font-weight: 700;
  color: var(--color-ink);
  font-size: 1rem;
}

/* --- Stat cards --- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0 3rem;
}
.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--color-accent-light);
  line-height: 1;
  margin-bottom: .5rem;
}
.stat-label { color: #c4bfb1; font-size: .95rem; }

/* --- Rules list --- */
.rules-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 1rem;
}
.rule-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.25rem;
  align-items: start;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}
.rule-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
}
.rule-item h4 { color: #fff; }
.rule-item p { color: #c4bfb1; font-size: .95rem; margin-bottom: 0; }

/* --- Weather table --- */
.weather-table-wrapper {
  overflow-x: auto;
  margin: 2rem 0 3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
}
.weather-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
  min-width: 720px;
}
.weather-table th, .weather-table td {
  padding: .85rem .5rem;
  text-align: center;
  border-bottom: 1px solid var(--color-line);
}
.weather-table thead th {
  background: var(--color-primary);
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.weather-table thead th:first-child { text-align: left; padding-left: 1rem; }
.weather-table tbody th {
  text-align: left;
  padding-left: 1rem;
  background: var(--color-bg-alt);
  font-weight: 600;
  color: var(--color-ink);
}
.weather-table td.closed {
  background: #fee2e2;
  color: #991b1b;
  font-weight: 700;
  font-size: .8rem;
}

/* --- Preparations grid --- */
.prep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}
.prep-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-sm);
}
.prep-card h3 { margin-top: 0; color: var(--color-primary); }
.pack-list {
  margin-top: .5rem;
  padding-left: 1.25rem;
  font-size: .95rem;
  columns: 1;
}
.pack-list li { margin-bottom: .4rem; }

/* --- Responsible grid --- */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.resp-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.section-alt .resp-card { background: #fff; }
.resp-card h3 {
  font-size: 1.15rem;
  font-family: var(--font-sans);
  font-weight: 700;
  margin: 1rem 0 .5rem;
  color: var(--color-ink);
}
.resp-card p { font-size: .95rem; }

/* --- Pricing / Operators --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0 2.5rem;
}
.pricing-card {
  background: #fff;
  border: 2px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--color-primary);
}
.pricing-card.featured {
  border-color: var(--color-accent);
  box-shadow: 0 10px 30px rgba(217,119,6,0.18);
}
.pricing-card header { margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--color-line); }
.pricing-card h4 { font-size: 1.25rem; margin-bottom: .5rem; }
.pricing-card .price {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.1;
}
.pricing-card .price span {
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 500;
  color: var(--color-muted);
  display: block;
}
.pricing-card .price span:last-child { display: inline; }
.pricing-card ul { list-style: none; padding: 0; }
.pricing-card li {
  padding: .5rem 0 .5rem 1.5rem;
  border-bottom: 1px dashed var(--color-line);
  font-size: .94rem;
  position: relative;
}
.pricing-card li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--color-primary);
  font-weight: 700;
}
.pricing-card li:last-child { border-bottom: none; }
.badge {
  position: absolute;
  top: -12px; right: 20px;
  background: var(--color-accent);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 100px;
}

.qa-list { display: grid; gap: .9rem; margin: 1.5rem 0 2.5rem; }
.qa-item {
  background: #fff;
  border-left: 4px solid var(--color-primary);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .97rem;
  box-shadow: var(--shadow-sm);
}
.qa-item strong { color: var(--color-ink); }

.red-flags {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  display: grid;
  gap: .75rem;
}
.red-flags li {
  padding: .9rem 1.1rem .9rem 2.5rem;
  background: #fef2f2;
  border-left: 4px solid #dc2626;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  position: relative;
  font-size: .97rem;
}
.red-flags li::before {
  content: '⚠';
  position: absolute; left: 1rem; top: .85rem;
  color: #dc2626;
  font-size: 1.05rem;
}

/* --- FAQ --- */
.faq-list { display: grid; gap: .75rem; max-width: 900px; margin: 0 auto; }
.faq-list details {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  transition: box-shadow .2s;
}
.faq-list details[open] {
  box-shadow: var(--shadow);
  border-color: var(--color-primary);
}
.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--color-ink);
  list-style: none;
  position: relative;
  padding-right: 2rem;
  font-size: 1.02rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  position: absolute; right: 0; top: -2px;
  font-size: 1.5rem;
  color: var(--color-accent);
  transition: transform .2s;
}
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p {
  margin-top: .85rem;
  color: var(--color-body);
  font-size: .97rem;
}

/* --- Final CTA --- */
.final-cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  padding: 5rem 0;
  text-align: center;
}
.final-cta h2 { color: #fff; }
.final-cta p {
  max-width: 680px;
  margin: 1rem auto 2rem;
  color: #d4d1c5;
  font-size: 1.08rem;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Footer --- */
.site-footer {
  background: #0a1a12;
  color: #b7b2a3;
  padding: 3.5rem 0 1.5rem;
  font-size: .93rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 780px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-col h4 { color: #fff; margin-bottom: 1rem; font-size: 1rem; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a { color: #b7b2a3; }
.footer-col a:hover { color: var(--color-accent-light); }
.logo-footer .logo-text { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: .85rem;
  color: #8a8478;
}

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

/* --- Print --- */
@media print {
  .site-header, .nav-toggle, .hero-cta, .final-cta, .cta-buttons, .site-footer { display: none !important; }
  .hero { min-height: auto; background: none; color: #000; padding: 1rem 0; }
  .hero h1, .hero-lead { color: #000; }
  .section { padding: 1.5rem 0; page-break-inside: avoid; }
  body { font-size: 11pt; }
}
