/* =========================================================================
   ARGYLE FARMS — Direction 01 "The Estate"
   Heritage-refined / editorial luxury. Shared stylesheet.
   ========================================================================= */

/* ----------------------------------------------------------------- Tokens */
:root {
  --cream:    #F8F5F0;
  --cream-2:  #F1EBE1;   /* slightly deeper cream for panels */
  --forest:   #3B5323;
  --forest-2: #2E411B;   /* deeper forest for gradients */
  --gold:     #C8A951;
  --gold-soft:#D8C182;
  --charcoal: #1A1A1A;
  --barn:     #8A3B12;
  --ink-60:   rgba(26,26,26,.60);
  --ink-45:   rgba(26,26,26,.45);
  --line:     rgba(26,26,26,.12);
  --line-gold:rgba(200,169,81,.45);

  --shadow-sm: 0 1px 2px rgba(26,26,26,.05), 0 8px 24px rgba(26,26,26,.06);
  --shadow-md: 0 4px 12px rgba(26,26,26,.08), 0 18px 48px rgba(26,26,26,.10);

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ------------------------------------------------------------------ Reset */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1,h2,h3,h4 { margin: 0; font-family: var(--serif); font-weight: 400; line-height: 1.05;
  font-optical-sizing: auto; letter-spacing: -.01em; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* --------------------------------------------------------------- Utilities */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 128px); position: relative; }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }

.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before,
.eyebrow.flanked::after {
  content: "";
  width: 26px; height: 1px;
  background: var(--line-gold);
}
.eyebrow.flanked { }

/* Thin gold hairline rule */
.hairline { height: 1px; border: 0; background: var(--line-gold); margin: 0; }

/* Display headings */
.display {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -.02em;
}
.display em { font-style: italic; font-weight: 400; }
.h-xl { font-size: clamp(2.6rem, 7vw, 5.4rem); }
.h-lg { font-size: clamp(2.1rem, 5vw, 3.6rem); }
.h-md { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }

.lede { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-60); line-height: 1.7; }

/* --------------------------------------------------------- Argyle lattice */
/* Faint argyle-diamond lattice via crossed repeating gradients. */
.lattice { position: relative; }
.lattice::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient( 60deg, transparent 0 34px, currentColor 34px 34.6px),
    repeating-linear-gradient(-60deg, transparent 0 34px, currentColor 34px 34.6px);
  opacity: .05;
  color: var(--charcoal);
  z-index: 0;
}
.lattice.on-dark::before { color: var(--gold); opacity: .10; }
.lattice > * { position: relative; z-index: 1; }

/* ------------------------------------------------------------------ Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-weight: 500; font-size: 14px;
  letter-spacing: .04em;
  padding: 15px 30px;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), background-color .35s var(--ease),
              color .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  white-space: nowrap;
}
.btn--gold { background: var(--gold); color: var(--charcoal); }
.btn--gold:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--outline { background: transparent; border-color: currentColor; color: var(--charcoal); }
.btn--outline:hover { background: var(--charcoal); color: var(--cream); transform: translateY(-2px); }
.btn--ghost-light { background: transparent; border-color: rgba(248,245,240,.5); color: var(--cream); }
.btn--ghost-light:hover { background: var(--cream); color: var(--forest); border-color: var(--cream); transform: translateY(-2px); }
.btn--forest { background: var(--forest); color: var(--cream); }
.btn--forest:hover { background: var(--forest-2); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--block { width: 100%; }

/* Text link with animated underline */
.link-more {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 500; font-size: 14px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--charcoal);
  padding-bottom: 4px;
  position: relative;
}
.link-more::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.link-more:hover::after { transform: scaleX(1); }
.link-more .arw { transition: transform .4s var(--ease); }
.link-more:hover .arw { transform: translateX(5px); }
.on-dark .link-more, .link-more.on-dark { color: var(--cream); }

/* ------------------------------------------------------------------- Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248,245,240,.86);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: 74px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img { width: 38px; height: auto; }
.brand__name {
  font-family: var(--sans); font-weight: 600; font-size: 14px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--charcoal);
}
.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  font-size: 14px; font-weight: 500; letter-spacing: .02em; color: var(--charcoal);
  position: relative; padding: 6px 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: center;
  transition: transform .35s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--forest); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px; border: 0; background: transparent;
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 10px; width: 24px; height: 1.6px;
  background: var(--charcoal); transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle span { top: 21px; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 8px var(--gutter) 28px;
    transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: transform .35s var(--ease), opacity .35s var(--ease), visibility .35s;
    box-shadow: var(--shadow-md);
  }
  .nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav a { width: 100%; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 17px; }
  .nav a::after { display: none; }
}

/* --------------------------------------------------------------------- Hero */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 50% -10%, var(--forest) 0%, var(--forest-2) 62%, #26370f 100%);
  color: var(--cream);
  text-align: center;
  overflow: hidden;
}
.hero__inner { padding-block: clamp(72px, 12vw, 148px); }
.hero__crest { width: clamp(120px, 20vw, 190px); margin: 0 auto 30px; filter: drop-shadow(0 8px 30px rgba(0,0,0,.35)); }
.hero__title { color: var(--cream); margin-bottom: 22px; }
.hero__tagline { font-size: clamp(1.1rem, 1.8vw, 1.4rem); color: var(--gold-soft);
  font-family: var(--serif); font-style: italic; font-weight: 300; margin: 0 auto 38px; max-width: 30ch; }
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__rule { width: 54px; height: 1px; background: var(--line-gold); margin: 0 auto 30px; }

/* Small hero (interior pages) */
.page-hero {
  background:
    radial-gradient(120% 100% at 50% 0%, var(--forest) 0%, var(--forest-2) 70%, #26370f 100%);
  color: var(--cream); text-align: center;
}
.page-hero__inner { padding-block: clamp(64px, 9vw, 116px); }
.page-hero h1 { color: var(--cream); margin-bottom: 20px; }
.page-hero p { color: var(--gold-soft); max-width: 46ch; margin: 0 auto; }

/* --------------------------------------------------------------- Value strip */
.values {
  background: var(--charcoal); color: var(--cream);
}
.values__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(248,245,240,.10);
}
.value {
  padding: 40px clamp(16px, 2.4vw, 34px);
  border-left: 1px solid rgba(248,245,240,.10);
  text-align: center;
}
.value:first-child { border-left: 0; }
.value__num { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 1rem; display: block; margin-bottom: 12px; }
.value h3 { font-size: 1.15rem; color: var(--cream); margin-bottom: 8px; }
.value p { font-size: 13.5px; color: rgba(248,245,240,.62); margin: 0; line-height: 1.6; }
@media (max-width: 760px) {
  .values__grid { grid-template-columns: repeat(2, 1fr); }
  .value:nth-child(-n+2) { }
  .value:nth-child(odd) { border-left: 0; }
  .value:nth-child(n+3) { border-top: 1px solid rgba(248,245,240,.10); }
}
@media (max-width: 420px) {
  .values__grid { grid-template-columns: 1fr; }
  .value { border-left: 0; border-top: 1px solid rgba(248,245,240,.10); }
  .value:first-child { border-top: 0; }
}

/* ------------------------------------------------------------- Section head */
.section-head { max-width: 62ch; margin-bottom: clamp(34px, 5vw, 58px); }
.section-head.center { margin-inline: auto; }
.section-head p { margin: 16px 0 0; }

/* --------------------------------------------------------- Provisions (home) */
.cards-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.6vw, 34px);
}
@media (max-width: 860px) { .cards-3 { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

/* Designed food product card (no photography) */
.pcard {
  position: relative; overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 3px;
  display: flex; flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-gold); }
.pcard__art {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden;
  display: grid; place-items: center;
  border-bottom: 1px solid var(--line);
}
.pcard__art--cream  { background: linear-gradient(145deg, #FBF9F5, var(--cream-2)); }
.pcard__art--forest { background: linear-gradient(145deg, var(--forest), var(--forest-2)); }
.pcard__art--barn   { background: linear-gradient(145deg, #9a4416, var(--barn)); }
.pcard__art--gold   { background: linear-gradient(145deg, #E6D6A8, #CDB264); }
.pcard__watermark {
  width: 58%; max-width: 190px; opacity: .5;
  transition: transform .6s var(--ease), opacity .45s var(--ease);
}
.pcard__art--forest .pcard__watermark,
.pcard__art--barn .pcard__watermark { opacity: .58; }
.pcard:hover .pcard__watermark { transform: scale(1.05) rotate(-1.5deg); opacity: .68; }
.pcard__tag {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--sans); font-weight: 600; font-size: 10px; letter-spacing: .16em;
  text-transform: uppercase; padding: 6px 11px; border-radius: 2px;
  background: rgba(248,245,240,.9); color: var(--charcoal);
}
.pcard__art--forest .pcard__tag,
.pcard__art--barn .pcard__tag { background: rgba(26,26,26,.35); color: var(--cream); backdrop-filter: blur(2px); }
.pcard__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.pcard__row { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.pcard__name { font-family: var(--serif); font-size: 1.35rem; font-weight: 400; letter-spacing: -.01em; }
.pcard__price { font-family: var(--serif); font-size: 1.15rem; color: var(--forest); white-space: nowrap; }
.pcard__desc { color: var(--ink-60); font-size: 14.5px; margin: 10px 0 20px; flex: 1; }
.pcard__cta { margin-top: auto; }

/* ----------------------------------------------------------- Story teaser */
.split {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(30px, 6vw, 84px);
  align-items: center;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split__media { display: grid; place-items: center; }
.engraving {
  width: min(340px, 80%);
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--line-gold);
  border-radius: 3px;
  position: relative;
  background: var(--cream);
}
.engraving::before, .engraving::after {
  content: ""; position: absolute; width: 14px; height: 14px; border: 1px solid var(--gold);
}
.engraving::before { top: 8px; left: 8px; border-right: 0; border-bottom: 0; }
.engraving::after  { bottom: 8px; right: 8px; border-left: 0; border-top: 0; }
.story-teaser p { margin: 0 0 22px; }
.story-teaser .lede { font-family: var(--serif); font-weight: 300; font-size: clamp(1.2rem,2vw,1.5rem);
  line-height: 1.5; color: var(--charcoal); font-style: italic; }

/* --------------------------------------------------------------- Merch panel */
.merch-panel { background: var(--forest); color: var(--cream); overflow: hidden; }
.merch-panel .split { align-items: center; }
.merch-panel .eyebrow { color: var(--gold-soft); }
.merch-panel h2 { color: var(--cream); }
.merch-panel p { color: rgba(248,245,240,.72); }
.merch-shots { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.merch-shot {
  background: rgba(248,245,240,.06);
  border: 1px solid rgba(248,245,240,.14);
  border-radius: 3px; padding: 22px; text-align: center;
  transition: transform .45s var(--ease), background-color .45s var(--ease);
}
.merch-shot:hover { transform: translateY(-4px); background: rgba(248,245,240,.10); }
.merch-shot img { border-radius: 2px; margin-bottom: 14px; }
.merch-shot span { font-size: 13px; letter-spacing: .04em; color: rgba(248,245,240,.8); }
.merch-shot b { display: block; font-family: var(--serif); font-weight: 400; color: var(--gold-soft); font-size: 1rem; margin-top: 3px; }
@media (max-width: 500px) { .merch-shots { grid-template-columns: 1fr; max-width: 300px; } }

/* ---------------------------------------------------------------- Newsletter */
.newsletter { background: var(--cream-2); text-align: center; }
.newsletter__crest { width: 64px; margin: 0 auto 22px; opacity: .9; }
.newsletter form {
  display: flex; gap: 12px; max-width: 480px; margin: 30px auto 0; flex-wrap: wrap;
}
.newsletter input[type="email"] {
  flex: 1 1 220px; min-width: 0;
  padding: 15px 18px; font-family: var(--sans); font-size: 15px;
  border: 1px solid var(--line); border-radius: 2px; background: var(--cream);
  color: var(--charcoal);
}
.newsletter input:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-color: var(--gold); }
.form-note { font-size: 12.5px; color: var(--ink-45); margin-top: 16px; }

/* -------------------------------------------------------- Story (long form) */
.article { max-width: 720px; margin-inline: auto; }
.article p { margin: 0 0 26px; font-size: 1.08rem; line-height: 1.85; color: rgba(26,26,26,.82); }
.article p.dropcap::first-letter {
  font-family: var(--serif); font-weight: 400; float: left;
  font-size: 4.6rem; line-height: .78; padding: 6px 14px 0 0; color: var(--forest);
}
.article h2 { font-size: clamp(1.5rem,3vw,2.1rem); margin: 48px 0 18px; }
.pullquote {
  margin: clamp(40px,6vw,64px) 0; padding: clamp(24px,4vw,40px) 0;
  border-top: 1px solid var(--line-gold); border-bottom: 1px solid var(--line-gold);
  text-align: center;
}
.pullquote blockquote {
  margin: 0; font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem); line-height: 1.3; color: var(--forest);
}
.pullquote cite { display: block; margin-top: 20px; font-style: normal; font-family: var(--sans);
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }

/* Values row (story + shared) */
.values-row { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(18px,3vw,30px); }
@media (max-width: 760px) { .values-row { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 400px) { .values-row { grid-template-columns: 1fr; } }
.vcard { text-align: center; padding: 8px; }
.vcard .num { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 1.4rem; }
.vcard h3 { font-size: 1.15rem; margin: 12px 0 8px; }
.vcard p { font-size: 14px; color: var(--ink-60); margin: 0; }
.vcard .divider { width: 30px; height: 1px; background: var(--line-gold); margin: 14px auto 0; }

/* ----------------------------------------------------------------- Shop grid */
.shop-nav {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
  margin-bottom: clamp(30px,5vw,50px);
}
.shop-nav a {
  font-size: 13px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  padding: 10px 22px; border: 1px solid var(--line); border-radius: 100px;
  transition: all .3s var(--ease);
}
.shop-nav a:hover { border-color: var(--gold); background: var(--gold); color: var(--charcoal); }

.grid-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.6vw, 32px);
}
@media (max-width: 900px) { .grid-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-cards { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }

/* Merch card (photo mockups + designed placeholders) */
.mcard {
  background: var(--cream); border: 1px solid var(--line); border-radius: 3px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.mcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-gold); }
.mcard__art { aspect-ratio: 1/1; display: grid; place-items: center; position: relative; overflow: hidden; }
.mcard__art--photo { background: linear-gradient(160deg, #FBF9F5, var(--cream-2)); padding: 8%; }
.mcard__art--photo img { width: 100%; object-fit: contain; transition: transform .6s var(--ease); }
.mcard:hover .mcard__art--photo img { transform: scale(1.05); }
.mcard__art--forest { background: linear-gradient(150deg, var(--forest), var(--forest-2)); }
.mcard__art--charcoal { background: linear-gradient(150deg, #2a2a2a, var(--charcoal)); }
.mcard__art--barn { background: linear-gradient(150deg, #9a4416, var(--barn)); }
.mcard__art .wm { width: 55%; opacity: .55; }
.mcard__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }

/* Shared card price/name reused for merch */
.mcard .pcard__row { }

/* ------------------------------------------------------------------- Visit */
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: start; }
@media (max-width: 860px) { .visit-grid { grid-template-columns: 1fr; } }

.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li { display: flex; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.info-list li:last-child { border-bottom: 0; }
.info-list .k { font-family: var(--sans); font-weight: 600; font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold); min-width: 92px; padding-top: 4px; }
.info-list .v { color: rgba(26,26,26,.82); }
.info-list .v strong { font-family: var(--serif); font-weight: 400; font-size: 1.15rem; display: block; margin-bottom: 2px; color: var(--charcoal); }

.field { margin-bottom: 18px; }
.field label { display: block; font-size: 12px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-60); margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%; padding: 14px 16px; font-family: var(--sans); font-size: 15px;
  border: 1px solid var(--line); border-radius: 2px; background: var(--cream); color: var(--charcoal);
  transition: border-color .3s var(--ease);
}
.field input:focus-visible, .field textarea:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold);
}
.field textarea { resize: vertical; min-height: 130px; }

.card-panel {
  background: var(--cream); border: 1px solid var(--line); border-radius: 4px;
  padding: clamp(26px, 4vw, 44px);
}

.map-placeholder {
  position: relative; aspect-ratio: 4/3; border-radius: 4px; overflow: hidden;
  background:
    repeating-linear-gradient( 60deg, rgba(59,83,35,.05) 0 30px, transparent 30px 30.6px),
    repeating-linear-gradient(-60deg, rgba(59,83,35,.05) 0 30px, transparent 30px 30.6px),
    radial-gradient(120% 120% at 30% 20%, #EEF1E7, var(--cream-2));
  border: 1px solid var(--line);
  display: grid; place-items: center; text-align: center;
}
.map-placeholder__pin {
  width: 46px; height: 46px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
  background: var(--barn); margin: 0 auto 20px; position: relative;
  box-shadow: var(--shadow-sm);
}
.map-placeholder__pin::after { content: ""; position: absolute; inset: 14px; background: var(--cream); border-radius: 50%; }
.map-placeholder span { font-family: var(--sans); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-60); }
.map-placeholder b { display:block; font-family: var(--serif); font-size: 1.4rem; color: var(--forest); margin-top: 6px; letter-spacing: -.01em; }

.note-strip {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px;
}
@media (max-width: 620px) { .note-strip { grid-template-columns: 1fr; } }
.note-strip .card-panel h3 { font-size: 1.3rem; margin-bottom: 10px; }
.note-strip .card-panel p { margin: 0; color: var(--ink-60); font-size: 15px; }

/* --------------------------------------------------------------------- Footer */
.site-footer { background: var(--forest); color: var(--cream); }
.site-footer a { color: rgba(248,245,240,.78); transition: color .3s var(--ease); }
.site-footer a:hover { color: var(--gold-soft); }
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(30px,5vw,60px);
  padding-block: clamp(56px, 7vw, 84px);
}
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr; gap: 40px; } }
.footer-brand img { width: 74px; margin-bottom: 20px; }
.footer-brand__name { font-family: var(--sans); font-weight: 600; letter-spacing: .22em; text-transform: uppercase; font-size: 13px; color: var(--cream); }
.footer-brand p { color: rgba(248,245,240,.66); font-size: 14px; margin: 10px 0 0; max-width: 32ch; }
.footer-col h4 { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold-soft); margin-bottom: 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 12px; font-size: 14.5px; }
.footer-col address { font-style: normal; color: rgba(248,245,240,.66); font-size: 14.5px; line-height: 1.8; }
.footer-bottom {
  border-top: 1px solid rgba(248,245,240,.14);
  padding-block: 26px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { margin: 0; font-size: 12.5px; color: rgba(248,245,240,.55); line-height: 1.7; }
.footer-legal { max-width: 68ch; }

/* --------------------------------------------------------------------- Toast */
.toast-stack {
  position: fixed; z-index: 200; left: 50%; bottom: 28px; transform: translateX(-50%);
  display: flex; flex-direction: column; gap: 10px; align-items: center;
  pointer-events: none; width: max-content; max-width: calc(100vw - 32px);
}
.toast {
  display: flex; align-items: center; gap: 12px;
  background: var(--charcoal); color: var(--cream);
  padding: 14px 20px; border-radius: 3px; box-shadow: var(--shadow-md);
  font-size: 14px; border: 1px solid rgba(200,169,81,.4);
  transform: translateY(14px); opacity: 0;
  transition: transform .4s var(--ease), opacity .4s var(--ease);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex: none; }
.toast b { font-family: var(--serif); font-weight: 400; }

/* ------------------------------------------------------- Scroll reveal (opt) */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .js .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .btn, .pcard, .mcard, .merch-shot, .link-more .arw, .pcard__watermark { transition: none !important; }
  *:hover { transition: none; }
}

/* --------------------------------------------------------------- Small print */
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 300;
  background: var(--charcoal); color: var(--cream); padding: 10px 16px; border-radius: 2px;
  transition: top .25s var(--ease); font-size: 14px;
}
.skip-link:focus { top: 16px; }
