/* =====================================================================
   ARGYLE FARMS — Direction 02 "PROVISIONS"
   Warm neighborhood farm-market. Cream grounds, produce green + tomato,
   Newsreader (serif display + italic accents) & Mulish (rounded body/UI).
   No monospace, no hard black bands, soft radii, gentle shadows.
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* palette */
  --cream:     #F7F1E6;   /* base ground */
  --cream-2:   #F1E8D6;   /* deeper cream for alternating bands */
  --paper:     #FBF7EF;   /* card / raised surfaces */
  --forest:    #3B5323;   /* primary */
  --forest-dk: #2C3F1A;   /* deep ground (footer/heritage) */
  --forest-soft: #E7ECDC; /* pale green tint */
  --tomato:    #B5461E;   /* warm accent / buttons */
  --tomato-dk: #9C3B16;
  --barn:      #8A3B12;   /* secondary warm */
  --honey:     #C8A951;   /* sparing accent */
  --honey-soft:#F0E4C4;   /* pale honey tint (pills) */
  --ink:       #241E17;   /* text */
  --ink-70:    rgba(36, 30, 23, .70);
  --ink-55:    rgba(36, 30, 23, .55);
  --line:      rgba(36, 30, 23, .12);
  --line-2:    rgba(36, 30, 23, .18);
  --line-cream:rgba(247, 241, 230, .18);

  /* type */
  --ff-display: "Newsreader", Georgia, "Times New Roman", serif;
  --ff-body: "Mulish", system-ui, -apple-system, Segoe UI, sans-serif;

  /* radii — soft */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 18px;
  --r-xl: 26px;
  --r-pill: 999px;

  /* shadows — warm, gentle */
  --shadow-sm: 0 1px 2px rgba(58,42,24,.05), 0 4px 14px rgba(58,42,24,.06);
  --shadow-md: 0 10px 30px rgba(58,42,24,.10);
  --shadow-lg: 0 22px 54px rgba(58,42,24,.15);

  --wrap: 1180px;
  --gap: clamp(16px, 3vw, 28px);
  --header-h: 70px;
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.005em;
  margin: 0;
  color: var(--ink);
}
p { margin: 0; }
ul { margin: 0; }

/* Accessible focus */
:focus-visible {
  outline: 3px solid var(--tomato);
  outline-offset: 2px;
  border-radius: 5px;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 1000;
  background: var(--forest);
  color: var(--cream);
  padding: 11px 18px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow-md);
}
.skip-link:focus { left: 12px; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(18px, 5vw, 40px); }
.section { padding-block: clamp(52px, 8vw, 100px); }
.section--paper { background: var(--paper); }
.section--cream2 { background: var(--cream-2); }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }

/* Eyebrow — Newsreader italic (warm, editorial). No letterspaced caps. */
.eyebrow {
  display: inline-block;
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.28rem;
  line-height: 1.2;
  color: var(--barn);
  margin-bottom: .5rem;
}
.eyebrow.on-dark { color: var(--honey); }

.section-head { max-width: 660px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 5vw, 48px); }
.section-head p { margin-top: 14px; color: var(--ink-70); font-size: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 15.5px;
  line-height: 1;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .16s ease, background-color .16s ease, color .16s ease, border-color .16s ease, box-shadow .16s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--tomato { background: var(--tomato); color: #FFF6EE; box-shadow: 0 6px 18px rgba(181,70,30,.24); }
.btn--tomato:hover { background: var(--tomato-dk); color: #FFF6EE; }
.btn--forest { background: var(--forest); color: var(--cream); box-shadow: 0 6px 18px rgba(59,83,35,.22); }
.btn--forest:hover { background: var(--forest-dk); color: var(--cream); }
.btn--outline { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn--outline:hover { background: var(--forest); color: var(--cream); }
.btn--outline-cream { background: transparent; color: var(--cream); border-color: var(--line-cream); }
.btn--outline-cream:hover { background: var(--cream); color: var(--forest-dk); border-color: var(--cream); }
.btn--sm { padding: 11px 20px; font-size: 14.5px; }
.btn--block { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 241, 230, .90);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: var(--header-h);
  padding-block: 10px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
}
.brand__crest { width: 42px; height: 42px; }
.brand__name {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 23px;
  letter-spacing: -.01em;
  color: var(--ink);
}

.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  text-decoration: none;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  padding: 9px 13px;
  border-radius: var(--r-pill);
  transition: background-color .15s ease, color .15s ease;
}
.main-nav a:hover { background: var(--forest-soft); color: var(--forest-dk); }
.main-nav a[aria-current="page"] { color: var(--tomato); }
.main-nav a[aria-current="page"]:hover { background: rgba(181,70,30,.10); color: var(--tomato); }

.header-actions { display: flex; align-items: center; gap: 10px; }

/* Cart → warm rounded "Basket (0)" text control (no status dot, no mono) */
.cart-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--paper);
  color: var(--forest-dk);
  border: 1.5px solid var(--line-2);
  border-radius: var(--r-pill);
  padding: 9px 16px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 14.5px;
  transition: background-color .15s ease, border-color .15s ease, transform .15s ease;
}
.cart-chip:hover { background: var(--forest-soft); border-color: var(--forest); }
.cart-chip__icon { width: 18px; height: 18px; stroke: var(--forest); flex-shrink: 0; }
.cart-chip__count-wrap { color: var(--tomato); font-variant-numeric: tabular-nums; }
.cart-chip.bump { animation: bump .35s ease; }
@keyframes bump { 0%,100% { transform: scale(1); } 40% { transform: scale(1.10); } }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1.5px solid var(--line-2);
  background: var(--paper);
  border-radius: var(--r-md);
  align-items: center;
  justify-content: center;
  color: var(--forest-dk);
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 920px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 14px clamp(18px, 5vw, 40px) 22px;
    transform: translateY(-120%);
    transition: transform .25s ease;
    box-shadow: var(--shadow-md);
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 14px 12px; font-size: 17px; border-radius: var(--r-md); }
  .site-header__inner { gap: 10px; }
  .header-actions { gap: 8px; }
  .brand__crest { width: 36px; height: 36px; }
  .brand__name { font-size: 20px; }
  .cart-chip { padding: 9px 14px; font-size: 14px; }
}
@media (max-width: 480px) {
  .cart-chip__label { display: none; }
  .cart-chip { padding: 9px 12px; gap: 6px; }
  .brand__crest { width: 34px; height: 34px; }
  .brand__name { font-size: 19px; }
  .nav-toggle { width: 42px; height: 42px; }
}

/* ============================================================
   HERO (index) — photography-led, cream ground, soft corners
   ============================================================ */
.hero { background: var(--cream); position: relative; }
.hero::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 1px; background: var(--line);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding-block: clamp(40px, 6vw, 88px);
}
.hero__copy { max-width: 34rem; }
.hero h1 {
  font-size: clamp(40px, 6.4vw, 72px);
  line-height: 1.04;
  letter-spacing: -.01em;
  margin-top: 6px;
}
.hero h1 em { font-style: italic; font-weight: 500; color: var(--tomato); }
.hero__sub {
  margin-top: 22px;
  max-width: 46ch;
  font-size: clamp(17px, 1.6vw, 19px);
  color: var(--ink-70);
}
.hero__cta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__ship {
  margin-top: 24px;
  font-size: 15px;
  color: var(--ink-70);
  display: flex; align-items: center; gap: 10px;
}
.hero__ship svg { width: 20px; height: 20px; stroke: var(--forest); flex-shrink: 0; }

.hero__media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--cream-2);
  aspect-ratio: 5 / 6;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__tag {
  position: absolute;
  left: 16px; bottom: 16px;
  background: rgba(247, 241, 230, .94);
  color: var(--forest-dk);
  border-radius: var(--r-pill);
  padding: 9px 16px;
  font-weight: 700;
  font-size: 13.5px;
  box-shadow: var(--shadow-sm);
  display: inline-flex; align-items: center; gap: 8px;
}
.hero__tag svg { width: 16px; height: 16px; stroke: var(--forest); fill: none; flex-shrink: 0; }
@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 520px; aspect-ratio: 4 / 3; }
}

/* ============================================================
   BENEFITS — warm market bar
   ============================================================ */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}
.benefit {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.benefit__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--forest-soft);
  display: grid; place-items: center;
  margin-bottom: 4px;
}
.benefit__icon svg { width: 25px; height: 25px; stroke: var(--forest); fill: none; }
.benefit h3 { font-size: 20px; }
.benefit p { font-size: 14.5px; color: var(--ink-70); line-height: 1.5; }
@media (max-width: 780px) { .benefits__grid { grid-template-columns: repeat(2, 1fr); gap: clamp(22px,4vw,32px); } }
@media (max-width: 420px) { .benefits__grid { grid-template-columns: 1fr; } }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.product-grid--merch { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .product-grid, .product-grid--merch { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .product-grid, .product-grid--merch { grid-template-columns: 1fr; } }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-2);
}
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card:hover .card__media img { transform: scale(1.03); }
.card__media img { transition: transform .4s ease; }
/* tinted media (products without a photo) */
.card__media--tint {
  display: grid; place-items: center;
  background: radial-gradient(120% 120% at 30% 20%, var(--honey-soft), var(--cream-2));
}
.card__media--tint.is-forest {
  background: radial-gradient(120% 120% at 30% 20%, var(--forest-soft), var(--cream-2));
}
.card__crest { width: 46%; max-width: 150px; opacity: .92; }
/* product photography (merch) — contained on paper */
.card__media--photo { background: var(--paper); display: grid; place-items: center; padding: 10px; }
.card__media--photo img { width: 100%; height: 100%; object-fit: contain; }

.card__tag {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: var(--tomato);
  color: #FFF6EE;
  box-shadow: var(--shadow-sm);
}
.card__tag--soft { background: rgba(247,241,230,.94); color: var(--forest-dk); }

.card__body { padding: 20px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.card__title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.card__title { font-size: 22px; }
.price-chip {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 15px;
  background: var(--tomato);
  color: #FFF6EE;
  padding: 6px 13px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  align-self: flex-start;
}
.card__desc { font-size: 14.5px; color: var(--ink-70); line-height: 1.55; flex: 1; }

/* friendly sentence-case pills (replaces mono meta) */
.tags { display: flex; flex-wrap: wrap; gap: 7px; }
.tag {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 12.5px;
  color: var(--barn);
  background: var(--honey-soft);
  border-radius: var(--r-pill);
  padding: 4px 11px;
}
.card .btn { margin-top: 6px; }

/* ============================================================
   HERITAGE / STORY TEASER (index) — two-column, cream (no black band)
   ============================================================ */
.heritage__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
.heritage__media {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background: var(--cream-2);
}
.heritage__media img { width: 100%; height: 100%; object-fit: cover; }
.heritage h2 { font-size: clamp(28px, 4.4vw, 44px); }
.heritage p { margin-top: 16px; color: var(--ink-70); font-size: 17.5px; }
.heritage .btn { margin-top: 26px; }
@media (max-width: 820px) {
  .heritage__grid { grid-template-columns: 1fr; }
  .heritage__media { order: -1; max-width: 560px; }
}

/* ============================================================
   MEET THE ANIMALS
   ============================================================ */
.animals__lead { max-width: 60ch; margin-top: 14px; color: var(--ink-70); font-size: 18px; }
.animals__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: clamp(28px, 4vw, 44px);
}
.animal-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.animal-card__media { aspect-ratio: 3 / 2; overflow: hidden; background: var(--cream-2); }
.animal-card__media img { width: 100%; height: 100%; object-fit: cover; }
.animal-card__body { padding: 18px 20px 22px; }
.animal-card__body h3 { font-size: 20px; }
.animal-card__body p { margin-top: 5px; font-size: 14.5px; color: var(--ink-70); }
@media (max-width: 820px) { .animals__grid { grid-template-columns: 1fr; max-width: 460px; } }

/* ============================================================
   MERCH HIGHLIGHT (index)
   ============================================================ */
.merch-hi__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}
.merch-hi__card {
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}
.merch-hi__img { background: var(--cream-2); display: grid; place-items: center; padding: 20px; min-height: 240px; }
.merch-hi__img img { width: 100%; height: 100%; max-height: 300px; object-fit: contain; }
.merch-hi__body { padding: 24px; display: flex; flex-direction: column; gap: 9px; justify-content: center; align-items: flex-start; }
.merch-hi__body h3 { font-size: 23px; }
.merch-hi__body p { font-size: 14.5px; color: var(--ink-70); }
@media (max-width: 560px) { .merch-hi__grid { grid-template-columns: 1fr; } .merch-hi__card { grid-template-columns: 1fr; } }

/* ============================================================
   NEWSLETTER — warm cream, serif headline (no dark band)
   ============================================================ */
.newsletter { background: var(--cream-2); }
.newsletter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 52px);
  box-shadow: var(--shadow-sm);
}
.newsletter h2 { font-size: clamp(28px, 4vw, 42px); }
.newsletter p { margin-top: 12px; color: var(--ink-70); max-width: 42ch; }
.newsletter__form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter__form input {
  flex: 1;
  min-width: 200px;
  padding: 15px 18px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--line-2);
  background: var(--cream);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 15px;
}
.newsletter__form input::placeholder { color: var(--ink-55); }
.newsletter__form input:focus { border-color: var(--forest); outline: none; }
.newsletter__note { margin-top: 14px; font-size: 13px; color: var(--ink-55); font-style: italic; }
@media (max-width: 700px) { .newsletter__inner { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER — deep forest (warm, not black)
   ============================================================ */
.site-footer { background: var(--forest-dk); color: var(--cream); padding-block: clamp(48px, 6vw, 80px) 30px; }
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: clamp(28px, 4vw, 52px);
}
.footer__brand { display: flex; flex-direction: column; gap: 14px; }
.footer__crest { width: 88px; }
.footer__brand p { color: rgba(247,241,230,.72); font-size: 14.5px; max-width: 34ch; }
.footer__col h4 {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  color: var(--honey);
  margin-bottom: 14px;
}
.footer__col ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.footer__col a { text-decoration: none; color: rgba(247,241,230,.82); font-size: 14.5px; }
.footer__col a:hover { color: var(--cream); text-decoration: underline; }
.footer__col address { font-style: normal; color: rgba(247,241,230,.82); font-size: 14.5px; line-height: 1.75; }
.footer__col address a { text-decoration: none; }
.footer__socials { display: flex; gap: 10px; margin-top: 12px; }
.footer__socials a {
  width: 40px; height: 40px;
  border: 1px solid var(--line-cream);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--cream);
}
.footer__socials a:hover { background: rgba(247,241,230,.10); }
.footer__socials svg { width: 18px; height: 18px; }
.footer__bottom {
  margin-top: clamp(36px, 5vw, 56px);
  padding-top: 24px;
  border-top: 1px solid var(--line-cream);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
}
.footer__bottom p { font-size: 13px; color: rgba(247,241,230,.62); line-height: 1.7; }
.footer__legal { max-width: 64ch; font-size: 12.5px !important; color: rgba(247,241,230,.62) !important; }
@media (max-width: 820px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__top { grid-template-columns: 1fr; } }

/* ============================================================
   TOAST — warm
   ============================================================ */
.toast-wrap {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  pointer-events: none;
}
.toast {
  background: var(--forest-dk);
  color: var(--cream);
  border-left: 4px solid var(--honey);
  border-radius: var(--r-md);
  padding: 13px 18px;
  box-shadow: var(--shadow-md);
  font-size: 14.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 260px;
  max-width: 90vw;
  animation: toast-in .3s ease;
}
.toast strong { font-family: var(--ff-display); font-weight: 600; }
.toast.hide { animation: toast-out .3s ease forwards; }
.toast svg { width: 18px; height: 18px; color: var(--honey); flex-shrink: 0; }
@keyframes toast-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes toast-out { to { opacity: 0; transform: translateY(16px); } }

/* ============================================================
   PAGE HERO (story / shop / visit)
   ============================================================ */
.page-hero { background: var(--cream); border-bottom: 1px solid var(--line); }
.page-hero__inner { padding-block: clamp(44px, 6vw, 84px); }
.page-hero h1 { font-size: clamp(38px, 6vw, 74px); line-height: 1.03; max-width: 18ch; margin-top: 4px; }
.page-hero h1 em { font-style: italic; font-weight: 500; color: var(--tomato); }
.page-hero p { margin-top: 20px; max-width: 54ch; font-size: 19px; color: var(--ink-70); }

/* ============================================================
   STORY PAGE
   ============================================================ */
.story__figure {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 7;
  background: var(--cream-2);
  margin-bottom: clamp(36px, 5vw, 60px);
}
.story__figure img { width: 100%; height: 100%; object-fit: cover; }

.prose {
  max-width: 62ch;
  font-size: 18.5px;
  line-height: 1.72;
  color: var(--ink);
}
.prose p { margin-bottom: 20px; }
.prose p:first-of-type::first-letter {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 3.6em;
  float: left;
  line-height: .82;
  padding: 8px 14px 0 0;
  color: var(--tomato);
}
.prose strong { font-weight: 700; color: var(--forest-dk); }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.stat {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3.5vw, 38px);
  box-shadow: var(--shadow-sm);
}
.stat__num { font-family: var(--ff-display); font-weight: 600; font-size: clamp(40px, 6vw, 64px); line-height: 1; color: var(--tomato); }
.stat__label { font-size: 14.5px; color: var(--ink-70); margin-top: 12px; }
@media (max-width: 680px) { .stats { grid-template-columns: 1fr; max-width: 380px; } }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.value-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-sm);
}
.value-card .idx { font-family: var(--ff-display); font-style: italic; font-weight: 500; font-size: 22px; color: var(--honey); }
.value-card h3 { font-size: 20px; }
.value-card p { font-size: 14.5px; color: var(--ink-70); line-height: 1.5; }
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .values-grid { grid-template-columns: 1fr; } }

.founder {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
.founder__media {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--cream-2);
}
.founder__media img { width: 100%; height: 100%; object-fit: cover; }
.founder blockquote { margin: 0; }
.founder blockquote p {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(23px, 3vw, 33px);
  line-height: 1.28;
}
.founder cite { display: block; margin-top: 22px; font-style: normal; font-weight: 700; font-size: 15px; color: var(--barn); }
@media (max-width: 760px) { .founder { grid-template-columns: 1fr; } .founder__media { max-width: 340px; } }

/* ============================================================
   SHOP PAGE
   ============================================================ */
.shop-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.shop-nav a {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--line-2);
  color: var(--forest-dk);
  background: var(--paper);
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.shop-nav a:hover { background: var(--forest); color: var(--cream); border-color: var(--forest); }
.shop-section { scroll-margin-top: calc(var(--header-h) + 20px); }

/* ============================================================
   VISIT PAGE
   ============================================================ */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}
@media (max-width: 820px) { .visit-grid { grid-template-columns: 1fr; } }

.info-block {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  margin-bottom: var(--gap);
  box-shadow: var(--shadow-sm);
}
.info-block h3 { font-size: 23px; margin-bottom: 14px; display: flex; align-items: center; gap: 12px; }
.info-block h3 svg { width: 24px; height: 24px; stroke: var(--tomato); fill: none; }
.info-block dl { display: grid; grid-template-columns: auto 1fr; gap: 10px 22px; margin: 0; }
.info-block dt { font-weight: 700; font-size: 14.5px; color: var(--forest-dk); }
.info-block dd { margin: 0; font-size: 15px; color: var(--ink-70); }
.info-block address { font-style: normal; font-size: 15.5px; line-height: 1.75; color: var(--ink); }
.info-block address a { color: var(--tomato); text-decoration: none; font-weight: 600; }
.info-block .muted { color: var(--ink-55); font-style: italic; }

.ship-split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
.ship-card { border-radius: var(--r-lg); padding: 26px; display: flex; flex-direction: column; gap: 9px; box-shadow: var(--shadow-sm); }
.ship-card--pickup { background: var(--forest-soft); border: 1px solid var(--line); color: var(--ink); }
.ship-card--ship { background: var(--forest); color: var(--cream); }
.ship-card h4 { font-size: 21px; }
.ship-card--ship h4 { color: var(--cream); }
.ship-card p { font-size: 14.5px; }
.ship-card--pickup p { color: var(--ink-70); }
.ship-card--ship p { color: rgba(247,241,230,.82); }
.ship-card .tag-lead { font-family: var(--ff-display); font-style: italic; font-weight: 500; font-size: 16px; }
.ship-card--pickup .tag-lead { color: var(--barn); }
.ship-card--ship .tag-lead { color: var(--honey); }
@media (max-width: 480px) { .ship-split { grid-template-columns: 1fr; } }

.map-block {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 3 / 2;
  background: linear-gradient(135deg, var(--forest-soft), var(--honey-soft));
  display: grid;
  place-items: center;
  text-align: center;
}
.map-block::before {
  content:"";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(36,30,23,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36,30,23,.06) 1px, transparent 1px);
  background-size: 42px 42px;
}
.map-block__pin { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.map-block__pin svg { width: 42px; height: 42px; stroke: var(--tomato); fill: none; }
.map-block__pin strong { font-family: var(--ff-display); font-weight: 600; font-size: 21px; }
.map-block__pin span { font-size: 13.5px; font-style: italic; color: var(--ink-70); }

/* Contact form */
.contact-form { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-weight: 700; font-size: 14.5px; color: var(--forest-dk); }
.field input, .field textarea, .field select {
  padding: 13px 15px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--line-2);
  background: var(--cream);
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--ink);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--forest); outline: none; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }
.form-note {
  font-size: 13.5px;
  font-style: italic;
  color: var(--ink-70);
  background: var(--honey-soft);
  border: 1px solid rgba(200,169,81,.4);
  border-radius: var(--r-md);
  padding: 11px 15px;
}

/* ---------- utilities ---------- */
.text-center { text-align: center; }
.mt-lg { margin-top: clamp(28px, 4vw, 48px); }
.divider-note {
  text-align: center;
  font-size: 14px;
  font-style: italic;
  color: var(--ink-55);
  margin-top: 22px;
}
