/* Fernhollow — «Ground Level». Dark film at soil height, then daylight: hands, stone, beds in bloom. */
:root {
  --forest: #121c16;
  --forest-2: #1b2a21;
  --moss: #2c3d2c;
  --lichen: #c9d3a3;
  --bone: #ede7d6;
  --bone-2: #b9b4a4;
  --ember: #d9793b;
  --ink: #16211a;
  --cond: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --sans: "Hanken Grotesk", system-ui, sans-serif;
  /* wide screens (2026-09-26): content stops at 1560px and centres — backgrounds stay full-bleed, text never hugs the edge */
  --gut: max(clamp(18px, 3.4vw, 56px), calc((100vw - 1560px) / 2));
  --ease: cubic-bezier(.2, .7, .1, 1);
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; overflow-x: clip; }
body { margin: 0; background: var(--forest); color: var(--bone); font: 400 17px/1.6 var(--sans); overflow-x: clip; }
img, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--ember); outline-offset: 3px; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--ember); color: var(--forest); padding: 8px 12px; z-index: 80; }
.skip:focus { left: 8px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
h1, h2, h3 { font-family: var(--cond); font-weight: 900; text-transform: uppercase; margin: 0; letter-spacing: .005em; }
b { font-weight: 600; color: var(--lichen); }
.ln { display: block; }
.ln > span { display: block; }
.label { display: inline-block; font: 600 12px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; padding: 8px 12px; border: 1.5px dashed currentColor; border-radius: 999px; margin: 0 0 22px; }

/* bar */
.bar { position: absolute; z-index: 40; inset: 0 0 auto 0; display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 16px var(--gut); }
.bar ul { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; justify-content: flex-end; }
.pill { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; font: 600 13px/1 var(--sans); letter-spacing: .04em; text-transform: uppercase; padding: 11px 16px; border-radius: 999px; background: rgba(18, 28, 22, .55); color: var(--bone); border: 1px solid rgba(237, 231, 214, .28); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); transition: background .25s, color .25s, transform .25s; }
.pill:hover { background: var(--bone); color: var(--forest); }
.pill-mark { font-size: 14px; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ember); box-shadow: 0 0 12px var(--ember); }
.pill-ember { background: var(--ember); color: #1a0f07; border-color: var(--ember); }
.pill-ember:hover { background: var(--bone); color: var(--forest); transform: translateY(-2px); }
.pill-lg { font-size: 15px; padding: 17px 24px; }
.menu-btn { display: none; cursor: pointer; }
.menu-ico { width: 16px; height: 10px; border-top: 2px solid currentColor; border-bottom: 2px solid currentColor; position: relative; }
.menu-ico::after { content: ""; position: absolute; left: 0; right: 0; top: 2px; border-top: 2px solid currentColor; transition: transform .3s; }

/* hero */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img, .hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-video { opacity: 0; transition: opacity 1.2s; }
.hero-video.on { opacity: 1; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18, 28, 22, .55) 0%, rgba(18, 28, 22, .05) 30%, rgba(18, 28, 22, .35) 58%, rgba(18, 28, 22, .94) 100%); }
.hero-copy { position: relative; z-index: 2; padding: 0 var(--gut) clamp(28px, 4vw, 52px); }
.kicker { text-shadow: 0 1px 12px rgba(18, 28, 22, .9); font: 600 13px/1.4 var(--sans); letter-spacing: .1em; text-transform: uppercase; color: var(--lichen); margin: 0 0 14px; }
.hero h1 { font-size: clamp(72px, 14.6vw, 250px); line-height: .9; }
.hero h1 .ln { overflow: hidden; padding-bottom: .02em; }
.hero h1 b { color: var(--ember); font-weight: 900; }
.hero-row { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 20px 40px; margin-top: clamp(20px, 3vw, 36px); border-top: 1px solid rgba(237, 231, 214, .3); padding-top: 20px; }
.hero-row p { margin: 0; max-width: 46ch; font-size: clamp(16px, 1.3vw, 19px); color: var(--bone); }
.hero-credit { position: absolute; z-index: 2; right: var(--gut); top: 42%; margin: 0; writing-mode: vertical-rl; font: 600 11px var(--sans); letter-spacing: .14em; text-transform: uppercase; color: rgba(237, 231, 214, .75); }

/* soil line — the ground the page grows out of */
.soil { display: block; overflow: hidden; height: clamp(26px, 3.4vw, 54px); background: var(--forest); margin-top: -1px; }
.soil svg { display: block; width: 100%; height: 100%; }
.soil-bone path { fill: var(--bone); }
.soil-lichen path { fill: var(--lichen); }

/* knees — daylight band #1 (bone) */
.knees { background: var(--bone); color: var(--ink); padding: clamp(56px, 7vw, 110px) var(--gut) clamp(80px, 9vw, 140px); }
.knees b { color: var(--ink); background: linear-gradient(transparent 62%, rgba(217, 121, 59, .35) 62%); }
.knees-top { display: grid; grid-template-columns: 6fr 6fr; gap: clamp(36px, 5vw, 88px); align-items: center; }
.knees h2 { font-size: clamp(40px, 4.3vw, 76px); line-height: .92; margin-bottom: 26px; }
.knees h2 .ln:last-child { color: #b55a22; }
.lede { font-size: clamp(18px, 1.45vw, 21px); line-height: 1.55; max-width: 44ch; margin: 0 0 30px; }
.counts { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.counts li { border-top: 2px dashed rgba(22, 33, 26, .45); padding-top: 12px; font: 600 12px/1.35 var(--sans); letter-spacing: .08em; text-transform: uppercase; color: #4a5446; }
.counts span { display: block; font: 900 clamp(46px, 4.6vw, 76px)/.95 var(--cond); color: var(--ink); letter-spacing: 0; margin-bottom: 6px; }
.crew { position: relative; margin: 0; }
.ph { overflow: hidden; border-radius: 22px; }
.ph img { width: 100%; height: 100%; object-fit: cover; }
.crew .ph img { aspect-ratio: 5 / 6; }
.tape { position: absolute; top: -14px; left: 22px; transform: rotate(-3deg); background: #f6f0de; color: var(--ink); font: 600 12px/1 var(--sans); letter-spacing: .1em; text-transform: uppercase; padding: 11px 14px; box-shadow: 0 6px 18px rgba(22, 33, 26, .18); border-left: 3px solid var(--ember); }
.stamp { position: absolute; left: -44px; bottom: -40px; width: 132px; height: 132px; border-radius: 50%; background: var(--ember); color: #1a0f07; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(22, 33, 26, .25); }
.stamp svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 22s linear infinite; }
.stamp text { font: 700 11px var(--sans); fill: #1a0f07; }
.stamp span { font-size: 34px; line-height: 1; }
@keyframes spin { to { transform: rotate(360deg); } }
.hands { list-style: none; margin: clamp(80px, 9vw, 140px) 0 0; padding: 0 0 26px; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.2vw, 32px); align-items: end; border-bottom: 2px dashed rgba(22, 33, 26, .45); }
.hand { position: relative; }
.hand:nth-child(2) { margin-bottom: 44px; }
.hand img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 28px; transition: transform 1s var(--ease); }
.hand p { margin: 14px 4px 0; font-size: 16px; line-height: 1.45; max-width: 30ch; }
.handle { display: inline-block; font: 600 13px/1 var(--sans); background: var(--ink); color: var(--bone); padding: 7px 11px; border-radius: 999px; margin-right: 6px; }

/* services */
.services { background: var(--forest); padding-bottom: clamp(8px, 1.5vw, 24px); }
.meadow { position: relative; min-height: clamp(600px, 94vh, 1000px); display: flex; align-items: flex-end; margin-bottom: clamp(120px, 12vw, 190px); }
.meadow-img { position: absolute; inset: 0; margin: 0; overflow: hidden; }
.meadow-img img { position: absolute; inset: -7% 0; width: 100%; height: 114%; object-fit: cover; will-change: transform; }
.meadow-card { position: relative; z-index: 2; background: var(--ember); color: #1a0f07; max-width: 560px; margin: 0 0 clamp(-110px, -8vw, -60px) var(--gut); padding: clamp(28px, 3vw, 44px); border-radius: 26px; box-shadow: 0 24px 60px rgba(0, 0, 0, .3); }
.meadow-card .num { color: transparent; -webkit-text-stroke: 1.5px #1a0f07; }
.meadow-card .tags li { border-color: rgba(26, 15, 7, .45); background: rgba(255, 255, 255, .16); }
.num { font: 900 clamp(80px, 9vw, 150px)/.8 var(--cond); color: transparent; -webkit-text-stroke: 1.5px var(--lichen); margin: 0 0 12px; }
.meadow h3, .split h3 { font-size: clamp(44px, 4.8vw, 78px); line-height: .94; margin-bottom: 18px; }
.meadow-card > p:not(.num), .split-card > p:not(.num) { margin: 0 0 22px; max-width: 42ch; }
.tags { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; }
.tags li { font: 600 12px/1 var(--sans); letter-spacing: .06em; text-transform: uppercase; padding: 9px 13px; border-radius: 999px; border: 1px solid rgba(237, 231, 214, .4); }
.split { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(28px, 5vw, 88px); align-items: center; padding: clamp(40px, 5vw, 80px) var(--gut); }
.split-flip { grid-template-columns: 5fr 7fr; }
.split-flip .split-img { order: 2; }
.split-img { margin: 0; overflow: hidden; border-radius: 22px; }
.split-img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 1.2s var(--ease); }
.split-card { max-width: 520px; }

/* seasons — before/after, daylight band #2 (lichen) */
.seasons { background: var(--lichen); color: var(--ink); padding: clamp(40px, 5vw, 80px) var(--gut) clamp(90px, 10vw, 150px); }
.seasons b { color: var(--ink); }
.seasons-head { display: grid; grid-template-columns: 5fr 4fr; gap: 12px clamp(32px, 5vw, 80px); align-items: end; margin-bottom: clamp(36px, 5vw, 64px); }
.seasons-head .label { grid-column: 1 / -1; justify-self: start; margin: 0; }
.seasons h2 { font-size: clamp(64px, 9vw, 150px); line-height: .9; }
.seasons h2 .ln:last-child { color: #3e6b34; }
.seasons-head > p:last-child { margin: 0; font-size: 18px; max-width: 40ch; }
.pair { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2.4vw, 36px); align-items: start; }
.pair figure { margin: 0; overflow: clip; overflow-clip-margin: 10px; }
.pair .pair-b { margin-top: clamp(40px, 7vw, 110px); }
.pair img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 22px; }
.pair figcaption { margin-top: 12px; font: 600 14px/1.4 var(--sans); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.chip { font: 900 20px/1 var(--cond); text-transform: uppercase; letter-spacing: .04em; background: var(--ink); color: var(--bone); padding: 8px 12px 7px; border-radius: 8px; transform: rotate(-2deg); }
.chip-ember { background: #b55a22; color: #fff8ee; transform: rotate(2deg); }
.seasons-foot { margin-top: clamp(28px, 3vw, 44px); padding-top: 22px; border-top: 2px dashed rgba(22, 33, 26, .4); }
.checks { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 26px; font: 600 17px/1.4 var(--sans); }
.checks li::before { content: "✓"; display: inline-grid; place-items: center; width: 26px; height: 26px; margin-right: 10px; border-radius: 50%; background: var(--ink); color: var(--lichen); font-size: 14px; }
.specimen { position: absolute; z-index: 3; top: -30px; right: -6px; margin: 0; width: clamp(200px, 18vw, 270px); background: #f6f0de; padding: 10px 10px 14px; border-radius: 16px; transform: rotate(2.5deg); box-shadow: 0 14px 36px rgba(22, 33, 26, .2); }
.specimen img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 10px; }
.specimen figcaption { margin-top: 10px; font: 400 14px/1.4 var(--sans); }
.specimen i { font-weight: 600; }

/* work — horizontal strip */
.work { background: var(--forest-2); padding: clamp(40px, 5vw, 70px) 0 clamp(80px, 9vw, 140px); overflow: hidden; }
.ticker { overflow: hidden; transform: rotate(-2deg); margin: 0 -2vw clamp(40px, 5vw, 72px); background: var(--ember); color: #1a0f07; padding: 12px 0; }
.ticker p { margin: 0; display: flex; width: max-content; font: 900 clamp(26px, 2.6vw, 40px)/1 var(--cond); text-transform: uppercase; letter-spacing: .02em; white-space: nowrap; animation: slide 38s linear infinite; }
.ticker span { padding-right: .5em; }
@keyframes slide { to { transform: translateX(-50%); } }
.work-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 16px 40px; padding: 0 var(--gut); margin-bottom: clamp(28px, 4vw, 52px); }
.work-head h2 { font-size: clamp(64px, 10vw, 170px); line-height: .9; }
.work-head p { max-width: 36ch; margin: 0; color: var(--bone-2); }
.drag { display: block; margin-top: 8px; color: var(--ember); font: 600 12px var(--sans); letter-spacing: .12em; text-transform: uppercase; }
.strip { list-style: none; margin: 0; padding: 0 var(--gut) 18px; display: flex; gap: clamp(16px, 2vw, 28px); overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: thin; scrollbar-color: var(--ember) transparent; cursor: grab; align-items: flex-start; }
.strip.drag-on { cursor: grabbing; scroll-snap-type: none; }
@media (min-width: 901px) { .strip { scroll-snap-type: none; } }
.proj { flex: 0 0 clamp(250px, 25vw, 380px); scroll-snap-align: start; }
.proj:nth-child(even) { margin-top: clamp(40px, 5vw, 80px); }
.proj img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 20px; margin-bottom: 14px; pointer-events: none; transition: transform 1s var(--ease); }
.proj:nth-child(3n+2) img { aspect-ratio: 1; }
.proj h3 { font-size: clamp(26px, 2.2vw, 34px); line-height: .95; margin-bottom: 6px; }
.proj p { margin: 0; color: #d6d0bf; font-size: 15px; }
.proj .meta { color: var(--lichen); font: 600 12px/1.8 var(--sans); letter-spacing: .1em; text-transform: uppercase; }

/* process — bone */
.process { background: var(--bone); color: var(--ink); padding: clamp(80px, 10vw, 150px) var(--gut); }
.process h2 { font-size: clamp(48px, 6.4vw, 108px); line-height: .92; margin-bottom: clamp(40px, 6vw, 80px); }
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2.4vw, 36px); }
.steps li { border-top: 2px dashed var(--ember); padding-top: 18px; }
.steps .n { display: block; font: 900 64px/1 var(--cond); color: #b55a22; margin-bottom: 10px; }
.steps h3 { font-size: 34px; margin-bottom: 10px; }
.steps p { margin: 0; font-size: 16px; color: #333d33; }

/* care — forest */
.care { background: var(--forest); padding: clamp(80px, 10vw, 150px) var(--gut); }
.care-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 16px 40px; margin-bottom: clamp(36px, 5vw, 64px); }
.care-head h2 { font-size: clamp(64px, 9vw, 150px); line-height: .9; }
.care-head p { max-width: 38ch; margin: 0; font-size: 18px; color: #d6d0bf; }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 1.6vw, 22px); align-items: start; }
.plan { position: relative; background: var(--bone); color: var(--ink); padding: 30px 28px 34px; border-radius: 24px; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.plan h3 { font-size: 30px; }
.price { font: 900 clamp(64px, 6.2vw, 100px)/.9 var(--cond); margin: 18px 0 20px; }
.price span { font: 600 16px var(--sans); margin-left: 4px; }
.plan ul { list-style: none; margin: 0; padding: 0; border-top: 2px dashed rgba(22, 33, 26, .35); }
.plan li { padding: 10px 0; border-bottom: 1px solid rgba(22, 33, 26, .15); font-size: 15px; }
.plan li::before { content: "✓ "; color: #b55a22; font-weight: 600; }
.plan-hot { background: var(--lichen); margin-top: -18px; }
.plan-hot .price { color: #8a3f12; }
.flag { position: absolute; top: -16px; right: 22px; margin: 0; background: var(--ember); color: #1a0f07; font: 600 12px/1 var(--sans); letter-spacing: .1em; text-transform: uppercase; padding: 10px 14px; border-radius: 999px; transform: rotate(3deg); }

/* voices — lichen, with the client */
.voices { background: var(--lichen); color: var(--ink); padding: clamp(80px, 10vw, 150px) var(--gut); display: grid; grid-template-columns: 5fr 7fr; gap: clamp(36px, 6vw, 96px); align-items: center; }
.v-img { position: relative; margin: 0; }
.v-img .ph img { aspect-ratio: 4 / 5; object-position: 20% 50%; }
.v-img .tape { left: auto; right: 18px; top: auto; bottom: -14px; transform: rotate(2deg); }
.voices blockquote { margin: 0; }
.v-main p { font: 400 clamp(26px, 2.9vw, 46px)/1.18 var(--sans); letter-spacing: -.02em; margin: 0 0 18px; max-width: 26ch; }
.voices footer { font: 600 12px var(--sans); letter-spacing: .12em; text-transform: uppercase; color: #8a3f12; }
.v-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 44px); margin-top: clamp(40px, 5vw, 72px); }
.v-row p { font-size: clamp(18px, 1.45vw, 21px); line-height: 1.4; margin: 0 0 14px; border-top: 2px dashed rgba(22, 33, 26, .4); padding-top: 16px; }

/* faq */
.faq { padding: clamp(72px, 9vw, 130px) var(--gut) clamp(80px, 10vw, 150px); background: var(--forest-2); display: grid; grid-template-columns: 4fr 8fr; gap: 20px clamp(20px, 4vw, 64px); }
.faq h2 { font-size: clamp(44px, 5vw, 80px); line-height: .92; }
.faq-list { border-top: 1px solid rgba(237, 231, 214, .3); }
.faq details { border-bottom: 1px solid rgba(237, 231, 214, .2); padding: 20px 0; }
.faq summary { cursor: pointer; list-style: none; font: 600 clamp(18px, 1.5vw, 22px)/1.3 var(--sans); display: flex; justify-content: space-between; gap: 20px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--ember); font: 900 26px/1 var(--cond); transition: transform .3s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 12px 0 0; color: #d6d0bf; max-width: 60ch; }

/* contact */
.contact { position: relative; overflow: hidden; padding: clamp(90px, 11vw, 170px) var(--gut); }
.contact-bg { position: absolute; inset: 0; overflow: hidden; }
.contact-bg img { position: absolute; inset: -7% 0; width: 100%; height: 114%; object-fit: cover; }
.contact-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18, 28, 22, .55) 0%, rgba(18, 28, 22, .82) 45%, rgba(18, 28, 22, .92) 100%); }
.contact-inner { position: relative; }
.contact h2 { font-size: clamp(64px, 10.4vw, 180px); line-height: .92; margin-bottom: clamp(36px, 5vw, 72px); }
.contact h2 .ln + .ln { color: var(--ember); }
.contact-grid { display: grid; grid-template-columns: 5fr 6fr; gap: clamp(32px, 6vw, 100px); }
.c-info p { margin: 0 0 22px; font-size: 19px; max-width: 34ch; }
.c-lines { display: grid; gap: 6px; font-size: 16px !important; }
.c-lines a, .c-lines span { color: var(--lichen); text-decoration: none; }
.c-lines a:hover { color: var(--ember); }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form label { display: grid; gap: 6px; font: 600 12px var(--sans); letter-spacing: .1em; text-transform: uppercase; color: var(--lichen); }
.form label:nth-of-type(4) { grid-column: 1 / -1; }
.form input, .form textarea { font: 400 17px/1.4 var(--sans); color: var(--bone); background: rgba(18, 28, 22, .6); border: 1px solid rgba(237, 231, 214, .35); border-radius: 14px; padding: 13px 14px; }
.form input:focus, .form textarea:focus { outline: none; border-color: var(--ember); }
.form button { grid-column: 1 / -1; justify-self: start; cursor: pointer; }
.form-msg { grid-column: 1 / -1; margin: 0; min-height: 1.4em; color: var(--lichen); }

/* footer */
.foot { padding: 20px var(--gut) 26px; overflow: hidden; }
.foot-word { font: 900 clamp(64px, 19.5vw, 380px)/.8 var(--cond); color: var(--forest-2); -webkit-text-stroke: 1px rgba(201, 211, 163, .6); margin: 0; white-space: nowrap; letter-spacing: -.01em; }
.foot-row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 32px; border-top: 1px solid rgba(237, 231, 214, .25); padding-top: 14px; margin-top: 14px; font-size: 13px; color: var(--bone-2); }
.foot-row p { margin: 0; max-width: 90ch; }


/* service 03 — collage (scattered frames on dark green) */
.collage { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px clamp(16px, 2vw, 28px); padding: clamp(60px, 7vw, 110px) var(--gut) clamp(50px, 6vw, 90px); align-items: start; }
.collage-card { grid-column: 1 / 6; grid-row: 1; padding-top: clamp(10px, 3vw, 48px); max-width: 520px; }
.collage-card > p:not(.num) { margin: 0 0 22px; max-width: 42ch; }
.collage h3 { font-size: clamp(44px, 4.8vw, 78px); line-height: .94; margin-bottom: 18px; }
.collage figure { margin: 0; position: relative; }
.c-big { grid-column: 6 / 13; grid-row: 1; }
.c-big img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 22px; }
.c-mid { grid-column: 1 / 6; grid-row: 2; margin-top: -40px !important; }
.c-mid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 18px; }
.c-small { grid-column: 6 / 9; grid-row: 2; margin-top: -90px !important; z-index: 2; }
.c-small img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 12px; border: 8px solid var(--bone); transform: rotate(-3deg); box-shadow: 0 18px 40px rgba(0, 0, 0, .35); }
/* before/after — desktop scroll scrub: year two wipes over day one as you scroll */
.scrub-line { display: none; }
.pair.scrub { display: block; }
.pair.scrub .pair-a img, .pair.scrub .pair-b img { aspect-ratio: 2 / 1; }
.pair.scrub .pair-b { position: absolute; left: 0; right: 0; top: 0; margin-top: 0; clip-path: inset(0 0 0 var(--cut, 94%)); }
.pair.scrub figcaption { position: absolute; bottom: 18px; margin: 0; background: rgba(237, 231, 214, .94); padding: 8px 14px 8px 8px; border-radius: 12px; }
.pair.scrub .pair-a figcaption { left: 18px; }
.pair.scrub .pair-b figcaption { right: 18px; }
.pair.scrub .scrub-line { display: block; position: absolute; z-index: 2; top: 0; height: calc(100% - 0px); left: var(--cut, 94%); width: 3px; background: var(--ember); transform: translateX(-50%); }
.pair.scrub .scrub-line span { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); white-space: nowrap; background: var(--ember); color: #1a0f07; font: 600 12px/1 var(--sans); letter-spacing: .1em; text-transform: uppercase; padding: 10px 14px; border-radius: 999px; box-shadow: 0 8px 24px rgba(22, 33, 26, .3); }
.pair.scrub .scrub-line span::before { content: "◂ "; }
.pair.scrub .scrub-line span::after { content: " ▸"; }
/* pull quote */
.v-main::before { content: "“"; display: block; font: 900 clamp(120px, 12vw, 200px)/.62 var(--cond); color: #b55a22; margin-bottom: .04em; }
.voices b { color: var(--ink); background: linear-gradient(transparent 62%, rgba(217, 121, 59, .4) 62%); }
.strip { scroll-padding-inline: var(--gut); }
.strip::after { content: ""; flex: 0 0 1px; }

/* ---------- motion: ground level ---------- */
/* hero lines rise out of the ground on load (short — done before the first still frame) */
.js .hero h1 .ln > span { animation: lnup .9s var(--ease) both; }
.js .hero h1 .ln + .ln > span { animation-delay: .09s; }
.js .kicker, .js .hero-row { animation: fade .6s .2s both; }
@keyframes lnup { from { transform: translateY(105%); } }
@keyframes fade { from { opacity: 0; } }
/* scroll reveals — .pre only ever set by main.js, only on elements entirely below the fold at first scroll */
.js .lines .ln { overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }
.js .lines .ln > span { transition: transform 1s var(--ease); }
.js .lines .ln:nth-child(2) > span { transition-delay: .08s; }
.js .lines .ln:nth-child(3) > span { transition-delay: .16s; }
.js .lines.pre .ln > span { transform: translateY(105%); }
.js .wipe-l, .js .wipe-r, .js .rise { clip-path: inset(-44px -44px -44px -44px); transition: clip-path 1.05s var(--ease); transition-delay: var(--d, 0s); }
.js .wipe-l img, .js .wipe-r img, .js .rise img { transition: transform 1.2s var(--ease); transition-delay: var(--d, 0s); }
.js .wipe-l.pre { clip-path: inset(-44px 100% -44px -44px); }
.js .wipe-r.pre { clip-path: inset(-44px -44px -44px 100%); }
.js .rise.pre { clip-path: inset(100% -44px -44px -44px); }
.js .pre img { transform: scale(1.1); }
.js .wipe-l.pre img { transform: translateX(-8%) scale(1.1); }
.js .wipe-r.pre img { transform: translateX(8%) scale(1.1); }
.js .rise.pre img { transform: translateY(10%) scale(1.08); }
/* the ground rises: soil dividers push up from below, headings draw their soil line first */
.js .soil-up svg { transition: transform 1s var(--ease); }
.js .soil-up.pre svg { transform: translateY(100%); }
h2.lines::after { content: ""; display: block; width: clamp(56px, 6vw, 96px); height: 4px; margin-top: .16em; background: var(--ember); border-radius: 2px; transform-origin: left center; }
.js h2.lines::after { transition: transform .7s var(--ease); }
.js h2.lines.pre::after { transform: scaleX(0); }
.js h2.lines .ln > span { transition-delay: .18s; }
.js h2.lines .ln:nth-child(2) > span { transition-delay: .27s; }
.js h2.lines .ln:nth-child(3) > span { transition-delay: .36s; }
.js .rv { transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--d, 0s); }
.js .rv.pre { opacity: 0; transform: translateY(28px); }
@media (hover: hover) {
  .hand:hover img, .proj:hover img, .split-img:hover img { transform: scale(1.05); }
  .hand img, .proj img { will-change: transform; }
  .plan:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(0, 0, 0, .28); }
  .specimen { transition: transform .5s var(--ease); }
  .specimen:hover { transform: rotate(0) translateY(-6px); }
}
@media print {
  .js .pre, .js .pre img, .js .pre svg, .js .lines.pre .ln > span, .js h2.lines.pre::after { clip-path: none !important; opacity: 1 !important; transform: none !important; }
  .hero-video, .ticker { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .js .hero h1 .ln > span, .js .kicker, .js .hero-row { animation: none; }
  .js .pre, .js .pre img, .js .pre svg, .js .lines.pre .ln > span, .js h2.lines.pre::after { clip-path: none !important; opacity: 1 !important; transform: none !important; }
  .stamp svg, .ticker p { animation: none; }
  .hero-video { display: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .knees-top, .seasons-head, .voices, .faq, .contact-grid { grid-template-columns: 1fr; }
  .crew { max-width: 560px; margin-left: 28px; }
  .crew .ph img { aspect-ratio: 4 / 3; }
  .stamp { width: 104px; height: 104px; left: -28px; bottom: -36px; }
  .stamp text { font-size: 10px; }
  .hands { grid-template-columns: 1fr 1fr; }
  .hand:nth-child(2) { margin-bottom: 0; }
  .hand:nth-child(3) { grid-column: 1 / -1; }
  .hand:nth-child(3) img { aspect-ratio: 16 / 9; }
  .meadow { min-height: 0; flex-direction: column; align-items: stretch; margin-bottom: 30px; }
  .meadow-img { position: relative; inset: auto; aspect-ratio: 4 / 3; }
  .meadow-img img { inset: 0; height: 100%; }
  .meadow-card { margin: -64px var(--gut) 0; }
  .split, .split-flip { grid-template-columns: 1fr; }
  .collage { grid-template-columns: 1fr 1fr; }
  .collage-card, .c-big { grid-column: 1 / -1; grid-row: auto; }
  .c-mid { grid-column: 1; grid-row: auto; margin-top: 0 !important; }
  .c-small { grid-column: 2; grid-row: auto; margin-top: 0 !important; align-self: center; }
  .split-flip .split-img { order: 0; }
  .num { font-size: 80px; }
  .steps { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .plans { grid-template-columns: 1fr; gap: 26px; }
  .plan-hot { margin-top: 0; }
  .v-img { max-width: 480px; }
  .specimen { position: relative; top: auto; right: auto; margin: 6px 0 0 auto; width: min(260px, 66vw); }
}
@media (max-width: 760px) {
  .js .menu-btn { display: inline-flex; }
  .js .menu-panel { display: none; }
  .js .menu-panel.open { display: flex; position: fixed; inset: 0; z-index: 60; background: var(--forest); padding: 96px var(--gut) 40px; flex-direction: column; justify-content: flex-start; }
  .js .menu-panel.open ul { flex-direction: column; align-items: stretch; gap: 10px; }
  .js .menu-panel.open .pill { font: 900 34px/1 var(--cond); padding: 18px 22px; justify-content: space-between; }
  .js .menu-btn[aria-expanded="true"] { position: relative; z-index: 70; background: var(--bone); color: var(--forest); }
  .js .menu-btn[aria-expanded="true"] .menu-ico { border-color: transparent; }
  .js .menu-btn[aria-expanded="true"] .menu-ico::after { transform: rotate(45deg); }
  .js .menu-btn[aria-expanded="true"] .menu-ico::before { content: ""; position: absolute; left: 0; right: 0; top: 2px; border-top: 2px solid currentColor; transform: rotate(-45deg); }
  .bar { flex-wrap: wrap; }
  .bar ul { justify-content: flex-start; }
  .pill-mark { z-index: 70; position: relative; }
}
@media (max-width: 560px) {
  .bar { padding-top: 12px; }
  .hero h1 { font-size: clamp(64px, 23vw, 120px); }
  .hero-media::after { background: linear-gradient(180deg, rgba(18, 28, 22, .5) 0%, rgba(18, 28, 22, .1) 22%, rgba(18, 28, 22, .55) 45%, rgba(18, 28, 22, .96) 100%); }
  .hero-credit { display: none; }
  .knees h2 { font-size: clamp(38px, 11vw, 56px); }
  .counts { grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
  .counts span { font-size: 40px; }
  .counts li { font-size: 10.5px; }
  .crew { margin-left: 18px; }
  .hands { grid-template-columns: 1fr; }
  .hand img, .hand:nth-child(3) img { aspect-ratio: 4 / 3; }
  .pair { grid-template-columns: 1fr; }
  .pair-b { margin-top: 10px; }
  .meadow h3, .split h3 { font-size: clamp(40px, 11vw, 52px); }
  .proj { flex-basis: 72vw; }
  .steps li { display: grid; grid-template-columns: 64px 1fr; column-gap: 12px; }
  .steps .n { grid-row: 1 / 3; font-size: 48px; margin: 0; }
  .steps h3 { font-size: 30px; }
  .steps { grid-template-columns: 1fr; }
  .v-row { grid-template-columns: 1fr; }
  .form { grid-template-columns: 1fr; }
}
