/* Glow Care — v3 visual system
   Aesop-adjacent: warm paper, editorial serif, skinline rules, full-bleed film.
   Tokens calibrated to pack ivory / ink / amber glass. */

:root {
  --ivory: #f4efe6;
  --linen: #e8dfd2;
  --cream: #f3ede3;
  --paper: #faf7f1;
  --ink: #1a1917;
  --ink-soft: #3d3a35;
  --muted: #6b645b;
  --rule: #d4cbb8;
  --taupe: #8a6f5a;
  --amber: #6b3a1f;
  --bar: #111111;
  --chapter: #161514;
  --chapter-card: #1e1c1a;
  --focus: #6b3a1f;
  --ivory-rgb: 244, 239, 230;
  --ink-rgb: 26, 25, 23;
  --serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, serif;
  --sans: "IBM Plex Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --space: 8px;
  --measure: 36rem;
  --content: 78rem;
  --narrow: 44rem;
  --header-h: 5rem;
  --announce-h: 2.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.012em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-color: var(--ivory);
  background-image:
    radial-gradient(ellipse 120% 70% at 50% -10%, rgba(255, 252, 246, 0.95), transparent 58%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(107, 58, 31, 0.018) 3px,
      rgba(107, 58, 31, 0.018) 4px
    );
  background-attachment: fixed;
}

::selection {
  background: var(--ink);
  color: var(--ivory);
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

picture img {
  width: 100%;
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border-radius: 0;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.28em;
}

a:hover {
  color: var(--amber);
}

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

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--ink);
  color: var(--ivory);
  padding: 0.5rem 1rem;
}

.skip:focus {
  top: 1rem;
}

.wrap {
  width: min(calc(100% - 3rem), var(--content));
  margin-inline: auto;
}

.wrap--narrow {
  width: min(calc(100% - 3rem), var(--narrow));
}

.eyebrow,
.chapter-label {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.chapter-label {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  margin: 0 0 1.5rem;
  color: var(--ink-soft);
}

.chapter-label span {
  font-family: var(--serif);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
  color: var(--taupe);
}

.small-caps {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
.display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.85rem, 7.2vw, 6.25rem);
  margin: 0 0 1.5rem;
}

h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.65rem);
  margin: 0 0 1.15rem;
}

h3 {
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1.1rem;
}

p:last-child {
  margin-bottom: 0;
}

.lede {
  font-size: 1.1875rem;
  line-height: 1.72;
  color: var(--ink-soft);
  max-width: var(--measure);
}

hr.rule {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 0;
}

/* Announcement */
.announce {
  background: var(--bar);
  color: var(--ivory);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.62rem 1.5rem;
}

.announce a {
  color: var(--ivory);
  text-decoration: none;
  text-underline-offset: 0.18em;
}

.announce a:hover {
  color: var(--linen);
  text-decoration: underline;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(var(--ivory-rgb), 0.92);
  border-bottom: 1px solid var(--rule);
  overflow: visible;
  transition:
    background 0.55s var(--ease),
    border-color 0.55s var(--ease),
    color 0.55s var(--ease);
}

/* Blur on a pseudo, not the header itself — backdrop-filter on the
   header made it the containing block for position:fixed .nav and
   clipped the overlay to ~header height (mobile menu “disappeared”). */
.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  background: var(--ivory);
  border-bottom-color: var(--rule);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  margin-left: auto;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
}

.lang-switch a {
  padding: 0.45rem 0.15rem;
  text-decoration: none;
  opacity: 0.64;
}

.lang-switch a[aria-current="true"] {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 0.32em;
}

.wordmark {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  text-decoration: none;
  line-height: 1;
}

.wordmark:hover {
  color: var(--ink);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.15rem;
}

.nav a {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.nav a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 0.42em;
  text-decoration-thickness: 1px;
}

.nav__cta {
  border: 0;
  padding: 0;
  letter-spacing: 0.22em;
  background: transparent;
}

.nav__cta:hover {
  background: transparent;
  border-color: transparent;
  color: inherit;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  flex-shrink: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 60;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  position: relative;
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .site-header {
  background: var(--ivory);
}

/* Film-home overlay chrome: announce + header sit on the video */
.has-film .top-chrome {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  overflow: visible;
}

.has-film .top-chrome .site-header {
  position: relative;
  background: transparent;
  border-bottom-color: transparent;
}

.has-film .top-chrome .site-header::after {
  opacity: 0;
}

.has-film .top-chrome .wordmark,
.has-film .top-chrome .lang-switch,
.has-film .top-chrome .nav a {
  color: var(--ivory);
}

.has-film .top-chrome .nav-toggle span,
.has-film .top-chrome .nav-toggle span::before,
.has-film .top-chrome .nav-toggle span::after {
  background: var(--ivory);
}

.has-film .top-chrome.is-scrolled .announce {
  max-height: 0;
  padding-block: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.has-film .top-chrome.is-scrolled .site-header {
  background: var(--ivory);
  border-bottom-color: var(--rule);
}

.has-film .top-chrome.is-scrolled .site-header::after {
  opacity: 1;
}

.has-film .top-chrome.is-scrolled .wordmark,
.has-film .top-chrome.is-scrolled .lang-switch,
.has-film .top-chrome.is-scrolled .nav a {
  color: var(--ink);
}

.has-film .top-chrome.is-scrolled .nav-toggle span,
.has-film .top-chrome.is-scrolled .nav-toggle span::before,
.has-film .top-chrome.is-scrolled .nav-toggle span::after {
  background: var(--ink);
}

.has-film .top-chrome.is-scrolled .nav__cta:hover {
  background: transparent;
  color: var(--ink);
}

body.nav-open.has-film .top-chrome .site-header {
  background: var(--ivory);
  border-bottom-color: var(--rule);
}

body.nav-open.has-film .top-chrome .wordmark,
body.nav-open.has-film .top-chrome .lang-switch,
body.nav-open.has-film .top-chrome .nav a {
  color: var(--ink);
}

body.nav-open.has-film .top-chrome .nav-toggle span,
body.nav-open.has-film .top-chrome .nav-toggle span::before,
body.nav-open.has-film .top-chrome .nav-toggle span::after {
  background: var(--ink);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: calc(100vh - var(--header-h) - var(--announce-h));
  align-items: stretch;
  border-bottom: 1px solid var(--rule);
}

.hero--film {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  border-bottom: 0;
  padding-bottom: clamp(3.25rem, 7vw, 6.5rem);
}

.hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--chapter);
}

.hero__video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  display: block;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(12, 10, 9, 0.48) 0%,
      rgba(12, 10, 9, 0.18) 30%,
      rgba(12, 10, 9, 0.42) 58%,
      rgba(12, 10, 9, 0.86) 100%
    ),
    linear-gradient(
      90deg,
      rgba(12, 10, 9, 0.42) 0%,
      rgba(12, 10, 9, 0.12) 42%,
      transparent 70%
    );
}

.hero__video.is-poster {
  background: var(--chapter);
}

.hero__video.is-poster .hero__video-el {
  display: none;
}

.hero__video.is-poster::after {
  content: "";
  position: absolute;
  inset: -3%;
  background: url("../img/hero-poster.webp") center 42% / cover no-repeat;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 3rem), var(--content));
  margin-inline: auto;
  padding-top: 0;
}

.hero--film .hero__kicker {
  color: rgba(244, 239, 230, 0.72);
  margin-bottom: 1.75rem;
}

.hero--film .hero__kicker.chapter-label span {
  color: #cdb9a0;
}

.hero--film h1 {
  color: var(--ivory);
  font-size: clamp(3.15rem, 9.2vw, 7.75rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.04em;
  max-width: 12ch;
  margin-bottom: 0;
}

.hero--film h1 .taupe {
  color: #d4b89a;
  font-style: italic;
  font-weight: 400;
}

.hero-discover {
  position: absolute;
  left: 50%;
  top: auto;
  bottom: clamp(2rem, 5vh, 3.5rem);
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  width: 13rem;
  height: 3.75rem;
  margin: 0;
  padding: 0.75rem 1.25rem;
  border: 1px solid rgba(244, 239, 230, 0.8);
  color: var(--ivory);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  transform: translateX(-50%);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.hero-discover__arrow {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.35s var(--ease);
}

.hero-discover:hover,
.hero-discover:focus-visible {
  color: var(--ink);
  background: var(--ivory);
  border-color: var(--ivory);
}

.hero-discover:hover .hero-discover__arrow,
.hero-discover:focus-visible .hero-discover__arrow {
  transform: translateX(0.25rem);
}

.hero__foot {
  display: grid;
  grid-template-columns: minmax(0, 32rem) auto;
  gap: 2rem 3rem;
  align-items: end;
  margin-top: clamp(2rem, 4vw, 3.25rem);
  max-width: 58rem;
}

.hero--film .lede {
  color: rgba(244, 239, 230, 0.86);
  font-size: 1.0625rem;
  max-width: 32rem;
}

.hero--film .cta-row {
  margin-top: 0;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 6rem) clamp(1.5rem, 5vw, 4.5rem);
}

.hero__kicker {
  margin-bottom: 1.5rem;
}

.hero h1 .taupe {
  color: var(--taupe);
}

.hero__media {
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  min-height: 28rem;
}

.hero__media img {
  width: auto;
  max-width: min(100%, 28rem);
  max-height: 78vh;
  object-fit: contain;
  margin-inline: auto;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  margin-top: 2.25rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.7rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--ivory);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.4s var(--ease),
    color 0.4s var(--ease),
    border-color 0.4s var(--ease);
}

.btn:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--ivory);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
}

.btn--ghost:hover {
  background: var(--ink);
  color: var(--ivory);
}

.btn--full {
  width: 100%;
}

.btn--light {
  background: var(--ivory);
  border-color: var(--ivory);
  color: var(--ink);
}

.btn--light:hover {
  background: transparent;
  border-color: var(--ivory);
  color: var(--ivory);
}

.btn--ghost-light {
  background: transparent;
  border-color: rgba(244, 239, 230, 0.55);
  color: var(--ivory);
}

.btn--ghost-light:hover {
  background: var(--ivory);
  border-color: var(--ivory);
  color: var(--ink);
}

/* Persistent Instagram link */
.instagram-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 45;
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  color: #fff;
  background: transparent;
  border: 0;
  box-shadow: none;
  mix-blend-mode: difference;
  text-decoration: none;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.instagram-float svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
}

.instagram-float .instagram-float__dot {
  fill: currentColor;
  stroke: none;
}

.instagram-float:hover {
  color: #fff;
  background: transparent;
  transform: translateY(-2px);
}

.instagram-float:focus-visible {
  outline-color: currentColor;
  outline-offset: 4px;
}

/* Sections */
.section {
  padding: clamp(5.5rem, 12vw, 10.5rem) 0;
}

.section--linen {
  background: var(--linen);
}

.section--ink {
  background: var(--chapter);
  color: var(--ivory);
}

.section--ink h2,
.section--ink h3 {
  color: var(--ivory);
}

.section--ink .chapter-label,
.section--ink .eyebrow {
  color: rgba(244, 239, 230, 0.55);
}

.section--ink .chapter-label span {
  color: #cdb9a0;
}

.section__head {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 40rem;
}

.ritual {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem 5rem;
  align-items: start;
  max-width: 62rem;
}

.ritual__index {
  font-family: var(--serif);
  font-size: 0.875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
  padding-top: 0.35rem;
}

.ritual p:not(.chapter-label):not(.eyebrow) {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.8vw, 2.05rem);
  font-weight: 400;
  line-height: 1.38;
  letter-spacing: -0.02em;
  max-width: 36rem;
}

/* Compact brand story on the home page */
.brand-story {
  padding-block: clamp(4.75rem, 9vw, 7.5rem);
  border-bottom: 1px solid var(--rule);
}

.brand-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem clamp(4rem, 9vw, 8rem);
  align-items: start;
}

.brand-story__heading .eyebrow {
  margin-bottom: 1.5rem;
}

.brand-story__heading h2 {
  max-width: 10ch;
  margin-bottom: 0;
}

.brand-story__heading h2 em,
.brand-story__copy blockquote em {
  color: var(--taupe);
  font-weight: 400;
}

.brand-story__copy {
  max-width: 34rem;
  color: var(--ink-soft);
}

.brand-story__copy p {
  font-size: 1rem;
  line-height: 1.72;
}

.brand-story__copy blockquote {
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 1px solid var(--taupe);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.text-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.home-collection {
  padding-block: clamp(4.75rem, 9vw, 7.5rem);
}

.home-collection .section__head {
  max-width: 46rem;
}

.home-collection .rail {
  width: min(100%, 68rem);
  margin-inline: auto;
  gap: 2.5rem 1.75rem;
}

.home-collection .card__media {
  aspect-ratio: 4 / 5;
  padding: 2.25rem 1.75rem;
}

/* Product rail */
.rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.25rem 2.25rem;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  padding-bottom: 1.15rem;
}

.card:hover {
  color: inherit;
}

.card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--ink);
}

.card:hover::after,
.card:focus-visible::after {
  width: 100%;
}

.card__media {
  background: var(--ivory);
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  margin-bottom: 1.35rem;
  overflow: hidden;
}

.card__media img {
  max-height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-inline: auto;
}

.card__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.55rem;
}

.card__num {
  font-family: var(--serif);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--taupe);
}

.card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.4rem;
  letter-spacing: -0.025em;
}

.card p {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  margin-bottom: 0.85rem;
  line-height: 1.55;
}

.card .meta {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Full-width editorial still */
.still {
  padding: 0;
  margin: 0;
}

.still picture,
.still img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  background: var(--paper);
}

.still figcaption {
  width: min(calc(100% - 3rem), var(--content));
  margin: 1rem auto 0;
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.still--band {
  position: relative;
  background: var(--chapter);
  overflow: hidden;
}

.still--band picture,
.still--band img {
  width: 100%;
  height: min(88vh, 56rem);
  max-height: none;
  object-fit: cover;
  object-position: center 45%;
  background: var(--chapter);
}

.still--band figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  margin: 0;
  padding: 5.5rem 0 2.25rem;
  color: var(--ivory);
  background: linear-gradient(180deg, transparent 0%, rgba(12, 10, 9, 0.72) 100%);
  display: flex;
  justify-content: center;
}

.still--band .band-caption {
  width: min(calc(100% - 3rem), var(--content));
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
}

.still--band .band-caption .chapter-label {
  margin: 0;
  color: rgba(244, 239, 230, 0.7);
}

.still--band .band-caption strong {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  text-transform: none;
}

.still--portrait picture,
.still--portrait img {
  max-height: min(88vh, 52rem);
  object-fit: contain;
  margin-inline: auto;
}

/* Landscape manifesto: full-width on both Story pages. */
.story-manifesto-wide {
  width: 100%;
  overflow: hidden;
  background: var(--paper);
}

.story-manifesto-wide img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: cover;
}

/* Home collection image: contained, clear, and on the site ivory */
.collection-still {
  background: var(--ivory);
  padding: 0 1.5rem clamp(4.5rem, 9vw, 7rem);
}

.collection-still picture {
  width: min(100%, 62rem);
  margin-inline: auto;
  background: var(--ivory);
}

.collection-still img {
  width: 100%;
  max-height: 34rem;
  object-fit: contain;
  background: var(--ivory);
}

.collection-still figcaption {
  width: min(100%, 62rem);
  margin: 1.25rem auto 0;
  padding-bottom: 0;
}

.collection-still .band-caption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
}

.collection-still .band-caption .chapter-label {
  margin: 0;
}

.collection-still .band-caption strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  text-transform: none;
}

.collection-still--wide {
  padding-inline: 0;
}

.collection-still--wide picture,
.collection-still--wide figcaption {
  width: 100%;
  max-width: none;
}

.collection-still--wide figcaption {
  padding-inline: max(1.5rem, calc((100% - var(--content)) / 2));
}

.collection-still--wide img {
  max-height: none;
}

/* Manifesto */
.manifesto {
  position: relative;
  overflow: hidden;
  min-height: 82vh;
  display: flex;
  align-items: center;
  padding: clamp(5.5rem, 12vw, 10rem) 0;
}

.manifesto__g {
  position: absolute;
  right: -6%;
  top: 4%;
  font-family: var(--serif);
  font-size: clamp(20rem, 48vw, 38rem);
  font-weight: 400;
  line-height: 0.72;
  color: var(--ink);
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
}

.manifesto__inner {
  position: relative;
  z-index: 1;
}

.manifesto__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(3.5rem, 8vw, 6rem);
  max-width: 42rem;
}

.manifesto blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 8.5vw, 6.5rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

.manifesto .taupe {
  color: var(--taupe);
  font-style: italic;
}

.manifesto__lockup {
  margin-top: clamp(4rem, 9vw, 6.5rem);
}

/* Chapter teaser */
.chapter-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.75rem;
  align-items: stretch;
}

.chapter-card {
  display: block;
  background: var(--chapter-card);
  color: var(--ivory);
  border: 1px solid #2c2a27;
  padding: 2.75rem 2.5rem 3rem;
  text-decoration: none;
  min-height: 18rem;
  position: relative;
}

.chapter-card:hover {
  color: var(--ivory);
  border-color: #cfc8bc;
}

.chapter-card .num {
  font-family: var(--serif);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.7;
  letter-spacing: 0.08em;
}

.chapter-card h3 {
  color: var(--ivory);
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  margin-bottom: 1.15rem;
}

.chapter-card p {
  color: #cfc8bc;
  max-width: 56rem;
}

/* Full-width presentation for the “Say what it is” chapter on the home page. */
.chapter-showcase {
  padding: 0;
}

.chapter-showcase .chapter-grid {
  width: 100%;
  max-width: none;
  gap: 0;
}

.chapter-showcase .chapter-grid > div,
.chapter-showcase .chapter-card {
  padding: clamp(4.5rem, 9vw, 8rem) max(1.5rem, calc((100% - var(--content)) / 2));
}

.chapter-showcase .chapter-card {
  min-height: clamp(22rem, 42vw, 34rem);
  border-inline: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Ingredient honesty */
.ing-list {
  border-top: 1px solid var(--rule);
}

.ing-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--rule);
}

.ing-row dt {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.ing-row dd {
  margin: 0;
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
}

.section--ink .ing-row,
.section--ink .ing-list {
  border-color: #2c2a27;
}

.section--ink .ing-row dd {
  color: rgba(244, 239, 230, 0.55);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--rule);
  padding: 5.5rem 0 2.5rem;
  background: var(--cream);
}

.footer-lockup {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding-bottom: 2.25rem;
  margin-bottom: 2.75rem;
  border-bottom: 1px solid var(--rule);
}

.footer-wordmark {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  text-decoration: none;
}

.footer-wordmark:hover {
  color: var(--ink);
}

.footer-tag {
  font-size: 0.6875rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr;
  gap: 2.75rem 2.5rem;
  margin-bottom: 3.25rem;
}

.footer-grid--simple {
  grid-template-columns: 1.2fr 1fr 1.4fr;
}

.site-footer .tag {
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.site-footer nav a {
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.site-footer nav a:hover {
  text-decoration: underline;
  text-underline-offset: 0.28em;
}

.newsletter label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.85rem;
  color: var(--ink-soft);
}

.newsletter-row {
  display: flex;
  gap: 0;
  max-width: 24rem;
  border-bottom: 1px solid var(--ink);
}

.newsletter input[type="email"] {
  flex: 1;
  min-height: 48px;
  border: 0;
  background: transparent;
  padding: 0.35rem 0;
  outline: none;
}

.newsletter .btn {
  border: 0;
  border-bottom: 0;
  background: transparent;
  color: var(--ink);
  min-height: 48px;
  padding-inline: 0.35rem 0;
}

.newsletter .btn:hover {
  background: transparent;
  color: var(--amber);
}

.opt-in {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin-top: 0.9rem;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
}

.opt-in input {
  margin-top: 0.2rem;
}

.footer-note {
  font-size: 0.875rem;
  color: var(--ink-soft);
  max-width: 42rem;
  margin-bottom: 2.25rem;
}

.legal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.75rem;
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: clamp(2.75rem, 5vw, 4rem);
  padding-bottom: 0.75rem;
  border-top: 1px solid var(--rule);
}

.legal-row a {
  text-decoration: none;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Page title band */
.page-hero {
  padding: clamp(4.75rem, 11vw, 8.5rem) 0 clamp(3rem, 6vw, 4.75rem);
  border-bottom: 1px solid var(--rule);
}

.page-hero h1 {
  max-width: 16ch;
}

.page-hero p {
  max-width: var(--measure);
  color: var(--ink-soft);
}

/* The Line — full-width photographic title */
.line-page-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: clamp(42rem, 66vw, 58rem);
  padding-block: clamp(5rem, 10vw, 8rem);
  overflow: hidden;
  border-bottom: 0;
  background: #6d5138;
}

.line-page-hero::before {
  content: "";
  position: absolute;
  inset: -2rem;
  z-index: 0;
  background: url("../img/the-line-hero.webp") center 60% / cover no-repeat;
  filter: blur(18px);
  opacity: 0.72;
  transform: scale(1.06);
}

.line-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(14, 11, 9, 0.72) 0%, rgba(14, 11, 9, 0.3) 38%, rgba(14, 11, 9, 0.06) 68%),
    linear-gradient(180deg, rgba(14, 11, 9, 0.12) 0%, rgba(14, 11, 9, 0.36) 100%);
}

.line-page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.line-page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.line-page-hero__content {
  position: relative;
  z-index: 3;
}

.line-page-hero .chapter-label,
.line-page-hero .chapter-label span,
.line-page-hero h1,
.line-page-hero p {
  color: var(--ivory);
}

.line-page-hero .chapter-label {
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.28);
}

.line-page-hero h1 {
  max-width: 10ch;
  font-size: clamp(4.5rem, 10vw, 8.5rem);
  line-height: 0.92;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.28);
}

.line-page-hero .lede {
  max-width: 32rem;
  color: rgba(244, 239, 230, 0.9);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.35);
}

.crumb {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.crumb a {
  text-decoration: none;
}

.crumb a:hover {
  text-decoration: underline;
}

/* Catalog */
.catalog {
  display: grid;
  gap: clamp(4.5rem, 9vw, 7.5rem);
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.catalog-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.catalog-item:nth-child(even) .catalog-item__media {
  order: 2;
}

.catalog-item__media {
  background: var(--ivory);
  padding: 3.25rem 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 32rem;
  overflow: hidden;
}

.catalog-item__media img {
  max-height: 38rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-inline: auto;
}

/* PDP */
.pdp {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 0;
  border-bottom: 1px solid var(--rule);
}

.pdp__gallery {
  background: var(--ivory);
  padding: clamp(2.5rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  justify-content: center;
  min-height: 78vh;
  position: relative;
}

.pdp__gallery img {
  max-height: 74vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-inline: auto;
}

.pdp__gallery .is-hidden {
  display: none;
}

.pdp__gallery--swap picture {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: inherit;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.pdp__gallery--swap picture.is-hidden {
  display: flex;
  opacity: 0;
}

.pdp__gallery--swap picture:not(.is-hidden) {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.pdp__info {
  padding: clamp(2.75rem, 6vw, 5rem) clamp(2rem, 5vw, 4.25rem);
  border-left: 1px solid var(--rule);
}

.pdp-brand {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin-bottom: 0.45rem;
}

.pdp h1 {
  font-size: clamp(2.15rem, 3.6vw, 3.15rem);
  margin-bottom: 0.4rem;
}

.pdp .subtitle {
  font-family: var(--serif);
  font-size: 1.125rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.claim-bar {
  background: var(--bar);
  color: var(--ivory);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
  margin: 0 0 0.45rem;
}

.claim-bar--thick {
  padding: 0.95rem 1rem;
  line-height: 1.5;
}

.support-line {
  font-size: 0.875rem;
  color: var(--ink-soft);
  margin: 1rem 0 1.5rem;
}

.price-note {
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.35rem;
}

.size-select {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.65rem;
}

.size-select button,
.size-select a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 6.25rem;
  border: 1px solid var(--rule);
  background: transparent;
  cursor: pointer;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.6875rem;
  text-decoration: none;
  color: inherit;
  padding: 0 1rem;
}

.size-select button[aria-pressed="true"],
.size-select a[aria-current="page"] {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--ivory);
}

.pdp-sticky {
  display: none;
}

.accordions {
  margin-top: 2.5rem;
  border-top: 1px solid var(--rule);
}

.acc {
  border-bottom: 1px solid var(--rule);
}

.acc > button {
  width: 100%;
  min-height: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: transparent;
  border: 0;
  padding: 1rem 0;
  cursor: pointer;
  text-align: left;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.acc > button span:last-child {
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1;
}

.acc__panel {
  display: none;
  padding: 0 0 1.35rem;
  color: var(--ink-soft);
  font-size: 0.975rem;
}

.acc.is-open .acc__panel {
  display: block;
}

.cross {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.pdp-essay {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  border-bottom: 1px solid var(--rule);
}

.pdp-essay__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem 5rem;
  align-items: start;
}

.pdp-essay h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
}

.pdp-essay .prose p {
  color: var(--ink-soft);
}

.pdp-cross {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.pdp-cross .card__media {
  aspect-ratio: 1 / 1;
  padding: 1.5rem;
}

.size-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

@media (max-width: 900px) {
  .pdp-essay__grid,
  .pdp-cross,
  .size-pair {
    grid-template-columns: 1fr;
  }
}

/* Story page */
.story-page {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 7.5rem) 0 5.5rem;
}

.story-page .manifesto__g {
  top: 10%;
}

.prose {
  max-width: var(--measure);
}

.prose h2 {
  margin-top: 2.75rem;
}

.prose ul {
  padding-left: 1.15rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

.prose a {
  text-decoration: underline;
}

/* How we work chapters */
.chapter-full {
  padding: clamp(5.5rem, 11vw, 9rem) 0;
}

.chapter-full + .chapter-full {
  border-top: 1px solid #2c2a27;
}

.chapter-full .num {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  opacity: 0.7;
  margin-bottom: 1.5rem;
  letter-spacing: 0.06em;
}

.chapter-full h2 {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
}

.chapter-full p {
  max-width: 38rem;
  color: #d9d2c6;
  font-size: 1.125rem;
}

.chapter-full--wide .wrap {
  width: 100%;
  max-width: none;
  padding-inline: max(1.5rem, calc((100% - var(--content)) / 2));
}

.chapter-full--wide p {
  max-width: 56rem;
}

.how-intro .ing-list {
  margin-top: 2.5rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem 5rem;
  align-items: start;
}

.contact-aside .lede {
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.form {
  display: grid;
  gap: 1.65rem;
  max-width: 36rem;
}

.form label {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  padding: 0.7rem 0 0.85rem;
  min-height: 48px;
  outline: none;
}

.form textarea {
  min-height: 10.5rem;
  resize: vertical;
}

.form .hint {
  font-size: 0.8125rem;
  color: var(--muted);
}

/* Policy tables */
.ship-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.75rem 0 2.25rem;
  font-size: 0.975rem;
}

.ship-table th,
.ship-table td {
  text-align: left;
  padding: 1.05rem 0.75rem 1.05rem 0;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}

.ship-table th {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

/* 404 / thanks */
.center-page {
  min-height: 68vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 10vw, 7rem) 0;
}

.center-page h1 {
  max-width: 14ch;
}

/* Utility */
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Film hero — mobile: copy sits on a stronger bottom scrim */
@media (max-width: 900px) {
  .hero--film {
    min-height: 100svh;
    align-items: flex-end;
    padding-bottom: 4.25rem;
  }

  .ritual__index {
    display: none;
  }

  .hero__scrim {
    background:
      linear-gradient(
        180deg,
        rgba(12, 10, 9, 0.52) 0%,
        rgba(12, 10, 9, 0.22) 28%,
        rgba(12, 10, 9, 0.55) 55%,
        rgba(12, 10, 9, 0.9) 100%
      );
  }

  .hero--film h1 {
    font-size: clamp(2.65rem, 12vw, 3.5rem);
  }

  .hero__foot {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .hero__inner {
    padding-top: 0;
    padding-bottom: 5.5rem;
  }

  .hero-discover {
    width: 11.5rem;
    height: 3.5rem;
    bottom: 1.5rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .lang-switch {
    margin-left: auto;
    margin-right: 0.15rem;
  }

  .wordmark {
    position: relative;
    z-index: 55;
  }

  .nav {
    display: none;
    position: fixed;
    top: calc(var(--header-h) + var(--announce-h));
    left: 0;
    right: 0;
    bottom: auto;
    width: auto;
    max-width: none;
    height: calc(100dvh - var(--header-h) - var(--announce-h));
    min-height: calc(100svh - var(--header-h) - var(--announce-h));
    margin: 0;
    background: var(--ivory);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 1.15rem 1.5rem 3rem;
    gap: 0.15rem;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 50;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid var(--rule);
  }

  body.nav-open .nav {
    display: flex;
  }

  .has-film .top-chrome.is-scrolled .nav,
  body:not(.has-film) .site-header.is-scrolled .nav {
    top: var(--header-h);
    height: calc(100dvh - var(--header-h));
    min-height: calc(100svh - var(--header-h));
  }

  body.nav-open .nav-toggle span {
    transform: rotate(45deg);
  }

  body.nav-open .nav-toggle span::before {
    top: 0;
    transform: rotate(90deg);
  }

  body.nav-open .nav-toggle span::after {
    opacity: 0;
  }

  body {
    background-attachment: scroll;
  }

  .nav__cta {
    border-color: var(--ink);
  }

  .hero,
  .pdp,
  .catalog-item,
  .chapter-grid,
  .footer-grid,
  .footer-grid--simple,
  .rail,
  .ritual,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .brand-story__grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .brand-story__heading h2 {
    max-width: 12ch;
  }

  .home-collection .rail {
    width: min(100%, 32rem);
  }

  .catalog-item:nth-child(even) .catalog-item__media {
    order: 0;
  }

  .pdp__info {
    border-left: 0;
    border-top: 1px solid var(--rule);
  }

  .hero {
    min-height: 0;
  }

  .hero.hero--film {
    min-height: 100svh;
    min-height: 100dvh;
  }

  .hero__media {
    min-height: 22rem;
    padding: 2rem 1.25rem;
    order: -1;
  }

  .hero__media img {
    max-height: 52vh;
  }

  .pdp-sticky {
    display: flex;
    position: sticky;
    bottom: 0;
    z-index: 30;
    background: var(--ivory);
    border-top: 1px solid var(--rule);
    padding: 0.75rem 1.25rem;
    gap: 0.75rem;
    align-items: center;
    justify-content: space-between;
  }

  .pdp-sticky .price-note {
    margin: 0;
  }

  .pdp-sticky .btn {
    flex: 1;
    max-width: 14rem;
  }

  .pdp__gallery,
  .pdp__gallery--swap {
    min-height: 62vh;
  }

  .pdp__gallery img {
    max-height: 56vh;
  }

  .catalog-item__media {
    min-height: 22rem;
    padding: 2rem 1.5rem;
  }

  .still--band img {
    height: min(70vh, 28rem);
  }

  .footer-lockup {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

@media (max-width: 600px) {
  .wrap,
  .wrap--narrow,
  .hero__inner {
    width: min(calc(100% - 2rem), var(--content));
  }

  .announce {
    letter-spacing: 0.08em;
    font-size: 0.6rem;
    padding: 0.55rem 0.85rem;
  }

  .footer-grid {
    gap: 2.25rem;
  }

  .ing-row {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .ing-row dd {
    font-size: 0.8125rem;
    text-align: left;
  }

  .page-hero h1,
  .center-page h1 {
    font-size: clamp(2.5rem, 14vw, 3.35rem);
  }

  .line-page-hero {
    min-height: 78svh;
    padding-block: 4rem;
    align-items: flex-end;
  }

  .line-page-hero__media img {
    object-fit: cover;
    object-position: center 62%;
  }

  .line-page-hero h1 {
    font-size: clamp(3.25rem, 17vw, 4.75rem);
  }

  .line-page-hero::after {
    background: linear-gradient(180deg, rgba(14, 11, 9, 0.16) 0%, rgba(14, 11, 9, 0.32) 42%, rgba(14, 11, 9, 0.82) 100%);
  }

  .still--band .band-caption {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .collection-still {
    padding-inline: 1rem;
  }

  .collection-still .band-caption {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }
}

/* ─── Mobile + tap-target polish (v4: no layout-shifting negative margins) ─── */

.site-footer nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.45rem 0;
}

.legal-row a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.35rem 0;
}

@media (max-width: 900px) {
  .nav a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 48px;
    padding: 0.85rem 0.1rem;
    margin: 0;
    font-size: 0.8125rem;
    letter-spacing: 0.18em;
  }

  .nav a.nav__cta {
    display: inline-flex;
    align-self: flex-start;
    width: auto;
    margin-top: 0.85rem;
    padding: 0.85rem 1.05rem;
    justify-content: center;
  }

  .wordmark {
    padding: 0.45rem 0;
  }

  .footer-wordmark {
    padding: 0.3rem 0;
  }
}

/* Legible small type (was 11px) */
.eyebrow,
.chapter-label,
.chapter-label span,
.card__num,
.meta,
.site-footer .tag,
.footer-tag,
.form label {
  font-size: 0.75rem;
}

.legal-row {
  font-size: 0.75rem;
}

.crumb,
.claim-bar {
  font-size: 0.75rem;
}

.crumb a {
  display: inline-block;
  padding: 0.35rem 0.15rem;
}

.section--ink .ing-row dd,
.ing-list .ing-row dd {
  font-size: 0.8125rem;
}

@media (max-width: 600px) {
  .announce {
    font-size: 0.66rem;
  }

  .page-hero .chapter-label {
    font-size: 0.78rem;
  }
}

/* Watermark must never push the page wider */
.manifesto {
  overflow: hidden;
}

@media (max-width: 900px) {
  .manifesto__g {
    font-size: clamp(15rem, 62vw, 24rem);
    right: -5%;
  }

  .still--band img {
    height: min(56vh, 22rem);
  }

  /* Shop page: simple, elegant, premium on small screens */
  .page-hero .lede {
    font-size: 1.0625rem;
  }

  .card__top {
    gap: 0.9rem;
  }

  .rail {
    gap: 3rem;
  }
}

@media (prefers-reduced-motion: no-preference) {

/* Motion — noticeable, elegant, gated */
  .reveal {
    opacity: 0;
    transform: translateY(36px);
    transition:
      opacity 1.05s var(--ease-out),
      transform 1.05s var(--ease-out);
    transition-delay: var(--stagger, 0s);
  }

  .reveal.is-in {
    opacity: 1;
    transform: none;
  }

  .card::after {
    transition: width 0.55s var(--ease);
  }

  .card__media img {
    transition: transform 1.5s var(--ease);
  }

  .card:hover .card__media img,
  .card:focus-visible .card__media img {
    transform: scale(1.055);
  }

  .card__media {
    transition: background 0.6s var(--ease);
  }

  .card:hover .card__media,
  .card:focus-visible .card__media {
    background: var(--linen);
  }

  .catalog-item__media img {
    transition: transform 1.4s var(--ease);
  }

  .catalog-item:hover .catalog-item__media img {
    transform: scale(1.04);
  }

  .chapter-card {
    transition: border-color 0.45s var(--ease), transform 0.7s var(--ease);
  }

  .chapter-card:hover {
    transform: translateY(-6px);
  }

  @keyframes hero-rise {
    from {
      opacity: 0;
      transform: translateY(28px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }

  .hero__inner > * {
    animation: hero-rise 1.15s var(--ease-out) backwards;
  }

  .hero__inner > :nth-child(1) { animation-delay: 0.18s; }
  .hero__inner > :nth-child(2) { animation-delay: 0.34s; }
  .hero__inner > :nth-child(3) { animation-delay: 0.52s; }

  .hero__video-el {
    animation: film-fade 1.4s var(--ease) both;
  }

  @keyframes film-fade {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @keyframes poster-zoom {
    from { transform: scale(1); }
    to { transform: scale(1.07); }
  }

  .hero__video.is-poster::after {
    animation: poster-zoom 28s var(--ease) alternate infinite;
  }

  .has-film .top-chrome .announce {
    transition:
      max-height 0.5s var(--ease),
      padding 0.5s var(--ease),
      opacity 0.4s var(--ease);
    max-height: 3rem;
  }

  .nav a,
  .site-footer nav a,
  .legal-row a,
  .wordmark,
  .nav-toggle span,
  .nav-toggle span::before,
  .nav-toggle span::after {
    transition: color 0.4s var(--ease), background 0.35s var(--ease);
  }

  .pdp__gallery--swap picture {
    transition: opacity 0.85s var(--ease);
  }

  .form input,
  .form textarea,
  .form select {
    transition: border-color 0.35s var(--ease);
  }

  .form input:focus,
  .form textarea:focus,
  .form select:focus {
    border-bottom-color: var(--amber);
  }
}

/* Keep the 500 mL bottle aligned with the base of the other product images. */
.card__media img[src$="gel-500.jpg"] {
  transform: translateY(1.5rem);
}

.card:hover .card__media img[src$="gel-500.jpg"],
.card:focus-visible .card__media img[src$="gel-500.jpg"] {
  transform: translateY(1.5rem) scale(1.018);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__video {
    background: url("../img/hero-poster.webp") center / cover no-repeat;
  }

  .hero__video-el {
    display: none;
  }

  .hero__video.is-poster::after {
    animation: none;
  }

  .card::after {
    display: none;
  }
}
