:root {
  --forest: #173d2b;
  --forest-2: #24553c;
  --leaf: #66844f;
  --moss: #a4ad78;
  --rice: #d7b469;
  --cream: #f4f0e5;
  --paper: #fbfaf5;
  --ink: #18231d;
  --muted: #667068;
  --line: rgba(23, 61, 43, 0.15);
  --white: #fff;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Nunito Sans", "Helvetica Neue", sans-serif;
  --shadow: 0 24px 70px rgba(15, 41, 28, 0.13);
  --radius: 2px;
  --shell: min(1220px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding-top: 116px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

button {
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 12px;
  top: -100px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--forest);
}

.skip-link:focus {
  top: 12px;
}

.site-chrome {
  --chrome-height: 116px;
  position: fixed;
  z-index: 200;
  top: 0;
  right: 0;
  left: 0;
  background: rgba(251, 250, 245, 0.98);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
}

.site-chrome.is-scrolled {
  box-shadow: 0 10px 32px rgba(16, 46, 33, 0.12);
}

.topbar {
  color: rgba(255, 255, 255, 0.85);
  background: #102e21;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
}

.site-header {
  background: transparent;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 30px;
  transition: min-height 0.25s ease;
}

.site-chrome.is-scrolled .header__inner {
  min-height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
  line-height: 1.15;
}

.brand__mark {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  color: var(--forest);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.brand__mark svg {
  width: 31px;
  fill: currentColor;
}

.brand__mark path:last-child {
  fill: none;
  stroke: var(--rice);
  stroke-width: 2;
}

.brand strong {
  display: block;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(15px, 2vw, 32px);
  margin-left: auto;
}

.lang-switch {
  display: inline-flex;
  flex: 0 0 auto;
  order: 1;
  align-items: center;
  gap: 2px;
  padding: 3px;
  color: var(--forest);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.lang-switch:hover {
  border-color: var(--rice);
}

.lang-switch button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 28px;
  padding: 0 10px 0 7px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.lang-switch button:hover {
  color: var(--forest);
}

.lang-switch button:active {
  transform: scale(0.94);
}

.lang-switch button[aria-pressed="true"] {
  color: var(--forest);
  background: var(--rice);
}

.lang-flag {
  display: block;
  flex: 0 0 auto;
  width: 20px;
  height: 14px;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
  opacity: 0.6;
  filter: saturate(0.6);
  transition: opacity 0.25s ease, filter 0.25s ease, transform 0.25s ease;
}

.lang-flag svg {
  display: block;
  width: 100%;
  height: 100%;
}

.lang-switch button:hover .lang-flag,
.lang-switch button[aria-pressed="true"] .lang-flag {
  opacity: 1;
  filter: none;
}

.lang-switch button[aria-pressed="true"] .lang-flag {
  transform: scale(1.06);
}

.main-nav__eyebrow,
.main-nav__foot,
.main-nav__num,
.main-nav__arrow,
.nav-backdrop {
  display: none;
}

.main-nav__links {
  display: contents;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  padding: 30px 0 27px;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: padding 0.25s ease;
}

.main-nav__label {
  display: inline;
}

.site-chrome.is-scrolled .main-nav a {
  padding: 22px 0 20px;
}

.main-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 20px;
  left: 50%;
  height: 2px;
  content: "";
  background: var(--rice);
  transition: inset 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  right: 0;
  left: 0;
}

.menu-toggle {
  display: none;
  width: 45px;
  height: 45px;
  padding: 12px;
  background: transparent;
  border: 1px solid var(--line);
}

.menu-toggle span {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: var(--forest);
  transition: 0.2s ease;
}

main {
  min-height: 50vh;
  overflow: hidden;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: var(--leaf);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 1px;
  content: "";
  background: currentColor;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.82);
}

.display,
.section-title,
.page-hero h1,
.feature-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.display {
  max-width: 880px;
  font-size: clamp(52px, 7.4vw, 108px);
  font-weight: 600;
}

.section-title {
  max-width: 780px;
  color: var(--forest);
  font-size: clamp(36px, 4.6vw, 68px);
}

@media (min-width: 861px) {
  .section-title--line {
    max-width: none;
    font-size: clamp(40px, 4.2vw, 58px);
    white-space: nowrap;
  }
}

.section-lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading--center {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.section-heading--center .eyebrow::before {
  display: none;
}

.section-heading--center .section-lead {
  margin-inline: auto;
}

.section {
  padding: clamp(84px, 10vw, 145px) 0;
}

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

.section--forest {
  color: var(--white);
  background: var(--forest);
}

.section--forest .section-title {
  color: var(--white);
}

.section--forest .section-lead {
  color: rgba(255, 255, 255, 0.68);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  gap: 20px;
  color: var(--white);
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: var(--radius);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.btn::after {
  font-size: 17px;
  font-weight: 400;
  content: "→";
}

.btn:hover {
  color: var(--forest);
  background: transparent;
  transform: translateY(-2px);
}

.btn--light {
  color: var(--forest);
  background: var(--white);
  border-color: var(--white);
}

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

.btn--ghost {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--ghost:hover {
  color: var(--forest);
  background: var(--white);
  border-color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link span {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.home-hero {
  position: relative;
  display: flex;
  min-height: calc(100svh - var(--chrome-height, 116px));
  align-items: flex-end;
  color: var(--white);
  background: #183828;
}

.home-hero__media {
  position: absolute;
  inset: 0;
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 30, 20, 0.72) 0%, rgba(8, 30, 20, 0.15) 68%),
    linear-gradient(0deg, rgba(8, 30, 20, 0.55), transparent 52%);
}

.home-hero__content {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: clamp(75px, 9vw, 125px);
}

.home-hero__content .display {
  max-width: 930px;
}

.home-hero__desc {
  margin: 27px 0 35px;
  font-size: clamp(13px, 1.25vw, 17px);
  letter-spacing: 0.035em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-index {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100vw - 1220px) / 2));
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.15em;
}

.hero-index span {
  width: 80px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.intro-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(50px, 8vw, 120px);
}

.intro-image {
  position: relative;
  padding: 0 12% 13% 0;
}

.intro-image__main {
  width: 100%;
  min-height: 590px;
  object-fit: cover;
}

.intro-image__detail {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: auto;
  max-height: 48%;
  object-fit: cover;
  border: 8px solid var(--paper);
  box-shadow: 0 12px 36px rgba(16, 46, 33, 0.12);
}

.intro-image__stamp {
  position: absolute;
  top: 35px;
  right: 4%;
  z-index: 2;
  display: grid;
  width: 100px;
  height: 100px;
  place-items: center;
  color: var(--white);
  background: var(--forest);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 11px;
  line-height: 1.3;
  text-align: center;
}

.intro-copy p {
  color: var(--muted);
}

.intro-copy .text-link {
  margin-top: 22px;
}

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

.pillar {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  color: var(--white);
}

.pillar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.pillar::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(9, 30, 19, 0.85), transparent 72%);
}

.pillar:hover img {
  transform: scale(1.045);
}

.pillar__content {
  position: absolute;
  z-index: 2;
  right: 40px;
  bottom: 42px;
  left: 40px;
}

.pillar__number {
  display: block;
  margin-bottom: 16px;
  color: var(--rice);
  font-family: var(--serif);
  font-size: 16px;
}

.pillar h3 {
  margin: 0 0 7px;
  font-family: var(--serif);
  font-size: clamp(29px, 3vw, 43px);
  font-weight: 600;
}

.pillar p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.pillar .text-link {
  color: var(--white);
}

.cave-feature {
  position: relative;
  min-height: 770px;
  color: var(--white);
  background: #102c20;
}

.cave-feature__bg {
  position: absolute;
  inset: 0;
}

.cave-feature__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cave-feature__bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(7, 25, 17, 0.88), rgba(7, 25, 17, 0.15));
}

.cave-feature__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 770px;
  align-items: center;
}

.cave-feature__copy {
  max-width: 590px;
}

.feature-title {
  font-size: clamp(49px, 7vw, 94px);
}

.cave-feature__copy p {
  max-width: 510px;
  margin: 25px 0 33px;
  color: rgba(255, 255, 255, 0.76);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  counter-reset: journey;
}

.journey-card {
  position: relative;
  min-height: 330px;
  padding: 30px 30px 35px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  counter-increment: journey;
}

.journey-card:last-child {
  border-right: 0;
}

.journey-card::before {
  color: var(--rice);
  font-family: var(--serif);
  font-size: 34px;
  content: "0" counter(journey);
}

.journey-card h3 {
  margin: 100px 0 12px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 24px;
}

.journey-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.culture-editorial {
  display: grid;
  align-items: center;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(45px, 7vw, 100px);
}

.culture-gallery {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 14px;
}

.culture-gallery img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.culture-gallery img:last-child {
  height: 385px;
  margin-top: 95px;
}

.culture-points {
  margin: 34px 0;
  padding: 0;
  list-style: none;
}

.culture-points li {
  display: grid;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 36px 1fr;
  gap: 10px;
}

.culture-points span {
  color: var(--rice);
  font-family: var(--serif);
}

.culture-points strong {
  display: block;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
}

.culture-points small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-card {
  background: var(--white);
  border: 1px solid rgba(23, 61, 43, 0.08);
  box-shadow: 0 10px 40px rgba(23, 61, 43, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.product-card__image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.product-card__tag {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 6px 10px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.92);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-card__body {
  padding: 27px 28px 30px;
}

.product-card h3 {
  margin: 0 0 8px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 27px;
}

.product-card p {
  min-height: 50px;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 12px;
}

.producer {
  display: grid;
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
  grid-template-columns: 1fr 1fr;
}

.producer__image {
  min-height: 630px;
}

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

.producer__copy {
  display: flex;
  padding: clamp(45px, 7vw, 95px);
  justify-content: center;
  flex-direction: column;
}

.producer__copy .section-title {
  color: var(--white);
}

.producer__copy p {
  color: rgba(255, 255, 255, 0.7);
}

.producer-profile {
  display: grid;
  margin: 25px 0 32px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.producer-profile small {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.producer-profile strong {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 500;
}

.connect-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(50px, 8vw, 120px);
}

.connect-actions {
  display: grid;
  gap: 10px;
}

.connect-action {
  display: grid;
  min-height: 100px;
  padding: 24px 28px;
  align-items: center;
  color: var(--forest);
  background: var(--white);
  border: 1px solid var(--line);
  grid-template-columns: 55px 1fr auto;
  transition: 0.25s ease;
}

.connect-action:hover {
  color: var(--white);
  background: var(--forest);
  transform: translateX(6px);
}

.connect-action__icon {
  font-family: var(--serif);
  font-size: 27px;
}

.connect-action strong {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
}

.connect-action small {
  color: var(--muted);
  font-size: 10px;
}

.connect-action:hover small {
  color: rgba(255, 255, 255, 0.65);
}

.map-qr-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
}

.map-panel {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  background: #d5dfcb;
}

.map-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.65) contrast(0.9);
}

.map-panel__card {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  max-width: 430px;
  padding: 29px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.map-panel__card h3,
.qr-panel h3 {
  margin: 0 0 9px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 29px;
}

.map-panel__card p,
.qr-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.qr-panel {
  display: flex;
  padding: clamp(40px, 5vw, 80px);
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--forest);
  flex-direction: column;
  text-align: center;
}

.qr-panel h3 {
  color: var(--white);
}

.qr-panel p {
  color: rgba(255, 255, 255, 0.65);
}

.fake-qr {
  position: relative;
  display: grid;
  width: 190px;
  height: 190px;
  margin: 28px auto;
  padding: 13px;
  background:
    repeating-conic-gradient(#173d2b 0 25%, #fff 0 50%) 0 0 / 18px 18px;
  border: 12px solid var(--white);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.fake-qr::after {
  position: absolute;
  inset: 62px;
  content: "";
  background: var(--rice);
  border: 8px solid var(--white);
  outline: 5px solid var(--forest);
}

.closing-cta {
  position: relative;
  display: flex;
  min-height: 710px;
  align-items: center;
  color: var(--white);
  text-align: center;
}

.closing-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.closing-cta::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(9, 32, 20, 0.66);
}

.closing-cta__content {
  position: relative;
  z-index: 1;
  max-width: 790px;
}

.closing-cta .section-title {
  color: var(--white);
  font-size: clamp(48px, 7vw, 90px);
}

@media (min-width: 861px) {
  .closing-cta__content:has(.section-title--line) {
    max-width: min(1080px, 94vw);
  }

  .closing-cta .section-title--line {
    font-size: clamp(48px, 5.2vw, 72px);
  }
}

.closing-cta p {
  max-width: 600px;
  margin: 25px auto 32px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--serif);
  font-size: 19px;
}

/* Inner pages */
.page-hero {
  position: relative;
  display: flex;
  min-height: 650px;
  align-items: center;
  color: var(--white);
  background: var(--forest);
}

.page-hero__media {
  position: absolute;
  inset: 0;
}

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

.page-hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(8, 31, 20, 0.82), rgba(8, 31, 20, 0.2));
}

.page-hero__content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.nowrap {
  white-space: nowrap;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(52px, 7vw, 98px);
}

.page-hero p {
  max-width: 640px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.split-content {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 8vw, 120px);
}

.split-content__image {
  position: relative;
  margin: 0;
}

.split-content__image img {
  display: block;
  width: 100%;
  height: auto;
}

.split-content__image figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 12px 18px;
  color: var(--white);
  background: var(--forest);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.prose p {
  color: var(--muted);
}

.stats {
  display: grid;
  margin-top: 36px;
  grid-template-columns: repeat(3, 1fr);
}

.stat {
  padding: 20px;
  border-left: 1px solid var(--line);
}

.stat strong {
  display: block;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 31px;
}

.stat small {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-auto-rows: 265px;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.gallery-item span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 35px 18px 15px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(7, 29, 18, 0.8), transparent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.experience-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: var(--white);
}

.experience-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.experience-card:hover img {
  transform: scale(1.04);
}

.experience-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(7, 29, 18, 0.88), transparent 70%);
}

.experience-card__body {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 30px;
  left: 28px;
}

.experience-card h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 30px;
}

.experience-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.notice {
  display: grid;
  padding: clamp(35px, 5vw, 70px);
  color: var(--white);
  background: var(--forest);
  grid-template-columns: 0.6fr 1.4fr;
  gap: 50px;
}

.notice h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 38px;
}

.notice p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.festival-feature {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
}

.festival-feature__image {
  min-height: 680px;
}

.festival-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.festival-feature__body {
  display: flex;
  padding: clamp(45px, 7vw, 100px);
  justify-content: center;
  background: var(--cream);
  flex-direction: column;
}

.festival-feature__body p {
  color: var(--muted);
}

.festival-tags {
  display: flex;
  margin-top: 25px;
  flex-wrap: wrap;
  gap: 8px;
}

.festival-tags span {
  padding: 7px 11px;
  color: var(--forest);
  border: 1px solid var(--line);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.culture-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 310px 310px;
  gap: 12px;
}

.culture-mosaic figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.culture-mosaic figure:first-child {
  grid-row: span 2;
}

.culture-mosaic figure:last-child {
  grid-column: span 2;
}

.culture-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.culture-mosaic figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 30px 20px 15px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(8, 31, 20, 0.8), transparent);
  font-family: var(--serif);
  font-size: 20px;
}

.category-tabs {
  display: flex;
  margin-bottom: 38px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.category-tabs button {
  padding: 10px 16px;
  color: var(--forest);
  background: transparent;
  border: 1px solid var(--line);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.category-tabs button.active,
.category-tabs button:hover {
  color: var(--white);
  background: var(--forest);
}

.product-card.is-hidden {
  display: none;
}

.story-banner {
  position: relative;
  display: flex;
  min-height: 610px;
  align-items: center;
  color: var(--white);
}

.story-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-banner::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(7, 29, 18, 0.9), rgba(7, 29, 18, 0.1));
}

.story-banner__copy {
  position: relative;
  z-index: 1;
  max-width: 610px;
}

.story-banner .section-title {
  color: var(--white);
}

.story-banner p {
  color: rgba(255, 255, 255, 0.7);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 8vw, 110px);
}

.contact-details {
  margin-top: 40px;
}

.contact-details div {
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.contact-details small {
  display: block;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-details strong {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
}

.contact-form {
  display: grid;
  padding: clamp(30px, 5vw, 60px);
  background: var(--cream);
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

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

.field label {
  color: var(--forest);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 49px;
  padding: 10px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(23, 61, 43, 0.3);
  border-radius: 0;
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--forest);
}

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

.routes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.route-card {
  --route-tint: 23, 61, 43;
  position: relative;
  display: flex;
  min-height: 430px;
  padding: 35px;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: rgb(var(--route-tint));
  flex-direction: column;
}

.route-card:nth-child(2) {
  --route-tint: 49, 91, 61;
}

.route-card:nth-child(3) {
  --route-tint: 122, 88, 30;
}

.route-card__bg {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.route-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(var(--route-tint), 0.55) 0%,
    rgba(var(--route-tint), 0.35) 38%,
    rgba(var(--route-tint), 0.94) 100%
  );
}

.route-card:hover .route-card__bg {
  transform: scale(1.05);
}

.route-card__number {
  color: var(--rice);
  font-family: var(--serif);
  font-size: 55px;
  opacity: 0.85;
}

.route-card h3 {
  margin: auto 0 16px;
  font-family: var(--serif);
  font-size: 35px;
}

.route-card p {
  margin: 0;
  opacity: 0.85;
  font-size: 13px;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.support-card {
  min-height: 220px;
  padding: 35px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.support-card small {
  color: var(--leaf);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.support-card h3 {
  margin: 50px 0 5px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 26px;
}

.support-card p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  padding-top: 85px;
  color: rgba(255, 255, 255, 0.67);
  background: #0d2a1d;
}

.footer__grid {
  display: grid;
  padding-bottom: 70px;
  grid-template-columns: 1.6fr 0.8fr 0.7fr 1fr;
  gap: 55px;
}

.brand--footer {
  display: inline-flex;
}

.brand--footer .brand__mark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}

.brand--footer strong {
  color: var(--white);
}

.footer__intro p {
  max-width: 350px;
  margin: 18px 0 0;
  font-size: 12px;
}

.site-footer h3 {
  margin: 0 0 24px;
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer > .footer__grid > div:not(:first-child) a {
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
}

.site-footer a:hover {
  color: var(--rice);
}

.footer__contact p {
  margin: 0 0 10px;
  font-size: 12px;
}

.footer__contact em {
  color: rgba(255, 255, 255, 0.45);
  font-style: normal;
}

.footer__bottom {
  display: flex;
  min-height: 75px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 9px;
  letter-spacing: 0.04em;
}

.footer__bottom button {
  color: rgba(255, 255, 255, 0.68);
  background: transparent;
  border: 0;
  font-size: 10px;
}

.lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: none;
  padding: 50px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(5, 18, 12, 0.94);
  flex-direction: column;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(1050px, 92vw);
  max-height: 78vh;
  object-fit: contain;
}

.lightbox p {
  margin: 14px 0 0;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 28px;
  color: var(--white);
  background: transparent;
  border: 0;
  font-size: 40px;
  font-weight: 200;
}

.toast {
  position: fixed;
  z-index: 500;
  right: 24px;
  bottom: 24px;
  max-width: 350px;
  padding: 15px 20px;
  color: var(--white);
  background: var(--forest);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(20px);
  transition: 0.25s ease;
  pointer-events: none;
}

.toast.is-visible {
  opacity: 1;
  transform: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (min-width: 861px) and (max-width: 980px) {
  .header__inner {
    gap: 16px;
  }

  .header__inner .main-nav {
    gap: 10px;
  }

  .header__inner .main-nav a {
    letter-spacing: 0;
  }

  .lang-code {
    display: none;
  }

  .lang-switch button {
    padding: 0 7px;
  }
}

@media (max-width: 380px) {
  .lang-code {
    display: none;
  }

  .lang-switch button {
    padding: 0 7px;
  }
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 14px;
  }

  .main-nav a {
    font-size: 9px;
  }

  .brand small {
    display: none;
  }

  .pillar__content {
    right: 25px;
    left: 25px;
  }

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

  .journey-card:nth-child(2) {
    border-right: 0;
  }

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

  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer__contact {
    grid-column: 2 / -1;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 34px, 720px);
  }

  .site-chrome {
    --chrome-height: 104px;
  }

  .topbar__right {
    display: none;
  }

  .topbar__inner {
    justify-content: center;
  }

  body {
    padding-top: 104px;
  }

  .header__inner {
    min-height: 70px;
    gap: 10px;
  }

  .lang-switch {
    position: relative;
    z-index: 120;
    order: 0;
    margin-left: auto;
  }

  .menu-open .lang-switch {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.25);
  }

  .menu-open .lang-switch button:not([aria-pressed="true"]) {
    color: rgba(255, 255, 255, 0.72);
  }

  .site-chrome.is-scrolled .header__inner {
    min-height: 62px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 120;
    width: 46px;
    height: 46px;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  }

  .menu-toggle:active {
    transform: scale(0.94);
  }

  .menu-open .menu-toggle {
    color: var(--white);
    background: var(--forest);
    border-color: var(--forest);
  }

  .menu-open .menu-toggle span {
    background: var(--white);
  }

  .nav-backdrop {
    position: fixed;
    z-index: 90;
    inset: 0;
    display: block !important;
    background: rgba(8, 28, 18, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }

  .menu-open .nav-backdrop:not([hidden]) {
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav {
    position: fixed;
    z-index: 110;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    display: flex;
    width: min(88vw, 380px);
    height: 100dvh;
    max-height: 100dvh;
    padding: calc(var(--chrome-height, 104px) + 18px) 28px 36px;
    align-items: stretch;
    justify-content: flex-start;
    color: var(--white);
    background:
      linear-gradient(165deg, rgba(36, 85, 60, 0.22), transparent 42%),
      linear-gradient(180deg, #102e21 0%, #173d2b 55%, #1f4a34 100%);
    flex-direction: column;
    gap: 0;
    opacity: 1;
    box-shadow: -24px 0 60px rgba(8, 28, 18, 0.28);
    transform: translateX(104%);
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .menu-open .main-nav {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }

  .main-nav__eyebrow {
    display: block;
    margin: 0 0 28px;
    color: var(--rice);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  .menu-open .main-nav__eyebrow {
    opacity: 1;
    transform: none;
    transition-delay: 0.12s;
  }

  .main-nav__links {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 6px;
  }

  .main-nav__num,
  .main-nav__arrow {
    display: inline;
  }

  .main-nav a {
    position: relative;
    display: grid;
    width: 100%;
    min-height: 64px;
    padding: 14px 14px 14px 0;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    color: rgba(255, 255, 255, 0.88);
    font-family: var(--serif);
    font-size: clamp(22px, 6vw, 28px);
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    white-space: normal;
    grid-template-columns: 42px 1fr auto;
    gap: 8px;
    overflow: hidden;
    opacity: 0;
    transform: translateX(28px);
    transition:
      color 0.25s ease,
      background 0.25s ease,
      opacity 0.4s ease,
      transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
      padding 0.25s ease;
  }

  .main-nav a::before {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0;
    content: "";
    background: rgba(215, 180, 105, 0.16);
    transition: width 0.35s ease;
  }

  .main-nav a::after {
    display: none;
  }

  .menu-open .main-nav a {
    opacity: 1;
    transform: none;
  }

  .menu-open .main-nav a:nth-child(1) { transition-delay: 0.1s; }
  .menu-open .main-nav a:nth-child(2) { transition-delay: 0.16s; }
  .menu-open .main-nav a:nth-child(3) { transition-delay: 0.22s; }
  .menu-open .main-nav a:nth-child(4) { transition-delay: 0.28s; }
  .menu-open .main-nav a:nth-child(5) { transition-delay: 0.34s; }

  .main-nav__num {
    position: relative;
    z-index: 1;
    color: var(--rice);
    font-family: var(--serif);
    font-size: 14px;
    opacity: 0.75;
  }

  .main-nav__label {
    position: relative;
    z-index: 1;
    line-height: 1.2;
  }

  .main-nav__arrow {
    position: relative;
    z-index: 1;
    color: var(--rice);
    font-size: 20px;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .main-nav a:active,
  .main-nav a.is-tapped {
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    padding-left: 10px;
  }

  .main-nav a:active::before,
  .main-nav a.is-tapped::before,
  .main-nav a.active::before {
    width: 100%;
  }

  .main-nav a:active .main-nav__arrow,
  .main-nav a.is-tapped .main-nav__arrow,
  .main-nav a.active .main-nav__arrow {
    opacity: 1;
    transform: none;
  }

  .main-nav a.active {
    color: var(--white);
  }

  .main-nav a.active .main-nav__label {
    color: var(--rice);
  }

  .main-nav__foot {
    display: grid;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    gap: 6px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease 0.4s, transform 0.35s ease 0.4s;
  }

  .menu-open .main-nav__foot {
    opacity: 1;
    transform: none;
  }

  .main-nav__foot span {
    font-family: var(--serif);
    font-size: 18px;
  }

  .main-nav__foot small {
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle span:last-child {
    transform: translateY(-6px) rotate(-45deg);
  }

  .home-hero {
    min-height: 760px;
  }

  .hero-index {
    display: none;
  }

  .intro-grid,
  .culture-editorial,
  .connect-grid,
  .split-content,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .intro-image__main {
    min-height: 520px;
  }

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

  .pillar {
    min-height: 500px;
  }

  .culture-editorial {
    gap: 55px;
  }

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

  .producer__image {
    min-height: 500px;
  }

  .map-qr-grid {
    grid-template-columns: 1fr;
  }

  .map-panel {
    min-height: 480px;
  }

  .qr-panel {
    min-height: 480px;
  }

  .gallery-grid {
    grid-auto-rows: 220px;
    grid-template-columns: repeat(2, 1fr);
  }

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

  .experience-card {
    min-height: 480px;
  }

  .notice {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

  .festival-feature__image {
    min-height: 520px;
  }

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

  .footer__intro {
    grid-column: 1 / -1;
  }

  .footer__contact {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .topbar {
    font-size: 8px;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand__mark {
    width: 40px;
    height: 40px;
  }

  .home-hero {
    min-height: 700px;
  }

  .home-hero__content {
    padding-bottom: 70px;
  }

  .display {
    font-size: 45px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section {
    padding: 78px 0;
  }

  .section-title {
    font-size: 38px;
  }

  .section-lead {
    font-size: 14px;
  }

  .intro-image {
    padding: 0 8% 15% 0;
  }

  .intro-image__main {
    min-height: 430px;
  }

  .intro-image__stamp {
    top: 20px;
    width: 78px;
    height: 78px;
    font-size: 9px;
  }

  .pillar {
    min-height: 440px;
  }

  .cave-feature,
  .cave-feature__content {
    min-height: 680px;
  }

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

  .journey-card,
  .journey-card:nth-child(2) {
    min-height: 260px;
    border-right: 0;
  }

  .journey-card h3 {
    margin-top: 55px;
  }

  .culture-gallery {
    grid-template-columns: 1fr;
  }

  .culture-gallery img {
    height: 410px;
  }

  .culture-gallery img:last-child {
    height: 300px;
    margin-top: 0;
  }

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

  .product-card__image {
    height: 280px;
  }

  .producer__image {
    min-height: 420px;
  }

  .producer-profile {
    grid-template-columns: 1fr;
  }

  .connect-action {
    padding: 18px;
    grid-template-columns: 44px 1fr auto;
  }

  .map-panel__card {
    right: 15px;
    bottom: 15px;
    left: 15px;
  }

  .closing-cta {
    min-height: 620px;
  }

  .closing-cta .section-title {
    font-size: 48px;
  }

  .page-hero {
    min-height: 590px;
  }

  .page-hero h1 {
    font-size: 49px;
  }

  .page-hero p {
    font-size: 14px;
  }

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

  .gallery-grid {
    display: block;
  }

  .gallery-item {
    height: 320px;
    margin-bottom: 10px;
  }

  .culture-mosaic {
    display: block;
  }

  .culture-mosaic figure {
    height: 330px;
    margin-bottom: 10px;
  }

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

  .field--full {
    grid-column: auto;
  }

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

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

  .footer__intro,
  .footer__contact {
    grid-column: auto;
  }

  .footer__bottom {
    padding: 22px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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