:root {
  --forest: #1f4d3a;
  --forest-deep: #16382a;
  --forest-soft: #2d6651;
  --gold: #c9a14a;
  --gold-strong: #b88726;
  --gold-soft: #ecd7ab;
  --cream: #f7f3ea;
  --cream-strong: #efe7d8;
  --paper: #fffdf8;
  --text: #22211d;
  --text-soft: #5b574e;
  --line: rgba(31, 77, 58, 0.14);
  --shadow: 0 30px 80px rgba(16, 33, 24, 0.12);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(201, 161, 74, 0.12), transparent 26%),
    linear-gradient(180deg, #fbf8f1 0%, var(--cream) 100%);
}

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

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

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

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

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

.site-shell {
  position: relative;
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 10px;
  z-index: 60;
  width: var(--container);
  margin: 0 auto;
  padding-top: 12px;
}

.topbar {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  backdrop-filter: blur(18px);
  background: rgba(247, 243, 234, 0.82);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.07);
}

.brandmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 0 1 auto;
}

.brandmark--floating {
  margin: 0 0 10px 8px;
}

.brandmark__logo {
  width: clamp(92px, 9vw, 132px);
  height: auto;
  object-fit: contain;
}

.brandmark__plus {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(201, 161, 74, 0.16);
}

.brandmark__badge,
.footer__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(31, 77, 58, 0.12);
  background: linear-gradient(180deg, #fffdf7 0%, #f5ecda 100%);
  color: var(--forest-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-soft);
  flex: 1 1 auto;
  justify-content: center;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--forest);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.site-nav a[aria-current="page"] {
  color: var(--forest-deep);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--forest);
  transition: transform 180ms ease, opacity 180ms ease;
}

.desktop-only {
  display: inline-flex;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.98rem;
  font-weight: 700;
  transition:
    transform 200ms ease,
    background-color 200ms ease,
    color 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

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

.button--solid {
  color: #fff;
  background: linear-gradient(135deg, var(--forest-deep), var(--forest-soft));
  box-shadow: 0 16px 35px rgba(31, 77, 58, 0.23);
}

.button--ghost {
  color: var(--forest);
  border-color: rgba(31, 77, 58, 0.18);
  background: rgba(255, 255, 255, 0.72);
}

.button--light {
  color: var(--forest-deep);
  background: #fff;
}

.button--outline-light {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.38);
}

.button--small {
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.8rem;
}

.hero,
.story-hero,
.about-hero {
  position: relative;
  min-height: 100svh;
  margin-top: -86px;
  padding: 170px 0 90px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg,
.hero__overlay,
.story-hero__bg,
.story-hero__overlay,
.about-hero__bg,
.about-hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__bg {
  background:
    linear-gradient(100deg, rgba(247, 243, 234, 0.96) 10%, rgba(247, 243, 234, 0.68) 42%, rgba(247, 243, 234, 0.08) 70%),
    url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  transform: scale(1.05);
}

.hero__overlay {
  background:
    radial-gradient(circle at 20% 20%, rgba(201, 161, 74, 0.25), transparent 22%),
    linear-gradient(180deg, rgba(31, 77, 58, 0.06) 0%, rgba(31, 77, 58, 0.02) 100%);
}

.story-hero {
  min-height: 84svh;
  align-items: end;
}

.story-hero__bg {
  background:
    linear-gradient(180deg, rgba(12, 12, 12, 0.2), rgba(12, 12, 12, 0.48)),
    url("https://images.unsplash.com/photo-1470337458703-46ad1756a187?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  transform: scale(1.03);
}

.story-hero__overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.08) 58%, rgba(0, 0, 0, 0.2) 100%);
}

.about-hero__bg {
  background:
    linear-gradient(180deg, rgba(14, 31, 22, 0.18), rgba(14, 31, 22, 0.56)),
    url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  transform: scale(1.03);
}

.about-hero__overlay {
  background: linear-gradient(90deg, rgba(12, 27, 20, 0.56) 0%, rgba(12, 27, 20, 0.14) 62%, rgba(12, 27, 20, 0.22) 100%);
}

.hero__content,
.story-hero__content,
.about-hero__content {
  position: relative;
  z-index: 1;
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.65fr);
  gap: 42px;
  align-items: end;
}

.hero__content--single {
  grid-template-columns: minmax(0, 1fr);
}

.hero__copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-strong);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--gold-soft);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 8.4ch;
  font-size: clamp(3.7rem, 8vw, 6.9rem);
  line-height: 0.94;
  color: var(--forest-deep);
}

h1 em,
.story-hero__title em,
.about-hero__title em,
.values-copy h2 em {
  font-style: italic;
  font-weight: 500;
}

.story-hero__title,
.about-hero__title {
  max-width: 9.2ch;
  color: #fff;
  font-size: clamp(3.1rem, 7vw, 5.8rem);
}

.hero__lead,
.story-hero__copy,
.about-hero__copy,
.section-head p,
.story-block p,
.feature-card p,
.value-card p,
.process__copy p,
.timeline p,
.faq-item p,
.cta p,
.footer__text,
.page-copy,
.origin-card p,
.protocol-item p,
.assurance-card p,
.about-overview__copy p,
.farm-card p,
.gold-copy p,
.value-panel p,
.values-points p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.story-hero__copy,
.about-hero__copy {
  max-width: 58ch;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
}

.hero__lead {
  max-width: 56ch;
  margin-top: 22px;
  font-size: 1.04rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.section {
  padding: 110px 0;
}

.section--soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.46)),
    var(--cream-strong);
}

.section--dark {
  background: linear-gradient(180deg, var(--forest-deep) 0%, var(--forest) 100%);
  color: #fff;
}

.story__grid,
.process__grid,
.story-page__grid,
.protocol-grid,
.about-overview,
.values-layout,
.gold-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
}

.story__visual,
.story-page__visual {
  position: relative;
}

.story-collage {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-xl) + 6px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.story-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #efe9dc 100%);
}

.story-collage img:first-child {
  grid-row: span 2;
  min-height: 630px;
}

.quote-card {
  position: absolute;
  left: 28px;
  bottom: -28px;
  max-width: 260px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: 0 18px 40px rgba(17, 34, 25, 0.12);
}

.quote-card__spark {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
}

.quote-card p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  line-height: 1.15;
  color: var(--forest-deep);
}

.story__copy {
  display: grid;
  gap: 26px;
}

.story-block,
.about-overview__copy,
.values-copy,
.assurance-card,
.gold-copy {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.48);
}

.story-block--accent {
  background: linear-gradient(180deg, rgba(31, 77, 58, 0.05), rgba(255, 255, 255, 0.7));
}

.story-block h2,
.section-head h2,
.standards__head h2,
.process__copy h2,
.cta h2,
.page-title,
.story-page__copy h2,
.protocol-copy h2,
.about-overview__copy h2,
.values-copy h2,
.gold-copy h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.98;
  color: var(--forest-deep);
  margin-bottom: 14px;
}

.page-title {
  max-width: 12ch;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  font-weight: 800;
  color: var(--forest);
}

.section-head,
.standards__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

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

.feature-card {
  grid-column: span 4;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.feature-card--hero {
  grid-column: span 7;
  min-height: 490px;
  justify-content: end;
  position: relative;
  color: #fff;
}

.feature-card__media {
  position: absolute;
  inset: 0;
}

.feature-card__media--gold {
  background:
    linear-gradient(180deg, rgba(25, 17, 9, 0.1), rgba(16, 10, 4, 0.8)),
    url("https://images.unsplash.com/photo-1587049352851-8d4e89133924?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
  transform: scale(1.02);
}

.feature-card__content {
  position: relative;
  padding: 28px;
}

.feature-card--hero .feature-card__content {
  margin-top: auto;
}

.feature-card h3,
.value-card h3,
.timeline h3,
.faq-item summary,
.origin-card h3,
.protocol-item h3,
.assurance-card h3,
.value-panel h3,
.farm-card h3,
.values-points h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--forest-deep);
}

.feature-card--hero h3,
.feature-card--hero p {
  color: #fff;
}

.feature-card h3,
.value-card h3,
.timeline h3,
.origin-card h3,
.protocol-item h3,
.assurance-card h3,
.value-panel h3,
.farm-card h3,
.values-points h3 {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 10px;
}

.feature-card__content--compact h3 {
  font-size: 2rem;
}

.packshot {
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 24px;
  background:
    radial-gradient(circle at top, rgba(201, 161, 74, 0.16), transparent 36%),
    linear-gradient(180deg, #fefcf7 0%, #efe8d8 100%);
}

.packshot img {
  width: auto;
  max-height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 18px 25px rgba(0, 0, 0, 0.16));
}

.feature-card--wide {
  grid-column: span 5;
  flex-direction: row;
  align-items: center;
}

.feature-card--wide .packshot {
  min-height: 100%;
  width: 44%;
}

.feature-card--wide .packshot img {
  max-height: 230px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.85rem;
  font-weight: 700;
}

.standards__head {
  justify-content: center;
  text-align: center;
}

.standards__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.value-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow);
}

.value-card__icon,
.farm-card__icon,
.value-panel__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(31, 77, 58, 0.1), rgba(201, 161, 74, 0.22));
  color: var(--forest-deep);
  font-weight: 800;
}

.section--split {
  background:
    linear-gradient(90deg, rgba(31, 77, 58, 0.04), transparent 38%),
    var(--paper);
}

.timeline {
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.timeline__item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 0;
}

.timeline__item + .timeline__item {
  border-top: 1px solid var(--line);
}

.timeline__step {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest-deep);
  color: #fff;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 0 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-size: 2rem;
  line-height: 1;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 0 20px;
}

.story-page__frame,
.about-overview__frame,
.gold-visual__frame {
  min-height: 540px;
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #f8f2e8 0%, #ebe2cf 100%);
  box-shadow: var(--shadow);
}

.story-page__frame img,
.about-overview__frame img,
.gold-visual__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.story-page__year,
.gold-visual__badge {
  position: absolute;
  left: 22px;
  bottom: -24px;
  display: grid;
  gap: 4px;
  min-width: 110px;
  padding: 18px 16px;
  background: var(--gold-soft);
  color: var(--forest-deep);
  box-shadow: 0 18px 35px rgba(31, 77, 58, 0.12);
}

.story-page__year span,
.gold-visual__badge strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
}

.story-page__year small,
.gold-visual__badge span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.story-page__lead {
  margin-bottom: 18px;
  font-size: 1.08rem;
  color: var(--forest-soft);
  font-style: italic;
}

.story-page__stats,
.about-overview__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 28px;
}

.story-page__stats div,
.about-overview__stats div {
  display: grid;
  gap: 6px;
}

.story-page__stats strong,
.about-overview__stats strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--gold-strong);
}

.story-page__stats span,
.about-overview__stats span {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.origin-grid,
.farm-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.origin-card,
.farm-card,
.value-panel {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.origin-card--large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 620px;
  position: relative;
}

.origin-card--split {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  min-height: 300px;
}

.origin-card__media {
  min-height: 100%;
}

.origin-card__media--orchards {
  background:
    linear-gradient(180deg, rgba(4, 16, 12, 0.1), rgba(4, 16, 12, 0.7)),
    url("https://images.unsplash.com/photo-1464226184884-fa280b87c399?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
}

.origin-card__media--oil {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.28)),
    url("https://images.unsplash.com/photo-1514996937319-344454492b37?auto=format&fit=crop&w=900&q=80") center/cover no-repeat;
}

.origin-card__content,
.origin-card__copy,
.farm-card,
.value-panel,
.values-points article {
  padding: 24px;
}

.origin-card__content--light h3,
.origin-card__content--light p,
.gold-copy h2,
.gold-copy p,
.gold-list li {
  color: #fff;
}

.origin-card--large .origin-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.origin-card__pack {
  display: grid;
  place-items: center;
  min-height: 300px;
  padding: 24px;
  background: linear-gradient(180deg, #fffdf6 0%, #efe4ce 100%);
}

.origin-card__pack img {
  max-height: 220px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.14));
}

.origin-card--accent {
  background: linear-gradient(180deg, var(--forest-soft) 0%, var(--forest-deep) 100%);
  color: #fff;
  padding: 22px;
  display: grid;
  gap: 18px;
}

.origin-card__accent-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-soft);
  font-weight: 800;
}

.protocol-list,
.values-stack,
.values-points,
.gold-list {
  display: grid;
  gap: 20px;
}

.protocol-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: start;
}

.protocol-item__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(31, 77, 58, 0.12), rgba(201, 161, 74, 0.24));
  color: var(--forest-deep);
  font-weight: 800;
}

.assurance-card {
  text-align: center;
}

.assurance-card__seal {
  width: 82px;
  height: 82px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(184, 135, 38, 0.4);
  color: var(--gold-strong);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
}

.values-copy h2 {
  margin-bottom: 20px;
}

.farm-card {
  display: grid;
  align-content: start;
}

.gold-copy {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.12);
}

.gold-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}

.gold-list li {
  position: relative;
  padding-left: 20px;
}

.gold-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-soft);
}

.gold-visual {
  position: relative;
}

.gold-visual__frame {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.cta__box {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 32px;
  align-items: center;
  padding: 48px;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(16, 49, 36, 0.98), rgba(31, 77, 58, 0.92)),
    var(--forest);
  box-shadow: 0 24px 60px rgba(17, 43, 31, 0.28);
}

.cta h2,
.cta p {
  color: #fff;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.inner-page {
  min-height: calc(100vh - 220px);
}

.page-hero {
  padding-top: 150px;
}

.footer {
  padding: 34px 0 40px;
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 42px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.footer__identity {
  display: grid;
  gap: 18px;
}

.footer__brandmarks {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__logo {
  width: min(250px, 100%);
  height: auto;
}

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

.footer__column {
  display: grid;
  gap: 10px;
}

.footer__heading {
  margin: 0 0 6px;
  color: var(--forest-deep);
  font-weight: 800;
}

.footer__column a,
.footer__bottom {
  color: var(--text-soft);
  font-weight: 600;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.footer__bottom p {
  margin: 0;
}

.footer--simple {
  padding-top: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

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

  .reveal,
  .button,
  .site-nav a::after,
  .nav-toggle span,
  .hero__bg,
  .story-hero__bg,
  .about-hero__bg {
    transition: none;
  }

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

@media (max-width: 1080px) {
  .site-header {
    width: min(100% - 24px, 1180px);
  }

  .site-nav {
    gap: 14px;
    font-size: 0.78rem;
  }

  .story__grid,
  .process__grid,
  .cta__box,
  .footer__top,
  .story-page__grid,
  .protocol-grid,
  .about-overview,
  .values-layout,
  .gold-layout {
    grid-template-columns: 1fr;
  }

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

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

  .feature-card,
  .feature-card--hero,
  .feature-card--wide {
    grid-column: auto;
  }

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

  .origin-grid,
  .farm-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .origin-card--large,
  .origin-card--split {
    grid-column: span 2;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100% - 24px, 1180px);
    --radius-xl: 26px;
  }

  .site-header {
    top: 8px;
    padding-top: 8px;
  }

  .topbar {
    padding: 10px 12px;
    border-radius: 26px;
    align-items: center;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-block;
    margin-left: auto;
    order: 2;
  }

  .site-nav {
    display: none;
    width: 100%;
    padding-top: 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    order: 3;
  }

  .site-nav.is-open {
    display: flex;
  }

  .desktop-only {
    display: none;
  }

  .hero,
  .story-hero,
  .about-hero,
  .page-hero {
    margin-top: -96px;
    padding-top: 170px;
    min-height: 72svh;
  }

  h1 {
    font-size: clamp(3.1rem, 15vw, 4.8rem);
  }

  .section {
    padding: 82px 0;
  }

  .section-head,
  .standards__head {
    align-items: start;
    text-align: left;
  }

  .story-collage {
    grid-template-columns: 1fr 1fr;
    padding: 16px;
  }

  .story-collage img:first-child {
    min-height: 380px;
  }

  .quote-card {
    position: static;
    margin-top: 14px;
    max-width: none;
  }

  .product-grid,
  .footer__columns,
  .origin-grid,
  .farm-grid {
    grid-template-columns: 1fr;
  }

  .feature-card--wide,
  .origin-card--split {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .feature-card--wide .packshot {
    width: 100%;
  }

  .faq-item summary {
    font-size: 1.7rem;
  }

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

  .origin-card--large,
  .origin-card--split {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .brandmark {
    gap: 8px;
  }

  .brandmark--floating {
    margin-left: 4px;
  }

  .brandmark__logo {
    width: 86px;
  }

  .brandmark__badge,
  .footer__badge {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.92rem;
  }

  .hero__lead,
  .page-copy,
  .story-hero__copy,
  .about-hero__copy {
    font-size: 0.96rem;
  }

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

  .story-collage img:first-child {
    grid-row: auto;
    min-height: 300px;
  }

  .packshot {
    min-height: 300px;
  }

  .packshot img {
    max-height: 220px;
  }

  .timeline__item,
  .protocol-item {
    grid-template-columns: 1fr;
  }

  .cta__box {
    padding: 34px 22px;
  }

  .story-page__frame,
  .about-overview__frame,
  .gold-visual__frame {
    min-height: 360px;
    padding: 18px;
  }

  .story-page__year,
  .gold-visual__badge {
    left: 14px;
  }
}
