:root {
  --bone: #F4EFE6;
  --bone-deep: #ECE5D6;
  --ink: #1A1C1A;
  --ink-soft: #3A3D38;
  --moss: #2E3A2A;
  --moss-deep: #1F2A1B;
  --bark: #6B4B2E;
  --bark-deep: #3D2A18;
  --mist: #C9CFC2;
  --hairline: #D9D2C2;

  --serif: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --gutter-d: 64px;
  --gutter-m: 20px;
  --max: 1440px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bone);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .25s, opacity .25s; }
::selection { background: var(--ink); color: var(--bone); }

/* ── Type primitives ───────────────────── */
.kicker {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.kicker--light { color: var(--mist); }

h1, h2 {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: -0.012em;
  line-height: 1.0;
}
h1 em, h2 em {
  font-style: italic;
  font-weight: 400;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* ── Buttons ───────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 13px; font-weight: 400; letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  transition: background .25s, color .25s, transform .25s;
}
.btn span { transition: transform .25s; }
.btn:hover span { transform: translateX(4px); }
.btn--primary { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.btn--primary:hover { background: var(--bark-deep); color: var(--bone); border-color: var(--bark-deep); }

/* ── NAV ───────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px var(--gutter-d);
  z-index: 100;
  mix-blend-mode: difference;
  color: var(--bone);
}
nav .logo {
  font-family: var(--serif);
  font-size: 22px; font-weight: 400;
  letter-spacing: 0.05em;
}
nav .cta {
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
}
nav .cta span { display: inline-block; transition: transform .25s; }
nav .cta:hover span { transform: translateX(4px); }

/* ════════════════════════════════════════════════════════════
   1. HERO — full-bleed atmospheric stage
   ════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  width: 100%;
  overflow: hidden;
  color: var(--bone);
  display: flex;
  align-items: flex-end;
}
.hero-stage {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
}
.atmosphere {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 40% at 50% 18%, rgba(244, 215, 175, 0.55), transparent 70%),
    radial-gradient(ellipse 100% 60% at 50% 100%, rgba(15, 18, 14, 0.85), transparent 90%),
    linear-gradient(180deg,
      #2C3744 0%,
      #4A5563 22%,
      #7C8B85 44%,
      #B4B8A7 64%,
      #8E8F76 80%,
      #4A4F36 100%);
}
.atmosphere::after {
  /* fog drift */
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 25% at 30% 60%, rgba(220, 228, 220, 0.35), transparent 70%),
    radial-gradient(ellipse 70% 30% at 75% 70%, rgba(220, 228, 220, 0.28), transparent 70%),
    radial-gradient(ellipse 100% 20% at 50% 78%, rgba(180, 188, 180, 0.4), transparent 60%);
  filter: blur(2px);
}
.far-trees, .near-trees {
  position: absolute; left: 0; right: 0; bottom: 0;
  width: 100%;
  pointer-events: none;
}
.far-trees { height: 50%; bottom: 18%; opacity: 0.7; filter: blur(1.2px); }
.near-trees { height: 60%; bottom: 0; }
.hero-bag {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  height: 56%;
  width: auto;
  z-index: 4;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.55));
  animation: heroBagIn 1.4s cubic-bezier(.2,.8,.2,1) .3s both;
}
@keyframes heroBagIn {
  from { opacity: 0; transform: translate(-50%, 24px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
.grain-layer {
  position: absolute; inset: 0;
  z-index: 5;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='5'/><feColorMatrix values='0 0 0 0 0   0 0 0 0 0   0 0 0 0 0   0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  pointer-events: none;
}

.hero-text {
  position: relative;
  z-index: 6;
  padding: 0 var(--gutter-d) 14vh;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.hero-text .kicker { color: rgba(244, 239, 230, 0.7); }
.hero-text h1 {
  font-size: clamp(56px, 9vw, 130px);
  line-height: 0.95;
  margin-bottom: 28px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
  max-width: 16ch;
}
.hero-text .lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 300;
  max-width: 42ch;
  margin-bottom: 36px;
  color: rgba(244, 239, 230, 0.92);
}
.hero-actions {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.hero-stock {
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(244, 239, 230, 0.7);
}
.scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  width: 1px; height: 56px;
}
.scroll-hint span {
  display: block;
  width: 1px; height: 100%;
  background: rgba(244,239,230,0.6);
  position: relative;
  overflow: hidden;
}
.scroll-hint span::after {
  content: '';
  position: absolute; top: -100%; left: 0;
  width: 100%; height: 50%;
  background: var(--bone);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { top: -50%; opacity: 0; }
  20%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* ════════════════════════════════════════════════════════════
   2. MANIFESTO — dark single-line statement
   ════════════════════════════════════════════════════════════ */
.manifesto {
  position: relative;
  padding: 22vh var(--gutter-d);
  color: var(--bone);
  text-align: center;
  overflow: hidden;
}
.manifesto-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(60, 70, 55, 0.5), transparent 70%),
    linear-gradient(180deg, #14180F 0%, #1F2818 45%, #14180F 100%);
  z-index: 0;
}
.manifesto-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.18;
  mix-blend-mode: overlay;
}
.manifesto > * { position: relative; z-index: 1; }
.manifesto h2 {
  font-size: clamp(36px, 5.5vw, 76px);
  line-height: 1.05;
  max-width: 22ch;
  margin: 0 auto;
}

/* ════════════════════════════════════════════════════════════
   Generic POSTER — composed image-like tile
   ════════════════════════════════════════════════════════════ */
.poster {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  display: flex; align-items: flex-end;
  background: var(--bone-deep);
  isolation: isolate;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.poster:hover { transform: translateY(-4px); }
.poster-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.poster-bg::after {
  /* universal grain layer */
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' seed='4'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.45'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.35;
}
.poster-bag, .poster-spruces, .poster-birches {
  position: absolute;
  z-index: 1;
}
.poster-bag {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  height: 75%;
  width: auto;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.4));
}
.poster-bag--small { height: 55%; bottom: 8%; }
.poster-bag--mid   { height: 62%; bottom: 12%; }
.poster-bag--carry { height: 60%; bottom: 8%; left: 60%; }
.poster figcaption {
  position: relative;
  z-index: 2;
  padding: 20px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone);
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.55) 80%);
  width: 100%;
  text-align: left;
  line-height: 1.5;
}
.poster figcaption sup { font-size: 8px; opacity: 0.7; }

/* ── Specific poster scenes ────────────────────── */
.poster-bg--studio {
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(0,0,0,0.18), transparent 70%),
    linear-gradient(180deg, #F0E9D6 0%, #E8DFCB 45%, #DFD3B8 100%);
}
.poster-bg--moss {
  background:
    radial-gradient(ellipse 80% 40% at 50% 95%, rgba(20, 26, 18, 0.6), transparent 70%),
    radial-gradient(ellipse 60% 30% at 50% 30%, rgba(180, 196, 156, 0.25), transparent 70%),
    linear-gradient(180deg, #4A5C3E 0%, #36482E 35%, #1F2A1B 70%, #0D1408 100%);
}
.poster-bg--leather {
  background:
    radial-gradient(ellipse 60% 60% at 35% 30%, rgba(255, 220, 170, 0.4), transparent 70%),
    radial-gradient(ellipse 80% 80% at 70% 80%, rgba(40, 24, 12, 0.5), transparent 70%),
    linear-gradient(140deg, #8B5A30 0%, #6B4020 50%, #3D220F 100%);
  position: absolute; inset: 0;
}
.poster-bg--leather::before {
  /* leather grain via heavy turbulence */
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='l'><feTurbulence type='fractalNoise' baseFrequency='1.8' numOctaves='3' seed='2'/><feColorMatrix values='0 0 0 0 0.45   0 0 0 0 0.32   0 0 0 0 0.18   0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23l)'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.7;
}
.poster-bg--birch {
  background:
    linear-gradient(180deg, #B8C0BE 0%, #8E9A98 50%, #5A6A6C 100%);
}
.poster-spruces {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
}
.poster-birches {
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Time-of-day scenes for lifestyle */
.poster-bg--dawn {
  background:
    radial-gradient(ellipse 50% 35% at 50% 32%, rgba(255, 196, 144, 0.55), transparent 70%),
    linear-gradient(180deg, #DDB18A 0%, #C2967A 30%, #8E6F62 60%, #4F4239 100%);
}
.poster-bg--studio2 {
  background:
    radial-gradient(ellipse 70% 70% at 30% 30%, rgba(255, 245, 225, 0.6), transparent 70%),
    linear-gradient(160deg, #ECE2CC 0%, #D4C5A5 60%, #A8987B 100%);
}
.poster-bg--dusk {
  background:
    radial-gradient(ellipse 50% 35% at 50% 75%, rgba(120, 60, 50, 0.4), transparent 70%),
    linear-gradient(180deg, #1A2438 0%, #2E3145 35%, #4A3A3E 70%, #3A2828 100%);
}

/* ════════════════════════════════════════════════════════════
   3. GALLERY
   ════════════════════════════════════════════════════════════ */
.gallery {
  padding: 14vh var(--gutter-d);
  max-width: var(--max);
  margin: 0 auto;
}
.gallery-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
.gallery-head h2 {
  font-size: clamp(40px, 6vw, 88px);
  max-width: 14ch;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.poster--tall { aspect-ratio: 3/4.6; grid-row: span 1; }
.poster--macro { aspect-ratio: 1/1; }
.poster--carry { aspect-ratio: 3/4.6; }

/* ════════════════════════════════════════════════════════════
   4. NUMBER
   ════════════════════════════════════════════════════════════ */
.number {
  position: relative;
  padding: 22vh var(--gutter-d);
  color: var(--bone);
  text-align: center;
  overflow: hidden;
}
.number-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(0,0,0,0.7), transparent 70%),
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(120, 110, 90, 0.4), transparent 70%),
    linear-gradient(180deg, #18180F 0%, #2A2418 50%, #181810 100%);
}
.number-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.0' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.55'/></svg>");
  opacity: 0.2;
  mix-blend-mode: overlay;
}
.number-content { position: relative; z-index: 1; max-width: 56ch; margin: 0 auto; }
.big-number {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(80px, 17vw, 220px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  margin: 24px auto 16px;
}
.big-number-unit {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 32px);
  font-weight: 300;
  color: rgba(244, 239, 230, 0.85);
  margin-bottom: 56px;
}
.number-line {
  font-size: 15px;
  margin-bottom: 12px;
  color: rgba(244, 239, 230, 0.78);
}
.number-line a {
  color: rgba(244, 239, 230, 0.55);
  font-size: 11px;
  vertical-align: super;
}
.number-line--em {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 26px);
  color: var(--bone);
  margin-top: 28px;
}

/* ════════════════════════════════════════════════════════════
   5. LIFESTYLE
   ════════════════════════════════════════════════════════════ */
.lifestyle {
  padding: 14vh var(--gutter-d);
  max-width: var(--max);
  margin: 0 auto;
}
.lifestyle-head {
  text-align: center;
  margin-bottom: 56px;
}
.lifestyle-head h2 {
  font-size: clamp(36px, 5.5vw, 72px);
  margin: 0 auto;
  max-width: 18ch;
}
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.poster--scene { aspect-ratio: 3/4; }

/* ════════════════════════════════════════════════════════════
   6. SPEC STRIP
   ════════════════════════════════════════════════════════════ */
.spec-strip {
  padding: 10vh var(--gutter-d);
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.spec-strip ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.spec-strip li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  color: var(--ink-soft);
}
.spec-strip svg { width: 32px; height: 32px; color: var(--bark); }
.spec-strip span {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.spec-strip .footnote {
  font-size: 11px;
  color: var(--ink-soft);
  font-style: italic;
  text-align: center;
  margin-top: 36px;
}

/* ════════════════════════════════════════════════════════════
   7. COVENANT
   ════════════════════════════════════════════════════════════ */
.covenant {
  padding: 18vh var(--gutter-d);
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.covenant h2 {
  font-size: clamp(48px, 7vw, 100px);
  margin: 16px 0 64px;
}
.covenant-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  text-align: left;
}
.cov-headline {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 16px;
}
.covenant-cols p:last-child {
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 32ch;
}

/* ════════════════════════════════════════════════════════════
   8. WAITLIST
   ════════════════════════════════════════════════════════════ */
.waitlist {
  position: relative;
  padding: 20vh var(--gutter-d);
  color: var(--bone);
  text-align: center;
  overflow: hidden;
}
.waitlist-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(80, 60, 40, 0.4), transparent 70%),
    linear-gradient(180deg, #2A1F14 0%, #3D2A18 40%, #2A1F14 100%);
}
.waitlist-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='l'><feTurbulence type='fractalNoise' baseFrequency='1.6' numOctaves='3' seed='9'/></filter><rect width='100%' height='100%' filter='url(%23l)' opacity='0.5'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.35;
}
.waitlist-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.waitlist h2 {
  font-size: clamp(56px, 8vw, 120px);
  margin-bottom: 32px;
}
.waitlist-intro {
  margin: 0 auto 48px;
  max-width: 42ch;
  color: rgba(244, 239, 230, 0.85);
}
.waitlist-form {
  max-width: 520px;
  margin: 0 auto 24px;
  display: flex;
  gap: 12px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.4);
  padding-bottom: 8px;
  flex-wrap: wrap;
}
.waitlist-form input {
  flex: 1;
  background: transparent;
  border: 0; outline: 0;
  color: var(--bone);
  font-family: var(--sans);
  font-size: 17px;
  padding: 12px 4px;
}
.waitlist-form input::placeholder { color: rgba(244, 239, 230, 0.4); }
.waitlist-form button {
  background: transparent;
  border: 0;
  color: var(--bone);
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 12px 20px;
}
.waitlist-form button:hover { color: var(--mist); }
.form-note {
  width: 100%; flex-basis: 100%;
  font-size: 10px; color: rgba(244, 239, 230, 0.5);
  letter-spacing: 0.15em; text-transform: uppercase;
  text-align: center;
  margin-top: 12px;
}
.privacy-note {
  font-size: 11px;
  color: rgba(244, 239, 230, 0.5);
  letter-spacing: 0.05em;
  margin-top: 24px;
}

/* ════════════════════════════════════════════════════════════
   9. FOOTER
   ════════════════════════════════════════════════════════════ */
footer {
  background: var(--bone);
  padding: 60px var(--gutter-d) 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 2fr 0.5fr;
  gap: 64px;
  max-width: var(--max);
  margin: 0 auto;
  font-size: 13px;
  color: var(--ink-soft);
}
.footer-grid p { margin-bottom: 6px; }
.footer-logo {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 16px !important;
}
.footer-grid a { border-bottom: 1px solid var(--hairline); }
.footer-grid a:hover { border-color: var(--ink); color: var(--ink); }
.sources {
  list-style: decimal inside;
  font-size: 11px;
  line-height: 1.6;
}
.sources li { margin-bottom: 6px; }
.footer-meta { text-align: right; font-family: var(--serif); }

/* ════════════════════════════════════════════════════════════
   MOBILE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  body { font-size: 15px; }
  nav { padding: 16px var(--gutter-m); }
  .hero { min-height: 640px; }
  .hero-text { padding: 0 var(--gutter-m) 8vh; }
  .hero-text h1 { font-size: clamp(44px, 11vw, 72px); }
  .hero-bag { height: 50%; bottom: 14%; }
  .hero-actions { gap: 16px; }

  .manifesto, .number, .waitlist {
    padding-left: var(--gutter-m);
    padding-right: var(--gutter-m);
  }
  .manifesto h2 { font-size: clamp(28px, 7vw, 44px); }

  .gallery, .lifestyle, .spec-strip, .covenant {
    padding-left: var(--gutter-m);
    padding-right: var(--gutter-m);
  }
  .gallery-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .poster--tall { grid-column: span 2; }
  .poster--carry { grid-column: span 2; }

  .lifestyle-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .poster--scene { aspect-ratio: 5/6; }

  .spec-strip ul {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .covenant-cols { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-meta { text-align: left; }
}

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