:root {
  --black: #050706;
  --ink: #080e0b;
  --green: #0b1a13;
  --green-2: #11251b;
  --wine: #351311;
  --wine-2: #4a1916;
  --cream: #f2eadb;
  --muted: rgba(242, 234, 219, .58);
  --gold: #c89a4b;
  --gold-light: #e0bd7a;
  --line: rgba(224, 189, 122, .18);
  --serif: "Cormorant Garamond", serif;
  --sans: "DM Sans", sans-serif;
}

* { box-sizing: border-box; }
html {
  background: var(--black);
  color-scheme: dark;
  scroll-behavior: smooth;
}
body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--sans);
  margin: 0;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; }
.sr-only {
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* Header */
.site-header {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 96px;
  left: 0;
  padding: 0 5vw;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 20;
}
.brand {
  align-items: center;
  display: inline-flex;
  gap: 9px;
  width: max-content;
}
.brand-mark {
  color: var(--gold);
  font-size: 32px;
  transform: rotate(180deg);
}
.brand b {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: .28em;
  line-height: .8;
}
.brand small {
  color: var(--gold-light);
  font-size: 6px;
  letter-spacing: .55em;
  margin-left: 3px;
}
.main-nav {
  display: flex;
  gap: 34px;
  grid-column: 2;
  justify-self: center;
}
.main-nav a {
  color: rgba(255, 255, 255, .7);
  font-size: 9px;
  letter-spacing: .16em;
  position: relative;
  text-transform: uppercase;
}
.main-nav a::after {
  background: var(--gold);
  bottom: -8px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: .25s;
  width: 100%;
}
.main-nav a:hover::after { transform: scaleX(1); }
.menu-toggle { display: none; }

/* Hero */
.hero {
  background: var(--black);
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}
.hero-visual {
  height: 100%;
  inset: 0 0 0 44%;
  overflow: hidden;
  position: absolute;
}
.hero-visual::before {
  background:
    linear-gradient(90deg, var(--black), transparent 28%),
    linear-gradient(0deg, rgba(0, 0, 0, .68), transparent 45%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}
.hero-slides {
  height: 100%;
  position: relative;
  width: 100%;
}
.hero-visual img {
  filter: brightness(.68) saturate(.85);
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: 50% 52%;
  opacity: 0;
  position: absolute;
  transform: scale(1.08);
  transition: opacity 1.1s ease, transform 7s ease;
  width: 100%;
  z-index: 0;
}
.hero-visual img.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 0;
}
.hero-image-label {
  bottom: 34px;
  color: rgba(255, 255, 255, .52);
  font-size: 7px;
  letter-spacing: .2em;
  position: absolute;
  right: 5vw;
  text-transform: uppercase;
  transition: opacity .45s ease;
  writing-mode: vertical-rl;
  z-index: 2;
}
.hero-image-label.is-changing { opacity: 0; }
.hero-copy {
  left: 15vw;
  max-width: 700px;
  position: absolute;
  top: 50%;
  transform: translateY(-43%);
  z-index: 3;
}
.eyebrow {
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .2em;
  margin: 0 0 20px;
  text-transform: uppercase;
}
.eyebrow::before { content: "✦"; margin-right: 10px; }
h1, h2, h3 { font-family: var(--serif); }
h1 {
  font-size: clamp(62px, 6.5vw, 106px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .82;
  margin: 0;
}
h1 em, h2 em {
  color: var(--gold-light);
  font-weight: 500;
}
.hero-text {
  color: rgba(242, 234, 219, .68);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.5;
  margin: 32px 0 0;
  max-width: 410px;
}
.round-link {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  bottom: -84px;
  color: rgba(255, 255, 255, .74);
  display: flex;
  height: 138px;
  justify-content: center;
  position: absolute;
  right: 15px;
  text-align: center;
  text-transform: uppercase;
  transition: .3s;
  width: 138px;
}
.round-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: rotate(8deg);
}
.round-link span {
  font-size: 7px;
  letter-spacing: .14em;
  line-height: 1.5;
}
.round-link i {
  font-size: 18px;
  font-style: normal;
  margin-left: 8px;
}
.hero-rail {
  color: rgba(255, 255, 255, .35);
  font-size: 7px;
  left: 5vw;
  letter-spacing: .28em;
  margin: 0;
  position: absolute;
  text-transform: uppercase;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  z-index: 4;
}
.hero-socials {
  bottom: 42px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: absolute;
  right: 3.2vw;
  z-index: 4;
}
.hero-socials a {
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  display: grid;
  font-size: 7px;
  height: 26px;
  place-items: center;
  text-transform: uppercase;
  width: 26px;
}
.hero-count {
  align-items: center;
  bottom: 36px;
  display: flex;
  gap: 14px;
  left: 15vw;
  position: absolute;
  z-index: 4;
}
.hero-count p {
  margin: 0;
}
.hero-count strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}
.hero-count span {
  color: var(--muted);
  font-size: 8px;
  margin-left: 5px;
}
.hero-count button {
  background: none;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  color: rgba(255, 255, 255, .7);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 18px;
  height: 30px;
  line-height: 1;
  padding: 0;
  transition: .25s;
  width: 30px;
}
.hero-count button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.hero-scroll {
  bottom: 38px;
  color: rgba(255, 255, 255, .5);
  font-size: 7px;
  left: 50%;
  letter-spacing: .18em;
  position: absolute;
  text-transform: uppercase;
  z-index: 4;
}
.hero-scroll i {
  color: var(--gold);
  font-style: normal;
  margin-left: 8px;
}

/* Shared editorial sections */
.editorial-section { padding: 105px 6vw; }
h2 {
  font-size: clamp(48px, 5vw, 74px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .9;
  margin: 0;
}
.text-link {
  color: var(--cream);
  display: inline-block;
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.text-link span {
  color: var(--gold);
  font-size: 16px;
  margin-left: 6px;
  transition: margin .2s;
}
.text-link:hover span { margin-left: 12px; }

/* Story */
.story { background: var(--wine); }
.story-heading {
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  padding-bottom: 48px;
}
.story-layout {
  display: grid;
  grid-template-columns: .8fr 1.3fr .7fr;
  min-height: 520px;
  position: relative;
}
.story-portrait {
  align-self: end;
  margin: -45px 0 0 9vw;
  position: relative;
  z-index: 2;
}
.story-portrait img {
  display: block;
  filter: brightness(.76) saturate(.78);
  height: 470px;
  object-fit: cover;
  width: 100%;
}
.story-portrait figcaption,
.story-detail::after {
  color: rgba(255, 255, 255, .45);
  font-size: 7px;
  letter-spacing: .15em;
  margin-top: 12px;
  text-transform: uppercase;
}
.story-content {
  align-self: center;
  padding: 35px 6vw 0;
}
.story-stats {
  display: grid;
  gap: 38px 28px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 58px;
}
.story-stats > div { border-bottom: 1px solid rgba(255, 255, 255, .2); padding-bottom: 14px; }
.story-stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
}
.story-stats span {
  color: rgba(255, 255, 255, .45);
  display: block;
  font-size: 7px;
  letter-spacing: .12em;
  margin-top: 7px;
  text-transform: uppercase;
}
.story-copy {
  display: grid;
  gap: 30px;
  grid-template-columns: .8fr 1.2fr;
}
.story-copy p { margin: 0; }
.story-intro {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.25;
}
.story-copy p:not(.story-intro) {
  color: rgba(255, 255, 255, .52);
  font-size: 10px;
  line-height: 1.8;
}
.story-copy .text-link {
  grid-column: 2;
  margin-top: -10px;
}
.story-detail {
  align-self: end;
  margin: 0;
}
.story-detail img {
  display: block;
  filter: brightness(.65) saturate(.7);
  height: 300px;
  object-fit: cover;
  width: 100%;
}

/* Origin */
.origin {
  align-items: center;
  background: var(--green);
  display: grid;
  gap: 6vw;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.origin-lede {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.45;
  margin: 28px 0 0;
  max-width: 420px;
}
.origin-facts {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr 1fr;
  margin: 48px 0 0;
  max-width: 460px;
}
.origin-facts > div {
  border-top: 1px solid var(--line);
  padding: 18px 18px 18px 0;
}
.origin-facts dt {
  color: var(--gold);
  font-size: 7px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.origin-facts dd {
  font-family: var(--serif);
  font-size: 20px;
  margin: 8px 0 0;
}
.origin-visual {
  margin: 0;
  position: relative;
}
.origin-frame {
  overflow: hidden;
  position: relative;
  height: 560px;
}
.origin-visual img {
  display: block;
  filter: brightness(.78) saturate(.92);
  height: 128%;
  left: 0;
  object-fit: cover;
  object-position: center 42%;
  position: absolute;
  top: -14%;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.04);
  transition: filter .8s ease;
  width: 100%;
  will-change: transform;
}
.origin-visual.is-visible img {
  filter: brightness(.88) saturate(1);
}
.origin-visual figcaption {
  color: rgba(255, 255, 255, .45);
  font-size: 7px;
  letter-spacing: .15em;
  margin-top: 14px;
  text-transform: uppercase;
}

/* Collection */
.collection { background: var(--black); }
.section-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 55px;
}
.collection-intro {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 4px;
  max-width: 320px;
}
.product-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
}
.product-card {
  background: var(--green);
  border: 1px solid var(--line);
  cursor: pointer;
  overflow: hidden;
  transition: .35s;
}
.product-card:nth-child(even) { margin-top: 45px; }
.product-card:hover {
  border-color: rgba(224, 189, 122, .5);
  box-shadow: 0 24px 55px rgba(0, 0, 0, .5);
  transform: translateY(-6px);
}
.product-art {
  background: #090b09;
  overflow: hidden;
  position: relative;
}
.pack-slider {
  display: flex;
  transform: translateX(0);
  transition: transform .65s cubic-bezier(.45, .05, .2, 1);
  width: 200%;
}
.pack-slider img {
  aspect-ratio: 2 / 3;
  display: block;
  object-fit: cover;
  width: 50%;
  flex: 0 0 50%;
}
.product-art.is-back .pack-slider { transform: translateX(-50%); }
@media (hover: hover) and (pointer: fine) {
  .product-card:hover .pack-slider {
    transform: translateX(-50%);
  }
}
.product-info { padding: 23px 20px 20px; }
.product-kicker {
  color: var(--gold);
  font-size: 7px;
  letter-spacing: .14em;
  margin: 0;
  text-transform: uppercase;
}
.product-info h3 {
  font-size: 26px;
  font-weight: 500;
  margin: 5px 0 0;
}
.product-info h3 em {
  color: var(--gold-light);
  font-size: 15px;
  font-style: normal;
}
.product-desc {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
  margin: 10px 0 0;
}

/* Craft */
.craft {
  background: var(--ink);
}
.craft-heading {
  margin-bottom: 48px;
}
.craft-lede {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 4px;
  max-width: 360px;
}
.craft-steps {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}
.craft-steps li {
  border-top: 1px solid var(--line);
  padding: 28px 28px 20px 0;
  position: relative;
}
.craft-steps li + li {
  border-left: 1px solid var(--line);
  padding-left: 28px;
}
.craft-steps span {
  color: rgba(224, 189, 122, .45);
  font-family: var(--serif);
  font-size: 13px;
}
.craft-steps h3 {
  font-size: 24px;
  font-weight: 500;
  margin: 28px 0 14px;
}
.craft-steps p {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.7;
  margin: 0;
  max-width: 240px;
}

/* Promise */
.promise {
  background:
    linear-gradient(90deg, rgba(5, 7, 6, .96) 18%, rgba(5, 7, 6, .86) 60%, rgba(5, 7, 6, .8)),
    url("/images/promise-texture.jpg") center / cover fixed no-repeat;
  display: grid;
  gap: 8vw;
  grid-template-columns: .75fr 1.25fr;
  position: relative;
}
/* Soft joins into the black sections above and below so the photograph never
   ends on a hard seam while the band scrolls past. */
.promise::before,
.promise::after {
  background: linear-gradient(var(--black), rgba(5, 7, 6, 0));
  content: "";
  height: 110px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}
.promise::after {
  bottom: 0;
  top: auto;
  transform: scaleY(-1);
}
.promise > * { position: relative; z-index: 1; }
.promise-intro > p:last-child {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.5;
  margin-top: 28px;
  max-width: 390px;
}
.promise-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, 1fr);
}
.promise-grid > div {
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 0 24px 8px;
  position: relative;
}
/* The column rule is drawn rather than bordered so it can wipe downwards as
   the card reveals. */
.promise-grid > div::before {
  background: var(--line);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .9s cubic-bezier(.22, .61, .36, 1) var(--reveal-delay, 0ms);
  width: 1px;
}
.promise-grid > div.is-visible::before { transform: scaleY(1); }
.promise-grid span {
  color: rgba(224, 189, 122, .4);
  font-family: var(--serif);
  font-size: 11px;
  position: absolute;
  right: 14px;
  top: 0;
}
.promise-grid i {
  color: var(--gold-light);
  font-size: 25px;
  margin: 48px 0 48px;
}
.promise-grid h3 {
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 14px;
}
.promise-grid p {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.75;
  margin: 0;
  max-width: 210px;
}

/* Kitchen */
.kitchen {
  background: var(--wine);
}
.kitchen-heading {
  margin-bottom: 36px;
}
.kitchen-lede {
  color: rgba(255, 255, 255, .58);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 4px;
  max-width: 340px;
}
.kitchen-list {
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.kitchen-list article {
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  padding: 28px 36px 28px 0;
}
.kitchen-list article:nth-child(even) {
  border-left: 1px solid rgba(255, 255, 255, .12);
  padding-left: 36px;
}
.kitchen-spice {
  color: var(--gold);
  font-size: 8px;
  letter-spacing: .18em;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.kitchen-list h3 {
  font-size: 28px;
  font-weight: 500;
  margin: 0;
}
.kitchen-list p:last-child {
  color: rgba(255, 255, 255, .55);
  font-size: 12px;
  line-height: 1.7;
  margin: 12px 0 0;
  max-width: 420px;
}

/* Lineup */
.lineup {
  background: var(--black);
  padding: 0;
}
.lineup figure {
  margin: 0;
  position: relative;
}
.lineup img {
  display: block;
  filter: brightness(.92) saturate(1.05);
  height: min(62vh, 640px);
  object-fit: cover;
  width: 100%;
}
.lineup figcaption {
  bottom: 28px;
  color: rgba(255, 255, 255, .5);
  font-size: 8px;
  left: 6vw;
  letter-spacing: .18em;
  position: absolute;
  text-transform: uppercase;
}

/* Newsletter and footer */
.newsletter {
  align-items: end;
  background: var(--wine);
  display: grid;
  gap: 8vw;
  grid-template-columns: 1fr 1fr;
  padding: 90px 10vw;
}
.newsletter h2 { font-size: clamp(46px, 5vw, 70px); }
.newsletter > div:last-child > p {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 16px;
}
.newsletter-form {
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  display: flex;
  max-width: 520px;
}
.newsletter-form input {
  background: transparent;
  border: 0;
  color: var(--cream);
  flex: 1;
  outline: 0;
  padding: 15px 0;
}
.newsletter-form input::placeholder { color: rgba(255, 255, 255, .38); }
.newsletter-form button {
  background: transparent;
  border: 0;
  color: var(--gold-light);
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.form-message {
  color: var(--gold-light) !important;
  font-size: 10px !important;
  min-height: 16px;
}
footer {
  background: #020403;
  color: var(--muted);
  display: grid;
  font-size: 10px;
  gap: 45px;
  grid-template-columns: 2fr repeat(3, 1fr);
  line-height: 1.8;
  padding: 75px 6vw 25px;
}
footer h4 {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: .1em;
  margin: 0 0 14px;
  text-transform: uppercase;
}
footer a { display: block; margin: 5px 0; }
footer a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid var(--line);
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  padding-top: 20px;
}

/* Product modal */
.modal-overlay {
  background: rgba(0, 0, 0, .86);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: .3s;
  z-index: 99;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.product-modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 5vh 5vw;
  pointer-events: none;
  position: fixed;
  transition: opacity .3s;
  z-index: 100;
}
.product-modal.open { opacity: 1; pointer-events: auto; }
.modal-panel {
  background: var(--green);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  grid-template-rows: minmax(0, 1fr);
  max-height: 90vh;
  max-width: 1020px;
  position: relative;
  transform: translateY(16px);
  transition: transform .3s;
  width: 100%;
}
.product-modal.open .modal-panel { transform: translateY(0); }
.modal-close {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--gold-light);
  display: inline-flex;
  font-family: serif;
  font-size: 34px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  position: absolute;
  right: 12px;
  top: 7px;
  z-index: 5;
}
.modal-gallery {
  background: #090b09;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}
.modal-slider-wrap {
  flex: 1;
  min-height: 280px;
  overflow: hidden;
  position: relative;
  touch-action: pan-y;
}
.modal-slider {
  display: flex;
  height: 100%;
  transition: transform .55s cubic-bezier(.45, .05, .2, 1);
  width: 200%;
}
.modal-slider[data-view="front"] { transform: translateX(0); }
.modal-slider[data-view="back"] { transform: translateX(-50%); }
.modal-slide {
  flex: 0 0 50%;
  height: 100%;
  object-fit: cover;
  width: 50%;
}
.modal-thumbs { display: grid; grid-template-columns: 1fr 1fr; }
.modal-thumbs button {
  background: var(--black);
  border: 0;
  border-top: 1px solid var(--line);
  color: var(--gold-light);
  font-size: 8px;
  letter-spacing: .12em;
  padding: 14px 6px;
  text-transform: uppercase;
}
.modal-thumbs button.active {
  background: var(--gold);
  color: var(--black);
}
.modal-swipe-hint {
  display: none;
}
.modal-body {
  min-height: 0;
  overflow-y: auto;
  padding: 44px 44px 38px;
}
.modal-kicker {
  color: var(--gold);
  font-size: 8px;
  letter-spacing: .16em;
  margin: 0;
  text-transform: uppercase;
}
.modal-body h2 { font-size: 46px; margin: 8px 0 0; }
.modal-lede {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
}
.modal-claims {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}
.modal-claims li {
  border: 1px solid var(--line);
  color: var(--gold-light);
  font-size: 7px;
  letter-spacing: .12em;
  padding: 7px 10px;
  text-transform: uppercase;
}
.modal-section {
  border-top: 1px solid var(--line);
  margin-top: 28px;
  padding-top: 22px;
}
.modal-section h4 {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: .1em;
  margin: 0 0 15px;
  text-transform: uppercase;
}
.modal-details {
  display: grid;
  gap: 10px 20px;
  grid-template-columns: 110px 1fr;
  margin: 0;
}
.modal-details dt {
  color: var(--gold);
  font-size: 7px;
  letter-spacing: .12em;
  padding-top: 3px;
  text-transform: uppercase;
}
.modal-details dd {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
  margin: 0;
}
.modal-note {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .08em;
  margin: -8px 0 12px;
}
.modal-nutrition { border-collapse: collapse; width: 100%; }
.modal-nutrition th,
.modal-nutrition td {
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 400;
  padding: 9px 2px;
  text-align: left;
}
.modal-nutrition td { color: var(--gold-light); text-align: right; }
.modal-foot {
  color: rgba(242, 234, 219, .35);
  font-size: 9px;
  line-height: 1.7;
  margin-top: 24px;
}

/* Scroll reveals */
[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity .9s cubic-bezier(.22, .61, .36, 1) var(--reveal-delay, 0ms),
    transform .9s cubic-bezier(.22, .61, .36, 1) var(--reveal-delay, 0ms);
}
[data-reveal="left"] { transform: translate3d(-34px, 0, 0); }
[data-reveal="right"] { transform: translate3d(48px, 0, 0); }
[data-reveal="scale"] { transform: scale(.94); }
[data-reveal="fade"] { transform: none; }
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.origin-facts > div:nth-child(1) { --reveal-delay: 80ms; }
.origin-facts > div:nth-child(2) { --reveal-delay: 160ms; }
.origin-facts > div:nth-child(3) { --reveal-delay: 240ms; }
.origin-facts > div:nth-child(4) { --reveal-delay: 320ms; }

.promise-grid > div:nth-child(2),
.product-card:nth-child(2),
.craft-steps li:nth-child(2),
.kitchen-list article:nth-child(2) { --reveal-delay: 130ms; }
.promise-grid > div:nth-child(3),
.product-card:nth-child(3),
.craft-steps li:nth-child(3),
.kitchen-list article:nth-child(3) { --reveal-delay: 260ms; }
.promise-grid > div:nth-child(4),
.product-card:nth-child(4),
.craft-steps li:nth-child(4),
.kitchen-list article:nth-child(4) { --reveal-delay: 390ms; }
.newsletter > div:last-child { --reveal-delay: 160ms; }
footer > div:nth-child(2) { --reveal-delay: 90ms; }
footer > div:nth-child(3) { --reveal-delay: 180ms; }
footer > div:nth-child(4) { --reveal-delay: 270ms; }
.footer-bottom { --reveal-delay: 340ms; }

@media (prefers-reduced-motion: reduce) {
  .pack-slider { transition: none; }
  .hero-visual img {
    transform: none;
    transition: opacity .35s ease;
  }
  .hero-visual img.is-active { transform: none; }
  .hero-image-label { transition: none; }
  .origin-visual img {
    height: 100%;
    position: relative;
    top: 0;
    transform: none;
    will-change: auto;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .promise-grid > div::before {
    transform: scaleY(1);
    transition: none;
  }
  html { scroll-behavior: auto; }
}

@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  /* Fixed attachment is unreliable and jerky on touch scrolling. */
  .promise {
    background-attachment: scroll;
    grid-template-columns: 1fr;
  }
  .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .story-layout { grid-template-columns: .8fr 1.2fr; }
  .story-detail { display: none; }
  .origin { grid-template-columns: 1fr; }
  .origin-frame { height: 420px; }
  .craft-steps { grid-template-columns: repeat(2, 1fr); }
  .craft-steps li:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }
  .craft-steps li:nth-child(even) {
    border-left: 1px solid var(--line);
    padding-left: 28px;
  }
  .craft-steps li:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .modal-panel {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    max-height: min(88vh, 88dvh);
    overflow: hidden;
  }
  .modal-gallery {
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .modal-slider-wrap {
    flex: none;
    height: min(36vh, 300px);
  }
  .modal-thumbs {
    align-content: center;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
    padding: 0;
  }
  .modal-thumbs button {
    border: 1px solid transparent;
    border-top: 1px solid var(--line);
    min-height: 44px;
  }
  .modal-body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 28px 28px 32px;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    height: 72px;
    padding: 0 20px;
  }
  .menu-toggle {
    background: transparent;
    border: 0;
    color: var(--cream);
    display: block;
    font-size: 16px;
    height: 40px;
    order: -1;
    width: 40px;
  }
  .site-header > .brand { margin: auto; }
  .main-nav {
    background: var(--black);
    flex-direction: column;
    gap: 24px;
    grid-column: 1 / -1;
    left: 0;
    padding: 30px 7vw;
    position: absolute;
    top: 72px;
    transform: scaleY(0);
    transform-origin: top;
    transition: .25s;
    width: 100%;
  }
  .main-nav.open { transform: scaleY(1); }
  .hero { min-height: 790px; }
  .hero-visual {
    height: 53%;
    inset: auto 0 0;
  }
  .hero-visual::before {
    background: linear-gradient(var(--black), transparent 38%, rgba(0, 0, 0, .45));
  }
  .hero-copy {
    left: 28px;
    right: 28px;
    top: 142px;
    transform: none;
  }
  h1 { font-size: clamp(51px, 15vw, 66px); }
  .hero-text { font-size: 15px; max-width: 340px; }
  .round-link {
    bottom: -118px;
    height: 105px;
    right: 5px;
    width: 105px;
  }
  .hero-rail,
  .hero-count,
  .hero-scroll,
  .hero-image-label { display: none; }
  .hero-socials { bottom: 20px; right: 18px; }
  .editorial-section { padding: 72px 20px; }
  h2 { font-size: 46px; }
  .story-heading { padding-bottom: 30px; }
  .story-layout { display: block; }
  .story-portrait { margin: 35px 0 0; }
  .story-portrait img { height: 420px; }
  .story-content { padding: 42px 0 0; }
  .story-stats { margin-bottom: 36px; }
  .story-copy { display: block; }
  .story-copy p:not(.story-intro) { margin-top: 20px; }
  .story-copy .text-link { margin-top: 25px; }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }
  .product-grid { grid-template-columns: 1fr; }
  .product-card:nth-child(even) { margin-top: 0; }
  .origin-facts { grid-template-columns: 1fr; }
  .origin-frame { height: 320px; }
  .craft-heading { margin-bottom: 42px; }
  .craft-steps { grid-template-columns: 1fr; }
  .craft-steps li,
  .craft-steps li:nth-child(even) {
    border-left: 0;
    padding: 28px 0 8px;
  }
  .craft-steps h3 { margin-top: 18px; }
  .promise-grid { grid-template-columns: 1fr; }
  .promise-grid > div { min-height: 220px; padding-bottom: 25px; }
  .promise-grid i { margin: 35px 0 48px; }
  .kitchen-list { grid-template-columns: 1fr; }
  .kitchen-list article,
  .kitchen-list article:nth-child(even) {
    border-left: 0;
    padding: 32px 0;
  }
  .kitchen-list h3 { font-size: 26px; }
  .lineup img { height: 280px; }
  .newsletter {
    align-items: start;
    gap: 35px;
    grid-template-columns: 1fr;
    padding: 72px 20px;
  }
  footer { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .product-modal {
    align-items: center;
    padding:
      max(10px, env(safe-area-inset-top, 0px))
      10px
      max(10px, env(safe-area-inset-bottom, 0px));
  }
  .modal-panel {
    border: 1px solid var(--line);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    height: auto;
    max-height: calc(100svh - 20px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
    max-width: 100%;
    min-height: 0;
    overflow: hidden;
    width: 100%;
  }
  .modal-gallery {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    overflow: hidden;
  }
  .modal-slider-wrap {
    flex: 0 0 auto;
    height: min(32svh, 240px);
    touch-action: pan-y;
  }
  .modal-thumbs {
    display: grid;
    flex: 0 0 auto;
    gap: 0;
    grid-template-columns: 1fr 1fr;
    padding: 0;
  }
  .modal-thumbs button {
    border: 0;
    border-top: 1px solid var(--line);
    min-height: 44px;
    padding: 12px 8px;
  }
  .modal-swipe-hint {
    color: rgba(255, 255, 255, .45);
    display: block;
    font-size: 8px;
    letter-spacing: .14em;
    margin: 0;
    padding: 8px 12px 10px;
    text-align: center;
    text-transform: uppercase;
  }
  .modal-body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 18px 18px 22px;
  }
  .modal-body h2 { font-size: 30px; }
  .modal-lede { font-size: 15px; }
  .modal-close {
    background: rgba(5, 7, 6, .82);
    border: 1px solid rgba(224, 189, 122, .35);
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .45);
    color: var(--cream);
    font-size: 26px;
    height: 40px;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 40px;
    z-index: 6;
  }
  .product-art { touch-action: pan-y; }
}

@media (max-width: 480px) {
  .brand b { font-size: 17px; }
  .hero { min-height: 760px; }
  .hero-copy { left: 20px; right: 20px; }
  .story-portrait img { height: 380px; }
  .product-info { padding: 20px 18px; }
  .modal-body { padding: 16px 16px 20px; }
  .modal-body h2 { font-size: 28px; }
  .modal-slider-wrap { height: min(30svh, 210px); }
  .modal-details { gap: 4px 0; grid-template-columns: 1fr; }
  .modal-details dd { margin-bottom: 10px; }
  footer { gap: 30px; grid-template-columns: 1fr 1fr; }
  footer > div:nth-child(4) { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}
