: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 {
  min-height: clamp(560px, 72svh, 690px);
  margin-top: -58px;
  padding: 124px 0 58px;
}

.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%),
    var(--managed-bg-image, 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)),
    var(--managed-bg-image, 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: 34px;
  align-items: center;
}

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

.hero__copy {
  max-width: 620px;
  display: grid;
  justify-items: start;
}

.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);
}

.hero h1 {
  max-width: 9.2ch;
  font-size: clamp(3rem, 5vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: -0.022em;
}

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: 48ch;
  margin-top: 16px;
  font-size: 0.98rem;
  line-height: 1.68;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.section {
  padding: 84px 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: 42px;
  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: 24px;
  margin-bottom: 26px;
}

.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)),
    var(--managed-bg-image, 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;
}

.feature-catalogue-button {
  min-height: 40px;
  padding: 0 18px;
  border-color: rgba(31, 77, 58, 0.14);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(20, 46, 34, 0.06);
}

.feature-catalogue-button:hover,
.feature-catalogue-button:focus-visible {
  border-color: rgba(31, 77, 58, 0.28);
  background: #fff;
  box-shadow: 0 14px 30px rgba(20, 46, 34, 0.1);
}

.feature-card--pack .packshot {
  min-height: 390px;
}

.packshot--feature {
  overflow: hidden;
  padding: 18px 20px 10px;
}

.packshot--feature img {
  width: min(100%, 296px);
  max-width: min(100%, 296px);
  max-height: 332px;
  object-fit: contain;
  object-position: center bottom;
}

.packshot--turmeric img,
.packshot--coriander img {
  width: min(100%, 314px);
  max-width: min(100%, 314px);
  max-height: 344px;
}

.packshot--chilli img {
  width: min(100%, 286px);
  max-width: min(100%, 286px);
  max-height: 320px;
}

.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);
}

.standards .value-card h3,
.standards .value-card p {
  max-width: 34ch;
}

.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;
}

.benefits .process__copy p:not(.eyebrow) {
  max-width: 56ch;
}

.benefits .timeline h3,
.benefits .timeline p {
  max-width: 42ch;
}

.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)),
    var(--managed-bg-image, 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)),
    var(--managed-bg-image, 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;
  }

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

  .hero {
    min-height: clamp(500px, 64svh, 590px);
    margin-top: -82px;
    padding: 126px 0 48px;
  }

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

  .hero h1 {
    max-width: 8.6ch;
    font-size: clamp(2.75rem, 10vw, 3.95rem);
    line-height: 1;
  }

  .hero__lead {
    max-width: 44ch;
    margin-top: 14px;
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .hero__actions {
    margin-top: 18px;
  }

  .section {
    padding: 64px 0;
  }

  .section-head,
  .standards__head {
    align-items: start;
    text-align: left;
    margin-bottom: 24px;
  }

  .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%;
  }

  .feature-card--pack .packshot {
    min-height: 360px;
  }

  .packshot--feature {
    padding: 16px 18px 8px;
  }

  .packshot--feature img,
  .packshot--turmeric img,
  .packshot--coriander img,
  .packshot--chilli img {
    width: min(100%, 280px);
    max-width: min(100%, 280px);
    max-height: 314px;
  }

  .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) {
  .section {
    padding: 54px 0;
  }

  .section-head,
  .standards__head {
    margin-bottom: 20px;
  }

  .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;
  }

  .feature-card--pack .packshot {
    min-height: 342px;
  }

  .packshot--feature {
    padding: 12px 16px 6px;
  }

  .packshot--feature img,
  .packshot--turmeric img,
  .packshot--coriander img,
  .packshot--chilli img {
    width: min(100%, 258px);
    max-width: min(100%, 258px);
    max-height: 292px;
  }

  .feature-catalogue-button {
    width: 100%;
    justify-content: center;
  }

  .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;
  }
}

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

.topbar {
  position: sticky;
  top: 10px;
  z-index: 75;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 8px 0;
}

.brandmark__logo {
  width: clamp(80px, 7vw, 106px);
}

.story-hero,
.about-hero {
  margin-top: -20px;
  padding: 118px 0 90px;
}

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

.catalog-hero {
  padding-top: 92px;
  padding-bottom: 84px;
}

.catalog-hero__layout,
.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 36px;
  align-items: start;
}

.catalog-hero__title,
.product-summary__title {
  max-width: 9ch;
  font-size: clamp(3.4rem, 6vw, 5.6rem);
  line-height: 0.92;
  color: var(--forest-deep);
}

.catalog-hero__title em,
.product-summary__title em {
  font-style: italic;
  font-weight: 500;
}

.catalog-hero__lead,
.catalog-summary__card p,
.product-card p,
.product-summary__lead,
.product-summary__note,
.product-fact__copy p,
.product-highlight__copy p,
.detail-grid__panel p,
.related-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.catalog-summary {
  display: grid;
  gap: 14px;
  align-content: start;
}

.catalog-summary__card,
.product-fact,
.detail-grid__panel,
.related-card,
.product-note,
.product-info-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.catalog-summary__card {
  padding: 20px 22px;
}

.catalog-summary__label,
.product-card__tag,
.product-summary__label,
.product-rating,
.product-card__pack,
.detail-grid__label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-summary__label,
.product-summary__label,
.product-card__tag {
  background: rgba(31, 77, 58, 0.08);
  color: var(--forest);
}

.catalog-summary__card strong,
.product-info-card strong {
  display: block;
  margin: 8px 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1.02;
  color: var(--forest-deep);
}

.catalog-summary__card strong,
.catalog-summary__card p {
  max-width: none;
}

.catalog-summary__card p {
  line-height: 1.72;
}

.catalog-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.catalog-chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(31, 77, 58, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.catalog-chip--active {
  background: var(--forest-deep);
  color: #fff;
  border-color: transparent;
}

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

.products-page .catalog-grid {
  margin-top: 0;
}

.product-card,
.related-card {
  overflow: hidden;
}

.product-card__media,
.related-card__media {
  position: relative;
  display: block;
  min-height: 300px;
  background-color: #efe6d2;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.product-card__media--packshot,
.related-card__media--packshot {
  display: grid;
  place-items: center;
  padding: 26px;
  background:
    radial-gradient(circle at top, rgba(201, 161, 74, 0.18), transparent 36%),
    linear-gradient(180deg, #fffdf6 0%, #efe4ce 100%);
}

.product-card__media--packshot img,
.related-card__media--packshot img {
  width: auto;
  max-width: 100%;
  max-height: 245px;
  object-fit: contain;
  filter: drop-shadow(0 18px 25px rgba(0, 0, 0, 0.16));
}

.product-card__size,
.related-card__size,
.product-header__size {
  color: #234f3f;
  font-weight: 800;
  text-decoration: none !important;
}

.products-page .product-card__media--packshot {
  overflow: hidden;
  padding: 0;
}

.products-page .product-card__media--packshot img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center center;
  filter: none;
}

.product-card__media--honey,
.related-card__media--honey {
  background-image:
    linear-gradient(180deg, rgba(18, 15, 10, 0.08), rgba(18, 15, 10, 0.4)),
    url("https://lh3.googleusercontent.com/aida-public/AB6AXuDvcoJO-ughCVpDi2zXWj4H91K3ZXyg26wot_QznbVLKWlMGqFDs0ib6p3AHIQD3Dal7CSr7fMxX9yOoTJE_38ieCwiP9JSMH_UCxti5VsMr2OXe7sl2HYSHgz3VoHb6CUOz5s5efXk0rDvxGOCU6jD0xdSNNCefaLQMAducJnT87q9xNSCmRMVIYwUS3oHIdRSl-NV5bj0NMCmQf8IFH3jRqCgt2L-gXLlnjrtFWOcHCNhZvpJ0mxYZfo5Y1I5dWlC69b1LWeKocbA");
}

.product-card__media--saffron,
.related-card__media--saffron {
  background-image:
    linear-gradient(180deg, rgba(14, 11, 6, 0.08), rgba(14, 11, 6, 0.32)),
    url("https://images.unsplash.com/photo-1615485500704-8e990f9900f7?auto=format&fit=crop&w=1200&q=80");
}

.product-card__media--flour,
.related-card__media--flour {
  background-image:
    linear-gradient(180deg, rgba(10, 10, 10, 0.04), rgba(10, 10, 10, 0.26)),
    url("https://images.unsplash.com/photo-1608198093002-ad4e005484ec?auto=format&fit=crop&w=1200&q=80");
}

.product-card__media--cardamom,
.related-card__media--cardamom {
  background-image:
    linear-gradient(180deg, rgba(10, 18, 14, 0.08), rgba(10, 18, 14, 0.32)),
    url("https://images.unsplash.com/photo-1662954726847-2cb2878a7f00?auto=format&fit=crop&w=1200&q=80");
}

.product-card__body,
.related-card__body {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.product-card__topline,
.product-summary__head,
.product-summary__pricing,
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.product-card h2,
.related-card h3,
.product-highlight__copy h2 {
  font-size: 2.15rem;
  line-height: 0.98;
  color: var(--forest-deep);
}

.product-card__meta,
.product-summary__benefits,
.product-summary__badges,
.detail-grid {
  display: grid;
  gap: 12px;
}

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

.product-card__meta span,
.product-summary__benefits span {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(31, 77, 58, 0.06);
  color: var(--forest-deep);
  font-size: 0.84rem;
  font-weight: 700;
}

.product-card__pricing,
.product-price {
  display: grid;
  gap: 4px;
}

.product-card__pricing strong,
.product-price strong {
  font-size: 1.45rem;
  color: var(--forest-deep);
}

.product-card__pricing span,
.product-price span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.product-card__actions {
  display: flex;
  gap: 10px;
}

.trade-banner {
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(18, 57, 41, 0.98), rgba(31, 77, 58, 0.94));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.62fr);
  box-shadow: 0 24px 60px rgba(17, 43, 31, 0.28);
}

.trade-banner__copy {
  padding: 46px;
}

.trade-banner__copy h2,
.trade-banner__copy p {
  color: #fff;
}

.trade-banner__copy h2 {
  margin: 0 0 14px;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.98;
}

.trade-banner__visual {
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(201, 161, 74, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
    var(--managed-bg-image, url("https://images.unsplash.com/photo-1515705576963-95cad62945b6?auto=format&fit=crop&w=1200&q=80")) center/cover no-repeat;
}

.product-page {
  padding-bottom: 40px;
}

.product-page .section:first-of-type {
  padding-top: 82px;
}

.product-gallery {
  display: grid;
  gap: 16px;
}

.product-main-shot {
  min-height: 560px;
  padding: 32px;
  border-radius: calc(var(--radius-xl) + 4px);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top, rgba(201, 161, 74, 0.14), transparent 34%),
    linear-gradient(180deg, #fffdf8 0%, #efe7d8 100%);
  box-shadow: var(--shadow);
}

.product-main-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.product-thumb {
  padding: 10px;
  border: 1px solid rgba(31, 77, 58, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-thumb img {
  width: 100%;
  height: 92px;
  object-fit: cover;
  border-radius: 12px;
}

.product-thumb.is-active,
.product-thumb:hover,
.product-thumb:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(31, 77, 58, 0.34);
  box-shadow: 0 14px 30px rgba(17, 34, 25, 0.1);
}

.product-summary {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 20px;
}

.product-rating {
  background: rgba(201, 161, 74, 0.14);
  color: var(--gold-strong);
}

.product-summary__lead {
  font-size: 1.02rem;
}

.product-summary__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.product-summary__actions .button {
  flex: 1 1 220px;
}

.product-price strong {
  font-size: 2.5rem;
  line-height: 1;
}

.product-price small {
  font-size: 1rem;
  color: var(--text-soft);
  text-decoration: line-through;
}

.product-summary__note {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(31, 77, 58, 0.06);
}

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

.detail-grid__panel strong {
  display: block;
  margin-top: 10px;
  font-size: 1.05rem;
  color: var(--forest-deep);
}

.detail-grid__label {
  background: rgba(201, 161, 74, 0.14);
  color: var(--gold-strong);
}

.product-facts {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
}

.product-fact ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
  line-height: 1.9;
}

.product-info-card {
  align-self: stretch;
}

.product-highlight {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: 30px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: var(--shadow);
}

.product-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(19, 47, 35, 0.82), rgba(19, 47, 35, 0.18));
}

.product-highlight__copy {
  position: relative;
  z-index: 1;
  max-width: 540px;
  padding: 44px;
}

.product-highlight__copy .eyebrow,
.product-highlight__copy h2,
.product-highlight__copy p {
  color: #fff;
}

.product-highlight--plain {
  min-height: auto;
  border: 1px solid rgba(31, 77, 58, 0.12);
  background: #fffaf0;
  background-image: none !important;
  box-shadow: none;
}

.product-highlight--plain::before {
  display: none;
}

.product-highlight--plain .product-highlight__copy {
  max-width: 980px;
  padding: clamp(28px, 4vw, 46px);
}

.product-highlight--plain .product-highlight__copy .eyebrow {
  color: var(--gold-strong);
}

.product-highlight--plain .product-highlight__copy h2 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--forest-deep);
}

.product-highlight--plain .product-highlight__copy p {
  max-width: 920px;
  color: var(--text-soft);
}

.product-highlight--plain .product-highlight__copy p + p {
  margin-top: 14px;
}

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

.product-standards .value-card {
  text-align: center;
}

.related-grid .related-card__media {
  min-height: 240px;
}

@media (max-width: 1080px) {
  .catalog-hero__layout,
  .product-detail,
  .product-facts,
  .trade-banner {
    grid-template-columns: 1fr;
  }

  .catalog-grid,
  .related-grid,
  .product-standards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-summary {
    position: static;
  }
}

@media (max-width: 820px) {
  .topbar {
    top: 8px;
  }

  .brand-row {
    justify-content: center;
    padding-top: 10px;
  }

  .story-hero,
  .about-hero {
    margin-top: -12px;
    padding-top: 110px;
  }

  .catalog-hero {
    padding-top: 74px;
  }

  .catalog-grid,
  .related-grid,
  .product-standards,
  .product-card__meta,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .product-main-shot {
    min-height: 420px;
  }

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

@media (max-width: 560px) {
  .brandmark__logo {
    width: 76px;
  }

  .catalog-hero__title,
  .product-summary__title {
    font-size: clamp(2.8rem, 13vw, 4.1rem);
  }

  .catalog-summary__card strong,
  .catalog-summary__card p {
    max-width: none;
  }

  .catalog-summary__card strong {
    margin-bottom: 8px;
    line-height: 1.08;
  }

  .catalog-summary__card p {
    line-height: 1.68;
  }

  .catalog-summary__card {
    padding: 18px 20px;
  }

  .trade-banner__copy,
  .product-highlight__copy {
    padding: 28px 22px;
  }

  .product-card__actions,
  .product-summary__actions {
    flex-direction: column;
  }

  .product-main-shot {
    min-height: 320px;
    padding: 18px;
  }
}

body {
  background: #f7f4ee;
}

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  padding-top: 0;
  z-index: 90;
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(31, 77, 58, 0.08);
}

.topbar {
  position: static;
  width: var(--container);
  margin: 0 auto;
  padding: 12px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  gap: 22px;
}

.brandmark--nav {
  flex: 0 0 auto;
  margin-right: auto;
}

.brand-row {
  display: none;
}

.brandmark__logo {
  width: clamp(120px, 13vw, 176px);
}

.brandmark__plus {
  display: none;
}

.brandmark__badge,
.footer__badge {
  min-height: 30px;
  padding: 0 12px;
  background: transparent;
  border: 0;
  color: var(--forest-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.site-nav {
  justify-content: center;
  gap: 22px;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a::after {
  bottom: -5px;
}

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

.product-page {
  padding-bottom: 60px;
}

.product-page .section {
  padding: 48px 0;
}

.product-page .section--soft {
  background: #f1ede5;
}

.product-page .section:first-of-type {
  padding-top: 36px;
}

.product-detail {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.84fr);
  gap: 44px;
  align-items: start;
}

.product-main-shot {
  min-height: 500px;
  padding: 18px;
  border: 0;
  border-radius: 14px;
  background: #fff;
  box-shadow: none;
}

.product-main-shot img {
  object-fit: contain;
}

.product-thumbs {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.product-thumb {
  padding: 0;
  border-radius: 10px;
  border: 1px solid rgba(31, 77, 58, 0.12);
  box-shadow: none;
  background: #fff;
}

.product-thumb img {
  height: 86px;
  border-radius: 9px;
}

.product-thumb.is-active,
.product-thumb:hover,
.product-thumb:focus-visible {
  transform: none;
  border-color: rgba(31, 77, 58, 0.4);
  box-shadow: none;
}

.product-summary {
  position: sticky;
  top: 96px;
  gap: 16px;
}

.product-backlink a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-size: 0.84rem;
  font-weight: 700;
}

.product-backlink a::before {
  content: "\2190";
}

.product-summary__head {
  align-items: center;
}

.product-summary__label,
.product-rating {
  min-height: 26px;
  padding: 0 10px;
  font-size: 0.62rem;
  letter-spacing: 0.13em;
}

.product-summary__title {
  max-width: none;
  font-size: clamp(2.8rem, 4.6vw, 4.4rem);
  line-height: 0.92;
}

.product-summary__lead {
  font-size: 0.95rem;
  line-height: 1.75;
}

.product-summary__pricing {
  align-items: flex-end;
}

.product-price strong {
  font-size: 2.2rem;
}

.product-summary__actions {
  flex-direction: column;
  align-items: stretch;
}

.product-summary__actions .button {
  width: 100%;
  min-height: 44px;
}

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

.product-summary__benefits span {
  border-radius: 10px;
  background: #f3f0e8;
  font-size: 0.8rem;
}

.product-summary__note,
.detail-grid__panel,
.product-fact,
.product-info-card,
.value-card,
.related-card {
  border-radius: 12px;
  box-shadow: none;
  background: #fff;
}

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

.detail-grid__panel {
  padding: 18px;
}

.detail-grid__label {
  min-height: 24px;
  padding: 0 8px;
  font-size: 0.58rem;
}

.product-facts {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
}

.product-fact h2,
.product-highlight__copy h2,
.related-card h3,
.product-card h2 {
  font-size: 2rem;
}

.product-fact ul {
  margin-top: 14px;
  padding-left: 0;
  list-style: none;
}

.product-fact li {
  position: relative;
  padding-left: 22px;
}

.product-fact li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--forest);
  font-weight: 800;
}

.product-highlight {
  min-height: 360px;
  border-radius: 18px;
  box-shadow: none;
}

.product-highlight__copy {
  max-width: 520px;
  padding: 38px;
}

.product-highlight--plain {
  min-height: auto;
  background-image: none !important;
}

.product-highlight--plain .product-highlight__copy {
  max-width: 980px;
}

.coriander-story-highlight {
  border-radius: 16px;
}

.coriander-story-highlight .product-highlight__copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(28px, 4vw, 58px);
  row-gap: 10px;
  max-width: none;
  padding: clamp(24px, 3vw, 34px) clamp(28px, 4vw, 48px);
}

.coriander-story-highlight .product-highlight__copy .eyebrow,
.coriander-story-highlight .product-highlight__copy h2,
.coriander-story-highlight .product-highlight__copy p:nth-of-type(2) {
  grid-column: 1 / -1;
}

.coriander-story-highlight .product-highlight__copy h2 {
  max-width: none;
  margin-bottom: 4px;
  font-size: clamp(1.9rem, 2.5vw, 2.45rem);
  line-height: 1.02;
}

.coriander-story-highlight .product-highlight__copy p {
  max-width: none;
  line-height: 1.68;
}

.coriander-story-highlight .product-highlight__copy p + p {
  margin-top: 0;
}

@media (max-width: 780px) {
  .coriander-story-highlight .product-highlight__copy {
    grid-template-columns: 1fr;
  }

  .coriander-story-highlight .product-highlight__copy .eyebrow,
  .coriander-story-highlight .product-highlight__copy h2,
  .coriander-story-highlight .product-highlight__copy p:nth-of-type(2) {
    grid-column: auto;
  }
}

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

.product-standards .value-card {
  padding: 28px 24px;
}

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

.related-card__media {
  min-height: 220px;
}

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

  .brandmark--nav {
    width: 100%;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: sticky;
  }

  .topbar {
    padding: 10px 0;
  }

  .brandmark--nav {
    width: auto;
  }

  .brandmark__logo {
    width: 118px;
  }

  .product-detail,
  .product-facts,
  .detail-grid,
  .product-summary__benefits,
  .product-standards,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .product-summary {
    position: static;
  }

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

/* Product detail page overrides to better match the supplied reference */
.product-page .container.product-detail {
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.9fr);
  gap: 38px;
}

.product-page .product-gallery {
  gap: 14px;
}

.product-page .product-main-shot {
  min-height: 620px;
  padding: 24px 22px;
  background: #fff;
  border-radius: 0;
}

.product-page .product-main-shot img {
  max-width: 86%;
  margin: 0 auto;
}

.product-page .product-thumb {
  border-radius: 0;
  background: #f4efe4;
}

.product-page .product-thumb img {
  height: 78px;
  border-radius: 0;
}

.product-page .product-summary {
  top: 88px;
  gap: 14px;
  padding-top: 2px;
}

.product-page .product-backlink a {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8d7a4a;
}

.product-page .product-summary__head {
  justify-content: flex-start;
  gap: 10px;
}

.product-page .product-summary__label {
  min-height: 28px;
  padding: 0 12px;
  background: #e4b74a;
  color: #6a5112;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.product-page .product-rating {
  min-height: auto;
  padding: 0;
  background: transparent;
  color: #8b6a1e;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.product-page .product-summary__title {
  margin-top: 2px;
  font-size: clamp(2.7rem, 4.3vw, 4.1rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.product-page .product-summary__subnote {
  margin: -4px 0 2px;
  color: #9b7a24;
  font-size: 0.88rem;
  font-weight: 700;
}

.product-page .product-summary__lead {
  display: none;
}

.product-page .product-summary__pricing {
  justify-content: flex-start;
  gap: 16px;
  align-items: baseline;
}

.product-page .product-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.product-page .product-price strong {
  font-size: 2.05rem;
  color: #1f5a45;
}

.product-page .product-price span {
  display: none;
}

.product-page .product-summary__pricing small {
  font-size: 1rem;
  color: #8f8675;
}

.product-price__save {
  color: #9b7a24;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.product-page .product-summary__actions {
  gap: 8px;
}

.product-page .product-summary__actions .button--solid {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 7px;
  font-size: 0.9rem;
  box-shadow: none;
}

.product-page .product-summary__actions .button--ghost {
  width: auto;
  min-height: 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #8b6a1e;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: none;
  justify-content: flex-start;
}

.product-page .product-summary__actions .button--ghost:hover,
.product-page .product-summary__actions .button--ghost:focus-visible {
  transform: none;
}

.product-page .product-summary__benefits {
  display: flex;
  gap: 24px;
  padding: 6px 0 14px;
  border-bottom: 1px solid rgba(31, 77, 58, 0.12);
}

.product-page .product-summary__benefits span {
  padding: 0;
  background: transparent;
  border-radius: 0;
  color: #3e594d;
  font-size: 0.8rem;
  font-weight: 800;
}

.product-page .product-summary__note {
  display: none;
}

.product-page .detail-grid {
  gap: 18px 26px;
}

.product-page .detail-grid__panel {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.product-page .detail-grid__label {
  min-height: auto;
  padding: 0;
  background: transparent;
  color: #807666;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.product-page .detail-grid__panel strong {
  margin-top: 6px;
  font-size: 0.98rem;
  line-height: 1.45;
  color: #234f3f;
  font-weight: 700;
}

.product-page .detail-grid__panel p {
  display: none;
}

@media (max-width: 820px) {
  .product-page .container.product-detail {
    grid-template-columns: 1fr;
  }

  .product-page .product-main-shot {
    min-height: 420px;
  }

  .product-page .product-main-shot img {
    max-width: 82%;
  }

  .product-page .product-summary__benefits {
    flex-direction: column;
    gap: 10px;
  }
}

.product-page--honey .container.product-detail {
  grid-template-columns: minmax(0, 1.36fr) minmax(340px, 0.88fr);
  gap: 42px;
  align-items: start;
}

.product-page--honey .product-gallery {
  gap: 16px;
}

.product-page--honey .product-main-shot {
  min-height: 600px;
  padding: 0;
  background: #fff;
  border-radius: 0;
}

.product-page--honey .product-main-shot img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}

.product-page--honey .product-thumbs {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.product-page--honey .product-thumb {
  background: #f3eee4;
}

.product-page--honey .product-thumb img {
  height: 92px;
  object-fit: cover;
}

.product-page--honey .product-summary {
  gap: 16px;
  top: 92px;
}

.product-page--honey .product-summary__head {
  gap: 12px;
  margin-bottom: -2px;
}

.product-page--honey .product-summary__title {
  font-size: clamp(2.85rem, 4.2vw, 4rem);
  line-height: 0.9;
}

.product-page--honey .product-summary__subnote {
  margin: -2px 0 4px;
}

.product-page--honey .product-summary__pricing {
  margin-bottom: 2px;
}

.product-page--honey .product-summary__actions {
  margin-bottom: 4px;
}

.product-page--honey .product-summary__actions .button--solid {
  min-height: 40px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 700;
}

.product-page--honey .product-summary__benefits {
  margin-top: -2px;
  margin-bottom: 8px;
}

.product-page--honey .detail-grid {
  gap: 16px 30px;
  padding-top: 14px;
  border-top: 1px solid rgba(31, 77, 58, 0.12);
}

.product-page--honey .section-head {
  justify-content: flex-start;
  margin-bottom: 22px;
}

.product-page--honey .section-head h2 {
  font-size: 2.1rem;
}

.product-page--honey .related-grid {
  gap: 26px;
}

.product-page--honey .related-card {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.product-page--honey .related-card__media {
  min-height: 220px;
  border-radius: 0;
  background-color: #f2ebde;
}

.product-page--honey .related-card__media--packshot {
  padding: 18px;
  background:
    linear-gradient(180deg, #fff9ee 0%, #f2e5cb 100%);
}

.product-page--honey .related-card__body {
  padding: 14px 0 0;
  gap: 6px;
}

.product-page--honey .related-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.38rem;
  line-height: 1;
}

.product-page--honey .related-card p {
  font-size: 0.83rem;
  line-height: 1.6;
}

.related-card__price {
  color: #1f5a45;
  font-size: 0.98rem;
  font-weight: 800;
}

.related-card__price span {
  margin-left: 8px;
  color: #8f8675;
  font-weight: 500;
  text-decoration: line-through;
}

@media (max-width: 820px) {
  .product-page--honey .container.product-detail {
    grid-template-columns: 1fr;
  }

  .product-page--honey .product-main-shot {
    min-height: 420px;
  }
}

.product-header--exact {
  padding-top: 26px;
  padding-bottom: 32px;
}

.product-header__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(360px, 0.94fr);
  gap: 42px;
  align-items: start;
}

.product-header__gallery {
  display: grid;
  gap: 14px;
}

.product-header__nav {
  display: flex;
  align-items: center;
}

.product-header__hero {
  aspect-ratio: 1 / 1;
  max-width: 720px;
  width: 100%;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.product-header__hero img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: 48px;
  transition: opacity 320ms ease;
}

.product-header__hero img.is-transitioning {
  opacity: 0.35;
}

.product-header__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.product-header__thumb {
  padding: 0;
  border: 0;
  cursor: pointer;
  background: #efe8dc;
  min-height: 102px;
}

.product-header__thumb img {
  width: 100%;
  height: 102px;
  display: block;
  object-fit: cover;
}

.product-header__thumb--more {
  display: grid;
  place-items: center;
  color: #6a675f;
  font-size: 1.1rem;
  font-weight: 800;
}

.product-header__summary {
  padding-top: 12px;
}

.product-header__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.product-header__badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 13px;
  border-radius: 999px;
  background: #f0c867;
  color: #7e5b12;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-header__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6f6960;
  font-size: 0.95rem;
}

.product-header__stars {
  color: #9a7420;
  letter-spacing: 0.05em;
  font-size: 0.92rem;
}

.product-header__title {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.7rem, 4vw, 3.9rem);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: #1e5a45;
}

.product-header__trend {
  margin: 0 0 18px;
  color: #9a7420;
  font-size: 0.98rem;
  font-weight: 700;
}

.product-header__price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 24px;
}

.product-header__price strong {
  color: #1e5a45;
  font-size: 2.18rem;
  line-height: 1;
  font-weight: 800;
}

.product-header__price span {
  color: #8f8675;
  font-size: 1.03rem;
  text-decoration: line-through;
}

.product-header__price small {
  color: #9a7420;
  font-size: 0.95rem;
  font-weight: 800;
}

.product-header__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 7px;
  background: #1f5a45;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.product-header__cta:hover,
.product-header__cta:focus-visible {
  background: #173f31;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(31, 77, 58, 0.18);
}

.product-header__flags {
  display: flex;
  gap: 28px;
  padding: 18px 0 18px;
  border-bottom: 1px solid rgba(31, 77, 58, 0.14);
}

.product-header__flags span {
  color: #4c5d55;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-header__specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 32px;
  padding-top: 24px;
}

.product-header__specs p {
  margin: 0 0 6px;
  color: #807666;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-header__specs strong {
  color: #234f3f;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.45;
}

.product-header__specs--wide {
  grid-column: span 2;
}

.product-header__back {
  display: inline-flex;
  color: #8d7a4a;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-header__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
}

.product-header__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(31, 77, 58, 0.18);
  cursor: pointer;
}

.product-header__dot.is-active {
  background: #1f5a45;
}

@media (max-width: 980px) {
  .product-header__grid {
    grid-template-columns: 1fr;
  }

  .product-header__hero {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .product-header__specs {
    grid-template-columns: 1fr 1fr;
  }

  .product-header__thumbs {
    display: none;
  }

  .product-header__hero {
    max-width: 100%;
  }

  .product-header__title {
    font-size: 2.5rem;
  }

  .product-header__hero img {
    padding: 28px;
  }

  .product-header__flags {
    flex-direction: column;
    gap: 10px;
  }
}

/* Final product page interaction + sizing overrides */
.product-header__hero img {
  transition: opacity 320ms ease, transform 220ms ease;
  transform-origin: center center;
}

.product-header__hero:hover img {
  transform: scale(1.12);
}

.product-header__title {
  font-size: clamp(2.2rem, 3.2vw, 3.1rem);
}

.product-header__price {
  flex-wrap: wrap;
}

.product-header__size {
  color: #234f3f;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.related-card__price {
  color: #1f5a45;
  font-size: 0.98rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.related-card__price > span:last-child {
  color: #8f8675;
  font-weight: 500;
  text-decoration: line-through;
}

.related-card__size {
  color: #6b675e;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.catalog-hero__title {
  max-width: 11ch;
  font-size: clamp(2.9rem, 4.4vw, 4.2rem);
  line-height: 0.95;
}

/* Final product page layout overrides */
.product-header__gallery {
  grid-template-columns: 96px minmax(0, 1fr);
  grid-template-areas:
    "nav nav"
    "thumbs hero"
    "dots hero";
  column-gap: 18px;
  row-gap: 12px;
  align-items: start;
}

.product-header__nav {
  grid-area: nav;
}

.product-header__thumbs {
  grid-area: thumbs;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-header__thumb {
  min-height: 96px;
}

.product-header__thumb img {
  height: 96px;
}

.product-header__hero {
  grid-area: hero;
}

.product-header__dots {
  grid-area: dots;
  justify-content: center;
  margin-top: 0;
}

.product-header__hero img {
  transition: opacity 320ms ease, transform 220ms ease;
  transform-origin: center center;
}

.product-header__hero:hover img {
  transform: scale(5);
  cursor: zoom-in;
}

.product-header__title {
  font-size: clamp(1.9rem, 2.45vw, 2.55rem);
  line-height: 0.9;
  max-width: 8.4ch;
}

.product-header__price {
  flex-wrap: wrap;
  column-gap: 12px;
  row-gap: 8px;
}

.product-header__price span {
  text-decoration: line-through;
}

.product-header__price .product-header__size {
  color: #234f3f;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  order: 3;
}

.product-header__price small {
  order: 2;
}

@media (max-width: 640px) {
  .product-header__gallery {
    grid-template-columns: 1fr;
    grid-template-areas:
      "nav"
      "hero"
      "dots";
  }

  .product-header__thumbs {
    display: none;
  }

  .product-header__title {
    max-width: 9.4ch;
    font-size: clamp(1.75rem, 7.2vw, 2.15rem);
  }
}

/* Latest product catalogue refinements */
.brandmark__logo {
  width: clamp(68px, 5vw, 84px);
}

.footer__logo {
  width: min(220px, 100%);
}

.catalog-hero__title {
  max-width: 13ch;
  font-size: clamp(2.45rem, 3.9vw, 3.75rem);
  line-height: 0.94;
}

.product-header__hero {
  --zoom-x: 50%;
  --zoom-y: 50%;
}

.product-header__hero img {
  transform-origin: var(--zoom-x) var(--zoom-y);
  will-change: transform;
}

.product-header__hero:hover img {
  transform: none;
  cursor: default;
}

.product-header__hero.is-zoomed img {
  transform: scale(3);
  cursor: zoom-in;
}

.product-header__title {
  max-width: 12ch;
  font-size: clamp(1.8rem, 2.15vw, 2.3rem);
  line-height: 0.92;
}

.product-header__price span {
  text-decoration: none;
}

.product-header__price .product-header__size {
  order: 3;
}

.related-card__price {
  gap: 10px;
}

.related-card__price strong {
  color: #1f5a45;
  font-size: 0.98rem;
  font-weight: 800;
}

.related-card__size {
  color: #6b675e;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.product-card__price .product-card__size,
.related-card__price .related-card__size,
.product-header__price .product-header__size {
  color: #234f3f;
  font-weight: 800;
  text-decoration: none !important;
}

.related-grid .related-card__body {
  gap: 8px;
  padding: 18px 20px 24px;
  border-top: 1px solid rgba(31, 77, 58, 0.08);
  background: #fff;
}

.related-grid .related-card {
  padding: 0;
}

.related-grid .related-card__rating {
  justify-self: start;
  min-height: 26px;
  padding: 3px 8px;
  border-radius: 6px;
  background: #f7f7f4;
  color: #343833;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
}

.related-grid .related-card__rating span {
  color: #0b8a4a;
  font-size: 0.78rem;
}

.related-grid .related-card h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 800;
  line-height: 1.24;
}

.related-grid .related-card h3 a {
  color: var(--forest-deep);
}

.related-grid .related-card p {
  max-width: 34ch;
  font-size: 0.9rem;
  line-height: 1.55;
}

.related-grid .related-card__price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 2px;
  color: #3c3b37;
  font-size: 1rem;
  line-height: 1.2;
}

.related-grid .related-card__price > * {
  margin-left: 0 !important;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  line-height: 1;
}

.related-grid .related-card__size {
  color: #00584b !important;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.related-grid .related-card__price strong {
  color: #004b3f;
  font-size: 1.16rem;
  font-weight: 900;
}

.related-grid .related-card__media--packshot {
  aspect-ratio: auto;
  height: clamp(250px, 24vw, 310px);
  min-height: 0;
  padding: 0;
  background: #fff !important;
  border-bottom: 1px solid rgba(31, 77, 58, 0.08);
}

.related-grid .related-card__media--packshot img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: none;
}

@media (max-width: 640px) {
  .brandmark__logo {
    width: clamp(64px, 18vw, 76px);
  }

  .product-header__title {
    max-width: 13ch;
    font-size: clamp(1.65rem, 6vw, 1.95rem);
  }
}

/* Contact page */
.contact-page {
  padding-bottom: 40px;
}

.contact-hero {
  padding-top: 86px;
  padding-bottom: 28px;
}

.contact-hero__card {
  position: relative;
  overflow: hidden;
  min-height: 372px;
  border-radius: 24px;
  background:
    linear-gradient(rgba(14, 66, 42, 0.48), rgba(14, 66, 42, 0.48)),
    var(--managed-bg-image, url("https://images.unsplash.com/photo-1492496913980-501348b61469?auto=format&fit=crop&w=1600&q=80")) center/cover;
  box-shadow: var(--shadow);
}

.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 43, 28, 0.2), rgba(7, 43, 28, 0.38));
}

.contact-hero__copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 110px 28px 48px;
  text-align: center;
  color: #fff;
}

.contact-hero__copy h1 {
  margin: 0 0 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 5.6vw, 5rem);
  line-height: 0.92;
  color: #fff;
}

.contact-hero__copy h1 em {
  color: #f0c867;
  font-style: italic;
  font-weight: 600;
}

.contact-hero__copy p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}

.contact-assistance {
  padding-top: 18px;
  padding-bottom: 18px;
}

.contact-assistance__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px 44px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
}

.contact-assistance__card h2,
.contact-form-card h2,
.contact-presence__head h2 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  color: var(--forest-deep);
}

.contact-assistance__card p {
  margin: 0;
  max-width: 560px;
  color: var(--text-soft);
  line-height: 1.8;
}

.contact-assistance__cta,
.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 0;
  border-radius: 10px;
  background: #0e5235;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(14, 82, 53, 0.16);
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.contact-assistance__cta:hover,
.contact-assistance__cta:focus-visible,
.contact-form__submit:hover,
.contact-form__submit:focus-visible {
  background: #093d28;
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(14, 82, 53, 0.22);
}

.contact-layout {
  padding-top: 22px;
  padding-bottom: 48px;
}

.contact-layout__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
  gap: 42px;
  align-items: start;
}

.contact-presence__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}

.contact-presence__head span {
  width: 3px;
  height: 42px;
  border-radius: 999px;
  background: #b68d32;
}

.contact-presence__list {
  display: grid;
  gap: 26px;
}

.contact-presence__item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.contact-presence__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(15, 80, 51, 0.08);
  color: var(--forest-deep);
  font-size: 1rem;
  font-weight: 800;
}

.contact-presence__item p,
.contact-form-card label span {
  display: block;
  margin: 0 0 8px;
  color: #2b2a28;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-presence__item strong,
.contact-presence__item strong a {
  color: #1d1d1b;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-presence__item span {
  display: block;
  margin-top: 4px;
  color: var(--text-soft);
  line-height: 1.7;
}

.contact-quote {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  margin-top: 34px;
  border-radius: 18px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.36)),
    var(--managed-bg-image, url("https://images.unsplash.com/photo-1515443961218-a51367888e4b?auto=format&fit=crop&w=1200&q=80")) center/cover;
}

.contact-quote__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(250, 247, 241, 0.08), rgba(250, 247, 241, 0.32));
}

.contact-quote p {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  line-height: 1.35;
  font-style: italic;
  color: #1f3029;
}

.contact-form-card {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.contact-form-card form {
  display: grid;
  gap: 22px;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  padding: 16px 16px 15px;
  border: 1px solid rgba(31, 77, 58, 0.14);
  border-radius: 0;
  background: #ece9e2;
  color: #34423b;
  font: inherit;
}

.contact-form-card textarea {
  min-height: 144px;
  resize: vertical;
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
  color: #7d8387;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  outline: 2px solid rgba(14, 82, 53, 0.16);
  border-color: rgba(14, 82, 53, 0.28);
}

.contact-form__submit {
  width: 100%;
}

.contact-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 36px;
}

.contact-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.contact-footer__inner p {
  margin: 0;
  color: #3f433f;
}

.contact-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.contact-footer__links a {
  color: #4f524d;
}

@media (max-width: 980px) {
  .contact-layout__grid,
  .contact-assistance__card {
    grid-template-columns: 1fr;
  }

  .contact-assistance__cta {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .contact-hero__card {
    min-height: 320px;
    border-radius: 18px;
  }

  .contact-hero__copy {
    padding: 82px 20px 34px;
  }

  .contact-form-card,
  .contact-assistance__card {
    padding: 24px;
  }

  .contact-form__grid,
  .contact-footer__inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .contact-footer__links {
    gap: 14px 22px;
  }
}

/* About story page refresh */
.about-hero__bg--story {
  background:
    linear-gradient(90deg, rgba(15, 49, 35, 0.6), rgba(15, 49, 35, 0.26)),
    var(--managed-bg-image, url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1600&q=80")) center/cover;
}

.about-hero__overlay--story {
  background: linear-gradient(180deg, rgba(12, 44, 31, 0.18), rgba(12, 44, 31, 0.58));
}

.about-story__intro,
.about-promise {
  max-width: 860px;
}

.about-story__intro h2,
.about-promise h2,
.about-bageechee__copy h2,
.about-philosophy__head h2,
.about-story__copy h2 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 3.1vw, 3rem);
  line-height: 0.98;
  color: var(--forest-deep);
}

.about-story__intro p,
.about-promise p,
.about-bageechee__copy p,
.about-story__copy p,
.about-philosophy__body p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.9;
}

.about-story__intro,
.about-promise,
.about-philosophy__head {
  display: grid;
  gap: 14px;
}

.about-story__flow {
  display: grid;
  gap: 84px;
}

.about-story__chapter,
.about-bageechee {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 44px;
  align-items: center;
}

.about-story__chapter--reverse {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
}

.about-story__chapter--reverse .about-story__visual {
  order: 2;
}

.about-story__chapter--reverse .about-story__copy {
  order: 1;
}

.about-story__copy {
  max-width: 640px;
  display: grid;
  gap: 14px;
}

.about-story__visual,
.about-bageechee__visual {
  position: relative;
}

.about-story__frame,
.about-bageechee__frame {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.about-story__frame img,
.about-bageechee__frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-philosophy__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-top: 34px;
}

.about-philosophy__item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.about-philosophy__image {
  min-height: 224px;
  background-size: cover;
  background-position: center;
}

.about-philosophy__image--spice {
  background-image: var(--managed-bg-image, url("https://images.unsplash.com/photo-1596040033229-a9821ebd058d?auto=format&fit=crop&w=1200&q=80"));
}

.about-philosophy__image--oil {
  background-image: var(--managed-bg-image, url("https://images.unsplash.com/photo-1514996937319-344454492b37?auto=format&fit=crop&w=1200&q=80"));
}

.about-philosophy__image--honey {
  background-image: var(--managed-bg-image, url("https://images.unsplash.com/photo-1587049352841-98b7e60f93e3?auto=format&fit=crop&w=1200&q=80"));
}

.about-philosophy__image--atta {
  background-image: var(--managed-bg-image, url("https://images.unsplash.com/photo-1608198093002-ad4e005484ec?auto=format&fit=crop&w=1200&q=80"));
}

.about-philosophy__body {
  display: grid;
  gap: 12px;
  padding: 24px 24px 26px;
}

.about-philosophy__body h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--forest-deep);
}

.about-bageechee {
  padding: 18px 0;
}

.about-bageechee__copy {
  display: grid;
  gap: 14px;
  max-width: 650px;
}

.about-bageechee__frame {
  min-height: 500px;
}

.about-promise {
  text-align: center;
  margin: 0 auto;
}

@media (max-width: 980px) {
  .about-story__chapter,
  .about-story__chapter--reverse,
  .about-bageechee {
    grid-template-columns: 1fr;
  }

  .about-story__chapter--reverse .about-story__visual,
  .about-story__chapter--reverse .about-story__copy {
    order: initial;
  }

  .about-philosophy__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .about-story__flow {
    gap: 52px;
  }

  .about-story__frame,
  .about-bageechee__frame {
    min-height: 300px;
  }

  .about-philosophy__image {
    min-height: 188px;
  }
}

/* Secure admin */
.admin-body {
  background: #f7f5f0;
  color: #2b2b2b;
}

.admin-panel {
  min-height: 100vh;
  padding: 28px 16px 42px;
}

.admin-shell {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.admin-header,
.admin-toolbar,
.admin-status,
.admin-pending,
.admin-group {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
}

.admin-header {
  display: grid;
  gap: 18px;
  padding: 26px;
}

.admin-header h1,
.admin-pending__head h2 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  line-height: 0.96;
  color: var(--forest-deep);
}

.admin-header__copy {
  max-width: 760px;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.admin-header__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  padding: 20px;
}

.admin-search,
.admin-filter {
  display: grid;
  gap: 8px;
}

.admin-search span,
.admin-filter span {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #33443b;
}

.admin-search input,
.admin-filter select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(31, 77, 58, 0.14);
  border-radius: 12px;
  background: #fff;
  color: #2b2b2b;
  font: inherit;
}

.admin-status {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
}

.admin-status__card {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.78);
}

.admin-status__card p,
.admin-status__card span {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.admin-status__card strong {
  color: var(--forest-deep);
  font-size: 1.7rem;
  line-height: 1;
}

.admin-status__card--wide code {
  font-size: 0.95em;
}

.admin-pending {
  padding: 22px;
}

.admin-pending__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.admin-pending__head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.admin-pending__list {
  display: grid;
  gap: 12px;
}

.admin-upload-item {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff;
}

.admin-upload-item strong {
  color: var(--forest-deep);
}

.admin-upload-item span,
.admin-upload-item code {
  color: var(--text-soft);
}

.admin-groups {
  display: grid;
  gap: 18px;
}

.admin-products {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
}

.admin-section-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 18px;
}

.admin-section-head h2 {
  margin-bottom: 6px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--forest-deep);
}

.admin-section-head p:last-child {
  max-width: 62ch;
  color: var(--text-muted);
}

.admin-section-head__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.admin-product-workspace {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.admin-product-list,
.admin-product-editor {
  border: 1px solid rgba(31, 77, 58, 0.12);
  border-radius: 18px;
  background: #fff;
}

.admin-product-list {
  padding: 16px;
  display: grid;
  gap: 14px;
  position: sticky;
  top: 16px;
}

.admin-search--stacked {
  gap: 8px;
}

.admin-product-list__items {
  display: grid;
  gap: 10px;
  max-height: 920px;
  overflow: auto;
  padding-right: 4px;
}

.admin-product-list__item {
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(31, 77, 58, 0.12);
  border-radius: 14px;
  background: #fffdf8;
  text-align: left;
  transition: border-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.admin-product-list__item:hover,
.admin-product-list__item.is-active {
  border-color: rgba(31, 77, 58, 0.32);
  background: rgba(31, 77, 58, 0.05);
  transform: translateY(-1px);
}

.admin-product-list__item strong {
  color: var(--forest-deep);
  font-size: 1rem;
}

.admin-product-list__item small,
.admin-product-list__eyebrow {
  color: var(--text-muted);
}

.admin-product-list__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-product-editor {
  min-height: 480px;
}

.admin-product-form {
  display: grid;
  gap: 18px;
  padding: 20px;
}

.admin-product-form__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(31, 77, 58, 0.1);
}

.admin-product-form__head h3 {
  margin-bottom: 4px;
  font-size: clamp(1.9rem, 2.6vw, 2.5rem);
  color: var(--forest-deep);
}

.admin-product-form__head p {
  color: var(--text-muted);
}

.admin-product-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

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

.admin-field--wide {
  grid-column: 1 / -1;
}

.admin-field span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest-deep);
}

.admin-field input,
.admin-field textarea {
  width: 100%;
  border: 1px solid rgba(31, 77, 58, 0.16);
  border-radius: 14px;
  background: #fffdf8;
  padding: 12px 14px;
  font: inherit;
  color: inherit;
}

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

.admin-field small {
  color: var(--text-muted);
  line-height: 1.5;
}

.admin-product-empty {
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 24px;
  text-align: center;
}

.admin-product-empty strong {
  color: var(--forest-deep);
  font-size: 1.15rem;
}

.admin-group {
  overflow: hidden;
}

.admin-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: var(--forest-deep);
}

.admin-group summary::-webkit-details-marker {
  display: none;
}

.admin-group summary strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(31, 77, 58, 0.08);
  font-size: 0.95rem;
  font-family: "Manrope", sans-serif;
}

.admin-group__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  padding: 0 20px 20px;
}

.admin-asset-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(31, 77, 58, 0.12);
  border-radius: 18px;
  background: #fff;
}

.admin-asset-card__preview {
  aspect-ratio: 16 / 10;
  background: linear-gradient(180deg, #f7f5f0, #ece7db);
  position: relative;
}

.admin-asset-card__preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.admin-asset-card__preview-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 6px;
  padding: 18px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(247, 245, 240, 0.95), rgba(236, 231, 219, 0.98));
}

.admin-asset-card__preview-fallback[hidden] {
  display: none !important;
}

.admin-asset-card__preview-fallback strong {
  color: var(--forest-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  line-height: 1;
}

.admin-asset-card__preview-fallback span {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.admin-asset-card__body {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.admin-asset-card__head {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: start;
}

.admin-asset-card__head h3 {
  margin: 0 0 4px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--forest-deep);
}

.admin-asset-card__head p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.5;
}

.admin-asset-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(201, 161, 74, 0.15);
  color: #8a6820;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-asset-card__meta {
  display: grid;
  gap: 12px;
  margin: 0;
}

.admin-asset-card__meta div {
  display: grid;
  gap: 4px;
}

.admin-asset-card__meta dt {
  color: #44544b;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-asset-card__meta dd {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
  word-break: break-word;
}

.admin-asset-card__status {
  min-height: 24px;
}

.admin-asset-card__pending {
  color: #8a6820;
  font-size: 0.88rem;
  font-weight: 700;
}

.admin-asset-card__live {
  color: #24513f;
  font-size: 0.88rem;
  font-weight: 700;
}

.admin-asset-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-upload-button {
  cursor: pointer;
}

@media (min-width: 760px) {
  .admin-toolbar {
    grid-template-columns: minmax(0, 1fr) 260px;
    align-items: end;
  }
}

@media (max-width: 980px) {
  .admin-status {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .admin-panel {
    padding: 16px 12px 28px;
  }

  .admin-header,
  .admin-toolbar,
  .admin-pending,
  .admin-products {
    padding: 18px;
  }

  .admin-group summary {
    padding: 16px 18px;
    font-size: 1.55rem;
  }

  .admin-group__grid {
    padding: 0 16px 16px;
  }

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

  .admin-section-head,
  .admin-product-form__head,
  .admin-product-workspace {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .admin-product-list {
    position: static;
  }

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

/* Dedicated chilli feature card sizing */
.harvest .feature-card--chilli-wide {
  display: grid;
  grid-template-columns: minmax(260px, 46%) minmax(0, 1fr);
  align-items: stretch;
}

.harvest .feature-card--chilli-wide .packshot {
  width: 100%;
  min-height: 420px;
  padding: 18px 14px;
  display: grid;
  place-items: center;
}

.harvest .feature-card--chilli-wide .packshot img {
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 390px;
  object-fit: contain;
  object-position: center center;
  transform: scale(1.08);
}

.harvest .feature-card--chilli-wide .feature-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 820px) {
  .harvest .feature-card--chilli-wide {
    grid-template-columns: minmax(240px, 44%) minmax(0, 1fr);
  }

  .harvest .feature-card--chilli-wide .packshot {
    min-height: 360px;
  }

  .harvest .feature-card--chilli-wide .packshot img {
    max-height: 330px;
    transform: scale(1.05);
  }
}

@media (max-width: 640px) {
  .harvest .feature-card--chilli-wide {
    grid-template-columns: 1fr;
  }

  .harvest .feature-card--chilli-wide .packshot {
    min-height: 320px;
    padding: 18px 16px 10px;
  }

  .harvest .feature-card--chilli-wide .packshot img {
    max-height: 300px;
    transform: scale(1.02);
  }
}

/* Final single-card override for homepage chilli feature */
.harvest .feature-card.feature-card--wide.feature-card--pack.feature-card--chilli-wide {
  display: grid;
  grid-template-columns: minmax(340px, 52%) minmax(0, 1fr);
  align-items: stretch;
}

.harvest .feature-card.feature-card--wide.feature-card--pack.feature-card--chilli-wide .packshot {
  width: 100%;
  min-height: 420px;
  padding: 18px 14px;
  display: grid;
  place-items: center;
}

.harvest .feature-card.feature-card--wide.feature-card--pack.feature-card--chilli-wide .packshot img {
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 388px;
  object-fit: contain;
  object-position: center center;
  transform: scale(1.12);
}

.harvest .feature-card.feature-card--wide.feature-card--pack.feature-card--chilli-wide .feature-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 36px;
}

.harvest .feature-card.feature-card--wide.feature-card--pack.feature-card--chilli-wide .feature-card__content h3,
.harvest .feature-card.feature-card--wide.feature-card--pack.feature-card--chilli-wide .feature-card__content p {
  max-width: 18ch;
}

@media (max-width: 820px) {
  .harvest .feature-card.feature-card--wide.feature-card--pack.feature-card--chilli-wide {
    grid-template-columns: minmax(280px, 48%) minmax(0, 1fr);
  }

  .harvest .feature-card.feature-card--wide.feature-card--pack.feature-card--chilli-wide .packshot {
    min-height: 360px;
  }

  .harvest .feature-card.feature-card--wide.feature-card--pack.feature-card--chilli-wide .packshot img {
    max-height: 330px;
    transform: scale(1.08);
  }

  .harvest .feature-card.feature-card--wide.feature-card--pack.feature-card--chilli-wide .feature-card__content {
    padding: 28px;
  }
}

@media (max-width: 640px) {
  .harvest .feature-card.feature-card--wide.feature-card--pack.feature-card--chilli-wide {
    grid-template-columns: 1fr;
  }

  .harvest .feature-card.feature-card--wide.feature-card--pack.feature-card--chilli-wide .packshot {
    min-height: 320px;
    padding: 18px 16px 10px;
  }

  .harvest .feature-card.feature-card--wide.feature-card--pack.feature-card--chilli-wide .packshot img {
    max-height: 296px;
    transform: scale(1.04);
  }

  .harvest .feature-card.feature-card--wide.feature-card--pack.feature-card--chilli-wide .feature-card__content {
    padding: 28px 24px;
  }

  .harvest .feature-card.feature-card--wide.feature-card--pack.feature-card--chilli-wide .feature-card__content h3,
  .harvest .feature-card.feature-card--wide.feature-card--pack.feature-card--chilli-wide .feature-card__content p {
    max-width: none;
  }
}

/* Final lower-card balance refinements */
.harvest .product-grid {
  align-items: start;
}

.harvest .feature-card--coriander-compact {
  align-self: start !important;
  height: auto !important;
}

.harvest .feature-card--coriander-compact .packshot {
  min-height: 360px !important;
}

.harvest .feature-card--coriander-compact .feature-card__content {
  padding: 22px 24px 24px !important;
}

.harvest .feature-card--portfolio {
  display: grid !important;
  grid-template-columns: minmax(260px, 44%) minmax(0, 1fr) !important;
  align-items: center !important;
  min-height: auto !important;
}

.harvest .feature-card--portfolio .packshot {
  width: 100% !important;
  min-height: 360px !important;
  padding: 18px 12px 16px !important;
  display: grid !important;
  place-items: center !important;
}

.harvest .feature-card--portfolio .packshot img {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 340px !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
}

.harvest .feature-card--portfolio .feature-card__content {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: 28px 30px 28px 18px !important;
}

.harvest .feature-card--portfolio .feature-card__content h3 {
  max-width: 12ch;
  margin-bottom: 12px;
}

.harvest .feature-card--portfolio .feature-card__content p {
  max-width: 26ch;
}

@media (max-width: 820px) {
  .harvest .feature-card--coriander-compact .packshot {
    min-height: 332px !important;
  }

  .harvest .feature-card--portfolio {
    grid-template-columns: minmax(220px, 42%) minmax(0, 1fr) !important;
  }

  .harvest .feature-card--portfolio .packshot {
    min-height: 320px !important;
  }

  .harvest .feature-card--portfolio .packshot img {
    max-height: 300px !important;
  }

  .harvest .feature-card--portfolio .feature-card__content {
    padding: 24px 24px 24px 16px !important;
  }
}

@media (max-width: 640px) {
  .harvest .feature-card--coriander-compact .packshot {
    min-height: 292px !important;
  }

  .harvest .feature-card--coriander-compact .feature-card__content {
    padding: 20px 22px 22px !important;
  }

  .harvest .feature-card--portfolio {
    grid-template-columns: 1fr !important;
  }

  .harvest .feature-card--portfolio .packshot {
    min-height: 300px !important;
    padding: 18px 16px 10px !important;
  }

  .harvest .feature-card--portfolio .packshot img {
    max-height: 280px !important;
  }

  .harvest .feature-card--portfolio .feature-card__content {
    padding: 22px 22px 24px !important;
  }

  .harvest .feature-card--portfolio .feature-card__content h3,
  .harvest .feature-card--portfolio .feature-card__content p {
    max-width: none;
  }
}

/* Homepage featured range image refinements */
.harvest .feature-card--pack {
  isolation: isolate;
}

.harvest .feature-card--pack .packshot {
  min-height: 380px;
  padding: 0;
  overflow: hidden;
  align-items: stretch;
  justify-items: stretch;
}

.harvest .feature-card--pack .packshot img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center 48%;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.14));
  transform: scale(1.1);
}

.harvest .feature-card--pack .packshot--turmeric img,
.harvest .feature-card--pack .packshot--coriander img {
  object-position: center 44%;
  transform: scale(1.18);
}

.harvest .feature-card--wide.feature-card--pack .packshot {
  flex: 0 0 48%;
  width: 48%;
  min-height: 380px;
  display: grid;
  place-items: center;
  padding: 14px 8px;
}

.harvest .feature-card--wide.feature-card--pack.packshot--chilli,
.harvest .feature-card--wide.feature-card--pack .packshot--chilli {
  align-self: stretch;
}

.harvest .feature-card--wide.feature-card--pack .packshot--chilli img {
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 420px;
  object-fit: contain;
  object-position: center center;
  transform: scale(1.28);
  opacity: 1;
  pointer-events: auto;
}

.harvest .feature-catalogue-button {
  min-height: 42px;
  padding: 0 18px;
  border-color: rgba(31, 77, 58, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 26px rgba(20, 46, 34, 0.08);
}

.harvest .feature-catalogue-button:hover,
.harvest .feature-catalogue-button:focus-visible {
  background: #fff;
  border-color: rgba(31, 77, 58, 0.22);
  box-shadow: 0 16px 32px rgba(20, 46, 34, 0.12);
}

@media (max-width: 820px) {
  .harvest .feature-card--pack .packshot {
    min-height: 340px;
  }

  .harvest .feature-card--pack .packshot img {
    object-position: center 46%;
    transform: scale(1.14);
  }

  .harvest .feature-card--pack .packshot--turmeric img,
  .harvest .feature-card--pack .packshot--coriander img,
  .harvest .feature-card--wide.feature-card--pack .packshot img {
    transform: scale(1.2);
  }

  .harvest .feature-card--wide.feature-card--pack .packshot {
    flex-basis: 48%;
    width: 48%;
    min-height: 350px;
  }

  .harvest .feature-card--wide.feature-card--pack .packshot--chilli img {
    width: auto;
    height: 100%;
    max-width: 100%;
    max-height: 378px;
    object-fit: contain;
    transform: scale(1.2);
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .harvest .section-head {
    gap: 18px;
  }

  .harvest .feature-catalogue-button {
    width: 100%;
    justify-content: center;
  }

  .harvest .feature-card--pack .packshot {
    min-height: 300px;
  }

  .harvest .feature-card--pack .packshot img {
    object-position: center 45%;
    transform: scale(1.16);
  }

  .harvest .feature-card--pack .packshot--turmeric img,
  .harvest .feature-card--pack .packshot--coriander img {
    transform: scale(1.24);
  }

  .harvest .feature-card--wide.feature-card--pack .packshot {
    width: 100%;
    flex-basis: auto;
    padding: 18px 16px 10px;
    min-height: 320px;
  }

  .harvest .feature-card--wide.feature-card--pack .packshot--chilli img {
    width: auto;
    height: 100%;
    max-width: 100%;
    max-height: 320px;
    object-fit: contain;
    object-position: center center;
    transform: scale(1.14);
    opacity: 1;
  }
}

/* Featured range final editorial structure */
.harvest .product-grid--featured {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  column-gap: 22px;
  row-gap: 18px;
  margin-bottom: 14px !important;
}

.harvest .product-grid--featured .feature-card {
  grid-column: auto !important;
}

.harvest .feature-card--mustard-oil .packshot {
  min-height: 360px !important;
}

.harvest .feature-card--mustard-oil .packshot img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center 44% !important;
  transform: scale(1.18) !important;
}

.harvest .feature-card--mustard-oil .feature-card__content {
  padding: 22px 24px 24px !important;
}

.harvest .feature-card--mustard-oil .feature-card__content h3 {
  font-size: 2rem;
}

.harvest-editorial {
  max-width: 840px !important;
  margin: 0 0 6px !important;
}

.harvest-editorial .eyebrow {
  margin-bottom: 10px;
}

.harvest-editorial h3 {
  margin: 0 0 8px;
  font-size: clamp(2.2rem, 3.5vw, 3.15rem);
  line-height: 0.95;
  color: var(--forest-deep);
}

.harvest-editorial p:not(.eyebrow) {
  max-width: 72ch !important;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.68;
}

.harvest .product-grid--supporting {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  align-content: start;
  column-gap: 10px !important;
  row-gap: 14px !important;
  margin-top: 0 !important;
}

.harvest .product-grid--supporting .feature-card {
  grid-column: auto !important;
  align-self: start !important;
  height: auto !important;
  min-height: 0 !important;
  margin-top: 0 !important;
  justify-self: stretch !important;
}

.harvest .product-grid--supporting .packshot {
  min-height: 360px !important;
  padding: 0 !important;
  overflow: hidden;
}

.harvest .product-grid--supporting .feature-card__content {
  padding: 22px 24px 24px !important;
}

.harvest .feature-card--lal-mirch .packshot img,
.harvest .feature-card--coriander-compact .packshot img,
.harvest .product-grid--supporting .packshot--coriander img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center 44% !important;
  transform: scale(1.18) !important;
}

.harvest .feature-card--lal-mirch .packshot img {
  object-position: center 46% !important;
  transform: scale(1.2) !important;
}

.harvest .feature-card--lal-mirch .feature-card__content h3,
.harvest .product-grid--supporting .feature-card h3 {
  font-size: 2rem;
}

@media (max-width: 820px) {
  .harvest .product-grid--featured {
    column-gap: 12px;
    row-gap: 14px;
    margin-bottom: 10px !important;
  }

  .harvest .feature-card--mustard-oil .packshot {
    min-height: 330px !important;
  }

  .harvest-editorial {
    max-width: 760px !important;
    margin-bottom: 5px !important;
  }

  .harvest-editorial .eyebrow {
    margin-bottom: 8px;
  }

  .harvest .product-grid--supporting .packshot {
    min-height: 330px !important;
  }

  .harvest .product-grid--supporting {
    column-gap: 8px !important;
    row-gap: 12px !important;
  }
}

@media (max-width: 640px) {
  .harvest .product-grid--featured {
    grid-template-columns: 1fr;
    row-gap: 12px;
  }

  .harvest .feature-card--mustard-oil .packshot {
    min-height: 300px !important;
  }

  .harvest .feature-card--mustard-oil .packshot img {
    transform: scale(1.15) !important;
  }

  .harvest-editorial {
    max-width: none !important;
    margin-bottom: 4px !important;
  }

  .harvest-editorial h3 {
    margin-bottom: 8px;
  }

  .harvest-editorial p:not(.eyebrow) {
    line-height: 1.62;
  }

  .harvest .product-grid--supporting {
    grid-template-columns: 1fr;
    row-gap: 10px !important;
    column-gap: 0 !important;
  }

  .harvest .product-grid--supporting .packshot {
    min-height: 300px !important;
  }

  .harvest .product-grid--supporting .feature-card__content {
    padding: 20px 22px 22px !important;
  }

  .harvest .feature-card--lal-mirch .packshot img,
  .harvest .feature-card--coriander-compact .packshot img,
  .harvest .product-grid--supporting .packshot--coriander img {
    transform: scale(1.15) !important;
  }
}

@media (max-width: 560px) {
  .benefits .process__grid {
    gap: 28px;
  }

  .benefits .process__copy p:not(.eyebrow),
  .benefits .timeline h3,
  .benefits .timeline p {
    max-width: none;
  }

  .benefits .timeline {
    padding: 24px 22px;
  }

  .benefits .timeline__item {
    gap: 10px;
    padding: 14px 0;
  }

  .benefits .timeline__step {
    width: 46px;
    height: 46px;
  }

  .standards .value-card h3 {
    margin-bottom: 8px;
  }

  .standards .value-card p {
    max-width: 36ch;
    line-height: 1.68;
  }
}

/* Homepage hero editorial refinement */
.hero {
  min-height: 520px;
  margin-top: -44px;
  padding: 108px 0 42px;
  align-items: flex-start;
}

.hero__content {
  align-items: start;
}

.hero__content--single {
  max-width: var(--container);
}

.hero__copy {
  max-width: 560px;
  display: grid;
  justify-items: start;
}

.hero .eyebrow {
  margin-bottom: 10px;
}

.hero h1 {
  max-width: 8.2ch;
  font-size: clamp(2.7rem, 4.4vw, 4.1rem);
  line-height: 1;
  letter-spacing: -0.018em;
}

.hero__lead {
  max-width: 42ch;
  margin-top: 14px;
  font-size: 0.96rem;
  line-height: 1.62;
}

.hero__actions {
  gap: 10px;
  margin-top: 16px;
}

@media (max-width: 820px) {
  .hero {
    min-height: 460px;
    margin-top: -70px;
    padding: 104px 0 36px;
  }

  .hero__copy {
    max-width: 500px;
  }

  .hero h1 {
    max-width: 8ch;
    font-size: clamp(2.45rem, 8.2vw, 3.35rem);
    line-height: 1.02;
  }

  .hero__lead {
    max-width: 38ch;
    margin-top: 12px;
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .hero__actions {
    margin-top: 14px;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: auto;
    margin-top: -58px;
    padding: 96px 0 30px;
    align-items: flex-start;
  }

  .hero h1 {
    max-width: 7.6ch;
    font-size: clamp(2.15rem, 9vw, 2.95rem);
    line-height: 1.04;
  }

  .hero__lead {
    max-width: 31ch;
    margin-top: 10px;
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .hero__actions {
    width: 100%;
    gap: 8px;
    margin-top: 12px;
  }

  .hero__actions .button {
    min-height: 44px;
  }
}

@media (max-width: 420px) {
  .hero__actions .button {
    width: 100%;
    justify-content: center;
  }
}

/* Brand Story page refinement */
.brand-story-page .story-hero {
  min-height: clamp(480px, 66svh, 580px);
  margin-top: -28px;
  padding: 108px 0 34px;
  align-items: center;
}

.brand-story-page .story-hero__bg {
  background:
    linear-gradient(92deg, rgba(14, 38, 28, 0.82) 0%, rgba(14, 38, 28, 0.54) 38%, rgba(14, 38, 28, 0.16) 74%),
    var(--managed-bg-image, url("https://images.unsplash.com/photo-1509358271058-acd22cc93898?w=600&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTF8fHNwaWNlc3xlbnwwfHwwfHx8MA%3D%3D")) center/cover no-repeat;
  transform: scale(1.02);
}

.brand-story-page .story-hero__overlay {
  background:
    linear-gradient(180deg, rgba(8, 25, 18, 0.12) 0%, rgba(8, 25, 18, 0.24) 100%),
    radial-gradient(circle at 18% 22%, rgba(201, 161, 74, 0.14), transparent 22%);
}

.brand-story-page .story-hero__content {
  width: var(--container);
  max-width: 1180px;
  display: grid;
  justify-items: start;
}

.brand-story-page .story-hero__title {
  max-width: 9.6ch;
  font-size: clamp(2.65rem, 4.2vw, 4rem);
  line-height: 0.98;
}

.brand-story-page .story-hero__copy {
  max-width: 42ch;
  margin-top: 14px;
  font-size: 0.96rem;
  line-height: 1.64;
}

.brand-story-page .about-story__chapter {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
}

.brand-story-page .about-story__copy {
  max-width: 600px;
  gap: 12px;
}

.brand-story-page .about-story__copy h2,
.brand-story-page .brand-story-page__head h2 {
  max-width: 15ch;
}

.brand-story-page .about-story__copy p,
.brand-story-page .value-card p {
  max-width: 42ch;
  line-height: 1.76;
}

.brand-story-page .about-story__frame {
  width: 100%;
  max-width: 430px;
  aspect-ratio: 911 / 1280;
  min-height: 0;
  justify-self: end;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #f8f2e8 0%, #ebe2cf 100%);
}

.brand-story-page .about-story__frame img {
  object-fit: cover;
  padding: 0;
}

.brand-story-page__head {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-bottom: 30px;
  text-align: center;
}

.brand-story-page .brand-story-values-section {
  padding-top: 52px;
}

.brand-story-page .brand-story-page__head h2 {
  max-width: 760px;
  margin: 0 auto;
}

.brand-story-page__values .value-card {
  padding: 28px;
}

.brand-story-page__values .value-card h3,
.brand-story-page__values .value-card p {
  max-width: 32ch;
}

.brand-story-page .cta__box {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 34px 36px;
}

.brand-story-page .cta__box h2 {
  max-width: 16ch;
  margin-bottom: 12px;
  font-size: clamp(2.25rem, 3.6vw, 3.2rem);
  line-height: 0.98;
}

.brand-story-page .cta__box p {
  max-width: 38ch;
  line-height: 1.7;
}

.brand-story-page .cta__actions {
  justify-content: flex-end;
  gap: 12px;
}

@media (max-width: 820px) {
  .brand-story-page .story-hero {
    min-height: 400px;
    margin-top: -70px;
    padding: 118px 0 28px;
  }

  .brand-story-page .story-hero__title {
    max-width: 9.2ch;
    font-size: clamp(2.3rem, 7vw, 3.15rem);
  }

  .brand-story-page .story-hero__copy {
    max-width: 34ch;
    margin-top: 12px;
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .brand-story-page .about-story__chapter {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .brand-story-page .about-story__visual {
    justify-self: center;
    width: min(100%, 430px);
  }

  .brand-story-page .about-story__frame {
    justify-self: center;
  }

  .brand-story-page .cta__box {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 30px 26px;
    align-items: start;
  }

  .brand-story-page .cta__box h2,
  .brand-story-page .cta__box p {
    max-width: none;
  }

  .brand-story-page .cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .brand-story-page .story-hero {
    min-height: auto;
    margin-top: -48px;
    padding: 92px 0 18px;
    align-items: flex-start;
  }

  .brand-story-page .story-hero__title {
    max-width: 8.6ch;
    font-size: clamp(1.95rem, 8.2vw, 2.6rem);
    line-height: 1.02;
  }

  .brand-story-page .story-hero__copy {
    max-width: 28ch;
    margin-top: 10px;
    font-size: 0.88rem;
    line-height: 1.52;
  }

  .brand-story-page .about-story__copy {
    gap: 10px;
  }

  .brand-story-page .about-story__copy p,
  .brand-story-page .value-card p,
  .brand-story-page .cta__box p {
    max-width: none;
  }

  .brand-story-page .about-story__frame {
    width: min(100%, 360px);
  }

  .brand-story-page__head {
    margin-bottom: 18px;
  }

  .brand-story-page__values .value-card {
    padding: 24px;
  }

  .brand-story-page .cta__box {
    gap: 14px;
    padding: 24px 20px;
  }

  .brand-story-page .cta__box h2 {
    margin-bottom: 10px;
    font-size: clamp(1.9rem, 8vw, 2.45rem);
    line-height: 1.02;
  }

  .brand-story-page .cta__box p {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .brand-story-page .cta__actions {
    gap: 10px;
  }
}

/* Related product cards: keep image and text as separate full-width card areas. */
.related-grid .related-card {
  display: grid !important;
  grid-template-rows: clamp(190px, 18vw, 240px) auto;
  align-content: start;
  padding: 0 !important;
  overflow: hidden;
}

.related-grid .related-card__media {
  min-height: 0 !important;
}

.related-grid .related-card__media--packshot {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100% !important;
  min-height: 0 !important;
  padding: 0 !important;
  background: #fff !important;
}

.related-grid .related-card__media--packshot img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.related-grid .related-card__body {
  display: grid !important;
  padding: 18px 22px 24px;
  background: #fff;
}

@media (max-width: 640px) {
  .related-grid .related-card {
    grid-template-rows: clamp(200px, 52vw, 240px) auto;
  }
}

/* Final related-card layout guard. Keeps image and text both visible. */
.related-grid .related-card--compact {
  display: flex !important;
  flex-direction: column !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: #fff !important;
}

.related-grid .related-card--compact .related-card__media,
.related-grid .related-card--compact .related-card__media--packshot {
  flex: 0 0 285px !important;
  width: 100% !important;
  height: 285px !important;
  min-height: 0 !important;
  max-height: 285px !important;
  padding: 0 !important;
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
  background: #fff !important;
  border-bottom: 1px solid rgba(31, 77, 58, 0.08) !important;
}

.related-grid .related-card--compact .related-card__media img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  filter: none !important;
}

.related-grid .related-card--compact .related-card__body {
  display: grid !important;
  flex: 0 0 auto !important;
  width: 100% !important;
  min-height: 0 !important;
  padding: 18px 22px 24px !important;
  background: #fff !important;
}

@media (max-width: 640px) {
  .related-grid .related-card--compact .related-card__media,
  .related-grid .related-card--compact .related-card__media--packshot {
    flex-basis: 270px !important;
    height: 270px !important;
    max-height: 270px !important;
  }
}

/* Hard reset for related-card packshots and price line. */
.related-grid .related-card--compact > .related-card__media--packshot {
  flex: 0 0 auto !important;
  flex-basis: auto !important;
  width: 100% !important;
  height: 360px !important;
  max-height: none !important;
  overflow: hidden !important;
  background: #fff !important;
}

.related-grid .related-card--compact > .related-card__media--packshot > img {
  position: static !important;
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto !important;
}

.related-grid .related-card__price span {
  text-decoration: none !important;
}

.related-grid .related-card--compact .related-card__media--packshot img[src] {
  inline-size: auto !important;
  block-size: auto !important;
  max-inline-size: 100% !important;
  max-block-size: 100% !important;
}

.related-grid .related-card--compact .related-card__price span {
  text-decoration: none !important;
}

/* Isolated image-frame fix for dynamic related product cards. */
.related-grid > .related-card.related-card--compact > .related-card__media.related-card__media--packshot {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  aspect-ratio: 3 / 4 !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: #fff !important;
}

.related-grid > .related-card.related-card--compact > .related-card__media .related-card__image-frame {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
}

.related-grid > .related-card.related-card--compact > .related-card__media .related-card__image-frame > img {
  position: static !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  inline-size: 100% !important;
  block-size: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

/* Sitewide navbar logo update */
.brandmark--nav {
  gap: clamp(10px, 1.1vw, 16px);
}

.brandmark--nav .brandmark__logo {
  width: clamp(116px, 8.6vw, 154px);
}

.brandmark--nav .brandmark__badge-logo {
  display: block;
  width: clamp(66px, 5.4vw, 88px);
  height: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
}

.footer__badge-logo {
  display: block;
  width: min(220px, 100%);
  height: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
}

@media (max-width: 820px) {
  .brandmark--nav .brandmark__logo {
    width: clamp(104px, 28vw, 132px);
  }

  .brandmark--nav .brandmark__badge-logo {
    width: clamp(60px, 18vw, 76px);
  }

  .footer__badge-logo {
    width: min(220px, 100%);
  }
}

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

  .brandmark--nav .brandmark__logo {
    width: 98px;
  }

  .brandmark--nav .brandmark__badge-logo {
    width: 58px;
  }
}
