/* ---------- Tokens ---------- */
:root {
  --paper:        #F4EBDC;
  --paper-deep:   #ECDFCB;
  --paper-warm:   #EFE2CD;
  --bark:         #2E2A26;
  --bark-soft:    #4A4239;
  --terracotta:   #C9846B;
  --terracotta-d: #B06853;
  --sage:         #8FA088;
  --sage-d:       #6E8068;
  --sage-deep:    #4F6049;
  --bluegum:      #6F8499;
  --rose:         #DCA690;
  --gold:         #D9A86C;
  --hairline:     rgba(46,42,38,0.18);

  --max:          1280px;
  --pad:          clamp(20px, 4vw, 64px);
  --gap:          clamp(16px, 2vw, 28px);

  --r-pill:       999px;

  --t-fast:       180ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --t-base:       320ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --t-slow:       600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body, p, h1, h2, h3, h4, h5, h6, ul, ol, blockquote, figure { margin: 0; padding: 0; }
ul { list-style: none; }
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
hr { border: 0; }

/* ---------- Type ---------- */
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(15px, 1.05vw + 0.6rem, 17px);
  line-height: 1.65;
  color: var(--bark);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "liga" 1, "kern" 1;
  overflow-x: hidden;
}

.display, .display-italic, h1, h2, h3 {
  font-family: 'Fraunces', 'Times New Roman', serif;
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 360;
  letter-spacing: -0.012em;
  line-height: 1.05;
  color: var(--bark);
}
.display-italic, h1.hero-headline {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 320;
}

h2 { font-size: clamp(32px, 4.4vw, 60px); }
h3 { font-size: clamp(26px, 3vw, 40px); }
h2 + .lede,
.section-head .lede {
  margin-top: 18px;
  max-width: 56ch;
  color: var(--bark-soft);
  font-size: clamp(16px, 1.1vw + 0.5rem, 19px);
  line-height: 1.55;
}

p { color: var(--bark-soft); }
em { font-style: italic; }
strong { font-weight: 600; color: var(--bark); }

.eyebrow {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 14, "SOFT" 50, "wght" 500;
  font-feature-settings: "smcp" 1, "c2sc" 1;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.18em;
  font-size: 13px;
  color: var(--sage-deep);
  text-transform: uppercase;
}
.eyebrow-light {
  color: var(--paper);
  font-size: 13px;
  letter-spacing: 0.22em;
  font-variation-settings: "opsz" 14, "SOFT" 50, "wght" 500;
  display: inline-block;
  padding: 7px 14px 6px;
  background: rgba(20,18,16,0.62);
  border: 1px solid rgba(244,235,220,0.18);
  border-radius: 99px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

::selection {
  background: var(--terracotta);
  color: var(--paper);
}

a { transition: color var(--t-fast); }

/* ---------- Skip link ---------- */
.skip {
  position: absolute;
  left: -1000px;
  top: 0;
  background: var(--bark);
  color: var(--paper);
  padding: 12px 20px;
  z-index: 1000;
}
.skip:focus { left: 12px; top: 12px; }

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

main > section { position: relative; }

/* ---------- Stitched divider ---------- */
.stitched {
  height: 1px;
  background-image: repeating-linear-gradient(
    to right,
    var(--sage-d) 0 12px,
    transparent 12px 22px
  );
  margin: clamp(48px, 6vw, 80px) 0;
  width: 100%;
  opacity: 0.7;
  transform-origin: left center;
}
.stitched-cream {
  background-image: repeating-linear-gradient(
    to right,
    rgba(244,235,220,0.35) 0 12px,
    transparent 12px 22px
  );
  opacity: 1;
}
@media (prefers-reduced-motion: no-preference) {
  .stitched { transform: scaleX(0); transition: transform 1100ms cubic-bezier(0.6, 0.05, 0.2, 1); }
  .stitched.is-in { transform: scaleX(1); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 28px 16px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14.5px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-feature-settings: "ss01" 1;
  transition: transform var(--t-fast), background var(--t-base), color var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  will-change: transform;
  white-space: nowrap;
  position: relative;
}
.btn span[aria-hidden] {
  font-size: 16px;
  transition: transform var(--t-base);
}
.btn:hover span[aria-hidden] { transform: translateX(3px); }
.btn-primary {
  background: var(--terracotta);
  color: var(--paper);
  box-shadow: 0 2px 0 0 var(--terracotta-d);
}
.btn-primary:hover {
  background: var(--terracotta-d);
  transform: translateY(-1px);
  box-shadow: 0 3px 0 0 var(--bark);
}
.btn-primary:active { transform: translateY(1px); box-shadow: 0 0 0 0 var(--terracotta-d); }
.btn-secondary {
  background: transparent;
  color: var(--bark);
  border: 1px solid var(--bark);
}
.btn-secondary:hover {
  background: var(--bark);
  color: var(--paper);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(244,235,220,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: var(--paper);
  color: var(--bark);
  border-color: var(--paper);
  transform: translateY(-1px);
}

.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--terracotta);
  display: inline-block;
  position: relative;
}
.dot::after {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%;
  background: var(--terracotta);
  opacity: 0.45;
  animation: pulseDot 2200ms cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulseDot {
  0%   { transform: scale(0.6); opacity: 0.45; }
  60%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .dot::after { animation: none; }
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px var(--pad);
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base);
}
.nav.is-scrolled {
  border-bottom-color: var(--hairline);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  flex: 0 0 auto;
}
.brand img {
  width: 48px; height: 48px;
  border-radius: 50%;
  transition: transform 30s linear;
}
.brand:hover img { transform: rotate(8deg); }
.brand-text {
  display: flex; flex-direction: column; justify-content: center;
  line-height: 1;
  gap: 0;
}
.brand-name {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 500;
  font-style: italic;
  font-size: 22px;
  line-height: 1;
  color: var(--bark);
}
.brand-sub {
  font-family: 'Fraunces', serif;
  font-feature-settings: "smcp" 1, "c2sc" 1;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.22em;
  font-size: 11px;
  line-height: 1;
  margin-top: 2px;
  color: var(--sage-deep);
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  margin-left: auto;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 10px; right: 10px;
  height: 1.5px;
  background: var(--bark);
  transition: transform var(--t-base), opacity var(--t-base), top var(--t-base);
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

.nav-menu {
  display: flex; align-items: center; gap: 28px;
  margin-left: auto;
}
.nav-links {
  display: flex; gap: 26px;
}
.nav-links a {
  font-size: 14.5px;
  letter-spacing: 0.02em;
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 1px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--t-base);
}
.nav-links a:hover { color: var(--terracotta-d); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  display: flex; align-items: center; gap: 10px;
}
.shop-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px 9px;
  background: var(--terracotta);
  color: var(--paper);
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 0 0 var(--terracotta-d);
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-base);
}
.shop-pill span[aria-hidden] {
  font-size: 14px;
  transition: transform var(--t-base);
}
.shop-pill:hover {
  background: var(--terracotta-d);
  transform: translateY(-1px);
  box-shadow: 0 3px 0 0 var(--bark);
}
.shop-pill:hover span[aria-hidden] { transform: translateX(3px); }
.shop-pill:active { transform: translateY(1px); box-shadow: 0 0 0 0 var(--terracotta-d); }

@media (max-width: 980px) {
  .nav-toggle { display: block; margin-left: auto; }
  .nav-menu {
    position: fixed;
    top: 78px; left: 0; right: 0;
    height: calc(100vh - 78px);
    height: calc(100dvh - 78px);
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding: 36px var(--pad);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.32s ease, transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0s linear 0.32s;
    border-top: 1px solid var(--hairline);
    overflow-y: auto;
    z-index: 90;
  }
  .nav-menu.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.32s ease, transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0s;
  }
  .nav-links { flex-direction: column; gap: 18px; width: 100%; }
  .nav-links a { font-size: 22px; font-family: 'Fraunces', serif; font-style: italic; }
  .nav-cta { flex-direction: column; align-items: stretch; gap: 12px; width: 100%; }
  .shop-pill { justify-content: center; padding: 14px 18px; font-size: 13px; letter-spacing: 0.08em; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  padding: clamp(120px, 14vh, 180px) var(--pad) clamp(80px, 12vh, 140px);
  overflow: hidden;
  isolation: isolate;
}
.hero-photo {
  position: absolute; inset: 0;
  z-index: -2;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(1.06) contrast(1.02) brightness(0.78);
  transform: scale(1.06);
}
@media (prefers-reduced-motion: no-preference) {
  .hero-photo img {
    animation: kenburns 22s ease-out forwards;
  }
}
@keyframes kenburns {
  0%   { transform: scale(1.06); }
  100% { transform: scale(1.16); }
}
.hero-grain {
  position: absolute; inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.18  0 0 0 0 0.16  0 0 0 0 0.14  0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
  background-size: 180px 180px;
  opacity: 0.18;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.hero-vignette {
  position: absolute; inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(20,18,16,0.05) 0%, rgba(20,18,16,0.0) 35%, rgba(20,18,16,0.30) 75%, rgba(20,18,16,0.62) 100%);
  pointer-events: none;
}
@media (max-width: 720px) {
  .hero-vignette {
    background: linear-gradient(180deg, rgba(20,18,16,0.10) 0%, rgba(20,18,16,0.0) 30%, rgba(20,18,16,0.40) 75%, rgba(20,18,16,0.70) 100%);
  }
}

.hero-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 70vh;
  color: var(--paper);
}
.hero-headline {
  font-size: clamp(38px, 7.5vw, 110px);
  line-height: 1.02;
  letter-spacing: -0.018em;
  color: var(--paper);
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 360;
  font-style: italic;
  max-width: 16ch;
  margin-top: 22px;
  text-shadow: 0 2px 22px rgba(46,42,38,0.55), 0 1px 3px rgba(46,42,38,0.45);
}
.hero-headline .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: baseline;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-headline .word { opacity: 0; transform: translateY(0.55em); }
  .hero-headline.is-revealed .word {
    opacity: 1;
    transform: translateY(0);
    transition: transform 720ms cubic-bezier(0.18, 0.7, 0.2, 1), opacity 720ms cubic-bezier(0.18, 0.7, 0.2, 1);
  }
}
.hero-sub {
  margin-top: 22px;
  max-width: 48ch;
  font-size: clamp(16px, 1.1vw + 0.4rem, 19px);
  line-height: 1.55;
  color: var(--paper);
  text-shadow: 0 1px 8px rgba(46,42,38,0.55), 0 1px 2px rgba(46,42,38,0.4);
}
.hero-trust {
  margin-top: 22px;
  display: flex; align-items: center; gap: 14px;
  font-size: 16px;
  color: var(--paper);
  flex-wrap: wrap;
  text-shadow: 0 1px 6px rgba(46,42,38,0.5);
}
.stars {
  letter-spacing: 0.06em;
  color: var(--gold);
  font-size: 17px;
}
.hero-cta {
  margin-top: 32px;
  display: flex; gap: 14px; flex-wrap: wrap;
}

.hero-margin {
  position: absolute;
  right: var(--pad);
  bottom: clamp(70px, 9vh, 110px);
  font-size: clamp(16px, 1.2vw + 0.4rem, 20px);
  color: var(--paper);
  max-width: 16ch;
  text-align: right;
  font-style: italic;
  border-top: 1px dashed rgba(244,235,220,0.6);
  padding-top: 10px;
  text-shadow: 0 1px 6px rgba(46,42,38,0.55);
  display: none;
}
@media (min-width: 980px) {
  .hero-margin { display: block; }
}

.reveal { opacity: 0; transform: translateY(14px); transition: opacity var(--t-slow), transform var(--t-slow); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

.hero-scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(244,235,220,0.7);
  font-family: 'Fraunces', serif;
  font-feature-settings: "smcp" 1, "c2sc" 1;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.3em;
  font-size: 11px;
}
.hero-scroll-cue span {
  width: 1px; height: 38px;
  background: linear-gradient(to bottom, transparent, rgba(244,235,220,0.7));
  animation: cueDrift 1800ms cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes cueDrift {
  0% { transform: scaleY(0); transform-origin: top; }
  60% { transform: scaleY(1); transform-origin: top; }
  60.001% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--paper);
  padding: 22px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
}
.marquee-track {
  display: inline-flex;
  gap: 28px;
  white-space: nowrap;
  font-family: 'Fraunces', serif;
  font-feature-settings: "smcp" 1, "c2sc" 1;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.22em;
  font-size: 14px;
  color: var(--sage-deep);
  animation: marquee 42s linear infinite;
}
.marquee-track > span { display: inline-block; }
.marquee .dia { color: var(--terracotta); font-variant-caps: normal; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- Section heads ---------- */
section { padding: clamp(64px, 10vh, 140px) 0; }
/* rhythm: alternate generous + tight bands */
.collections   { padding: clamp(96px, 13vh, 160px) 0; }
.bestsellers   { padding: clamp(64px, 8vh, 100px) 0; }
.field-notes   { padding: clamp(96px, 13vh, 160px) 0; }
.mid-cta       { padding: clamp(56px, 7vh, 96px) 0; }
.story         { padding: clamp(96px, 13vh, 160px) 0; }
.reviews       { padding: clamp(80px, 11vh, 130px) 0; }
.faq           { padding: clamp(72px, 10vh, 120px) 0; }
.section-head {
  max-width: 720px;
  margin-bottom: clamp(40px, 6vh, 72px);
}
.section-head .eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--terracotta);
}
.section-head h2 { color: var(--bark); }

/* ---------- Collections ---------- */
.collections {
  background: var(--paper);
  position: relative;
}

.chapter {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  position: relative;
}
.chapter[data-orient="right"] {
  grid-template-columns: 5fr 7fr;
}
.chapter[data-orient="right"] .chapter-photo { order: 2; }
.chapter[data-orient="right"] .chapter-text { order: 1; }

.chapter-photo {
  position: relative;
  aspect-ratio: 5/4;
  overflow: hidden;
  background: var(--paper-deep);
  border-radius: 2px;
  isolation: isolate;
}
.chapter-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(0.96) brightness(1.02) sepia(0.04);
  transition: transform 1200ms cubic-bezier(0.18, 0.7, 0.2, 1);
}
.chapter:hover .chapter-photo img { transform: scale(1.04); }

.numeral {
  position: absolute;
  bottom: -0.18em;
  font-size: clamp(70px, 11vw, 140px);
  line-height: 1;
  color: var(--paper);
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 280;
  font-style: italic;
  text-shadow: 0 4px 24px rgba(46,42,38,0.4);
  letter-spacing: -0.02em;
  pointer-events: none;
}
.chapter[data-orient="left"] .numeral { right: clamp(20px, 3vw, 40px); }
.chapter[data-orient="right"] .numeral { left: clamp(20px, 3vw, 40px); }

.chapter-text { padding: 14px 0; }
.chapter-text .eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--terracotta);
}
.chapter-text h3 {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 360;
  margin-bottom: 18px;
  letter-spacing: -0.018em;
}
.chapter-text p { margin-bottom: 18px; max-width: 50ch; }
.meta-strip {
  font-family: 'Fraunces', serif;
  font-feature-settings: "smcp" 1, "c2sc" 1;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.2em;
  font-size: 12.5px;
  color: var(--sage-deep);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 14px 0;
  margin: 26px 0 !important;
}

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--terracotta-d);
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  transition: gap var(--t-base), border-color var(--t-base), color var(--t-base);
}
.link-arrow:hover {
  gap: 16px;
  border-bottom-color: var(--terracotta-d);
  color: var(--bark);
}

@media (max-width: 880px) {
  .chapter, .chapter[data-orient="right"] {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .chapter[data-orient="right"] .chapter-photo { order: 0; }
  .chapter[data-orient="right"] .chapter-text { order: 1; }
  .numeral { font-size: clamp(54px, 14vw, 96px); }
}

/* ---------- Field notes ---------- */
.field-notes {
  background: var(--paper-warm);
  position: relative;
}
.field-notes::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.18  0 0 0 0 0.14  0 0 0 0 0.10  0 0 0 0.4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.45'/></svg>");
  background-size: 180px 180px;
  opacity: 0.35;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.field-notes > .container { position: relative; z-index: 1; }

.journal-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(16px, 1.6vw, 28px);
  grid-auto-flow: dense;
}
.tile {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  grid-column: span 2;
  aspect-ratio: 4/5;
  border-radius: 2px;
}
.tile-tall { grid-column: span 2; grid-row: span 2; aspect-ratio: 3/5; }
.tile-wide { grid-column: span 4; aspect-ratio: 16/9; }
.tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(0.96) brightness(1.02) sepia(0.04);
  transition: transform 1500ms cubic-bezier(0.18, 0.7, 0.2, 1);
}
.tile:hover img { transform: scale(1.05); }
.tile figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 18px;
  color: var(--paper);
  font-family: 'Fraunces', serif;
  font-size: 13.5px;
  background: linear-gradient(to top, rgba(46,42,38,0.7) 0%, rgba(46,42,38,0) 100%);
  letter-spacing: 0.01em;
}
.tile figcaption .cap-loc {
  font-feature-settings: "smcp" 1, "c2sc" 1;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.18em;
  font-size: 11.5px;
  color: var(--gold);
  margin-right: 6px;
}
@media (max-width: 880px) {
  .journal-grid { grid-template-columns: repeat(2, 1fr); }
  .tile, .tile-tall, .tile-wide { grid-column: span 2; aspect-ratio: 4/5; }
}

/* ---------- Mid CTA ---------- */
.mid-cta { background: var(--paper); }
.mid-cta-inner {
  text-align: center;
  max-width: 760px;
  padding-top: clamp(40px, 6vh, 80px);
  padding-bottom: clamp(40px, 6vh, 80px);
}
.mid-cta-inner .eyebrow {
  display: inline-block;
  margin: 30px 0 12px;
  color: var(--terracotta-d);
}
.mid-cta-inner h2 {
  font-style: italic;
  margin-bottom: 30px;
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 340;
}
.mid-cta-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 30px;
}

/* ---------- Story ---------- */
.story {
  background: var(--paper-deep);
  position: relative;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.story-text .eyebrow { display: block; margin-bottom: 18px; }
.story-text h2 {
  font-style: italic;
  margin-bottom: 28px;
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 350;
  letter-spacing: -0.02em;
}
.story-text p {
  margin-bottom: 18px;
  max-width: 56ch;
  font-size: clamp(16px, 1.1vw + 0.5rem, 19px);
  line-height: 1.6;
}
.story-photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--paper);
  border-radius: 2px;
}
.story-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(0.96) brightness(1.02) sepia(0.04);
}
.story-photo figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px 18px;
  background: linear-gradient(to top, rgba(46,42,38,0.7), transparent);
  color: var(--paper);
  font-family: 'Fraunces', serif;
  font-size: 14px;
}
@media (max-width: 880px) {
  .story-grid { grid-template-columns: 1fr; }
}

/* ---------- Reviews ---------- */
.reviews {
  background: linear-gradient(180deg, rgba(143,160,136,0.18) 0%, rgba(143,160,136,0.10) 100%), var(--paper-warm);
  border-top: 1px solid rgba(143,160,136,0.25);
  border-bottom: 1px solid rgba(143,160,136,0.25);
}
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 40px);
}
.quote {
  background: var(--paper-deep);
  padding: clamp(28px, 3vw, 44px);
  border-radius: 2px;
  position: relative;
  border: 1px solid var(--hairline);
}
.quote::before {
  content: '“';
  position: absolute;
  top: -16px; left: 18px;
  font-family: 'Fraunces', serif;
  font-size: 90px;
  font-style: italic;
  color: var(--terracotta);
  line-height: 1;
}
.quote p {
  font-size: clamp(17px, 1.2vw + 0.4rem, 21px);
  line-height: 1.45;
  color: var(--bark);
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 380;
  margin-bottom: 22px;
}
.quote footer {
  font-size: 13px;
  color: var(--bark-soft);
  letter-spacing: 0.02em;
}
.quote .stars { font-size: 13px; color: var(--terracotta); }
@media (max-width: 880px) {
  .quote-grid { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq { background: var(--paper-warm); }
.faq-list {
  max-width: 880px;
  margin-inline: auto;
  border-top: 1px solid var(--hairline);
}
.faq-item {
  border-bottom: 1px solid var(--hairline);
  padding: 22px 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(18px, 1.4vw + 0.4rem, 24px);
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 380;
  color: var(--bark);
  transition: color var(--t-base);
  padding-right: 8px;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'Fraunces', serif;
  font-style: normal;
  font-size: 26px;
  color: var(--terracotta);
  transition: transform var(--t-base);
  flex: 0 0 auto;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item:hover summary { color: var(--terracotta-d); }
.faq-body {
  padding-top: 14px;
  max-width: 60ch;
}
.faq-body p { font-size: 16.5px; line-height: 1.65; }
.faq-body a { color: var(--terracotta-d); border-bottom: 1px solid currentColor; }

/* ---------- Footer ---------- */
.footer {
  background: var(--bark);
  color: var(--paper);
  padding: clamp(64px, 8vh, 100px) 0 32px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(28px, 3vw, 60px);
  align-items: start;
}
.footer-brand img {
  width: 96px; height: 96px;
  border-radius: 50%;
  filter: saturate(1.05);
}
.footer-tagline {
  margin-top: 16px;
  font-size: 18px;
  color: rgba(244,235,220,0.78);
  max-width: 14ch;
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 360;
}
.footer .eyebrow {
  display: block;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-block p, .footer-block li {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(244,235,220,0.85);
  margin-bottom: 4px;
}
.footer-block a { transition: color var(--t-fast); }
.footer-block a:hover { color: var(--gold); }
.social { display: flex; flex-direction: column; gap: 4px; }
.social a {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 17px;
}
.trust-list li {
  font-feature-settings: "smcp" 1, "c2sc" 1;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.16em;
  font-size: 12.5px;
  color: rgba(244,235,220,0.7);
  padding: 4px 0;
  border-bottom: 1px dashed rgba(244,235,220,0.18);
}
.trust-list li:last-child { border-bottom: 0; }

.footer .stitched-cream { margin: 50px 0 24px; }

.footer-baseline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-baseline small {
  color: rgba(244,235,220,0.55);
  font-size: 12.5px;
  letter-spacing: 0.02em;
}
.footer-baseline a:hover { color: var(--gold); }

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

/* ---------- Bestsellers ---------- */
.bestsellers {
  background: var(--paper);
}
/* (Featured pill on last card removed — was reading too DTC-template) */
.bestsellers .section-head {
  text-align: center;
  margin-bottom: clamp(40px, 5vh, 64px);
}
.bestsellers .section-head h2 {
  font-size: clamp(34px, 3.6vw, 56px);
  line-height: 1.05;
  color: var(--bark);
}
.bestsellers .section-head .lede {
  max-width: 48ch;
  margin: 14px auto 0;
  color: var(--bark-soft);
  font-size: clamp(15px, 1vw + 0.3rem, 17px);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2vw, 36px);
}
.product-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  border-top: 1px solid var(--hairline);
  padding-top: 18px;
  transition: opacity var(--t-base);
}
.product-card:hover { opacity: 0.88; }
.product-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper-warm);
  border-radius: 2px;
}
.product-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.product-card:hover .product-photo img { transform: scale(1.04); }
.product-meta {
  padding: 16px 0 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-meta .eyebrow {
  font-size: 11px;
  color: var(--sage-deep);
}
.product-name {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 380;
  font-size: clamp(18px, 1.4vw + 0.3rem, 22px);
  line-height: 1.2;
  color: var(--bark);
  letter-spacing: -0.01em;
}
.product-card:hover .product-name { color: var(--terracotta-d); }
.product-price {
  font-feature-settings: "smcp" 1, "c2sc" 1, "tnum" 1;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.16em;
  font-size: 12.5px;
  color: var(--bark-soft);
  margin-top: 2px;
}
.product-price strong {
  color: var(--bark);
  font-weight: 600;
}
.product-price em {
  font-feature-settings: "smcp" 0;
  font-variant-caps: normal;
  letter-spacing: 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--bark-soft);
}
@media (max-width: 880px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
/* Stay 2-up on mobile (was 1-up) — comparison shopping needs adjacency */

/* ---------- Price strip on Collection chapters ---------- */
.price-strip {
  font-size: 14px;
  color: var(--bark-soft);
  letter-spacing: 0.02em;
  font-feature-settings: "tnum" 1;
  margin-top: 10px;
  margin-bottom: 14px;
}
.price-strip strong {
  color: var(--bark);
  font-weight: 600;
}

/* ---------- Review meta ---------- */
.review-meta {
  display: inline-block;
  margin-top: 6px;
  font-size: 11.5px;
  color: var(--sage-deep);
  font-feature-settings: "smcp" 1, "c2sc" 1;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.16em;
}

/* ---------- Newsletter ---------- */
.newsletter {
  background: #1f1c19;
  border-bottom: 1px solid rgba(244,235,220,0.08);
  padding: clamp(40px, 6vh, 72px) 0;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 56px);
  align-items: center;
}
.newsletter h2 {
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.15;
  color: var(--paper);
  margin-top: 8px;
  max-width: 22ch;
}
.newsletter .eyebrow {
  color: var(--gold);
}
.newsletter-form {
  display: flex;
  gap: 10px;
  align-items: stretch;
  flex-wrap: wrap;
}
.newsletter-form input[type="email"] {
  flex: 1 1 240px;
  min-width: 0;
  padding: 14px 18px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(244,235,220,0.22);
  background: rgba(244,235,220,0.06);
  color: var(--paper);
  font-family: inherit;
  font-size: 15px;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.newsletter-form input[type="email"]::placeholder {
  color: rgba(244,235,220,0.5);
}
.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--terracotta);
  background: rgba(244,235,220,0.10);
}
.newsletter-form .btn {
  flex: 0 0 auto;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .newsletter-inner { grid-template-columns: 1fr; }
}

/* ---------- Footer legal trio ---------- */
.footer-legal a {
  color: rgba(244,235,220,0.55);
  border-bottom: 1px solid transparent;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.footer-legal a:hover {
  color: var(--gold);
  border-bottom-color: rgba(217,168,108,0.6);
}

/* ---------- Brand-block trust list (footer) ---------- */
.footer-brand .trust-list { margin-top: 22px; }

/* ---------- Screen reader only ---------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Footer truth line (replaces sticker trust list) ---------- */
.footer-truth {
  margin-top: 22px;
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(244,235,220,0.72);
  max-width: 28ch;
  letter-spacing: 0.01em;
}

/* ---------- Mid CTA sub line ---------- */
.mid-cta-sub {
  font-size: clamp(15px, 1vw + 0.3rem, 17px);
  color: var(--bark-soft);
  margin-top: 8px;
  margin-bottom: 28px;
  font-style: italic;
}

/* ---------- Sticky mobile shop bar (price-anchored two-up) ---------- */
.mobile-shop-bar {
  display: none;
}
@media (max-width: 720px) {
  .mobile-shop-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 90;
    padding: 10px var(--pad) calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(244, 235, 220, 0.96);
    backdrop-filter: saturate(120%) blur(12px);
    -webkit-backdrop-filter: saturate(120%) blur(12px);
    border-top: 1px solid var(--hairline);
    transform: translateY(120%);
    transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .mobile-shop-bar.is-visible { transform: translateY(0); }

  .msb-meta {
    flex: 1 1 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 2px 8px;
    min-width: 0;
  }
  .msb-from {
    font-feature-settings: "smcp" 1, "c2sc" 1;
    font-variant-caps: all-small-caps;
    letter-spacing: 0.16em;
    font-size: 11px;
    color: var(--bark-soft);
  }
  .msb-price {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 380;
    font-size: 22px;
    color: var(--bark);
    line-height: 1;
  }
  .msb-trust {
    width: 100%;
    font-size: 11.5px;
    color: var(--bark-soft);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .mobile-shop-bar .btn {
    flex: 0 0 auto;
    padding: 12px 18px;
    font-size: 14px;
  }
  body.has-shop-bar .footer { padding-bottom: 96px; }
}

/* ---------- Hero category chips (3-up below CTAs) ---------- */
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  max-width: 720px;
}
.hero-chip {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 16px 11px;
  background: rgba(244, 235, 220, 0.94);
  border: 1px solid rgba(244, 235, 220, 0.78);
  border-radius: 6px;
  color: var(--bark);
  text-decoration: none;
  transition: background var(--t-fast), transform var(--t-fast), border-color var(--t-fast);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  min-width: 132px;
}
.hero-chip:hover {
  background: var(--paper);
  border-color: var(--paper);
  transform: translateY(-1px);
}
.hero-chip-label {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 400;
  font-size: 17px;
  line-height: 1.05;
  color: var(--bark);
}
.hero-chip-price {
  font-feature-settings: "smcp" 1, "c2sc" 1, "tnum" 1;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: var(--terracotta-d);
}
@media (max-width: 720px) {
  .hero-chips {
    margin-top: 16px;
    gap: 6px;
  }
  .hero-chip {
    flex: 1 1 0;
    min-width: 0;
    padding: 9px 12px 10px;
  }
  .hero-chip-label { font-size: 15px; }
  .hero-chip-price { font-size: 10px; letter-spacing: 0.14em; }
  .hero-cta-ghost { display: none; }   /* single primary CTA on mobile per council #4 */
}
@media (max-width: 360px) {
  .hero-chips { flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x mandatory; }
  .hero-chip { scroll-snap-align: start; flex: 0 0 auto; }
}

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

/* ---------- Misc ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .marquee-track { animation: none !important; }
  .hero-photo img { animation: none !important; transform: scale(1.06); }
}
