/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #f4efe6;
  --bg-2:      #e8dfd0;
  --paper:     #ffffff;
  --ink:       #1a1a1a;
  --ink-soft:  #2a2a2a;
  --ink-mute:  #6b6b6b;
  --accent:    #b85c3a;
  --accent-2:  #4a5d3a;
  --line:      rgba(26,26,26,0.12);
  --cream:     #f4efe6;

  --serif: "Fraunces", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 2; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.01em; font-family: var(--serif); font-weight: 500; }
em { font-style: italic; color: var(--accent); }
::selection { background: var(--accent); color: var(--cream); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--ink); color: var(--cream);
  z-index: 9999; border-radius: 8px; font-weight: 500;
}
.skip-link:focus { top: 1rem; }

.container {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.kicker {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-top: .5rem;
  margin-bottom: 2.5rem;
  max-width: 24ch;
}

/* =============================================================
   4. Components
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 1.7rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: .95rem;
  transition: transform .35s var(--ease-out), background .35s var(--ease-out), color .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.btn-primary {
  background: var(--accent);
  color: var(--cream);
  box-shadow: 0 8px 24px rgba(184,92,58,0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(184,92,58,0.38); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--paper); border-color: var(--ink); }

/* =============================================================
   5. Nav
   ============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  transition: background .4s var(--ease-out), box-shadow .4s var(--ease-out), padding .4s var(--ease-out);
}
.nav-brand, .nav-links a:not(.nav-cta) {
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.45);
  transition: color .35s, text-shadow .35s;
}
.nav-cta {
  transition: background .3s var(--ease-out), color .35s;
}
.nav.is-scrolled .nav-brand, .nav.is-scrolled .nav-links a:not(.nav-cta) {
  color: var(--ink);
  text-shadow: none;
}
.nav.is-scrolled {
  background: rgba(244,239,230,0.88);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 1px 0 var(--line);
  padding-block: .8rem;
}
.nav-brand {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -.01em;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: .92rem;
  font-weight: 500;
}
.nav-links a { position: relative; }
.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .35s var(--ease-out);
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--ink);
  color: var(--cream);
  padding: .55rem 1.2rem;
  border-radius: 999px;
  transition: background .3s var(--ease-out);
}
.nav-cta:hover { background: var(--accent); }

@media (min-width: 720px) {
  .nav-links { display: flex; }
}

/* =============================================================
   6. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
}
@media (min-width: 1100px) {
  .hero-bg { object-position: center 58%; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 55%, rgba(10,6,2,0.52) 0%, transparent 100%),
    linear-gradient(180deg,
      rgba(10,6,2,0.18) 0%,
      rgba(10,6,2,0.10) 20%,
      rgba(10,6,2,0.42) 55%,
      rgba(10,6,2,0.72) 100%
    );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  padding-inline: 1.5rem;
  color: var(--cream);
}
.hero-content .kicker {
  color: #f5c89a;
  letter-spacing: .14em;
  text-shadow: 0 1px 12px rgba(0,0,0,0.6);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .6rem;
  padding: .35rem .9rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 100px;
  color: #fff;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: background .25s;
}
.hero-badge:hover { background: rgba(255,255,255,0.22); }
.kicker-link { color: inherit; text-decoration: underline; text-underline-offset: 3px; opacity: .85; transition: opacity .2s; }
.kicker-link:hover { opacity: 1; }
.hero-badge-star { color: #f5c89a; font-size: .85rem; }

.hero-title {
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  line-height: 0.98;
  margin-top: 1rem;
  max-width: 18ch;
  margin-inline: auto;
  color: #fff;
  text-shadow: 0 2px 32px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.4);
}
.hero-title em {
  color: #f5c89a;
  text-shadow: 0 2px 32px rgba(0,0,0,0.55);
}
.hero-sub {
  margin-top: 1.4rem;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255,248,235,0.92);
  max-width: 42ch;
  margin-inline: auto;
  text-shadow: 0 1px 16px rgba(0,0,0,0.6);
}
.hero-actions {
  margin-top: 2.2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-actions .btn-ghost { color: var(--cream); border-color: rgba(244,239,230,0.4); }
.hero-actions .btn-ghost:hover { background: rgba(244,239,230,0.12); border-color: var(--cream); }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cream);
  font-size: 1.4rem;
  opacity: .8;
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* =============================================================
   7. Manifesto / pillars
   ============================================================= */
.manifesto { padding-block: 6rem 3rem; }
.manifesto-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
.manifesto-num {
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--accent);
  line-height: 1;
}
.manifesto-text p {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  max-width: 62ch;
  margin-bottom: 1.2rem;
  color: var(--ink-soft);
}

.pillars {
  display: grid;
  gap: 1.5rem;
  margin-top: 3.5rem;
  grid-template-columns: 1fr;
}
.pillar {
  background: var(--paper);
  border-radius: 18px;
  padding: 2rem;
  border: 1px solid var(--line);
}
.pillar-num {
  font-family: var(--serif);
  color: var(--accent);
  font-size: 1.1rem;
}
.pillar h3 { margin-top: .8rem; font-size: 1.3rem; }
.pillar p { margin-top: .6rem; color: var(--ink-mute); font-size: .96rem; }

@media (min-width: 720px) {
  .manifesto-grid { grid-template-columns: 120px 1fr; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .pillars { grid-template-columns: repeat(4, 1fr); }
}

/* =============================================================
   8. Gallery (bento)
   ============================================================= */
.gallery-section { padding-block: 5rem; }
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.bento-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/5;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.bento-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease-out), filter .6s var(--ease-out);
  filter: saturate(1.1);
}
.bento-card figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.2rem;
  font-size: .85rem;
  color: var(--cream);
  background: linear-gradient(180deg, transparent, rgba(20,15,10,0.75));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
}
.bento-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(26,20,14,0.18); }
.bento-card:hover img { transform: scale(1.08); filter: saturate(1.2) brightness(1.05); }
.bento-card:hover figcaption { opacity: 1; transform: none; }

@media (min-width: 720px) {
  .bento-grid { grid-template-columns: repeat(3, 1fr); }
  .bento-large { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
  .bento-wide { grid-column: span 2; aspect-ratio: 16/9; }
}

/* =============================================================
   9. Routes
   ============================================================= */
.routes-section { padding-block: 5rem; }
.routes-intro { color: var(--ink-soft, #555); max-width: 56ch; margin-bottom: 2.5rem; }
.routes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .routes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .routes-grid { grid-template-columns: repeat(4, 1fr); } }

.route-card {
  background: var(--bg);
  border: 1px solid rgba(26,20,14,.08);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.route-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(26,20,14,.12); }

.route-difficulty {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 100px;
  width: fit-content;
}
.route-easy   { background: #e8f5e9; color: #2e7d32; }
.route-medium { background: #fff3e0; color: #e65100; }
.route-hard   { background: #fce4ec; color: #c62828; }

.route-name { font-family: var(--serif); font-size: 1.15rem; font-weight: 500; line-height: 1.2; }
.route-desc { font-size: .88rem; color: var(--ink-soft, #555); line-height: 1.55; flex: 1; }

.route-stats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  border-top: 1px solid rgba(26,20,14,.07);
  padding-top: .75rem;
  margin: 0;
}
.route-stats li {
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
}
.route-stats span { color: var(--ink-soft, #555); }
.route-stats strong { color: var(--ink); }

.route-link {
  font-size: .82rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  margin-top: .25rem;
  transition: opacity .2s;
}
.route-link:hover { opacity: .75; }

/* =============================================================
   10. Activities (horizontal scroll)
   ============================================================= */
.activities { padding-block: 5rem; background: var(--bg-2); }
.activities-track {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  overflow-y: visible;
  padding: 0 1.5rem 1rem;
  scroll-snap-type: x mandatory;
}
.activity-card {
  flex: 0 0 auto;
  width: min(320px, 78vw);
  scroll-snap-align: start;
  background: var(--paper);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.activity-card img { aspect-ratio: 4/3; object-fit: cover; }
.activity-card h3 { padding: 1.2rem 1.2rem 0; font-size: 1.2rem; }
.activity-card p { padding: .5rem 1.2rem 1.4rem; color: var(--ink-mute); font-size: .92rem; }
.activity-link { color: var(--accent); font-weight: 600; text-decoration: none; }
.activity-link:hover { opacity: .75; }

/* =============================================================
   9a. Discover the area
   ============================================================= */
.discover-section { padding-block: 5rem; background: var(--bg-2); }
.discover-subtitle {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}
.discover-subtitle:first-of-type { margin-top: 2rem; }

.discover-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .discover-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .discover-grid { grid-template-columns: repeat(3, 1fr); } }

.discover-card {
  background: var(--bg);
  border: 1px solid rgba(26,20,14,.08);
  border-radius: 16px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.discover-distance {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
}
.discover-card h4 { font-family: var(--serif); font-size: 1.05rem; font-weight: 500; }
.discover-card p { font-size: .86rem; color: var(--ink-soft, #555); line-height: 1.55; }

/* =============================================================
   9b. Availability calendar
   ============================================================= */
.availability-section { padding-block: 5rem; }
.availability-intro { color: var(--ink-soft, #555); max-width: 56ch; margin-bottom: 1.25rem; }
.availability-legend {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  font-size: .85rem;
  color: var(--ink-soft, #555);
}
.cal-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  margin-right: .45rem;
  vertical-align: middle;
}
.cal-dot-free { background: #2e7d32; }
.cal-dot-booked { background: var(--accent); }

.calendar-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.cal-month {
  flex: 0 0 250px;
  scroll-snap-align: start;
  background: var(--bg-2);
  border-radius: 16px;
  padding: 1.25rem;
  border: 1px solid rgba(26,20,14,.08);
}
.cal-month-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: .85rem;
  text-transform: capitalize;
}
.cal-weekdays, .cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: .3rem;
  text-align: center;
}
.cal-weekdays { margin-bottom: .35rem; }
.cal-weekdays span { font-size: .68rem; color: var(--ink-soft, #888); font-weight: 600; }
.cal-cell { font-size: .76rem; padding: .4rem 0; border-radius: 6px; }
.cal-free { background: #e8f5e9; color: #2e7d32; }
.cal-booked { background: var(--accent); color: #fff; font-weight: 600; }
.cal-past { color: rgba(26,20,14,.25); }
.cal-empty {}

.availability-links {
  display: flex;
  gap: .9rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

/* =============================================================
   10. Testimonials / Reviews
   ============================================================= */
.testimonials { padding-block: 5rem; background: var(--bg-2); }

.reviews-score {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.reviews-score-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1;
  color: var(--accent);
}
.reviews-score-label {
  font-size: .85rem;
  color: var(--ink-soft, #555);
  line-height: 1.4;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 720px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  background: var(--bg);
  border: 1px solid rgba(26,20,14,.07);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  margin: 0;
}
.review-card p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  flex: 1;
}
.review-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  flex-wrap: wrap;
}
.review-card cite {
  font-style: normal;
  font-size: .82rem;
  color: var(--ink-soft, #555);
}
.review-badge {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: #003580;
  background: #e8f0fb;
  padding: .25rem .6rem;
  border-radius: 100px;
}

/* =============================================================
   11. FAQ
   ============================================================= */
.faq { padding-block: 5rem; background: var(--bg-2); }
.faq-list { max-width: 760px; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding-block: 1.2rem;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 500;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform .3s var(--ease-out);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: .8rem; color: var(--ink-mute); max-width: 60ch; }

/* =============================================================
   12. Contact / reservation
   ============================================================= */
.contact-cta {
  position: relative;
  padding-block: 6rem;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}
.contact-mesh {
  position: absolute;
  inset: -20% -10% -30% -10%;
  background:
    radial-gradient(40% 35% at 20% 20%, rgba(184,92,58,0.35), transparent 70%),
    radial-gradient(35% 30% at 85% 75%, rgba(74,93,58,0.3), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}
.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}
.contact-cta .kicker { color: #f0d9b8; }
.contact-cta .section-title { color: var(--cream); }
.contact-lede { color: rgba(244,239,230,0.78); max-width: 42ch; margin-top: -1rem; margin-bottom: 2rem; }

.contact-channels { list-style: none; display: flex; flex-direction: column; gap: .9rem; margin-bottom: 2rem; }
.contact-channel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.2rem;
  background: rgba(244,239,230,0.07);
  border: 1px solid rgba(244,239,230,0.15);
  border-radius: 14px;
  transition: background .3s var(--ease-out), border-color .3s var(--ease-out), transform .3s var(--ease-out);
}
.contact-channel:hover { background: rgba(244,239,230,0.14); border-color: rgba(244,239,230,0.35); transform: translateX(4px); }
.contact-channel-label { font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: rgba(244,239,230,0.55); }
.contact-channel-value { font-weight: 500; }
.contact-address { color: rgba(244,239,230,0.6); font-size: .9rem; }

.reserve-form {
  background: var(--paper);
  color: var(--ink);
  border-radius: 22px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-row { display: flex; flex-direction: column; gap: .4rem; }
.form-row label { font-size: .85rem; font-weight: 500; color: var(--ink-mute); }
.form-row-split { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.reserve-form input, .reserve-form select, .reserve-form textarea {
  font-family: var(--sans);
  font-size: .96rem;
  padding: .8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  color: var(--ink);
  transition: border-color .3s var(--ease-out);
}
.reserve-form input:focus, .reserve-form select:focus, .reserve-form textarea:focus {
  border-color: var(--accent);
}
.form-submit { justify-content: center; margin-top: .4rem; }
.reserve-form.is-sending .form-submit { opacity: .7; pointer-events: none; }
.form-success {
  display: none;
  font-size: .9rem;
  color: var(--accent-2);
  background: rgba(74,93,58,0.1);
  padding: .9rem 1rem;
  border-radius: 10px;
}
.reserve-form.is-sent .form-success { display: block; }
.reserve-form.is-sent .form-fields-wrap { display: none; }

.form-error {
  display: none;
  font-size: .9rem;
  color: #963b2a;
  background: rgba(184,92,58,0.1);
  padding: .9rem 1rem;
  border-radius: 10px;
}
.reserve-form.is-error .form-error { display: block; }

@media (min-width: 960px) {
  .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}

/* =============================================================
   13. Footer
   ============================================================= */
.footer { padding-block: 2rem; background: var(--bg-2); }
.footer-grid {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  font-size: .85rem;
  color: var(--ink-mute);
}
@media (min-width: 720px) {
  .footer-grid { flex-direction: row; justify-content: space-between; }
}

/* =============================================================
   14. Reduced motion (intrusive only)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-scroll { animation: none; }
}
