/* ============================================
   THE HIDDEN VALE · ELIZABETHTON TN
   "The Hidden Vale Field Guide" — Appalachian pastoral editorial
   ============================================ */

:root {
  /* Palette — Appalachian mountain vale */
  --rose:     #C4907F;   /* mountain blush, dawn over Holston Ridge */
  --rose-dk:  #A67262;
  --sage:     #607552;   /* Appalachian hardwood green */
  --sage-dk:  #415438;
  --sage-lt:  #AABB98;
  --cream:    #F3EDE2;   /* warm Tennessee paper */
  --cream-dk: #E7DDD0;
  --leather:  #5A3C22;   /* eastern oak heartwood */
  --leather-lt:#7B5538;
  --ink:      #1D1C18;
  --paper:    #FAF6EC;
  --rule:     #CABAAB;   /* hand-ruled field-guide line */
  --ochre:    #B58A38;   /* goldenrod mountain accent */

  /* Typography */
  --serif:  "Fraunces", "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans:   "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:   "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;
  --hand:   "Caveat", "Bradley Hand", cursive;

  /* Type scale */
  --fs-mega: clamp(3.2rem, 7vw, 6.4rem);
  --fs-h1:   clamp(2.4rem, 4.4vw, 3.8rem);
  --fs-h2:   clamp(1.8rem, 2.8vw, 2.6rem);
  --fs-h3:   clamp(1.3rem, 1.8vw, 1.6rem);
  --fs-body: 1.025rem;
  --fs-sm:   0.875rem;
  --fs-xs:   0.74rem;
  --fs-mono: 0.72rem;

  /* Layout */
  --max:     1280px;
  --gutter:  clamp(1.2rem, 3vw, 2.6rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.62;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Paper grain texture overlay — subtle */
body::before {
  content: "";
  position: fixed; inset: 0;
  background-image:
    radial-gradient(rgba(90,62,43,0.025) 1px, transparent 1px),
    radial-gradient(rgba(124,138,107,0.018) 1px, transparent 1px);
  background-size: 18px 18px, 31px 31px;
  background-position: 0 0, 7px 11px;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}

main, header, footer, nav, section { position: relative; z-index: 2; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
.serif { font-family: var(--serif); font-variation-settings: "SOFT" 50, "opsz" 144; }
.italic-soft { font-family: var(--serif); font-style: italic; font-variation-settings: "SOFT" 100, "opsz" 144; }
.mono  { font-family: var(--mono); }
.hand  { font-family: var(--hand); }

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "SOFT" 60, "opsz" 144;
  letter-spacing: -0.012em;
  line-height: 1.08;
  color: var(--ink);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); letter-spacing: -0.005em; }

.mega {
  font-family: var(--serif);
  font-size: var(--fs-mega);
  font-weight: 300;
  font-variation-settings: "SOFT" 80, "opsz" 144;
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.mega em {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  color: var(--sage-dk);
}

p { color: var(--leather); max-width: 62ch; }
p.lead {
  font-family: var(--serif);
  font-size: 1.32rem;
  line-height: 1.5;
  font-variation-settings: "SOFT" 70, "opsz" 36;
  color: var(--ink);
  max-width: 64ch;
}
p.lead em { font-style: italic; color: var(--rose-dk); }

/* Drop cap */
.dropcap::first-letter {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 100, "opsz" 144;
  font-size: 4.6rem;
  float: left;
  line-height: 0.86;
  padding: 0.25rem 0.6rem 0 0;
  color: var(--sage-dk);
  font-weight: 400;
}

/* ============================================
   LABELS — botanical taxonomy style
   ============================================ */
.label {
  font-family: var(--mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--leather);
}
.label--sage { color: var(--sage-dk); }
.label--rose { color: var(--rose-dk); }

.plate-no {
  font-family: var(--mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--leather-lt);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.plate-no::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--leather-lt);
}

.genus {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "SOFT" 100;
  color: var(--sage-dk);
  font-size: 0.95rem;
}

.margin-note {
  font-family: var(--hand);
  font-size: 1.35rem;
  color: var(--rose-dk);
  line-height: 1.15;
  transform: rotate(-1.5deg);
  display: inline-block;
}

/* ============================================
   LAYOUT
   ============================================ */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.narrow { max-width: 920px; margin: 0 auto; padding: 0 var(--gutter); }

.section { padding: clamp(4rem, 9vw, 8rem) 0; }
.section--tight { padding: clamp(2.4rem, 5vw, 4rem) 0; }
.section--sage { background: var(--sage-dk); color: var(--cream); }
.section--sage h1, .section--sage h2, .section--sage h3 { color: var(--cream); }
.section--sage p { color: rgba(242,235,223,0.86); }
.section--cream { background: var(--cream); }
.section--ink { background: var(--ink); color: var(--cream); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--cream); }
.section--ink p { color: rgba(242,235,223,0.78); }

/* ============================================
   NAV — top field-guide masthead
   ============================================ */
.masthead {
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(250,246,236,0.92);
}
.masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-variation-settings: "SOFT" 80, "opsz" 36;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.brand__mark { width: 32px; height: 32px; flex: 0 0 32px; }
.brand__name {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  font-family: var(--mono);
  color: var(--leather);
}
.brand__sub {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "SOFT" 100;
  font-size: 0.95rem;
  color: var(--sage-dk);
  display: block;
  margin-top: 0.05rem;
}
.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  font-family: var(--mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav-links a {
  color: var(--leather);
  padding: 0.4rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--sage-dk); border-bottom-color: var(--sage-dk); }

.nav-cta {
  font-family: var(--mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.7rem 1.1rem;
  background: var(--ink);
  color: var(--cream);
  border: 1px solid var(--ink);
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--sage-dk); border-color: var(--sage-dk); }

.menu-toggle { display: none; background: none; border: 0; color: var(--ink); cursor: pointer; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-cta { padding: 0.55rem 0.8rem; font-size: 0.62rem; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 1rem var(--gutter);
  }
  .nav-links.open li { padding: 0.7rem 0; border-bottom: 1px dashed var(--rule); }
  .nav-links.open li:last-child { border-bottom: 0; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 1.6rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn:hover { background: var(--sage-dk); border-color: var(--sage-dk); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--sage { background: var(--sage-dk); border-color: var(--sage-dk); }
.btn--sage:hover { background: var(--leather); border-color: var(--leather); }
.btn--rose { background: var(--rose-dk); border-color: var(--rose-dk); }
.btn--rose:hover { background: var(--leather); border-color: var(--leather); }
.btn--cream { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn--cream:hover { background: var(--paper); }
.btn .arr { transition: transform 0.25s; display: inline-block; }
.btn:hover .arr { transform: translateX(4px); }

/* ============================================
   HERO — cover plate
   ============================================ */
.hero {
  padding: clamp(3rem, 7vw, 6rem) var(--gutter) clamp(4rem, 8vw, 7rem);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  position: relative;
}
.hero__masthead {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--leather-lt);
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--rule);
}
.hero__title {
  margin: 1.5rem 0 1.8rem;
  max-width: 22ch;
}
.hero__lede {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}
.hero__lede p.lead { padding-right: 1rem; }
.hero__lede .cta-stack {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-start;
}
.hero__specimen {
  position: absolute;
  right: -40px;
  top: 12%;
  width: 260px;
  height: 360px;
  opacity: 0.65;
  pointer-events: none;
}
.hero__specimen svg { width: 100%; height: 100%; }

@media (max-width: 880px) {
  .hero__lede { grid-template-columns: 1fr; gap: 1.6rem; }
  .hero__specimen { width: 140px; height: 200px; right: -20px; top: 4%; opacity: 0.4; }
}

/* ============================================
   SPECIMEN CARDS — image with taxonomic label
   ============================================ */
.specimen {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.specimen__img {
  aspect-ratio: 4 / 5;
  background: var(--cream-dk);
  position: relative;
  overflow: hidden;
}
.specimen__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.specimen:hover .specimen__img img { transform: scale(1.04); }
.specimen__img--wide { aspect-ratio: 16 / 11; }
.specimen__img--tall { aspect-ratio: 3 / 4; }
.specimen__label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 0.35rem;
}
.specimen__title {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 60;
  font-size: 1.05rem;
  color: var(--ink);
}
.specimen__caption {
  font-family: var(--mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--leather);
  line-height: 1.5;
}
.specimen__caption em {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "SOFT" 100;
  text-transform: none;
  letter-spacing: 0;
  color: var(--sage-dk);
}
.specimen__placeholder {
  position: absolute; inset: 0;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, var(--sage-lt) 0%, var(--cream-dk) 50%, var(--rose) 100%);
  color: rgba(31,30,26,0.4);
  font-family: var(--mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.specimen__placeholder svg { width: 64%; height: 64%; opacity: 0.42; }

/* Real photo specimen — used when actual photography is wired in */
.specimen__photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(0.94) contrast(1.02);
}
.specimen__photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(31,30,26,0.18) 100%);
  pointer-events: none;
}

/* ============================================
   BARN PAIR — two-card hero showcase
   ============================================ */
.barn-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
}
@media (max-width: 800px) { .barn-pair { grid-template-columns: 1fr; } }
.barn-card {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding: 1.6rem;
  background: var(--cream);
  border: 1px solid var(--rule);
  position: relative;
}
.barn-card__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--rule);
}
.barn-card__img {
  aspect-ratio: 4 / 3;
  background: var(--cream-dk);
  position: relative;
  overflow: hidden;
}
.barn-card__title {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 80;
  font-size: 2rem;
  color: var(--ink);
  margin: 0.6rem 0 0.4rem;
}
.barn-card__title em { font-style: italic; color: var(--rose-dk); font-variation-settings: "SOFT" 100; }
.barn-card__sub { font-family: var(--serif); font-style: italic; color: var(--sage-dk); margin-bottom: 0.6rem; }
.barn-card__feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-family: var(--mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--leather);
  padding-top: 0.8rem;
  border-top: 1px solid var(--rule);
}
.barn-card__feats li { display: flex; gap: 0.7rem; align-items: center; }
.barn-card__feats li::before {
  content: "";
  width: 14px; height: 1px;
  background: var(--sage-dk);
  flex: 0 0 14px;
}
.barn-card__cta {
  margin-top: auto;
  align-self: flex-start;
}

/* ============================================
   LEDGER — pricing table styled as accounting book
   ============================================ */
.ledger {
  background: var(--cream);
  border: 1px solid var(--leather);
  position: relative;
  padding: 1.4rem 1.6rem 1.6rem;
}
.ledger__head {
  font-family: var(--mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--leather);
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--leather);
  margin-bottom: 0.8rem;
}
.ledger__title {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 80;
  font-size: 1.6rem;
  color: var(--ink);
  margin: 0.4rem 0 1.2rem;
}
.ledger__title em { font-style: italic; color: var(--rose-dk); font-variation-settings: "SOFT" 100; }
.ledger-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--mono);
  font-size: 0.86rem;
}
.ledger-table th {
  font-weight: 400;
  font-size: var(--fs-mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--leather-lt);
  text-align: left;
  padding: 0.7rem 0.5rem;
  border-bottom: 1px solid var(--rule);
}
.ledger-table th.num { text-align: right; }
.ledger-table td {
  padding: 0.95rem 0.5rem;
  border-bottom: 1px dotted var(--rule);
  color: var(--ink);
  vertical-align: top;
}
.ledger-table td.num { text-align: right; font-feature-settings: "tnum"; color: var(--leather); }
.ledger-table td.num strong { color: var(--ink); font-weight: 500; }
.ledger-table tr:last-child td { border-bottom: 0; }
.ledger-table .row-label {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 80;
  font-size: 1rem;
  color: var(--ink);
}
.ledger-table .row-sub {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "SOFT" 100;
  font-size: 0.84rem;
  color: var(--sage-dk);
  margin-top: 0.1rem;
}
.ledger__foot {
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--leather);
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--leather);
}

/* ============================================
   INCLUDED / NOT INCLUDED dual list
   ============================================ */
.in-out {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
}
@media (max-width: 700px) { .in-out { grid-template-columns: 1fr; } }
.in-out__col h3 {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 80;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--rule);
}
.in-out__list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.in-out__list li {
  font-family: var(--serif);
  font-size: 1.02rem;
  color: var(--ink);
  display: flex;
  gap: 0.7rem;
  align-items: baseline;
  padding-bottom: 0.6rem;
  border-bottom: 1px dotted var(--rule);
}
.in-out__list li::before {
  content: "·";
  font-family: var(--mono);
  font-size: 1.3rem;
  color: var(--sage-dk);
  flex: 0 0 8px;
}
.in-out__col--no .in-out__list li::before { color: var(--rose-dk); }

/* ============================================
   STAT STRIP — botanical specimen tags
   ============================================ */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 800px) { .stat-strip { grid-template-columns: repeat(2, 1fr); } }
.stat {
  background: var(--paper);
  padding: 1.8rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.stat__num {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 80;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.stat__num em { font-style: italic; color: var(--rose-dk); font-variation-settings: "SOFT" 100; }
.stat__label {
  font-family: var(--mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--leather);
  line-height: 1.4;
}

/* ============================================
   GRIDS
   ============================================ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 3vw, 3rem); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 2.5vw, 2.4rem); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem, 2vw, 2rem); }
@media (max-width: 900px) { .grid-2 { grid-template-columns: 1fr; } .grid-3 { grid-template-columns: 1fr 1fr; } .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ============================================
   DIVIDERS — pressed-flower botanical
   ============================================ */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 2.5rem 0;
  color: var(--sage-dk);
}
.divider::before, .divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rule);
  max-width: 240px;
}
.divider svg { width: 28px; height: 28px; color: var(--sage-dk); }

.rule-thin { height: 1px; background: var(--rule); }
.rule-dashed { border-top: 1px dashed var(--rule); }

/* ============================================
   QUOTE — chef's-note style
   ============================================ */
.quote-block {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 1.5rem;
}
.quote-block .open {
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--rose);
  line-height: 0.4;
  font-variation-settings: "SOFT" 100;
  display: block;
  margin-bottom: 0.4rem;
}
.quote-block p {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 70;
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.32;
  color: var(--ink);
  margin: 0 auto;
  max-width: 28ch;
}
.quote-block cite {
  display: block;
  margin-top: 1.6rem;
  font-family: var(--mono);
  font-style: normal;
  font-size: var(--fs-mono);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-dk);
}

/* ============================================
   FAQ — field-guide entry style
   ============================================ */
.fg-entry {
  border-top: 1px solid var(--rule);
  padding: 1.8rem 0;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
}
@media (max-width: 700px) { .fg-entry { grid-template-columns: 1fr; gap: 0.6rem; } }
.fg-entry__num {
  font-family: var(--mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--leather-lt);
  padding-top: 0.4rem;
}
.fg-entry__q {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 70;
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 0.7rem;
}
.fg-entry__q em { font-style: italic; color: var(--sage-dk); font-variation-settings: "SOFT" 100; }
.fg-entry__a {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--leather);
  max-width: 64ch;
}
.fg-entry__a strong { color: var(--ink); font-weight: 500; }

/* ============================================
   VENDORS — library shelf cards
   ============================================ */
.vendor-shelf {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
}
@media (max-width: 700px) { .vendor-shelf { grid-template-columns: 1fr; } }
.vendor-shelf__cat {
  padding: 1.6rem 1.8rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.vendor-shelf__cat:nth-child(2n) { border-right: 0; }
.vendor-shelf__cat-label {
  font-family: var(--mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-dk);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 0.9rem;
}
.vendor-shelf__cat-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.vendor-shelf__name {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 70;
  font-size: 1.25rem;
  color: var(--ink);
  display: block;
  margin-bottom: 0.3rem;
}
.vendor-shelf__name em { font-style: italic; font-variation-settings: "SOFT" 100; color: var(--rose-dk); }
.vendor-shelf__url {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--leather-lt);
  border-bottom: 1px dotted var(--leather-lt);
}
.vendor-shelf__url:hover { color: var(--sage-dk); border-bottom-color: var(--sage-dk); }
.vendor-shelf__note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--leather);
  margin-top: 0.4rem;
  font-variation-settings: "SOFT" 100;
}

/* ============================================
   FORM — booking inquiry
   ============================================ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem 1.8rem;
}
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-family: var(--mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dk);
}
.field input, .field textarea, .field select {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  padding: 0.7rem 0;
  outline: none;
  transition: border-color 0.2s;
  font-variation-settings: "SOFT" 70;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-bottom-color: var(--sage-dk);
}
.field textarea { resize: vertical; min-height: 120px; }

/* ============================================
   FOOTER
   ============================================ */
.site-foot {
  background: var(--ink);
  color: var(--cream);
  padding: 4rem var(--gutter) 2.2rem;
  border-top: 8px solid var(--sage-dk);
}
.site-foot__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(242,235,223,0.15);
}
@media (max-width: 880px) { .site-foot__grid { grid-template-columns: 1fr 1fr; } }
.site-foot h4 {
  font-family: var(--mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
  font-weight: 400;
}
.site-foot__lockup {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 80;
  font-size: 1.4rem;
  color: var(--cream);
  line-height: 1.3;
}
.site-foot__lockup em { font-style: italic; color: var(--rose); font-variation-settings: "SOFT" 100; }
.site-foot__addr { font-style: normal; color: rgba(242,235,223,0.78); line-height: 1.7; font-size: 0.95rem; }
.site-foot ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.site-foot a { color: rgba(242,235,223,0.82); border-bottom: 1px solid transparent; transition: color 0.2s, border-color 0.2s; font-size: 0.93rem; }
.site-foot a:hover { color: var(--cream); border-bottom-color: var(--rose); }
.site-foot__base {
  max-width: var(--max);
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242,235,223,0.5);
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* ============================================
   REVEAL — fallback-safe
   ============================================ */
.reveal { opacity: 1; transform: none; transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1); }
.reveal--hidden { opacity: 0; transform: translateY(20px); }
.reveal--visible { opacity: 1; transform: translateY(0); }

/* Utility */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; }
.flex { display: flex; gap: 1rem; }
.flex-col { display: flex; flex-direction: column; gap: 1rem; }
.gap-sm { gap: 0.5rem; } .gap-lg { gap: 2rem; }
.align-center { align-items: center; } .justify-between { justify-content: space-between; }
.wrap { flex-wrap: wrap; }

/* ============================================
   PREMIUM POLISH LAYER — v2 elevation
   Tasteful motion, depth & finish. All fail-open.
   ============================================ */

/* --- Real-photo specimens: slow Ken Burns drift on hover --- */
.specimen__photo { transition: transform 1.1s cubic-bezier(.2,.6,.2,1), filter 0.6s ease; will-change: transform; }
.specimen:hover .specimen__photo,
.barn-card:hover .specimen__photo { transform: scale(1.055); filter: saturate(1.02) contrast(1.04); }
.specimen__img { box-shadow: inset 0 0 0 1px rgba(90,62,43,0.06); }
.specimen__img::after {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 -60px 80px -50px rgba(31,30,26,0.35);
  pointer-events: none; opacity: 0; transition: opacity 0.6s ease;
}
.specimen:hover .specimen__img::after { opacity: 1; }

/* --- Gallery first-load Ken Burns: gentle perpetual life on hero photos --- */
@keyframes kb-drift {
  0%   { transform: scale(1.02) translate3d(0,0,0); }
  100% { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
}
.kenburns .specimen__photo { animation: kb-drift 18s ease-in-out infinite alternate; }

/* --- Staggered reveal for grids: children cascade in --- */
.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1); }
.reveal-stagger.reveal--visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.reveal--visible > *:nth-child(1){ transition-delay:.00s }
.reveal-stagger.reveal--visible > *:nth-child(2){ transition-delay:.07s }
.reveal-stagger.reveal--visible > *:nth-child(3){ transition-delay:.14s }
.reveal-stagger.reveal--visible > *:nth-child(4){ transition-delay:.21s }
.reveal-stagger.reveal--visible > *:nth-child(5){ transition-delay:.28s }
.reveal-stagger.reveal--visible > *:nth-child(6){ transition-delay:.35s }
.reveal-stagger.reveal--visible > *:nth-child(7){ transition-delay:.42s }
.reveal-stagger.reveal--visible > *:nth-child(8){ transition-delay:.49s }

/* --- Reveal direction variants --- */
.reveal--hidden.from-left  { transform: translateX(-28px); }
.reveal--hidden.from-right { transform: translateX(28px); }
.reveal--visible.from-left, .reveal--visible.from-right { transform: translateX(0); }

/* --- Hero specimen: breathe gently instead of static --- */
@keyframes sway { 0%,100% { transform: rotate(-1.2deg) translateY(0); } 50% { transform: rotate(1deg) translateY(-8px); } }
.hero__specimen svg { transform-origin: 50% 0; animation: sway 11s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .hero__specimen svg, .kenburns .specimen__photo { animation: none; } }

/* --- Mega title: per-line entrance --- */
@keyframes rise-in { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.hero .mega { animation: rise-in 1s cubic-bezier(.2,.7,.2,1) both; }
.hero .hero__masthead { animation: rise-in .8s ease both; }
.hero .hero__lede { animation: rise-in 1s cubic-bezier(.2,.7,.2,1) .15s both; }

/* --- Buttons: depth + sheen --- */
.btn { position: relative; overflow: hidden; box-shadow: 0 1px 0 rgba(31,30,26,0.04); }
.btn::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.16), transparent);
  transform: skewX(-18deg); transition: left .6s ease;
}
.btn:hover::after { left: 130%; }
.btn:active { transform: translateY(1px); }

/* --- Nav links: animated underline grows from left --- */
.nav-links a { position: relative; border-bottom: 0 !important; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 100%;
  background: var(--sage-dk); transform: scaleX(0); transform-origin: left; transition: transform .28s cubic-bezier(.4,0,.2,1);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

/* --- Card lift on hover (barn cards, vendor cards, price tiers, specimen blocks) --- */
.barn-card, .vendor-card, .price-tier { transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease, border-color .3s ease; }
.barn-card:hover, .vendor-card:hover, .price-tier:hover { transform: translateY(-5px); box-shadow: 0 18px 40px -24px rgba(31,30,26,0.32); }

/* --- Masthead: refine sticky shadow once scrolled --- */
.masthead { transition: box-shadow .3s ease, background .3s ease; }
.masthead.is-stuck { box-shadow: 0 8px 30px -22px rgba(31,30,26,0.4); }

/* --- Section dividers: ornament gently rotates in --- */
.divider span svg { transition: transform .8s ease; }
.divider:hover span svg { transform: rotate(8deg) scale(1.1); }

/* --- Quote blocks & stat numbers: subtle weight on reveal --- */
.stat__num { transition: color .4s ease; }
.stat:hover .stat__num { color: var(--rose-dk); }

/* --- Accessible focus ring (keyboard only) --- */
a:focus-visible, button:focus-visible, .btn:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2.5px solid var(--sage-dk); outline-offset: 3px; border-radius: 2px;
}

/* --- Scroll progress hairline (botanical sage) --- */
#scrollProgress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--sage-dk), var(--rose));
  z-index: 100; transition: width .1s linear; pointer-events: none;
}

/* --- Readability hardening: ensure body copy never goes too light --- */
.section--cream p { color: #4A3526; }
.fg-entry__a, .tier-desc, .vendor-card__note, .step-text, .info-block__value { color: #44342A; }
.specimen__caption { color: #6B4E38; }

/* --- Link hover within prose --- */
.info-block__value a, .fg-entry__a a { transition: color .2s ease, border-color .2s ease; }

/* --- Image lazy fade-in helper --- */
img { background: var(--cream-dk); }




