/* ============================================================
   Stitched & Branded — Vintage Western design system
   Palette, type, and signature "stitch" motif live here so the
   whole site is tunable from one place.
   ============================================================ */

:root {
  /* ---- Color (drawn from the brand logo) ---- */
  --paper:        #F4EFE4;   /* cream base */
  --paper-deep:   #EAE1CE;   /* slightly darker cream for panels */
  --paper-edge:   #DDCFB4;   /* hairline / border cream */
  --ink:          #33251B;   /* deep saddle-brown text */
  --ink-soft:     #5C4A3A;   /* secondary brown text */
  --teal:         #2E5158;   /* script-accent teal */
  --teal-deep:    #213D43;
  --rust:         #B45B3E;   /* terracotta / rust accent */
  --rust-deep:    #984930;
  --star:         #B45B3E;
  --cactus:       #6E7B5B;   /* muted desert green */
  --night:        #241A12;   /* near-black brown for dark sections */

  /* ---- Type ---- */
  --font-display: "Zilla Slab", Georgia, serif;     /* refined Western slab */
  --font-script:  "Yellowtail", "Brush Script MT", cursive;
  --font-body:    "Hanken Grotesk", system-ui, sans-serif;

  /* ---- Spacing scale (8px base) ---- */
  --s-1: 0.5rem;  --s-2: 1rem;   --s-3: 1.5rem;  --s-4: 2rem;
  --s-5: 3rem;    --s-6: 4rem;   --s-7: 6rem;    --s-8: 8rem;

  /* ---- Radius / shadow / motion ---- */
  --r-sm: 6px;  --r-md: 12px;  --r-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(45, 30, 18, 0.10);
  --shadow-md: 0 10px 30px rgba(45, 30, 18, 0.16);
  --shadow-lg: 0 24px 60px rgba(45, 30, 18, 0.22);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-fast: 160ms;  --t-mid: 240ms;

  --maxw: 1280px;
  --nav-h: 88px;
}

/* ============================================================
   Reset / base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--paper);
  /* subtle paper grain via layered gradients (no external asset) */
  background-image:
    radial-gradient(circle at 20% 10%, rgba(180,91,62,0.05), transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(46,81,88,0.05), transparent 45%);
  line-height: 1.6;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { line-height: 1.05; font-weight: 400; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 3rem);
}

/* Skip link */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--paper);
  padding: 0.7rem 1.1rem; border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

/* Focus visibility (a11y) */
:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ============================================================
   Signature motif: stitched dashed border + thread divider
   ============================================================ */
.stitch-line {
  height: 0; border: 0;
  border-top: 1px solid var(--paper-edge);
  opacity: 1;
  margin: 0;
}
.stitch-box {
  position: relative;
  border: 1px solid var(--paper-edge);
  border-radius: var(--r-md);
}

/* Eyebrow label used above section headings */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1.5px;
  background: var(--rust);
}

.script-accent {
  font-family: var(--font-script);
  color: var(--teal);
  font-weight: 400;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  transition: transform var(--t-fast) var(--ease),
              background-color var(--t-mid) var(--ease),
              color var(--t-mid) var(--ease),
              box-shadow var(--t-mid) var(--ease);
  text-align: center;
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn-primary {
  background: var(--rust);
  color: var(--paper);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--rust-deep); box-shadow: var(--shadow-md); transform: translateY(-2px); }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }

.btn-ghost-light {
  background: transparent; color: var(--paper); border-color: rgba(244,239,228,0.6);
}
.btn-ghost-light:hover { background: var(--paper); color: var(--ink); transform: translateY(-2px); }

.btn-block { width: 100%; }

/* ============================================================
   Header / nav
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(244, 239, 228, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: transform var(--t-mid) var(--ease),
              background-color var(--t-mid) var(--ease),
              border-color var(--t-mid) var(--ease),
              box-shadow var(--t-mid) var(--ease);
  will-change: transform;
}
.site-header.scrolled {
  background: rgba(244, 239, 228, 0.96);
  border-bottom-color: var(--paper-edge);
  box-shadow: var(--shadow-sm);
}
/* hide-on-scroll-down, show-on-scroll-up */
.site-header.nav-hidden { transform: translateY(-100%); }

.nav-inner {
  width: 100%; max-width: var(--maxw); margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 3rem);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-3);
}

.brand {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ink);
  line-height: 1;
}
.brand .brand-mark {
  width: 56px; height: 56px; border-radius: 50%;
  object-fit: cover; box-shadow: var(--shadow-sm);
}
.brand .brand-amp { color: var(--rust); }
.brand small {
  display: block; font-family: var(--font-script);
  color: var(--teal); font-size: 0.95rem; margin-top: 2px;
}

.nav-links {
  display: none;
  align-items: center; gap: clamp(1rem, 2vw, 1.9rem);
  list-style: none;
}
.nav-links a {
  font-weight: 600; font-size: 0.95rem;
  color: var(--ink-soft);
  padding: 0.4rem 0; position: relative;
  transition: color var(--t-fast) var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--rust) 0 5px, transparent 5px 9px);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-mid) var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { display: none; }

/* Hamburger */
.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center;
  gap: 5px; width: 48px; height: 48px;
  background: transparent; border: none; padding: 10px;
}
.nav-toggle span {
  display: block; height: 2.5px; width: 100%;
  background: var(--ink); border-radius: 2px;
  transition: transform var(--t-mid) var(--ease), opacity var(--t-fast) var(--ease);
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile menu panel */
.mobile-menu {
  position: fixed; inset: 0; z-index: 95;
  background: var(--paper);
  padding: calc(var(--nav-h) + var(--s-4)) clamp(1.1rem, 6vw, 3rem) var(--s-5);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--t-mid) var(--ease);
  visibility: hidden;
}
.nav-open .mobile-menu { transform: translateX(0); visibility: visible; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.mobile-menu a {
  display: block; padding: 0.9rem 0;
  font-family: var(--font-display);
  font-size: 1.5rem; color: var(--ink);
  border-bottom: 1px solid var(--paper-edge);
}
.mobile-menu a:hover { color: var(--rust); }
.mobile-menu .btn { margin-top: var(--s-4); }
.mobile-menu .mm-contact {
  margin-top: auto; padding-top: var(--s-4);
  color: var(--ink-soft); font-size: 0.95rem;
  display: grid; gap: 0.35rem;
}
.mobile-menu .mm-contact a { font-family: var(--font-body); font-size: 1rem; color: var(--teal); padding: 0.2rem 0; border: 0; }

.nav-actions { display: inline-flex; align-items: center; gap: 0.85rem; }
.nav-social {
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  color: var(--ink-soft);
  transition: color var(--t-fast) var(--ease), background-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.nav-social:hover { color: var(--paper); background: var(--teal); transform: translateY(-1px); }

@media (min-width: 920px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-social { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none; }
}

/* ============================================================
   Reveal-on-scroll (Intersection Observer adds .is-visible)
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 80ms; }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 240ms; }
.reveal[data-delay="4"] { transition-delay: 320ms; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(2rem, 6vw, 4.5rem));
  padding-bottom: clamp(3rem, 7vw, 6rem);
  overflow: hidden;
}
.hero::before {
  /* faint desert horizon glow */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(180,91,62,0.10), transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 110%, rgba(46,81,88,0.08), transparent 60%);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.hero-eyebrow { margin-bottom: var(--s-3); }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.7rem);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.hero h1 .line-script {
  display: block; font-family: var(--font-script);
  color: var(--teal); font-size: clamp(2.4rem, 6.5vw, 4.2rem);
  margin: 0.1em 0 0.08em;
  -webkit-text-fill-color: var(--teal);
}
.hero p.lead {
  margin-top: var(--s-3);
  font-size: clamp(1.05rem, 1rem + 0.5vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 42ch;
}
.hero-actions {
  margin-top: var(--s-4);
  display: flex; flex-wrap: wrap; gap: var(--s-2);
}
.hero-trust {
  margin-top: var(--s-4); padding-top: var(--s-3);
  border-top: 1px solid var(--paper-edge);
  display: flex; flex-wrap: wrap; gap: var(--s-3) var(--s-4);
}
.hero-trust .tag {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; font-weight: 600; color: var(--ink-soft);
}
.hero-trust .tag svg { flex: none; color: var(--rust); }

/* Hero collage */
.hero-media { position: relative; }
.hero-photo {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  border: 6px solid var(--paper);
  box-shadow: var(--shadow-lg);
  background: var(--paper-deep);
  aspect-ratio: 1 / 1;
  transform: rotate(-1.2deg);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo::after {
  /* subtle inner edge so the photo feels framed, like a pressed transfer */
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(51,37,27,0.08);
  border-radius: inherit; pointer-events: none;
}

@media (min-width: 880px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
}

/* ============================================================
   Section scaffolding
   ============================================================ */
.section { padding-block: clamp(2.5rem, 5vw, 4.5rem); scroll-margin-top: var(--nav-h); }
.section-head { max-width: 60ch; margin-bottom: clamp(1.6rem, 3vw, 2.4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.4rem + 2.4vw, 3.1rem);
  color: var(--ink); margin-top: var(--s-2);
  letter-spacing: -0.01em;
}
.section-head p { margin-top: var(--s-2); color: var(--ink-soft); font-size: 1.08rem; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }

/* ============================================================
   Shop gallery: filter bar + masonry
   ============================================================ */
.filter-bar {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.5rem; margin-bottom: clamp(1.8rem, 4vw, 2.8rem);
}
.filter-btn {
  font-family: var(--font-body); font-weight: 600; font-size: 0.9rem;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1px solid var(--paper-edge);
  border-radius: 999px;
  padding: 0.55rem 1.05rem; min-height: 42px;
  transition: all var(--t-fast) var(--ease);
}
.filter-btn:hover { border-color: var(--teal); color: var(--ink); }
.filter-btn.is-active {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
}

.masonry {
  columns: 2; column-gap: clamp(0.6rem, 1.6vw, 1rem);
}
@media (min-width: 640px)  { .masonry { columns: 3; } }
@media (min-width: 1040px) { .masonry { columns: 4; } }
@media (min-width: 1400px) { .masonry { columns: 5; } }

.g-item {
  break-inside: avoid;
  margin: 0 0 clamp(0.6rem, 1.6vw, 1rem);
  border-radius: var(--r-md); overflow: hidden;
  border: 4px solid var(--paper);
  box-shadow: var(--shadow-sm);
  background: var(--paper-deep);
  display: block;
}
.g-item img {
  width: 100%; display: block;
  transition: transform 500ms var(--ease);
}
.g-item:hover img { transform: scale(1.04); }
.g-item.is-hidden { display: none; }

.pager {
  display: flex; align-items: center; justify-content: center;
  gap: var(--s-3);
  margin-top: clamp(1.6rem, 4vw, 2.4rem);
}
.pager-btn {
  font-family: var(--font-body); font-weight: 700; font-size: 0.92rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 0.6rem 1.2rem; min-height: 44px;
  transition: all var(--t-fast) var(--ease);
}
.pager-btn:hover:not(:disabled) { background: var(--ink); color: var(--paper); }
.pager-btn:disabled { opacity: 0.35; cursor: default; border-color: var(--paper-edge); }
.pager-pages { font-weight: 600; color: var(--ink-soft); font-size: 0.92rem; min-width: 8ch; text-align: center; }

/* ============================================================
   First Responder Relief Project — dark feature band
   ============================================================ */
.relief {
  position: relative; overflow: hidden;
  background: var(--night);
  color: var(--paper);
}
.relief::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(180,91,62,0.16), transparent 45%),
    linear-gradient(255deg, rgba(46,81,88,0.20), transparent 45%);
  z-index: 0;
}
.relief .container { position: relative; z-index: 1; }
.relief-grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.relief .eyebrow { color: #E1A78F; }
.relief .eyebrow::before { background: #E1A78F; }
.relief h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.4rem + 2.6vw, 3rem);
  margin-top: var(--s-2); color: var(--paper);
}
.relief .give-stat {
  display: inline-flex; align-items: baseline; gap: 0.5rem;
  margin: var(--s-3) 0 var(--s-1);
}
.relief .give-stat b {
  font-family: var(--font-display); color: #E8A48C;
  font-size: clamp(2.4rem, 2rem + 3vw, 3.8rem); line-height: 1;
}
.relief .give-stat span { font-size: 1.05rem; color: var(--paper-deep); max-width: 22ch; }
.relief blockquote {
  margin: var(--s-3) 0 0; padding-left: var(--s-3);
  border-left: 3px dashed rgba(232,164,140,0.5);
  color: var(--paper-deep); font-size: 1.05rem;
}
.relief blockquote p + p { margin-top: var(--s-2); }
.relief .sig {
  margin-top: var(--s-3); font-family: var(--font-script);
  color: #E8A48C; font-size: 1.5rem;
}
.relief-actions { margin-top: var(--s-4); display: flex; flex-wrap: wrap; gap: var(--s-2); }
.relief-media {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  border: 3px solid rgba(244,239,228,0.15); box-shadow: var(--shadow-lg);
}
.relief-media img { width: 100%; height: 100%; object-fit: cover; }
.relief-logo-wrap {
  display: grid; gap: var(--s-2);
}
.relief-logo-wrap .scene { aspect-ratio: 4/3; }
@media (min-width: 880px) {
  .relief-grid { grid-template-columns: 1.05fr 0.95fr; }
}

/* ============================================================
   About / Meet Chelsie
   ============================================================ */
.about-grid {
  display: grid; grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3.5rem); align-items: center;
}
.about-photo { display: flex; justify-content: center; }
.about-frame {
  position: relative;
  max-width: 360px; width: 100%;
  border-radius: var(--r-lg); overflow: hidden;
  border: 3px solid var(--paper);
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.4deg);
}
.about-frame::after {
  content: ""; position: absolute; inset: 8px;
  border: 1.5px dashed rgba(244,239,228,0.7);
  border-radius: calc(var(--r-lg) - 6px);
  pointer-events: none;
}
.about-frame img { width: 100%; height: auto; display: block; }
.about-copy .lead {
  font-size: 1.15rem; color: var(--ink); margin-top: var(--s-2); font-weight: 600;
}
.about-copy p + p { margin-top: var(--s-2); color: var(--ink-soft); }
.about-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.4rem + 2.6vw, 3rem);
  margin-top: var(--s-2);
}
.about-actions { margin-top: var(--s-4); display: flex; flex-wrap: wrap; gap: var(--s-2); }
@media (min-width: 860px) {
  .about-grid { grid-template-columns: 0.85fr 1.15fr; }
}

/* ============================================================
   Pricing
   ============================================================ */
.price-grid {
  display: grid; gap: clamp(1.1rem, 2.5vw, 1.6rem);
  grid-template-columns: 1fr;
}
.price-card {
  background: var(--paper);
  border: 1px solid var(--paper-edge);
  border-radius: var(--r-md);
  padding: clamp(1.4rem, 3vw, 1.9rem);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem; color: var(--ink);
  padding-bottom: var(--s-2);
  border-bottom: 1.5px dashed var(--paper-edge);
}
.price-list { list-style: none; padding: 0; margin: var(--s-2) 0 0; }
.price-list li {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: var(--s-2); padding: 0.55rem 0;
  border-bottom: 1px solid rgba(221,207,180,0.5);
}
.price-list li:last-child { border-bottom: 0; }
.price-list .item { color: var(--ink-soft); }
.price-list .item small { display: block; font-size: 0.82rem; color: var(--rust); letter-spacing: 0.02em; }
.price-list .amt {
  font-family: var(--font-display); font-weight: 600;
  color: var(--teal); white-space: nowrap; text-align: right;
}
.price-note {
  margin-top: var(--s-4); text-align: center;
  color: var(--ink-soft); font-size: 1.02rem;
}
.price-note .script-accent { font-size: 1.5rem; }
.price-categories {
  margin-top: var(--s-3); text-align: center;
  font-size: 0.98rem; color: var(--ink-soft); max-width: 60ch; margin-inline: auto;
}
@media (min-width: 720px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .price-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   Process steps (real sequence -> numbered is appropriate)
   ============================================================ */
.steps { display: grid; gap: clamp(1.1rem, 2.5vw, 1.6rem); grid-template-columns: 1fr; }
@media (min-width: 700px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  position: relative; padding: var(--s-3);
  background: var(--paper);
  border: 1px solid var(--paper-edge);
  border-radius: var(--r-md);
}
.step .num {
  font-family: var(--font-display); color: var(--rust);
  font-size: 2rem; line-height: 1; display: block; margin-bottom: var(--s-2);
}
.step h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 0.4rem; color: var(--ink); }
.step p { font-size: 0.94rem; color: var(--ink-soft); }

/* ============================================================
   Order / contact form
   ============================================================ */
.order { background: var(--paper-deep); }
.order-grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
@media (min-width: 920px) { .order-grid { grid-template-columns: 0.85fr 1.15fr; } }

.order-aside h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 1.4rem + 2vw, 2.6rem); color: var(--ink); margin-top: var(--s-2);
}
.order-aside p { margin-top: var(--s-2); color: var(--ink-soft); }
.contact-list { list-style: none; margin-top: var(--s-3); display: grid; gap: var(--s-2); }
.contact-list li { display: flex; align-items: flex-start; gap: 0.7rem; }
.contact-list svg { flex: none; color: var(--teal); margin-top: 2px; }
.contact-list a { font-weight: 600; color: var(--ink); }
.contact-list a:hover { color: var(--rust); }
.contact-list small { display: block; color: var(--ink-soft); font-weight: 400; }

.form-card {
  background: var(--paper);
  border: 1px solid var(--paper-edge);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr; gap: var(--s-3); }
@media (min-width: 560px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: var(--s-3); }
.field label { font-weight: 600; font-size: 0.92rem; color: var(--ink); }
.field label .req { color: var(--rust); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--paper-edge);
  border-radius: var(--r-sm);
  padding: 0.75rem 0.85rem;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(46,81,88,0.15);
}
.field .err-msg {
  font-size: 0.82rem; color: var(--rust-deep); font-weight: 600;
  display: none;
}
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--rust); }
.field.invalid .err-msg { display: block; }
.form-note { font-size: 0.85rem; color: var(--ink-soft); margin-top: var(--s-1); }
fieldset { border: 0; padding: 0; margin: 0 0 var(--s-3); }
fieldset legend { font-weight: 600; font-size: 0.92rem; color: var(--ink); margin-bottom: 0.5rem; padding: 0; }
.chip-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  position: relative;
}
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span {
  display: inline-flex; align-items: center; min-height: 40px;
  padding: 0.4rem 0.9rem; border-radius: 999px;
  border: 1.5px solid var(--paper-edge); background: var(--paper);
  font-size: 0.88rem; font-weight: 600; color: var(--ink-soft);
  transition: all var(--t-fast) var(--ease);
}
.chip input:checked + span { background: var(--teal); color: var(--paper); border-color: var(--teal); }
.chip input:focus-visible + span { outline: 3px solid var(--teal); outline-offset: 2px; }
.chip span:hover { border-color: var(--teal); color: var(--ink); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: grid; gap: var(--s-2); max-width: 820px; margin-inline: auto; }
.faq-item {
  border: 1px solid var(--paper-edge);
  border-radius: var(--r-md);
  background: var(--paper);
  overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-2);
  padding: var(--s-3);
  font-family: var(--font-display); font-size: 1.05rem; color: var(--ink);
  background: transparent;
}
.faq-q .icon { flex: none; width: 22px; height: 22px; position: relative; }
.faq-q .icon::before, .faq-q .icon::after {
  content: ""; position: absolute; background: var(--rust); border-radius: 2px;
  transition: transform var(--t-mid) var(--ease);
}
.faq-q .icon::before { top: 10px; left: 0; width: 22px; height: 2.5px; }
.faq-q .icon::after { top: 0; left: 10px; width: 2.5px; height: 22px; }
.faq-item[aria-expanded="true"] .icon::after { transform: scaleY(0); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height var(--t-mid) var(--ease);
}
.faq-a-inner { padding: 0 var(--s-3) var(--s-3); color: var(--ink-soft); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--night); color: var(--paper-deep);
  padding-block: clamp(2.5rem, 5vw, 4rem) var(--s-4);
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--s-4);
}
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand .brand { color: var(--paper); }
.footer-brand p { margin-top: var(--s-2); max-width: 38ch; color: var(--paper-deep); font-size: 0.95rem; }
.footer-col h4 {
  font-family: var(--font-display); font-size: 1.05rem; color: var(--paper);
  margin-bottom: var(--s-2); font-weight: 400;
}
.footer-col ul { list-style: none; display: grid; gap: 0.55rem; }
.footer-col a { color: var(--paper-deep); font-size: 0.95rem; }
.footer-col a:hover { color: #E8A48C; }
.footer-bottom {
  margin-top: var(--s-5); padding-top: var(--s-3);
  border-top: 1px solid rgba(244,239,228,0.18);
  display: flex; flex-wrap: wrap; gap: var(--s-2); justify-content: space-between;
  font-size: 0.85rem; color: var(--paper-deep);
}
.footer-bottom a { color: var(--paper-deep); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   Toast + Modal
   ============================================================ */
.toast-wrap {
  position: fixed; z-index: 200; right: 1rem; bottom: 1rem;
  display: flex; flex-direction: column; gap: 0.6rem; max-width: min(92vw, 380px);
}
.toast {
  display: flex; align-items: flex-start; gap: 0.7rem;
  background: var(--ink); color: var(--paper);
  padding: 0.85rem 1rem; border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  border-left: 5px solid var(--teal);
  transform: translateY(16px); opacity: 0;
  transition: transform var(--t-mid) var(--ease), opacity var(--t-mid) var(--ease);
}
.toast.show { transform: none; opacity: 1; }
.toast.success { border-left-color: var(--cactus); }
.toast.error { border-left-color: var(--rust); }
.toast svg { flex: none; margin-top: 2px; }
.toast .t-body { font-size: 0.92rem; }
.toast .t-body strong { display: block; font-size: 0.98rem; margin-bottom: 1px; }

.modal-overlay {
  position: fixed; inset: 0; z-index: 210;
  background: rgba(36,26,18,0.55);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  display: grid; place-items: center; padding: 1.2rem;
  opacity: 0; visibility: hidden;
  transition: opacity var(--t-mid) var(--ease), visibility var(--t-mid) var(--ease);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--paper);
  border-radius: var(--r-lg);
  border: 1px solid var(--paper-edge);
  max-width: 460px; width: 100%;
  padding: clamp(1.6rem, 4vw, 2.4rem);
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: translateY(16px) scale(0.97);
  transition: transform var(--t-mid) var(--ease);
}
.modal-overlay.open .modal { transform: none; }
.modal .modal-icon {
  width: 64px; height: 64px; margin: 0 auto var(--s-2);
  border-radius: 50%; background: var(--teal); color: var(--paper);
  display: grid; place-items: center;
}
.modal h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); margin-bottom: 0.5rem; }
.modal p { color: var(--ink-soft); margin-bottom: var(--s-3); }
.modal .modal-actions { display: flex; gap: var(--s-2); justify-content: center; flex-wrap: wrap; }

@media (prefers-reduced-motion: reduce) {
  .toast, .modal, .modal-overlay, .cat-card, .gallery img, .hero-photo img,
  .btn, .site-header { transition: none !important; }
}

/* ============================================================
   404
   ============================================================ */
.notfound {
  min-height: 100vh; display: grid; place-items: center; text-align: center;
  padding: calc(var(--nav-h) + 2rem) 1.2rem 3rem;
}
.notfound .big {
  font-family: var(--font-display);
  font-size: clamp(4rem, 18vw, 9rem); color: var(--rust); line-height: 0.9;
}
.notfound h1 { font-family: var(--font-display); font-size: clamp(1.6rem, 5vw, 2.4rem); margin: var(--s-2) 0; color: var(--ink); }
.notfound p { color: var(--ink-soft); max-width: 46ch; margin: 0 auto var(--s-4); }

/* utility */
.text-center { text-align: center; }
.mt-4 { margin-top: var(--s-4); }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---- Display font weight tuning (Zilla Slab) ---- */
.brand, .hero h1, .section-head h2, .relief h2, .order-aside h2,
.cat-card h3, .step h3, .faq-q, .mobile-menu a, .footer-col h4,
.modal h3, .notfound .big, .notfound h1, .step .num,
.relief .give-stat b {
  font-weight: 700;
  letter-spacing: -0.005em;
}
.hero h1 { letter-spacing: -0.015em; }

/* ============================================================
   v2 — Storefront homepage + multi-page components
   ============================================================ */

/* ---- Announcement bar ---- */
.announce {
  background: var(--night); color: var(--paper-deep);
  text-align: center; font-size: 0.82rem; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 600;
  padding: 0.5rem 1rem;
}
.announce .heart { color: var(--rust); margin: 0 0.4rem; }

/* ---- Hero (storefront variant) — wide image with overlaid copy ---- */
.hero-store {
  position: relative;
  /* padding (not margin) so the hero's own background fills the space
     under the fixed header — no gray gap strip */
  padding-top: var(--nav-h);
  background: var(--paper);
  overflow: hidden;
}
.hero-store-bg { position: relative; width: 100%; }
.hero-store-bg img {
  width: 100%; display: block;
  /* cap the height so the hero shows a comfortable band rather than the
     whole tall image; a little taller + lower crop keeps the EMS coaster
     and the front products fully in frame */
  height: clamp(520px, 70vh, 760px);
  object-fit: cover;
  object-position: 70% 42%;
}
.hero-store-overlay {
  position: absolute; left: 0; right: 0; top: var(--nav-h); bottom: 0;
  display: flex; align-items: center;
}
.hero-store-overlay .container { width: 100%; max-width: var(--maxw); }
.hero-store-copy { position: relative; z-index: 2; max-width: 42%; }
.hero-store-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 0.6rem + 3.2vw, 3.4rem);
  line-height: 1.04; color: var(--ink); letter-spacing: -0.01em;
}
.hero-store-copy .line-script {
  display: block; font-family: var(--font-script);
  color: var(--teal); -webkit-text-fill-color: var(--teal);
  font-size: clamp(1.4rem, 0.6rem + 2.6vw, 2.8rem);
  font-weight: 400; letter-spacing: 0; margin-top: 0.1em;
}
.hero-store-actions { margin-top: clamp(1rem, 2.2vw, 1.8rem); display: flex; flex-wrap: wrap; gap: 0.7rem; }
/* Small screens: the wide art leaves no room for overlaid text, so we
   show the image, then stack the copy beneath it on a clean panel. */
.hero-store-copy-mobile { display: none; }
@media (max-width: 760px) {
  .hero-store-bg img { height: clamp(280px, 40vh, 400px); object-position: 60% 30%; }
  .hero-store-overlay { display: none; }
  .hero-store-copy-mobile {
    display: block; text-align: center;
    padding: var(--s-3) clamp(1.1rem, 5vw, 2rem) var(--s-1);
  }
  .hero-store-copy-mobile h1 { font-family: var(--font-display); font-size: clamp(2rem, 7vw, 2.8rem); color: var(--ink); line-height: 1.06; }
  .hero-store-copy-mobile .line-script { display:block; font-family: var(--font-script); color: var(--teal); -webkit-text-fill-color: var(--teal); font-weight: 400; font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .hero-store-actions.mobile { margin-top: var(--s-3); display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; }
}

/* ---- Category grid (clickable tiles -> category pages) ---- */
.cat-grid {
  display: grid; gap: clamp(0.8rem, 1.6vw, 1.3rem);
  grid-template-columns: repeat(2, 1fr);
  max-width: 1080px; margin-inline: auto;
}
@media (min-width: 640px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px) { .cat-grid { grid-template-columns: repeat(6, 1fr); } }
.cat-card {
  display: block; position: relative;
  border-radius: var(--r-md); overflow: hidden;
  border: 1px solid var(--paper-edge);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
}
.cat-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; transition: transform 600ms var(--ease); }
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cat-card:hover img { transform: scale(1.04); }
.cat-card:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; }
/* Category tile images already include their leather signpost labels,
   so the visible text label is baked in. .cat-label is kept for screen
   readers only (visually hidden) to preserve an accessible link name. */
.cat-card .cat-label {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ---- Featured products ---- */
.prod-grid {
  display: grid; gap: clamp(1rem, 2.4vw, 1.5rem);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 880px) { .prod-grid { grid-template-columns: repeat(4, 1fr); } }
.prod-card {
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--paper-edge);
  border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
}
.prod-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.prod-media { position: relative; overflow: hidden; background: var(--paper-deep); }
.prod-media img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; transition: transform 600ms var(--ease); }
.prod-card:hover .prod-media img { transform: scale(1.05); }
.prod-body { padding: var(--s-2) var(--s-2) var(--s-3); display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.prod-name { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 1.02rem; line-height: 1.2; }
.prod-price { color: var(--teal); font-weight: 700; font-family: var(--font-display); }
.prod-price small { color: var(--ink-soft); font-weight: 400; font-family: var(--font-body); font-size: 0.82rem; }
.prod-card .btn { margin-top: auto; }
.btn-sm { padding: 0.6rem 1rem; min-height: 42px; font-size: 0.88rem; }

/* ---- Made-with-Heart / Giving-back story band ---- */
.heart-band { position: relative; background: var(--paper-deep); overflow: hidden; }
.heart-band::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: url("../assets/img/band-rope-heart.webp");
  background-size: cover; background-position: center top; opacity: 0.5;
}
/* extra top padding pushes content clear of the rope graphic at the top */
.heart-band { padding-top: clamp(4.5rem, 9vw, 7rem); }
.heart-band .container { position: relative; z-index: 1; }
.heart-grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: center; }
@media (min-width: 860px) { .heart-grid { grid-template-columns: 0.85fr 1.15fr; } }
.heart-photo {
  border-radius: var(--r-lg); overflow: hidden;
  border: 5px solid var(--paper); box-shadow: var(--shadow-md);
  transform: rotate(-1.2deg);
  max-width: 360px; margin-inline: auto; /* sized down so it clears the rope band */
}
.heart-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.heart-copy h2 { font-family: var(--font-script); color: var(--teal); font-size: clamp(1.9rem, 1.3rem + 2.3vw, 3rem); font-weight: 400; line-height: 1.1; }
.heart-copy .divider { width: 64px; height: 2px; background: var(--rust); margin: var(--s-2) 0; position: relative; }
.heart-copy .divider::after { content: "\2605"; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); color: var(--rust); background: var(--paper-deep); padding: 0 6px; font-size: 0.8rem; }
.heart-copy p { color: var(--ink-soft); margin-bottom: var(--s-2); max-width: 56ch; }
.heart-copy p strong { color: var(--rust-deep); }
/* On mobile, the rope-heart graphic is pinned as a centered band across the
   top at its natural width, and content is pushed well below it so the whole
   heart shows clearly. */
@media (max-width: 760px) {
  .heart-band { padding-top: clamp(6.5rem, 30vw, 10rem); }
  .heart-band::before {
    background-size: 200% auto;      /* heart a bit larger, still fully visible */
    background-position: center top;
    background-repeat: no-repeat;
  }
}

/* ---- Category page header ---- */
.cat-hero {
  margin-top: var(--nav-h);
  background: var(--paper-deep);
  border-bottom: 1px solid var(--paper-edge);
  padding-block: clamp(2.2rem, 5vw, 3.6rem);
  text-align: center;
}
.cat-hero .eyebrow { justify-content: center; }
.cat-hero .eyebrow::before { display: none; }
.cat-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 1.4rem + 3vw, 3.4rem); color: var(--ink); margin-top: var(--s-1); }
.cat-hero p { color: var(--ink-soft); max-width: 56ch; margin: var(--s-2) auto 0; }
.breadcrumb { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: var(--s-2); }
.breadcrumb a { color: var(--teal); font-weight: 600; }
.breadcrumb a:hover { color: var(--rust); }

/* simple product grid for category pages (no price overlay clutter) */
.cat-products { display: grid; gap: clamp(1rem, 2.4vw, 1.5rem); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .cat-products { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1080px) { .cat-products { grid-template-columns: repeat(4, 1fr); } }

/* price-strip used at top of category pages */
.price-strip {
  background: var(--paper); border: 1px solid var(--paper-edge);
  border-radius: var(--r-md); padding: var(--s-3);
  margin-bottom: clamp(1.6rem, 4vw, 2.5rem);
}
.price-strip h2 { font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); margin-bottom: var(--s-2); }
.price-strip ul { list-style: none; display: grid; gap: 0.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .price-strip ul { grid-template-columns: 1fr 1fr; } }
.price-strip li { display: flex; justify-content: space-between; gap: var(--s-2); padding: 0.4rem 0; border-bottom: 1px solid rgba(221,207,180,0.5); }
.price-strip .amt { font-family: var(--font-display); font-weight: 600; color: var(--teal); white-space: nowrap; }

/* nav utility icons (search/account/cart visual parity with mockup) */
.nav-icons { display: none; align-items: center; gap: 0.3rem; }
.nav-icons a, .nav-icons button { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; color: var(--ink-soft); background: transparent; border: 0; border-radius: 50%; transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease); }
.nav-icons a:hover, .nav-icons button:hover { color: var(--ink); background: rgba(180,91,62,0.1); }
@media (min-width: 920px) { .nav-icons { display: inline-flex; } }

/* Shop page: product cards reused as filterable gallery items.
   Neutralize legacy .g-item figure styling when combined with .prod-card. */
.prod-card.g-item { border: 1px solid var(--paper-edge); margin: 0; background: var(--paper); }
.prod-card.g-item img { width: 100%; }
.prod-card.g-item.is-hidden { display: none; }

/* ============================================================
   v3 — Buy button, clickable product media, product modal
   ============================================================ */
/* the product image is now a button that opens the modal */
.prod-media {
  display: block; width: 100%; padding: 0; border: 0;
  background: var(--paper-deep); cursor: pointer;
  position: relative; overflow: hidden;
}
.prod-media img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; transition: transform 600ms var(--ease); }
.prod-card:hover .prod-media img { transform: scale(1.05); }
.prod-media::after {
  content: "View"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(36,26,18,0.0); color: transparent;
  font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.04em;
  transition: background var(--t-mid) var(--ease), color var(--t-mid) var(--ease);
}
.prod-media:hover::after, .prod-media:focus-visible::after {
  background: rgba(36,26,18,0.32); color: var(--paper);
}
/* Buy button: icon + label */
.btn-sm svg { flex: none; }
.btn-sm span { line-height: 1; }

/* ---- Product modal ---- */
.product-modal .pm-card {
  max-width: 460px; text-align: center; position: relative;
  padding: clamp(1.2rem, 3vw, 1.8rem);
}
.pm-close {
  position: absolute; top: 0.6rem; right: 0.8rem;
  width: 38px; height: 38px; border: 0; background: transparent;
  font-size: 1.8rem; line-height: 1; color: var(--ink-soft);
  border-radius: 50%; transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.pm-close:hover { background: rgba(180,91,62,0.12); color: var(--ink); }
.pm-media {
  border-radius: var(--r-md); overflow: hidden;
  border: 1px solid var(--paper-edge); margin-bottom: var(--s-3);
  background: var(--paper-deep);
}
.pm-media img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.pm-name { font-family: var(--font-display); font-size: 1.45rem; color: var(--ink); margin-bottom: 0.3rem; }
.pm-price { font-family: var(--font-display); font-weight: 700; color: var(--teal); font-size: 1.2rem; margin-bottom: var(--s-2); }
.pm-note { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: var(--s-3); }

/* ---- Product modal thumbnail strip (multi-photo products) ---- */
.pm-thumbs { display: flex; gap: 0.5rem; justify-content: center; margin: 0 0 var(--s-2); flex-wrap: wrap; }
.pm-thumb {
  width: 56px; height: 56px; padding: 0; border-radius: var(--r-sm);
  overflow: hidden; border: 2px solid var(--paper-edge); background: var(--paper-deep);
  cursor: pointer; transition: border-color var(--t-fast) var(--ease);
}
.pm-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pm-thumb.is-active { border-color: var(--teal); }
.pm-thumb:hover { border-color: var(--rust); }

/* ---- Mobile: logo mark only, hide the redundant brand text ---- */
@media (max-width: 600px) {
  .brand span { display: none; }
  .brand .brand-mark { width: 52px; height: 52px; }
}
