/* ==========================================================================
   Petal & Stem - demonstration build by NH Media Web
   Self-hosted fonts, self-hosted imagery, zero external requests.
   ========================================================================== */

/* ---------- Fonts ---------- */
@font-face {
  font-family: 'Fraunces';
  src: url('fonts/fraunces-latin-var.woff2') format('woff2');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('fonts/manrope-latin-var.woff2') format('woff2');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --green:        #1F3D2B;
  --green-deep:   #16301F;
  --green-deeper: #102518;
  --green-ink:    #0C1D13;
  --blush:        #E8B4B8;
  --blush-soft:   #F5E7E4;
  --cream:        #FAF6F0;
  --cream-warm:   #F3ECE1;
  --terra:        #C4663E;
  --terra-ink:    #A8502C;

  --ink:          #16241B;
  --ink-soft:     #4A5B4F;
  --on-dark:      #F3EEE6;
  --on-dark-soft: #C3CFC3;

  --line:         rgba(31, 61, 43, .14);
  --line-dark:    rgba(232, 180, 184, .20);

  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --body: 'Manrope', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --wrap: 1240px;
  --pad: clamp(1.25rem, 4.4vw, 3.25rem);
  --sec: clamp(4.5rem, 9vw, 8.5rem);
  --r: 4px;
  --r-lg: 10px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-weight: 420;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { margin: 0; font-family: var(--display); font-weight: 550; line-height: 1.06; letter-spacing: -.015em; font-optical-sizing: auto; }
h1 em, h2 em, h3 em, .brand__word em { font-style: normal; color: var(--terra); }
p { margin: 0 0 1.05em; }
ul, ol, dl, dd { margin: 0; padding: 0; }
li { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--terra-ink);
  outline-offset: 3px;
  border-radius: 2px;
}
.section--deep :focus-visible,
.section--deeper :focus-visible,
.footer :focus-visible,
.season :focus-visible { outline-color: var(--blush); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--green); color: var(--cream);
  padding: .85rem 1.4rem; font-size: .875rem; letter-spacing: .06em;
}
.skip:focus { left: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }

/* ---------- Shared type ---------- */
.label {
  display: inline-flex; align-items: center; gap: .8rem;
  font-size: .8125rem; font-weight: 650; letter-spacing: .2em; text-transform: uppercase;
  color: var(--terra-ink); margin: 0 0 1.35rem;
}
.label::before { content: ""; width: 28px; height: 1px; background: currentColor; opacity: .6; }
.label--light { color: var(--blush); }

.head { max-width: 44rem; margin-bottom: clamp(2.75rem, 5vw, 4.25rem); }
.head--center { margin-inline: auto; text-align: center; }
.head--center .label { justify-content: center; }
.head__title {
  font-size: clamp(2.125rem, 4.3vw, 3.25rem);
  font-variation-settings: "SOFT" 34, "WONK" 1;
  margin-bottom: 1.1rem;
}
.head__lede { font-size: clamp(1.0625rem, 1.35vw, 1.15rem); color: var(--ink-soft); margin: 0; }
.head__lede--light { color: var(--on-dark-soft); }

.token {
  display: inline-block;
  font-family: var(--body);
  font-size: .78em; font-weight: 700; letter-spacing: .05em;
  color: var(--terra-ink);
  background: rgba(196, 102, 62, .10);
  border: 1px dashed rgba(196, 102, 62, .55);
  border-radius: 3px;
  padding: .1em .5em;
  line-height: 1.5;
}
.section--deep .token, .section--deeper .token, .footer .token, .season .token {
  color: var(--blush);
  background: rgba(232, 180, 184, .10);
  border-color: rgba(232, 180, 184, .45);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-size: .9375rem; font-weight: 650; letter-spacing: .01em;
  text-decoration: none; cursor: pointer;
  padding: 1rem 1.75rem;
  border-radius: 999px; border: 1px solid transparent;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--solid { background: var(--green); color: var(--cream); }
.btn--solid:hover { background: var(--green-ink); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--green); border-color: rgba(31, 61, 43, .34); }
.btn--ghost:hover { background: rgba(31, 61, 43, .07); border-color: var(--green); transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; }

.link {
  display: inline-flex; align-items: center; gap: .65rem;
  font-size: .875rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  text-decoration: none; color: inherit;
}
.link svg { width: 26px; height: 12px; transition: transform .35s var(--ease); }
.link:hover svg { transform: translateX(6px); }

/* ---------- Header ---------- */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 100;
  transition: background .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__inner {
  width: 100%; max-width: var(--wrap); margin-inline: auto;
  padding: 1.1rem var(--pad);
  display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.5rem);
}
.nav.is-stuck {
  background: rgba(250, 246, 240, .93);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 40px -28px rgba(22, 36, 27, .55);
}

.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--green); }
.brand__mark { width: 30px; height: 30px; flex: none; }
.brand__word {
  font-family: var(--display); font-size: 1.3125rem; font-weight: 600;
  letter-spacing: -.01em; white-space: nowrap;
  font-variation-settings: "SOFT" 40, "WONK" 1;
}

.nav__links { display: flex; gap: clamp(1rem, 2.1vw, 1.9rem); margin-left: auto; }
.nav__links a {
  position: relative; text-decoration: none;
  font-size: .875rem; font-weight: 600; letter-spacing: .02em; color: var(--ink);
  padding: .35rem 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--terra); transition: width .35s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

.nav__call {
  padding: .7rem 1.25rem; font-size: .875rem;
  background: var(--green); color: var(--cream);
}
.nav__call:hover { background: var(--green-ink); transform: translateY(-2px); }

.nav__toggle {
  display: none; margin-left: auto;
  width: 46px; height: 46px; padding: 0;
  background: transparent; border: 1px solid rgba(31, 61, 43, .28); border-radius: 999px;
  cursor: pointer;
}
.nav__toggle span {
  display: block; width: 18px; height: 1.5px; margin: 3.5px auto;
  background: var(--green); transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate;
  min-height: 100vh; min-height: 100svh;
  display: grid; align-items: center;
  background: linear-gradient(160deg, var(--cream-warm), var(--cream));
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -1; background: var(--cream-warm); }
.hero__img {
  width: 100%; height: 100%; object-fit: cover; object-position: 62% 45%;
  animation: kenburns 28s var(--ease) infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to   { transform: scale(1.13) translate3d(-1.6%, -1.4%, 0); }
}
.hero__wash {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg,
      rgba(250, 246, 240, .99) 0%,
      rgba(250, 246, 240, .975) 36%,
      rgba(250, 246, 240, .93) 47%,
      rgba(250, 246, 240, .42) 63%,
      rgba(250, 246, 240, .03) 79%),
    linear-gradient(to top, rgba(250, 246, 240, .55), rgba(250, 246, 240, 0) 30%);
}
.hero__body { width: 100%; max-width: var(--wrap); margin-inline: auto; padding: 8.5rem var(--pad) 5rem; }
.hero__panel { max-width: 36rem; }
.hero__title {
  font-size: clamp(2.625rem, 6.1vw, 4.5rem);
  line-height: 1.02;
  font-variation-settings: "SOFT" 44, "WONK" 1;
  margin-bottom: 1.6rem;
}
.hero__title span {
  display: inline-block;
  opacity: 0; transform: translateY(30px);
  animation: wordIn .95s var(--ease) forwards;
}
.hero__title .accent { color: var(--terra); }
.hero__title span:nth-child(1) { animation-delay: .12s; }
.hero__title span:nth-child(2) { animation-delay: .20s; }
.hero__title span:nth-child(3) { animation-delay: .28s; }
.hero__title span:nth-child(4) { animation-delay: .36s; }
.hero__title span:nth-child(5) { animation-delay: .46s; }
.hero__title span:nth-child(6) { animation-delay: .54s; }
@keyframes wordIn { to { opacity: 1; transform: none; } }

.hero .label, .hero__lede, .hero__actions, .hero__note {
  opacity: 0; transform: translateY(18px);
  animation: wordIn .9s var(--ease) forwards;
}
.hero .label { animation-delay: .05s; }
.hero__lede { animation-delay: .62s; font-size: clamp(1.0625rem, 1.4vw, 1.1875rem); color: var(--ink-soft); max-width: 31rem; margin-bottom: 2.1rem; }
.hero__actions { animation-delay: .72s; display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 2.1rem; }
.hero__note { animation-delay: .82s; font-size: .9375rem; color: var(--ink-soft); max-width: 29rem; margin: 0; }
.hero__note .token { margin-right: .45rem; }

/* ---------- In season: the specimen ledger ----------
   Static by default. Attention (hover or keyboard focus) tints the drawing to
   the stem's own hue and swaps the form label for a handling note. Nothing
   loops, nothing moves on its own. */
.season {
  --sep: rgba(232, 180, 184, .14);
  background: var(--green);
  color: var(--on-dark);
  padding: clamp(3.25rem, 5.5vw, 4.75rem) 0;
}

.season__head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: .9rem 2.5rem;
  padding-bottom: clamp(1.1rem, 2vw, 1.6rem);
  border-bottom: 1px solid var(--sep);
  margin-bottom: clamp(1.6rem, 2.8vw, 2.4rem);
}
.season__head .label { margin-bottom: .85rem; }
.season__title {
  font-size: clamp(1.625rem, 2.9vw, 2.375rem);
  font-variation-settings: "SOFT" 34, "WONK" 1;
  color: var(--cream);
  max-width: 24ch; text-wrap: balance;
}
.season__stamp {
  display: flex; align-items: center; gap: .55rem; flex-wrap: wrap;
  margin: 0 0 .3rem;
  font-size: .75rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase;
  color: var(--on-dark-soft);
}

/* Specimen row */
.stems {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  row-gap: clamp(1.6rem, 3vw, 2.25rem);
}
.stem {
  --hue: var(--blush);
  padding: 0 clamp(.8rem, 1.25vw, 1.3rem);
  border-left: 1px solid var(--sep);
}
.stem:nth-child(6n + 1) { border-left-color: transparent; padding-left: 0; }

.stem--dahlia     { --hue: #D97A4A; }
.stem--eucalyptus { --hue: #A9CBBE; }
.stem--rose       { --hue: #E8B4B8; }
.stem--ranunculus { --hue: #F0D9BF; }
.stem--sweetpea   { --hue: #DDA9C3; }
.stem--scabiosa   { --hue: #D6C2A2; }

.stem__link {
  display: grid; gap: .5rem; justify-items: start; align-content: start;
  height: 100%; text-decoration: none; color: inherit;
}

.stem__art {
  width: clamp(56px, 5.6vw, 78px);
  margin-bottom: .45rem;
  color: rgba(195, 207, 195, .56);
  transition: color .55s var(--ease), transform .55s var(--ease);
}
.stem__art svg { width: 100%; height: auto; }
.sp-line { fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.sp-leaf { fill: currentColor; fill-opacity: .13; }
.sp-dot  { fill: currentColor; fill-opacity: .6; stroke: none; }

.stem__name {
  font-family: var(--display);
  font-size: clamp(1.0625rem, 1.2vw, 1.1875rem);
  font-weight: 560; line-height: 1.16; letter-spacing: -.01em;
  font-variation-settings: "SOFT" 36, "WONK" 1;
  color: var(--cream);
}
.stem__name svg {
  display: inline-block; vertical-align: middle;
  width: 17px; height: 9px; margin-left: .4rem;
  color: var(--hue); opacity: 0; transform: translateX(-5px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.stem__latin {
  font-size: .6875rem; letter-spacing: .08em; line-height: 1.35;
  color: rgba(195, 207, 195, .82);
}
.stem__rule {
  display: block; width: 22px; height: 2px; margin: .35rem 0 .1rem;
  background: rgba(195, 207, 195, .3);
  transition: width .5s var(--ease), background-color .5s var(--ease);
}

/* Form label and handling note share one cell, so nothing shifts on reveal. */
.stem__swap { display: grid; }
.stem__swap > * { grid-area: 1 / 1; transition: opacity .38s var(--ease), transform .38s var(--ease); }
.stem__form {
  font-size: .6875rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(232, 180, 184, .8);
}
.stem__note {
  font-size: .8125rem; line-height: 1.5; color: var(--on-dark-soft);
  opacity: 0; transform: translateY(5px);
}

.stem__link:hover .stem__art,
.stem__link:focus-visible .stem__art { color: var(--hue); transform: translateY(-3px); }
.stem__link:hover .stem__rule,
.stem__link:focus-visible .stem__rule { width: 100%; background-color: var(--hue); }
.stem__link:hover .stem__name svg,
.stem__link:focus-visible .stem__name svg { opacity: 1; transform: none; }
.stem__link:hover .stem__form,
.stem__link:focus-visible .stem__form { opacity: 0; transform: translateY(-5px); }
.stem__link:hover .stem__note,
.stem__link:focus-visible .stem__note { opacity: 1; transform: none; }

.season__foot {
  max-width: 44rem;
  margin: clamp(1.6rem, 2.8vw, 2.4rem) 0 0;
  padding-top: clamp(1.1rem, 2vw, 1.5rem);
  border-top: 1px solid var(--sep);
  font-size: .9375rem; color: var(--on-dark-soft);
}
.season__foot .token { margin-left: .15rem; }

/* Where there is no pointer to hover with, the ledger simply shows everything. */
@media (hover: none), (max-width: 560px) {
  .stem__art { color: var(--hue); }
  .stem__rule { width: 100%; background-color: var(--hue); }
  .stem__swap { display: block; }
  .stem__swap > * { transition: none; }
  .stem__form { display: block; margin-bottom: .3rem; }
  .stem__note { opacity: 1; transform: none; }
  .stem__name svg { display: none; }
}

/* ---------- Section shells ---------- */
.section { padding: var(--sec) 0; position: relative; }
.section--cream { background: var(--cream); }
.section--cream::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E");
}
.section--cream > .wrap { position: relative; }
.section--blush { background: var(--blush-soft); }
.section--deep { background: var(--green); color: var(--on-dark); }
.section--deeper { background: var(--green-deep); color: var(--on-dark); }
.section--deep h2, .section--deeper h2, .section--deep h3, .section--deeper h3 { color: var(--cream); }
.dotted::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(232, 180, 184, .16) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 78% 62% at 50% 42%, #000 32%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 78% 62% at 50% 42%, #000 32%, transparent 78%);
}
.dotted > .wrap { position: relative; }

/* ---------- Offerings ---------- */
.offers {
  display: grid;
  grid-template-columns: 1.28fr 1fr 1fr;
  grid-auto-rows: minmax(0, auto);
  gap: clamp(1rem, 1.6vw, 1.5rem);
}
.offer {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.offer h3 {
  font-size: 1.375rem; font-variation-settings: "SOFT" 36, "WONK" 1;
  margin-bottom: .7rem;
}
.offer p { font-size: 1rem; }

.offer--feature {
  grid-column: 1; grid-row: 1 / span 2;
  min-height: 520px;
  display: flex; align-items: flex-end;
  color: var(--cream);
  background: var(--green);
}
.offer--feature .offer__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.offer--feature:hover .offer__img { transform: scale(1.05); }
.offer__veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12, 29, 19, .95) 6%, rgba(16, 37, 24, .72) 42%, rgba(16, 37, 24, .18) 78%);
}
.offer__text { position: relative; padding: clamp(1.6rem, 2.4vw, 2.4rem); }
.offer__text h3 { color: var(--cream); font-size: clamp(1.5rem, 2.1vw, 1.875rem); }
.offer__text p { color: rgba(243, 238, 230, .88); font-size: 1rem; margin-bottom: 1.4rem; }
.offer__text .link { color: var(--blush); }
.offer__text .tag {
  display: inline-block;
  font-size: .6875rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--green-ink); background: var(--blush);
  padding: .32rem .8rem; border-radius: 999px;
  margin: 0 0 1rem;
}

.offer--card {
  background: #fff;
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 2.1vw, 2.1rem);
  display: flex; flex-direction: column;
}
.offer--card:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -34px rgba(22, 36, 27, .5); }
.offer--card:nth-of-type(2) { grid-column: 2; grid-row: 1; }
.offer--card:nth-of-type(3) { grid-column: 3; grid-row: 1; }
.offer__tile {
  width: 56px; height: 56px; border-radius: 14px; margin-bottom: 1.3rem;
  display: grid; place-items: center;
  background: rgba(196, 102, 62, .11); color: var(--terra-ink);
}
.offer__tile svg { width: 30px; height: 30px; }
.offer__meta { margin: auto 0 0; padding-top: 1.1rem; }

.offer--wide {
  grid-column: 2 / span 2; grid-row: 2;
  display: grid; grid-template-columns: 44% 1fr;
  background: var(--green-deep); color: var(--on-dark);
  min-height: 300px;
}
.offer--wide .offer__img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.offer__wideText { padding: clamp(1.5rem, 2.3vw, 2.2rem); display: flex; flex-direction: column; justify-content: center; }
.offer__wideText h3 { color: var(--cream); }
.offer__wideText p { color: rgba(243, 238, 230, .85); }
.offer__wideText .link { color: var(--blush); }

/* ---------- Steps ---------- */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.8rem, 3.4vw, 3.4rem);
  position: relative;
}
.steps::before {
  content: ""; position: absolute; left: 8%; right: 8%; top: 34px;
  border-top: 1px dashed rgba(232, 180, 184, .32);
}
.step { position: relative; }
.step__num {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.75rem, 6.6vw, 4rem); line-height: 1;
  font-weight: 400; color: var(--blush);
  font-variation-settings: "SOFT" 50, "WONK" 1;
  margin-bottom: 1.1rem;
  background: var(--green); padding-right: 1rem; display: inline-block;
}
.step h3 { font-size: 1.375rem; margin-bottom: .8rem; }
.step p { color: var(--on-dark-soft); font-size: 1rem; margin: 0; }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: clamp(.85rem, 1.4vw, 1.25rem);
}
.shot {
  position: relative; margin: 0; overflow: hidden;
  border-radius: var(--r-lg); background: var(--cream-warm);
}
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.shot:hover img { transform: scale(1.055); }
.shot figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 2.9rem 1.35rem 1.15rem;
  background: linear-gradient(to top,
    rgba(9, 24, 15, .96) 0%,
    rgba(9, 24, 15, .93) 64%,
    rgba(9, 24, 15, .48) 86%,
    rgba(9, 24, 15, 0) 100%);
  color: var(--cream); font-size: .9375rem; line-height: 1.45;
}
.shot__tag {
  display: block;
  font-size: .6875rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--blush); margin-bottom: .3rem;
}
.shot--wide { grid-column: span 2; }
.shot--tall { grid-row: span 2; }

/* ---------- Why ---------- */
.why { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.checks { margin-top: 2.2rem; display: grid; gap: 1rem; }
.checks li {
  display: grid; grid-template-columns: 30px 1fr; gap: .95rem; align-items: start;
  font-size: 1.0625rem; color: var(--ink);
}
.check {
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center; margin-top: .12rem;
  background: var(--green); color: var(--cream);
}
.check svg { width: 17px; height: 17px; }
.why__art {
  margin: 0;
  background: var(--cream);
  border: 1px solid rgba(31, 61, 43, .13);
  border-radius: var(--r-lg);
  padding: clamp(1.1rem, 1.9vw, 1.75rem);
  box-shadow: 0 34px 64px -50px rgba(22, 36, 27, .75);
}
.why__art svg { width: 100%; height: auto; }
.art-frame { fill: none; stroke: rgba(31, 61, 43, .16); stroke-width: 1; }
.art-line { fill: none; stroke: var(--green); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.art-leaf { fill: rgba(31, 61, 43, .05); }
.art-vase { fill: rgba(31, 61, 43, .04); }
.art-terra { fill: none; stroke: var(--terra); stroke-width: 1.5; stroke-linecap: round; }
.art-seed { fill: var(--terra); opacity: .72; }
.art-blush { fill: var(--blush); }
.art-shelf { fill: none; stroke: rgba(31, 61, 43, .3); stroke-width: 1; }
.why__plate {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  margin-top: 1rem; padding-top: .85rem;
  border-top: 1px solid rgba(31, 61, 43, .13);
  font-size: .6875rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- What to expect ---------- */
.expects { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 1.7vw, 1.5rem); }
.expect {
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 2.1vw, 2rem);
  transition: transform .45s var(--ease), background .45s var(--ease);
}
.expect:hover { transform: translateY(-5px); background: rgba(255, 255, 255, .08); }
.expect h3 { font-size: 1.25rem; margin-bottom: .7rem; }
.expect p { color: var(--on-dark-soft); font-size: .9875rem; margin: 0; }

/* ---------- CTA ---------- */
.cta {
  position: relative; overflow: hidden; text-align: center;
  background: var(--cream-warm);
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}
.cta__ghost {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--display); font-weight: 700;
  font-size: clamp(5rem, 23vw, 18.75rem); line-height: 1;
  letter-spacing: -.03em;
  color: rgba(31, 61, 43, .055);
  white-space: nowrap; pointer-events: none; user-select: none;
}
.cta__inner { position: relative; }
.cta .label { justify-content: center; }
.cta__title {
  font-family: var(--display); font-weight: 550;
  font-size: clamp(2rem, 4.4vw, 3.25rem); line-height: 1.08;
  letter-spacing: -.015em;
  font-variation-settings: "SOFT" 40, "WONK" 1;
  max-width: 22ch; margin: 0 auto 1rem;
}
.cta__lede { color: var(--ink-soft); font-size: 1.0625rem; margin-bottom: 1.9rem; }
.cta__phone {
  display: inline-block; text-decoration: none;
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1.875rem, 5vw, 2.75rem); line-height: 1;
  color: var(--green);
  border-bottom: 2px solid rgba(196, 102, 62, .5);
  padding-bottom: .18em;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.cta__phone:hover { color: var(--terra-ink); border-color: var(--terra); }
.cta__note { margin: 1.5rem 0 0; font-size: .9375rem; color: var(--ink-soft); }

/* ---------- Visit ---------- */
.visit__grid { display: grid; grid-template-columns: 1fr .92fr; gap: clamp(2.5rem, 5vw, 5rem); }
.facts { margin-top: 2.4rem; display: grid; gap: 1.35rem; }
.fact { display: grid; grid-template-columns: 108px 1fr; gap: 1.1rem; padding-bottom: 1.35rem; border-bottom: 1px solid var(--line-dark); }
.fact:last-child { border-bottom: 0; padding-bottom: 0; }
.fact dt {
  font-size: .75rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase;
  color: var(--blush); padding-top: .3rem;
}
.fact dd { font-size: 1rem; color: var(--on-dark); line-height: 1.75; }
.fact dd a { text-decoration: none; border-bottom: 1px solid rgba(232, 180, 184, .5); }
.fact dd a:hover { color: var(--blush); }

.form {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 2.6vw, 2.4rem);
  color: var(--ink);
}
.form__head {
  font-family: var(--display); font-size: 1.5rem; font-weight: 600;
  font-variation-settings: "SOFT" 36, "WONK" 1;
  margin-bottom: 1.5rem; color: var(--green);
}
.field { margin-bottom: 1.05rem; }
.field--split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.05rem; }
.field label {
  display: block; margin-bottom: .45rem;
  font-size: .75rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--ink-soft);
}
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem .95rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  font-size: 1rem; line-height: 1.5;
  transition: border-color .3s var(--ease);
}
.field textarea { resize: vertical; min-height: 108px; }
.field input:disabled, .field select:disabled, .field textarea:disabled {
  background: rgba(31, 61, 43, .04); color: var(--ink-soft); cursor: not-allowed;
}
.field ::placeholder { color: rgba(74, 91, 79, .6); }
.form__note {
  margin: 1rem 0 0; font-size: .875rem; color: var(--ink-soft); text-align: center;
}
.form__note a { color: var(--terra-ink); font-weight: 650; }

/* ---------- Footer ---------- */
.footer { background: var(--green-ink); color: var(--on-dark); border-top: 3px solid var(--terra); padding-top: clamp(3.5rem, 6vw, 5.5rem); }
.footer__grid {
  display: grid; grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: clamp(2rem, 3.5vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 4.5vw, 4rem);
}
.brand--footer { color: var(--cream); margin-bottom: 1.1rem; }
.footer__brand p { color: var(--on-dark-soft); font-size: .9375rem; max-width: 30ch; margin: 0; }
.footer__col h2 {
  font-family: var(--body); font-size: .75rem; font-weight: 700;
  letter-spacing: .17em; text-transform: uppercase; color: var(--blush);
  margin-bottom: 1.1rem; line-height: 1.4;
}
.footer__col li { margin-bottom: .6rem; font-size: .9375rem; color: var(--on-dark-soft); }
.footer__col a { text-decoration: none; transition: color .3s var(--ease); }
.footer__col a:hover { color: var(--blush); }
.footer__base {
  border-top: 1px solid rgba(232, 180, 184, .16);
  padding-block: 1.6rem 2rem;
  display: flex; flex-wrap: wrap; gap: .6rem 2rem; align-items: center; justify-content: space-between;
}
.footer__fiction {
  margin: 0; font-size: .875rem; color: var(--blush);
  border-left: 2px solid rgba(232, 180, 184, .5); padding-left: .85rem;
}
.footer__legal { margin: 0; font-size: .8125rem; color: rgba(195, 207, 195, .7); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
.stagger > *:nth-child(2) { transition-delay: .09s; }
.stagger > *:nth-child(3) { transition-delay: .18s; }
.stagger > *:nth-child(4) { transition-delay: .27s; }
.stagger > *:nth-child(5) { transition-delay: .36s; }
.stagger > *:nth-child(6) { transition-delay: .45s; }
.head .reveal:nth-child(2) { transition-delay: .08s; }
.head .reveal:nth-child(3) { transition-delay: .16s; }
.cta .reveal:nth-child(2) { transition-delay: .08s; }
.cta .reveal:nth-child(3) { transition-delay: .16s; }
.cta .reveal:nth-child(4) { transition-delay: .24s; }
.cta .reveal:nth-child(5) { transition-delay: .32s; }

/* ==========================================================================
   Responsive
   ========================================================================== */
/* Between 901 and 1240 the photo side is narrow, so the cream wash has to reach
   further right to keep the hero copy at AA contrast over the photograph. */
@media (min-width: 901px) and (max-width: 1240px) {
  .hero__wash {
    background:
      linear-gradient(100deg,
        rgba(250, 246, 240, .99) 0%,
        rgba(250, 246, 240, .985) 48%,
        rgba(250, 246, 240, .95) 62%,
        rgba(250, 246, 240, .5) 76%,
        rgba(250, 246, 240, .05) 90%),
      linear-gradient(to top, rgba(250, 246, 240, .55), rgba(250, 246, 240, 0) 30%);
  }
  .hero__panel { max-width: 31rem; }
  .hero__lede { max-width: 28rem; }
}

@media (max-width: 1080px) {
  .stems { grid-template-columns: repeat(3, 1fr); }
  .stem:nth-child(6n + 1) { border-left-color: var(--sep); padding-left: clamp(.8rem, 1.25vw, 1.3rem); }
  .stem:nth-child(3n + 1) { border-left-color: transparent; padding-left: 0; }

  .offers { grid-template-columns: 1fr 1fr; }
  .offer--feature { grid-column: 1 / span 2; grid-row: 1; min-height: 440px; }
  .offer--card:nth-of-type(2) { grid-column: 1; grid-row: 2; }
  .offer--card:nth-of-type(3) { grid-column: 2; grid-row: 2; }
  .offer--wide { grid-column: 1 / span 2; grid-row: 3; }
  .expects { grid-template-columns: 1fr 1fr; }
  .why { grid-template-columns: 1fr; }
  .why__art { max-width: 360px; margin-inline: auto; }
  .visit__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 78px; }

  .nav__links {
    position: fixed; inset: 72px 0 auto;
    flex-direction: column; gap: 0; margin: 0;
    background: rgba(250, 246, 240, .985);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: .5rem var(--pad) 1.5rem;
    transform: translateY(-14px); opacity: 0; visibility: hidden;
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  }
  .nav__links.is-open { transform: none; opacity: 1; visibility: visible; }
  .nav__links a { padding: .95rem 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav__links a:last-child { border-bottom: 0; }
  .nav__call { display: none; }
  .nav__toggle { display: block; }
  .nav.is-open-menu { background: rgba(250, 246, 240, .985); border-bottom-color: transparent; }

  /* Hero stacks: copy on cream, photo panel beneath */
  .hero {
    min-height: 0; display: block; overflow: visible;
    background: var(--cream);
  }
  .hero__media {
    position: relative; inset: auto; z-index: 0; overflow: hidden;
    height: 56vh; min-height: 340px; max-height: 480px;
    border-radius: 0;
  }
  .hero__wash {
    background: linear-gradient(to top, rgba(250, 246, 240, .34), rgba(250, 246, 240, 0) 46%);
  }
  .hero__body { padding: 7.5rem var(--pad) 2.75rem; }
  .hero__panel { max-width: none; }

  .steps { grid-template-columns: 1fr; gap: 2.4rem; }
  .steps::before { display: none; }
  .step { padding-left: 0; }

  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 210px; }
  .shot--wide { grid-column: span 2; }
  .shot--tall { grid-row: span 1; }
}

@media (max-width: 860px) {
  .stems { grid-template-columns: 1fr 1fr; }
  .stem:nth-child(3n + 1) { border-left-color: var(--sep); padding-left: clamp(.8rem, 1.25vw, 1.3rem); }
  .stem:nth-child(2n + 1) { border-left-color: transparent; padding-left: 0; }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }
  .offers { grid-template-columns: 1fr; }
  .offer--feature { grid-column: 1; grid-row: auto; min-height: 400px; }
  .offer--card:nth-of-type(2),
  .offer--card:nth-of-type(3),
  .offer--wide { grid-column: 1; grid-row: auto; }
  .offer--wide { grid-template-columns: 1fr; }
  .offer--wide .offer__img { height: 220px; }

  .expects { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 230px; }
  .shot--wide { grid-column: span 1; }

  .field--split { grid-template-columns: 1fr; }
  .fact { grid-template-columns: 1fr; gap: .3rem; }
  .fact dt { padding-top: 0; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__base { flex-direction: column; align-items: flex-start; }

  .label { font-size: .75rem; letter-spacing: .16em; gap: .65rem; }
  .label::before { width: 22px; }
  .hero__actions .btn { flex: 1 1 100%; }
}

/* Narrow: the ledger turns into a stacked list, drawing beside the entry. */
@media (max-width: 560px) {
  .stems { grid-template-columns: 1fr; row-gap: 0; }
  .stem {
    padding: 1.1rem 0;
    border-left: 0;
    border-top: 1px solid var(--sep);
  }
  .stem:first-child { border-top: 0; padding-top: 0; }
  .stem:nth-child(2n + 1), .stem:nth-child(3n + 1), .stem:nth-child(6n + 1) { padding-left: 0; }
  .stem__link {
    grid-template-columns: 64px 1fr;
    column-gap: 1.15rem; row-gap: .28rem;
    align-content: center;
  }
  .stem__art { grid-column: 1; grid-row: 1 / span 4; width: 64px; align-self: center; margin-bottom: 0; }
  .stem__name, .stem__latin, .stem__rule, .stem__swap { grid-column: 2; }
  .stem__rule { width: 26px; margin: .3rem 0 .35rem; }
  .season__title { max-width: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .hero__img { animation: none; transform: none; }
  /* The seasonal ledger reveals its notes instantly instead of fading. */
  .stem__art, .stem__rule, .stem__swap > *, .stem__name svg { transition: none; }
  .stem__link:hover .stem__art,
  .stem__link:focus-visible .stem__art { transform: none; }
  .hero__title span, .hero .label, .hero__lede, .hero__actions, .hero__note { opacity: 1; transform: none; }
  .reveal { opacity: 1; transform: none; }
}

/* Attribution link in the fiction footer (concept-posture) */
.nhmw-link{color:inherit;text-decoration:underline;text-underline-offset:2px}
