:root {
  --ink: #15110b;
  --ink-soft: #2d271f;
  --cream: #f8f4e9;
  --paper: #fffdf7;
  --honey: #f6ad00;
  --honey-deep: #e79000;
  --orange: #ff671f;
  --line: rgba(21, 17, 11, 0.16);
  --max: 1480px;
  --gutter: clamp(1.25rem, 3.5vw, 4.75rem);
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--paper);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement {
  min-height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.35rem var(--gutter);
  background: var(--ink);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.announcement p {
  margin: 0;
}

.announcement a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: 5.25rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 0.75rem var(--gutter);
  background: rgba(248, 244, 233, 0.88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: min-height 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  min-height: 4.5rem;
  border-color: var(--line);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 2.65rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: var(--honey);
  border-radius: 50% 50% 46% 54%;
  font-family: var(--serif);
  font-size: 1.85rem;
  font-style: italic;
  line-height: 1;
  transform: rotate(-7deg);
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
}

.brand-copy small {
  margin-top: 0.35rem;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.4vw, 2.75rem);
}

.desktop-nav a {
  position: relative;
  font-size: 0.84rem;
  font-weight: 700;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 2px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1rem 0.8rem 1.15rem;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 700;
  transition: background 0.25s ease, color 0.25s ease;
}

.nav-cta:hover {
  background: var(--honey);
  color: var(--ink);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - 7.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(27rem, 0.97fr);
  gap: clamp(2rem, 4vw, 6rem);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3.5rem, 6vw, 7rem) var(--gutter) 5rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-label {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 2rem;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.25rem;
  height: 2px;
  background: var(--honey);
  content: "";
}

.hero-title {
  max-width: 8ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.5rem, 8.5vw, 9.75rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.78;
}

.title-line {
  display: block;
}

.title-line--accent {
  color: var(--orange);
  font-style: italic;
  transform: translateX(0.35em);
}

.hero-lead {
  max-width: 38rem;
  margin: clamp(2rem, 4vw, 3.75rem) 0 0;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 3.75rem;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button--dark {
  background: var(--ink);
  color: var(--paper);
}

.button--dark:hover {
  background: var(--honey);
  color: var(--ink);
}

.button--cream {
  background: var(--cream);
  color: var(--ink);
}

.button--cream:hover {
  background: var(--honey);
}

.text-link {
  padding: 0.5rem 0;
  border-bottom: 1px solid currentColor;
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 38rem;
  margin-top: clamp(2.5rem, 5vw, 5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.hero-proof div {
  display: grid;
  gap: 0.1rem;
  padding-right: 1rem;
  border-right: 1px solid var(--line);
}

.hero-proof div:not(:first-child) {
  padding-left: 1.5rem;
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof strong {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1;
}

.hero-proof span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: min(70vw, 47rem);
  display: grid;
  place-items: center;
  isolation: isolate;
  background: var(--honey);
  overflow: hidden;
}

.hero-visual::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: radial-gradient(rgba(21, 17, 11, 0.15) 1px, transparent 1px);
  background-size: 22px 22px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-visual::after {
  position: absolute;
  z-index: -1;
  width: 70%;
  aspect-ratio: 1;
  border: 1px solid rgba(21, 17, 11, 0.28);
  border-radius: 50%;
  content: "";
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(21, 17, 11, 0.14);
  border-radius: 50%;
}

.orbit-one {
  width: 100%;
  aspect-ratio: 1;
}

.orbit-two {
  width: 130%;
  aspect-ratio: 1;
}

.hero-jar {
  width: min(78%, 40rem);
  filter: drop-shadow(0 2.75rem 2.2rem rgba(65, 39, 0, 0.3));
  transform: translateY(1.5rem) rotate(2deg);
  will-change: transform;
}

.hero-stamp {
  position: absolute;
  top: 5%;
  left: 5%;
  margin: 0;
  font-size: clamp(0.68rem, 0.9vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.35;
}

.hero-note {
  position: absolute;
  right: clamp(0.75rem, 3vw, 2rem);
  bottom: clamp(1rem, 4vw, 3rem);
  width: min(13rem, 42%);
  padding: 1rem;
  background: var(--paper);
  box-shadow: 0 1rem 3rem rgba(84, 53, 0, 0.13);
}

.hero-note span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--orange);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-note strong {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  font-weight: 400;
  line-height: 1.1;
}

.hero-index {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.scroll-cue {
  position: absolute;
  bottom: 1.4rem;
  left: var(--gutter);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-cue i {
  width: 4rem;
  height: 1px;
  background: var(--ink);
  animation: cue 1.7s ease-in-out infinite;
  transform-origin: left;
}

@keyframes cue {
  0%, 100% { transform: scaleX(0.35); }
  50% { transform: scaleX(1); }
}

.ticker {
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
  transform: rotate(-1.1deg) scale(1.02);
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 2.25rem;
  padding: 1rem 0;
  animation: ticker 28s linear infinite;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.ticker-track i {
  color: var(--honey);
  font-style: normal;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section-pad {
  padding: clamp(6rem, 11vw, 11rem) var(--gutter);
}

.manifest,
.story,
.reviews,
.contact {
  max-width: var(--max);
  margin: 0 auto;
}

.section-label span {
  display: grid;
  width: 2.1rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.62rem;
}

.section-label--light {
  color: var(--cream);
}

.manifest {
  display: grid;
  grid-template-columns: 0.5fr 2fr 0.72fr;
  gap: clamp(2rem, 6vw, 7rem);
  align-items: end;
}

.manifest .section-label {
  align-self: start;
}

.manifest-kicker {
  margin: 0 0 1.5rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.display-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.display-title em,
.section-heading h2 em,
.contact-title h2 em {
  color: var(--orange);
  font-weight: 400;
}

.manifest-aside {
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.products {
  max-width: none;
  background: var(--ink);
  color: var(--cream);
}

.section-heading,
.product-stage,
.product-tabs {
  width: min(100%, calc(var(--max) - (var(--gutter) * 2)));
  margin-inline: auto;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.65fr 1.55fr 0.75fr;
  gap: 3rem;
  align-items: end;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.3rem, 6vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.section-heading > p {
  max-width: 24rem;
  margin: 0;
  color: rgba(248, 244, 233, 0.67);
  font-size: 0.92rem;
}

.product-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.8fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: center;
  margin-top: clamp(4rem, 8vw, 8rem);
}

.product-media {
  position: relative;
  min-height: clamp(28rem, 52vw, 42rem);
  display: grid;
  place-items: center;
  isolation: isolate;
  background: #23201b;
  overflow: hidden;
}

.product-media::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.045));
  content: "";
}

.product-media img {
  z-index: 2;
  width: min(74%, 34rem);
  max-height: 36rem;
  object-fit: contain;
  filter: drop-shadow(0 2.25rem 1.75rem rgba(0, 0, 0, 0.4));
}

.product-halo {
  position: absolute;
  z-index: -1;
  width: 68%;
  aspect-ratio: 1;
  background: var(--honey);
  border-radius: 50%;
  transition: background 0.45s ease, transform 0.45s ease;
}

.product-number,
.product-weight {
  position: absolute;
  z-index: 3;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.product-number {
  top: 1.5rem;
  left: 1.5rem;
}

.product-weight {
  right: 1.5rem;
  bottom: 1.5rem;
}

.product-content {
  max-width: 32rem;
}

.product-type {
  margin: 0;
  color: var(--honey);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.product-content h3 {
  margin: 0.3rem 0 1.25rem;
  font-family: var(--serif);
  font-size: clamp(4.25rem, 8vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.product-description {
  margin: 0;
  color: rgba(248, 244, 233, 0.72);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
}

.taste-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.75rem 0 2.5rem;
}

.taste-notes span {
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(248, 244, 233, 0.22);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 4rem;
  border-top: 1px solid rgba(248, 244, 233, 0.18);
}

.product-tab {
  display: grid;
  gap: 0.2rem;
  padding: 1.5rem 1rem;
  border: 0;
  border-right: 1px solid rgba(248, 244, 233, 0.18);
  background: transparent;
  color: rgba(248, 244, 233, 0.5);
  text-align: left;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.product-tab:last-child {
  border-right: 0;
}

.product-tab:hover,
.product-tab.is-active {
  background: var(--honey);
  color: var(--ink);
}

.product-tab span,
.product-tab small {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-tab strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
}

.story-image {
  position: relative;
  min-height: 39rem;
  background: var(--honey);
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  min-height: 39rem;
  object-fit: cover;
  object-position: left center;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.story-image:hover img {
  transform: scale(1.025);
}

.story-image span {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: 0.7rem 0.9rem;
  background: var(--paper);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-lead {
  max-width: 36rem;
  margin: 2rem 0 0;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
}

.story-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3rem;
  border-top: 1px solid var(--line);
}

.story-facts article {
  padding: 1.4rem 1rem 0 0;
}

.story-facts article + article {
  padding-left: 1rem;
  border-left: 1px solid var(--line);
}

.story-facts strong {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1;
}

.story-facts p {
  margin: 0.65rem 0 0;
  font-size: 0.72rem;
  line-height: 1.45;
}

.process {
  max-width: none;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 8vw, 10rem);
  background: var(--honey);
}

.process-intro {
  max-width: 36rem;
}

.process-intro > p {
  max-width: 28rem;
  margin: 2rem 0 0;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(21, 17, 11, 0.28);
}

.process-step {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.25rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(21, 17, 11, 0.28);
}

.process-step > span {
  font-size: 0.72rem;
  font-weight: 800;
}

.process-step h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
}

.process-step p {
  max-width: 38rem;
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
}

.editorial-break {
  min-height: 40rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
}

.editorial-art {
  display: grid;
  place-items: center;
  padding: clamp(2rem, 6vw, 7rem);
  background: var(--orange);
  overflow: hidden;
}

.editorial-art img {
  width: min(100%, 44rem);
  filter: drop-shadow(0 2rem 2rem rgba(71, 24, 0, 0.28));
}

.editorial-break blockquote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: clamp(3rem, 8vw, 9rem);
}

.editorial-break blockquote p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.5vw, 6.5rem);
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.editorial-break cite {
  margin-top: 2rem;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reviews {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(3rem, 8vw, 9rem);
}

.reviews-heading {
  position: sticky;
  top: 7rem;
  align-self: start;
}

.reviews-heading > p {
  max-width: 29rem;
  margin: 2rem 0 0;
}

.review-stack {
  display: grid;
  gap: 1rem;
}

.review-card {
  min-height: 22rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.5rem, 4vw, 3.25rem);
  background: var(--paper);
  border: 1px solid var(--line);
}

.review-card--gold {
  background: var(--honey);
  border-color: var(--honey);
}

.stars {
  font-size: 0.86rem;
  letter-spacing: 0.16em;
}

.review-card blockquote {
  margin: 2rem 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3.25rem);
  line-height: 1.1;
}

.review-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.72rem;
}

.review-card footer span {
  opacity: 0.6;
}

.contact {
  max-width: none;
  padding-bottom: 2rem;
  background: var(--ink);
  color: var(--cream);
}

.contact-top {
  max-width: var(--max);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin: 0 auto;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(248, 244, 233, 0.22);
}

.contact-top p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-top a {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 3rem);
}

.contact-grid {
  max-width: var(--max);
  display: grid;
  grid-template-columns: 1.4fr 0.65fr 0.45fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: end;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.contact-title h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(5rem, 11vw, 12rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.7;
}

.contact-details {
  font-size: 0.9rem;
}

.contact-details > p {
  margin: 0 0 2rem;
  color: rgba(248, 244, 233, 0.65);
}

.contact-details > a {
  display: inline-block;
  margin-bottom: 1rem;
  border-bottom: 1px solid currentColor;
  font-size: 1.25rem;
  font-weight: 700;
}

.contact-details address {
  color: rgba(248, 244, 233, 0.65);
  font-style: normal;
}

.contact-social {
  display: grid;
  gap: 0.75rem;
}

.contact-social a {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(248, 244, 233, 0.22);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer {
  max-width: var(--max);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 2rem;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(248, 244, 233, 0.22);
}

.footer-brand {
  font-family: var(--serif);
  font-size: 3rem;
}

.footer-brand span {
  vertical-align: top;
  font-family: var(--sans);
  font-size: 0.6rem;
}

.site-footer p,
.site-footer a {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.site-footer a {
  justify-self: end;
}

@media (max-width: 1100px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    z-index: 102;
    justify-self: end;
    width: 2.75rem;
    height: 2.75rem;
    display: grid;
    place-content: center;
    gap: 0.4rem;
    padding: 0;
    border: 0;
    background: var(--ink);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 1.15rem;
    height: 2px;
    background: var(--cream);
    transition: transform 0.25s ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem var(--gutter) 3rem;
    background: var(--honey);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(21, 17, 11, 0.24);
    font-family: var(--serif);
    font-size: clamp(2.8rem, 9vw, 5rem);
    line-height: 1.1;
  }

  .mobile-menu a span {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 800;
  }

  .hero {
    grid-template-columns: 1fr 0.85fr;
  }

  .manifest {
    grid-template-columns: 0.4fr 1.6fr;
  }

  .manifest-aside {
    grid-column: 2;
  }

  .section-heading {
    grid-template-columns: 0.55fr 1.45fr;
  }

  .section-heading > p {
    grid-column: 2;
  }

  .story-facts {
    grid-template-columns: 1fr;
  }

  .story-facts article + article {
    padding-left: 0;
    border-left: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr 0.6fr;
  }

  .contact-social {
    grid-column: 2;
  }
}

@media (max-width: 800px) {
  html {
    scroll-padding-top: 4.5rem;
  }

  .announcement {
    display: none;
  }

  .site-header {
    min-height: 4.5rem;
  }

  body.menu-open .site-header {
    background: var(--honey);
    border-color: rgba(21, 17, 11, 0.24);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 3.25rem;
  }

  .hero-title {
    font-size: clamp(4.4rem, 20vw, 7rem);
  }

  .hero-visual {
    min-height: min(115vw, 42rem);
  }

  .hero-jar {
    width: min(80%, 32rem);
  }

  .scroll-cue {
    display: none;
  }

  .manifest,
  .story,
  .process,
  .editorial-break,
  .reviews {
    grid-template-columns: 1fr;
  }

  .manifest {
    align-items: start;
  }

  .manifest-aside {
    grid-column: auto;
  }

  .product-stage {
    grid-template-columns: 1fr;
  }

  .product-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-tab:nth-child(2) {
    border-right: 0;
  }

  .product-tab:nth-child(-n+2) {
    border-bottom: 1px solid rgba(248, 244, 233, 0.18);
  }

  .story-image,
  .story-image img {
    min-height: 29rem;
  }

  .story-facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .story-facts article + article {
    padding-left: 0.75rem;
    border-left: 1px solid var(--line);
  }

  .process-intro {
    max-width: none;
  }

  .editorial-art {
    min-height: 28rem;
  }

  .editorial-break blockquote {
    min-height: 28rem;
  }

  .reviews-heading {
    position: static;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-title {
    grid-column: 1 / -1;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 560px) {
  :root {
    --gutter: 1.15rem;
  }

  .hero {
    padding-bottom: 3rem;
  }

  .eyebrow {
    margin-bottom: 1.5rem;
  }

  .hero-title {
    font-size: clamp(4rem, 21vw, 6.4rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 1rem;
  }

  .button {
    width: 100%;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-proof div:not(:first-child) {
    padding-left: 0.75rem;
  }

  .hero-proof strong {
    font-size: 1.85rem;
  }

  .hero-proof span {
    font-size: 0.56rem;
  }

  .hero-visual {
    min-height: 115vw;
  }

  .hero-note {
    width: 47%;
  }

  .section-pad {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }

  .manifest .section-label {
    margin-bottom: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .section-heading > p {
    grid-column: auto;
    margin-top: 1rem;
  }

  .product-media {
    min-height: 110vw;
  }

  .product-content h3 {
    font-size: 4.4rem;
  }

  .product-tabs {
    grid-template-columns: 1fr;
  }

  .product-tab,
  .product-tab:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(248, 244, 233, 0.18);
  }

  .product-tab:last-child {
    border-bottom: 0;
  }

  .story-image,
  .story-image img {
    min-height: 23rem;
  }

  .story-facts {
    grid-template-columns: 1fr;
  }

  .story-facts article + article {
    padding-left: 0;
    border-left: 0;
  }

  .process-step {
    grid-template-columns: 2.5rem 1fr;
  }

  .editorial-art,
  .editorial-break blockquote {
    min-height: 23rem;
  }

  .review-card {
    min-height: 20rem;
  }

  .contact-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-title {
    grid-column: auto;
  }

  .contact-title h2 {
    font-size: clamp(5rem, 25vw, 8rem);
  }

  .contact-social {
    grid-column: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer a {
    justify-self: start;
  }

  .site-footer p {
    grid-column: auto;
    grid-row: auto;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
