@font-face {
  font-family: "Epilogue";
  src: url("../fonts/Epilogue-Cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Baskervville";
  src: url("../fonts/Baskervville-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans";
  src: url("../fonts/NotoSans-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --bg: #eef1ee;
  --surface: #f7f8f5;
  --surface-strong: #e2e8e3;
  --ink: #13231d;
  --muted: #52635c;
  --line: #cbd4ce;
  --accent: #245d4b;
  --accent-strong: #194638;
  --accent-soft: #d6e4dc;
  --overlay: rgba(9, 25, 19, 0.56);
  --shadow: 0 24px 70px rgba(20, 50, 39, 0.12);
  --page: min(1380px, calc(100vw - 48px));
  --nav-height: 72px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #101915;
    --surface: #17231e;
    --surface-strong: #203129;
    --ink: #eef4f0;
    --muted: #aebdb5;
    --line: #31463c;
    --accent: #8fc4aa;
    --accent-strong: #b6dec9;
    --accent-soft: #243d32;
    --overlay: rgba(6, 15, 11, 0.62);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: "Baskervville", Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.intro-open,
body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

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

::selection {
  background: var(--accent);
  color: var(--surface);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-180%);
  padding: 10px 16px;
  background: var(--ink);
  color: var(--bg);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 30;
  inset: 16px 0 auto;
  width: var(--page);
  min-height: var(--nav-height);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 10px 12px 10px 18px;
  border: 1px solid color-mix(in srgb, var(--line) 82%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(20px) saturate(135%);
  -webkit-backdrop-filter: blur(20px) saturate(135%);
  box-shadow: 0 16px 50px color-mix(in srgb, var(--ink) 9%, transparent);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 130px;
}

.brand img {
  width: 112px;
  max-height: 42px;
  object-fit: contain;
}

@media (prefers-color-scheme: dark) {
  .brand img {
    filter: brightness(0) invert(1);
  }
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
  transition: color 220ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  inset: auto 0 4px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms var(--ease);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.menu-button span,
.menu-button::before {
  content: "";
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 220ms ease;
}

.menu-open .menu-button::before {
  transform: translateY(3px) rotate(45deg);
}

.menu-open .menu-button span {
  transform: translateY(-3px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 220ms var(--ease), background 220ms ease, color 220ms ease, border-color 220ms ease;
}

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

.button:active {
  transform: translateY(1px) scale(0.98);
}

.button-primary {
  background: var(--accent-strong);
  color: #f4f8f5;
}

.button-primary:hover {
  background: var(--accent);
}

.button-secondary {
  border-color: var(--line);
  background: color-mix(in srgb, var(--surface) 80%, transparent);
  color: var(--ink);
}

.button-small {
  min-height: 42px;
  padding-inline: 17px;
  font-size: 14px;
}

.page-main {
  overflow: clip;
}

.container {
  width: var(--page);
  margin-inline: auto;
}

.kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.display,
.page-title,
.section-title,
.article-title {
  margin: 0;
  max-width: 18ch;
  font-weight: 520;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.display {
  font-size: clamp(54px, 7.2vw, 112px);
}

.page-title {
  font-size: clamp(48px, 6vw, 92px);
}

.section-title {
  font-size: clamp(40px, 4.6vw, 72px);
}

.article-title {
  max-width: 20ch;
  font-size: clamp(44px, 6.2vw, 88px);
}

.lead {
  max-width: 58ch;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.48;
}

.body-copy {
  max-width: 65ch;
  color: var(--muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  align-items: center;
  gap: clamp(34px, 6vw, 96px);
  padding: 112px max(24px, calc((100vw - min(1380px, calc(100vw - 48px))) / 2)) 42px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-block: 36px;
}

.hero .lead {
  max-width: 43ch;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 620px;
  overflow: hidden;
  background: var(--surface-strong);
}

.hero-visual img,
.hero-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8, 24, 18, 0.2));
  pointer-events: none;
}

.hero-note {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  max-width: 270px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 4px;
  background: rgba(18, 38, 30, 0.68);
  color: #f4f8f5;
  font-size: 14px;
  backdrop-filter: blur(14px);
}

.intro {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  background: #151816;
  opacity: 0;
  visibility: hidden;
  transition: opacity 700ms var(--ease), visibility 700ms;
}

.intro.is-visible {
  opacity: 1;
  visibility: visible;
}

.intro video,
.intro-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 9, 7, 0.06), rgba(5, 9, 7, 0.3));
  pointer-events: none;
}

.intro-skip {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 26px;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(16, 25, 21, 0.55);
  color: #f5f8f6;
  backdrop-filter: blur(12px);
}

.intro.is-leaving {
  opacity: 0;
}

.manifesto {
  padding: clamp(90px, 12vw, 170px) 0;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(30px, 7vw, 120px);
  align-items: start;
}

.manifesto-copy {
  max-width: 24ch;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.manifesto-words {
  display: grid;
  gap: 18px;
  font-size: clamp(42px, 6.5vw, 104px);
  font-weight: 520;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.manifesto-words span:nth-child(2) {
  margin-left: 10vw;
  color: var(--accent);
}

.collection {
  padding: 40px 0 130px;
}

.collection-intro {
  max-width: 720px;
  margin-bottom: 50px;
}

.flavor-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.flavor-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--surface-strong);
  color: #f6f8f6;
}

.flavor-card:nth-child(1) {
  grid-column: span 7;
}

.flavor-card:nth-child(2) {
  grid-column: span 5;
}

.flavor-card:nth-child(3),
.flavor-card:nth-child(4),
.flavor-card:nth-child(5) {
  grid-column: span 4;
  min-height: 430px;
}

.flavor-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease);
}

.flavor-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7, 24, 18, 0.82));
}

.flavor-card:hover img {
  transform: scale(1.035);
}

.flavor-card-copy {
  position: absolute;
  z-index: 2;
  inset: auto 24px 24px;
}

.flavor-card h3 {
  margin: 0;
  font-size: clamp(30px, 3vw, 50px);
  font-weight: 520;
  letter-spacing: -0.045em;
}

.flavor-card p {
  max-width: 42ch;
  margin: 9px 0 0;
  color: rgba(246, 248, 246, 0.82);
}

.passport-feature {
  position: relative;
  min-height: 86dvh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 100px 0;
  background: var(--surface-strong);
}

.passport-feature::before {
  content: "";
  position: absolute;
  inset: 0 0 0 48%;
  background: url("../images/acacia-4.webp") center / cover no-repeat;
  opacity: 0.94;
}

.passport-card {
  position: relative;
  z-index: 2;
  width: min(620px, 52vw);
  padding: clamp(30px, 5vw, 68px);
  background: color-mix(in srgb, var(--surface) 93%, transparent);
  box-shadow: var(--shadow);
}

.passport-number {
  margin: 34px 0 8px;
  color: var(--accent);
  font-size: clamp(54px, 8vw, 108px);
  font-weight: 520;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.passport-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 34px 0;
}

.passport-meta div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.passport-meta b,
.passport-meta span {
  display: block;
}

.passport-meta b {
  margin-bottom: 4px;
  font-size: 13px;
}

.passport-meta span {
  color: var(--muted);
}

.pathways {
  padding: 130px 0;
}

.pathway-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  margin-top: 48px;
}

.pathway {
  position: relative;
  min-height: 500px;
  padding: clamp(28px, 5vw, 64px);
  overflow: hidden;
  background: var(--surface);
}

.pathway:first-child {
  color: #f1f6f2;
  background: var(--accent-strong);
}

.pathway:last-child {
  display: grid;
  align-content: end;
  background: url("../images/set-perspective-new.jpeg") center / cover no-repeat;
  color: #f5f8f6;
}

.pathway:last-child::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 22, 16, 0.05), rgba(7, 22, 16, 0.8));
}

.pathway > * {
  position: relative;
  z-index: 2;
}

.pathway h3 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(38px, 4.5vw, 68px);
  font-weight: 520;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.pathway p {
  max-width: 47ch;
  margin: 20px 0 0;
  color: inherit;
  opacity: 0.78;
}

.pathway .button {
  margin-top: 30px;
}

.journal-teaser {
  padding: 10px 0 130px;
}

.journal-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: start;
  margin-top: 46px;
}

.journal-feature {
  position: sticky;
  top: 112px;
}

.journal-feature img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.article-list {
  display: grid;
}

.article-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 260ms var(--ease), color 220ms ease;
}

.article-link:hover {
  padding-left: 12px;
  color: var(--accent);
}

.article-link h3 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 35px);
  font-weight: 550;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.article-link span {
  color: var(--muted);
  font-size: 14px;
}

.page-hero {
  min-height: 72dvh;
  display: grid;
  align-items: end;
  padding: 160px 0 80px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: end;
}

.page-hero-media {
  min-height: 460px;
  background: var(--surface-strong);
}

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

.catalog-toolbar {
  position: sticky;
  z-index: 10;
  top: 100px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 91%, transparent);
  backdrop-filter: blur(18px);
}

.filter-button {
  min-height: 40px;
  padding: 0 17px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.filter-button.is-active,
.filter-button:hover {
  background: var(--accent-strong);
  color: #f4f8f5;
}

.catalog-section {
  padding: 20px 0 130px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.product-card {
  grid-column: span 4;
  display: grid;
  background: var(--surface);
  transition: transform 280ms var(--ease), box-shadow 280ms ease;
}

.product-card:nth-child(1),
.product-card:nth-child(6) {
  grid-column: span 8;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.product-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-strong);
}

.product-card:nth-child(1) .product-media,
.product-card:nth-child(6) .product-media {
  aspect-ratio: 16 / 9;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.product-card:hover img {
  transform: scale(1.035);
}

.product-copy {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 22px;
}

.product-copy h2 {
  margin: 0;
  font-size: 27px;
  font-weight: 560;
  letter-spacing: -0.035em;
}

.product-copy p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
}

.product-type {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.product-volumes {
  align-self: start;
  color: var(--muted);
  font-size: 13px;
}

.is-hidden {
  display: none !important;
}

.territory-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  padding: 40px 0 130px;
}

.territory-block {
  grid-column: span 6;
  min-height: 560px;
  padding: clamp(28px, 5vw, 62px);
  background: var(--surface);
}

.territory-block.visual {
  padding: 0;
}

.territory-block.visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.territory-block.wide {
  grid-column: span 12;
  min-height: auto;
}

.territory-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.territory-fact {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.territory-fact b {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.territory-fact span {
  color: var(--muted);
}

.timeline {
  padding: 40px 0 130px;
}

.timeline-stage {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: clamp(30px, 8vw, 120px);
  padding: 52px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-stage h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 540;
  letter-spacing: -0.045em;
}

.timeline-content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
}

.timeline-content p {
  margin: 0;
  color: var(--muted);
}

.timeline-content img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  padding: 40px 0 130px;
}

.proof-card {
  padding: clamp(28px, 5vw, 60px);
  background: var(--surface);
}

.proof-card h2 {
  margin: 0 0 20px;
  font-size: clamp(34px, 4vw, 60px);
  font-weight: 540;
  letter-spacing: -0.05em;
  line-height: 1;
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.proof-item {
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.proof-item b,
.proof-item span {
  display: block;
}

.proof-item span {
  margin-top: 6px;
  color: var(--muted);
}

.b2b-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  padding: 40px 0 130px;
}

.b2b-card {
  grid-column: span 5;
  min-height: 360px;
  padding: clamp(28px, 4vw, 52px);
  background: var(--surface);
}

.b2b-card:nth-child(2),
.b2b-card:nth-child(3) {
  grid-column: span 7;
}

.b2b-card:nth-child(4) {
  grid-column: span 5;
}

.b2b-card h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 55px);
  font-weight: 540;
  letter-spacing: -0.05em;
  line-height: 1;
}

.b2b-card p {
  max-width: 48ch;
  margin: 22px 0 0;
  color: var(--muted);
}

.b2b-card.visual {
  padding: 0;
}

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

.contact-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  padding: clamp(38px, 7vw, 94px);
  background: var(--accent-strong);
  color: #f2f7f4;
}

.contact-panel .lead {
  color: rgba(242, 247, 244, 0.72);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full,
.form-status {
  grid-column: 1 / -1;
}

.field label {
  font-size: 14px;
  font-weight: 650;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(242, 247, 244, 0.38);
  border-radius: 4px;
  background: rgba(242, 247, 244, 0.08);
  color: #f2f7f4;
  padding: 12px 14px;
}

.field option {
  color: #13231d;
}

.field textarea {
  min-height: 116px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(242, 247, 244, 0.62);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #f2f7f4;
  outline: 2px solid rgba(242, 247, 244, 0.3);
}

.contact-form .button {
  justify-self: start;
  background: #f2f7f4;
  color: #153126;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: rgba(242, 247, 244, 0.82);
}

.journal-layout {
  padding: 20px 0 130px;
}

.journal-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 46px;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.journal-card {
  grid-column: span 4;
  display: grid;
  background: var(--surface);
  transition: transform 280ms var(--ease), box-shadow 280ms ease;
}

.journal-card:first-child,
.journal-card:nth-child(7) {
  grid-column: span 8;
}

.journal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.journal-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.journal-card:first-child img,
.journal-card:nth-child(7) img {
  aspect-ratio: 16 / 9;
}

.journal-card-copy {
  padding: 24px;
}

.journal-card-copy span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.journal-card-copy h2 {
  margin: 10px 0 0;
  font-size: clamp(25px, 3vw, 39px);
  font-weight: 550;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.journal-card-copy p {
  margin: 14px 0 0;
  color: var(--muted);
}

.article-hero {
  padding: 162px 0 76px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a:hover {
  color: var(--accent);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 28px;
  color: var(--muted);
}

.article-cover {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: clamp(48px, 9vw, 150px);
  align-items: start;
  padding: 80px 0 130px;
}

.article-body {
  max-width: 760px;
  font-size: clamp(18px, 1.55vw, 21px);
  line-height: 1.68;
}

.article-body p {
  margin: 0 0 1.45em;
}

.article-body h2 {
  margin: 2.2em 0 0.7em;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 540;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.article-body details {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.article-body summary {
  font-weight: 700;
  cursor: pointer;
}

.article-body details p {
  margin: 14px 0 0;
  color: var(--muted);
}

.article-aside {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 28px;
}

.article-aside h2 {
  margin: 0 0 12px;
  font-size: 18px;
}

.source-list,
.related-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.source-list a,
.related-list a {
  color: var(--muted);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 4px;
}

.source-list a:hover,
.related-list a:hover {
  color: var(--accent);
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  padding: 30px 0 130px;
}

.document-card {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 390px;
  padding: 34px;
  background: var(--surface);
}

.document-card:first-child {
  grid-column: span 4;
  background: var(--accent-soft);
}

.document-card h2 {
  margin: 0;
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.04;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.document-card p {
  margin: 18px 0 0;
  color: var(--muted);
}

.auction-idea {
  padding: 130px 0;
  background: var(--surface-strong);
}

.auction-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.auction-specimen {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: var(--surface);
}

.auction-specimen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auction-stamp {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 190px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(12, 31, 23, 0.72);
  color: #f3f7f4;
  backdrop-filter: blur(14px);
}

.auction-stamp strong {
  display: block;
  font-size: 42px;
  letter-spacing: -0.05em;
}

.site-footer {
  padding: 80px 0 34px;
  background: var(--surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 0.75fr);
  gap: 46px;
}

.footer-brand p {
  max-width: 36ch;
  color: var(--muted);
}

.footer-col h2 {
  margin: 0 0 14px;
  font-size: 14px;
}

.footer-col a,
.footer-col span {
  display: block;
  margin: 8px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.site-credit {
  color: inherit;
  font-size: 0.92em;
  text-decoration: none;
  opacity: 0.78;
  transition: opacity 180ms ease;
}

.site-credit:hover,
.site-credit:focus-visible {
  opacity: 1;
  text-decoration: underline;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 760ms var(--ease), transform 760ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-copy.reveal,
.page-hero .reveal {
  opacity: 1;
  transform: none;
}

@supports (animation-timeline: view()) {
  .scroll-scale {
    animation: scroll-scale linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 70%;
  }

  @keyframes scroll-scale {
    from { transform: scale(0.96); opacity: 0.64; }
    to { transform: scale(1); opacity: 1; }
  }
}

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

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

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

/* Flavor tape */
.flavor-stage.flavor-tape {
  padding: 0;
  overflow: hidden;
  background: var(--surface);
}

.flavor-tape-top {
  min-height: 96px;
  display: grid;
  grid-template-columns: minmax(170px, 0.34fr) 1fr;
  gap: 40px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.flavor-tape-top h2 {
  margin: 0;
  font-size: clamp(20px, 1.65vw, 27px);
  font-weight: 560;
  line-height: 1;
  letter-spacing: -0.035em;
}

.flavor-tabs {
  min-width: 0;
  display: flex;
  justify-content: flex-end;
  gap: clamp(18px, 2.2vw, 38px);
  overflow-x: auto;
  scrollbar-width: none;
}

.flavor-tabs::-webkit-scrollbar,
.flavor-track::-webkit-scrollbar {
  display: none;
}

.flavor-tabs button {
  position: relative;
  flex: 0 0 auto;
  padding: 12px 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-family: "Epilogue", "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 520;
  cursor: pointer;
  transition: color 220ms ease;
}

.flavor-tabs button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms var(--ease);
}

.flavor-tabs button:hover,
.flavor-tabs button[aria-selected="true"] {
  color: var(--ink);
}

.flavor-tabs button[aria-selected="true"]::after {
  transform: scaleX(1);
}

.flavor-track {
  display: flex;
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.flavor-panel {
  flex: 0 0 100%;
  min-width: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.flavor-panel-inner {
  min-height: min(820px, calc(100dvh - var(--nav-height) - 166px));
  display: grid;
  grid-template-columns: minmax(330px, 0.76fr) minmax(0, 1.34fr);
}

.flavor-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 6vw, 96px) clamp(30px, 5vw, 80px);
}

.flavor-copy h3 {
  margin: 0;
  font-size: clamp(62px, 6.3vw, 104px);
  font-weight: 480;
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.flavor-copy > p {
  max-width: 43ch;
  margin: clamp(26px, 3vw, 44px) 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.55;
}

.flavor-profile {
  max-width: 620px;
  margin: clamp(34px, 4vw, 58px) 0 0;
}

.flavor-profile > div {
  display: grid;
  grid-template-columns: minmax(88px, 0.34fr) 1fr;
  gap: 24px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.flavor-profile dt,
.flavor-profile dd {
  margin: 0;
}

.flavor-profile dt {
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.flavor-profile dd {
  color: var(--ink);
  font-size: 17px;
}

.flavor-gallery {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  background: var(--forest);
}

.flavor-gallery img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform 650ms var(--ease), filter 420ms ease;
}

.flavor-gallery img:hover {
  z-index: 1;
  transform: scale(0.985);
  filter: saturate(1.06);
}

.flavor-tape-controls {
  min-height: 70px;
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  gap: 18px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.flavor-arrow {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  font-family: "Epilogue", "Segoe UI", Arial, sans-serif;
  font-size: 22px;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease, transform 220ms var(--ease);
}

.flavor-arrow:last-child {
  justify-self: end;
}

.flavor-arrow:hover:not(:disabled) {
  color: var(--surface);
  background: var(--ink);
}

.flavor-arrow:active:not(:disabled) {
  transform: scale(0.96);
}

.flavor-arrow:disabled {
  cursor: default;
  opacity: 0.28;
}

.flavor-current {
  justify-self: center;
  font-size: 14px;
  font-weight: 560;
}

@media (max-width: 980px) {
  .flavor-tape-top {
    width: 100%;
    min-height: auto;
    display: block;
    padding: 26px 24px 18px;
  }

  .flavor-tabs {
    justify-content: flex-start;
    margin-top: 14px;
    padding-bottom: 4px;
  }

  .flavor-panel-inner {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .flavor-copy {
    min-height: 500px;
    padding: 64px 24px;
  }

  .flavor-copy h3 {
    font-size: clamp(52px, 11vw, 82px);
  }

  .flavor-gallery {
    min-height: 88vw;
  }
}

@media (max-width: 620px) {
  .flavor-tape-top {
    padding-inline: 16px;
  }

  .flavor-tabs {
    gap: 22px;
  }

  .flavor-copy {
    min-height: 470px;
    padding: 52px 16px 46px;
  }

  .flavor-copy h3 {
    font-size: clamp(48px, 15vw, 64px);
    line-height: 0.96;
  }

  .flavor-copy > p {
    margin-top: 24px;
    font-size: 18px;
  }

  .flavor-profile {
    margin-top: 34px;
  }

  .flavor-profile > div {
    grid-template-columns: 92px 1fr;
    gap: 14px;
    padding: 13px 0;
  }

  .flavor-profile dd {
    font-size: 15px;
  }

  .flavor-gallery {
    min-height: 112vw;
    gap: 5px;
    padding: 5px;
  }

  .flavor-tape-controls {
    width: 100%;
    min-height: 76px;
    padding-inline: 16px;
  }
}

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

  .flavor-gallery img,
  .flavor-tabs button::after,
  .flavor-arrow {
    transition: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header,
  .catalog-toolbar,
  .intro-skip,
  .hero-note,
  .auction-stamp {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--surface);
    color: var(--ink);
  }
}

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

  .brand {
    grid-column: 1;
  }

  .nav-links {
    grid-column: 1 / -1;
    justify-self: stretch;
    position: fixed;
    inset: calc(var(--nav-height) + 28px) 24px auto;
    width: auto;
    display: none;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .menu-open .nav-links {
    display: grid;
    gap: 4px;
  }

  .nav-links a {
    padding: 12px 4px;
  }

  .menu-button {
    display: block;
  }

  .nav-actions {
    grid-column: 2;
  }

  .nav-actions .button {
    display: none;
  }

  .hero {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .product-card,
  .product-card:nth-child(1),
  .product-card:nth-child(6),
  .journal-card,
  .journal-card:first-child,
  .journal-card:nth-child(7) {
    grid-column: span 6;
  }

  .document-card,
  .document-card:first-child {
    grid-column: span 6;
  }
}

@media (max-width: 820px) {
  :root {
    --page: calc(100vw - 32px);
  }

  .site-header {
    inset: 10px 0 auto;
  }

  .hero,
  .page-hero-grid,
  .manifesto-grid,
  .pathway-grid,
  .journal-row,
  .timeline-stage,
  .timeline-content,
  .proof-grid,
  .contact-panel,
  .auction-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 24px;
    padding: 120px 16px 60px;
  }

  .hero-copy {
    width: 100%;
    padding: 18px 0;
  }

  .hero-visual {
    width: 100%;
    min-height: 58dvh;
  }

  .manifesto-words span:nth-child(2) {
    margin-left: 0;
  }

  .flavor-card,
  .flavor-card:nth-child(1),
  .flavor-card:nth-child(2),
  .flavor-card:nth-child(3),
  .flavor-card:nth-child(4),
  .flavor-card:nth-child(5) {
    grid-column: span 12;
    min-height: 460px;
  }

  .passport-feature {
    min-height: auto;
    padding: 70px 0 480px;
  }

  .passport-feature::before {
    inset: auto 0 0;
    height: 520px;
  }

  .passport-card {
    width: 100%;
  }

  .journal-feature {
    position: static;
  }

  .page-hero {
    min-height: auto;
    padding: 130px 0 58px;
  }

  .page-hero-media {
    min-height: 50dvh;
  }

  .territory-block,
  .territory-block.wide,
  .b2b-card,
  .b2b-card:nth-child(2),
  .b2b-card:nth-child(3),
  .b2b-card:nth-child(4),
  .product-card,
  .product-card:nth-child(1),
  .product-card:nth-child(6),
  .journal-card,
  .journal-card:first-child,
  .journal-card:nth-child(7),
  .document-card,
  .document-card:first-child {
    grid-column: span 12;
  }

  .territory-block {
    min-height: auto;
  }

  .territory-block.visual {
    min-height: 55dvh;
  }

  .territory-facts,
  .proof-list,
  .passport-meta,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-stage {
    gap: 22px;
  }

  .contact-panel {
    gap: 42px;
    padding: 34px 22px;
  }

  .article-layout {
    gap: 50px;
  }

  .article-aside {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

  .auction-specimen {
    min-height: 520px;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 0;
  }

  .brand img {
    width: 98px;
  }

  .display {
    font-size: clamp(46px, 14.2vw, 72px);
  }

  .page-title,
  .article-title {
    font-size: clamp(42px, 13vw, 66px);
  }

  .section-title {
    font-size: clamp(38px, 11vw, 58px);
  }

  .hero-visual {
    min-height: 490px;
  }

  .hero-note {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .actions,
  .contact-form {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .intro-skip {
    right: 16px;
    bottom: 16px;
    width: auto;
  }

  .passport-feature {
    padding-bottom: 390px;
  }

  .passport-feature::before {
    height: 420px;
  }

  .territory-facts,
  .proof-list,
  .passport-meta,
  .footer-grid,
  .article-aside {
    grid-template-columns: 1fr;
  }

  .catalog-toolbar {
    top: 92px;
    border-radius: 4px;
  }

  .filter-button {
    flex: 1 1 auto;
  }

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

  .product-copy p {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }
}

/* BeeDance editorial redesign */
:root {
  --bg: #edf0eb;
  --surface: #f6f7f3;
  --surface-strong: #dfe5df;
  --ink: #15231d;
  --muted: #52615a;
  --line: #bdc8c1;
  --accent: #945637;
  --accent-strong: #6f3c26;
  --accent-soft: #e4d4ca;
  --forest: #17251f;
  --forest-soft: #23362d;
  --page: min(1420px, calc(100vw - 64px));
  --nav-height: 76px;
  --radius: 2px;
  color-scheme: light;
}

body {
  background: var(--bg);
  font-family: "Baskervville", Georgia, "Times New Roman", serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.site-header,
.button,
.kicker,
.menu-button,
.product-type,
.product-volumes,
.flavor-profile dt,
.flavor-current,
label,
summary {
  font-family: "Epilogue", "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
}

.site-header {
  inset: 0 0 auto;
  width: 100%;
  min-height: var(--nav-height);
  padding: 0 clamp(24px, 4vw, 70px);
  border: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 68%, transparent);
  border-radius: 0;
  background: color-mix(in srgb, var(--surface) 84%, transparent);
  box-shadow: none;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header-overlay {
  color: var(--ink);
  border-color: rgba(21, 35, 29, 0.16);
  background: rgba(237, 240, 235, 0.44);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 260ms ease, border-color 260ms ease;
}

.site-header-overlay.is-scrolled,
.menu-open .site-header-overlay {
  border-color: rgba(21, 35, 29, 0.22);
  background: rgba(237, 240, 235, 0.84);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.brand {
  min-width: 112px;
}

.brand img {
  width: 96px;
}

.nav-links {
  gap: clamp(18px, 2.15vw, 38px);
  color: inherit;
  font-size: 13px;
  font-weight: 560;
  letter-spacing: 0.01em;
}

.nav-links a::after {
  inset: auto 0 2px;
  background: currentColor;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--accent-strong);
}

.header-cta {
  padding: 11px 0 8px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}

.button {
  min-height: 48px;
  padding: 13px 22px;
  border-radius: var(--radius);
  font-weight: 620;
  letter-spacing: 0.01em;
}

.button-primary {
  border-color: var(--forest);
  background: var(--forest);
  color: #f2f4ef;
}

.button-primary:hover {
  border-color: var(--accent-strong);
  background: var(--accent-strong);
}

.button-secondary {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.button-ghost {
  border: 1px solid rgba(21, 35, 29, 0.42);
  background: rgba(239, 241, 236, 0.18);
  color: var(--ink);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.button:active,
.header-cta:active,
.text-link:active {
  transform: translateY(1px);
}

.home-page {
  background: var(--bg);
  color: var(--ink);
}

.cinema-hero {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  background: #cec9bf;
}

.cinema-video,
.product-cinema-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.cinema-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(237, 240, 235, 0.04) 38%, rgba(222, 222, 214, 0.24) 62%, rgba(205, 205, 196, 0.82) 100%);
}

.cinema-copy {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 5vw, 78px);
  bottom: clamp(30px, 7vh, 78px);
  left: clamp(24px, 5vw, 78px);
  max-width: 860px;
}

.cinema-copy h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(52px, 7.4vw, 112px);
  font-weight: 520;
  line-height: 0.93;
  letter-spacing: -0.065em;
}

.cinema-copy > p {
  max-width: 590px;
  margin: 24px 0 0;
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.42;
}

.cinema-copy .actions {
  margin-top: 30px;
}

.idea-section {
  padding: clamp(96px, 13vw, 190px) 0;
}

.idea-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: start;
}

.idea-heading {
  max-width: 930px;
  margin: 0;
  font-size: clamp(48px, 6.6vw, 104px);
  font-weight: 520;
  line-height: 0.99;
  letter-spacing: -0.06em;
}

.idea-copy {
  max-width: 43ch;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55;
}

.idea-facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr 1.25fr;
  gap: 0;
  margin-top: clamp(40px, 6vw, 92px);
  border-top: 1px solid var(--line);
}

.idea-facts > div {
  min-height: 150px;
  padding: 24px 28px 10px 0;
}

.idea-facts strong,
.idea-facts span {
  display: block;
}

.idea-facts strong {
  margin-bottom: 18px;
  color: var(--accent-strong);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.idea-facts span {
  max-width: 25ch;
  color: var(--muted);
}

.flavor-stage {
  padding: clamp(70px, 8vw, 120px) 0 clamp(110px, 12vw, 180px);
  overflow: clip;
}

.flavor-stage-head {
  max-width: 930px;
}

.flavor-stage-head h2,
.passport-story-copy h2,
.origin-story-copy h2,
.routes-head h2,
.journal-stage-intro h2 {
  margin: 0;
  font-size: clamp(42px, 5.3vw, 82px);
  font-weight: 520;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.flavor-stage-head > p:last-child {
  max-width: 62ch;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.flavor-reel {
  width: min(1600px, calc(100vw - 32px));
  margin: clamp(48px, 7vw, 100px) auto 0;
  display: grid;
  grid-template-columns: 1.24fr 0.86fr 0.9fr 0.86fr 1.24fr;
  gap: clamp(12px, 1.4vw, 22px);
  align-items: end;
}

.flavor-slide {
  display: grid;
  gap: 18px;
}

.flavor-slide img {
  width: 100%;
  height: clamp(360px, 39vw, 620px);
  object-fit: cover;
  transition: transform 700ms var(--ease), filter 400ms ease;
}

.flavor-slide:nth-child(2) img,
.flavor-slide:nth-child(4) img {
  height: clamp(300px, 32vw, 510px);
}

.flavor-slide:nth-child(3) img {
  height: clamp(410px, 44vw, 690px);
}

.flavor-slide:hover img {
  transform: scale(0.985);
  filter: saturate(1.08);
}

.flavor-slide h3,
.flavor-slide p {
  margin: 0;
}

.flavor-slide h3 {
  font-size: clamp(22px, 2vw, 31px);
  font-weight: 560;
  letter-spacing: -0.035em;
}

.flavor-slide p {
  margin-top: 4px;
  color: var(--muted);
}

.product-cinema {
  position: relative;
  min-height: 92dvh;
  overflow: hidden;
  background: #d9d8d2;
}

.product-cinema-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(19, 31, 26, 0.66), rgba(19, 31, 26, 0.08) 62%);
}

.product-cinema-copy {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 6vw, 92px);
  bottom: clamp(34px, 8vh, 96px);
  max-width: 780px;
  color: #f2f4ef;
}

.product-cinema-copy h2 {
  margin: 0;
  font-size: clamp(46px, 6.2vw, 94px);
  font-weight: 520;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.product-cinema-copy p {
  max-width: 50ch;
  margin: 24px 0 0;
  color: rgba(242, 244, 239, 0.78);
  font-size: 19px;
}

.passport-story {
  padding: clamp(110px, 13vw, 200px) 0;
}

.passport-story-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(60px, 10vw, 170px);
  align-items: center;
}

.passport-specimen {
  display: flex;
  min-height: 650px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(30px, 4vw, 62px);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,0.55), rgba(209,218,211,0.48));
}

.passport-specimen span,
.passport-specimen small {
  color: var(--muted);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.passport-specimen strong {
  color: var(--accent-strong);
  font-size: clamp(126px, 18vw, 270px);
  font-weight: 420;
  line-height: 0.75;
  letter-spacing: -0.09em;
}

.passport-story-copy > p,
.origin-story-copy > p,
.journal-stage-intro > p:not(.kicker) {
  max-width: 58ch;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.passport-data {
  margin: 46px 0 38px;
}

.passport-data > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.passport-data dt {
  color: var(--accent-strong);
  font-weight: 650;
}

.passport-data dd {
  margin: 0;
  color: var(--muted);
}

.text-link {
  display: inline-block;
  padding: 8px 0 5px;
  border-bottom: 1px solid currentColor;
  color: var(--accent-strong);
  font-weight: 650;
}

.origin-story {
  padding: clamp(90px, 11vw, 170px) 0;
}

.origin-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(55px, 8vw, 120px);
  align-items: center;
}

.origin-collage {
  position: relative;
  min-height: 760px;
}

.origin-collage img {
  position: absolute;
  object-fit: cover;
}

.origin-landscape {
  inset: 0 12% 11% 0;
  width: 88%;
  height: 89%;
}

.origin-detail {
  right: 0;
  bottom: 0;
  width: 41%;
  height: 43%;
  border: 14px solid var(--bg);
}

.origin-story-copy .text-link,
.journal-stage-intro .text-link {
  margin-top: 34px;
}

.routes-section {
  padding: clamp(90px, 11vw, 170px) 0;
}

.routes-head {
  max-width: 980px;
  margin-bottom: clamp(42px, 6vw, 82px);
}

.routes-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(14px, 2vw, 30px);
  width: min(1600px, calc(100vw - 32px));
  margin: 0 auto;
}

.route-panel {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: #f4f5f1;
}

.route-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 850ms var(--ease);
}

.route-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(12, 23, 18, 0.82));
}

.route-panel > div {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 4vw, 58px);
  bottom: clamp(26px, 4vw, 56px);
  left: clamp(24px, 4vw, 58px);
}

.route-panel h3,
.route-panel p {
  margin: 0;
}

.route-panel h3 {
  max-width: 700px;
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 520;
  line-height: 1;
  letter-spacing: -0.05em;
}

.route-panel p {
  max-width: 48ch;
  margin-top: 18px;
  color: rgba(244,245,241,0.76);
}

.route-panel span {
  display: inline-block;
  margin-top: 28px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-weight: 650;
}

.route-panel:hover img {
  transform: scale(1.025);
}

.journal-stage {
  padding: clamp(110px, 13vw, 200px) 0;
}

.journal-stage-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(70px, 11vw, 180px);
  align-items: start;
}

.journal-stage-list {
  display: grid;
}

.journal-stage-list a {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 34px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.journal-stage-list a:first-child {
  padding-top: 0;
}

.journal-stage-list span {
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.journal-stage-list h3 {
  margin: 0;
  font-size: clamp(23px, 2.4vw, 38px);
  font-weight: 540;
  line-height: 1.14;
  letter-spacing: -0.035em;
  transition: color 220ms ease;
}

.journal-stage-list a:hover h3 {
  color: var(--accent-strong);
}

.home-page .site-footer {
  border-top: 0;
  background: var(--forest);
  color: #eef1ed;
}

.home-page .site-footer p,
.home-page .footer-col a,
.home-page .footer-bottom {
  color: rgba(238,241,237,0.68);
}

.home-page .site-footer img {
  filter: brightness(0) invert(1);
}

/* Inner pages */
.page-main {
  padding-top: var(--nav-height);
}

.page-hero {
  min-height: auto;
  padding: clamp(90px, 10vw, 150px) 0 clamp(70px, 8vw, 120px);
}

.page-title,
.article-title {
  font-weight: 520;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.page-title {
  max-width: 1050px;
  font-size: clamp(52px, 7.1vw, 108px);
}

.page-hero .lead {
  max-width: 64ch;
  margin-top: 28px;
  font-size: 19px;
}

.product-card,
.journal-card,
.document-card,
.b2b-card,
.territory-block,
.contact-panel,
.passport-card,
.proof-card {
  border-radius: var(--radius);
  box-shadow: none;
}

.product-card,
.journal-card,
.document-card,
.b2b-card {
  border: 1px solid var(--line);
  background: transparent;
}

.product-card img,
.journal-card img,
.article-cover,
.page-hero-media img {
  border-radius: 0;
}

.catalog-toolbar,
.journal-filters {
  border-radius: 0;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
}

.filter-button {
  border-radius: 0;
}

.journal-page-hero .page-title {
  max-width: 980px;
}

.journal-layout {
  padding-bottom: clamp(100px, 12vw, 180px);
}

.journal-guide {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  min-height: 660px;
  margin-bottom: clamp(76px, 9vw, 130px);
  background: var(--forest);
  color: #eef1ed;
}

.journal-guide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journal-guide > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(34px, 5vw, 72px);
}

.journal-guide span {
  color: #d5a287;
  font-size: 13px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.journal-guide h2 {
  margin: 22px 0 0;
  font-size: clamp(38px, 4.7vw, 70px);
  font-weight: 520;
  line-height: 1.02;
  letter-spacing: -0.052em;
}

.journal-guide p {
  max-width: 48ch;
  margin: 22px 0 0;
  color: rgba(238,241,237,0.72);
}

.journal-guide strong {
  align-self: flex-start;
  margin-top: 30px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
}

.journal-filters {
  top: 88px;
  margin-bottom: 56px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(52px, 6vw, 90px) clamp(18px, 2.5vw, 38px);
}

.journal-card,
.journal-card:first-child,
.journal-card:nth-child(7) {
  grid-column: span 4;
  display: grid;
  align-content: start;
  border: 0;
  background: transparent;
}

.journal-card:nth-child(6n + 1),
.journal-card:nth-child(6n + 4) {
  grid-column: span 8;
}

.journal-card img,
.journal-card:first-child img,
.journal-card:nth-child(7) img {
  width: 100%;
  height: clamp(280px, 28vw, 470px);
  object-fit: cover;
}

.journal-card:nth-child(6n + 1) img,
.journal-card:nth-child(6n + 4) img {
  height: clamp(360px, 41vw, 620px);
}

.journal-card-copy {
  padding: 22px 0 0;
}

.journal-card-copy span {
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.journal-card-copy h2 {
  margin-top: 12px;
  font-size: clamp(24px, 2.5vw, 38px);
  font-weight: 540;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.journal-card-copy p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
}

/* Long-form article system */
.article-hero {
  padding: clamp(88px, 9vw, 132px) 0 56px;
}

.article-title {
  max-width: 1180px;
  font-size: clamp(48px, 6.5vw, 96px);
}

.article-hero .lead {
  max-width: 760px;
  margin-top: 28px;
  font-size: clamp(18px, 1.45vw, 22px);
}

.article-cover {
  width: 100%;
  max-height: 820px;
  object-fit: cover;
}

.article-layout {
  grid-template-columns: minmax(0, 820px) minmax(240px, 330px);
  gap: clamp(70px, 9vw, 150px);
  justify-content: center;
  padding-top: clamp(72px, 8vw, 120px);
}

.article-body {
  font-size: 18px;
  line-height: 1.75;
}

.article-body > p:first-child {
  font-size: clamp(22px, 2vw, 29px);
  line-height: 1.5;
  letter-spacing: -0.018em;
}

.article-body h2 {
  margin: 76px 0 22px;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 540;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.article-body h3 {
  margin: 46px 0 16px;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.article-body a,
.inline-source {
  color: var(--accent-strong);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.answer-box {
  margin: 0 0 50px;
  padding: 28px 32px;
  border-left: 4px solid var(--accent);
  background: var(--surface-strong);
}

.answer-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-strong);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.answer-box p {
  margin: 0;
  font-size: 20px;
  line-height: 1.55;
}

.reference-section {
  margin: 70px 0;
}

.reference-section > h2:first-child {
  margin-top: 0;
}

.data-table-wrap {
  margin: 30px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--surface);
}

.data-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 16px;
  line-height: 1.45;
}

.data-table th,
.data-table td {
  padding: 15px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.data-table th {
  color: var(--accent-strong);
  background: var(--surface-strong);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.formula-card {
  margin: 34px 0;
  padding: 32px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, var(--surface), var(--surface-strong));
}

.formula-card strong {
  display: block;
  margin-bottom: 14px;
  color: var(--accent-strong);
}

.formula {
  display: block;
  margin: 12px 0;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 560;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.article-note {
  margin: 30px 0;
  padding: 24px 28px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
}

.article-note strong {
  color: var(--ink);
}

.honey-calculator {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(190px, 0.7fr);
  gap: 24px;
  align-items: stretch;
  margin: 34px 0;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.honey-calculator label,
.honey-calculator input,
.honey-calculator output,
.honey-calculator output span {
  display: block;
}

.honey-calculator label {
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 14px;
}

.honey-calculator input {
  width: 100%;
  min-height: 58px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--bg);
  color: var(--ink);
  font-size: 24px;
}

.honey-calculator output {
  padding: 16px 20px;
  background: var(--forest);
  color: #eef1ed;
}

.honey-calculator output strong {
  font-size: 46px;
  line-height: 1;
}

.honey-calculator output span {
  margin-top: 8px;
  color: rgba(238,241,237,0.7);
}

.honey-calculator > p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.check-grid > div {
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.check-grid strong,
.check-grid span {
  display: block;
}

.check-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.article-aside {
  top: 110px;
}

.article-aside > div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.article-aside h2 {
  margin: 0 0 18px;
  color: var(--accent-strong);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.source-list,
.related-list {
  gap: 12px;
}

.source-list a,
.related-list a {
  line-height: 1.4;
}

.article-body details {
  border-radius: 0;
}

@media (max-width: 1080px) {
  :root {
    --page: calc(100vw - 40px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 24px;
  }

  .brand {
    grid-column: 1;
  }

  .nav-actions {
    grid-column: 2;
  }

  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
    border-color: currentColor;
  }

  .nav-links {
    position: absolute;
    top: var(--nav-height);
    right: 0;
    left: 0;
    display: none;
    padding: 22px 24px 30px;
    border-bottom: 1px solid var(--line);
    background: rgba(237, 240, 235, 0.98);
    color: var(--ink);
  }

  .menu-open .nav-links {
    display: grid;
  }

  .idea-layout,
  .passport-story-grid,
  .origin-story-grid,
  .journal-stage-grid {
    grid-template-columns: 1fr;
  }

  .idea-copy {
    margin-top: 0;
  }

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

  .flavor-reel {
    display: flex;
    padding-bottom: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .flavor-slide {
    flex: 0 0 min(72vw, 460px);
    scroll-snap-align: start;
  }

  .flavor-slide img,
  .flavor-slide:nth-child(2) img,
  .flavor-slide:nth-child(3) img,
  .flavor-slide:nth-child(4) img {
    height: 520px;
  }

  .passport-specimen {
    min-height: 520px;
  }

  .origin-story-copy {
    max-width: 760px;
  }

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

  .route-panel {
    min-height: 660px;
  }

  .article-layout {
    grid-template-columns: minmax(0, 820px);
  }

  .article-aside {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

  .journal-guide {
    grid-template-columns: 1fr;
  }

  .journal-guide img {
    height: 560px;
  }

  .journal-card,
  .journal-card:first-child,
  .journal-card:nth-child(7),
  .journal-card:nth-child(6n + 1),
  .journal-card:nth-child(6n + 4) {
    grid-column: span 6;
  }
}

@media (max-width: 720px) {
  :root {
    --page: calc(100vw - 32px);
    --nav-height: 68px;
  }

  .site-header {
    min-height: var(--nav-height);
    padding-inline: 16px;
  }

  .brand img {
    width: 86px;
  }

  .cinema-hero {
    min-height: 100dvh;
  }

  .cinema-video {
    object-position: 50% 50%;
  }

  .cinema-scrim {
    background: linear-gradient(180deg, rgba(237,240,235,0.04) 26%, rgba(222,222,214,0.2) 52%, rgba(200,201,193,0.94) 100%);
  }

  .cinema-copy {
    right: 16px;
    bottom: 24px;
    left: 16px;
  }

  .cinema-copy h1 {
    font-size: clamp(42px, 11.3vw, 48px);
    line-height: 0.96;
  }

  .cinema-copy > p {
    max-width: 34ch;
    margin-top: 18px;
    font-size: 17px;
  }

  .cinema-copy .actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 22px;
  }

  .cinema-copy .button {
    width: 100%;
    min-height: 46px;
    padding-inline: 12px;
    font-size: 13px;
  }

  .idea-section,
  .passport-story,
  .origin-story,
  .routes-section,
  .journal-stage {
    padding: 88px 0;
  }

  .idea-heading,
  .flavor-stage-head h2,
  .passport-story-copy h2,
  .origin-story-copy h2,
  .routes-head h2,
  .journal-stage-intro h2 {
    font-size: clamp(40px, 12vw, 58px);
    letter-spacing: -0.05em;
  }

  .idea-layout {
    gap: 28px;
  }

  .idea-copy,
  .flavor-stage-head > p:last-child,
  .passport-story-copy > p,
  .origin-story-copy > p,
  .journal-stage-intro > p:not(.kicker) {
    font-size: 17px;
  }

  .idea-facts {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .idea-facts > div {
    min-height: auto;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
  }

  .flavor-stage {
    padding: 78px 0 96px;
  }

  .flavor-reel {
    width: 100%;
    padding: 0 16px 18px;
  }

  .flavor-slide {
    flex-basis: 78vw;
  }

  .flavor-slide img,
  .flavor-slide:nth-child(2) img,
  .flavor-slide:nth-child(3) img,
  .flavor-slide:nth-child(4) img {
    height: 450px;
  }

  .product-cinema {
    min-height: 78dvh;
  }

  .product-cinema-copy {
    right: 16px;
    bottom: 28px;
    left: 16px;
  }

  .product-cinema-copy h2 {
    font-size: clamp(42px, 12.5vw, 62px);
  }

  .product-cinema-copy p {
    font-size: 16px;
  }

  .passport-story-grid {
    gap: 48px;
  }

  .passport-specimen {
    min-height: 430px;
    padding: 28px;
  }

  .passport-specimen strong {
    font-size: 38vw;
  }

  .passport-data > div {
    grid-template-columns: 100px 1fr;
    gap: 16px;
  }

  .origin-collage {
    min-height: 500px;
  }

  .origin-landscape {
    inset: 0 8% 9% 0;
    width: 92%;
    height: 91%;
  }

  .origin-detail {
    width: 48%;
    height: 38%;
    border-width: 8px;
  }

  .route-panel {
    min-height: 560px;
  }

  .route-panel h3 {
    font-size: 42px;
  }

  .journal-stage-grid {
    gap: 58px;
  }

  .journal-stage-list a {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 0;
  }

  .journal-stage-list h3 {
    font-size: 26px;
  }

  .page-title,
  .article-title {
    font-size: clamp(42px, 12.5vw, 62px);
  }

  .article-hero {
    padding: 72px 0 36px;
  }

  .article-layout {
    padding-top: 58px;
  }

  .article-body {
    font-size: 17px;
  }

  .article-body > p:first-child {
    font-size: 21px;
  }

  .article-body h2 {
    margin-top: 58px;
    font-size: 36px;
  }

  .answer-box,
  .formula-card,
  .article-note {
    padding: 22px;
  }

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

  .honey-calculator {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .honey-calculator > p {
    grid-column: auto;
  }

  .article-aside {
    grid-template-columns: 1fr;
  }

  .journal-guide {
    min-height: 0;
  }

  .journal-guide img {
    height: 430px;
  }

  .journal-guide > div {
    padding: 30px 24px 36px;
  }

  .journal-guide h2 {
    font-size: 40px;
  }

  .journal-grid {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .journal-card,
  .journal-card:first-child,
  .journal-card:nth-child(7),
  .journal-card:nth-child(6n + 1),
  .journal-card:nth-child(6n + 4) {
    grid-column: auto;
  }

  .journal-card img,
  .journal-card:first-child img,
  .journal-card:nth-child(7) img,
  .journal-card:nth-child(6n + 1) img,
  .journal-card:nth-child(6n + 4) img {
    height: 430px;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #121b17;
    --surface: #18241e;
    --surface-strong: #22322a;
    --ink: #edf1ed;
    --muted: #a9b5ae;
    --line: #34483e;
    --accent: #c9825e;
    --accent-strong: #e0a181;
    --accent-soft: #3a2b24;
    --forest: #0f1713;
    color-scheme: dark;
  }

  .site-header:not(.site-header-overlay),
  .menu-open .site-header-overlay,
  .nav-links {
    background: rgba(18, 27, 23, 0.86);
  }

  .site-header-overlay:not(.is-scrolled) {
    color: #15231d;
  }

  .site-header-overlay.is-scrolled {
    color: var(--ink);
    background: rgba(18, 27, 23, 0.86);
  }

  .site-header-overlay:not(.is-scrolled) .brand img {
    filter: none;
  }

  .passport-specimen {
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(34,50,42,0.7));
  }

  .cinema-copy,
  .cinema-copy .button-ghost {
    color: #15231d;
  }

  .cinema-copy .button-primary {
    border-color: #15231d;
    background: #15231d;
  }

  .origin-detail {
    border-color: var(--bg);
  }
}

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

  .cinema-video,
  .product-cinema-video {
    display: none;
  }

  .cinema-hero {
    background: url("../media/hero-brand-poster.jpg") center / cover no-repeat;
  }

  .product-cinema {
    background: url("../media/product-film-poster.jpg") center / cover no-repeat;
  }

  .flavor-slide img,
  .route-panel img {
    transition: none;
  }
}
