/* Direction C — Verdant
   Rainforest quiet. Aesop-tonal, generous vertical space, botanical hairlines.
   Composition register: cinematic still. Fewer, larger moments per viewport. */

:root {
  --forest: #1B3A2F;
  --forest-2: #1F4335;
  --forest-3: #163127;
  --sage: #7B8A6E;
  --sage-soft: #94A187;
  --bone: #EFE9D9;
  --bone-60: rgba(239, 233, 217, 0.62);
  --bone-40: rgba(239, 233, 217, 0.42);
  --bone-20: rgba(239, 233, 217, 0.20);
  --brass: #A08654;
  --ink: #0F1512;
  --ink-60: rgba(15, 21, 18, 0.62);
  --ink-40: rgba(15, 21, 18, 0.42);
  --rule: rgba(239, 233, 217, 0.13);
  --rule-ink: rgba(15, 21, 18, 0.14);
}

body {
  background: var(--forest);
  color: var(--bone);
  font-family: var(--font-serif);
  font-optical-sizing: auto;
  font-weight: 380;
  line-height: 1.6;
}

/* ------ Preview note ------ */
.notebar {
  position: sticky; top: 0; z-index: 20;
  background: var(--forest);
  border-bottom: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--bone-60);
  padding: 10px clamp(24px, 5vw, 64px);
  display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center;
}
.notebar .tag { color: var(--brass); }

/* ------ Nav ------ */
.nav {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px;
  padding: 26px clamp(24px, 5vw, 64px);
  border-bottom: 1px solid var(--rule);
}
.nav .mark { font-family: var(--font-display); font-weight: 500; font-size: 18px; letter-spacing: -0.02em; color: var(--bone); }
.nav .mark::after { content: ''; display: inline-block; width: 6px; height: 6px; margin-left: 8px; background: var(--brass); border-radius: 999px; transform: translateY(-3px); }
.nav-links { display: flex; align-items: center; gap: 14px; color: var(--bone-60); }
.nav-links a { transition: color 250ms var(--ease-out); }
.nav-links a:hover, .nav-links a[aria-current] { color: var(--bone); }
.nav-links a[aria-current]::after { content: ''; display: block; height: 1px; background: var(--brass); margin-top: 4px; }
.nav-links .dot { width: 3px; height: 3px; background: var(--bone-40); border-radius: 999px; display: inline-block; }

/* ------ Section frame ------ */
.section {
  padding: clamp(120px, 18vh, 220px) clamp(24px, 5vw, 64px);
  border-bottom: 1px solid var(--rule);
}
/* Heading carries its own weight. */
.section-head {
  margin: 0 0 clamp(72px, 12vh, 140px) 0;
  max-width: 72ch;
}
.section-head .title {
  font-family: var(--font-serif); font-weight: 340; font-style: italic;
  font-size: clamp(34px, 3.8vw, 54px); line-height: 1.15; letter-spacing: -0.015em;
  color: var(--bone); max-width: 28ch; margin: 0;
  font-variation-settings: 'SOFT' 60;
}

/* Sample flag on placeholder commerce data. */
.sample-tag {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 12px;
  padding-left: 26px; position: relative;
}
.sample-tag::before {
  content: ''; position: absolute; left: 0; top: 0.6em;
  width: 18px; height: 1px; background: var(--brass);
}

/* ------ Hero ------
   Verdant hero: single-column offset from a structural botanical hairline gutter.
   Not a 2-col split, not a floating right-side decoration. */
.hero {
  padding: clamp(80px, 14vh, 180px) clamp(24px, 5vw, 64px) clamp(120px, 18vh, 200px);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.hero-body {
  position: relative; z-index: 1;
  max-width: 68ch;
  margin: 0 auto 0 clamp(64px, 12vw, 200px);
  display: flex; flex-direction: column;
  gap: clamp(64px, 10vh, 120px);
}
.hero-body .lede {
  font-family: var(--font-serif); font-style: italic; font-weight: 300;
  font-size: clamp(34px, 4.2vw, 64px); line-height: 1.15; letter-spacing: -0.015em; color: var(--bone);
  margin: 0; max-width: 22ch;
  font-variation-settings: 'SOFT' 80;
}

/* Botanical gutter — structural, not floating decoration. Vertical hairline on the left of the hero. */
.hero .botanical {
  position: absolute;
  top: clamp(80px, 14vh, 180px); bottom: clamp(120px, 18vh, 200px);
  left: clamp(28px, 5vw, 72px);
  width: 42px;
  opacity: 0.55;
  pointer-events: none; z-index: 0;
}
.hero .botanical svg { width: 100%; height: 100%; display: block; }

/* Wordmark stack — Verdant's version is one column, not a 3-col row.
   Each wordmark sits on its own line with a museum-plaque footnote beneath. */
.wordmark-stack {
  display: flex; flex-direction: column;
  gap: clamp(40px, 6vh, 72px);
  border-top: 1px solid var(--rule);
  padding-top: clamp(40px, 6vh, 72px);
  position: relative; z-index: 1;
}
.wordmark-row {
  display: flex; flex-direction: column;
  gap: 12px;
}
.wordmark-row .mark {
  font-family: var(--font-display); color: var(--bone); margin: 0;
  font-size: clamp(96px, 18vw, 260px); line-height: 0.86; letter-spacing: -0.055em; font-weight: 380;
  font-variation-settings: 'wdth' 100, 'opsz' 96;
}
.wordmark-row .plaque {
  display: flex; flex-wrap: wrap; gap: 4px 24px;
  padding-top: 10px;
  border-top: 1px solid var(--rule);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bone-40);
}
.wordmark-row .plaque .idx { color: var(--brass); }
.wordmark-row .plaque strong { color: var(--bone); font-weight: 400; }

/* ------ Product moment ------
   Verdant's product is a single-column cinematic still: header on top,
   full-width landscape photo in the middle, a horizontal plaque strip below.
   Structurally distinct from Midnight's 3-column plate. */
.product {
  padding: clamp(120px, 18vh, 200px) clamp(24px, 5vw, 64px);
  border-bottom: 1px solid var(--rule);
  background: var(--forest);
  display: flex; flex-direction: column;
  gap: clamp(48px, 8vh, 96px);
}
.product-header {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 5fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: baseline;
  max-width: 1120px; width: 100%; margin: 0 auto;
}
.product-header h2 {
  font-family: var(--font-serif); font-weight: 340; font-style: italic; margin: 0;
  font-size: clamp(34px, 3.6vw, 52px); line-height: 1.1; letter-spacing: -0.015em; color: var(--bone); max-width: 22ch;
  font-variation-settings: 'SOFT' 80;
}
.product-header .cap { font-family: var(--font-serif); font-size: clamp(16px, 1.15vw, 18px); color: var(--bone-60); line-height: 1.6; max-width: 46ch; margin: 0; }

/* Verdant's product frame is landscape and full-width — structurally distinct
   from Midnight's 3-column plate. Photo carries its own edge; no vignette. */
.product-frame {
  aspect-ratio: 16 / 9;
  width: 100%;
  background: var(--forest-3);
  overflow: hidden;
  outline: 1px solid var(--rule);
}
.product-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }

/* Horizontal spec strip below the photo — one row on desktop, wraps on narrow. */
.product-plaque {
  max-width: 1120px; margin: 0 auto; width: 100%;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 20px 0;
  display: flex; flex-wrap: wrap;
  gap: 12px clamp(24px, 4vw, 48px);
  font-family: var(--font-mono); font-size: 11.5px; line-height: 1.6; color: var(--bone);
}
.product-plaque .lot { display: flex; gap: 8px; align-items: baseline; }
.product-plaque .k { color: var(--bone-40); letter-spacing: 0.14em; text-transform: uppercase; font-size: 10.5px; }
.product-plaque .v { color: var(--bone); }
.product-plaque .note { margin-left: auto; color: var(--brass); letter-spacing: 0.16em; text-transform: uppercase; font-size: 10.5px; }

/* ------ Palette board ------ */
.palette-board {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: clamp(14px, 1.6vw, 24px);
}
.swatch { display: flex; flex-direction: column; gap: 16px; }
.swatch .chip {
  aspect-ratio: 200 / 290;
  min-height: 290px;
  width: 100%;
  position: relative;
  overflow: hidden;
  outline: 1px solid var(--rule);
}
.swatch .chip[data-c="forest"] { background: #1B3A2F; }
.swatch .chip[data-c="sage"] { background: #7B8A6E; }
.swatch .chip[data-c="bone"] { background: #EFE9D9; }
.swatch .chip[data-c="brass"] { background: #A08654; }
.swatch .chip[data-c="ink"] { background: #0F1512; }
/* No overlay — the chip renders the exact hex. */
.swatch .name { font-family: var(--font-serif); font-weight: 380; font-size: 19px; letter-spacing: -0.01em; color: var(--bone); }
.swatch .hex { font-family: var(--font-mono); font-size: 12px; color: var(--bone-60); }
.swatch .ref { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bone-40); line-height: 1.6; }

/* ------ Typography specimen ------ */
.type-specimen { display: grid; gap: clamp(72px, 12vh, 140px); }
.type-row {
  display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 9fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
  padding-top: clamp(32px, 6vh, 64px);
  border-top: 1px solid var(--rule);
}
.type-row:first-child { border-top: 0; padding-top: 0; }
.type-row .side { display: flex; flex-direction: column; gap: 14px; position: sticky; top: 60px; }
.type-row .side .kicker { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass); }
.type-row .side .face { font-family: var(--font-serif); font-style: italic; font-weight: 340; font-size: 22px; letter-spacing: -0.01em; color: var(--bone); }
.type-row .side .spec { font-family: var(--font-mono); font-size: 11px; color: var(--bone-60); line-height: 1.7; }

.spec-display {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(56px, 8vw, 120px); line-height: 0.95; letter-spacing: -0.03em; color: var(--bone); margin: 0;
  font-variation-settings: 'wdth' 100, 'opsz' 84;
}
.spec-display .amp { color: var(--brass); }
.spec-serif {
  font-family: var(--font-serif); font-weight: 380; font-style: italic;
  font-size: clamp(28px, 3.4vw, 46px); line-height: 1.2; letter-spacing: -0.015em; color: var(--bone);
  margin: 0; max-width: 28ch;
  font-variation-settings: 'SOFT' 80;
}
.spec-mono {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 6px 40px;
  font-family: var(--font-mono); font-size: 13.5px; line-height: 1.7; color: var(--bone);
}
.spec-mono .k { color: var(--bone-40); letter-spacing: 0.14em; text-transform: uppercase; font-size: 11px; padding-top: 2px; }
.spec-mono .v { color: var(--bone); }

/* ------ Definition lines ------ */
.defs {
  display: grid; gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.def {
  display: grid; grid-template-columns: 84px 1fr;
  gap: clamp(20px, 4vw, 48px);
  padding: clamp(48px, 8vh, 84px) 0;
}
.def + .def { border-top: 1px solid var(--rule); }
.def .idx { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bone-40); }
.def .idx small { display: block; margin-top: 8px; color: var(--brass); }
.def .line {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(52px, 8vw, 120px); line-height: 0.95; letter-spacing: -0.03em; color: var(--bone); margin: 0;
  font-variation-settings: 'wdth' 100, 'opsz' 96;
}
.def .line .amp { color: var(--brass); }
.def .line.italic {
  font-family: var(--font-serif); font-style: italic; font-weight: 300; letter-spacing: -0.015em;
  font-size: clamp(46px, 7vw, 106px); line-height: 1.0;
  font-variation-settings: 'SOFT' 80;
}
.def .gloss { font-family: var(--font-serif); font-size: 18px; color: var(--bone-60); margin-top: 20px; max-width: 46ch; }

/* ------ Hangtag ------ */
.hangtag-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 96px); align-items: center; }
.hangtag-frame {
  aspect-ratio: 5 / 8;
  padding: clamp(40px, 6vw, 72px);
  display: grid; place-items: center;
  background: var(--forest-3);
  outline: 1px solid var(--rule);
}
.hangtag-frame svg { width: 100%; max-width: 320px; filter: drop-shadow(0 24px 40px rgba(0,0,0,0.28)); }
.hangtag-cap { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bone-40); text-align: center; margin-top: 20px; }

/* ------ Instagram grid ------ */
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; outline: 1px solid var(--rule); }
.ig-tile {
  aspect-ratio: 1 / 1;
  position: relative; overflow: hidden;
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 12px; text-align: center;
}
.ig-tile[data-kind="wordmark"] { background: var(--forest); color: var(--bone); }
.ig-tile[data-kind="wordmark"] .mark { font-family: var(--font-display); color: var(--bone); font-size: clamp(46px, 8vw, 92px); letter-spacing: -0.04em; font-weight: 400; line-height: 1; }
.ig-tile[data-kind="wordmark"] .tag { position: absolute; top: 14px; left: 14px; color: var(--bone-60); }
.ig-tile[data-kind="photo"] { background: var(--forest-3); }
.ig-tile[data-kind="photo"] img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ig-tile[data-kind="photo"] .tag { position: absolute; bottom: 14px; left: 14px; background: rgba(15,21,18,0.75); color: var(--bone); padding: 6px 8px; }
.ig-tile[data-kind="botanical"] { background: var(--forest-2); color: var(--bone); }
.ig-tile[data-kind="botanical"] svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.ig-tile[data-kind="botanical"] .tag { position: absolute; bottom: 14px; left: 14px; color: var(--bone-60); }
.ig-tile[data-kind="paper"] { background: var(--bone); color: var(--ink); padding: 0; }
.ig-tile[data-kind="paper"] .card { padding: 24px; display: flex; flex-direction: column; justify-content: space-between; height: 100%; width: 100%; text-align: left; }
.ig-tile[data-kind="paper"] .card p { font-family: var(--font-serif); font-style: italic; font-size: 22px; line-height: 1.2; letter-spacing: -0.01em; color: var(--ink); margin: 0; text-transform: none; font-variation-settings: 'SOFT' 60; }
.ig-tile[data-kind="paper"] .card .foot { color: var(--ink-40); font-size: 10px; }
.ig-tile[data-kind="sage"] { background: var(--sage); color: var(--ink); }
.ig-tile[data-kind="brass"] { background: var(--brass); color: var(--ink); }
.ig-tile[data-kind="ink"] { background: var(--ink); color: var(--bone); }

/* ------ Why ------ */
.why {
  padding: clamp(120px, 18vh, 200px) clamp(24px, 5vw, 64px);
  margin-left: clamp(0px, 12vw, 200px);
  max-width: 46ch;
}
.why blockquote {
  font-family: var(--font-serif); font-style: italic; font-weight: 300;
  font-size: clamp(28px, 3vw, 42px); line-height: 1.3; letter-spacing: -0.015em; color: var(--bone);
  margin: 0; max-width: 36ch;
  font-variation-settings: 'SOFT' 80;
}
.why cite { display: block; margin-top: 24px; font-style: normal; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--bone-40); }

/* ------ Footer ------ */
.foot {
  padding: 28px clamp(24px, 5vw, 64px);
  display: grid; grid-template-columns: 1fr auto; gap: 24px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bone-40);
}
.foot .name { color: var(--bone); }

/* ------ Responsive ------ */
@media (max-width: 1100px) {
  .palette-board { grid-template-columns: repeat(3, 1fr); }
  .product-header { grid-template-columns: 1fr; gap: 20px; }
  .type-row .side { position: static; }
}
@media (max-width: 720px) {
  .notebar { grid-template-columns: 1fr; gap: 6px; }
  .nav { grid-template-columns: 1fr; gap: 12px; padding: 16px 20px; }
  .nav-links { flex-wrap: wrap; }
  .palette-board { grid-template-columns: repeat(2, 1fr); }
  .wordmark-row { gap: 10px; }
  .wordmark-row .mark { font-size: clamp(72px, 24vw, 150px); }
  .hero-body { margin-left: 0; }
  .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
  .hangtag-grid { grid-template-columns: 1fr; }
  .why { grid-template-columns: 1fr; gap: 20px; }
  .type-row { grid-template-columns: 1fr; gap: 20px; }
  .foot { grid-template-columns: 1fr; gap: 6px; padding: 20px; }
  .spec-mono { grid-template-columns: 1fr; }
  .hero .botanical { display: none; }
}
