/* ============================================================
   Holly's Pantry — homestead / botanical / Victorian-minimal
   1880s general store meets modern restraint.
   Visual language matched to hollys_pantry_template.html.
   ============================================================ */

:root {
  /* Paper & ink */
  --paper:        #faf8f3;   /* warm off-white background */
  --paper-deep:   #f1ebdd;   /* cards, callouts, footer */
  --paper-edge:   #ece4d3;
  --ink:          #0a0a0a;   /* very dark warm black — type */
  --ink-soft:     rgba(10, 10, 10, 0.72);
  --ink-mute:     rgba(10, 10, 10, 0.55);
  --ink-faint:    rgba(10, 10, 10, 0.40);
  --hairline:     rgba(10, 10, 10, 0.22);
  --hairline-fine:rgba(10, 10, 10, 0.14);

  --max-w: 1080px;
  --text-w: 720px;          /* hero / reading column */

  --serif: 'Cormorant Garamond', 'Hoefler Text', Georgia, serif;
  --script: 'Petit Formal Script', 'Snell Roundhand', cursive;
  --hand: 'Caveat', 'Bradley Hand', cursive;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--paper);
  /* faint paper tooth */
  background-image:
    radial-gradient(rgba(10,10,10,0.022) 1px, transparent 1px),
    radial-gradient(rgba(10,10,10,0.018) 1px, transparent 1px);
  background-size: 26px 26px, 19px 19px;
  background-position: 0 0, 13px 9px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;        /* no whole-page horizontal scroll; the carousel scrolls internally */
}

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  line-height: 1.12;
  font-weight: 600;
}

p { margin-bottom: 1.05rem; color: var(--ink-soft); }
p:last-child { margin-bottom: 0; }

strong { font-weight: 500; color: var(--ink); }
em { font-style: italic; }

a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: var(--hairline);
  transition: text-decoration-color 0.18s ease, color 0.18s ease;
}
a:hover { text-decoration-color: var(--ink); }

/* ---------- Layout ---------- */

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* shared reading column for prose-heavy blocks */
.measure { max-width: var(--text-w); }

/* ---------- Eyebrow / section title (the "DISCLAIMER" treatment) ---------- */

.eyebrow {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0.35rem 0.1rem;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  margin-bottom: 1.25rem;
}

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

.site-header {
  border-bottom: 1px solid var(--hairline);
  padding: 1.1rem 0;
  background-color: var(--paper);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.brand {
  font-family: var(--script);
  font-size: 2rem;
  line-height: 1;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  /* faux-bold via stroke, matching the label logo */
  -webkit-text-stroke: 0.5px var(--ink);
  paint-order: stroke fill;
  padding-top: 0.15em;   /* breathing room for descenders */
}
.brand:hover { text-decoration: none; }

.nav {
  display: flex;
  gap: 1.9rem;
  align-items: center;
}

.nav a {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.nav a:hover,
.nav a.active {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 90vh;
  min-height: 90svh;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
}

.hero-inner {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4.5rem 1.5rem 1.5rem;
}

.hero-from {
  font-family: var(--hand);
  font-weight: 500;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1;
  color: var(--ink);
  margin-bottom: 0.1rem;
}

/* Arched "Holly's Pantry" logo */
.hero-arch {
  display: block;
  width: min(620px, 86vw);
  height: auto;
  margin: 0 auto;
  overflow: visible;
}

.hero-arch-text {
  font-family: var(--script);
  font-size: 60px;
  letter-spacing: 0.5px;
  fill: var(--ink);
  stroke: var(--ink);
  stroke-width: 1.4;
  paint-order: stroke fill;
}

/* Rotating product / seasonal callout line */
.hero-feature {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.35rem, 3.2vw, 1.75rem); /* ~28px */
  line-height: 1.2;
  color: var(--ink);
  margin: 0.4rem auto 0.7rem;
  padding-bottom: 0.9rem;
  min-width: min(420px, 80vw);
  max-width: 90vw;
  border-bottom: 1px solid var(--ink);
  transition: opacity 0.5s ease;
}
.hero-feature.is-fading { opacity: 0; }

.hero-kitchen {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

/* Botanical band anchored at the bottom of the hero */
.hero-botanical {
  flex: 0 0 auto;
  width: 100%;
  height: clamp(118px, 17vh, 178px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 9%, #000 91%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 9%, #000 91%, transparent);
}

.hero-botanical img {
  height: 100%;
  width: auto;
  display: block;
  flex: 0 0 auto;
  opacity: 0.92;
}
/* mirror alternate tiles for a continuous, less-repetitive border */
.hero-botanical img:nth-child(even) { transform: scaleX(-1); }

/* Interior-page header (about / pantry) — not the full-height homepage hero */
.page-head {
  padding: 4.5rem 0 3.25rem;
  border-bottom: 1px solid var(--hairline);
  text-align: center;
}
.page-head .wrap { display: flex; flex-direction: column; align-items: center; }
.page-head h1 {
  font-family: var(--script);
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 4.2rem);
  line-height: 1.05;
  -webkit-text-stroke: 0.6px var(--ink);
  paint-order: stroke fill;
  margin: 0.2rem 0 0.6rem;
}
.page-head .lede { text-align: center; margin: 0 auto; }

/* ============================================================
   SECTIONS
   ============================================================ */

section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--hairline-fine);
}
section:last-of-type { border-bottom: none; }

h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); margin-bottom: 0.6rem; }
h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 0.3rem; }

.lede {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  line-height: 1.45;
  color: var(--ink);
  max-width: var(--text-w);
}

/* Botanical section divider */
.botanical-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0;
}
.botanical-divider img {
  width: 200px;
  max-width: 60vw;
  height: auto;
  opacity: 0.8;
}
.botanical-divider.tiny img { width: 132px; }

/* "This Week" / highlighted callout */
.this-week {
  background-color: var(--paper-deep);
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--ink);
  padding: 1.6rem 1.85rem;
  margin: 2rem 0;
  max-width: var(--text-w);
}
.this-week h3 { color: var(--ink); }
.this-week p:last-child { margin-bottom: 0; }

/* Hours */
.hours {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.85rem 2.5rem;
  margin-top: 1.5rem;
  max-width: var(--text-w);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px dotted var(--hairline);
  padding-bottom: 0.45rem;
  font-size: 0.95rem;
}
.hours-row .day {
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.hours-row .time { color: var(--ink-soft); font-family: var(--serif); font-style: italic; font-size: 1.05rem; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
  max-width: var(--text-w);
}
.contact-card {
  border: 1px solid var(--hairline);
  padding: 1.6rem 1.75rem;
  background-color: rgba(255, 255, 255, 0.35);
  text-align: center;
}
.contact-card .label {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.55rem;
}
.contact-card a {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
}

/* Product grid (pantry page) */
.product-grid {
  display: grid;
  /* auto-fill (not auto-fit) so a lone product keeps a sane width
     instead of stretching across the whole row */
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.product {
  border: 1px solid var(--hairline);
  background-color: rgba(255, 255, 255, 0.4);
}
.product .photo {
  aspect-ratio: 4 / 3;
  background-color: var(--paper-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  border-bottom: 1px solid var(--hairline);
}
.product .info { padding: 1.3rem 1.35rem 1.6rem; }
.product h3 { margin-bottom: 0.3rem; }
.product .price {
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
}
.product .desc { font-size: 0.95rem; margin-top: 0.6rem; color: var(--ink-soft); }

.category-header {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--hairline-fine);
}
.category-header:first-of-type { border-top: none; margin-top: 1rem; padding-top: 0; }

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

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.95rem 1.9rem;
  border: 1px solid var(--ink);
  background-color: var(--ink);
  color: var(--paper);
  text-decoration: none;
  cursor: pointer;
  border-radius: 0;              /* no rounded corners */
  transition: background-color 0.18s ease, color 0.18s ease;
}
.btn:hover { background-color: transparent; color: var(--ink); text-decoration: none; }

.btn-ghost { background-color: transparent; color: var(--ink); }
.btn-ghost:hover { background-color: var(--ink); color: var(--paper); }

/* ---------- Bottom CTA strip (every page) ---------- */

.cta-strip {
  background-color: var(--ink);
  color: var(--paper);
  padding: 4.5rem 0;
  text-align: center;
  border-bottom: none;
}
.cta-strip .eyebrow { color: var(--paper); border-color: var(--paper); }
.cta-strip h2 { color: var(--paper); margin-bottom: 1rem; }
.cta-strip p {
  max-width: var(--text-w);
  margin: 0 auto 1.9rem;
  color: rgba(250, 248, 243, 0.82);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
}
.cta-strip .btn {
  background-color: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
}
.cta-strip .btn:hover { background-color: transparent; color: var(--paper); }

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

.site-footer {
  padding: 2.75rem 0 3rem;
  background-color: var(--paper-deep);
  border-top: 1px solid var(--hairline);
  text-align: center;
}
.site-footer .footer-mark {
  font-family: var(--script);
  font-size: 1.7rem;
  color: var(--ink);
  margin-bottom: 0.75rem;
  -webkit-text-stroke: 0.4px var(--ink);
  paint-order: stroke fill;
}
.site-footer .wrap > div:not(.footer-mark) {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  margin-bottom: 0.35rem;
}
.site-footer a { color: var(--ink-soft); }

/* ---------- Modal ---------- */

dialog.modal {
  border: 1px solid var(--ink);
  padding: 0;
  background: var(--paper);
  max-width: 560px;
  width: calc(100% - 2rem);
  box-shadow: 0 24px 70px rgba(10, 10, 10, 0.35);
}
dialog.modal::backdrop { background-color: rgba(10, 10, 10, 0.62); }

.modal-inner { padding: 2.75rem 2.25rem 2.25rem; position: relative; }
.modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.9rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-mute);
}
.modal-close:hover { color: var(--ink); }
.modal h2 { margin-bottom: 1rem; }
.modal .modal-eyebrow {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.6rem;
}
.modal .pitch p { font-size: 1rem; }
.modal-cta { margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.fine-print {
  margin-top: 1.75rem;
  font-size: 0.78rem;
  color: var(--ink-mute);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.55;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 640px) {
  body { font-size: 17px; }
  .hero { min-height: 88vh; min-height: 88svh; }
  .hero-inner { padding: 3rem 1.25rem 1rem; }
  section { padding: 2.75rem 0; }
  .nav { gap: 1.1rem; }
  .nav a { font-size: 0.68rem; letter-spacing: 0.16em; }
  .brand { font-size: 1.7rem; }
  .cta-strip { padding: 3.25rem 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-feature { transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   SINGLE-SCROLL HOMEPAGE — added for the merged Home + About
   (sticky nav, rustic dividers, showcase, about, map preview,
    home footer). New classes only; legacy pages untouched.
   ============================================================ */

/* ---------- Sticky "floating" header (index + map preview) ---------- */
/* Base .site-header stays solid for legacy pages; the --float modifier
   is transparent over the hero and turns solid after 100px of scroll. */
.site-header--float {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: transparent;
  border-bottom-color: transparent;
  transition: background-color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.site-header--float.scrolled {
  background-color: var(--paper);
  border-bottom-color: var(--hairline);
  box-shadow: 0 6px 20px rgba(10, 10, 10, 0.06);
}
.site-header--float .nav { gap: 0.95rem; }

.nav-sep {
  color: var(--ink-faint);
  font-size: 0.7rem;
  line-height: 1;
  user-select: none;
}

/* Offset in-page anchors so the sticky header doesn't cover section tops */
#top, #shop, #about, #find, #contact { scroll-margin-top: 84px; }

/* Screen-reader-only (visually hidden but in the a11y tree) */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

/* ---------- Section title treatment (short fading hairline · CAPS · hairline) ---------- */
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 2.5rem;
}
.section-title::before,
.section-title::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  max-width: 120px;          /* short flanking hairlines, not full-width rules */
}
.section-title::before { background: linear-gradient(to right, transparent, var(--hairline)); }
.section-title::after  { background: linear-gradient(to left, transparent, var(--hairline)); }
.section-title h1,
.section-title h2 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 15px;           /* small, refined — not a hero headline */
  line-height: 1.2;
  color: var(--ink);
  white-space: nowrap;
  margin: 0;
  padding-left: 4px;         /* optical balance against trailing letter-spacing */
}
.section-title--left {
  justify-content: flex-start;
  gap: 14px;
  margin: 0 0 1.5rem;
}
.section-title--left::before { display: none; }   /* left-aligned: trailing hairline only */
.section-title--left::after { max-width: 80px; }

/* ---------- Rustic dividers (4 distinct ornament motifs) ---------- */
.rustic-divider {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 22px 2rem;        /* refined accent — compact, never a slab */
  max-height: 80px;
  overflow: hidden;          /* safety net: clip any SVG/image bleed */
}
.rd-line { flex: 1 1 auto; height: 1px; min-width: 28px; }
.rd-line--l { background: linear-gradient(to right, transparent, rgba(10, 10, 10, 0.4)); }
.rd-line--r { background: linear-gradient(to right, rgba(10, 10, 10, 0.4), transparent); }

.rd-ornament { flex: 0 0 auto; max-width: 240px; height: auto; color: rgba(10, 10, 10, 0.4); display: block; }
.rd-ornament path,
.rd-ornament circle { fill: none; stroke: currentColor; stroke-width: 1; vector-effect: non-scaling-stroke; }
.rd-ornament .fill { fill: currentColor; stroke: none; }

/* Divider #3 — the one post-hero botanical accent (sized by height to stay small) */
.rustic-divider--botanical .rd-botanical {
  flex: 0 0 auto;
  height: 34px;
  width: auto;
  max-width: 46vw;
  opacity: 0.85;
}

/* ---------- Section 2 · Product showcase (horizontal snap-scroll) ---------- */
.showcase-section { border-bottom: none; padding: 3rem 0; }

.showcase {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0;
}
.showcase-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0 40px 1rem;      /* gutters leave room for the edge arrows */
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.showcase-track::-webkit-scrollbar { display: none; }
.showcase-track:focus-visible { outline: 1px solid var(--hairline); outline-offset: 4px; }

.product-card {
  flex: 0 0 280px;                     /* fixed 280px cards; ~3 visible on desktop */
  scroll-snap-align: start;
  background-color: var(--paper);
  border: 0.5px solid rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}
.product-card .pc-photo {
  aspect-ratio: 1 / 1;                 /* 280px-wide card → 280x280 image box */
  background-color: #ede4d3;           /* warm parchment image placeholder */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.15);
}
.product-card .pc-body {
  padding: 1.1rem 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
}
.product-card h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
  color: var(--ink);
  margin: 0;
}
.product-card .pc-tag {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 12px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
.product-card .pc-link {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--hairline);
  margin-top: 0.1rem;
}

.showcase-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  background-color: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 2px;        /* optical centering of the chevron glyph */
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 2px 10px rgba(10, 10, 10, 0.08);
  transition: background-color 0.18s ease, color 0.18s ease;
}
.showcase-arrow:hover { background-color: var(--ink); color: var(--paper); }
.showcase-arrow--prev { left: 4px; }
.showcase-arrow--next { right: 4px; }

/* ---------- Section 3 · About Holly ---------- */
.about { border-bottom: none; padding: 3rem 0; }
.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 3rem 3.5rem;
  align-items: start;
}
.about-left { display: flex; flex-direction: column; align-items: center; }
.holly-photo {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 360 / 460;
  background-color: var(--paper-deep);
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  color: var(--ink-mute);
}
.holly-caption {
  font-family: var(--sans);
  font-style: italic;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  margin-top: 0.85rem;
  text-align: center;
}
.about-headline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.45rem, 4.2vw, 1.75rem);   /* ~28px */
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 1.1rem;
}
.about-body {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 1.85rem;
}
.moments { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.9rem; }
.moment { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; margin: 0; }
.m-box {
  width: 120px;
  height: 120px;
  background-color: var(--paper-deep);
  border: 1px solid var(--hairline-fine);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  color: var(--ink-mute);
}
.m-cap { font-family: var(--hand); font-weight: 500; font-size: 1.05rem; color: var(--ink-soft); line-height: 1; }

.coming-up {
  border: 1px solid var(--hairline);
  background-color: var(--paper-deep);
  padding: 1.3rem 1.5rem;
}
.cu-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 0.8rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--hairline);
}
.cu-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px dotted var(--hairline);
}
.cu-row:last-child { border-bottom: none; }
.cu-event { font-family: var(--serif); font-style: italic; font-size: 1rem; color: var(--ink); }
.cu-when { font-family: var(--sans); font-weight: 300; font-size: 0.78rem; letter-spacing: 0.03em; color: var(--ink-mute); text-align: right; white-space: nowrap; }

/* ---------- Section 4 · Map preview ---------- */
.mapprev { border-bottom: none; padding: 3rem 0; }
.mapprev .section-title { margin-bottom: 0.8rem; }
.mapprev-sub {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}
.mapprev-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 2.5rem;
  align-items: start;
}

/* Rustic framed map placeholder */
.map-frame {
  position: relative;
  padding: 10px;
  border: 1px solid var(--hairline);
  max-width: 520px;
  margin: 0 auto;
}
.map-frame::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid var(--hairline-fine);
  pointer-events: none;
}
.corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 0 solid var(--ink-soft);
  z-index: 3;
}
.corner--tl { top: 1px; left: 1px; border-top-width: 1px; border-left-width: 1px; }
.corner--tr { top: 1px; right: 1px; border-top-width: 1px; border-right-width: 1px; }
.corner--bl { bottom: 1px; left: 1px; border-bottom-width: 1px; border-left-width: 1px; }
.corner--br { bottom: 1px; right: 1px; border-bottom-width: 1px; border-right-width: 1px; }
.map-canvas {
  position: relative;
  width: 100%;
  aspect-ratio: 500 / 340;
  background-color: #ede4d3;
  overflow: hidden;
}

/* Hand-drawn pin (shared by preview + the Leaflet page) */
.map-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  display: block;
  z-index: 2;
}
.map-pin svg { display: block; }
.map-pin .pin-body { fill: var(--ink); stroke: none; }
.map-pin .pin-eye { fill: #ede4d3; stroke: none; }   /* matches map bg → reads as a ring */
.map-pin--home { z-index: 4; }

/* Preview pin positions in CSS (no inline styles → page runs under strict style-src) */
.map-pin--home { left: 50%; top: 54%; }
.map-pin--a { left: 30%; top: 36%; }
.map-pin--b { left: 68%; top: 28%; }
.map-pin--c { left: 22%; top: 72%; }
.map-pin--d { left: 78%; top: 70%; }
.map-pin-tag {
  position: absolute;
  left: calc(100% + 4px);
  top: 1px;
  white-space: nowrap;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.8rem;
  color: var(--ink);
  background-color: rgba(237, 228, 211, 0.72);
  padding: 0 0.25rem;
}

/* Stockist list (shared by preview + Leaflet sidebar) */
.loc-list { list-style: none; }
.loc { padding: 1.1rem 0; border-bottom: 1px solid var(--hairline-fine); }
.loc:first-child { padding-top: 0; }
.loc:last-child { border-bottom: none; }
.loc h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.loc .loc-addr { font-family: var(--sans); font-weight: 300; font-size: 11px; letter-spacing: 0.03em; color: var(--ink-mute); margin-bottom: 0.1rem; }
.loc .loc-hours { font-family: var(--sans); font-style: italic; font-weight: 300; font-size: 10px; color: var(--ink-mute); margin-bottom: 0.35rem; }
.loc .loc-products { font-family: var(--serif); font-style: italic; font-size: 0.85rem; color: var(--ink-soft); margin: 0; }

.mapprev-cta { text-align: center; margin-top: 2.5rem; }
.mapprev-cta a { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--ink); }

/* ---------- Section 5 · Home footer (3 columns) ---------- */
.home-footer {
  background-color: var(--paper);
  border-top: 1px solid var(--hairline);
  padding: 3rem 0 2.2rem;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.foot-mark {
  font-family: var(--script);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--ink);
  -webkit-text-stroke: 0.4px var(--ink);
  paint-order: stroke fill;
  margin-bottom: 0.5rem;
}
.foot-tag { font-family: var(--sans); font-weight: 300; font-size: 11px; letter-spacing: 0.14em; color: var(--ink-mute); }
.foot-col { font-family: var(--sans); font-weight: 300; font-size: 11px; letter-spacing: 0.12em; line-height: 2; color: var(--ink-mute); }
.foot-col a { color: var(--ink-soft); text-decoration: none; }
.foot-col a:hover { text-decoration: underline; text-decoration-color: var(--hairline); }
.foot-center { text-align: center; }
.foot-right { text-align: right; }
.foot-copy {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.8rem;
  color: var(--ink-faint);
  text-align: center;
  line-height: 1.6;
  max-width: 48rem;
  margin: 2.4rem auto 0;
  padding-top: 1.3rem;
  border-top: 1px solid var(--hairline-fine);
}

/* ============================================================
   /map PAGE (Leaflet)
   ============================================================ */
.map-page { display: flex; flex-direction: column; }
.map-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.2rem 2rem;
  padding-top: 2.25rem;
  padding-bottom: 1.4rem;
}
.map-toolbar .section-title { margin: 0; align-items: flex-start; text-align: left; }
.map-toolbar .section-title h1,
.map-toolbar .section-title h2 { padding-left: 0; }
.map-toolbar .mapprev-sub { text-align: left; margin: 0.5rem 0 0; }

.map-filter {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--ink-soft);
}
.map-filter label { white-space: nowrap; }
.map-filter select {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink);
  background-color: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 0;
  padding: 0.42rem 1.9rem 0.42rem 0.7rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'><path d='M1 1l4 4 4-4' fill='none' stroke='%230a0a0a' stroke-width='1.4'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
}

.map-layout {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 360px);
  border-top: 1px solid var(--hairline);
}
.leaflet-map {
  height: calc(100vh - 210px);
  min-height: 460px;
  background-color: #ede4d3;
}
.map-sidebar {
  height: calc(100vh - 210px);
  min-height: 460px;
  overflow-y: auto;
  border-left: 1px solid var(--hairline);
  background-color: var(--paper);
  padding: 1.5rem 1.5rem 2rem;
}
.map-sidebar-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.82rem;
  color: var(--ink);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--hairline);
}
.loc.is-hidden { display: none; }
.loc-empty { font-family: var(--serif); font-style: italic; color: var(--ink-mute); padding: 1rem 0; }

/* Rustic Leaflet marker (divIcon) */
.rustic-marker { background: none; border: none; }
.rustic-marker svg { display: block; }
.rustic-marker .pin-body { fill: var(--ink); stroke: none; }
.rustic-marker .pin-eye { fill: var(--paper); stroke: none; }
.rustic-marker--home .pin-body { fill: var(--ink); }

/* Leaflet UI tuned to the rustic palette */
.leaflet-tile-pane { filter: sepia(0.12) saturate(0.92) brightness(1.02); }
.leaflet-container { font-family: var(--sans); background: #ede4d3; }
.leaflet-popup-content-wrapper,
.leaflet-popup-tip { background-color: var(--paper); color: var(--ink); border-radius: 0; box-shadow: 0 6px 20px rgba(10, 10, 10, 0.2); }
.leaflet-popup-content { margin: 0.85rem 1.05rem; }
.leaflet-popup-content .lp-name { font-family: var(--serif); font-style: italic; font-weight: 600; font-size: 1rem; color: var(--ink); }
.leaflet-popup-content .lp-products { font-family: var(--serif); font-style: italic; font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.2rem; }
.leaflet-popup-content .lp-meta { font-family: var(--sans); font-weight: 300; font-size: 0.7rem; letter-spacing: 0.04em; color: var(--ink-mute); margin-top: 0.3rem; line-height: 1.5; }
.leaflet-bar a, .leaflet-bar a:hover { border-radius: 0 !important; color: var(--ink); }
.leaflet-control-attribution { font-size: 9px; background: rgba(250, 248, 243, 0.78); }

/* Home-base label on the map */
.leaflet-tooltip.home-tooltip {
  background-color: rgba(237, 228, 211, 0.82);
  border: none;
  box-shadow: none;
  padding: 0 0.3rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--ink);
  white-space: nowrap;
}
.leaflet-tooltip.home-tooltip::before { display: none; }   /* drop the callout arrow */

.loc-badge {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  border: 1px solid var(--hairline);
  padding: 0.05rem 0.35rem;
  margin-left: 0.4rem;
  vertical-align: middle;
}

/* ============================================================
   RESPONSIVE — single-scroll additions
   ============================================================ */
@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .mapprev-grid { grid-template-columns: 1fr; gap: 2rem; }
  .map-layout { grid-template-columns: 1fr; }
  .leaflet-map { height: 52vh; min-height: 340px; }
  .map-sidebar { height: auto; min-height: 0; border-left: none; border-top: 1px solid var(--hairline); }
}

@media (max-width: 760px) {
  .showcase-arrow { display: none; }   /* arrows are a desktop affordance */
}

@media (max-width: 720px) {
  .footer-cols { grid-template-columns: 1fr; gap: 1.6rem; text-align: center; }
  .foot-center, .foot-right { text-align: center; }
}

@media (max-width: 640px) {
  .rustic-divider { padding: 18px 1.25rem; gap: 1rem; }
  .rustic-divider--botanical .rd-botanical { height: 28px; width: auto; }
  .showcase-track { padding: 0 20px 1rem; }
  .showcase-section, .about, .mapprev { padding: 2.5rem 0; }
  .map-toolbar { padding-top: 1.75rem; }
}
