/* ═══════════════════════════════════════════════════════════════
   TRAY SIMPSON GARDEN DESIGN
   Palette sampled from the brand mark: forest #3F573C on paper #FAF8EF
   Cormorant Garamond (display) · Newsreader (prose) · Archivo (labels)
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* brand — sampled directly from the logo files */
  --forest: #3f573c;
  --forest-deep: #2b3d29;
  --forest-black: #16211a;
  --paper: #faf8ef;
  --paper-warm: #f4f0e2;
  --paper-deep: #ebe5d3;

  /* supporting */
  --moss: #6b7f63;
  --sage: #9aa88f;
  --brass: #a8863d;
  --brass-lit: #c8a95e;
  --terracotta: #bd7048;
  --bloom: #b8607f;
  --ink: #1b241a;

  --line: rgba(63, 87, 60, 0.18);
  --line-soft: rgba(63, 87, 60, 0.1);

  --display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --prose: 'Newsreader', Georgia, serif;
  --label: 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;

  --gut: clamp(1.25rem, 5vw, 5.5rem);
  --maxw: 1560px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);

  --head-h: 84px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scroll-padding-top: var(--head-h);
}

body {
  font-family: var(--prose);
  font-weight: 300;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.125rem);
  line-height: 1.62;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
::selection { background: var(--forest); color: var(--paper); }

/* film grain over the whole document */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 400;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── shared type ─── */

.eyebrow {
  font-family: var(--label);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
}

.eyebrow--light { color: var(--brass-lit); }

.display {
  font-family: var(--display);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.015em;
}

.wordmark {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.latin { font-style: italic; color: var(--moss); }

.shell {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gut);
}

.rule-orn {
  display: flex; align-items: center; gap: 0.9rem;
  color: var(--brass);
}
.rule-orn::before, .rule-orn::after {
  content: ''; height: 1px; flex: 1;
  background: currentColor; opacity: 0.4;
}

/* ─── link with drawn underline ─── */

.ulink {
  position: relative;
  display: inline-block;
  font-family: var(--label);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding-bottom: 0.4rem;
}
.ulink::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(1); transform-origin: right;
  transition: transform 0.5s var(--ease);
}
.ulink:hover::after { transform: scaleX(0); }
.ulink .arw { display: inline-block; transition: transform 0.5s var(--ease); }
.ulink:hover .arw { transform: translateX(6px); }

/* ─── buttons ─── */

.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 0.9rem;
  font-family: var(--label);
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 1.15rem 2.4rem;
  border: 1px solid currentColor;
  color: var(--forest);
  overflow: hidden;
  isolation: isolate;
  transition: color 0.45s var(--ease);
}
.btn > span { position: relative; z-index: 1; }
.btn::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: var(--forest);
  transform: translateY(101%);
  transition: transform 0.55s var(--ease);
}
.btn:hover { color: var(--paper); }
.btn:hover::before { transform: translateY(0); }

.btn--light { color: var(--paper); }
.btn--light::before { background: var(--paper); }
.btn--light:hover { color: var(--forest-deep); }

.btn--solid { background: var(--forest); color: var(--paper); border-color: var(--forest); }
.btn--solid::before { background: var(--brass-lit); }
.btn--solid:hover { color: var(--forest-black); }

/* ═══ OVERTURE (intro curtain) ═══ */

.overture {
  position: fixed; inset: 0; z-index: 900;
  pointer-events: none;
}
.overture__panel {
  position: absolute; left: 0; width: 100%; height: 50.6%;
  background: var(--paper);
  transition: transform 1.15s var(--ease-io);
}
.overture__panel--t { top: 0; }
.overture__panel--b { bottom: 0; }
.overture__stage {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  transition: opacity 0.5s ease;
}
.overture__mark {
  width: clamp(58px, 8vw, 92px);
  opacity: 0;
  transform: translateY(14px) scale(0.9);
  animation: markIn 1.1s var(--ease) 0.15s forwards;
}
@keyframes markIn { to { opacity: 1; transform: none; } }

.overture__name {
  margin-top: 1.4rem;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.1rem, 3vw, 1.9rem);
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  text-transform: uppercase;
  color: var(--forest);
  display: flex; justify-content: center;
}
.overture__name span {
  opacity: 0;
  transform: translateY(10px);
  animation: letterIn 0.7s var(--ease) forwards;
}
@keyframes letterIn { to { opacity: 1; transform: none; } }

.overture__rule {
  width: min(280px, 44vw); height: 1px;
  background: var(--brass);
  margin: 1.1rem auto 0.9rem;
  transform: scaleX(0);
  animation: ruleIn 0.9s var(--ease) 1.05s forwards;
}
@keyframes ruleIn { to { transform: scaleX(1); } }

.overture__sub {
  font-family: var(--display);
  font-size: clamp(0.72rem, 1.6vw, 0.95rem);
  letter-spacing: 0.44em;
  text-indent: 0.44em;
  text-transform: uppercase;
  color: var(--moss);
  opacity: 0;
  animation: fadeIn 0.9s ease 1.25s forwards;
}
@keyframes fadeIn { to { opacity: 1; } }

.overture.is-open .overture__stage { opacity: 0; }
.overture.is-open .overture__panel--t { transform: translateY(-100%); }
.overture.is-open .overture__panel--b { transform: translateY(100%); }
.overture.is-done { display: none; }

/* ═══ CURSOR ═══ */

.cursor, .cursor-dot {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 800;
  will-change: transform;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cursor {
  width: 42px; height: 42px;
  margin: -21px 0 0 -21px;
  border: 1px solid var(--forest);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: width 0.4s var(--ease), height 0.4s var(--ease),
              margin 0.4s var(--ease), background 0.4s var(--ease),
              border-color 0.4s var(--ease), opacity 0.3s ease;
}
.cursor-dot {
  width: 5px; height: 5px;
  margin: -2.5px 0 0 -2.5px;
  border-radius: 50%;
  background: var(--forest);
}
body.cursor-ready .cursor, body.cursor-ready .cursor-dot { opacity: 1; }

.cursor__label {
  font-family: var(--label);
  font-size: 0.52rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--paper);
  opacity: 0; transform: scale(0.7);
  transition: opacity 0.3s ease, transform 0.4s var(--ease);
}
.cursor.is-view {
  width: 92px; height: 92px; margin: -46px 0 0 -46px;
  background: rgba(63, 87, 60, 0.92);
  border-color: transparent;
}
.cursor.is-view .cursor__label { opacity: 1; transform: none; }
.cursor.is-link { width: 64px; height: 64px; margin: -32px 0 0 -32px; background: rgba(63, 87, 60, 0.12); }
.cursor.on-dark { border-color: var(--paper); }
.cursor.on-dark ~ .cursor-dot, body.on-dark .cursor-dot { background: var(--paper); }
.cursor.is-view ~ .cursor-dot { opacity: 0; }

/* ═══ SCROLL STEM (growing botanical progress) ═══ */

.stem {
  position: fixed;
  left: clamp(0.35rem, 0.9vw, 1rem);
  top: 0; bottom: 0;
  width: 40px; z-index: 300;
  pointer-events: none;
  display: grid; place-items: center;
}
.stem svg { height: min(62vh, 560px); width: 40px; overflow: visible; }
.stem__track { stroke: var(--line-soft); stroke-width: 1; fill: none; }
.stem__grow {
  stroke: var(--forest); stroke-width: 1.2; fill: none;
  stroke-linecap: round;
}
.stem__leaf {
  fill: var(--forest);
  opacity: 0;
  transform-box: fill-box;
  transform-origin: 0% 50%;
  transform: scale(0.2);
  transition: opacity 0.5s var(--ease), transform 0.7s var(--ease);
}
.stem__leaf.is-on { opacity: 0.85; transform: scale(1); }
.stem__bud {
  fill: var(--brass);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.stem__bud.is-on { opacity: 1; }
.stem__pct {
  font-family: var(--label);
  font-size: 8px; font-weight: 600;
  letter-spacing: 0.1em;
  fill: var(--sage);
}
@media (max-width: 1100px) { .stem { display: none; } }

/* ═══ HEADER ═══ */

.head {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--head-h);
  display: flex; align-items: center;
  padding-inline: var(--gut);
  transition: background 0.5s var(--ease), height 0.5s var(--ease),
              border-color 0.5s var(--ease), transform 0.6s var(--ease);
  border-bottom: 1px solid transparent;
  color: var(--paper);
  mix-blend-mode: normal;
}
.head.is-solid {
  background: rgba(250, 248, 239, 0.9);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line-soft);
  height: 68px;
  color: var(--forest);
}
.head.is-hidden { transform: translateY(-102%); }

.head__inner {
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}

.head__brand { display: flex; align-items: center; gap: 0.85rem; }
.head__mark { width: 26px; transition: transform 0.6s var(--ease); }
.head__brand:hover .head__mark { transform: rotate(-6deg) scale(1.08); }
.head__name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.98rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  line-height: 1;
}
.head__name small {
  display: block;
  font-family: var(--label);
  font-size: 0.5rem; font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--brass-lit);
  margin-top: 0.32rem;
}
.head.is-solid .head__name small { color: var(--brass); }

.nav { display: flex; align-items: center; gap: clamp(1.1rem, 1.9vw, 2.1rem); }
.nav a {
  font-family: var(--label);
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  position: relative;
  padding-block: 0.4rem;
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.nav a:hover::after, .nav a.is-current::after { transform: scaleX(1); }

.head__cta {
  font-family: var(--label);
  font-size: 0.64rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  border: 1px solid currentColor;
  padding: 0.75rem 1.4rem;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
.head__cta:hover { background: currentColor; }
.head__cta:hover span { mix-blend-mode: difference; }

.burger {
  display: none;
  width: 42px; height: 42px;
  position: relative; z-index: 2;
}
.burger i {
  position: absolute; left: 9px; right: 9px; height: 1px;
  background: currentColor;
  transition: transform 0.5s var(--ease), opacity 0.3s ease;
}
.burger i:nth-child(1) { top: 17px; }
.burger i:nth-child(2) { top: 24px; }
.burger.is-x i:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.burger.is-x i:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 490;
  background: var(--forest-deep);
  color: var(--paper);
  display: flex; flex-direction: column;
  justify-content: center;
  padding: var(--gut);
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.8s var(--ease);
  pointer-events: none;
}
.drawer.is-open { clip-path: inset(0 0 0 0); pointer-events: auto; }
.drawer a {
  font-family: var(--display);
  font-size: clamp(2.2rem, 9vw, 3.6rem);
  font-weight: 300;
  line-height: 1.22;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), color 0.3s;
}
.drawer.is-open a { opacity: 1; transform: none; }
.drawer a:hover { color: var(--brass-lit); }
.drawer__foot {
  margin-top: 2.6rem; padding-top: 1.6rem;
  border-top: 1px solid rgba(250, 248, 239, 0.2);
  font-family: var(--label); font-size: 0.68rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sage);
  display: grid; gap: 0.5rem;
}

@media (max-width: 940px) {
  .nav, .head__cta { display: none; }
  .burger { display: block; }
}

/* ═══ HERO ═══ */

.hero {
  position: relative;
  height: 100svh; min-height: 620px;
  overflow: hidden;
  display: flex; align-items: flex-end;
  color: var(--paper);
}
.hero__media { position: absolute; inset: 0; overflow: hidden; }
.hero__media img {
  width: 100%; height: 116%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.14);
  animation: kenburns 22s ease-out forwards;
  will-change: transform;
}
@keyframes kenburns { to { transform: scale(1); } }
.hero__media::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(22, 33, 26, 0.74) 0%, rgba(22, 33, 26, 0.34) 40%, rgba(22, 33, 26, 0.04) 66%),
    linear-gradient(180deg, rgba(22, 33, 26, 0.6) 0%, rgba(22, 33, 26, 0.1) 32%, rgba(22, 33, 26, 0.3) 62%, rgba(22, 33, 26, 0.88) 100%),
    radial-gradient(120% 80% at 50% 100%, rgba(22, 33, 26, 0.5), transparent 60%);
}

.hero__inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--gut) clamp(2.5rem, 6vh, 4.5rem);
}

.hero__eyebrow {
  display: flex; align-items: center; gap: 1rem;
  margin-top: clamp(1.1rem, 3vh, 2rem);
  margin-bottom: clamp(0.9rem, 2.4vh, 1.6rem);
}
.hero__eyebrow span { color: var(--brass-lit); text-shadow: 0 1px 12px rgba(22, 33, 26, 0.6); }
.hero__eyebrow i {
  width: clamp(30px, 6vw, 64px); height: 1px;
  background: var(--brass-lit); opacity: 0.6;
  display: block;
}

.hero__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(3rem, 11.5vw, 11rem);
  line-height: 0.88;
  letter-spacing: -0.025em;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--brass-lit);
}

.hero__foot {
  margin-top: clamp(1.6rem, 4vh, 3rem);
  display: flex; flex-wrap: wrap; gap: 2rem 3rem;
  align-items: flex-end; justify-content: space-between;
  border-top: 1px solid rgba(250, 248, 239, 0.22);
  padding-top: 1.6rem;
}
.hero__lede {
  max-width: 40ch;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  color: rgba(250, 248, 239, 0.9);
  text-shadow: 0 1px 16px rgba(22, 33, 26, 0.5);
}

/* scarcity chip */
.chip-scarce {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--label);
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--paper);
  border: 1px solid rgba(200, 169, 94, 0.55);
  background: rgba(22, 33, 26, 0.35);
  backdrop-filter: blur(6px);
  padding: 0.62rem 1.05rem;
  margin-bottom: 1.4rem;
}
.chip-scarce b { color: var(--brass-lit); font-weight: 600; }
.pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brass-lit);
  box-shadow: 0 0 0 0 rgba(200, 169, 94, 0.8);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(200, 169, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(200, 169, 94, 0); }
}

.scroll-cue {
  position: absolute; right: calc(var(--gut) * 0.34); top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  font-family: var(--label); font-size: 0.55rem;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(250, 248, 239, 0.7);
  writing-mode: vertical-rl;
}
.scroll-cue i {
  width: 1px; height: 62px;
  background: linear-gradient(180deg, rgba(250, 248, 239, 0.7), transparent);
  position: relative; overflow: hidden;
}
.scroll-cue i::after {
  content: ''; position: absolute; inset: 0;
  background: var(--brass-lit);
  animation: cue 2.2s var(--ease-io) infinite;
}
@keyframes cue {
  0% { transform: translateY(-100%); }
  60%, 100% { transform: translateY(100%); }
}
@media (max-width: 860px) { .scroll-cue { display: none; } }

/* word reveal */
.rv { display: inline-block; overflow: hidden; vertical-align: bottom; }
.rv > span {
  display: inline-block;
  transform: translateY(105%);
  transition: transform 1.05s var(--ease);
}
.is-in .rv > span { transform: none; }

/* ═══ TICKER / MARQUEE ═══ */

.ticker {
  background: var(--forest-deep);
  color: var(--paper);
  border-block: 1px solid rgba(250, 248, 239, 0.12);
  padding: 1.1rem 0;
  overflow: hidden;
  position: relative;
}
.ticker__track {
  display: flex; width: max-content;
  animation: slide 46s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.ticker__item {
  display: flex; align-items: center; gap: 1.6rem;
  padding-inline: 1.6rem;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(0.95rem, 1.6vw, 1.3rem);
  color: rgba(250, 248, 239, 0.75);
  white-space: nowrap;
}
.ticker__item::after {
  content: '✻'; color: var(--brass); font-style: normal; font-size: 0.7em;
}

/* ═══ SECTION SCAFFOLD ═══ */

.sec { position: relative; padding-block: clamp(5rem, 13vh, 10rem); }
.sec--dark { background: var(--forest-deep); color: var(--paper); }
.sec--black { background: var(--forest-black); color: var(--paper); }
.sec--warm { background: var(--paper-warm); }

.sec-head {
  display: flex; align-items: baseline; gap: 1.4rem;
  margin-bottom: clamp(2.5rem, 6vh, 4.5rem);
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
}
.sec--dark .sec-head, .sec--black .sec-head { border-color: rgba(250, 248, 239, 0.18); }
.sec-head__no {
  font-family: var(--label); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.18em; color: var(--brass);
}
.sec-head__t {
  font-family: var(--label); font-size: 0.66rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
}
.sec-head__aside {
  margin-left: auto;
  font-family: var(--prose); font-style: italic;
  font-size: 0.95rem; color: var(--moss);
  text-align: right;
}
.sec--dark .sec-head__aside, .sec--black .sec-head__aside { color: var(--sage); }

/* generic reveal */
.rise { opacity: 0; transform: translateY(38px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.rise.is-in { opacity: 1; transform: none; }
.rise-d1 { transition-delay: 0.1s; }
.rise-d2 { transition-delay: 0.2s; }
.rise-d3 { transition-delay: 0.3s; }
.rise-d4 { transition-delay: 0.4s; }

/* image that unveils via clip-path */
.unveil { overflow: hidden; position: relative; }
.unveil img, .unveil > .unveil__in {
  clip-path: inset(0 0 100% 0);
  transform: scale(1.22);
  transition: clip-path 1.4s var(--ease), transform 1.8s var(--ease);
  will-change: clip-path, transform;
}
.unveil.is-in img, .unveil.is-in > .unveil__in { clip-path: inset(0 0 0 0); transform: scale(1); }

/* ═══ ETHOS (word-by-word scroll fade) ═══ */

.ethos { text-align: center; }
.ethos__body {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.6rem, 4.4vw, 3.6rem);
  line-height: 1.24;
  letter-spacing: -0.01em;
  max-width: 22ch;
  margin: 0 auto;
}
.ethos__body .w { color: rgba(27, 36, 26, 0.14); transition: color 0.35s ease; }
.ethos__body .w.on { color: var(--ink); }
.ethos__body em { font-style: italic; }
.ethos__body .w.on.hl { color: var(--forest); }
.ethos__foot {
  margin-top: clamp(2.5rem, 6vh, 4rem);
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1.4rem 3.5rem;
}
.ethos__stat { text-align: center; }
.ethos__stat b {
  display: block;
  font-family: var(--display); font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1; color: var(--forest);
}
.ethos__stat span {
  font-family: var(--label); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--moss); display: block; margin-top: 0.6rem;
}

/* ═══ SERVICES ═══ */

.svcs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
.svc {
  background: var(--paper);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: background 0.6s var(--ease);
  min-height: 560px;
}
.svc::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: var(--forest-deep);
  transform: translateY(100%);
  transition: transform 0.7s var(--ease);
}
.svc:hover::before { transform: translateY(0); }
.svc > * { position: relative; z-index: 1; transition: color 0.5s var(--ease); }
.svc:hover, .svc:hover .svc__no, .svc:hover p { color: var(--paper); }
.svc:hover .svc__no { color: var(--brass-lit); }

.svc__no {
  font-family: var(--label); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.2em; color: var(--brass);
}
.svc__media {
  margin: 1.4rem 0 1.6rem;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.svc__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease), filter 0.8s ease;
  filter: saturate(0.92);
}
.svc:hover .svc__media img { transform: scale(1.09); filter: saturate(1.05); }
.svc h3 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.06; letter-spacing: 0.01em;
  text-transform: uppercase;
}
.svc h3 small {
  display: block; font-family: var(--prose); font-style: italic;
  font-size: 0.86rem; letter-spacing: 0; text-transform: none;
  color: var(--moss); margin-top: 0.5rem;
}
.svc:hover h3 small { color: var(--sage); }
.svc p { margin-top: 1rem; color: #4a5647; font-size: 0.99rem; }
.svc__list {
  list-style: none; margin-top: 1.2rem;
  display: grid; gap: 0.42rem;
  font-family: var(--label); font-size: 0.66rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--moss);
}
.svc:hover .svc__list { color: var(--sage); }
.svc__list li { display: flex; gap: 0.6rem; }
.svc__list li::before { content: '—'; color: var(--brass); }
.svc__go { margin-top: auto; padding-top: 1.6rem; color: var(--brass); }
.svc:hover .svc__go { color: var(--brass-lit); }

@media (max-width: 980px) { .svcs { grid-template-columns: 1fr; } .svc { min-height: 0; } }

/* flagship service card */
.svc--hero { background: var(--paper-warm); }
.svc--hero .svc__no { color: var(--brass); }
.svc__flag {
  position: absolute; top: 0; right: 0; z-index: 2;
  font-family: var(--label); font-size: 0.54rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--paper); background: var(--brass);
  padding: 0.5rem 0.9rem;
  transition: background 0.5s var(--ease);
}
.svc--hero:hover .svc__flag { background: var(--brass-lit); color: var(--forest-black); }

/* ═══ THE COMPOUNDING GARDEN ═══ */

.arc__intro { max-width: 62ch; margin-bottom: clamp(3rem, 8vh, 5.5rem); }
.arc__title {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(1.9rem, 4.6vw, 3.6rem); line-height: 1.06;
  letter-spacing: -0.012em;
}
.arc__title em { font-style: italic; color: var(--brass-lit); }
.arc__lede {
  margin-top: 1.4rem; max-width: 52ch;
  color: rgba(250, 248, 239, 0.76);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
}

.arc__rail { position: relative; }
.arc__line {
  position: absolute; left: 0; right: 0; top: 7px;
  height: 1px; background: rgba(250, 248, 239, 0.18);
}
.arc__line i {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--moss), var(--brass-lit));
  transition: width 0.5s linear;
}
.arc__stages {
  list-style: none;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.2rem, 3vw, 2.6rem);
}
.arc__stage { padding-top: 2.4rem; position: relative; }
.arc__stage::before {
  content: ''; position: absolute; top: 2px; left: 0;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--forest-deep);
  border: 1px solid rgba(250, 248, 239, 0.4);
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), transform 0.6s var(--ease);
}
.arc__stage.is-on::before {
  background: var(--brass-lit); border-color: var(--brass-lit);
  transform: scale(1.28);
}
.arc__yr {
  font-family: var(--label); font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--sage);
  transition: color 0.5s ease;
}
.arc__stage.is-on .arc__yr { color: var(--brass-lit); }
.arc__stage h3 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.25rem, 2vw, 1.72rem); line-height: 1.14;
  margin: 0.6rem 0 0.7rem;
  color: rgba(250, 248, 239, 0.55);
  transition: color 0.5s ease;
}
.arc__stage.is-on h3 { color: var(--paper); }
.arc__stage p {
  font-size: 0.95rem;
  color: rgba(250, 248, 239, 0.42);
  transition: color 0.5s ease;
}
.arc__stage.is-on p { color: rgba(250, 248, 239, 0.72); }

.arc__foot {
  margin-top: clamp(3rem, 7vh, 5rem);
  padding-top: 1.8rem;
  border-top: 1px solid rgba(250, 248, 239, 0.18);
  display: flex; flex-wrap: wrap; gap: 1.6rem 3rem;
  align-items: center; justify-content: space-between;
}
.arc__foot p {
  font-family: var(--display); font-style: italic;
  font-size: clamp(1.1rem, 1.9vw, 1.5rem);
  color: rgba(250, 248, 239, 0.82);
  max-width: 46ch;
}

@media (max-width: 900px) {
  .arc__stages { grid-template-columns: 1fr 1fr; gap: 2rem 1.4rem; }
}
@media (max-width: 560px) {
  .arc__stages { grid-template-columns: 1fr; }
  .arc__line { left: 5px; right: auto; top: 0; bottom: 0; width: 1px; height: auto; }
  .arc__line i { width: 100% !important; height: 0; transition: height 0.5s linear; }
  .arc__stage { padding: 0 0 1.8rem 2rem; }
  .arc__stage::before { top: 4px; }
}

/* ═══ PRICING ═══ */

.price__intro { max-width: 60ch; margin-bottom: clamp(2.5rem, 6vh, 4rem); }
.price__title {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(1.9rem, 4.6vw, 3.5rem); line-height: 1.06;
}
.price__title em { font-style: italic; color: var(--forest); }
.price__lede { margin-top: 1.2rem; color: #4a5647; max-width: 52ch; }

.price__consults {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}
.price-card {
  background: var(--paper);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: background 0.5s var(--ease);
}
.price-card:hover { background: var(--paper-warm); }
.price-card__k {
  font-family: var(--label); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--brass);
}
.price-card__fig {
  display: flex; align-items: baseline; gap: 0.6rem;
  margin: 1.1rem 0 1rem;
}
.price-card__fig b {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(3rem, 7vw, 5rem); line-height: 0.86;
  letter-spacing: -0.02em; color: var(--forest);
}
.price-card__fig span {
  font-family: var(--label); font-size: 0.66rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--moss);
}
.price-card > p { color: #4a5647; font-size: 0.99rem; max-width: 44ch; }
.price-card__list {
  list-style: none; margin-top: 1.5rem;
  display: grid; gap: 0.55rem;
  font-family: var(--label); font-size: 0.66rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--moss);
}
.price-card__list li { display: flex; gap: 0.65rem; }
.price-card__list li::before { content: '✻'; color: var(--brass); }
.price-card__go { margin-top: auto; padding-top: 1.8rem; }

.price__note {
  display: flex; gap: 0.9rem;
  margin-top: 1.6rem;
  font-style: italic; color: var(--moss);
  font-size: 0.97rem; max-width: 76ch;
}
.price__note span { color: var(--brass); font-style: normal; }

.price__projects { margin-top: clamp(3rem, 8vh, 5.5rem); }
.price__projhead {
  display: flex; flex-wrap: wrap; gap: 0.8rem 2.5rem;
  align-items: baseline;
  border-top: 1px solid var(--line);
  padding-top: 1.4rem; margin-bottom: 2rem;
}
.price__projhead p { color: var(--moss); font-style: italic; max-width: 52ch; }

.price__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.4vw, 1.8rem); }
.price-proj {
  border: 1px solid var(--line);
  padding: clamp(1.3rem, 2.4vw, 2rem);
  display: flex; flex-direction: column;
  position: relative;
  transition: border-color 0.5s var(--ease), transform 0.6s var(--ease);
}
.price-proj:hover { transform: translateY(-4px); border-color: var(--moss); }
.price-proj h3 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.3rem, 2.1vw, 1.7rem);
  text-transform: uppercase; letter-spacing: 0.03em;
  line-height: 1.08;
}
.price-proj__q {
  font-family: var(--label); font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brass); margin-top: 0.7rem;
}
.price-proj > p { margin-top: 0.9rem; color: #4a5647; font-size: 0.95rem; }
.price-proj__list {
  list-style: none; margin-top: 1.1rem;
  display: grid; gap: 0.42rem;
  font-family: var(--label); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--moss);
}
.price-proj__list li { display: flex; gap: 0.6rem; }
.price-proj__list li::before { content: '—'; color: var(--brass); }

/* the flagship: ongoing care */
.price-proj--flag {
  background: var(--forest-deep);
  border-color: var(--forest-deep);
  color: var(--paper);
}
.price-proj--flag > p { color: rgba(250, 248, 239, 0.76); }
.price-proj--flag .price-proj__list { color: var(--sage); }
.price-proj--flag .price-proj__q { color: var(--brass-lit); }
.price-proj--flag:hover { border-color: var(--brass); }
.price-proj__flag {
  position: absolute; top: 0; right: 0;
  font-family: var(--label); font-size: 0.52rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--brass); color: var(--paper);
  padding: 0.45rem 0.85rem;
}

@media (max-width: 900px) {
  .price__consults { grid-template-columns: 1fr; }
  .price__grid { grid-template-columns: 1fr; }
}

/* ═══ PORTFOLIO — pinned horizontal ═══ */

.folio { background: var(--forest-black); color: var(--paper); }
.folio__pin { position: relative; height: 420vh; }
.folio__sticky {
  position: sticky; top: 0;
  height: 100svh; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--head-h) + 3.6rem) 0 4.5rem;
}
.folio__bar {
  position: absolute; top: 0; left: 0; right: 0;
  padding: calc(var(--head-h) * 0.55 + 1.1rem) var(--gut) 0;
  display: flex; align-items: baseline; gap: 1.5rem;
  z-index: 3;
}
.folio__bar h2 {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1;
}
.folio__count {
  margin-left: auto;
  font-family: var(--label); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.2em; color: var(--brass-lit);
}
.folio__track {
  display: flex; gap: clamp(1rem, 3vw, 2.6rem);
  padding-inline: var(--gut);
  will-change: transform;
  align-items: center;
}
/* widths derive from viewport height so every plate fits the pinned frame */
.folio__item { flex: 0 0 auto; width: min(76vh, 48vw, 700px); }
.folio__item--tall { width: min(41vh, 30vw, 390px); }
.folio__frame {
  overflow: hidden; position: relative;
  aspect-ratio: 3 / 2;
  background: #223021;
}
.folio__item--tall .folio__frame { aspect-ratio: 2 / 3; }
.folio__frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease), filter 0.9s ease;
  filter: saturate(0.9) brightness(0.94);
}
.folio__item:hover .folio__frame img { transform: scale(1.06); filter: saturate(1.06) brightness(1); }
.folio__cap {
  display: flex; justify-content: space-between; gap: 1.2rem;
  padding-top: 1rem; align-items: baseline;
}
.folio__cap h3 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
}
.folio__cap .latin { font-size: 0.86rem; color: var(--sage); display: block; margin-top: 0.15rem; }
.folio__cap span {
  font-family: var(--label); font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brass); flex-shrink: 0;
}
.folio__end {
  flex: 0 0 auto; width: min(46vw, 460px);
  padding-inline: clamp(1rem, 3vw, 3rem);
}
.folio__end p {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 2.6rem); line-height: 1.14;
}
.folio__end .ulink { margin-top: 1.6rem; color: var(--brass-lit); }
.folio__prog {
  position: absolute; bottom: clamp(1.6rem, 5vh, 3rem);
  left: var(--gut); right: var(--gut);
  height: 1px; background: rgba(250, 248, 239, 0.18);
}
.folio__prog i { display: block; height: 100%; background: var(--brass-lit); width: 0; }

/* fallback: horizontal swipe on small screens */
@media (max-width: 860px) {
  .folio__pin { height: auto; }
  .folio__sticky { position: static; height: auto; padding-block: 6rem 3rem; }
  .folio__bar { position: static; padding: 0 var(--gut) 2rem; flex-wrap: wrap; }
  .folio__track {
    overflow-x: auto; scroll-snap-type: x mandatory;
    transform: none !important;
    padding-bottom: 1.5rem;
    -webkit-overflow-scrolling: touch;
  }
  .folio__item { scroll-snap-align: center; width: 78vw; }
  .folio__item--tall { width: 62vw; }
  .folio__prog { position: static; margin: 1.5rem var(--gut) 0; }
}

/* ═══ PHILOSOPHY split ═══ */

.philo { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.philo__media { position: relative; }
.philo__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.philo__badge {
  position: absolute; right: -1.5rem; bottom: -1.5rem;
  width: clamp(120px, 15vw, 176px); height: clamp(120px, 15vw, 176px);
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  animation: spin 28s linear infinite;
}
.philo__badge svg { width: 100%; height: 100%; overflow: visible; }
.philo__badge text { font-family: var(--label); font-size: 8.2px; font-weight: 500; letter-spacing: 0.22em; fill: var(--moss); text-transform: uppercase; }
.philo__badge img { position: absolute; width: 30%; animation: spin 28s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }

.philo__body h2 {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(2rem, 4.6vw, 3.6rem); line-height: 1.04;
  margin: 1.2rem 0 1.6rem;
}
.philo__body h2 em { font-style: italic; color: var(--forest); }
.philo__body p + p { margin-top: 1.1rem; }
.philo__body p { color: #48543f; max-width: 46ch; }

.tenets { list-style: none; margin-top: 2.4rem; display: grid; gap: 0; border-top: 1px solid var(--line); }
.tenets li { border-bottom: 1px solid var(--line); padding: 1.05rem 0; display: flex; gap: 1.2rem; align-items: baseline; transition: padding-left 0.5s var(--ease); }
.tenets li:hover { padding-left: 0.7rem; }
.tenets b {
  font-family: var(--label); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.2em; color: var(--brass); flex-shrink: 0; width: 2rem;
}
.tenets strong { font-family: var(--display); font-weight: 500; font-size: 1.16rem; letter-spacing: 0.06em; text-transform: uppercase; display: block; }
.tenets p { font-size: 0.95rem; color: #566150; margin-top: 0.2rem; max-width: 48ch; }

@media (max-width: 900px) { .philo { grid-template-columns: 1fr; } .philo__badge { right: 1rem; bottom: -2.2rem; } }

/* ═══ QUOTE band ═══ */

.quote { position: relative; overflow: hidden; }
.quote__bg { position: absolute; inset: 0; }
.quote__bg img { width: 100%; height: 100%; object-fit: cover; }
.quote__bg::after { content: ''; position: absolute; inset: 0; background: rgba(22, 33, 26, 0.72); }
.quote__in { position: relative; z-index: 1; text-align: center; color: var(--paper); padding-block: clamp(5rem, 15vh, 11rem); }
.quote blockquote {
  font-family: var(--display); font-weight: 300; font-style: italic;
  font-size: clamp(1.6rem, 4vw, 3.4rem); line-height: 1.2;
  max-width: 20ch; margin: 1.6rem auto 0;
}
.quote cite {
  display: block; margin-top: 2rem;
  font-family: var(--label); font-size: 0.64rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  font-style: normal; color: var(--brass-lit);
}
.quote__mark { width: 44px; margin: 0 auto; opacity: 0.85; }

/* ═══ ABOUT TRAY ═══ */

.tray { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 6vw, 5.5rem); align-items: start; }
.tray__media { position: sticky; top: calc(var(--head-h) + 2rem); }
.tray__media img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: center 22%; }
.tray__cap {
  display: flex; justify-content: space-between; gap: 1rem;
  padding-top: 0.9rem;
  font-family: var(--label); font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--moss);
}
.tray__body h2 {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(2.2rem, 5.4vw, 4.4rem); line-height: 0.98;
  margin: 1rem 0 1.8rem;
}
.tray__body h2 em { font-style: italic; color: var(--brass); }
.tray__body p { color: #48543f; max-width: 56ch; }
.tray__body p + p { margin-top: 1.15rem; }
.tray__body .dropcap::first-letter {
  font-family: var(--display); font-weight: 400;
  font-size: 4.1rem; float: left; line-height: 0.78;
  padding: 0.06em 0.14em 0 0; color: var(--forest);
}
.tray__facts {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
  margin-top: 2.4rem;
}
.tray__facts div { background: var(--paper); padding: 1.2rem 1.3rem; }
.sec--warm .tray__facts div { background: var(--paper-warm); }
.tray__facts dt {
  font-family: var(--label); font-size: 0.56rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass);
}
.tray__facts dd { font-family: var(--display); font-size: 1.5rem; font-weight: 400; margin-top: 0.35rem; line-height: 1.1; }
.tray__sig {
  margin-top: 2rem;
  font-family: var(--display); font-style: italic; font-size: 1.6rem;
  color: var(--forest); opacity: 0.85;
}
@media (max-width: 900px) { .tray { grid-template-columns: 1fr; } .tray__media { position: static; } .tray__facts { grid-template-columns: 1fr; } }

/* ═══ ALMANAC (the return-visit hook) ═══ */

.alm { position: relative; }
.alm__grid { display: grid; grid-template-columns: 200px 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); }
.alm__months {
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(250, 248, 239, 0.16);
}
.alm__m {
  text-align: left;
  padding: 0.62rem 0.2rem;
  border-bottom: 1px solid rgba(250, 248, 239, 0.16);
  font-family: var(--display); font-size: 1.02rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(250, 248, 239, 0.5);
  display: flex; align-items: center; gap: 0.6rem;
  transition: color 0.35s var(--ease), padding-left 0.45s var(--ease);
  position: relative;
}
.alm__m:hover { color: var(--paper); padding-left: 0.55rem; }
.alm__m.is-on { color: var(--brass-lit); padding-left: 0.55rem; }
.alm__m.is-on::before {
  content: ''; position: absolute; left: -0.7rem; top: 50%;
  width: 4px; height: 4px; margin-top: -2px; border-radius: 50%;
  background: var(--brass-lit);
}
.alm__m em {
  font-family: var(--label); font-size: 0.5rem; font-style: normal;
  font-weight: 600; letter-spacing: 0.14em; color: var(--terracotta);
  margin-left: auto;
}

.alm__panel { position: relative; min-height: 420px; }
.alm__season { font-family: var(--label); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: var(--brass-lit); }
.alm__title {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(2.2rem, 5.5vw, 4.4rem); line-height: 1;
  margin: 0.7rem 0 1.2rem;
}
.alm__note { font-size: 1.06rem; color: rgba(250, 248, 239, 0.8); max-width: 52ch; font-style: italic; }
.alm__cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); margin-top: 2.4rem; }
.alm__cols h4 {
  font-family: var(--label); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--sage);
  padding-bottom: 0.8rem; margin-bottom: 0.4rem;
  border-bottom: 1px solid rgba(250, 248, 239, 0.16);
}
.alm__cols ul { list-style: none; display: grid; }
.alm__cols li { padding: 0.8rem 0; border-bottom: 1px solid rgba(250, 248, 239, 0.09); }
.alm__cols strong { font-family: var(--display); font-weight: 500; font-size: 1.1rem; display: block; }
.alm__cols .latin { color: var(--sage); font-size: 0.86rem; }
.alm__cols p { font-size: 0.93rem; color: rgba(250, 248, 239, 0.62); margin-top: 0.15rem; }
.alm__fade { animation: almIn 0.65s var(--ease) both; }
@keyframes almIn { from { opacity: 0; transform: translateY(16px); } }

@media (max-width: 860px) {
  .alm__grid { grid-template-columns: 1fr; }
  .alm__months { flex-direction: row; overflow-x: auto; border-top: none; gap: 0.2rem; padding-bottom: 0.6rem; }
  .alm__m { border-bottom: none; flex-shrink: 0; padding: 0.5rem 0.7rem; font-size: 0.82rem; border: 1px solid rgba(250,248,239,0.16); }
  .alm__m em { display: none; }
  .alm__cols { grid-template-columns: 1fr; }
}

/* ═══ JOURNAL ═══ */

.jrnl__feature {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  margin-bottom: clamp(2.5rem, 6vh, 4.5rem);
  cursor: pointer;
}
.jrnl__feature .jrnl__img { aspect-ratio: 16 / 10; }
.jrnl__img { overflow: hidden; position: relative; background: var(--paper-deep); }
.jrnl__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s var(--ease), filter 0.9s ease; filter: saturate(0.94); }
.jrnl__feature:hover .jrnl__img img, .jrnl-card:hover .jrnl__img img { transform: scale(1.07); filter: saturate(1.05); }
.jrnl__meta {
  display: flex; gap: 1.2rem; align-items: center;
  font-family: var(--label); font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--moss);
}
.jrnl__meta .cat { color: var(--brass); }
.jrnl__meta i { width: 20px; height: 1px; background: var(--line); display: block; }
.jrnl__feature h3 {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(1.9rem, 4vw, 3.2rem); line-height: 1.04;
  margin: 1rem 0;
}
.jrnl__feature p { color: #4a5647; max-width: 46ch; }
.jrnl__feature .ulink { margin-top: 1.4rem; color: var(--forest); }

.jrnl__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 3vw, 2.6rem); }
.jrnl-card { text-align: left; display: flex; flex-direction: column; }
.jrnl-card .jrnl__img { aspect-ratio: 4 / 3; margin-bottom: 1.1rem; }
.jrnl-card h3 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.2rem, 1.9vw, 1.6rem); line-height: 1.14;
  margin: 0.7rem 0 0.5rem;
  transition: color 0.4s ease;
}
.jrnl-card:hover h3 { color: var(--forest); }
.jrnl-card p { font-size: 0.95rem; color: #566150; }
.jrnl-card__ln { margin-top: auto; padding-top: 1rem; }
.jrnl-card__ln span {
  font-family: var(--label); font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass);
}

@media (max-width: 900px) {
  .jrnl__feature { grid-template-columns: 1fr; }
  .jrnl__grid { grid-template-columns: 1fr; }
}

/* ═══ READER overlay ═══ */

.reader {
  position: fixed; inset: 0; z-index: 700;
  background: var(--paper);
  overflow-y: auto; overscroll-behavior: contain;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.85s var(--ease);
  pointer-events: none;
}
.reader.is-open { clip-path: inset(0 0 0 0); pointer-events: auto; }
.reader__prog {
  position: fixed; top: 0; left: 0; height: 2px;
  background: var(--brass); width: 0; z-index: 3;
  transition: width 0.1s linear;
}
.reader__close {
  position: fixed; top: 1.4rem; right: clamp(1rem, 4vw, 3rem); z-index: 4;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--forest); color: var(--paper);
  display: grid; place-items: center;
  transition: transform 0.5s var(--ease), background 0.4s;
}
.reader__close:hover { transform: rotate(90deg); background: var(--forest-black); }
.reader__hero { position: relative; height: 62svh; min-height: 380px; overflow: hidden; }
.reader__hero img { width: 100%; height: 100%; object-fit: cover; }
.reader__hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,33,26,0.35), rgba(22,33,26,0.75)); }
.reader__htxt {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: 0 var(--gut) clamp(2rem, 5vh, 3.5rem);
  max-width: var(--maxw); margin: 0 auto;
  color: var(--paper);
}
.reader__htxt h1 {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(2rem, 5.5vw, 4.4rem); line-height: 1;
  max-width: 18ch; margin-top: 1rem;
}
.reader__body {
  max-width: calc(68ch + var(--gut) * 2); margin: 0 auto;
  padding: clamp(2.5rem, 7vh, 5rem) var(--gut) clamp(4rem, 10vh, 8rem);
  font-size: 1.14rem; line-height: 1.78;
}
.reader__body > p + p { margin-top: 1.3rem; }
.reader__body .lede { font-size: 1.34rem; line-height: 1.55; color: var(--forest); font-style: italic; margin-bottom: 2rem; }
.reader__body h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.14;
  margin: 2.6rem 0 0.9rem;
}
.reader__body blockquote {
  margin: 2.2rem 0; padding-left: 1.6rem;
  border-left: 2px solid var(--brass);
  font-family: var(--display); font-style: italic;
  font-size: 1.5rem; line-height: 1.3; color: var(--forest);
}
.reader__body ul { margin: 1.2rem 0 1.2rem 0; list-style: none; display: grid; gap: 0.6rem; }
.reader__body li { padding-left: 1.5rem; position: relative; }
.reader__body li::before { content: '✻'; position: absolute; left: 0; color: var(--brass); font-size: 0.75rem; top: 0.36em; }
.reader__body em { color: var(--moss); }
.reader__end {
  margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: space-between;
}
.reader__end p { font-family: var(--display); font-style: italic; font-size: 1.24rem; color: var(--moss); }

/* ═══ FAQ ═══ */

.faq { border-top: 1px solid var(--line); }
.faq__row { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left;
  display: flex; align-items: flex-start; gap: clamp(1rem, 3vw, 2.4rem);
  padding: clamp(1.3rem, 2.6vw, 2rem) 0;
  transition: padding-left 0.5s var(--ease);
}
.faq__row:hover .faq__q { padding-left: 0.8rem; }
.faq__q b {
  font-family: var(--label); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.18em; color: var(--brass); padding-top: 0.55rem; flex-shrink: 0;
}
.faq__q h3 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.15rem, 2.3vw, 1.75rem); line-height: 1.2;
  flex: 1; transition: color 0.4s;
}
.faq__row.is-open .faq__q h3 { color: var(--forest); }
.faq__sign { position: relative; width: 16px; height: 16px; flex-shrink: 0; margin-top: 0.6rem; }
.faq__sign i { position: absolute; background: var(--forest); transition: transform 0.5s var(--ease), opacity 0.3s; }
.faq__sign i:first-child { top: 7.5px; left: 0; width: 16px; height: 1px; }
.faq__sign i:last-child { left: 7.5px; top: 0; width: 1px; height: 16px; }
.faq__row.is-open .faq__sign i:last-child { transform: rotate(90deg); opacity: 0; }
.faq__a { overflow: hidden; height: 0; transition: height 0.6s var(--ease); }
.faq__a > div {
  padding: 0 0 clamp(1.4rem, 3vw, 2.2rem) clamp(2rem, 5.4vw, 5rem);
  max-width: 68ch; color: #4a5647;
}
.faq__a p + p { margin-top: 0.9rem; }

/* ═══ CONTACT ═══ */

.cta { position: relative; overflow: hidden; }
.cta__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.cta h2 {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(2.4rem, 6.5vw, 5.4rem); line-height: 0.96;
  margin: 1.2rem 0 1.6rem;
}
.cta h2 em { font-style: italic; color: var(--brass-lit); }
.cta p { color: rgba(250, 248, 239, 0.78); max-width: 44ch; }
.cta__meta { margin-top: 2.6rem; display: grid; gap: 1.2rem; }
.cta__meta a, .cta__meta span {
  display: flex; gap: 1rem; align-items: baseline;
  font-family: var(--label); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--sage);
}
.cta__meta a strong, .cta__meta span strong {
  font-family: var(--prose); font-size: 1.05rem; font-weight: 400;
  letter-spacing: 0.01em; text-transform: none; color: var(--paper);
}
.cta__meta a:hover strong { color: var(--brass-lit); }
.cta__meta u { text-decoration: none; width: 5.5rem; flex-shrink: 0; }

.form { display: grid; gap: 1.4rem; }
.field { position: relative; }
.field input, .field select, .field textarea {
  width: 100%;
  background: transparent;
  border: none; border-bottom: 1px solid rgba(250, 248, 239, 0.28);
  padding: 1.5rem 0 0.7rem;
  font-family: var(--prose); font-size: 1.02rem;
  color: var(--paper);
  border-radius: 0;
  transition: border-color 0.4s ease;
}
.field select option { background: var(--forest-deep); color: var(--paper); }
.field textarea { resize: vertical; min-height: 92px; }
.field label {
  position: absolute; left: 0; top: 1.35rem;
  font-family: var(--label); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sage); pointer-events: none;
  transition: transform 0.45s var(--ease), color 0.35s ease, opacity 0.3s;
  transform-origin: left top;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-bottom-color: var(--brass-lit); }
.field input:focus + label, .field textarea:focus + label,
.field input:not(:placeholder-shown) + label, .field textarea:not(:placeholder-shown) + label,
.field select:focus + label, .field.filled label {
  transform: translateY(-1.35rem) scale(0.86); color: var(--brass-lit);
}
.field select { color: var(--paper); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.form__note { font-size: 0.82rem; color: var(--sage); font-style: italic; }
.form__ok {
  border: 1px solid var(--brass); padding: 1.2rem 1.4rem;
  color: var(--brass-lit); font-style: italic;
  display: none;
}
.form.sent .form__ok { display: block; animation: almIn 0.6s var(--ease) both; }

@media (max-width: 900px) { .cta__grid { grid-template-columns: 1fr; } .form__row { grid-template-columns: 1fr; } }

/* ═══ FOOTER ═══ */

.foot { background: var(--forest-black); color: var(--paper); padding-top: clamp(3rem, 7vh, 5rem); overflow: hidden; }
.foot__top { display: flex; flex-wrap: wrap; gap: 2.5rem; justify-content: space-between; align-items: flex-start; padding-bottom: 3rem; }
.foot__cols { display: flex; gap: clamp(2rem, 6vw, 5rem); flex-wrap: wrap; }
.foot__col h5 {
  font-family: var(--label); font-size: 0.56rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--brass);
  margin-bottom: 1rem;
}
.foot__col a, .foot__col p {
  display: block; font-size: 0.96rem; color: rgba(250, 248, 239, 0.72);
  padding-block: 0.28rem; transition: color 0.3s, transform 0.4s var(--ease);
}
.foot__col a:hover { color: var(--brass-lit); transform: translateX(4px); }
.foot__mark { width: 42px; opacity: 0.9; }

.foot__word {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(2.1rem, 12.6vw, 12rem);
  line-height: 0.86; letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(250, 248, 239, 0.13);
  padding-block: 0.2em 0.05em;
  text-align: center;
  user-select: none;
  transition: color 0.8s ease;
}
.foot:hover .foot__word { color: rgba(250, 248, 239, 0.2); }

.foot__bar {
  border-top: 1px solid rgba(250, 248, 239, 0.14);
  padding-block: 1.4rem 1.8rem;
  display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between;
  font-family: var(--label); font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage);
}
.foot__bar a:hover { color: var(--brass-lit); }

@media (max-width: 700px) {
  .sec-head__aside { display: none; }
  .sec-head { gap: 1rem; }
}

/* ═══ misc ═══ */

.to-top {
  position: fixed; right: clamp(1rem, 2.4vw, 2rem); bottom: clamp(1rem, 2.4vw, 2rem);
  z-index: 450;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--forest); color: var(--paper);
  display: grid; place-items: center;
  opacity: 0; transform: translateY(14px) scale(0.85); pointer-events: none;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), background 0.3s;
}
.to-top.is-on { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--brass); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .rise, .unveil img, .unveil > .unveil__in { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .rv > span { transform: none !important; }
  .ethos__body .w { color: var(--ink) !important; }
  .cursor, .cursor-dot { display: none; }
}
