:root {
  --ink: #162113;
  --pine: #2e3f29;
  --deep-pine: #162113;
  --moss: #667765;
  --lichen: #b9c4af;
  --mineral: #f8f8f8;
  --cream: #f5ebd8;
  --paper: #f2efe9;
  --sky: #6290c3;
  --clay: #b8805f;
  --line: rgba(20, 35, 29, 0.2);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1380px, calc(100vw - 64px));
  --section-space: clamp(96px, 10vw, 164px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: var(--section-space); }
.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;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--pine);
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

.eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 84px;
  padding-inline: max(32px, calc((100vw - 1380px) / 2));
  color: var(--cream);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: color 250ms ease, background 250ms ease, height 250ms ease, border-color 250ms ease;
}
.site-header.is-scrolled {
  height: 70px;
  color: var(--ink);
  background: rgba(251, 249, 243, 0.92);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.wordmark {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  font-family: var(--serif);
  font-size: 1.12rem;
  letter-spacing: 0.01em;
  line-height: 1;
}
.brand-logo { width: 118px; height: auto; object-fit: contain; }
.site-header:not(.is-scrolled) .brand-logo,
.footer-wordmark .brand-logo { filter: invert(1) grayscale(1) brightness(2.4); mix-blend-mode: screen; }
.site-header.is-scrolled .brand-logo { filter: none; mix-blend-mode: multiply; }
.site-nav { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 34px); }
.site-nav a {
  position: relative;
  font-size: 0.79rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-nav a::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms ease;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.header-shop {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  color: var(--cream);
  background: var(--deep-pine);
}
.hero-media,
.hero-wash,
.hero-grain { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-media { transform: scale(1.015); animation: hero-in 1.6s cubic-bezier(.2,.8,.2,1) both; }
.hero-wash {
  background:
    linear-gradient(90deg, rgba(6, 20, 15, 0.9) 0%, rgba(8, 24, 18, 0.62) 38%, rgba(8, 24, 18, 0.06) 72%),
    linear-gradient(0deg, rgba(4, 15, 11, 0.55) 0%, transparent 45%);
}
.hero-grain {
  opacity: 0.16;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  padding-top: 86px;
  padding-bottom: 110px;
}
.hero-kicker { margin-bottom: 28px; color: rgba(245, 241, 231, 0.72); }
.hero h1 {
  max-width: 900px;
  margin: 0 0 30px;
  font-family: var(--serif);
  font-size: clamp(4rem, 8.4vw, 9rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.82;
  text-wrap: balance;
}
.hero-copy {
  max-width: 610px;
  margin: 0;
  color: rgba(245, 241, 231, 0.82);
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.6vw, 1.45rem);
  line-height: 1.45;
}
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 42px; }
.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 17px 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
  transition: transform 250ms ease, background 250ms ease, color 250ms ease, border-color 250ms ease;
}
.button:hover,
.button:focus-visible { transform: translateY(-3px); }
.button-light { color: var(--pine); background: var(--cream); }
.button-light:hover { color: var(--cream); background: transparent; border-color: rgba(245,241,231,.65); }
.button-dark { color: var(--cream); background: var(--pine); }
.button-dark:hover { color: var(--pine); background: transparent; border-color: var(--pine); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 0.77rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  line-height: 1.1;
  text-transform: uppercase;
}
.text-link span { transition: transform 220ms ease; }
.text-link:hover span { transform: translate(3px, -3px); }
.text-link-light { color: rgba(245, 241, 231, 0.92); }
.hero-ledger {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.hero-ledger span {
  padding: 21px 20px;
  font-size: 0.69rem;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-ledger span:last-child { border-right: 0; }

.intro { background: var(--mineral); }
.intro-grid {
  display: grid;
  grid-template-columns: 0.8fr 2.4fr 0.8fr;
  gap: clamp(30px, 5vw, 88px);
  align-items: start;
}
.intro-copy h2,
.section-heading h2,
.standard h2,
.maker h2,
.closing h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}
.intro-copy h2 {
  max-width: 900px;
  margin: -10px 0 34px;
  font-size: clamp(2.8rem, 5vw, 5.6rem);
}
.intro-copy > p {
  max-width: 710px;
  margin: 0 0 0 auto;
  color: rgba(20, 35, 29, 0.72);
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.6;
}
.intro-seal {
  display: grid;
  aspect-ratio: 1;
  align-content: center;
  justify-items: center;
  border: 1px solid rgba(20, 35, 29, 0.32);
  border-radius: 50%;
  transform: rotate(8deg);
}
.intro-seal strong { font-family: var(--serif); font-size: 3rem; font-weight: 400; line-height: 1; }
.intro-seal span { font-size: 0.57rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }

.forest-film {
  position: relative;
  display: flex;
  min-height: min(82svh, 880px);
  align-items: end;
  overflow: hidden;
  color: var(--cream);
  background: var(--deep-pine);
}
.forest-film-media,
.forest-film-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.forest-film-media { object-fit: cover; }
.forest-film-shade { background: linear-gradient(90deg, rgba(22,33,19,.8), rgba(22,33,19,.08) 72%), linear-gradient(0deg, rgba(22,33,19,.66), transparent 62%); }
.forest-film-content { position: relative; z-index: 2; padding-bottom: clamp(58px, 8vw, 108px); }
.forest-film-content h2 { max-width: 840px; margin: 24px 0 28px; font-family: var(--serif); font-size: clamp(3.5rem, 6.5vw, 7rem); font-weight: 400; letter-spacing: -.05em; line-height: .92; }
.forest-film-content > span { color: rgba(245,235,216,.7); font-family: var(--serif); font-size: 1.1rem; }

.value-offers { color: var(--cream); background: var(--deep-pine); }
.value-offers-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(48px, 9vw, 150px);
  align-items: end;
  margin-bottom: 60px;
}
.value-offers-heading h2 {
  max-width: 850px;
  margin: 20px 0 0;
  font-size: clamp(3.4rem, 6vw, 7rem);
  line-height: .9;
}
.value-offers-heading > p {
  max-width: 560px;
  margin: 0;
  color: rgba(245, 241, 231, .68);
  font-family: var(--serif);
  font-size: clamp(1.04rem, 1.4vw, 1.25rem);
  line-height: 1.6;
}
.value-offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(245, 241, 231, .2);
  border-bottom: 1px solid rgba(245, 241, 231, .2);
}
.value-offer {
  display: grid;
  min-height: 350px;
  align-content: space-between;
  padding: clamp(28px, 3.4vw, 50px);
  border-right: 1px solid rgba(245, 241, 231, .2);
  transition: color 250ms ease, background 250ms ease;
}
.value-offer:last-child { border-right: 0; }
.value-offer > span {
  color: rgba(245, 241, 231, .55);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.value-offer strong {
  margin-top: 36px;
  color: var(--lichen);
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 4.7rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: 1;
}
.value-offer h3 { max-width: 360px; margin: 18px 0 48px; font-family: var(--serif); font-size: clamp(1.65rem, 2.4vw, 2.8rem); font-weight: 400; line-height: 1.08; }
.value-offer small { display: flex; justify-content: space-between; gap: 20px; color: rgba(245, 241, 231, .58); font-size: .7rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.value-offer i { font-size: 1rem; font-style: normal; transition: transform 220ms ease; }
.value-offer:hover,
.value-offer:focus-visible { color: var(--ink); background: var(--lichen); }
.value-offer:hover > span,
.value-offer:hover small,
.value-offer:focus-visible > span,
.value-offer:focus-visible small { color: rgba(20, 35, 29, .66); }
.value-offer:hover strong,
.value-offer:focus-visible strong { color: var(--pine); }
.value-offer:hover i,
.value-offer:focus-visible i { transform: translateX(5px); }
.value-offers-note { margin-top: 24px; color: rgba(245, 241, 231, .52); font-size: .72rem; letter-spacing: .04em; }
.value-offers-shop { background: var(--pine); }

.rituals { background: var(--paper); }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 56px;
}
.section-heading h2 { margin: 18px 0 0; font-size: clamp(3rem, 5.2vw, 6rem); }
.collection-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  grid-template-rows: repeat(2, minmax(290px, 34vw));
  gap: 12px;
}
.collection-card {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 290px;
  color: var(--cream);
  background: var(--pine);
}
.collection-card-feature { grid-row: 1 / 3; }
.collection-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms cubic-bezier(.2,.8,.2,1); }
.collection-card:hover img { transform: scale(1.035); }
.collection-card-feature img { object-position: 50% 46%; }
.card-tallow img { object-position: 54% 50%; }
.card-lips img { object-position: 50% 42%; }
.card-salts img { object-position: 50% 56%; }
.collection-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5,18,13,.84), transparent 62%), linear-gradient(180deg, rgba(5,18,13,.32), transparent 30%);
}
.collection-index {
  position: absolute;
  top: 26px;
  left: 26px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.collection-index i { width: 7px; height: 7px; border-radius: 50%; background: #c9ef8c; box-shadow: 0 0 0 4px rgba(201,239,140,.15); }
.collection-label { position: absolute; bottom: 28px; left: 28px; display: grid; max-width: calc(100% - 110px); gap: 6px; }
.collection-label > span { font-family: var(--serif); font-size: clamp(2rem, 3vw, 3.6rem); line-height: 1; }
.collection-card:not(.collection-card-feature) .collection-label > span { font-size: clamp(1.7rem, 2.35vw, 2.75rem); }
.collection-label small { color: rgba(245, 241, 231, 0.72); font-size: 0.75rem; letter-spacing: 0.08em; }
.collection-arrow {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(245, 241, 231, 0.45);
  border-radius: 50%;
  transition: background 250ms ease, color 250ms ease, transform 250ms ease;
}
.collection-card:hover .collection-arrow { color: var(--pine); background: var(--cream); transform: rotate(8deg); }
.card-tallow { grid-column: 2 / 4; background: #b9c5b0; }
.card-lips { background: var(--sky); }
.card-salts { background: #415d53; }
.botanical-line {
  position: absolute;
  top: 15%;
  right: 10%;
  width: 36%;
  height: 70%;
  border: 1px solid rgba(20, 35, 29, 0.32);
  border-radius: 50% 0 50% 50%;
  transform: rotate(42deg);
}
.botanical-line::before,
.botanical-line::after {
  position: absolute;
  content: "";
  width: 38%;
  height: 22%;
  border: 1px solid rgba(20, 35, 29, 0.32);
  border-radius: 50%;
}
.botanical-line::before { top: 17%; left: -26%; transform: rotate(-35deg); }
.botanical-line::after { right: -24%; bottom: 25%; transform: rotate(35deg); }
.water-rings {
  position: absolute;
  top: 50%;
  left: 54%;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(245, 241, 231, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.water-rings::before,
.water-rings::after { position: absolute; content: ""; inset: 20%; border: inherit; border-radius: inherit; }
.water-rings::after { inset: 39%; }
.topographic {
  position: absolute;
  inset: 18% 13%;
  border: 1px solid rgba(245, 241, 231, 0.2);
  border-radius: 47% 53% 38% 62%;
  transform: rotate(-8deg);
}
.topographic::before,
.topographic::after { position: absolute; content: ""; inset: 12%; border: inherit; border-radius: 55% 45% 57% 43%; }
.topographic::after { inset: 27%; }
.live-catalog { margin-top: 94px; }
.live-catalog-heading { display: flex; justify-content: space-between; gap: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.live-catalog-heading p:last-child { margin: 0; color: rgba(20,35,29,.6); }
.product-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 24px; }
.product-card { display: grid; gap: 14px; }
.product-card-image { position: relative; aspect-ratio: .82; overflow: hidden; background: var(--mineral); }
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.product-card:hover img { transform: scale(1.03); }
.availability {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 8px 10px;
  color: var(--cream);
  border: 1px solid rgba(245,235,216,.25);
  border-radius: 999px;
  background: rgba(22,33,19,.76);
  backdrop-filter: blur(8px);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.availability.is-available { color: var(--ink); border-color: rgba(201,239,140,.7); background: rgba(201,239,140,.9); }
.product-card-copy { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 7px 16px; align-items: start; }
.product-card-copy h3 { margin: 0; font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.product-card-copy span { color: rgba(20,35,29,.62); font-size: .78rem; white-space: nowrap; }
.product-card-copy .product-offer {
  grid-column: 2;
  justify-self: end;
  padding: 5px 8px;
  color: var(--pine);
  border-radius: 999px;
  background: rgba(201, 239, 140, .62);
  font-size: .57rem;
  font-weight: 750;
  letter-spacing: .09em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-showcase { color: var(--ink); background: var(--cream); }
.product-showcase-heading {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: clamp(54px, 9vw, 148px);
  align-items: end;
  margin-bottom: 58px;
}
.product-showcase-heading h2 {
  margin: 22px 0 0;
  font-family: var(--serif);
  font-size: clamp(3.6rem, 6.5vw, 7.2rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .86;
}
.product-showcase-note { max-width: 460px; justify-self: end; }
.product-showcase-note > p {
  margin: 0;
  color: rgba(20, 35, 29, .68);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.6;
}
.product-showcase-note .text-link { margin-top: 28px; }
.product-showcase-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(320px, 26vw));
  gap: 12px;
}
.product-shot {
  position: relative;
  display: block;
  min-height: 300px;
  overflow: hidden;
  color: var(--cream);
  background: var(--pine);
}
.product-shot-feature { grid-column: 1 / 5; grid-row: 1 / 3; }
.product-shot-wide { grid-column: 5 / 10; grid-row: 1; }
.product-shot-small-top { grid-column: 8 / 10; grid-row: 2; }
.product-shot-small-bottom { grid-column: 10 / 13; grid-row: 1 / 3; }
.product-shot-wide-bottom { grid-column: 5 / 8; grid-row: 2; }
.product-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2, .8, .2, 1), filter 500ms ease;
}
.product-shot-feature img { object-position: 50% 52%; }
.product-shot-wide img { object-position: 50% 44%; }
.product-shot-small-top img { object-position: 50% 46%; }
.product-shot-small-bottom img { object-position: 58% 50%; }
.product-shot-wide-bottom img { object-position: 50% 50%; }
.product-shot-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 18, 13, .82) 0%, rgba(5, 18, 13, .06) 62%);
  transition: background 350ms ease;
}
.product-shot-number {
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 8px 10px;
  border: 1px solid rgba(245, 241, 231, .28);
  border-radius: 999px;
  background: rgba(15, 31, 23, .4);
  backdrop-filter: blur(8px);
  font-size: .6rem;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.product-shot-copy {
  position: absolute;
  right: 78px;
  bottom: 24px;
  left: 24px;
  display: grid;
  gap: 5px;
}
.product-shot-copy strong { font-family: var(--serif); font-size: clamp(1.4rem, 2.35vw, 2.8rem); font-weight: 400; line-height: 1; }
.product-shot-feature .product-shot-copy strong { font-size: clamp(2.2rem, 3.5vw, 4rem); }
.product-shot-copy small { color: rgba(245, 241, 231, .7); font-size: .67rem; letter-spacing: .08em; }
.product-shot::after {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 42px;
  height: 42px;
  content: "→";
  place-items: center;
  border: 1px solid rgba(245, 241, 231, .44);
  border-radius: 50%;
  transition: color 250ms ease, background 250ms ease, transform 250ms ease;
}
.product-shot:hover img,
.product-shot:focus-visible img { transform: scale(1.035); filter: saturate(1.05); }
.product-shot:hover::after,
.product-shot:focus-visible::after { color: var(--pine); background: var(--cream); transform: translateX(3px); }

.standard {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  padding-block: 0;
  color: var(--cream);
  background: var(--pine);
}
.standard-image { position: relative; min-height: 820px; }
.standard-image img { width: 100%; height: 100%; object-fit: cover; }
.image-note {
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 10px 14px;
  color: var(--pine);
  background: var(--cream);
  font-size: 0.63rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.standard-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(60px, 8vw, 132px); }
.standard h2 { margin: 24px 0 32px; font-size: clamp(3.5rem, 5vw, 6.2rem); }
.standard-lede { max-width: 560px; margin: 0; color: rgba(245,241,231,.72); font-family: var(--serif); font-size: 1.25rem; line-height: 1.55; }
.principle-list { margin: 58px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(245,241,231,.22); }
.principle-list li { display: grid; grid-template-columns: 52px 1fr; gap: 16px; align-items: start; padding: 24px 0; border-bottom: 1px solid rgba(245,241,231,.22); }
.principle-list li > span { padding-top: 4px; color: rgba(245,241,231,.5); font-size: .7rem; font-weight: 700; letter-spacing: .13em; }
.principle-list div { display: grid; gap: 4px; }
.principle-list strong { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }
.principle-list small { color: rgba(245,241,231,.58); font-size: .82rem; }
.fine-print { max-width: 480px; margin: 28px 0 0; color: rgba(245,241,231,.48); font-size: .73rem; }

.maker { background: var(--cream); }
.maker-grid { display: grid; grid-template-columns: 0.65fr 1.45fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.maker-number { grid-row: 1 / 3; color: var(--sky); font-family: var(--serif); font-size: clamp(13rem, 24vw, 25rem); line-height: .7; opacity: .82; }
.maker-heading { grid-column: 2 / 4; }
.maker h2 { max-width: 970px; margin: 24px 0 52px; font-size: clamp(3.2rem, 5.7vw, 6.6rem); }
.maker-story { grid-column: 2; }
.maker-story p { margin: 0 0 20px; color: rgba(20,35,29,.72); font-family: var(--serif); font-size: 1.17rem; line-height: 1.65; }
.maker-story .text-link { margin-top: 16px; }
.maker-note { padding: 28px 0 0 28px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.maker-note p { margin: 16px 0 0; font-family: var(--serif); font-size: 1.55rem; line-height: 1.4; }

.closing { position: relative; overflow: hidden; min-height: 720px; padding-block: clamp(120px, 14vw, 220px); background: var(--mineral); }
.closing-inner { position: relative; z-index: 2; }
.closing h2 { margin: 26px 0 52px; font-size: clamp(5rem, 10vw, 11rem); line-height: .78; }
.closing-actions { display: flex; align-items: center; gap: 32px; }
.closing-rings {
  position: absolute;
  top: 50%;
  right: -8vw;
  width: min(66vw, 920px);
  aspect-ratio: 1;
  border: 1px solid rgba(20,35,29,.16);
  border-radius: 50%;
  transform: translateY(-50%);
}
.closing-rings::before,
.closing-rings::after { position: absolute; content: ""; border: inherit; border-radius: inherit; }
.closing-rings::before { inset: 15%; }
.closing-rings::after { inset: 32%; }

/* Routed interior pages */
.subpage-body { background: var(--paper); }
.page-hero {
  position: relative;
  display: flex;
  min-height: min(88svh, 900px);
  align-items: end;
  overflow: hidden;
  color: var(--cream);
  background: var(--deep-pine);
}
.page-hero-media,
.page-hero-shade { position: absolute; inset: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-shop .page-hero-media img { object-position: center 52%; }
.page-hero-maker .page-hero-media img { object-position: center 46%; }
.page-hero-contact .page-hero-media img { object-position: center 42%; }
.page-hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 20, 15, .88) 0%, rgba(8, 24, 18, .56) 44%, rgba(8, 24, 18, .12) 78%),
    linear-gradient(0deg, rgba(5, 16, 12, .68) 0%, transparent 58%);
}
.page-hero-shop .page-hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 20, 15, .78) 0%, rgba(8, 24, 18, .42) 48%, rgba(8, 24, 18, .04) 80%),
    linear-gradient(0deg, rgba(5, 16, 12, .52) 0%, transparent 62%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding-block: clamp(178px, 18vw, 258px) clamp(70px, 9vw, 122px);
}
.page-hero h1 {
  max-width: 1050px;
  margin: 24px 0 30px;
  font-family: var(--serif);
  font-size: clamp(4.3rem, 8.2vw, 8.9rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .84;
  text-wrap: balance;
}
.page-hero-content > p:last-of-type {
  max-width: 650px;
  margin: 0;
  color: rgba(245, 241, 231, .82);
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.55vw, 1.42rem);
  line-height: 1.5;
}
.page-hero-content > .button { margin-top: 38px; }

.shop-intro { background: var(--paper); }
.shop-intro-grid {
  display: grid;
  grid-template-columns: .72fr 2fr;
  gap: clamp(42px, 8vw, 128px);
  align-items: start;
}
.shop-intro-copy h2,
.shop-assurance h2,
.editorial-copy h2,
.contact-heading h2,
.contact-shop-copy h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .98;
}
.shop-intro-copy h2 {
  max-width: 980px;
  margin: -10px 0 34px;
  font-size: clamp(3rem, 5.3vw, 6rem);
}
.shop-intro-copy > p {
  max-width: 740px;
  margin: 0;
  color: rgba(20, 35, 29, .7);
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.5vw, 1.32rem);
  line-height: 1.65;
}
.collection-jump {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(58px, 7vw, 100px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.collection-jump a {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.05rem;
  transition: color 220ms ease, background 220ms ease;
}
.collection-jump a:last-child { border-right: 0; }
.collection-jump a:hover,
.collection-jump a:focus-visible { color: var(--cream); background: var(--pine); }
.shop-catalog { background: var(--mineral); }
.shop-catalog .live-catalog { margin-top: 0; }
.catalog-full .product-row { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(18px, 2vw, 30px); }
.catalog-full .product-card-image { aspect-ratio: .82; }
.catalog-noscript { padding: 24px 0 0; color: rgba(20, 35, 29, .68); }
.catalog-noscript a { text-decoration: underline; text-underline-offset: 4px; }
.shop-assurance {
  padding-block: clamp(110px, 13vw, 190px);
  color: var(--cream);
  background: var(--pine);
}
.shop-assurance-inner { max-width: 1160px; }
.shop-assurance h2 {
  max-width: 1050px;
  margin: 26px 0 64px;
  font-size: clamp(3.4rem, 6vw, 7rem);
}
.assurance-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 50px;
  border-top: 1px solid rgba(245, 241, 231, .23);
  border-bottom: 1px solid rgba(245, 241, 231, .23);
}
.assurance-list span {
  padding: 22px 18px;
  border-right: 1px solid rgba(245, 241, 231, .23);
  color: rgba(245, 241, 231, .78);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
}
.assurance-list span:last-child { border-right: 0; }
.shop-closing { background: var(--paper); }

.editorial-section { background: var(--paper); }
.editorial-section-alt { background: var(--cream); }
.editorial-grid {
  display: grid;
  grid-template-columns: .7fr 1.55fr;
  gap: clamp(56px, 10vw, 160px);
  align-items: start;
}
.editorial-grid-reverse {
  grid-template-columns: 1fr 1fr;
  gap: clamp(54px, 8vw, 126px);
  align-items: center;
}
.editorial-aside { padding-top: 8px; }
.detail-list { margin: 34px 0 0; border-top: 1px solid var(--line); }
.detail-list > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.detail-list dt {
  color: rgba(20, 35, 29, .52);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.detail-list dd { margin: 0; font-family: var(--serif); font-size: 1.05rem; }
.editorial-copy h2 {
  max-width: 920px;
  margin: 24px 0 36px;
  font-size: clamp(3rem, 5.3vw, 6rem);
}
.editorial-copy > p {
  max-width: 740px;
  margin: 0 0 22px;
  color: rgba(20, 35, 29, .7);
  line-height: 1.75;
}
.editorial-copy .editorial-lede {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.18rem, 1.7vw, 1.48rem);
  line-height: 1.55;
}
.editorial-copy > .text-link { margin-top: 16px; }
.editorial-image {
  min-height: 700px;
  margin: 0;
  overflow: hidden;
  background: var(--lichen);
}
.editorial-image img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; }
.inline-actions { display: flex; align-items: center; gap: 30px; margin-top: 38px; }
.subpage-film { min-height: min(74svh, 780px); }

.contact-section { background: var(--paper); }
.contact-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(60px, 10vw, 160px);
  align-items: start;
}
.contact-heading h2 {
  margin: 24px 0 32px;
  font-size: clamp(3.3rem, 5.8vw, 6.4rem);
}
.contact-heading > p:last-child {
  max-width: 480px;
  margin: 0;
  color: rgba(20, 35, 29, .68);
  font-family: var(--serif);
  font-size: 1.18rem;
}
.contact-link-list {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line);
  font-style: normal;
}
.contact-card {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: 88px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 220ms ease, color 220ms ease;
}
.contact-card:hover,
.contact-card:focus-visible { padding-inline: 12px; color: var(--sky); }
.contact-card-label {
  color: rgba(20, 35, 29, .5);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.contact-card strong { font-family: var(--serif); font-size: clamp(1.06rem, 1.65vw, 1.4rem); font-weight: 400; }
.contact-shop {
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: var(--cream);
  background: var(--pine);
}
.contact-shop-image { min-height: 760px; overflow: hidden; }
.contact-shop-image img { width: 100%; height: 100%; object-fit: cover; }
.contact-shop-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(66px, 8vw, 132px); }
.contact-shop-copy h2 { margin: 24px 0 32px; font-size: clamp(3.3rem, 5.5vw, 6rem); }
.contact-shop-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: rgba(245, 241, 231, .68);
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.6;
}

.site-footer { color: var(--cream); background: var(--deep-pine); }
.footer-top { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding-block: 82px; }
.footer-wordmark .brand-logo { width: 150px; }
.footer-top > div:first-child > p { max-width: 320px; margin: 20px 0 0; color: rgba(245,241,231,.58); font-family: var(--serif); }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.footer-links > div { display: grid; align-content: start; gap: 11px; }
.footer-links span { margin-bottom: 8px; color: rgba(245,241,231,.48); font-size: .67rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.footer-links a { width: fit-content; color: rgba(245,241,231,.82); font-family: var(--serif); font-size: 1rem; }
.footer-links a:hover { color: var(--cream); text-decoration: underline; text-underline-offset: 4px; }
.footer-bottom { display: flex; justify-content: space-between; padding-block: 20px; color: rgba(245,241,231,.46); border-top: 1px solid rgba(245,241,231,.15); font-size: .65rem; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; }
.chenzo-signature {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: rgba(245,241,231,.62);
  transition: color 220ms ease;
}
.chenzo-signature strong { color: var(--cream); font-weight: 750; letter-spacing: .08em; }
.chenzo-cherry { display: inline-block; font-size: .88rem; line-height: 1; transition: transform 260ms cubic-bezier(.2,.8,.2,1); }
.chenzo-signature:hover { color: var(--cream); }
.chenzo-signature:hover strong { text-decoration: underline; text-underline-offset: 4px; }
.chenzo-signature:hover .chenzo-cherry { transform: translateY(-2px) rotate(9deg) scale(1.12); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 750ms ease, transform 750ms cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes hero-in { from { opacity: .25; transform: scale(1.08); } to { opacity: 1; transform: scale(1.015); } }

@media (max-width: 1050px) {
  :root { --shell: min(100% - 40px, 920px); }
  .site-header { padding-inline: 20px; grid-template-columns: 1fr auto; }
  .site-nav {
    position: fixed;
    inset: 70px 0 auto;
    display: grid;
    gap: 0;
    padding: 18px 20px 28px;
    color: var(--ink);
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform 300ms cubic-bezier(.2,.8,.2,1);
  }
  .site-nav.is-open { transform: translateY(0); }
  .site-nav a { padding: 18px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.4rem; font-weight: 400; letter-spacing: 0; text-transform: none; }
  .header-shop { display: none; }
  .menu-toggle { display: grid; width: 42px; height: 42px; place-content: center; gap: 6px; padding: 0; border: 0; background: transparent; }
  .menu-toggle span:not(.sr-only) { display: block; width: 24px; height: 1px; background: currentColor; transition: transform 220ms ease; }
  .menu-toggle[aria-expanded="true"] span:nth-last-child(2) { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .intro-grid { grid-template-columns: 1fr 3fr; }
  .intro-seal { display: none; }
  .value-offers-heading { grid-template-columns: 1fr; gap: 32px; }
  .value-offers-heading > p { max-width: 700px; }
  .value-offers-grid { grid-template-columns: 1fr; }
  .value-offer { min-height: 260px; border-right: 0; border-bottom: 1px solid rgba(245, 241, 231, .2); }
  .value-offer:last-child { border-bottom: 0; }
  .collection-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 620px 330px 330px; }
  .collection-card-feature { grid-column: 1 / 3; grid-row: 1; }
  .card-tallow { grid-column: 1 / 3; }
  .product-row { grid-template-columns: repeat(2, 1fr); }
  .product-showcase-heading { grid-template-columns: 1fr 1fr; gap: 54px; }
  .product-showcase-grid { grid-template-columns: 1.08fr .92fr; grid-template-rows: repeat(3, 330px); }
  .product-shot-feature { grid-column: 1; grid-row: 1 / 3; }
  .product-shot-wide { grid-column: 2; grid-row: 1; }
  .product-shot-small-top { grid-column: 2; grid-row: 2; }
  .product-shot-small-bottom { grid-column: 1; grid-row: 3; }
  .product-shot-wide-bottom { grid-column: 2; grid-row: 3; }
  .standard { grid-template-columns: 1fr; }
  .standard-image { min-height: 70vw; }
  .maker-grid { grid-template-columns: .45fr 1fr 1fr; }
  .maker-number { font-size: 16rem; }
  .shop-intro-grid { grid-template-columns: 1fr; gap: 38px; }
  .collection-jump { grid-template-columns: 1fr 1fr; }
  .collection-jump a:nth-child(2) { border-right: 0; }
  .collection-jump a:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .catalog-full .product-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .editorial-grid,
  .editorial-grid-reverse,
  .contact-grid { grid-template-columns: 1fr; gap: 64px; }
  .editorial-aside { max-width: 560px; }
  .editorial-grid-reverse .editorial-image { order: 2; }
  .contact-shop { grid-template-columns: 1fr; }
  .contact-shop-image { min-height: 68vw; }
}

@media (max-width: 700px) {
  :root { --shell: calc(100vw - 32px); --section-space: 82px; }
  .site-header { height: 70px; }
  .brand-logo { width: 104px; }
  .hero { min-height: max(100svh, 960px); }
  .hero-media img { object-position: 70% center; }
  .hero-content { align-self: flex-start; padding-top: 126px; padding-bottom: 174px; }
  .hero h1 { font-size: clamp(3.8rem, 18vw, 6rem); line-height: .86; }
  .hero-copy { max-width: 92%; font-size: 1.05rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; margin-top: 32px; }
  .hero-ledger { grid-template-columns: 1fr 1fr; }
  .hero-ledger span { padding: 13px 8px; font-size: .56rem; border-bottom: 1px solid rgba(255,255,255,.2); }
  .hero-ledger span:nth-child(2) { border-right: 0; }
  .hero-wash { background: linear-gradient(90deg, rgba(6,20,15,.87) 0%, rgba(8,24,18,.5) 80%), linear-gradient(0deg, rgba(4,15,11,.55), transparent 60%); }
  .intro-grid { grid-template-columns: 1fr; gap: 38px; }
  .intro-copy h2 { font-size: 3.25rem; }
  .intro-copy > p { margin-left: 0; }
  .value-offers-heading { margin-bottom: 42px; }
  .value-offers-heading h2 { font-size: 3.65rem; }
  .value-offer { min-height: 285px; padding: 30px 22px; }
  .value-offer strong { margin-top: 28px; font-size: 3.55rem; }
  .value-offer h3 { margin-bottom: 36px; font-size: 2.2rem; }
  .forest-film { min-height: 74svh; }
  .forest-film-media { object-position: 68% center; }
  .forest-film-content h2 { font-size: 3.65rem; }
  .section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 36px; }
  .section-heading h2 { font-size: 3.6rem; }
  .collection-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: 560px repeat(3, 280px); width: 100%; }
  .collection-card-feature,
  .card-tallow { grid-column: 1; grid-row: auto; }
  .collection-label > span { font-size: 2.5rem; }
  .live-catalog { margin-top: 70px; }
  .product-row { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 14px; }
  .product-card { flex: 0 0 78vw; scroll-snap-align: start; }
  .product-showcase-heading { grid-template-columns: 1fr; gap: 30px; margin-bottom: 38px; }
  .product-showcase-heading h2 { font-size: 4rem; }
  .product-showcase-note { justify-self: start; }
  .product-showcase-grid {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    grid-template: none;
    overscroll-behavior-inline: contain;
    padding-bottom: 16px;
    scroll-snap-type: x mandatory;
  }
  .product-shot,
  .product-shot-feature,
  .product-shot-wide,
  .product-shot-small-top,
  .product-shot-small-bottom,
  .product-shot-wide-bottom {
    grid-column: auto;
    grid-row: auto;
    min-height: 520px;
    flex: 0 0 82vw;
    scroll-snap-align: start;
  }
  .product-shot-copy strong,
  .product-shot-feature .product-shot-copy strong { font-size: 2.1rem; }
  .standard-image { min-height: 520px; }
  .standard-content { padding: 72px 24px; }
  .standard h2 { font-size: 3.8rem; }
  .maker-grid { grid-template-columns: 1fr; gap: 0; }
  .maker-number { grid-row: auto; font-size: 12rem; margin-bottom: -22px; }
  .maker-heading,
  .maker-story { grid-column: 1; }
  .maker h2 { margin-bottom: 40px; font-size: 3.6rem; }
  .maker-note { margin-top: 58px; }
  .closing { min-height: 600px; }
  .closing h2 { margin-block: 28px 44px; font-size: 5.1rem; }
  .closing-actions { align-items: flex-start; flex-direction: column; }
  .closing-rings { right: -55vw; width: 130vw; }
  .page-hero { min-height: max(82svh, 690px); }
  .page-hero-content { padding-block: 138px 72px; }
  .page-hero h1 { margin-block: 22px 28px; font-size: clamp(3.7rem, 17vw, 5.7rem); line-height: .86; }
  .page-hero-content > p:last-of-type { max-width: 94%; font-size: 1.05rem; }
  .page-hero-shop .page-hero-media img { object-position: 60% center; }
  .page-hero-maker .page-hero-media img { object-position: 62% center; }
  .page-hero-contact .page-hero-media img { object-position: 60% center; }
  .page-hero-shade { background: linear-gradient(90deg, rgba(7,20,15,.84), rgba(8,24,18,.36)), linear-gradient(0deg, rgba(5,16,12,.72), transparent 62%); }
  .page-hero-shop .page-hero-shade { background: linear-gradient(90deg, rgba(7,20,15,.68), rgba(8,24,18,.22)), linear-gradient(0deg, rgba(5,16,12,.64), rgba(5,16,12,.08) 72%); }
  .shop-intro-copy h2 { font-size: 3.35rem; }
  .collection-jump { grid-template-columns: 1fr; }
  .collection-jump a,
  .collection-jump a:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .collection-jump a:last-child { border-bottom: 0; }
  .live-catalog-heading { align-items: flex-start; flex-direction: column; }
  .catalog-full .product-row { display: grid; grid-template-columns: 1fr; overflow: visible; gap: 38px; padding-bottom: 0; }
  .catalog-full .product-card { width: auto; flex: none; }
  .shop-assurance h2 { margin-bottom: 46px; font-size: 3.7rem; }
  .assurance-list { grid-template-columns: 1fr 1fr; }
  .assurance-list span:nth-child(2) { border-right: 0; }
  .assurance-list span:nth-child(-n + 2) { border-bottom: 1px solid rgba(245,241,231,.23); }
  .editorial-grid,
  .editorial-grid-reverse { gap: 52px; }
  .editorial-copy h2 { font-size: 3.55rem; }
  .editorial-image { min-height: 520px; }
  .inline-actions { align-items: flex-start; flex-direction: column; gap: 24px; }
  .contact-heading h2,
  .contact-shop-copy h2 { font-size: 3.65rem; }
  .contact-card { grid-template-columns: 1fr auto; gap: 8px 18px; }
  .contact-card-label { grid-column: 1 / 3; }
  .contact-card strong { overflow-wrap: anywhere; }
  .contact-shop-image { min-height: 520px; }
  .contact-shop-copy { padding: 78px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 60px; padding-block: 68px; }
  .footer-links { grid-template-columns: 1fr 1fr; row-gap: 42px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Grouped shop catalog */
.catalog-groups { display: grid; gap: clamp(56px, 7vw, 96px); margin-top: 32px; }
.catalog-group { scroll-margin-top: 110px; }
.catalog-group-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.catalog-group-heading h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.7rem, 2.6vw, 2.6rem); font-weight: 400; line-height: 1.05; }
.catalog-group-heading span { color: rgba(20, 35, 29, .6); font-size: .72rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.catalog-full .catalog-group .product-row { margin-top: 24px; }

/* Shipping & pickup */
.shipping-pickup { background: var(--cream); }
.shipping-pickup-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.shipping-pickup h2 { margin: 12px 0 18px; font-family: var(--serif); font-size: clamp(2rem, 3.4vw, 3.4rem); font-weight: 400; line-height: 1.05; }
.shipping-pickup p { color: rgba(20, 35, 29, .72); }
.shipping-tiers { margin: 0; border-top: 1px solid var(--line); }
.shipping-tiers div { display: flex; justify-content: space-between; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.shipping-tiers dt { color: rgba(20, 35, 29, .72); }
.shipping-tiers dd { margin: 0; font-family: var(--serif); font-size: 1.35rem; color: var(--ink); }
.pickup-details { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); margin-top: clamp(56px, 7vw, 96px); padding-top: clamp(40px, 5vw, 64px); border-top: 1px solid var(--line); }
.pickup-details p { margin: 12px 0 0; line-height: 1.7; }
.pickup-details a { color: var(--pine); text-decoration: underline; text-underline-offset: 3px; }
.pickup-intro p:not(.eyebrow) { font-family: var(--serif); font-size: clamp(1.25rem, 1.9vw, 1.7rem); line-height: 1.35; color: var(--ink); }
.pickup-steps { margin: 0; border-top: 1px solid var(--line); }
.pickup-steps div { display: grid; grid-template-columns: 150px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.pickup-steps dt { font-size: .72rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; color: var(--moss); padding-top: 4px; }
.pickup-steps dd { margin: 0; color: var(--ink); line-height: 1.6; }
.pickup-policy { grid-column: 1 / -1; max-width: 860px; }
.pickup-options { list-style: none; margin: 18px 0 6px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pickup-options li { padding: 20px 22px; background: var(--paper); border: 1px solid var(--line); border-radius: 4px; line-height: 1.6; color: var(--ink); }
.pickup-options strong { display: block; margin-bottom: 6px; font-family: var(--serif); font-size: 1.2rem; font-weight: 400; }
@media (max-width: 800px) {
  .shipping-pickup-grid { grid-template-columns: 1fr; }
  .pickup-details, .pickup-options { grid-template-columns: 1fr; }
  .pickup-steps div { grid-template-columns: 1fr; gap: 6px; }
  .catalog-group-heading { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* Meet the Maker story */
.maker-letter { background: var(--cream); }
.maker-letter-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 6vw, 110px); align-items: start; }
.maker-letter-heading h2 { margin: 12px 0 18px; font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 4.8rem); font-weight: 400; line-height: 1; }
.maker-letter-sub { font-family: var(--serif); font-size: clamp(1.2rem, 1.8vw, 1.6rem); line-height: 1.3; color: var(--moss); }
.maker-letter-copy p { margin: 0 0 1.2em; font-size: clamp(1rem, 1.2vw, 1.15rem); line-height: 1.75; color: rgba(20, 35, 29, .8); }
.maker-pillars-heading { max-width: 760px; }
.maker-pillars-heading h2 { margin: 12px 0 0; font-family: var(--serif); font-size: clamp(2rem, 3.6vw, 3.4rem); font-weight: 400; line-height: 1.05; }
.maker-pillars-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2.4vw, 32px); margin-top: 40px; }
.maker-pillars-grid article { padding: 28px; border: 1px solid var(--line); border-radius: 22px; }
.maker-pillars-grid h3 { margin: 0 0 10px; font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }
.maker-pillars-grid p { margin: 0; color: rgba(20, 35, 29, .72); }
@media (max-width: 800px) {
  .maker-letter-grid, .maker-pillars-grid { grid-template-columns: 1fr; }
}

/* Meet Joy photo gallery */
.maker-gallery { display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 4fr); gap: clamp(16px, 2.4vw, 32px); align-items: end; margin-top: clamp(56px, 7vw, 96px); }
.maker-gallery-item { margin: 0; }
.maker-gallery-item img { display: block; width: 100%; height: clamp(360px, 44vw, 620px); object-fit: cover; border-radius: 2px; }
.maker-gallery-item:first-child img { object-position: center 60%; }
.maker-gallery-item:last-child img { object-position: 38% center; }
.maker-gallery-item figcaption { margin-top: 12px; font-family: var(--serif); font-size: .98rem; font-style: italic; color: var(--moss); }
@media (max-width: 700px) {
  .maker-gallery { grid-template-columns: 1fr; }
  .maker-gallery-item img { height: auto; aspect-ratio: 4 / 5; }
  .maker-gallery-item:last-child img { aspect-ratio: 4 / 3; }
}
.standard-lede + .standard-lede { margin-top: 1em; font-size: 1.08rem; }
.principle-list small a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }

.editorial-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}
.editorial-pair figure { margin: 0; overflow: hidden; background: var(--lichen); aspect-ratio: 3 / 4; }
.editorial-pair figure:nth-child(2) { margin-top: 56px; }
.editorial-pair img { width: 100%; height: 100%; object-fit: cover; }
