/* ============================================
   SPICEAXIOM — styles.css
   Color palette (light):
     Background:    #faf6f0  warm cream/linen
     Alt bg:        #f2ece2  slightly deeper cream
     Text primary:  #1c1810  deep warm brown
     Text body:     #3d342b  medium warm brown
     Text muted:    #8a7f74  warm gray-brown
     Accent spice:  #8b4c2a  deep cinnamon/terracotta
     Accent light:  #c4845a  lighter terracotta
     Border:        #e0d9cf
     Card bg:       #ede8df
   ============================================ */

/* --- RESET & BASE --- */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: #faf6f0;
  color: #1c1810;
  font-family: 'EB Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

/* --- VARIABLES --- */

:root {
  --cream: #faf6f0;
  --cream-alt: #f2ece2;
  --cream-deep: #e8e0d4;
  --spice: #8b4c2a;
  --spice-light: #c4845a;
  --text: #1c1810;
  --body: #3d342b;
  --muted: #8a7f74;
  --border: #e0d9cf;
  --card: #ede8df;
  --max-width: 1140px;
  --narrow: 680px;
  --section-pad: 120px;
}

/* --- UTILITY --- */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

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

.label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--spice);
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* --- SCROLL REVEAL --- */

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

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

.reveal-child {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Image placeholder */
.img-placeholder {
  background-color: var(--cream-deep);
  min-height: 400px;
  object-fit: cover;
  width: 100%;
}

/* --- NAV --- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
  transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background-color: rgba(250, 246, 240, 0.95);
  backdrop-filter: blur(8px);
  padding: 18px 48px;
  box-shadow: 0 1px 0 var(--border);
}

.nav__wordmark {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.35em;
  color: var(--text);
  font-weight: 400;
}

.nav__links {
  list-style: none;
  display: flex;
  gap: 36px;
}

.nav__links a {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--body);
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav__links a:hover {
  color: var(--spice);
}

/* --- BUTTONS --- */

.btn {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 40px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn--outline {
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  background: transparent;
}

.btn--outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.9);
}

.btn--spice {
  background: var(--spice);
  color: #faf6f0;
  border: 1px solid var(--spice);
}

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

/* --- SCROLL CTA --- */

.scroll-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: color 0.2s ease;
  margin-top: 56px;
}

.scroll-cta:hover {
  color: rgba(255,255,255,1);
}

.scroll-cta svg {
  animation: bounce 2.4s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* --- HERO KEYFRAMES --- */

@keyframes heroZoom {
  from { transform: scale(1.25); }
  to   { transform: scale(1.0); }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* --- HERO --- */

.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #3d2010 0%, #1a0f08 50%, #2a1a0c 100%);
  min-height: 100%;
  will-change: transform;
  animation: heroZoom 8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  transform-origin: center center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,8,3,0.35) 0%,
    rgba(15,8,3,0.2) 40%,
    rgba(15,8,3,0.7) 100%
  );
  animation: heroFadeIn 1.5s ease forwards;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
  max-width: 920px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
  font-weight: 400;
  opacity: 0;
  animation: heroFadeIn 1s ease 0.4s forwards;
}

.hero__headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 36px;
  letter-spacing: -0.015em;
  opacity: 0;
  animation: heroFadeUp 1.1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.7s forwards;
}

.hero__subhead {
  font-size: clamp(22px, 3.2vw, 40px);
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  font-style: italic;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  max-width: 800px;
  opacity: 0;
  animation: heroFadeUp 1.1s cubic-bezier(0.22, 0.61, 0.36, 1) 1.1s forwards;
}

.scroll-cta {
  opacity: 0;
  animation: heroFadeIn 1s ease 1.8s forwards;
}

/* --- TUNABLE --- */

.tunable {
  padding: var(--section-pad) 0;
  background: var(--cream-alt);
  border-top: 1px solid var(--border);
}

.tunable__header {
  max-width: 720px;
  margin-bottom: 72px;
}

.tunable__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.tunable__image-wrap {
  margin: 48px 0 56px;
  overflow: hidden;
}

.tunable__image {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.tunable__image-wrap:hover .tunable__image {
  transform: scale(1.03);
}

.tunable__intro {
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 2;
  color: var(--body);
  font-style: italic;
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 0 96px;
  text-align: center;
}

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

.dial {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 40px 32px 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Dial visual: simple horizontal bar */
.dial__track {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dial__marker {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.dial__bar {
  flex: 1;
  height: 3px;
  background: var(--border);
  position: relative;
  border-radius: 2px;
}

.dial__fill {
  height: 100%;
  background: var(--spice);
  border-radius: 2px;
  width: 100%;
}

.dial__fill--mid {
  width: 55%;
}

.dial__fill--lo {
  width: 25%;
}

.dial__number {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 4px;
}

.dial__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
}

.dial__tagline {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.dial__body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--body);
}

.dial__examples {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dial__examples li {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.dial__ex-amount {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--spice);
}

.dial__ex-desc {
  font-size: 14px;
  color: var(--body);
  font-style: italic;
  line-height: 1.55;
}

.dial__note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-style: italic;
  margin-top: auto;
}

.tunable__footer {
  margin-top: 56px;
  text-align: center;
}

.tunable__footer-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
}

/* --- BRIEF --- */

.brief {
  padding: var(--section-pad) 0;
  text-align: center;
  background: var(--cream);
}

.brief__text {
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 2;
  color: var(--body);
  font-style: italic;
}

.brief__text--pause {
  margin-top: 56px;
  font-size: clamp(22px, 2.8vw, 32px);
  color: var(--text);
  font-style: normal;
  font-weight: 500;
}

.brief__text--resolve {
  margin-top: 16px;
  font-size: clamp(22px, 2.8vw, 32px);
  color: var(--spice);
  font-style: italic;
}

/* --- PRODUCT REVEAL --- */

.product {
  padding: var(--section-pad) 0;
  background: var(--cream-alt);
  border-top: 1px solid var(--border);
}

.product__grid {
  display: grid;
  grid-template-columns: 48% 1fr;
  gap: 80px;
  align-items: center;
}

.product__image-wrap {
  overflow: hidden;
}

.product__image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 0.9s ease;
}

.product__image:hover {
  transform: scale(1.025);
}

.product__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  color: var(--text);
}

.product__name em {
  font-style: italic;
  color: var(--spice);
}

.product__tagline {
  font-size: 20px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 28px;
}

.product__desc {
  font-size: 18px;
  line-height: 1.9;
  color: var(--body);
  margin-bottom: 36px;
}

.product__attributes {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product__attribute {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: baseline;
  font-size: 15px;
}

.product__attribute-label {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.product__attribute-value {
  color: var(--body);
  font-style: italic;
}

/* --- PHILOSOPHY --- */

.philosophy {
  padding: var(--section-pad) 0;
  text-align: center;
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.philosophy__quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(30px, 4.5vw, 58px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.35;
  color: var(--spice);
  border: none;
}

/* --- TASTE --- */

.taste {
  padding: var(--section-pad) 0;
  background: var(--cream-alt);
  border-top: 1px solid var(--border);
}

.taste__header {
  margin-bottom: 56px;
}

.taste__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.01em;
}

.taste__image-wrap {
  margin-bottom: 72px;
  overflow: hidden;
}

.taste__image {
  width: 100%;
  height: 52vh;
  min-height: 320px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.taste__image-wrap:hover .taste__image {
  transform: scale(1.03);
}

.taste__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: start;
}

.taste__notes {
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.taste__note-head {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--spice);
  margin-bottom: 14px;
}

.taste__note-body {
  font-size: 18px;
  line-height: 1.95;
  color: var(--body);
}

.taste__sidebar {
  position: sticky;
  top: 100px;
}

.taste__summary {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 36px 32px;
}

.taste__arch {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.taste__arch li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.taste__arch li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.taste__arch-role {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--spice);
}

a.taste__arch-spice {
  font-size: 14px;
  color: var(--body);
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s ease;
}

a.taste__arch-spice:hover {
  color: var(--spice);
}

.taste__closing {
  font-size: 15px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

/* --- INGREDIENTS --- */

.ingredients {
  padding: var(--section-pad) 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.ingredients__header {
  margin-bottom: 64px;
  max-width: 700px;
}

.ingredients__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.2;
}

.ingredients__intro {
  font-size: 18px;
  line-height: 1.9;
  color: var(--body);
  font-style: italic;
}

.ingredients__image-wrap {
  margin-bottom: 80px;
  overflow: hidden;
}

.ingredients__image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.ingredients__image-wrap:hover .ingredients__image {
  transform: scale(1.03);
}

.ingredients__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ingredient {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  padding: 52px 0;
  border-top: 1px solid var(--border);
  align-items: start;
}

.ingredient:last-child {
  border-bottom: 1px solid var(--border);
}

.ingredient--featured {
  background: var(--cream-alt);
  margin: 0 -48px;
  padding: 52px 48px;
}

.ingredient__img-wrap {
  margin-bottom: 20px;
  overflow: hidden;
}

.ingredient__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.ingredient:hover .ingredient__img {
  transform: scale(1.03);
}

.ingredient__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.2;
}

.ingredient__origin {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--spice);
  text-transform: uppercase;
}

.ingredient__role {
  font-size: 17px;
  font-style: italic;
  color: var(--spice-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.ingredient__detail {
  font-size: 17px;
  line-height: 1.95;
  color: var(--body);
  margin-bottom: 16px;
}

.ingredient__detail:last-of-type {
  margin-bottom: 0;
}

.ingredient__sourcing-note {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-style: italic;
}

/* --- SOURCING --- */

.sourcing {
  padding: var(--section-pad) 0;
  background: var(--cream-alt);
  border-top: 1px solid var(--border);
}

.sourcing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sourcing__image-wrap {
  overflow: hidden;
}

.sourcing__image {
  width: 100%;
  height: 560px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.sourcing__image-wrap:hover .sourcing__image {
  transform: scale(1.03);
}

.sourcing__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 28px;
}

.sourcing__body {
  font-size: 17px;
  line-height: 1.95;
  color: var(--body);
  margin-bottom: 20px;
}

.sourcing__origins {
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sourcing__origin {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 12px;
  font-size: 14px;
  align-items: baseline;
}

.sourcing__origin-place {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--spice);
}

.sourcing__origin-what {
  color: var(--body);
  font-style: italic;
}

/* --- MANIFESTO --- */

.manifesto {
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.manifesto__image-wrap {
  position: relative;
  height: 50vh;
  min-height: 360px;
  overflow: hidden;
}

.manifesto__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.manifesto__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 20%, var(--cream) 100%);
}

.manifesto__content {
  padding: 80px 0 var(--section-pad);
}

.manifesto__text {
  font-size: clamp(17px, 2vw, 21px);
  line-height: 2.1;
  color: var(--body);
  margin-bottom: 36px;
}

.manifesto__text--emphasis {
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--text);
  font-style: italic;
  font-weight: 500;
}

.manifesto__text--close {
  color: var(--spice);
  font-size: clamp(19px, 2.3vw, 24px);
  font-style: italic;
  margin-bottom: 0;
}

/* --- COMING SOON --- */

.coming-soon {
  padding: var(--section-pad) 0;
  background: var(--cream-alt);
  border-top: 1px solid var(--border);
  text-align: center;
}

.coming-soon__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.coming-soon__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.coming-soon__body {
  font-size: 18px;
  line-height: 1.9;
  color: var(--body);
  font-style: italic;
  margin-bottom: 40px;
}

/* --- FOOTER --- */

.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: var(--cream);
}

.footer__grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer__wordmark {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--text);
}

.footer__copy {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.03em;
}

.footer__nav {
  display: flex;
  gap: 28px;
}

.footer__link {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: var(--spice);
}

/* --- RESPONSIVE --- */

@media (max-width: 1100px) {
  .tunable__dials {
    grid-template-columns: 1fr 1fr;
  }

  .tunable__dials .dial:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 1px);
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 36px;
  }

  .nav {
    padding: 24px 36px;
  }

  .nav.scrolled {
    padding: 16px 36px;
  }

  .taste__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .taste__sidebar {
    position: static;
  }

  .ingredient--featured {
    margin: 0 -36px;
    padding: 52px 36px;
  }

  .sourcing__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

@media (max-width: 800px) {
  :root { --section-pad: 80px; }

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

  .tunable__dials .dial:last-child {
    grid-column: auto;
    max-width: 100%;
  }

  .container {
    padding: 0 24px;
  }

  .nav {
    padding: 20px 24px;
  }

  .nav.scrolled {
    padding: 14px 24px;
  }

  .nav__links {
    display: none;
  }

  .product__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .product__image {
    height: 420px;
  }

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

  .ingredient--featured {
    margin: 0 -24px;
    padding: 52px 24px;
  }

  .sourcing__origin {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer__grid {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {
  :root { --section-pad: 64px; }

  .container {
    padding: 0 20px;
  }

  .hero__content {
    padding: 0 16px;
  }

  .ingredient--featured {
    margin: 0 -20px;
    padding: 40px 20px;
  }

  .product__attribute {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
