/* ==========================================================================
   OVERLUKING core styles
   1. Tokens   2. Base   3. Layout helpers   4. Buttons and links
   5. Header   6. Hero   7. Sections   8. Footer   9. Motion and print
   ========================================================================== */

/* 1. Tokens ---------------------------------------------------------------- */
:root {
  /* Color: named for the landscape */
  --spruce:   #143229;  /* deep forest green: text, dark sections */
  --night:    #0C1D17;  /* darkest green: header, footer */
  --snow:     #F3F6F2;  /* cool off-white page background */
  --lichen:   #E2EAE4;  /* pale green-gray alternate background */
  --line:     #C7D3CB;  /* hairlines on light backgrounds */
  --granite:  #465651;  /* muted text on light backgrounds */
  --glow:     #EFA340;  /* alpenglow amber: the one warm accent */
  --glow-hi:  #F7BC66;
  --glacier:  #6E9FA3;

  /* Type: a wide, sturdy sans for headlines and interface, a text serif for reading */
  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-text:    "Source Serif 4", Georgia, "Times New Roman", serif;

  /* Layout */
  --wrap: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --band: clamp(4rem, 9vw, 7.5rem);
  --radius: 4px;
  --header-h: 4.25rem;
}

/* 2. Base ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-text);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--spruce);
  background: var(--snow);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
img { height: auto; }  /* width/height attributes reserve space; CSS sets the real size */
a { color: inherit; }
h1, h2, h3, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button, input { font: inherit; color: inherit; }

h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-stretch: 104%;
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
h2 { font-size: clamp(2rem, 1.1rem + 3vw, 3.5rem); }
h3 { font-size: 1.25rem; line-height: 1.2; }

p { text-wrap: pretty; }

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

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

.skip-link {
  position: fixed;
  left: 1rem; top: -4rem;
  z-index: 100;
  padding: .7rem 1rem;
  background: var(--glow);
  color: var(--night);
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* 3. Layout helpers -------------------------------------------------------- */
.container {
  width: 100%;
  max-width: calc(var(--wrap) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.band { padding-block: var(--band); }
.band--lichen { background: var(--lichen); }
.band--dark { background: var(--spruce); color: var(--snow); }

.lede {
  font-size: clamp(1.1rem, 1rem + .5vw, 1.3rem);
  line-height: 1.55;
}

.section-head {
  display: grid;
  gap: 1rem 4rem;
  margin-bottom: clamp(2rem, 4.5vw, 3.5rem);
}
.section-head__aside { display: grid; gap: .9rem; justify-items: start; color: var(--granite); }
.section-head__aside p { max-width: 34rem; }

/* 4. Buttons and links ----------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: .65rem 1.4rem;
  border: 2px solid transparent;
  border-radius: 3px;
  font-family: var(--font-display);
  font-size: .98rem;
  font-weight: 650;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: background-color .2s, color .2s, border-color .2s;
}
.btn--small { min-height: 2.4rem; padding: .4rem 1rem; font-size: .9rem; white-space: nowrap; }
.btn--glow  { background: var(--glow); color: var(--night); }
.btn--glow:hover { background: var(--glow-hi); }
.btn--ghost { border-color: rgba(255,255,255,.65); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.14); border-color: #fff; }
.btn--solid { background: var(--spruce); color: var(--snow); }
.btn--solid:hover { background: #1F4A3B; }

.text-link {
  font-family: var(--font-display);
  font-weight: 650;
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--glow);
  text-decoration-thickness: 3px;
  text-underline-offset: .3em;
}
.text-link:hover { text-decoration-color: currentColor; }

/* 5. Header ---------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
}
/* The solid bar is a pseudo-element so the header itself never creates a
   containing block for the full-screen mobile menu. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 29, 23, .9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity .3s;
}
.site-header.is-solid::before,
body.nav-open .site-header::before { opacity: 1; }

.site-header__bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: var(--header-h);
}

.brand {
  position: relative;
  z-index: 2;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  font-stretch: 118%;
  letter-spacing: .01em;
  text-decoration: none;
}

.nav ul { display: flex; gap: clamp(1rem, 1.9vw, 1.75rem); }
.nav a {
  display: inline-block;
  padding: .4rem 0;
  border-bottom: 2px solid transparent;
  color: #fff;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 550;
  text-decoration: none;
  text-shadow: 0 1px 12px rgba(0,0,0,.25);
  transition: border-color .2s;
}
.nav a:hover { border-color: var(--glow); }
.nav a[aria-current="location"] { border-color: var(--glow); }

.nav-toggle {
  position: relative;
  z-index: 2;
  display: none;
  align-items: center;
  gap: .7rem;
  padding: .5rem 0;
  border: 0;
  background: none;
  color: #fff;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
}
.nav-toggle__bars,
.nav-toggle__bars::before {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: currentColor;
  transition: transform .25s;
}
.nav-toggle__bars { position: relative; top: -3px; }
.nav-toggle__bars::before { content: ""; position: absolute; top: 7px; left: 0; }
body.nav-open .nav-toggle__bars { transform: translateY(3.5px) rotate(45deg); }
body.nav-open .nav-toggle__bars::before { top: 0; transform: rotate(-90deg); }

@media (max-width: 1023px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5.5rem var(--gutter) 2rem;
    background: var(--night);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s, visibility .25s;
  }
  body.nav-open .nav { opacity: 1; visibility: visible; }
  .nav ul { flex-direction: column; gap: 0; }
  .nav a {
    padding: .55rem 0;
    border-bottom: 0;
    font-size: clamp(1.7rem, 7vw, 2.4rem);
    font-weight: 700;
    font-stretch: 108%;
    text-shadow: none;
  }
  .nav a:hover, .nav a[aria-current="location"] { color: var(--glow); }
}

/* 6. Hero ------------------------------------------------------------------ */
.hero {
  /* Dawn is the default light */
  --sky-top: #3D5A7A; --sky-mid: #E3A57C; --sky-low: #F6D7A3;
  --sun: #FFE7B0;     --mist: #FFDDB8;
  --r1: #B98B92; --r2: #9C7A88; --r3: #7A6A80; --r4: #5A5A73; --r5: #3F4A63;
  --fg2: #263247; --fg: #15211F;

  position: relative;
  isolation: isolate;
  min-height: clamp(660px, 100svh, 940px);
  overflow: hidden;
  color: #fff;
  background: var(--sky-top);
}
.hero[data-light="day"] {
  --sky-top: #2F6C9B; --sky-mid: #8FC3DC; --sky-low: #E2F0EE;
  --sun: #FFFFFF;     --mist: #FFFFFF;
  --r1: #B4CED6; --r2: #94B6C2; --r3: #6F9AA9; --r4: #4F7F8D; --r5: #356470;
  --fg2: #244A4E; --fg: #10251F;
}
.hero[data-light="dusk"] {
  --sky-top: #1B2A4A; --sky-mid: #6A4C7E; --sky-low: #E58D6B;
  --sun: #FFB37A;     --mist: #F2A07E;
  --r1: #8A5F86; --r2: #6C4E7C; --r3: #52436F; --r4: #3A3862; --r5: #282B4E;
  --fg2: #1B2140; --fg: #0C1120;
}

.hero__art {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}
.hero__art .s-top   { stop-color: var(--sky-top); }
.hero__art .s-mid   { stop-color: var(--sky-mid); }
.hero__art .s-low   { stop-color: var(--sky-low); }
.hero__art .sun-a   { stop-color: var(--sun); }
.hero__art .mist-c  { stop-color: var(--mist); }
.hero__art .sun-disk { fill: var(--sun); }
.hero__art .ridge.r1 { fill: var(--r1); }
.hero__art .ridge.r2 { fill: var(--r2); }
.hero__art .ridge.r3 { fill: var(--r3); }
.hero__art .ridge.r4 { fill: var(--r4); }
.hero__art .ridge.r5 { fill: var(--r5); }
.hero__art .fg2 { fill: var(--fg2); }
.hero__art .fg  { fill: var(--fg); }
.hero__art stop,
.hero__art path,
.hero__art circle { transition: stop-color .9s ease, fill .9s ease; }

/* Keeps white type readable in every light */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6,16,20,.5) 0%, rgba(6,16,20,.24) 40%, rgba(6,16,20,0) 66%),
    linear-gradient(0deg, rgba(6,14,12,.4) 0%, rgba(6,14,12,0) 22%);
}

.hero__inner {
  padding-top: clamp(6.25rem, 15vh, 8.5rem);
  padding-bottom: 6rem;
}

.hero__wordmark {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 10.4vw, 10.5rem);
  font-weight: 800;
  font-stretch: 112%;
  line-height: .9;
  letter-spacing: -.02em;
  white-space: nowrap;
  text-shadow: 0 2px 30px rgba(6,16,20,.25);
}
.hero__tagline {
  margin-top: .3em;
  font-family: var(--font-text);
  font-size: clamp(1.6rem, 3.4vw, 2.7rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.1;
}
.hero__deck {
  max-width: 33rem;
  margin-block: 1.1rem 1.6rem;
  font-size: clamp(1.05rem, 1rem + .3vw, 1.2rem);
  line-height: 1.5;
  text-shadow: 0 1px 14px rgba(6,16,20,.5);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; }

.light-switch {
  position: absolute;
  right: var(--gutter);
  bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: .25rem;
  padding: .3rem;
  border-radius: 3px;
  background: rgba(6,14,12,.5);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-family: var(--font-display);
  font-size: .85rem;
}
.light-switch__label { padding: 0 .6rem 0 .5rem; color: rgba(255,255,255,.75); }
.light-switch button {
  padding: .4rem .8rem;
  border: 0;
  border-radius: 2px;
  background: none;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .2s, color .2s;
}
.light-switch button:hover { background: rgba(255,255,255,.15); }
.light-switch button[aria-pressed="true"] { background: var(--glow); color: var(--night); }

/* 7. Sections -------------------------------------------------------------- */

/* Manifesto */
.manifesto { padding-bottom: 0; }
.manifesto__grid { display: grid; gap: 2rem 5rem; }
.manifesto__statement {
  font-family: var(--font-text);
  font-size: clamp(1.9rem, 1rem + 3.2vw, 3.6rem);
  font-stretch: 100%;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.01em;
}
.manifesto__body { display: grid; gap: 1.1rem; justify-items: start; align-content: start; color: var(--granite); }
.manifesto__body p { max-width: 32rem; }

/* Stories (hiking) */
.hiking__grid { display: grid; gap: 2.75rem; }

.story__media { display: block; overflow: hidden; border-radius: var(--radius); background: var(--lichen); }
.story__media img { width: 100%; height: 100%; object-fit: cover; }
.story__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem 1rem;
  margin-bottom: .5rem;
  color: var(--granite);
  font-family: var(--font-display);
  font-size: .9rem;
}
.story__meta a { font-weight: 650; color: var(--spruce); text-decoration-color: var(--glow); text-decoration-thickness: 2px; text-underline-offset: .25em; }
.story h3 a { text-decoration: none; }
.story h3 a:hover { text-decoration: underline; text-decoration-color: var(--glow); text-decoration-thickness: 3px; text-underline-offset: .2em; }

.story--lead .story__media { aspect-ratio: 3 / 2; }
.story--lead .story__body { margin-top: 1.4rem; display: grid; gap: .7rem; max-width: 40rem; }
.story--lead h3 { font-size: clamp(1.6rem, 1.1rem + 1.8vw, 2.4rem); line-height: 1.08; }
.story--lead p:last-child { color: var(--granite); }

.hiking__list { display: grid; align-content: start; }
.story--row {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1.1rem;
  align-items: center;
  padding-block: 1.25rem;
  border-top: 1px solid var(--line);
}
.story--row:first-child { border-top: 0; padding-top: 0; }
.story--row:last-child { padding-bottom: 0; }
.story--row .story__media { aspect-ratio: 1; }
.story--row .story__meta { margin-bottom: .3rem; }
.story--row h3 { font-size: 1.15rem; }

/* Camping */
.split { display: grid; gap: 2.5rem; align-items: center; }
.split__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
}
.split__body { display: grid; gap: 1.25rem; justify-items: start; }
.split__body .lede { max-width: 34rem; color: var(--granite); }

.kit-list { width: 100%; margin-block: .5rem; border-bottom: 1px solid var(--line); }
.kit-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 1.5rem;
  align-items: center;
  padding-block: 1.15rem;
  border-top: 1px solid var(--line);
}
.kit-list h3 { margin-bottom: .2rem; }
.kit-list p { color: var(--granite); font-size: 1rem; line-height: 1.5; max-width: 28rem; }

/* Gear */
.products {
  display: grid;
  gap: 2.25rem 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 15.5rem), 1fr));
}
.product img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); }
.product { display: flex; flex-direction: column; }
.product__body { display: grid; flex: 1; grid-template-rows: auto 1fr auto; gap: .6rem; justify-items: start; padding-top: 1.1rem; }
.product__body p { color: var(--granite); font-size: 1rem; line-height: 1.5; margin-bottom: .4rem; }

.disclosure {
  margin-top: 2rem;
  padding-left: 1rem;
  border-left: 3px solid var(--glow);
  max-width: 44rem;
  color: var(--granite);
  font-size: .95rem;
  line-height: 1.5;
}

.checklist {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.checklist__head { display: grid; gap: 1.5rem 3rem; margin-bottom: 1.75rem; }
.checklist__head h3 { font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem); margin-bottom: .4rem; }
.checklist__head p { color: var(--granite); max-width: 32rem; }
.checklist__progress { align-self: end; }
.checklist__count { margin-bottom: .5rem; font-family: var(--font-display); font-weight: 650; }
.checklist__bar { height: 6px; border-radius: 3px; background: var(--lichen); overflow: hidden; }
.checklist__bar span { display: block; width: calc(var(--p, 0) * 1%); height: 100%; background: var(--glow); transition: width .3s ease; }

.checklist__list { display: grid; gap: 0 3rem; }
.checklist__list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .9rem;
  border-top: 1px solid var(--line);
}
.checklist__list label { display: flex; align-items: flex-start; gap: .85rem; cursor: pointer; line-height: 1.45; }
.checklist__list label strong { display: block; font-family: var(--font-display); font-weight: 650; }
.checklist__list label span { color: var(--granite); font-size: 1rem; }
.checklist__list label strong { color: var(--spruce); }
.checklist__list input {
  appearance: none;
  -webkit-appearance: none;
  flex: none;
  position: relative;
  width: 1.4rem;
  height: 1.4rem;
  margin: .15rem 0 0;
  border: 2px solid var(--spruce);
  border-radius: 3px;
  background: #fff;
  cursor: pointer;
  transition: background-color .15s;
}
.checklist__list input:checked { background: var(--spruce); }
.checklist__list input:checked::after {
  content: "";
  position: absolute;
  left: 4px; top: 0;
  width: 6px; height: 11px;
  border: solid var(--snow);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
.checklist__list input:checked + span strong { text-decoration: line-through; text-decoration-color: var(--glow); text-decoration-thickness: 2px; }
.checklist__shop {
  flex: none;
  padding-top: .1rem;
  color: var(--spruce);
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: var(--glow);
  text-decoration-thickness: 2px;
  text-underline-offset: .25em;
}

/* Wildlife + photography */
.eyes__grid { display: grid; gap: 4rem 4.5rem; }
.eye { display: grid; gap: 1.25rem; align-content: start; justify-items: start; }
.eye img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--radius); margin-bottom: .5rem; }
.eye .lede { color: rgba(243,246,242,.82); max-width: 34rem; }
.eye .text-link { color: var(--snow); }

.mini-picks { width: 100%; border-bottom: 1px solid rgba(255,255,255,.2); }
.mini-picks li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .8rem;
  border-top: 1px solid rgba(255,255,255,.2);
  font-size: 1rem;
  line-height: 1.4;
}

/* Clothing + winter */
.cw__grid { display: grid; gap: 4rem 4.5rem; align-items: start; }
.cw__layers { display: grid; gap: 1.25rem; justify-items: start; }
.cw__layers .lede, .cw__winter .lede { color: var(--granite); max-width: 34rem; }

.layers { width: 100%; display: grid; gap: .6rem; margin-block: .5rem; }
.layers__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem 1rem 1.4rem;
  border-left: 10px solid var(--c);
  border-radius: 3px;
  background: #fff;
}
.layers__row h3 { margin-bottom: .15rem; }
.layers__row p { color: var(--granite); font-size: 1rem; line-height: 1.45; }

.cw__winter { display: grid; gap: 1.25rem; justify-items: start; }
.cw__winter img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); margin-bottom: .5rem; }

/* Nature tiles */
.tiles { display: grid; gap: .75rem; grid-template-columns: repeat(2, 1fr); }
.tile {
  position: relative;
  display: block;
  min-height: 13rem;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  text-decoration: none;
  background: var(--spruce);
}
.tile--wide { grid-column: 1 / -1; min-height: 16rem; }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6,16,20,.72) 0%, rgba(6,16,20,0) 62%);
}
.tile__text {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  display: grid;
  gap: .15rem;
  padding: 1.1rem 1.25rem;
  font-size: .95rem;
  line-height: 1.35;
}
.tile__text strong {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  font-weight: 700;
  font-stretch: 106%;
  line-height: 1.1;
}
.tile:hover .tile__text strong { text-decoration: underline; text-decoration-color: var(--glow); text-decoration-thickness: 3px; text-underline-offset: .2em; }

/* Trips */
.trips__grid { display: grid; gap: 2.5rem 1.5rem; }
.trip { position: relative; display: grid; gap: .4rem; align-content: start; }
.trip img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); margin-bottom: .7rem; }
.trip h3 { font-size: 1.4rem; }
.trip h3 a { text-decoration: none; }
.trip h3 a::after { content: ""; position: absolute; inset: 0; }
.trip h3 a:hover { text-decoration: underline; text-decoration-color: var(--glow); text-decoration-thickness: 3px; text-underline-offset: .2em; }
.trip__place { color: var(--granite); font-family: var(--font-display); font-size: .92rem; font-weight: 600; }
.trip p:last-child { color: var(--granite); font-size: 1rem; line-height: 1.5; max-width: 30rem; }

.stay {
  display: grid;
  gap: 1.75rem 3rem;
  align-items: center;
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding: clamp(1.75rem, 4vw, 3rem);
  border-radius: var(--radius);
  background: var(--spruce);
  color: var(--snow);
}
.stay h3 { margin-bottom: .5rem; font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem); }
.stay p { max-width: 34rem; color: rgba(243,246,242,.82); }
.stay__actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* Field notes */
.notes__grid { display: grid; gap: 2rem 5rem; }
.notes__intro { display: grid; gap: .9rem; align-content: start; }
.notes__intro p { color: var(--granite); }
.notes__list { border-bottom: 1px solid var(--line); }
.notes__list a {
  display: grid;
  gap: .3rem;
  padding-block: 1.2rem;
  border-top: 1px solid var(--line);
  text-decoration: none;
}
.notes__title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1rem + .6vw, 1.45rem);
  font-weight: 650;
  line-height: 1.2;
}
.notes__list a:hover .notes__title { text-decoration: underline; text-decoration-color: var(--glow); text-decoration-thickness: 3px; text-underline-offset: .2em; }
.notes__meta { display: flex; gap: 1rem; color: var(--granite); font-family: var(--font-display); font-size: .9rem; }
.notes__meta span:first-child { font-weight: 650; color: var(--spruce); }

/* Newsletter */
.newsletter__grid { display: grid; gap: 2rem 5rem; align-items: center; }
.newsletter .lede { margin-top: 1rem; max-width: 32rem; color: rgba(243,246,242,.82); }
.signup { display: grid; gap: .75rem; }
.signup input {
  width: 100%;
  min-height: 3.1rem;
  padding: .6rem 1rem;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 3px;
  background: rgba(255,255,255,.08);
  color: #fff;
}
.signup input::placeholder { color: rgba(255,255,255,.55); }
.signup input:focus-visible { outline-offset: 2px; border-color: var(--glow); }
.signup input[aria-invalid="true"] { border-color: #FF9C86; }
.signup__msg { min-height: 1.5em; font-family: var(--font-display); font-size: .95rem; color: var(--glow-hi); }

/* 8. Footer ---------------------------------------------------------------- */
.site-footer { background: var(--night); color: rgba(243,246,242,.75); padding-block: clamp(3rem, 6vw, 5rem) 2rem; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--glow); }
.site-footer__grid { display: grid; gap: 2.5rem 2rem; grid-template-columns: repeat(2, 1fr); }
.site-footer__brand { grid-column: 1 / -1; }
.site-footer__mark {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.5rem);
  font-weight: 800;
  font-stretch: 116%;
  line-height: 1;
}
.site-footer__tag { margin-top: .5rem; font-style: italic; font-size: 1.15rem; }
.site-footer__title {
  margin-bottom: .8rem;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0;
}
.site-footer li + li { margin-top: .35rem; }
.site-footer__legal {
  display: grid;
  gap: .6rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: .9rem;
  line-height: 1.5;
}

/* Toast (used while links are still placeholders) */
.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  z-index: 90;
  max-width: calc(100% - 2rem);
  padding: .8rem 1.2rem;
  border-radius: 3px;
  background: var(--night);
  color: #fff;
  font-family: var(--font-display);
  font-size: .95rem;
  transform: translateX(-50%);
  box-shadow: 0 6px 30px rgba(0,0,0,.3);
}
.toast[hidden] { display: none; }

/* Breakpoints -------------------------------------------------------------- */
@media (min-width: 640px) {
  .trips__grid { grid-template-columns: repeat(2, 1fr); }
  .trips__grid .trip:first-child { grid-column: 1 / -1; }
  .trips__grid .trip:first-child img { aspect-ratio: 16 / 8; }
  .tiles { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1.4fr repeat(3, 1fr); }
  .site-footer__brand { grid-column: auto; }
  .signup { grid-template-columns: 1fr auto; }
  .signup__msg { grid-column: 1 / -1; }
  .checklist__list { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .section-head { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); align-items: end; }
  .manifesto__grid { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); align-items: start; }
  .manifesto__body { padding-top: .6rem; }
  .hiking__grid { grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); gap: 4rem; }
  .split { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 5rem; }
  .eyes__grid, .cw__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .checklist__head { grid-template-columns: minmax(0, 1fr) minmax(0, 16rem); }
  .tiles { grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 15rem); }
  .tile--wide { grid-column: span 2; grid-row: span 2; min-height: 0; }
  .tile { min-height: 0; }
  .stay { grid-template-columns: 1fr auto; }
  .notes__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr); }
  .newsletter__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}

@media (min-width: 1000px) {
  .trips__grid { grid-template-columns: repeat(6, 1fr); gap: 3rem 1.75rem; }
  .trips__grid .trip { grid-column: span 2; }
  .trips__grid .trip:nth-child(-n+2) { grid-column: span 3; }
  .trips__grid .trip:nth-child(-n+2) img { aspect-ratio: 3 / 2; }
}

@media (max-width: 480px) {
  .hero__cta .btn { flex: 1 1 100%; }
  .light-switch__label { display: none; }
  .story--row { grid-template-columns: 6rem 1fr; }
  .kit-list li, .layers__row { grid-template-columns: 1fr; }
  .kit-list li { justify-items: start; }
  .layers__row { flex-direction: column; align-items: flex-start; }
  .mini-picks li { flex-direction: column; align-items: flex-start; }
}

/* 9. Motion and print ------------------------------------------------------ */
/* One orchestrated moment: the ridges rise into place from far to near. */
@media (prefers-reduced-motion: no-preference) {
  .hero__art .rise {
    animation: rise 1.6s cubic-bezier(.2, .7, .2, 1) both;
    animation-delay: calc(var(--i) * .13s);
  }
  .hero__inner { animation: settle 1.1s .55s ease-out both; }
  @keyframes rise   { from { opacity: 0; transform: translateY(60px); } to { opacity: 1; transform: none; } }
  @keyframes settle { from { opacity: 0; } to { opacity: 1; } }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; }
}

@media print {
  .site-header, .light-switch, .toast { display: none; }
  .hero { min-height: 0; }
}
