/* ============================================================
   püre nutrition — product presentation
   Design system: tokens, type, layout primitives, components
   ============================================================ */

/* System sans throughout, except product names — those use the brand's
   packaging typeface (Typo Round), loaded as a local webfont below. */

@font-face {
  font-family: "Typo Round";
  src: url("../fonts/TypoRound-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Typo Round";
  src: url("../fonts/TypoRound-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Typo Round";
  src: url("../fonts/TypoRound-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Surfaces */
  --bg: #faf9f6;
  --surface: #ffffff;
  --surface-warm: #f4efe5;
  --surface-sunk: #ece5d6;
  --nav: #f2ede3;
  --ink-rgb: 26, 24, 20;

  /* Ink */
  --ink: #1a1814;
  --ink-soft: #55524a;
  --ink-faint: #918d80;
  --line: #e4ddcd;
  --line-strong: #d3c9b3;

  /* Brand */
  --brand: #2d6a4f;
  --brand-rgb: 45, 106, 79;
  --brand-light: #74c69d;
  --brand-dark: #16302380;
  --brand-dark-solid: #163023;
  --highlight: #dde9cf;

  /* Accent — warm brass, replaces the D2C pale-yellow for a more premium catalog feel */
  --gold: #a9793c;
  --gold-rgb: 169, 121, 60;
  --gold-soft: #f1e3cd;

  /* Type */
  --font-display: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --font-body: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --font-brand: "Typo Round", Arial, "Helvetica Neue", Helvetica, sans-serif;

  /* Shadows — layered + tinted */
  --shadow-sm: 0 1px 2px rgba(var(--ink-rgb), 0.05), 0 1px 1px rgba(var(--brand-rgb), 0.03);
  --shadow-md: 0 10px 28px rgba(var(--ink-rgb), 0.07), 0 3px 10px rgba(var(--brand-rgb), 0.06);
  --shadow-lg: 0 30px 70px rgba(var(--ink-rgb), 0.14), 0 10px 28px rgba(var(--brand-rgb), 0.08);
  --shadow-inset: inset 0 1px 3px rgba(var(--ink-rgb), 0.06);

  /* Rhythm */
  --container: 1280px;
  --pad: 40px;
  --nav-h: 84px;
}

@media (max-width: 720px) {
  :root { --pad: 20px; --nav-h: 68px; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  font-size: 16px;
  position: relative;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
table { border-collapse: collapse; width: 100%; }

::selection { background: var(--highlight); color: var(--brand-dark-solid); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 4px; }

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

/* Film-grain overlay — fixed, whole-page, very low opacity for depth */
.grain {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  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.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: 128px 0; }
.section--tight { padding: 88px 0; }
@media (max-width: 900px) {
  .section { padding: 88px 0; }
  .section--tight { padding: 64px 0; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow--onDark { color: var(--gold-soft); }
.eyebrow--onDark::before { background: var(--gold-soft); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::before { display: none; }

.h-display {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0;
  line-height: 0.98;
  color: var(--ink);
}
.h-display--onDark { color: #fff; }

.eyebrow + .h-display,
.eyebrow + .h-serif { margin-top: 16px; }

.h-serif {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
  color: var(--ink);
}

.lede {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 46em;
}

/* ---------------- Header ---------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(242, 237, 227, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 2px 20px rgba(var(--ink-rgb), 0.06);
}
.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark { display: inline-flex; align-items: center; text-decoration: none; }
.wordmark__logo { display: block; width: auto; transition: opacity 0.2s ease; }
.wordmark:hover .wordmark__logo { opacity: 0.75; }
.site-header__inner .wordmark__logo { height: 30px; }
.footer-top .wordmark__logo { height: 38px; }
.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-link {
  position: relative;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--ink-soft);
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1.5px;
  background: var(--brand);
  transition: right 0.28s cubic-bezier(0.34,1.56,0.64,1);
}
.nav-link:hover, .nav-link.is-active { color: var(--ink); }
.nav-link:hover::after, .nav-link.is-active::after { right: 0; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: none; background: transparent;
  cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; width: 20px; height: 1.5px; background: var(--ink);
  position: relative;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 1.5px; background: var(--ink);
  transition: transform 0.25s ease, top 0.25s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.is-open span::after { top: 0; transform: rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: var(--nav-h) 0 0 0;
  background: var(--nav);
  z-index: 90;
  display: none;
  flex-direction: column;
  padding: 32px var(--pad);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-nav.is-open { display: flex; opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: normal;
  font-size: 1.6rem;
  text-decoration: none;
  color: var(--ink);
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 780px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* ---------------- Cinematic hero ---------------- */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #14120f;
  display: flex;
  align-items: flex-end;
}
.hero__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,14,11,0.55) 0%, rgba(15,14,11,0.15) 32%, rgba(15,14,11,0.35) 68%, rgba(10,9,7,0.88) 100%);
}
.hero__content {
  position: relative; z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 64px) var(--pad) 96px;
}
.hero__eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 22px; display: block;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700; font-style: normal;
  font-size: clamp(2.8rem, 6.4vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: 0;
  color: #fff;
  max-width: 18em;
  text-shadow: 0 4px 30px rgba(0,0,0,0.35);
}
.hero__sub {
  margin-top: 24px;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.78);
  max-width: 36em;
  line-height: 1.7;
}
.hero__cue {
  margin-top: 56px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.hero__cue-line { width: 1px; height: 34px; background: rgba(255,255,255,0.4); position: relative; overflow: hidden; }
.hero__cue-line::after {
  content: ""; position: absolute; left: 0; top: -100%; width: 100%; height: 100%;
  background: #fff; animation: cueDrop 1.8s ease-in-out infinite;
}
@keyframes cueDrop { 0% { top: -100%; } 60% { top: 100%; } 100% { top: 100%; } }

/* ---------------- Buttons / links (navigational, not sales) ---------------- */
.text-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.86rem; font-weight: 600;
  text-decoration: none; color: var(--ink);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--line-strong);
  transition: border-color 0.2s ease, gap 0.2s ease, color 0.2s ease;
}
.text-link:hover { border-color: var(--ink); gap: 12px; }
.text-link__arrow { transition: transform 0.2s ease; }
.text-link:hover .text-link__arrow { transform: translateX(2px); }

/* ---------------- Section header row ---------------- */
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
  margin-bottom: 56px; flex-wrap: wrap;
}

/* ---------------- Philosophy statement ---------------- */
.statement {
  background: var(--surface-warm);
  position: relative;
  overflow: hidden;
}
.statement__inner { max-width: 920px; margin: 0 auto; padding: 0 var(--pad); text-align: center; }
.statement__mark { font-size: 2.4rem; color: var(--gold); font-style: normal; font-family: var(--font-display); line-height: 1; }
.statement__quote {
  font-family: var(--font-display);
  font-weight: 400; font-style: normal;
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  line-height: 1.24;
  letter-spacing: 0;
  color: var(--ink);
  margin: 20px 0 28px;
}
.statement__body { font-size: 1.02rem; color: var(--ink-soft); line-height: 1.85; max-width: 62ch; margin: 0 auto; }

/* ---------------- Category grid ---------------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 980px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cat-grid { grid-template-columns: 1fr; } }

.cat-tile {
  position: relative;
  height: 380px;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  background: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1), box-shadow 0.45s ease;
}
.cat-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-tile__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
  filter: saturate(1.05);
}
.cat-tile:hover .cat-tile__img { transform: scale(1.06); }
.cat-tile__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,14,11,0.05) 0%, rgba(15,14,11,0.2) 45%, rgba(10,9,7,0.9) 100%);
  mix-blend-mode: multiply;
}
.cat-tile__scrim2 { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10,9,7,0.55) 100%); }
.cat-tile__content { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px; }
.cat-tile__tag {
  display: inline-block; font-size: 0.63rem; font-weight: 700; letter-spacing: 0.16em;
  color: var(--gold-soft); text-transform: uppercase; margin-bottom: 10px;
}
.cat-tile__title {
  font-family: var(--font-display); font-weight: 700; font-style: normal;
  font-size: 1.4rem; color: #fff; letter-spacing: 0; margin-bottom: 8px;
}
.cat-tile__statement { font-size: 0.82rem; color: rgba(255,255,255,0.68); line-height: 1.5; max-width: 30ch; }

/* ---------------- Product card / range grid ---------------- */
.range-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px 28px; }
@media (max-width: 980px) { .range-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .range-grid { grid-template-columns: 1fr; } }

.product-card { text-decoration: none; display: block; color: var(--ink); }
.product-card__frame {
  position: relative;
  background: var(--surface-warm);
  border-radius: 4px;
  aspect-ratio: 4 / 5;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.product-card:hover .product-card__frame { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.product-card__frame img {
  width: 72%; height: 72%; object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
  filter: drop-shadow(0 20px 30px rgba(var(--ink-rgb),0.14));
}
.product-card:hover .product-card__frame img { transform: scale(1.05) translateY(-4px); }
.product-card__cat {
  position: absolute; top: 16px; left: 16px;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brand-dark-solid);
  background: rgba(255,255,255,0.75);
  padding: 5px 10px; border-radius: 100px;
  backdrop-filter: blur(4px);
}
.product-card__body { padding-top: 20px; }
.product-card__name {
  font-family: var(--font-brand); font-weight: 700; font-style: normal;
  font-size: 1.34rem; letter-spacing: 0; margin-bottom: 6px;
}
.product-card__tagline { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.55; margin-bottom: 14px; min-height: 2.7em; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--brand-dark-solid);
  background: var(--highlight);
  border: 1px solid rgba(var(--brand-rgb), 0.18);
  padding: 5px 11px; border-radius: 100px;
  white-space: nowrap;
}
.chip strong { font-weight: 700; }

/* ---------------- Flavour grid (product detail) ---------------- */
.flavor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .flavor-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .flavor-grid { grid-template-columns: 1fr; } }
.flavor-tile__frame {
  background: transparent;
  aspect-ratio: 16 / 10;
  display: flex; align-items: center; justify-content: center;
  overflow: visible;
}
.flavor-tile__frame img {
  width: 92%; height: auto; object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(var(--ink-rgb),0.14));
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.flavor-tile:hover .flavor-tile__frame img { transform: translateY(-4px) scale(1.02); }
.flavor-tile__name { margin-top: 12px; font-size: 0.92rem; font-weight: 600; color: var(--ink); text-align: center; }

/* ---------------- Standards strip ---------------- */
.standards { background: var(--brand-dark-solid); color: #fff; }
.standards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
@media (max-width: 900px) { .standards-grid { grid-template-columns: repeat(2, 1fr); row-gap: 48px; } }
@media (max-width: 560px) { .standards-grid { grid-template-columns: 1fr; } }
.standard__num {
  font-family: var(--font-display); font-style: normal; font-weight: 700;
  font-size: 1.1rem; color: var(--gold-soft); margin-bottom: 18px; display: block;
}
.standard__title { font-family: var(--font-display); font-weight: 700; font-style: normal; font-size: 1.15rem; margin-bottom: 10px; letter-spacing: 0; }
.standard__body { font-size: 0.88rem; color: rgba(255,255,255,0.62); line-height: 1.65; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--nav); border-top: 1px solid var(--line); }
.footer-top { padding: 80px 0 56px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; row-gap: 40px; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand__statement { font-size: 0.92rem; color: var(--ink-soft); max-width: 30ch; margin-top: 16px; line-height: 1.65; }
.footer-col__title { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 18px; }
.footer-col a {
  display: block; font-size: 0.88rem; color: var(--ink-soft); text-decoration: none; padding: 6px 0;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--ink-faint); }

/* ---------------- Breadcrumb ---------------- */
.crumb { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--ink-faint); flex-wrap: wrap; }
.crumb a { text-decoration: none; color: var(--ink-faint); transition: color 0.2s ease; }
.crumb a:hover { color: var(--ink); }
.crumb span[aria-current] { color: var(--ink-soft); }

/* ---------------- Product hero (detail page) ---------------- */
.pd-hero { padding: calc(var(--nav-h) + 40px) 0 0; }
.pd-hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; margin-top: 40px; }
@media (max-width: 900px) { .pd-hero__grid { grid-template-columns: 1fr; gap: 40px; } }
.pd-hero__frame {
  position: relative;
  background: var(--surface-warm);
  border-radius: 4px;
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.pd-hero__frame img { width: 62%; height: 62%; object-fit: contain; filter: drop-shadow(0 30px 40px rgba(var(--ink-rgb),0.16)); }
.pd-hero__frame--wide { aspect-ratio: 16 / 10; }
.pd-hero__frame--wide img { width: 86%; height: auto; }
.pd-hero__cat { margin-bottom: 18px; }
.pd-hero__name {
  font-family: var(--font-brand); font-weight: 700; font-style: normal;
  font-size: clamp(2.1rem, 4vw, 3.2rem); letter-spacing: 0; line-height: 1.02; margin-bottom: 14px;
}
.pd-hero__tagline { font-size: 1.1rem; color: var(--brand-dark-solid); font-weight: 500; margin-bottom: 20px; }
.pd-hero__desc { font-size: 1rem; color: var(--ink-soft); line-height: 1.8; max-width: 46ch; margin-bottom: 32px; }
.pd-hero__stats { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.stat-chip {
  display: flex; flex-direction: column; gap: 3px;
  padding: 12px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  min-width: 108px;
}
.stat-chip__value { font-family: var(--font-display); font-weight: 700; font-style: normal; font-size: 1.3rem; color: var(--brand-dark-solid); }
.stat-chip__label { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); }
.pd-hero__format { font-size: 0.84rem; color: var(--ink-faint); }
.pd-hero__format strong { color: var(--ink-soft); font-weight: 600; }

/* ---------------- Benefits list ---------------- */
.benefit-list li { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 0.95rem; color: var(--ink-soft); line-height: 1.6; }
.benefit-list li:last-child { border-bottom: none; }
.benefit-mark {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
  border: 1.5px solid var(--brand); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.benefit-mark svg { width: 10px; height: 10px; }

/* ---------------- Two-col editorial block ---------------- */
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 36px; } }
.split--reverse { grid-template-columns: 1.1fr 0.9fr; }
@media (max-width: 900px) { .split--reverse { grid-template-columns: 1fr; } }


/* ---------------- Pagination nav ---------------- */
.pd-pagination {
  border-top: 1px solid var(--line);
  padding: 40px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.pd-pagination__link { text-decoration: none; color: var(--ink); display: flex; flex-direction: column; gap: 6px; }
.pd-pagination__link--next { text-align: right; align-items: flex-end; }
.pd-pagination__dir { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); }
.pd-pagination__name { font-family: var(--font-display); font-weight: 700; font-style: normal; font-size: 1.3rem; transition: color 0.2s ease; }
.pd-pagination__link:hover .pd-pagination__name { color: var(--brand-dark-solid); }

/* ---------------- Reveal on scroll ----------------
   Hidden state is gated behind html.js-ready (set synchronously in <head>)
   so content stays visible by default if JS is slow, blocked, or absent. */
html.js-ready .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1); }
html.js-ready .reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------------- About page specifics ---------------- */
.about-hero { padding: calc(var(--nav-h) + 96px) 0 80px; text-align: center; }
.about-hero__title { max-width: 16em; margin: 0 auto; }
.about-hero__sub { max-width: 42ch; margin: 24px auto 0; text-align: center; }
.pillar-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px 64px; }
@media (max-width: 720px) { .pillar-grid { grid-template-columns: 1fr; } }
.pillar__index { font-family: var(--font-display); font-style: normal; font-weight: 700; color: var(--gold); font-size: 0.95rem; margin-bottom: 14px; display: block; }
.pillar__title { font-size: 1.3rem; margin-bottom: 10px; }
.pillar__body { font-size: 0.94rem; color: var(--ink-soft); line-height: 1.75; }

/* ---------------- Lookbook mosaic ---------------- */
.lookbook-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 860px) { .lookbook-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .lookbook-grid { grid-template-columns: 1fr; } }
.lookbook-item { position: relative; aspect-ratio: 4/5; border-radius: 4px; overflow: hidden; display: block; box-shadow: var(--shadow-sm); }
.lookbook-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.lookbook-item:hover img { transform: scale(1.05); }
.lookbook-item__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(10,9,7,0.75) 100%); }
.lookbook-item__label {
  position: absolute; left: 16px; bottom: 14px;
  font-family: var(--font-brand); font-weight: 700; font-style: normal; font-size: 1.1rem; color: #fff;
}

/* ---------------- Catalog (products.html) ---------------- */
.catalog-hero { padding: calc(var(--nav-h) + 72px) 0 64px; }
.catalog-jump { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 32px; }
.catalog-jump a {
  font-size: 0.78rem; font-weight: 600; text-decoration: none; color: var(--ink-soft);
  padding: 9px 18px; border: 1px solid var(--line-strong); border-radius: 100px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.catalog-jump a:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.catalog-section { padding: 64px 0; border-top: 1px solid var(--line); }
.catalog-section:first-of-type { border-top: none; }
