:root {
  --ink: #26231F;
  --ink-soft: #4C4741;
  --ink-mute: #7C756C;
  --cream: #FAF6EF;
  --cream-deep: #F2EBE0;
  --paper: #FFFFFF;
  --blush: #F3C9C1;
  --blush-deep: #E0A398;
  --ochre: #B08425;
  --slate: #74899C;
  --forest: #33463A;
  --forest-deep: #222F26;
  --line: #E3DACB;
  --line-dark: rgba(250, 246, 239, .18);

  --serif: 'Fraunces', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --sans: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --s1: .5rem;
  --s2: 1rem;
  --s3: 1.5rem;
  --s4: 2rem;
  --s5: 3rem;
  --s6: 4.5rem;
  --s7: 7rem;

  --wrap: 76rem;
  --radius: 4px;
  --radius-lg: 10px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.018em;
  margin: 0;
  font-variation-settings: 'SOFT' 40, 'WONK' 1;
}

h1 { font-size: clamp(2.6rem, 7.2vw, 5rem); }
h2 { font-size: clamp(1.9rem, 4.1vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); line-height: 1.2; }

p { margin: 0 0 var(--s2); }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

em { font-style: italic; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: .75rem 1.25rem;
  z-index: 200;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid var(--ochre);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  min-height: 4.25rem;
}

.logo { display: block; flex-shrink: 0; }
.logo img { width: 10.5rem; height: auto; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2rem);
}

.nav-desktop a {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
  transition: color .25s var(--ease);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop .btn { color: var(--cream); }
.nav-desktop .btn:hover { color: var(--paper); }

.nav-mobile { display: none; position: relative; }

.nav-mobile > summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .55rem .2rem .55rem 0;
}
.nav-mobile > summary::-webkit-details-marker { display: none; }

.bars {
  position: relative;
  width: 1.1rem;
  height: 2px;
  background: var(--ink);
  transition: background .2s var(--ease);
}
.bars::before, .bars::after {
  content: '';
  position: absolute;
  left: 0;
  width: 1.1rem;
  height: 2px;
  background: var(--ink);
  transition: transform .28s var(--ease);
}
.bars::before { top: -6px; }
.bars::after { top: 6px; }

.nav-mobile[open] .bars { background: transparent; }
.nav-mobile[open] .bars::before { transform: translateY(6px) rotate(45deg); }
.nav-mobile[open] .bars::after { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile > nav {
  position: absolute;
  right: 0;
  top: calc(100% + .55rem);
  min-width: 13.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 44px rgba(38, 35, 31, .13);
  padding: .5rem;
  display: grid;
}

.nav-mobile > nav a {
  padding: .7rem .9rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink-soft);
}
.nav-mobile > nav a:hover { background: var(--cream); color: var(--ink); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
  font-family: var(--sans);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  padding: .95rem 1.7rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  transition: background .28s var(--ease), color .28s var(--ease),
              border-color .28s var(--ease), transform .28s var(--ease);
}
.btn:hover {
  background: var(--ochre);
  border-color: var(--ochre);
  color: var(--paper);
  transform: translateY(-2px);
}

.btn-sm { padding: .6rem 1.15rem; font-size: .72rem; }
.btn-lg { padding: 1.05rem 2.1rem; }
.btn-block { width: 100%; }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250, 246, 239, .55);
}
.btn-ghost:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--ink);
}

/* ---------- Shared section furniture ---------- */

.section { padding-block: clamp(var(--s6), 9vw, var(--s7)); }
.section, .hero { scroll-margin-top: 4.5rem; }
.section-cream { background: var(--cream); }
.section-dark { background: var(--forest-deep); color: var(--cream); }

.eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ochre);
  margin: 0 0 var(--s2);
}
.eyebrow-light { color: var(--blush); }

.section-head { max-width: 46rem; margin-bottom: clamp(var(--s5), 6vw, var(--s6)); }
.section-head-center { margin-inline: auto; text-align: center; }

.section-lede {
  margin-top: var(--s3);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 42rem;
}
.section-head-center .section-lede { margin-inline: auto; }
.section-dark .section-lede { color: rgba(250, 246, 239, .74); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: var(--forest-deep);
  color: var(--cream);
  overflow: hidden;
}

.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 58%; }
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 26, 21, .58) 0%, rgba(20, 26, 21, .34) 42%, rgba(20, 26, 21, .82) 100%),
    linear-gradient(90deg, rgba(20, 26, 21, .52) 0%, rgba(20, 26, 21, 0) 72%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: clamp(5rem, 15vw, 9.5rem);
  padding-bottom: clamp(4.5rem, 12vw, 8rem);
  max-width: 62rem;
}

.hero h1 { text-transform: lowercase; }
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--blush);
  padding-inline: .06em;
}

.hero .lede {
  margin-top: var(--s3);
  max-width: 34rem;
  font-size: clamp(1.05rem, 1.75vw, 1.25rem);
  color: rgba(250, 246, 239, .86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-top: clamp(var(--s4), 4vw, var(--s5));
}
.hero-actions .btn { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.hero-actions .btn:hover { background: var(--ochre); border-color: var(--ochre); color: var(--paper); }
.hero-actions .btn-ghost { background: transparent; color: var(--cream); border-color: rgba(250, 246, 239, .55); }
.hero-actions .btn-ghost:hover { background: var(--cream); border-color: var(--cream); color: var(--ink); }

.hero-facts {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line-dark);
  background: rgba(20, 26, 21, .42);
  backdrop-filter: blur(6px);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border-inline: 1px solid var(--line-dark);
}

.fact {
  background: rgba(20, 26, 21, .55);
  padding: var(--s3) clamp(1rem, 2vw, 1.5rem);
  display: grid;
  gap: .3rem;
  align-content: start;
}

.fact-num {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  font-weight: 600;
  color: var(--blush);
  line-height: 1.1;
}

.fact-label {
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(250, 246, 239, .68);
  line-height: 1.45;
}

/* ---------- What we grow ---------- */

.grow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
  gap: clamp(var(--s3), 3vw, var(--s5)) clamp(var(--s3), 2.6vw, var(--s4));
}

.grow-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.grow-card:hover {
  border-color: var(--blush-deep);
  box-shadow: 0 22px 48px rgba(38, 35, 31, .14);
}

.grow-media { overflow: hidden; background: var(--cream-deep); }
.grow-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.grow-card:hover .grow-media img { transform: scale(1.05); }

.grow-body {
  padding: clamp(1.4rem, 2.6vw, 2rem);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.grow-body h3 { margin-bottom: .7rem; }

.grow-body > p {
  color: var(--ink-soft);
  font-size: .96rem;
}

.spec-list {
  list-style: none;
  margin: var(--s3) 0 var(--s2);
  padding: 0;
  border-top: 1px solid var(--line);
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--s2);
  padding: .6rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .9rem;
  font-weight: 600;
}

.spec-list span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  flex-shrink: 0;
}

.note {
  margin-top: auto;
  padding-top: var(--s2);
  font-size: .82rem;
  line-height: 1.6;
  color: var(--ink-mute);
  font-style: italic;
}

/* ---------- About ---------- */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
  gap: clamp(var(--s4), 6vw, var(--s7));
  align-items: start;
}

.about-media { position: relative; padding-bottom: 5rem; }

.about-img-main {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-img-inset {
  position: absolute;
  right: -2rem;
  bottom: 0;
  width: 62%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 6px solid var(--cream);
  box-shadow: 0 16px 38px rgba(38, 35, 31, .16);
}

.about-body h2 { margin-bottom: var(--s3); }

.about-body p { color: var(--ink-soft); }

.about-body .first-para {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.9vw, 1.35rem);
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: var(--s3);
}

.name-note {
  margin: var(--s4) 0;
  padding: clamp(1.4rem, 2.6vw, 1.9rem);
  background: var(--paper);
  border-left: 3px solid var(--blush-deep);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.name-note h3 { margin-bottom: .6rem; }
.name-note p { font-size: .95rem; }

.about-body .signature {
  padding-top: var(--s3);
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
}

/* ---------- Gallery band ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  margin-bottom: var(--s4);
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--forest);
  aspect-ratio: 4 / 3;
}
.gallery-item:nth-child(1) { grid-column: span 3; }
.gallery-item:nth-child(2) { grid-column: span 3; }
.gallery-item:nth-child(3) { grid-column: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }
.gallery-item:nth-child(6) { grid-column: span 6; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease), opacity .5s var(--ease);
  opacity: .93;
}
.gallery-item:nth-child(6) { aspect-ratio: 21 / 8; }

.gallery-item:hover img { transform: scale(1.045); opacity: 1; }

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.5rem 1.1rem .9rem;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--cream);
  background: linear-gradient(180deg, rgba(20, 26, 21, 0), rgba(20, 26, 21, .78));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.gallery-item:hover figcaption,
.gallery-item:focus-within figcaption { opacity: 1; transform: translateY(0); }

.gallery-foot {
  text-align: center;
  font-size: .85rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(250, 246, 239, .6);
}
.gallery-foot a { color: var(--blush); text-decoration: none; border-bottom: 1px solid rgba(243, 201, 193, .4); }
.gallery-foot a:hover { color: var(--cream); border-color: var(--cream); }

/* ---------- Visit ---------- */

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(var(--s4), 5vw, var(--s6));
  align-items: start;
}

.faq { border-top: 1px solid var(--line); }

.faq-item { border-bottom: 1px solid var(--line); }

.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 2.5rem 1.15rem 0;
  position: relative;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  font-weight: 600;
  letter-spacing: -.01em;
  transition: color .25s var(--ease);
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary:hover { color: var(--ochre); }

.faq-item > summary::after {
  content: '';
  position: absolute;
  right: .35rem;
  top: 50%;
  width: .62rem;
  height: .62rem;
  border-right: 2px solid var(--ink-mute);
  border-bottom: 2px solid var(--ink-mute);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .3s var(--ease), border-color .25s var(--ease);
}
.faq-item[open] > summary::after { transform: translateY(-25%) rotate(-135deg); border-color: var(--ochre); }

.faq-body {
  padding: 0 2.5rem 1.5rem 0;
  color: var(--ink-soft);
  font-size: .95rem;
}
.faq-body strong { color: var(--ink); font-weight: 700; }

.season-note {
  margin-top: var(--s4);
  padding: clamp(1.4rem, 2.6vw, 1.9rem);
  background: var(--cream);
  border-radius: var(--radius-lg);
}
.season-note h3 { margin-bottom: .5rem; }
.season-note p { color: var(--ink-soft); font-size: .95rem; }

.visit-aside { display: grid; gap: var(--s3); }

.info-card {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--forest-deep);
  color: var(--cream);
  border-radius: var(--radius-lg);
}
.info-card h3 { margin-bottom: var(--s3); }

.info-line {
  padding: .75rem 0;
  line-height: 1.5;
  border-top: 1px solid var(--line-dark);
  font-size: .95rem;
}
.info-line span {
  display: block;
  margin-bottom: .1rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blush);
}
.info-line a { text-decoration: none; border-bottom: 1px solid rgba(250, 246, 239, .3); }
.info-line a:hover { border-color: var(--blush); }

.info-social {
  display: flex;
  gap: var(--s2);
  margin-top: var(--s3);
  padding-top: var(--s3);
  border-top: 1px solid var(--line-dark);
}
.info-social a {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .5rem 1rem;
  border: 1px solid rgba(250, 246, 239, .28);
  border-radius: 999px;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.info-social a:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 380px));
  justify-content: center;
  gap: var(--s3);
}

.review-card {
  display: block;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.review-card:hover { border-color: var(--blush-deep); box-shadow: 0 22px 48px rgba(38, 35, 31, .14); transform: translateY(-3px); }
.review-card-head { display: flex; align-items: center; gap: var(--s2); margin-bottom: var(--s2); }
.review-card-head h3 { margin-bottom: .15rem; }
.review-card-sub { font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-mute); }
.review-card p { color: var(--ink-soft); font-size: .95rem; }
.review-card .link-arrow { margin-top: var(--s2); display: inline-block; }

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .95fr);
  gap: clamp(var(--s4), 5vw, var(--s6));
  align-items: start;
}

.contact-intro h2 { margin-bottom: var(--s3); }
.contact-intro > p { color: var(--ink-soft); }

.contact-intro .contact-direct {
  margin-top: var(--s3);
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
}
.contact-direct a { text-decoration: none; border-bottom: 1px solid var(--blush-deep); }
.contact-direct a:hover { color: var(--ochre); border-color: var(--ochre); }

.contact-img {
  margin-top: var(--s4);
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.contact-form {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3.4vw, 2.5rem);
  box-shadow: 0 18px 44px rgba(38, 35, 31, .07);
}

.field { margin-bottom: var(--s3); }

.field label {
  display: block;
  margin-bottom: .45rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field .opt { font-weight: 500; color: var(--ink-mute); letter-spacing: .06em; }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .8rem .95rem;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.field textarea { resize: vertical; min-height: 8rem; }

.field input:hover,
.field select:hover,
.field textarea:hover { border-color: var(--blush-deep); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--paper);
  border-color: var(--ochre);
  outline: none;
  box-shadow: 0 0 0 3px rgba(176, 132, 37, .14);
}

.form-note {
  margin-top: var(--s2);
  text-align: center;
  font-size: .78rem;
  color: var(--ink-mute);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--forest-deep);
  color: rgba(250, 246, 239, .74);
  padding-top: clamp(var(--s5), 6vw, var(--s6));
  font-size: .92rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: clamp(var(--s4), 5vw, var(--s6));
  padding-bottom: clamp(var(--s4), 5vw, var(--s5));
}

.footer-brand img { width: 12rem; margin-bottom: var(--s3); filter: brightness(0) invert(1); opacity: .9; }
.footer-brand p { max-width: 24rem; font-size: .95rem; }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s3);
}

.footer-col h3 {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: var(--s2);
}
.footer-col p { margin-bottom: .4rem; line-height: 1.6; }
.footer-col a { text-decoration: none; transition: color .25s var(--ease); }
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding-block: var(--s3);
}
.footer-bottom p { font-size: .8rem; color: rgba(250, 246, 239, .55); }
.footer-bottom a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.footer-bottom a:hover { color: var(--cream); }

/* ---------- Responsive ---------- */

@media (max-width: 60rem) {
  .about-grid,
  .visit-grid,
  .contact-grid,
  .footer-inner { grid-template-columns: minmax(0, 1fr); }

  .about-media { max-width: 30rem; padding-bottom: 3.5rem; }
  .about-img-inset { right: 0; width: 55%; }

  .facts-grid { grid-template-columns: repeat(2, 1fr); }

  .gallery-item:nth-child(n) { grid-column: span 3; }
  .gallery-item:nth-child(6) { grid-column: span 6; }
}

@media (max-width: 46rem) {
  .nav-desktop { display: none; }
  .nav-mobile { display: block; }

  .logo img { width: 8.5rem; }

  .hero-media img { object-position: 62% 55%; }
  .hero-media::after {
    background: linear-gradient(180deg, rgba(20, 26, 21, .52) 0%, rgba(20, 26, 21, .48) 45%, rgba(20, 26, 21, .86) 100%);
  }
  .hero-actions .btn { flex: 1 1 100%; text-align: center; }

  .gallery-item:nth-child(n) { grid-column: span 6; }
  .gallery-item:nth-child(6) { aspect-ratio: 4 / 3; }
  .gallery-item figcaption { opacity: 1; transform: none; }

  .footer-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 30rem) {
  .facts-grid { grid-template-columns: 1fr; }
  .about-img-inset { position: static; width: 100%; border: 0; margin-top: var(--s2); box-shadow: none; }
  .about-media { padding-bottom: 0; }
}

/* ---------- Scroll-driven reveals ---------- */

@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .reveal {
      animation: reveal-in linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 100%;
    }
  }
}

@keyframes reveal-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Multi-page additions ---------- */

.nav-desktop a[aria-current="page"] {
  color: var(--ink);
  box-shadow: inset 0 -2px 0 var(--ochre);
  padding-bottom: .15rem;
}
.nav-mobile > nav a[aria-current="page"] { background: var(--cream); color: var(--ink); }

.link-arrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--blush-deep);
  padding-bottom: .1rem;
  font-style: normal;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.link-arrow::after { content: ' \2192'; }
.link-arrow:hover { color: var(--ochre); border-color: var(--ochre); }
.note .link-arrow { font-style: normal; }

.grow-media { display: block; }
.grow-body h3 a { text-decoration: none; color: inherit; }
.grow-body h3 a:hover { color: var(--ochre); }

/* Page hero */
.page-hero {
  position: relative;
  background: var(--forest-deep);
  color: var(--cream);
  overflow: hidden;
}
.page-hero-media { position: absolute; inset: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 26, 21, .5) 0%, rgba(20, 26, 21, .38) 50%, rgba(20, 26, 21, .8) 100%),
    linear-gradient(90deg, rgba(20, 26, 21, .5) 0%, rgba(20, 26, 21, 0) 70%);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: clamp(4rem, 11vw, 7.5rem);
  padding-bottom: clamp(3.5rem, 9vw, 6rem);
  max-width: 58rem;
}
.page-hero h1 { font-size: clamp(2.3rem, 5.6vw, 4.2rem); }
.page-hero .lede {
  margin-top: var(--s3);
  max-width: 36rem;
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: rgba(250, 246, 239, .86);
}
.page-hero .hero-actions { margin-top: clamp(var(--s3), 3.5vw, var(--s4)); }
.page-hero .hero-actions .btn { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.page-hero .hero-actions .btn:hover { background: var(--ochre); border-color: var(--ochre); color: var(--paper); }
.page-hero .hero-actions .btn-ghost { background: transparent; color: var(--cream); border-color: rgba(250, 246, 239, .55); }
.page-hero .hero-actions .btn-ghost:hover { background: var(--cream); border-color: var(--cream); color: var(--ink); }
.page-hero-plain { background: var(--forest-deep); }
.page-hero-plain .page-hero-inner { padding-top: clamp(3.5rem, 9vw, 6rem); padding-bottom: clamp(3rem, 7vw, 5rem); }

/* Prose + split layouts */
.prose { max-width: 44rem; }
.prose p { color: var(--ink-soft); }
.prose .first-para {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.9vw, 1.35rem);
  line-height: 1.5;
  color: var(--ink);
}
.prose h2 { margin-bottom: var(--s3); }
.prose h3 { margin-top: var(--s4); margin-bottom: .6rem; }
.prose h2 + h3 { margin-top: 0; }
.prose a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--blush-deep); }
.prose a:hover { color: var(--ochre); text-decoration-color: var(--ochre); }
.prose a.btn { color: var(--cream); text-decoration: none; }
.prose a.btn:hover { color: var(--paper); }
.prose ul:not(.spec-list):not(.rules-list), .prose ol { padding-left: 1.3rem; color: var(--ink-soft); margin: 0 0 var(--s3); }
.prose li { margin-bottom: .5rem; }
.prose .spec-list li { margin-bottom: 0; }
.prose .note { margin-top: var(--s2); }
.prose h2 a { text-decoration: none; }
.prose h2 a:hover { color: var(--ochre); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(var(--s4), 6vw, var(--s7));
  align-items: start;
}
.split-reverse { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); }
.split-media img { width: 100%; border-radius: var(--radius-lg); object-fit: cover; }
.split-media-small { max-width: 22rem; }
.photo-vintage { aspect-ratio: 3 / 4; filter: sepia(.12) contrast(1.02); border: 8px solid var(--paper); box-shadow: 0 16px 38px rgba(38, 35, 31, .14); }
.workshop-media { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s2); }
.workshop-media img { aspect-ratio: 4 / 5; }

.signature-wrap { text-align: center; }
.signature-wrap .signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--ink);
  max-width: 34rem;
  margin-inline: auto;
}

.spec-list-lg li { font-size: 1rem; padding: .8rem 0; }

.rules-list { list-style: none; padding: 0; margin: var(--s3) 0; }
.rules-list li {
  position: relative;
  padding: .8rem 0 .8rem 1.9rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: .97rem;
}
.rules-list li:last-child { border-bottom: 1px solid var(--line); }
.rules-list li::before {
  content: '';
  position: absolute;
  left: .2rem;
  top: 1.35rem;
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: var(--blush-deep);
}
.rules-list a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--blush-deep); }

.review {
  margin: var(--s3) 0 0;
  padding: 1.2rem 1.4rem;
  background: var(--cream);
  border-left: 3px solid var(--blush-deep);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.review p { font-family: var(--serif); font-size: 1.05rem; line-height: 1.5; color: var(--ink); margin-bottom: .5rem; }
.review cite { font-style: normal; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); }

/* Crops + statements */
.crop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: clamp(var(--s3), 3vw, var(--s5));
}
.crop img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: var(--s3); }
.crop h3 { margin-bottom: .6rem; }
.crop p { color: var(--ink-soft); font-size: .96rem; }
.crop .note { margin-top: var(--s2); }
.crop .note a { color: var(--ink); }

.statement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: clamp(var(--s3), 3vw, var(--s5));
}
.statement { padding-top: var(--s3); border-top: 1px solid var(--line); }
.statement-num { display: block; font-family: var(--serif); font-size: .9rem; color: var(--ochre); letter-spacing: .1em; margin-bottom: var(--s2); }
.statement h3 { margin-bottom: .6rem; }
.statement p { color: var(--ink-soft); font-size: .96rem; }

.gallery-flowers .gallery-item:nth-child(n) { grid-column: span 2; aspect-ratio: 4 / 5; }
.gallery-flowers .gallery-item:nth-child(1), .gallery-flowers .gallery-item:nth-child(5) { grid-column: span 3; aspect-ratio: 4 / 3; }
.gallery-flowers .gallery-item:nth-child(4), .gallery-flowers .gallery-item:nth-child(8) { grid-column: span 3; aspect-ratio: 4 / 3; }

/* Teasers, products, blog */
.teaser-grid, .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: clamp(var(--s3), 3vw, var(--s4));
}
.teaser-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 46rem) { .teaser-grid { grid-template-columns: minmax(0, 1fr); } }
.teaser-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.teaser-card:hover { border-color: var(--blush-deep); box-shadow: 0 22px 48px rgba(38, 35, 31, .14); transform: translateY(-3px); }
.teaser-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.teaser-body { padding: clamp(1.3rem, 2.4vw, 1.8rem); display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.teaser-body p { color: var(--ink-soft); font-size: .95rem; flex: 1; }

.product {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.product-body { padding: clamp(1.3rem, 2.4vw, 1.8rem); display: flex; flex-direction: column; gap: .5rem; }
.product-body p { color: var(--ink-soft); font-size: .95rem; }
.product-body a { color: var(--ink); }
.price {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ochre) !important;
  letter-spacing: -.01em;
}
.order-note {
  margin-top: clamp(var(--s4), 4vw, var(--s5));
  padding: clamp(1.4rem, 2.6vw, 2rem);
  background: var(--cream);
  border-radius: var(--radius-lg);
  display: flex;
  gap: var(--s3);
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.order-note p { max-width: 44rem; color: var(--ink-soft); font-size: .95rem; margin: 0; }
.section-cream .order-note { background: var(--paper); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: clamp(var(--s3), 3vw, var(--s4));
}
.post-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.post-card > a { display: block; overflow: hidden; }
.post-card > a img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform .8s var(--ease); }
.post-card:hover > a img { transform: scale(1.04); }
.post-body { padding: clamp(1.3rem, 2.4vw, 1.8rem); display: grid; gap: .6rem; }
.post-body h3 a { text-decoration: none; color: inherit; }
.post-body h3 a:hover { color: var(--ochre); }
.post-body p { color: var(--ink-soft); font-size: .95rem; }
.post-meta { font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute) !important; margin: 0; }

/* Articles */
.article-head { background: var(--cream); padding-top: clamp(var(--s5), 8vw, var(--s6)); }
.article-head-inner { max-width: 48rem; padding-bottom: clamp(var(--s4), 5vw, var(--s5)); }
.article-head h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); margin-bottom: var(--s2); }
.article-head .lede { font-family: var(--serif); font-size: clamp(1.1rem, 1.8vw, 1.3rem); line-height: 1.5; color: var(--ink-soft); margin-top: var(--s3); }
.article-hero { margin: 0; }
.article-hero img { width: 100%; max-height: 34rem; object-fit: cover; object-position: 50% 40%; }
.article-body { padding-block: clamp(var(--s5), 7vw, var(--s6)); max-width: 48rem; }
.article-body p { font-size: 1.05rem; }
.article-body h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-top: var(--s4); }
.article-fig { margin: var(--s4) 0; }
.article-fig img { width: 100%; border-radius: var(--radius-lg); }
.article-fig figcaption { margin-top: .6rem; font-size: .82rem; color: var(--ink-mute); font-style: italic; }
.article-aside { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: var(--s3); align-items: start; margin: var(--s4) 0; }
.article-aside .article-fig { margin: 0; }
.article-aside h2 { margin-top: 0; margin-bottom: var(--s2); }
.article-nav { margin-top: var(--s5); padding-top: var(--s3); border-top: 1px solid var(--line); }
.callout { margin: var(--s3) 0 var(--s4); padding: 1.3rem 1.5rem; background: var(--cream); border-left: 3px solid var(--blush-deep); border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
.callout h3 { margin: 0 0 .4rem; }
.callout p { margin: 0; }

/* Bands */
.status-band { background: var(--blush); color: var(--ink); }
.status-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  flex-wrap: wrap;
  padding-block: clamp(var(--s4), 5vw, var(--s5));
}
.status-inner .eyebrow { color: var(--ink-soft); }
.status-inner h2 { font-size: clamp(1.4rem, 2.6vw, 2rem); max-width: 34rem; margin-bottom: .5rem; }
.status-inner p { color: var(--ink-soft); }

.newsletter-band { background: var(--cream-deep); border-top: 1px solid var(--line); }
.newsletter-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(var(--s3), 5vw, var(--s6));
  align-items: center;
  padding-block: clamp(var(--s5), 6vw, var(--s6));
}
.newsletter-copy h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: .6rem; }
.newsletter-copy p { color: var(--ink-soft); max-width: 30rem; }
.newsletter-form { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: var(--s2); align-items: end; }
.newsletter-form .field { margin: 0; }
.newsletter-form .btn { padding: .95rem 1.5rem; }
.newsletter-form .form-status { grid-column: 1 / -1; }

.cta-band { background: var(--forest-deep); color: var(--cream); }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  flex-wrap: wrap;
  padding-block: clamp(var(--s5), 6vw, var(--s6));
}
.cta-inner h2 { margin-bottom: .5rem; }
.cta-inner p { color: rgba(250, 246, 239, .74); max-width: 32rem; }
.cta-inner .hero-actions { margin: 0; }
.cta-inner .btn { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.cta-inner .btn:hover { background: var(--ochre); border-color: var(--ochre); color: var(--paper); }
.cta-inner .btn-ghost { background: transparent; color: var(--cream); border-color: rgba(250, 246, 239, .55); }
.cta-inner .btn-ghost:hover { background: var(--cream); border-color: var(--cream); color: var(--ink); }

.form-status { margin-top: var(--s2); padding: .9rem 1rem; border-radius: var(--radius); font-size: .95rem; }
.form-status.is-ok { background: var(--cream); color: var(--ink); border: 1px solid var(--line); }
.form-status.is-err { background: #FBEDEA; color: #7A2E22; border: 1px solid #E8B7AE; }

/* Intake forms (delivery order, design inquiry) + segmented signup */
.form-wide { max-width: 52rem; margin-inline: auto; }
.form-wide h3 { margin-bottom: .4rem; }
.form-intro { color: var(--ink-soft); font-size: .95rem; margin-bottom: var(--s3); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 var(--s3); }
.form-grid .field-full { grid-column: 1 / -1; }
.order-wrap { margin-top: clamp(var(--s4), 4vw, var(--s5)); }
.inquiry-wrap .contact-form { max-width: none; }
.section-dark .contact-form { box-shadow: none; }
.prose-light p { color: rgba(250, 246, 239, .78); }
.prose-light .first-para { color: var(--cream); }
.check-list { border: 0; padding: 0; margin: 0 0 var(--s3); }
.check-list legend { display: block; margin-bottom: .55rem; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.check { display: flex; align-items: center; gap: .6rem; padding: .35rem 0; font-size: .95rem; color: var(--ink); cursor: pointer; }
.check input { width: 1.05rem; height: 1.05rem; accent-color: var(--ochre); margin: 0; }
.newsletter-form-full { grid-template-columns: minmax(0, 1fr); background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.4rem, 2.6vw, 2rem); }
.newsletter-form-full .btn { justify-self: start; }
.status-band-cream { background: var(--cream); border-bottom: 1px solid var(--line); }
.status-band-cream .status-inner > div { max-width: 46rem; }
.status-band-cream h2 { max-width: none; }
.status-band-cream .hero-actions { margin: 0; flex-direction: column; align-items: stretch; }
.status-band-cream .hero-actions .btn-ghost-dark { background: transparent; color: var(--ink); border-color: var(--ink); }
.status-band-cream .hero-actions .btn-ghost-dark:hover { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.inquiry-wrap .contact-form { color: var(--ink); }
.check-list .check { font-size: .95rem; font-weight: 500; letter-spacing: 0; text-transform: none; color: var(--ink); margin: 0; }

.faq-wrap .section-head { margin-bottom: var(--s4); }
.visit-more { margin-top: var(--s3); }
.contact-intro .info-card { margin-bottom: var(--s3); }
.contact-intro .info-line a { color: inherit; }

@media (max-width: 60rem) {
  .split, .split-reverse, .newsletter-inner { grid-template-columns: minmax(0, 1fr); }
  .split-reverse .split-media { order: -1; }
  .article-aside { grid-template-columns: minmax(0, 1fr); }
  .gallery-flowers .gallery-item:nth-child(n) { grid-column: span 3; aspect-ratio: 4 / 3; }
}
@media (max-width: 46rem) {
  .newsletter-form { grid-template-columns: minmax(0, 1fr); }
  .newsletter-form .btn { width: 100%; }
  .gallery-flowers .gallery-item:nth-child(n) { grid-column: span 6; }
  .workshop-media img { aspect-ratio: 1; }
  .order-note { flex-direction: column; align-items: flex-start; }
  .form-grid { grid-template-columns: minmax(0, 1fr); }
  .status-band-cream .hero-actions { width: 100%; }
}
