/* ============================================================
   FABRIC TOWN — "Heritage & Hands"
   Warm, story-led, human, textured.
   Warm paper · terracotta/clay · deep ink-green · humanist serif
   ============================================================ */

/* ---------- Fonts (humanist serif + friendly sans) ---------- */
@font-face { font-display: swap; }

:root {
  /* Palette — earthy, hand-made, neighbourhood */
  --paper:        #f4ece0;   /* warm paper base */
  --paper-deep:   #ece0cf;   /* card / panel */
  --paper-dark:   #e3d4bf;   /* darker tint */
  --cream:        #fbf6ee;   /* lightest, for cards on dark */
  --ink:          #2b2520;   /* near-black warm brown */
  --ink-soft:     #4a4138;   /* body text */
  --muted:        #756a5c;   /* secondary text */
  --clay:         #b5562f;   /* terracotta accent */
  --clay-deep:    #9a4525;   /* hover / pressed */
  --forest:       #2f4233;   /* deep ink-green */
  --forest-soft:  #3c5340;
  --gold:         #b58a3c;   /* warm brass detail */
  --line:         #cdbca5;   /* hairline on paper */
  --line-soft:    #d8c9b3;

  --maxw: 1200px;
  --gut: clamp(1.1rem, 4vw, 2.5rem);

  --serif: "Spectral", "Iowan Old Style", "Palatino Linotype", Palatino, "Hoefler Text", Georgia, serif;
  --sans:  "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --radius: 4px;
  --shadow: 0 1px 2px rgba(43,37,32,.06), 0 8px 24px -12px rgba(43,37,32,.18);
  --shadow-lift: 0 2px 6px rgba(43,37,32,.08), 0 18px 40px -18px rgba(43,37,32,.28);

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset ---------- */
*, *::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; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--sans);
  color: var(--ink-soft);
  background-color: var(--paper);
  /* Subtle paper/textile grain — pure CSS, no asset */
  background-image:
    radial-gradient(rgba(120,100,75,.045) 1px, transparent 1.1px),
    radial-gradient(rgba(120,100,75,.04) 1px, transparent 1.1px);
  background-size: 7px 7px, 11px 11px;
  background-position: 0 0, 3px 5px;
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--clay-deep); text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--clay); }

/* ---------- Typography ---------- */
h1,h2,h3,h4 { font-family: var(--serif); color: var(--ink); line-height: 1.08; font-weight: 600; letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 6.5vw, 4.6rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 4.2vw, 3rem); font-weight: 500; }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }
p { max-width: 68ch; }
.lede { font-family: var(--serif); font-size: clamp(1.2rem, 2.4vw, 1.6rem); line-height: 1.5; color: var(--ink); font-weight: 400; }

/* Decorative small-caps eyebrow */
.eyebrow {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--clay);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before { content:""; width: 1.6rem; height: 1px; background: var(--clay); display:inline-block; opacity:.7; }
.eyebrow.center::after { content:""; width: 1.6rem; height: 1px; background: var(--clay); display:inline-block; opacity:.7; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.wrap-narrow { max-width: 760px; margin-inline: auto; padding-inline: var(--gut); }
section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section-head { max-width: 60ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.center { text-align: center; }
.center.section-head { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--sans); font-weight: 600; font-size: .98rem;
  padding: .85rem 1.5rem; border-radius: 100px;
  text-decoration: none; cursor: pointer; border: 1.5px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--clay); color: #fff; }
.btn-primary:hover { background: var(--clay-deep); color: #fff; }
.btn-ink { background: var(--forest); color: var(--cream); }
.btn-ink:hover { background: var(--forest-soft); color: var(--cream); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); background: rgba(43,37,32,.04); }
.btn-sm { padding: .6rem 1.05rem; font-size: .86rem; }

:focus-visible { outline: 3px solid var(--clay); outline-offset: 2px; border-radius: 2px; }

.skip-link {
  position: absolute; left: .5rem; top: -3rem; z-index: 999;
  background: var(--ink); color: var(--cream); padding: .6rem 1rem; border-radius: var(--radius);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: .5rem; color: var(--cream); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244,236,224,.88);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .7rem; }
.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--ink); flex-shrink: 0; }
.brand img { width: 38px; height: 38px; border-radius: 50%; background: var(--cream); padding: 3px; border: 1px solid var(--line); }
.brand-name { font-family: var(--serif); font-weight: 600; font-size: 1.18rem; letter-spacing: -.01em; line-height: 1; }
.brand-tag { display:block; font-family: var(--sans); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-top: 3px; }

.nav { display: flex; align-items: center; gap: .25rem; }
.nav a { font-family: var(--sans); font-weight: 500; font-size: .95rem; color: var(--ink-soft); text-decoration: none; padding: .5rem .8rem; border-radius: 100px; transition: background .2s, color .2s; }
.nav a:hover { background: rgba(43,37,32,.05); color: var(--ink); }
.nav a[aria-current="page"] { color: var(--clay-deep); font-weight: 600; }
.header-cta { margin-left: .5rem; }

.nav-toggle { display: none; background: none; border: 1.5px solid var(--line); border-radius: 100px; padding: .5rem .9rem; font-family: var(--sans); font-weight: 600; font-size: .9rem; color: var(--ink); cursor: pointer; align-items: center; gap: .5rem; }
.nav-toggle svg { width: 18px; height: 18px; }

@media (max-width: 920px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw);
    flex-direction: column; align-items: stretch; gap: .2rem;
    background: var(--cream); padding: 5rem 1.4rem 2rem;
    box-shadow: -20px 0 60px -20px rgba(43,37,32,.4);
    transform: translateX(100%); transition: transform .35s var(--ease);
    border-left: 1px solid var(--line);
  }
  .nav.open { transform: translateX(0); }
  .nav a { padding: .85rem 1rem; font-size: 1.05rem; border-radius: var(--radius); }
  .nav .header-cta { margin: .8rem 0 0; text-align: center; }
  .nav .btn { width: 100%; justify-content: center; }
  body.nav-open { overflow: hidden; }
  .nav-scrim { position: fixed; inset: 0; background: rgba(43,37,32,.4); opacity: 0; visibility: hidden; transition: opacity .3s; z-index: 99; }
  .nav-scrim.open { opacity: 1; visibility: visible; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: clamp(2.5rem, 6vw, 5rem); padding-bottom: clamp(3rem, 7vw, 6rem); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero h1 { margin-bottom: 1.4rem; }
.hero .lede { margin-bottom: 2rem; color: var(--ink-soft); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-art { position: relative; }
.hero-art .photo-stack { position: relative; }
.hero-art img { border-radius: 6px; box-shadow: var(--shadow-lift); }
.hero-art .img-main { aspect-ratio: 4/5; object-fit: cover; transform: rotate(-1.4deg); border: 6px solid var(--cream); }
.hero-art .img-float {
  position: absolute; width: 46%; aspect-ratio: 1/1; object-fit: cover;
  right: -4%; bottom: -7%; transform: rotate(3deg); border: 6px solid var(--cream);
  box-shadow: var(--shadow-lift);
}
.hero-stamp {
  position: absolute; top: -1.5rem; left: -1.5rem; width: 116px; height: 116px;
  display: grid; place-items: center; text-align: center;
  font-family: var(--serif); color: var(--clay); z-index: 3;
}
.hero-stamp .seal { position:absolute; inset:0; }
.hero-stamp span { font-size: .68rem; line-height: 1.15; font-weight: 600; letter-spacing: .04em; max-width: 70px; }

@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 460px; margin-inline: auto; order: -1; }
  .hero-stamp { width: 92px; height: 92px; top: -1rem; left: -.6rem; }
}

/* ============================================================
   GENERIC SECTIONS / CARDS
   ============================================================ */
.panel { background: var(--forest); color: var(--cream); }
.panel h1,.panel h2,.panel h3 { color: var(--cream); }
.panel .eyebrow { color: #e9b487; }
.panel .eyebrow::before, .panel .eyebrow.center::after { background: #e9b487; }
.panel p { color: #dcd2c1; }
.panel-clay { background: var(--clay); color: #fff; }
.panel-clay h1,.panel-clay h2,.panel-clay h3 { color:#fff; }
.panel-paper { background: var(--paper-deep); }

.grid { display: grid; gap: clamp(1.1rem, 2.5vw, 1.8rem); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .cols-3 { grid-template-columns: 1fr; } .cols-2 { grid-template-columns: 1fr; } }

/* Collection cards */
.collections { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
@media (max-width: 860px){ .collections { grid-template-columns: 1fr; } }
.collection-card {
  position: relative; display: block; text-decoration: none; color: var(--ink);
  border-radius: 6px; overflow: hidden; background: var(--cream);
  border: 1px solid var(--line); box-shadow: var(--shadow);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.collection-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.collection-card .ph { aspect-ratio: 5/4; overflow: hidden; }
.collection-card img { width:100%; height:100%; object-fit: cover; transition: transform .6s var(--ease); }
.collection-card:hover img { transform: scale(1.05); }
.collection-card .cc-body { padding: 1.1rem 1.25rem 1.3rem; }
.collection-card h3 { margin-bottom: .25rem; }
.collection-card .cc-body p { font-size: .92rem; color: var(--muted); margin-bottom: .7rem; }
.collection-card .arrow { font-family: var(--sans); font-weight: 600; font-size: .9rem; color: var(--clay-deep); }

/* Feature / value rows */
.values { display:grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.5rem,3vw,2.5rem); }
@media (max-width: 860px){ .values { grid-template-columns: 1fr; } }
.value { }
.value .ico { width: 46px; height: 46px; margin-bottom: 1rem; color: var(--clay); }
.panel .value .ico { color:#e9b487; }
.value h3 { margin-bottom: .5rem; }
.value p { font-size: .98rem; }

/* Quote / pull */
.quote { font-family: var(--serif); font-size: clamp(1.5rem, 3.6vw, 2.6rem); line-height: 1.28; color: var(--ink); font-weight: 500; }
.quote .clay { color: var(--clay); }
.panel .quote { color: var(--cream); }
.panel .quote .clay { color: #e9b487; }

/* ============================================================
   SWATCH SERVICE / STORYBLOCK
   ============================================================ */
.storyblock { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.storyblock.flip .sb-media { order: 2; }
@media (max-width: 860px){ .storyblock { grid-template-columns: 1fr; } .storyblock.flip .sb-media { order: 0; } }
.sb-media img { border-radius: 6px; box-shadow: var(--shadow-lift); aspect-ratio: 4/3; object-fit: cover; border: 6px solid var(--cream); transform: rotate(-1deg); }
.sb-media.tall img { aspect-ratio: 4/5; }

/* Numbered steps */
.steps { display:grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; counter-reset: step; }
@media (max-width: 860px){ .steps { grid-template-columns: 1fr; } }
.step { background: var(--cream); border: 1px solid var(--line); border-radius: 6px; padding: 1.6rem 1.5rem; box-shadow: var(--shadow); position: relative; }
.step .num { font-family: var(--serif); font-size: 2.4rem; color: var(--clay); line-height: 1; display: block; margin-bottom: .6rem; }
.step h3 { margin-bottom: .4rem; }
.step p { font-size: .95rem; margin: 0; }

/* ============================================================
   CATALOGUE
   ============================================================ */
.cat-toolbar { display:flex; flex-wrap: wrap; gap: .6rem; align-items: center; justify-content: center; margin-bottom: 2.5rem; }
.chip {
  font-family: var(--sans); font-weight: 600; font-size: .88rem;
  padding: .55rem 1.1rem; border-radius: 100px; cursor: pointer;
  background: var(--cream); border: 1.5px solid var(--line); color: var(--ink-soft);
  transition: all .2s var(--ease);
}
.chip:hover { border-color: var(--ink); }
.chip[aria-pressed="true"] { background: var(--forest); color: var(--cream); border-color: var(--forest); }

.cat-group { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.cat-group-head { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.6rem; padding-bottom: .8rem; border-bottom: 2px solid var(--line); }
.cat-group-head h2 { margin: 0; }
.cat-group-head .count { font-family: var(--sans); font-size: .85rem; color: var(--muted); font-weight: 600; letter-spacing: .03em; }

.cat-category { margin-bottom: 2.4rem; }
.cat-category > h3 { display: flex; align-items: baseline; gap: .6rem; margin-bottom: 1rem; }
.cat-category > h3 .n { font-family: var(--sans); font-size: .8rem; color: var(--muted); font-weight: 600; }

.swatch-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(168px, 1fr)); gap: 1.1rem; }
.swatch {
  background: var(--cream); border: 1px solid var(--line); border-radius: 6px; overflow: hidden;
  box-shadow: var(--shadow); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex; flex-direction: column;
}
.swatch:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.swatch .ph { aspect-ratio: 1/1; overflow: hidden; background: var(--paper-dark); position: relative; }
.swatch .ph::after { content:""; position:absolute; inset:0; box-shadow: inset 0 0 0 1px rgba(43,37,32,.05); pointer-events:none; }
.swatch img { width:100%; height:100%; object-fit: cover; }
.swatch .s-body { padding: .7rem .8rem .85rem; display:flex; flex-direction: column; gap: .55rem; flex: 1; }
.swatch .s-name { font-family: var(--serif); font-size: .98rem; color: var(--ink); font-weight: 600; line-height: 1.15; }
.swatch .s-ref { font-family: var(--sans); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.swatch .req {
  margin-top: auto; font-family: var(--sans); font-weight: 600; font-size: .8rem;
  background: var(--paper-deep); color: var(--clay-deep); border: 1px solid var(--line);
  border-radius: 100px; padding: .5rem .7rem; cursor: pointer; text-align: center;
  display:inline-flex; align-items:center; justify-content:center; gap:.4rem;
  transition: all .2s var(--ease);
}
.swatch .req:hover { background: var(--clay); color: #fff; border-color: var(--clay); }
.swatch .req svg { width: 14px; height: 14px; }

.cat-empty { text-align:center; color: var(--muted); padding: 3rem 0; font-family: var(--serif); font-size: 1.2rem; }

/* ============================================================
   MODAL (swatch request)
   ============================================================ */
.modal-scrim {
  position: fixed; inset: 0; background: rgba(43,37,32,.55); backdrop-filter: blur(3px);
  display: none; align-items: center; justify-content: center; padding: 1.2rem; z-index: 300;
}
.modal-scrim.open { display: flex; animation: fade .25s var(--ease); }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--cream); border-radius: 10px; max-width: 460px; width: 100%;
  padding: 1.8rem 1.7rem 1.9rem; box-shadow: var(--shadow-lift); position: relative;
  border: 1px solid var(--line);
}
.modal::before { content:""; position:absolute; inset: 6px; border: 1px solid var(--line-soft); border-radius: 6px; pointer-events:none; }
.modal h3 { margin-bottom: .3rem; }
.modal .m-ref { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--clay); font-weight: 700; margin-bottom: 1rem; }
.modal p { font-size: .95rem; margin-bottom: 1.2rem; }
.modal .m-actions { display: grid; gap: .6rem; }
.modal .m-close { position: absolute; top: .7rem; right: .8rem; background: none; border: none; font-size: 1.6rem; line-height: 1; color: var(--muted); cursor: pointer; padding: .2rem .4rem; z-index: 2; }
.modal .m-close:hover { color: var(--ink); }
.modal .m-thumb { width: 64px; height: 64px; border-radius: 6px; object-fit: cover; border: 3px solid var(--paper); float: left; margin: 0 1rem .4rem 0; box-shadow: var(--shadow); }
.modal .m-actions .btn { width: 100%; justify-content: center; }
.modal .m-tel-row { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.modal .m-tel-row .btn { width: 100%; }
@media (max-width: 380px){ .modal .m-tel-row { grid-template-columns: 1fr; } }
.modal .m-foot { font-size: .82rem; color: var(--muted); margin: 1.1rem 0 0; }

/* Catalogue group blurb */
.cat-group-blurb { max-width: 60ch; color: var(--muted); margin: -.6rem 0 1.8rem; font-size: 1rem; }
.cat-group-blurb { font-family: var(--serif); }

/* Loading state */
.cat-loading { text-align:center; color: var(--muted); padding: 4rem 0; font-family: var(--serif); font-size: 1.2rem; }
.cat-loading::after { content:""; display:block; width: 34px; height: 34px; margin: 1.2rem auto 0; border: 3px solid var(--line); border-top-color: var(--clay); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce){ .cat-loading::after { animation: none; } }

/* ============================================================
   GUIDES
   ============================================================ */
.guide-feature { display:grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.5rem,4vw,3rem); align-items:center; background: var(--cream); border:1px solid var(--line); border-radius:8px; overflow:hidden; box-shadow: var(--shadow); margin-bottom: 3rem; }
@media (max-width:780px){ .guide-feature { grid-template-columns:1fr; } }
.guide-feature .gf-media { aspect-ratio: 16/11; overflow:hidden; }
.guide-feature .gf-media img { width:100%; height:100%; object-fit:cover; }
.guide-feature .gf-body { padding: clamp(1.5rem,3vw,2.5rem); }

.guide-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
@media (max-width: 920px){ .guide-grid { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 600px){ .guide-grid { grid-template-columns: 1fr;} }
.guide-card { display:flex; flex-direction:column; background: var(--cream); border:1px solid var(--line); border-radius:6px; padding: 1.4rem 1.4rem 1.5rem; box-shadow: var(--shadow); text-decoration:none; color: var(--ink); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.guide-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); color: var(--ink); }
.guide-card .tag { font-family: var(--sans); font-size:.72rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color: var(--clay); margin-bottom:.7rem; }
.guide-card h3 { font-size: 1.22rem; margin-bottom:.5rem; }
.guide-card p { font-size:.92rem; color: var(--muted); margin:0 0 1rem; }
.guide-card .read { margin-top:auto; font-family:var(--sans); font-weight:600; font-size:.85rem; color: var(--clay-deep); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 820px; margin-inline:auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width:100%; text-align:left; background:none; border:none; cursor:pointer; padding: 1.3rem .2rem; display:flex; justify-content:space-between; align-items:center; gap:1rem; font-family: var(--serif); font-size: clamp(1.1rem,2.2vw,1.35rem); color: var(--ink); font-weight:600; }
.faq-q:hover { color: var(--clay-deep); }
.faq-q .pm { flex-shrink:0; width:26px; height:26px; position:relative; }
.faq-q .pm::before, .faq-q .pm::after { content:""; position:absolute; background: var(--clay); border-radius:2px; top:50%; left:50%; transform: translate(-50%,-50%); transition: transform .3s var(--ease); }
.faq-q .pm::before { width:14px; height:2px; }
.faq-q .pm::after { width:2px; height:14px; }
.faq-q[aria-expanded="true"] .pm::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a { overflow:hidden; max-height:0; transition: max-height .35s var(--ease); }
.faq-a-inner { padding: 0 .2rem 1.4rem; }
.faq-a p { font-size: 1rem; }

/* ============================================================
   VISIT / STORES
   ============================================================ */
.stores { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(1.4rem,3vw,2.2rem); }
@media (max-width:780px){ .stores { grid-template-columns:1fr; } }
.store-card { background: var(--cream); border:1px solid var(--line); border-radius:8px; padding: clamp(1.6rem,3vw,2.4rem); box-shadow: var(--shadow); }
.store-card h3 { font-size: 1.7rem; margin-bottom:.3rem; }
.store-card .loc { color: var(--clay); font-weight:600; font-family:var(--sans); font-size:.85rem; letter-spacing:.1em; text-transform:uppercase; margin-bottom:1.2rem; }
.store-card dl { margin:0 0 1.4rem; }
.store-card dt { font-family:var(--sans); font-weight:700; font-size:.72rem; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); margin-top:1rem; }
.store-card dd { margin:0; font-size:1.05rem; color: var(--ink); }
.store-card dd a { color: var(--ink); text-decoration:none; }
.store-card dd a:hover { color: var(--clay-deep); }

.order-ways { display:grid; grid-template-columns: repeat(2,1fr); gap:1.2rem; }
@media (max-width:600px){ .order-ways { grid-template-columns:1fr; } }
.order-way { background:var(--cream); border:1px solid var(--line); border-radius:6px; padding:1.3rem 1.4rem; box-shadow: var(--shadow); }
.order-way .ico { width:38px; height:38px; color:var(--clay); margin-bottom:.7rem; }
.order-way h3 { font-size:1.15rem; margin-bottom:.3rem; }
.order-way p { font-size:.92rem; margin:0 0 .7rem; color:var(--muted); }

/* ============================================================
   STORY PAGE
   ============================================================ */
.gen-timeline { display:grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.4rem,3vw,2.2rem); }
@media (max-width:860px){ .gen-timeline { grid-template-columns:1fr; } }
.gen { background: var(--cream); border:1px solid var(--line); border-radius:8px; padding: clamp(1.6rem,3vw,2.2rem); box-shadow: var(--shadow); position:relative; }
.gen .roman { font-family: var(--serif); font-size: 1rem; letter-spacing:.2em; color: var(--clay); font-weight:600; margin-bottom: .8rem; text-transform:uppercase; }
.gen h3 { margin-bottom:.6rem; }
.gen p { font-size:.98rem; margin:0; }

.story-hero { position:relative; }
.story-hero img { width:100%; aspect-ratio: 16/8; object-fit:cover; border-radius:8px; box-shadow: var(--shadow-lift); border:6px solid var(--cream); }

.ribbon { display:grid; grid-template-columns: repeat(4,1fr); gap:1.4rem; text-align:center; }
@media (max-width:680px){ .ribbon { grid-template-columns: repeat(2,1fr); } }
.ribbon .stat .big { font-family: var(--serif); font-size: clamp(2rem,5vw,3.2rem); color: var(--clay); line-height:1; }
.panel .ribbon .stat .big { color:#e9b487; }
.ribbon .stat .lbl { font-family:var(--sans); font-size:.82rem; letter-spacing:.08em; text-transform:uppercase; color:var(--muted); font-weight:600; margin-top:.5rem; }
.panel .ribbon .stat .lbl { color:#cdbf9f; }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip { text-align:center; }
.cta-strip .lede { margin: 1rem auto 2rem; }
.cta-actions { display:flex; gap:.8rem; justify-content:center; flex-wrap:wrap; }

/* Inline note / callout */
.note { background: var(--paper-deep); border-left: 4px solid var(--clay); border-radius: 0 6px 6px 0; padding: 1.1rem 1.3rem; font-size: .98rem; }
.note strong { color: var(--ink); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: #d8ccba; padding-block: clamp(3rem,6vw,4.5rem) 2rem; margin-top: 2rem; }
.footer-grid { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; margin-bottom: 2.5rem; }
@media (max-width:780px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width:480px){ .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--cream); font-family:var(--sans); font-size:.78rem; letter-spacing:.16em; text-transform:uppercase; font-weight:700; margin-bottom:1rem; }
.site-footer a { color:#d8ccba; text-decoration:none; }
.site-footer a:hover { color: #fff; }
.footer-brand .brand-name { color: var(--cream); }
.footer-brand p { font-size:.92rem; color:#b8ab98; margin-top:.8rem; max-width: 34ch; }
.footer-links { list-style:none; padding:0; display:flex; flex-direction:column; gap:.6rem; font-size:.95rem; }
.footer-bottom { border-top:1px solid #463d33; padding-top:1.5rem; display:flex; flex-wrap:wrap; justify-content:space-between; gap:1rem; font-size:.82rem; color:#9c8f7c; }
.footer-bottom .demo { color:#c9a06f; font-style:italic; }
.footer-brand .brand img { width:42px; height:42px; }

/* utility */
.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.6rem}.mt-4{margin-top:2.4rem}
.mb-0{margin-bottom:0}
.txt-center{text-align:center}
.maxw-prose{max-width:62ch}
.visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0}

/* reveal on scroll */
.reveal { opacity:0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity:1; transform:none; } }
