:root {
  --paper: #f4efe5;
  --ink: #1f2720;
  --muted: #6d665c;
  --forest: #17241b;
  --bronze: #a98242;
  --cherry: #7b1e2f;
  --line: rgba(31, 39, 32, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, Avenir, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.55), rgba(227, 217, 197, 0.28) 46%, rgba(255, 255, 255, 0.34)),
    linear-gradient(14deg, rgba(183, 163, 126, 0.09), transparent 38%, rgba(112, 92, 61, 0.05)),
    var(--paper);
  background-size: auto;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

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

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

button,
input {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 58px 1fr 46px;
  align-items: center;
  gap: 24px;
  min-height: 84px;
  padding: 14px clamp(22px, 5vw, 64px);
  background: rgba(244, 239, 229, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  width: 46px;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 54px);
  color: #25241e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.main-nav a,
.text-link {
  position: relative;
  width: max-content;
}

.main-nav a::after,
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
}

.history-text a:not(.button),
.story-v2-text a:not(.button),
.story-v2-split a:not(.button),
.site-footer nav a,
.text-link {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  color: #72592b;
}

.icon-link,
.nav-toggle {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.icon-link svg,
.nav-toggle svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-link {
  position: relative;
}

.cart-link span {
  position: absolute;
  top: -2px;
  right: -7px;
  display: grid;
  place-items: center;
  min-width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bronze);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
}

.nav-toggle {
  display: none;
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 0 clamp(14px, 3vw, 48px);
  background: var(--paper);
}

.hero-card {
  position: relative;
  min-height: clamp(340px, 38vw, 590px);
  overflow: hidden;
  background: var(--forest);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(34px, 8vw, 120px);
  align-items: center;
  padding: clamp(58px, 8vw, 108px) clamp(34px, 8vw, 112px) clamp(50px, 7vw, 92px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: #7b622f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
}

h1 {
  max-width: 650px;
  font-size: clamp(52px, 7vw, 96px);
}

.intro-actions {
  max-width: 560px;
}

.intro-actions p,
.rupture-copy p,
.product-feature p,
.story-copy p,
.science-panel p,
.journal-list h3 {
  margin: 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  align-items: center;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 30px;
  background: var(--forest);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button:hover {
  background: #243426;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #72592b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link::after {
  bottom: -6px;
}

.text-link:not(.on-dark) {
  color: #72592b;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 0 clamp(30px, 6vw, 92px) 56px;
}

.benefits article {
  display: grid;
  justify-items: center;
  gap: 9px;
  min-height: 132px;
  padding: 0 28px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.benefits article:last-child {
  border-right: 0;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  object-fit: contain;
}

.benefits h2 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.benefits p {
  max-width: 150px;
  margin: 0;
  color: #393832;
  font-size: 13px;
  line-height: 1.45;
}

.rupture {
  display: grid;
  grid-template-columns: 0.95fr 1.65fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.32);
}

.rupture-copy,
.science-panel {
  padding: clamp(46px, 6vw, 78px) clamp(30px, 4vw, 64px);
}

.rupture-copy h2 {
  max-width: 390px;
  margin-bottom: 26px;
  font-size: clamp(35px, 4vw, 54px);
}

.rupture-copy p {
  max-width: 380px;
  margin-bottom: 40px;
  color: #4d4a42;
}

.comparison {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: clamp(46px, 6vw, 78px) 28px;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.comparison-visual {
  width: 100%;
  border: 1px solid rgba(31, 39, 32, 0.08);
  box-shadow: 0 18px 44px rgba(31, 39, 32, 0.08);
}

.compare-lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.compare-item {
  display: grid;
  justify-items: start;
  text-align: left;
}

.compare-item p {
  margin-bottom: 24px;
  color: #7b622f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.compare-item ul {
  margin: 0;
  padding-left: 20px;
  color: #403d36;
  font-size: 13px;
  text-align: left;
}

.science-panel {
  display: flex;
  min-height: 440px;
  flex-direction: column;
  justify-content: center;
  background: var(--forest);
  color: #f5eee0;
}

.science-panel > p:first-of-type {
  margin-bottom: 22px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.science-panel h2 {
  margin: 14px 0 0;
  color: var(--bronze);
  font-family: var(--sans);
  font-size: clamp(48px, 6vw, 74px);
  font-weight: 300;
  line-height: 1;
}

.science-panel > span {
  margin-bottom: 28px;
  color: #c7a86a;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.science-panel p:nth-of-type(2) {
  max-width: 370px;
  margin-bottom: 34px;
  color: #ede4d0;
}

.on-dark {
  color: #c7a86a;
}

.products-section {
  padding: clamp(56px, 7vw, 94px) clamp(28px, 6vw, 88px);
}

.section-kicker {
  text-align: center;
}

.section-kicker::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  margin: 24px auto 0;
  background: var(--bronze);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 72px);
  margin-top: 42px;
}

.product-feature {
  display: grid;
  grid-template-columns: minmax(170px, 0.75fr) minmax(220px, 1fr);
  gap: clamp(22px, 3vw, 48px);
  align-items: center;
}

.product-feature.torregal {
  grid-template-columns: minmax(220px, 0.95fr) minmax(220px, 1fr);
}

.product-image {
  display: grid;
  place-items: end center;
  min-height: 400px;
}

.product-image img {
  max-height: 390px;
  object-fit: contain;
  filter: drop-shadow(0 24px 30px rgba(42, 34, 22, 0.16));
}

.product-image.multi img {
  width: min(900px, 156%);
  max-width: 156%;
  max-height: 560px;
  object-fit: contain;
  object-position: center;
  transform: translateX(-6%);
  transform-origin: center;
}

.product-feature h2 {
  margin-bottom: 25px;
  font-size: clamp(34px, 3.5vw, 50px);
}

.product-feature p:not(.eyebrow) {
  max-width: 350px;
  margin-bottom: 30px;
  color: #49463e;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  min-height: 520px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.3);
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(46px, 7vw, 92px) clamp(34px, 7vw, 88px);
}

.story-copy h2 {
  max-width: 520px;
  margin-bottom: 26px;
  font-size: clamp(40px, 5vw, 66px);
}

.story-copy p {
  max-width: 530px;
  margin-bottom: 36px;
  color: #46433d;
}

.story-section > img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

.journal-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 6vw, 82px);
  padding: clamp(56px, 8vw, 96px) clamp(34px, 7vw, 96px);
}

.journal-section h2 {
  max-width: 500px;
  font-size: clamp(38px, 5vw, 64px);
}

.journal-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.journal-card {
  position: relative;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 150px;
  gap: 26px;
  align-items: center;
  min-height: 118px;
  padding: 26px 30px;
  background: rgba(255, 255, 255, 0.34);
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
}

.journal-card::after {
  content: "→";
  position: absolute;
  right: 24px;
  top: 50%;
  color: var(--bronze);
  font-size: 24px;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.journal-card:hover {
  background: rgba(255, 255, 255, 0.64);
  box-shadow: inset 4px 0 0 var(--bronze);
}

.journal-card:hover::after {
  transform: translate(5px, -50%);
}

.journal-list span {
  color: var(--cherry);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journal-list h3 {
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.08;
}

.journal-card em {
  padding-right: 34px;
  color: #72592b;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.newsletter {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: grid;
  place-items: center;
  padding: 42px 24px;
  background: var(--forest);
  color: #fff;
  text-align: center;
}

.newsletter-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 36, 27, 0.78), rgba(38, 48, 36, 0.86)),
    url("assets/images/hero-essence.png") left center / cover;
  opacity: 0.9;
}

.newsletter-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.newsletter h2 {
  font-size: clamp(34px, 5vw, 52px);
}

.newsletter p {
  margin: 12px 0 28px;
  color: #ede4d0;
}

.newsletter form {
  display: grid;
  grid-template-columns: 1fr 170px;
  width: min(560px, 100%);
  min-height: 52px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.newsletter input {
  width: 100%;
  border: 0;
  padding: 0 22px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  outline: 0;
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.82);
}

.newsletter button {
  border: 0;
  background: var(--bronze);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.form-note {
  min-height: 22px;
  margin-bottom: 0 !important;
  font-size: 13px;
}

.site-footer {
  display: grid;
  grid-template-columns: 58px 1fr 190px;
  gap: 30px;
  align-items: start;
  padding: 28px clamp(28px, 6vw, 88px) 24px;
}

.footer-brand {
  width: 46px;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 14px 36px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer p {
  grid-column: 2;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.socials {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.social-link {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
}

.social-link img {
  width: 34px;
  height: 34px;
  object-fit: cover;
  border-radius: 8px;
  filter: saturate(0.7) contrast(1.05) brightness(0.72);
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.social-link:hover img {
  filter: saturate(0.8) contrast(1.08) brightness(0.88);
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 54px 1fr 42px;
  }

  .main-nav {
    gap: 18px;
    font-size: 10px;
  }

  .benefits,
  .rupture,
  .products-grid,
  .journal-section {
    grid-template-columns: 1fr;
  }

  .benefits {
    gap: 1px;
    padding-inline: 24px;
    background: var(--line);
  }

  .benefits article {
    min-height: auto;
    padding: 28px;
    border-right: 0;
    background: var(--paper);
  }

  .comparison {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

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

  .story-section > img {
    max-height: 560px;
  }

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

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

  .site-footer nav {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .socials {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 48px 1fr 42px;
    min-height: 76px;
    padding: 14px 18px;
  }

  .brand {
    width: 42px;
  }

  .nav-toggle {
    display: grid;
    justify-self: center;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px 22px 22px;
    background: rgba(244, 239, 229, 0.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
  }

  .main-nav a {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
  }

  .header-actions {
    gap: 8px;
  }

  .hero-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    padding: 0 8px;
  }

  .hero-card {
    min-height: 132px;
  }

  .intro-section {
    grid-template-columns: 1fr;
    padding-inline: 24px;
  }

  h1 {
    font-size: clamp(48px, 14vw, 72px);
  }

  .button-row {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .journal-card {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
    padding-right: 58px;
  }

  .comparison {
    gap: 28px;
  }

  .compare-lists {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .product-feature {
    text-align: left;
  }

  .product-image {
    min-height: 300px;
    place-items: center;
  }

  .product-image img,
  .product-image.multi img {
    max-height: 300px;
  }

  .product-image.multi img {
    width: min(600px, 128%);
    max-width: 128%;
    max-height: 400px;
    transform: scale(1);
  }

  .newsletter form {
    grid-template-columns: 1fr;
    border: 0;
    gap: 10px;
  }

  .newsletter input,
  .newsletter button {
    min-height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.75);
  }
}

@media (max-width: 520px) {
  body {
    font-size: 15px;
  }

  .site-header {
    grid-template-columns: 44px 44px 38px;
    gap: 6px;
  }

  .brand {
    width: 38px;
  }

  .hero-card {
    min-height: 104px;
  }

  .intro-section,
  .products-section,
  .story-copy,
  .journal-section,
  .rupture-copy,
  .science-panel {
    padding-inline: 22px;
  }

  .button {
    width: 100%;
    padding-inline: 18px;
    text-align: center;
  }

  .benefits {
    padding-inline: 0;
  }

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

.history-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: calc(100vh - 84px);
  border-bottom: 1px solid var(--line);
}

.history-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(58px, 8vw, 108px) clamp(34px, 7vw, 96px);
}

.history-hero-copy h1 {
  max-width: 720px;
  margin-bottom: 34px;
  font-size: clamp(58px, 7.5vw, 108px);
}

.history-hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: #46433d;
  font-size: 18px;
}

.history-hero > img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.history-manifesto,
.history-origin {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 96px);
  padding: clamp(62px, 8vw, 112px) clamp(34px, 7vw, 96px);
  border-bottom: 1px solid var(--line);
}

.history-manifesto h2,
.history-origin h2 {
  max-width: 620px;
  font-size: clamp(42px, 5.4vw, 76px);
}

.history-text {
  display: grid;
  gap: 24px;
  align-content: start;
}

.history-text p {
  max-width: 680px;
  margin: 0;
  color: #46433d;
  font-size: 17px;
}

.history-text .button {
  width: max-content;
  margin-top: 14px;
}

.history-inline-video {
  display: grid;
  gap: 12px;
  width: min(100%, 560px);
  margin-top: 6px;
}

.history-inline-video video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--forest);
  border: 1px solid var(--line);
}

.history-inline-video.vertical {
  width: min(100%, 360px);
}

.history-inline-video.vertical video {
  aspect-ratio: 9 / 16;
}

.history-inline-video p {
  color: #6a6258;
  font-size: 13px;
}

.history-section-photo {
  margin: 8px 0 0;
}

.history-section-photo img {
  width: min(100%, 620px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
}

.history-youtube-card {
  position: relative;
  display: block;
  width: min(100%, 620px);
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--forest);
  color: #fff;
  cursor: pointer;
}

.history-youtube-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.history-youtube-card span {
  position: absolute;
  inset: auto 22px 22px auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  background: rgba(23, 36, 27, 0.88);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.history-youtube-card iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.history-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.28);
}

.history-values article {
  min-height: 360px;
  padding: clamp(38px, 5vw, 68px);
  border-right: 1px solid var(--line);
}

.history-values article:last-child {
  border-right: 0;
}

.history-values span {
  display: block;
  margin-bottom: 32px;
  color: var(--bronze);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.history-values h2 {
  margin-bottom: 24px;
  font-size: clamp(32px, 4vw, 52px);
}

.history-values p {
  margin: 0;
  color: #46433d;
}

.history-image-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: clamp(12px, 2vw, 28px);
  border-bottom: 1px solid var(--line);
}

.history-image-band img {
  width: 100%;
  height: clamp(260px, 34vw, 520px);
  object-fit: cover;
}

@media (max-width: 1100px) {
  .history-hero,
  .history-manifesto,
  .history-origin,
  .history-values {
    grid-template-columns: 1fr;
  }

  .history-hero {
    min-height: auto;
  }

  .history-hero > img {
    min-height: 520px;
  }

  .history-values article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .history-values article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 820px) {
  .history-hero-copy,
  .history-manifesto,
  .history-origin {
    padding-inline: 24px;
  }

  .history-hero-copy h1 {
    font-size: clamp(48px, 13vw, 74px);
  }

  .history-hero > img {
    min-height: 380px;
  }

  .history-image-band {
    gap: 5px;
    padding: 8px;
  }

  .history-image-band img {
    height: 132px;
  }
}

@media (max-width: 520px) {
  .history-hero > img {
    min-height: 320px;
  }

  .history-image-band img {
    height: 104px;
  }

.history-text .button {
  width: 100%;
  }
}

.story-v2-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: calc(100vh - 84px);
  border-bottom: 1px solid var(--line);
}

.story-v2-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(58px, 8vw, 108px) clamp(34px, 7vw, 96px);
}

.story-v2-hero-copy h1 {
  max-width: 760px;
  margin-bottom: 34px;
  font-size: clamp(54px, 7vw, 102px);
}

.story-v2-hero-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: #46433d;
  font-size: 18px;
}

.story-v2-hero > img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.story-v2-split,
.story-v2-flow {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 96px);
  padding: clamp(62px, 8vw, 112px) clamp(34px, 7vw, 96px);
  border-bottom: 1px solid var(--line);
}

.story-v2-split h2,
.story-v2-flow h2,
.story-v2-section-heading h2,
.story-v2-conclusion h2 {
  max-width: 760px;
  font-size: clamp(40px, 5.4vw, 76px);
}

.story-v2-text {
  display: grid;
  gap: 24px;
  align-content: start;
}

.story-v2-text p,
.story-v2-flow p,
.story-v2-section-heading p,
.story-v2-conclusion p {
  max-width: 720px;
  margin: 0;
  color: #46433d;
  font-size: 17px;
}

.story-v2-text a:not(.text-link) {
  color: #72592b;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.story-v2-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.28);
}

.story-v2-timeline article {
  min-height: 300px;
  padding: clamp(28px, 4vw, 54px);
  border-right: 1px solid var(--line);
}

.story-v2-timeline article:last-child {
  border-right: 0;
}

.story-v2-timeline span,
.story-v2-metrics span,
.story-v2-video-placeholder span {
  display: block;
  margin-bottom: 24px;
  color: var(--bronze);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-v2-timeline h2 {
  margin-bottom: 18px;
  font-size: clamp(24px, 2.6vw, 36px);
}

.story-v2-timeline p {
  margin: 0;
  color: #46433d;
}

.story-v2-media,
.story-v2-conclusion {
  padding: clamp(62px, 8vw, 112px) clamp(34px, 7vw, 96px);
  border-bottom: 1px solid var(--line);
}

.story-v2-section-heading {
  display: grid;
  gap: 24px;
  margin-bottom: 42px;
}

.story-v2-video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.story-v2-video-grid.compact {
  grid-template-columns: 1.4fr 1fr 1fr;
}

.story-v2-video-grid article {
  min-height: 310px;
  background: rgba(255, 255, 255, 0.36);
  border: 1px solid var(--line);
}

.story-v2-video-grid video {
  width: 100%;
  height: 230px;
  object-fit: cover;
  background: var(--forest);
}

.story-v2-video-grid h3 {
  padding: 22px;
  font-size: clamp(24px, 2.4vw, 34px);
}

.story-v2-video-grid p {
  margin: -8px 22px 22px;
  color: #514d45;
  font-size: 14px;
  line-height: 1.7;
}

.story-v2-video-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
}

.story-v2-video-placeholder h3 {
  padding: 0;
}

.story-v2-video-placeholder p {
  margin: 12px 0 0;
}

.story-v2-video-plan {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.story-v2-video-plan article {
  min-height: 260px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.36);
  border: 1px solid var(--line);
}

.story-v2-video-plan h3 {
  margin-bottom: 18px;
  font-size: clamp(24px, 2.4vw, 34px);
}

.story-v2-video-plan p {
  margin: 0;
  color: #514d45;
  font-size: 15px;
  line-height: 1.75;
}

.story-v2-flow {
  background: var(--forest);
  color: #f5eee0;
}

.story-v2-flow .eyebrow,
.story-v2-flow h2,
.story-v2-flow p {
  color: inherit;
}

.story-v2-flow p {
  color: #ede4d0;
}

.story-v2-metrics {
  display: grid;
  gap: 14px;
}

.story-v2-metrics article {
  padding: 24px;
  border: 1px solid rgba(245, 238, 224, 0.22);
}

.story-v2-metrics strong {
  display: block;
  margin-bottom: 12px;
  color: var(--bronze);
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 400;
  line-height: 1;
}

.story-v2-metrics p {
  color: #ede4d0;
}

.story-v2-conclusion {
  display: grid;
  justify-items: start;
  gap: 26px;
}

@media (max-width: 1100px) {
  .story-v2-hero,
  .story-v2-split,
  .story-v2-flow,
  .story-v2-timeline {
    grid-template-columns: 1fr;
  }

  .story-v2-hero {
    min-height: auto;
  }

  .story-v2-hero > img {
    min-height: 520px;
  }

  .story-v2-timeline article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .story-v2-timeline article:last-child {
    border-bottom: 0;
  }

  .story-v2-video-grid,
  .story-v2-video-grid.compact,
  .story-v2-video-plan {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .story-v2-hero-copy,
  .story-v2-split,
  .story-v2-flow,
  .story-v2-media,
  .story-v2-conclusion {
    padding-inline: 24px;
  }

  .story-v2-hero-copy h1 {
    font-size: clamp(46px, 12vw, 72px);
  }

  .story-v2-hero > img {
    min-height: 380px;
  }

  .story-v2-video-grid,
  .story-v2-video-grid.compact,
  .story-v2-video-plan {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .story-v2-hero > img {
    min-height: 320px;
  }
}

.flow-page {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.55), rgba(221, 211, 190, 0.24) 52%, rgba(255, 255, 255, 0.35)),
    var(--paper);
}

.flow-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: center;
  min-height: calc(100vh - 84px);
  padding: clamp(62px, 8vw, 118px) clamp(28px, 7vw, 98px);
  border-bottom: 1px solid var(--line);
}

.flow-hero-copy h1 {
  max-width: 780px;
  font-size: clamp(58px, 8vw, 118px);
}

.flow-hero-copy > p {
  max-width: 650px;
  margin: 28px 0 0;
  color: #45413a;
  font-size: clamp(18px, 1.5vw, 22px);
}

.flow-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  align-items: center;
  margin-top: 38px;
}

.flow-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.flow-trust-row span,
.flow-product-card span,
.flow-source-grid span,
.flow-offer aside span {
  display: inline-flex;
  color: var(--bronze);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.flow-trust-row span {
  padding: 9px 12px;
  border: 1px solid var(--line);
}

.flow-product-card {
  display: grid;
  gap: 28px;
  justify-items: center;
  padding: clamp(30px, 5vw, 58px);
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid var(--line);
}

.flow-product-card img {
  width: min(74%, 360px);
  filter: drop-shadow(0 32px 46px rgba(31, 39, 32, 0.18));
}

.flow-product-card p,
.flow-offer aside p {
  margin: 12px 0 0;
  color: #514d45;
  font-size: 14px;
}

.flow-problem,
.flow-neuro,
.flow-mechanism,
.flow-stack,
.flow-ritual,
.flow-proof,
.flow-offer,
.flow-faq {
  padding: clamp(62px, 8vw, 112px) clamp(28px, 7vw, 98px);
  border-bottom: 1px solid var(--line);
}

.flow-problem,
.flow-neuro,
.flow-stack,
.flow-ritual,
.flow-offer {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.flow-problem h2,
.flow-neuro h2,
.flow-mechanism h2,
.flow-stack h2,
.flow-ritual h2,
.flow-proof h2,
.flow-offer h2,
.flow-faq h2 {
  max-width: 820px;
  font-size: clamp(42px, 5.6vw, 82px);
}

.flow-problem-grid,
.flow-state-list,
.flow-stack-list,
.flow-steps,
.flow-faq-list {
  display: grid;
  gap: 16px;
}

.flow-problem-grid article,
.flow-state-list article,
.flow-stack-list article,
.flow-steps li,
.flow-faq-list article {
  padding: 28px;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid var(--line);
}

.flow-problem-grid span,
.flow-steps span {
  display: block;
  margin-bottom: 22px;
  color: var(--bronze);
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1;
}

.flow-problem-grid h3,
.flow-state-list strong,
.flow-stack-list h3,
.flow-faq-list h3 {
  display: block;
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1;
}

.flow-problem-grid p,
.flow-neuro p,
.flow-section-heading p,
.flow-stack p,
.flow-steps p,
.flow-proof p,
.flow-offer p,
.flow-faq-list p {
  margin: 0;
  color: #4f4a42;
}

.flow-neuro {
  background: var(--forest);
  color: #f5eee0;
}

.flow-neuro .eyebrow,
.flow-neuro h2,
.flow-neuro p {
  color: inherit;
}

.flow-neuro-panel {
  display: grid;
  gap: 24px;
}

.flow-state-list article {
  background: rgba(245, 238, 224, 0.07);
  border-color: rgba(245, 238, 224, 0.2);
}

.flow-state-list p {
  color: #ede4d0;
}

.flow-section-heading {
  display: grid;
  gap: 24px;
  max-width: 980px;
  margin-bottom: 42px;
}

.flow-metric-grid,
.flow-source-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.flow-metric-grid article {
  min-height: 310px;
  padding: 30px;
  background: var(--forest);
  color: #f5eee0;
}

.flow-metric-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--bronze);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.flow-metric-grid strong {
  display: block;
  margin-bottom: 20px;
  color: #d0a557;
  font-family: var(--serif);
  font-size: clamp(54px, 7vw, 96px);
  font-weight: 400;
  line-height: 0.9;
}

.flow-metric-grid p {
  margin: 0;
  color: #ede4d0;
}

.flow-stack-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.flow-stack-list img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 26px;
}

.flow-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-steps li {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  min-height: 118px;
}

.flow-steps span {
  margin: 0;
}

.flow-proof {
  background: rgba(255, 255, 255, 0.28);
}

.flow-source-grid a {
  min-height: 190px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.36);
  border: 1px solid var(--line);
  color: #2b2d26;
  font-weight: 700;
}

.flow-source-grid span {
  margin-bottom: 24px;
}

.flow-offer {
  background: var(--forest);
  color: #f5eee0;
}

.flow-offer .eyebrow,
.flow-offer h2,
.flow-offer p {
  color: inherit;
}

.flow-offer ul {
  display: grid;
  gap: 12px;
  margin: 30px 0 36px;
  padding: 0;
  color: #ede4d0;
  list-style: none;
}

.flow-offer li {
  padding-left: 22px;
  border-left: 2px solid var(--bronze);
}

.flow-offer aside {
  padding: clamp(28px, 4vw, 42px);
  background: rgba(245, 238, 224, 0.07);
  border: 1px solid rgba(245, 238, 224, 0.2);
}

.flow-offer aside p {
  color: #ede4d0;
}

.flow-faq-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .flow-hero,
  .flow-problem,
  .flow-neuro,
  .flow-stack,
  .flow-ritual,
  .flow-offer {
    grid-template-columns: 1fr;
  }

  .flow-hero {
    min-height: auto;
  }

  .flow-metric-grid,
  .flow-source-grid,
  .flow-stack-list,
  .flow-faq-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .flow-hero,
  .flow-problem,
  .flow-neuro,
  .flow-mechanism,
  .flow-stack,
  .flow-ritual,
  .flow-proof,
  .flow-offer,
  .flow-faq {
    padding-inline: 24px;
  }

  .flow-hero-copy h1 {
    font-size: clamp(48px, 13vw, 72px);
  }

  .flow-steps li {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
