﻿:root {
  --warm-ivory: #f8f1e7;
  --soft-ivory: #fff9f0;
  --deep-charcoal: #1f1b16;
  --spice-red: #9b2f2f;
  --archipelago-blue: #173b57;
  --warm-gold: #c89b52;
  --cinnamon: #7a4a2a;
  --muted: #6f6254;
  --line: rgba(31, 27, 22, 0.12);
  --shadow: 0 24px 70px rgba(31, 27, 22, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--deep-charcoal);
  background:
    linear-gradient(rgba(248, 241, 231, 0.92), rgba(248, 241, 231, 0.92)),
    repeating-linear-gradient(90deg, rgba(122, 74, 42, 0.05) 0 1px, transparent 1px 72px);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled,
body.nav-open .site-header {
  background: rgba(248, 241, 231, 0.94);
  border-color: rgba(200, 155, 82, 0.3);
  box-shadow: 0 16px 50px rgba(31, 27, 22, 0.08);
  backdrop-filter: blur(16px);
}

.top-info {
  border-bottom: 1px solid rgba(248, 241, 231, 0.18);
  color: rgba(248, 241, 231, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  transition: color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled .top-info,
body.nav-open .top-info {
  border-color: rgba(200, 155, 82, 0.24);
  color: var(--muted);
}

.top-info-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.top-info a {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 180ms ease;
}

.top-info a:hover {
  color: var(--warm-gold);
}

.site-header.is-scrolled .top-info a:hover,
body.nav-open .top-info a:hover {
  color: var(--spice-red);
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--warm-ivory);
  transition: color 180ms ease;
}

.site-header.is-scrolled .brand-mark,
body.nav-open .brand-mark {
  color: var(--deep-charcoal);
}

.brand-logo {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  object-fit: contain;
}

.brand-mark strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.16rem;
  line-height: 1.05;
}

.brand-mark small {
  display: block;
  margin-top: 2px;
  color: rgba(248, 241, 231, 0.76);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-header.is-scrolled .brand-mark small,
body.nav-open .brand-mark small {
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(248, 241, 231, 0.88);
  font-size: 0.88rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.site-header.is-scrolled .nav-links,
body.nav-open .nav-links {
  color: var(--deep-charcoal);
}

.nav-links a {
  position: relative;
  padding: 10px 0;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 1px;
  background: var(--warm-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-cta {
  border: 1px solid rgba(248, 241, 231, 0.46);
  border-radius: 999px;
  padding: 10px 18px;
}

.site-header.is-scrolled .nav-cta,
body.nav-open .nav-cta {
  border-color: rgba(155, 47, 47, 0.25);
  color: var(--spice-red);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: clamp(560px, 84svh, 780px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--warm-ivory);
  background: var(--deep-charcoal);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(31, 27, 22, 0.9) 0%, rgba(31, 27, 22, 0.72) 45%, rgba(31, 27, 22, 0.16) 100%),
    linear-gradient(180deg, rgba(31, 27, 22, 0.1), rgba(31, 27, 22, 0.2)),
    url("../assets/hero-spice-bowl-hires.jpg") center right / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--spice-red), var(--warm-gold), var(--archipelago-blue));
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 158px 0 74px;
}

.hero-copy {
  max-width: 790px;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.02;
  font-weight: 600;
}

.hero h1 {
  max-width: 830px;
  font-size: clamp(3.3rem, 6.6vw, 6.1rem);
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero-sub {
  max-width: 620px;
  margin: 24px 0 0;
  color: #fff4e5;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.45;
}

.hero-text {
  max-width: 600px;
  margin: 18px 0 0;
  color: rgba(248, 241, 231, 0.82);
  font-size: 1rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  background: var(--spice-red);
  color: var(--warm-ivory);
}

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

.button.secondary {
  color: var(--warm-ivory);
  border-color: rgba(248, 241, 231, 0.46);
}

.button.secondary:hover {
  border-color: var(--warm-gold);
  color: var(--warm-gold);
}

.section {
  padding: clamp(72px, 9vw, 116px) 0;
}

.story-grid,
.origin-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.section-copy h2,
.section-head h2 {
  max-width: 760px;
  color: var(--deep-charcoal);
  font-size: clamp(2.2rem, 5vw, 4.45rem);
}

.section-copy p:not(.eyebrow),
.section-head p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.accent-line {
  width: 92px;
  height: 2px;
  margin-top: 24px;
  background: var(--warm-gold);
}

.story-visual {
  position: relative;
}

.story-visual img {
  width: 100%;
  min-height: 470px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.story-note {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: min(280px, calc(100% - 56px));
  padding: 18px;
  background: rgba(248, 241, 231, 0.92);
  border: 1px solid rgba(200, 155, 82, 0.34);
  border-radius: 18px;
  backdrop-filter: blur(12px);
}

.story-note span {
  display: block;
  margin-bottom: 6px;
  color: var(--spice-red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-note strong {
  display: block;
  color: var(--deep-charcoal);
  font-size: 0.95rem;
  line-height: 1.45;
}

.products {
  background: var(--soft-ivory);
  border-top: 1px solid rgba(200, 155, 82, 0.22);
  border-bottom: 1px solid rgba(200, 155, 82, 0.22);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr minmax(250px, 420px);
  gap: 28px;
  align-items: end;
  margin-bottom: 36px;
}

.section-head .eyebrow,
.section-head h2 {
  grid-column: 1;
}

.section-head p:not(.eyebrow) {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
}

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

.product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  background: rgba(248, 241, 231, 0.72);
  border: 1px solid rgba(200, 155, 82, 0.28);
  border-radius: 20px;
  box-shadow: 0 16px 44px rgba(31, 27, 22, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(155, 47, 47, 0.28);
  box-shadow: 0 28px 70px rgba(31, 27, 22, 0.14);
}

.product-image {
  aspect-ratio: 1 / 0.92;
  background: #f0e6d8;
  overflow: hidden;
}

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

.ingredient-photo img {
  filter: saturate(0.9) contrast(0.96);
}

.cinnamon-stick img {
  object-position: 72% center;
}

.vanilla-liquid img {
  object-position: 82% center;
}

.product-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.product-content span {
  color: var(--cinnamon);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-content h3 {
  margin-top: 8px;
  color: var(--deep-charcoal);
  font-size: 1.58rem;
}

.product-content p {
  margin: 12px 0 20px;
  color: var(--muted);
  font-size: 0.94rem;
}

.product-content a {
  width: fit-content;
  margin-top: auto;
  color: var(--spice-red);
  font-size: 0.82rem;
  font-weight: 800;
}

.origin {
  position: relative;
  overflow: hidden;
}

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

.origin-map {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 30px;
  border: 1px solid rgba(200, 155, 82, 0.26);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 249, 240, 0.92), rgba(239, 222, 199, 0.52)),
    url("../assets/lettermark.png") center / 72% no-repeat;
  box-shadow: 0 16px 50px rgba(31, 27, 22, 0.08);
}

.origin-map svg {
  width: min(100%, 660px);
  color: var(--archipelago-blue);
  opacity: 0.9;
}

.origin-logo-panel {
  background: linear-gradient(135deg, rgba(255, 249, 240, 0.94), rgba(239, 222, 199, 0.58));
}

.origin-logo {
  width: min(72%, 360px);
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(31, 27, 22, 0.12));
}

.origin-map path {
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.origin-map circle {
  fill: var(--spice-red);
  stroke: var(--warm-gold);
  stroke-width: 3;
}

.values {
  padding-top: 0;
}

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

.value-item {
  min-height: 240px;
  padding: 30px;
  border-top: 2px solid var(--warm-gold);
  background: rgba(255, 249, 240, 0.72);
}

.value-item span {
  color: var(--spice-red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.value-item h3 {
  margin-top: 42px;
  color: var(--archipelago-blue);
  font-size: 1.8rem;
}

.value-item p {
  max-width: 280px;
  margin: 14px 0 0;
  color: var(--muted);
}

.gallery {
  background: #efe1cf;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr 1.05fr;
  grid-auto-rows: 190px;
  gap: 18px;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #dcc5aa;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

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

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

.soft-cta {
  padding: clamp(78px, 10vw, 128px) 0;
  color: var(--warm-ivory);
  background:
    linear-gradient(90deg, rgba(23, 59, 87, 0.96), rgba(31, 27, 22, 0.82)),
    url("../assets/contact-banner-clean-v2.jpg") center / cover no-repeat;
}

.cta-inner {
  max-width: 820px;
}

.soft-cta h2 {
  max-width: 790px;
  font-size: clamp(2.35rem, 6vw, 5rem);
}

.button.light {
  background: var(--warm-ivory);
  color: var(--spice-red);
}

.button.light:hover {
  color: var(--archipelago-blue);
}

.button.ghost-light {
  border-color: rgba(248, 241, 231, 0.55);
  color: var(--warm-ivory);
}

.button.ghost-light:hover {
  border-color: var(--warm-gold);
  color: var(--warm-gold);
}

.story-page-hero {
  position: relative;
  min-height: clamp(520px, 72svh, 700px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--warm-ivory);
  background:
    linear-gradient(90deg, rgba(31, 27, 22, 0.9), rgba(31, 27, 22, 0.58) 58%, rgba(31, 27, 22, 0.28)),
    url("../assets/contact-banner-clean-v2.jpg") center / cover no-repeat;
}

.story-page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--spice-red), var(--warm-gold), var(--archipelago-blue));
}

.story-page-inner {
  position: relative;
  z-index: 1;
  padding: 170px 0 82px;
}

.story-page-copy {
  max-width: 820px;
}

.story-page-copy h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
}

.story-page-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(248, 241, 231, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.story-origin .section-copy p + p {
  margin-top: 14px;
}

.story-chapters {
  background: var(--soft-ivory);
  border-top: 1px solid rgba(200, 155, 82, 0.22);
  border-bottom: 1px solid rgba(200, 155, 82, 0.22);
}

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

.story-chapter {
  min-height: 300px;
  padding: 30px;
  border: 1px solid rgba(200, 155, 82, 0.26);
  border-radius: 20px;
  background: rgba(248, 241, 231, 0.72);
  box-shadow: 0 16px 44px rgba(31, 27, 22, 0.08);
}

.story-chapter span {
  color: var(--spice-red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.story-chapter h3 {
  margin-top: 52px;
  color: var(--archipelago-blue);
  font-size: 1.95rem;
}

.story-chapter p {
  margin: 14px 0 0;
  color: var(--muted);
}

.story-map-band {
  padding: clamp(76px, 9vw, 112px) 0;
  color: var(--warm-ivory);
  background: var(--archipelago-blue);
}

.story-map-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.story-map-band .origin-map {
  background:
    linear-gradient(135deg, rgba(255, 249, 240, 0.96), rgba(239, 222, 199, 0.7)),
    url("../assets/lettermark.png") center / 72% no-repeat;
}

.story-map-copy h2 {
  max-width: 520px;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
}

.story-map-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(248, 241, 231, 0.78);
}

.story-principles {
  padding-top: clamp(76px, 9vw, 112px);
}

.products-page-hero {
  position: relative;
  min-height: clamp(540px, 76svh, 720px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--warm-ivory);
  background:
    linear-gradient(90deg, rgba(31, 27, 22, 0.9), rgba(31, 27, 22, 0.62) 56%, rgba(31, 27, 22, 0.2)),
    url("../assets/hero-spice-bowl-hires.jpg") center right / cover no-repeat;
}

.products-page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--spice-red), var(--warm-gold), var(--archipelago-blue));
}

.products-page-inner {
  position: relative;
  z-index: 1;
  padding: 170px 0 82px;
}

.products-page-copy {
  max-width: 850px;
}

.products-page-copy h1 {
  max-width: 780px;
  font-size: clamp(3.05rem, 7vw, 6.2rem);
}

.products-page-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(248, 241, 231, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.collection-mood {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.collection-mood img {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: 72% center;
}

.collection-page {
  background: var(--soft-ivory);
  border-top: 1px solid rgba(200, 155, 82, 0.22);
  border-bottom: 1px solid rgba(200, 155, 82, 0.22);
}

.collection-page-grid {
  display: grid;
  gap: 28px;
}

.product-overview {
  margin-bottom: clamp(44px, 7vw, 76px);
}

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

.product-overview-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(200, 155, 82, 0.28);
  border-radius: 20px;
  background: rgba(248, 241, 231, 0.78);
  box-shadow: 0 16px 44px rgba(31, 27, 22, 0.08);
}

.overview-image {
  aspect-ratio: 1 / 0.82;
  overflow: hidden;
  background: #efe1cf;
}

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

.overview-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.overview-content span {
  color: var(--spice-red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.overview-content h3 {
  margin-top: 8px;
  color: var(--deep-charcoal);
  font-size: 1.55rem;
}

.overview-content p {
  margin: 12px 0 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

.overview-actions,
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.overview-actions .button,
.product-actions .button {
  min-height: 44px;
  padding-inline: 16px;
  font-size: 0.82rem;
}

.button.product-secondary {
  border-color: rgba(155, 47, 47, 0.28);
  color: var(--spice-red);
  background: transparent;
}

.button.product-secondary:hover {
  border-color: var(--spice-red);
  background: var(--spice-red);
  color: var(--warm-ivory);
}

.collection-product {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
  padding: clamp(18px, 3vw, 32px);
  border: 1px solid rgba(200, 155, 82, 0.3);
  border-radius: 24px;
  background: rgba(248, 241, 231, 0.74);
  box-shadow: 0 18px 54px rgba(31, 27, 22, 0.08);
}

.collection-product.is-reversed {
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
}

.collection-product.is-reversed .collection-product-image {
  order: 2;
}

.collection-product-image {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 20px;
  background: #efe1cf;
}

.collection-product-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.collection-product-image[data-media-type="video"]::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(248, 241, 231, 0.94);
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 48px rgba(31, 27, 22, 0.28);
}

.collection-product-image[data-media-type="video"]::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 19px solid var(--spice-red);
  transform: translate(-34%, -50%);
}

.product-packshot img {
  object-position: center;
}

.collection-product-copy span {
  color: var(--spice-red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.collection-product-copy h2 {
  margin-top: 10px;
  color: var(--deep-charcoal);
  font-size: clamp(2.2rem, 4.6vw, 4.2rem);
}

.collection-product-copy > p {
  max-width: 580px;
  margin: 18px 0 0;
  color: var(--muted);
}

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

.product-notes div {
  padding: 18px;
  border-left: 2px solid var(--warm-gold);
  background: rgba(255, 249, 240, 0.78);
}

.product-notes strong {
  display: block;
  color: var(--archipelago-blue);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-notes p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.product-media-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0;
}

.product-media-thumb,
.media-gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 16px;
  background: #efe1cf;
  font: inherit;
  padding: 0;
  text-align: left;
}

.product-media-thumb img,
.media-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-media-thumb {
  width: 100%;
  display: block;
  cursor: pointer;
  aspect-ratio: 1 / 0.72;
  outline: 2px solid transparent;
  outline-offset: 3px;
  transition: outline-color 180ms ease, transform 180ms ease;
}

.product-media-thumb:hover,
.product-media-thumb.is-active {
  outline-color: var(--warm-gold);
  transform: translateY(-2px);
}

.product-media-thumb:focus-visible {
  outline-color: var(--spice-red);
}

.thumb-label,
.media-gallery-item figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--warm-ivory);
  font-size: 0.76rem;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(31, 27, 22, 0.42);
}

.product-media-thumb::after,
.media-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(31, 27, 22, 0.68));
}

.thumb-label,
.media-gallery-item figcaption {
  z-index: 1;
}

.video-thumb .thumb-label span,
.media-gallery-item.video figcaption span {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--warm-ivory);
  color: var(--spice-red);
  font-size: 0;
  text-shadow: none;
}

.video-thumb .thumb-label span::before,
.media-gallery-item.video figcaption span::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid currentColor;
  transform: translateX(1px);
}

.product-media-gallery {
  background: #efe1cf;
}

.media-gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 210px;
  gap: 18px;
}

.media-gallery-item.large {
  grid-row: span 2;
}

.product-brand-band {
  padding: clamp(76px, 9vw, 112px) 0;
  color: var(--warm-ivory);
  background: var(--archipelago-blue);
}

.product-brand-grid {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 430px);
  gap: clamp(28px, 6vw, 76px);
  align-items: end;
}

.product-brand-grid h2 {
  max-width: 700px;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.product-brand-points p {
  margin: 0;
  color: rgba(248, 241, 231, 0.78);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 35;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 42px rgba(31, 27, 22, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  background: #1fb85a;
  box-shadow: 0 24px 52px rgba(31, 27, 22, 0.3);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.footer {
  padding: 56px 0 28px;
  color: var(--warm-ivory);
  background: var(--deep-charcoal);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 34px;
}

.footer-brand {
  display: inline-block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
}

.footer p {
  max-width: 390px;
  margin: 14px 0 0;
  color: rgba(248, 241, 231, 0.72);
}

.footer h3 {
  margin-bottom: 14px;
  color: var(--warm-gold);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer a:not(.footer-brand) {
  display: block;
  width: fit-content;
  margin: 7px 0;
  color: rgba(248, 241, 231, 0.78);
  font-size: 0.94rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(248, 241, 231, 0.13);
  color: rgba(248, 241, 231, 0.62);
  font-size: 0.84rem;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 1040px) {
  .product-grid,
  .product-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 30px, 1160px);
  }

  .top-info {
    font-size: 0.7rem;
  }

  .top-info-inner {
    min-height: 32px;
  }

  .nav-shell {
    min-height: 70px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(248, 241, 231, 0.48);
    border-radius: 50%;
    background: transparent;
  }

  .site-header.is-scrolled .nav-toggle,
  body.nav-open .nav-toggle {
    border-color: rgba(31, 27, 22, 0.16);
  }

  .nav-toggle span {
    grid-area: 1 / 1;
    width: 18px;
    height: 2px;
    background: var(--warm-ivory);
    transition: transform 180ms ease, background 180ms ease;
  }

  .site-header.is-scrolled .nav-toggle span,
  body.nav-open .nav-toggle span {
    background: var(--deep-charcoal);
  }

  .nav-toggle span:first-child {
    transform: translateY(-4px);
  }

  .nav-toggle span:last-child {
    transform: translateY(4px);
  }

  body.nav-open .nav-toggle span:first-child {
    transform: rotate(45deg);
  }

  body.nav-open .nav-toggle span:last-child {
    transform: rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    inset: 102px 0 auto;
    display: grid;
    gap: 0;
    padding: 10px 15px 20px;
    color: var(--deep-charcoal);
    background: rgba(248, 241, 231, 0.98);
    border-bottom: 1px solid rgba(200, 155, 82, 0.28);
    box-shadow: 0 28px 60px rgba(31, 27, 22, 0.12);
    transform: translateY(-120%);
    transition: transform 220ms ease;
  }

  body.nav-open .nav-links {
    transform: translateY(0);
  }

  .nav-links a {
    padding: 15px 5px;
  }

  .nav-cta {
    width: fit-content;
    margin-top: 8px;
    padding: 10px 18px !important;
  }

  .brand-mark small {
    display: none;
  }

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

  .hero-bg {
    background:
      linear-gradient(90deg, rgba(31, 27, 22, 0.9), rgba(31, 27, 22, 0.64)),
      url("../assets/hero-spice-bowl-hires.jpg") 64% center / cover no-repeat;
  }

  .story-grid,
  .origin-grid,
  .section-head,
  .footer-grid,
  .story-chapter-grid,
  .story-map-grid,
  .collection-product,
  .collection-product.is-reversed,
  .product-brand-grid {
    grid-template-columns: 1fr;
  }

  .collection-product.is-reversed .collection-product-image {
    order: 0;
  }

  .story-page-inner {
    padding-top: 150px;
  }

  .products-page-inner {
    padding-top: 150px;
  }

  .story-chapter {
    min-height: auto;
  }

  .story-chapter h3 {
    margin-top: 28px;
  }

  .section-head p:not(.eyebrow),
  .section-head .eyebrow,
  .section-head h2 {
    grid-column: auto;
    grid-row: auto;
  }

  .origin-grid .section-copy {
    order: -1;
  }

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

  .value-item {
    min-height: auto;
  }

  .value-item h3 {
    margin-top: 24px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 170px;
  }

  .media-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 190px;
  }

  .gallery-item.wide {
    grid-column: span 2;
  }

  .media-gallery-item.large {
    grid-row: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: clamp(560px, 82svh, 690px);
  }

  .hero h1 {
    font-size: clamp(2.8rem, 11.6vw, 3.25rem);
    max-width: calc(100vw - 30px);
    overflow-wrap: break-word;
  }

  .hero-copy,
  .hero-sub,
  .hero-text {
    width: calc(100vw - 30px);
    max-width: calc(100vw - 30px);
  }

  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .product-grid,
  .gallery-grid,
  .product-overview-grid,
  .product-media-strip,
  .media-gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 235px;
  }

  .media-gallery-grid {
    grid-auto-rows: 235px;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .story-visual img {
    min-height: 350px;
  }

  .story-note {
    position: static;
    width: auto;
    margin-top: 14px;
  }

  .origin-map {
    min-height: 260px;
    padding: 18px;
  }

  .story-page-copy h1 {
    font-size: clamp(3rem, 12vw, 4rem);
  }

  .products-page-copy h1 {
    font-size: clamp(2.8rem, 11vw, 4rem);
  }

  .collection-mood img,
  .collection-product-image,
  .collection-product-image img {
    min-height: 320px;
  }

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

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float svg {
    width: 31px;
    height: 31px;
  }
}

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