:root {
  --cream: #f4f0e5;
  --cream-2: #ebe3d2;
  --paper: #fbf8f0;
  --ink: #163226;
  --ink-2: #27463a;
  --olive: #6f782c;
  --olive-light: #a7ad67;
  --sage: #d9dfc6;
  --gold: #d8ad54;
  --clay: #bd4c36;
  --red: #ee3224;
  --line: rgba(22, 50, 38, 0.16);
  --white: #fff;
  --shadow: 0 24px 70px rgba(28, 48, 35, 0.14);
  --radius-lg: 34px;
  --radius-md: 22px;
  --shell: min(1360px, calc(100% - 96px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  background: var(--cream);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
}

::selection {
  color: var(--white);
  background: var(--clay);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.section {
  padding: 140px 0;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--olive);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

.eyebrow--light {
  color: #d9deb4;
}

.display-title {
  max-width: 830px;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(3rem, 5.2vw, 5.7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.display-title em {
  display: block;
  color: var(--olive);
  font-weight: 400;
}

.display-title--light,
.display-title--light em {
  color: var(--cream);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.65fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 70px;
}

.section-heading > p,
.certificate-grid > div:first-child > p {
  max-width: 490px;
  margin: 0 0 4px;
  color: rgba(22, 50, 38, 0.72);
  font-size: 1.05rem;
  line-height: 1.8;
}

.section-heading--compact {
  margin-bottom: 56px;
}

.section-center {
  display: flex;
  justify-content: center;
  margin-top: 58px;
}

[data-reveal] {
  --delay: 0ms;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1) var(--delay),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1) var(--delay);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 96px;
  color: var(--ink);
  background: linear-gradient(180deg, rgba(250, 247, 239, 0.94) 0%, rgba(250, 247, 239, 0.79) 100%);
  box-shadow: 0 10px 34px rgba(23, 45, 32, 0.07);
  -webkit-backdrop-filter: blur(16px) saturate(1.18);
  backdrop-filter: blur(16px) saturate(1.18);
  transition: height 300ms ease, background-color 300ms ease, box-shadow 300ms ease,
    backdrop-filter 300ms ease;
}

.site-header::after {
  position: absolute;
  right: 48px;
  bottom: 0;
  left: 48px;
  height: 1px;
  background: rgba(22, 50, 38, 0.16);
  content: "";
  transition: opacity 300ms ease;
}

.site-header.is-scrolled {
  height: 78px;
  background: rgba(250, 247, 239, 0.96);
  box-shadow: 0 14px 40px rgba(23, 45, 32, 0.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.14);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled::after {
  opacity: 0;
}

.header-shell {
  display: grid;
  grid-template-columns: 190px 1fr 190px;
  align-items: center;
  width: calc(100% - 96px);
  height: 100%;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand img {
  width: 118px;
  height: auto;
  transition: width 300ms ease;
}

.is-scrolled .brand img {
  width: 100px;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 2.6vw, 44px);
}

.desktop-nav a {
  position: relative;
  padding: 12px 0;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.8rem;
  font-weight: 750;
  transition: background-color 220ms ease, transform 220ms ease;
}

.header-cta:hover {
  background: var(--clay);
  transform: translateY(-2px);
}

.header-cta svg,
.button svg,
.text-link svg,
.circle-arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 220ms ease;
}

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

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

.mobile-menu {
  position: fixed;
  z-index: -1;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 36px 48px;
  visibility: hidden;
  opacity: 0;
  background: var(--cream);
  pointer-events: none;
  transition: opacity 280ms ease, visibility 280ms ease;
}

.mobile-menu.is-open {
  z-index: -1;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(2.1rem, 9vw, 4rem);
  line-height: 1.12;
}

.mobile-menu nav a span {
  color: var(--olive);
  font-family: var(--sans);
  font-size: 0.67rem;
  font-weight: 750;
}

.mobile-menu-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 36px;
  color: rgba(22, 50, 38, 0.72);
  font-size: 0.86rem;
  font-weight: 650;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 780px;
  height: max(780px, 100svh);
  overflow: hidden;
  background: #d9d7c9;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  animation: hero-zoom 14s ease-out both;
}

.hero-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(248, 246, 237, 0.94) 0%, rgba(248, 246, 237, 0.8) 27%, rgba(248, 246, 237, 0.12) 58%, transparent 78%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, calc(100% - 96px));
  margin-left: max(48px, calc((100vw - 1360px) / 2));
  padding-top: 70px;
}

.hero-kicker {
  margin: 0 0 28px;
  color: var(--olive);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(4.4rem, 7vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.87;
}

.hero h1 span {
  display: block;
  color: var(--olive);
  font-size: 0.66em;
  font-style: italic;
  letter-spacing: -0.045em;
  line-height: 1.25;
}

.hero-copy {
  max-width: 570px;
  margin: 34px 0 0;
  color: rgba(22, 50, 38, 0.78);
  font-size: 1.06rem;
  line-height: 1.78;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 760;
  letter-spacing: 0.01em;
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease,
    transform 220ms ease;
}

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

.button--primary {
  color: var(--white);
  background: var(--ink);
}

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

.button--ghost {
  border-color: rgba(22, 50, 38, 0.4);
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}

.button--ghost:hover,
.button--outline:hover {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.button--outline {
  border-color: rgba(22, 50, 38, 0.42);
  background: transparent;
}

.button--light {
  color: var(--ink);
  background: var(--cream);
}

.button--cream {
  color: var(--ink);
  background: var(--cream);
}

.button--ghost-light {
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.34);
}

.button--ghost-light:hover {
  color: var(--ink);
  background: var(--cream);
}

.hero-side-note {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 50%;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(22, 50, 38, 0.74);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: translateY(50%) rotate(90deg);
  transform-origin: center;
}

.hero-side-line {
  width: 52px;
  height: 1px;
  background: currentColor;
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  bottom: 34px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(22, 50, 38, 0.76);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll svg {
  width: 16px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.4;
}

.hero-enter {
  opacity: 0;
  transform: translateY(26px);
  animation: enter-up 800ms cubic-bezier(0.22, 1, 0.36, 1) 120ms forwards;
}

.hero-enter--delay-1 {
  animation-delay: 240ms;
}

.hero-enter--delay-2 {
  animation-delay: 380ms;
}

.hero-enter--delay-3 {
  animation-delay: 500ms;
}

@keyframes enter-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-zoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1);
  }
}

.statement {
  position: relative;
  background: var(--cream);
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
  gap: 10vw;
}

.statement-copy {
  padding-top: 48px;
}

.statement-copy p {
  margin: 0 0 22px;
  color: rgba(22, 50, 38, 0.74);
  font-size: 1.05rem;
  line-height: 1.82;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 0.82rem;
  font-weight: 780;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.text-link svg {
  transition: transform 220ms ease;
}

.stats-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 110px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat-item {
  min-height: 168px;
  padding: 34px clamp(20px, 2.5vw, 46px);
  border-right: 1px solid var(--line);
}

.stat-item:first-child {
  padding-left: 0;
}

.stat-item:last-child {
  border-right: 0;
}

.stat-item strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.2vw, 3.7rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-item span {
  display: block;
  margin-top: 16px;
  color: rgba(22, 50, 38, 0.68);
  font-size: 0.78rem;
  font-weight: 650;
}

.categories {
  background: var(--paper);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 400px;
  gap: 18px;
}

.category-card {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  border-radius: var(--radius-md);
  isolation: isolate;
}

.category-card:nth-child(1),
.category-card:nth-child(6) {
  grid-column: span 8;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 500ms ease;
}

.category-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(8, 24, 16, 0.76) 100%);
}

.category-content {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  left: 28px;
  color: var(--white);
}

.category-content > span {
  font-size: 0.66rem;
  font-weight: 780;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.category-content h3 {
  margin: 7px 0 2px;
  font-family: var(--serif);
  font-size: clamp(2rem, 2.8vw, 3.1rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.category-content p {
  max-width: 430px;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  transition: max-height 350ms ease, opacity 350ms ease, margin 350ms ease;
}

.category-card:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.045);
}

.category-card:hover .category-content p {
  max-height: 90px;
  margin-top: 10px;
  opacity: 0.86;
}

.circle-arrow {
  position: absolute;
  z-index: 3;
  top: 24px;
  right: 24px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(251, 248, 240, 0.92);
  transition: color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.category-card:hover .circle-arrow,
.recipe-card:hover .circle-arrow {
  color: var(--white);
  background: var(--clay);
  transform: rotate(-8deg);
}

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

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

.product-card:nth-child(even) {
  padding-top: 50px;
}

.product-media {
  position: relative;
  display: block;
  aspect-ratio: 0.78;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--cream-2);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-media:hover img {
  transform: scale(1.045);
}

.product-index {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(251, 248, 240, 0.86);
  font-size: 0.67rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.product-view {
  position: absolute;
  right: 50%;
  bottom: 24px;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  color: var(--white);
  background: var(--clay);
  font-size: 0.72rem;
  font-weight: 780;
  opacity: 0;
  transform: translate(50%, 18px) scale(0.9);
  transition: opacity 260ms ease, transform 260ms ease;
}

.product-media:hover .product-view {
  opacity: 1;
  transform: translate(50%, 0) scale(1);
}

.product-info {
  padding: 22px 5px 0;
}

.product-info > p {
  margin: 0;
  color: var(--olive);
  font-size: 0.67rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-info h3 {
  margin: 7px 0 8px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.product-info > span {
  display: block;
  color: rgba(22, 50, 38, 0.67);
  font-size: 0.86rem;
  line-height: 1.62;
}

.quality {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  min-height: 900px;
  padding: 0;
  background: var(--paper);
}

.quality-media {
  position: relative;
  min-height: 900px;
  overflow: hidden;
}

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

.quality-stamp {
  position: absolute;
  right: 38px;
  bottom: 38px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  color: var(--white);
  background: rgba(22, 50, 38, 0.76);
  box-shadow: 0 20px 55px rgba(7, 22, 14, 0.26);
  backdrop-filter: blur(12px);
}

.quality-stamp span {
  font-family: var(--serif);
  font-size: 2.8rem;
  line-height: 0.9;
}

.quality-stamp small {
  margin-top: 9px;
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.quality-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px clamp(44px, 6vw, 110px);
}

.quality-content .display-title {
  font-size: clamp(3rem, 4.4vw, 5.2rem);
}

.quality-lead {
  max-width: 620px;
  margin: 32px 0 20px;
  color: rgba(22, 50, 38, 0.7);
  font-size: 1rem;
  line-height: 1.8;
}

.process-list {
  margin-top: 20px;
  border-top: 1px solid var(--line);
}

.process-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.process-list article > span {
  color: var(--clay);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
}

.process-list h3 {
  margin: 0 0 4px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.process-list p {
  margin: 0;
  color: rgba(22, 50, 38, 0.66);
  font-size: 0.82rem;
  line-height: 1.55;
}

.history {
  background: var(--cream-2);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(22, 50, 38, 0.3);
}

.timeline article {
  position: relative;
  min-height: 290px;
  padding: 38px 34px 30px;
  border-right: 1px solid var(--line);
}

.timeline article:first-child {
  padding-left: 0;
}

.timeline article:last-child {
  border-right: 0;
}

.timeline article::before {
  position: absolute;
  top: -7px;
  left: 34px;
  width: 13px;
  height: 13px;
  border: 3px solid var(--cream-2);
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 0 0 1px var(--clay);
  content: "";
}

.timeline article:first-child::before {
  left: 0;
}

.timeline time {
  color: var(--olive);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.timeline h3 {
  margin: 22px 0 14px;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.timeline p {
  margin: 0;
  color: rgba(22, 50, 38, 0.67);
  font-size: 0.86rem;
  line-height: 1.7;
}

.sustainability {
  position: relative;
  min-height: 980px;
  overflow: hidden;
  padding: 160px 0;
  color: var(--cream);
  background: #142d22;
  isolation: isolate;
}

.sustainability-backdrop {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.sustainability-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
  filter: saturate(0.82) contrast(1.06);
}

.sustainability::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 34, 24, 0.94) 0%, rgba(10, 34, 24, 0.74) 42%, rgba(10, 34, 24, 0.42) 100%);
  content: "";
}

.sustainability-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  align-items: center;
  gap: 10vw;
}

.sustainability-intro > p:not(.eyebrow) {
  max-width: 580px;
  margin: 32px 0 0;
  color: rgba(244, 240, 229, 0.76);
  font-size: 1.02rem;
  line-height: 1.82;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.impact-grid article {
  min-height: 250px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius-md);
  background: rgba(247, 244, 231, 0.1);
  backdrop-filter: blur(14px);
}

.impact-grid strong {
  display: block;
  color: #e5d58b;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.4vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.impact-grid h3 {
  margin: 24px 0 9px;
  color: var(--cream);
  font-size: 0.9rem;
  line-height: 1.4;
}

.impact-grid p {
  margin: 0;
  color: rgba(244, 240, 229, 0.64);
  font-size: 0.78rem;
  line-height: 1.65;
}

.recipes {
  background: var(--paper);
}

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 540px;
  gap: 18px;
}

.recipe-card {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  border-radius: var(--radius-md);
  isolation: isolate;
}

.recipe-card--1 {
  grid-column: span 6;
}

.recipe-card--2,
.recipe-card--3 {
  grid-column: span 3;
}

.recipe-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.recipe-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 22, 15, 0.03) 30%, rgba(8, 22, 15, 0.82) 100%);
}

.recipe-content {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 28px;
  left: 26px;
  color: var(--white);
}

.recipe-content > span {
  font-size: 0.67rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.recipe-content h3 {
  margin: 8px 0 8px;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.recipe-card--2 .recipe-content h3,
.recipe-card--3 .recipe-content h3 {
  font-size: clamp(1.8rem, 2.3vw, 2.7rem);
}

.recipe-content p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  line-height: 1.55;
}

.recipe-card--2 .recipe-content p,
.recipe-card--3 .recipe-content p {
  display: none;
}

.circle-arrow--light {
  color: var(--ink);
  background: var(--cream);
}

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

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

.journal-card {
  grid-column: span 4;
}

.journal-card--2 {
  margin-top: 70px;
}

.journal-media {
  display: block;
  aspect-ratio: 1.18;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--cream-2);
}

.journal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.journal-media:hover img {
  transform: scale(1.04);
}

.journal-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  color: var(--olive);
  font-size: 0.67rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.journal-card h3 {
  margin: 14px 0 12px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.6vw, 2.7rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.journal-card h3 a:hover {
  color: var(--clay);
}

.journal-card > p {
  margin: 0 0 16px;
  color: rgba(22, 50, 38, 0.68);
  font-size: 0.85rem;
  line-height: 1.7;
}

.certificates {
  background: var(--paper);
}

.certificate-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 9vw;
}

.certificate-grid .display-title {
  font-size: clamp(3rem, 4.6vw, 5.2rem);
}

.certificate-grid > div:first-child > p:last-child {
  margin-top: 30px;
}

.certificate-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.certificate-cards article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.certificate-cards img {
  width: 100%;
  aspect-ratio: 1.3;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
}

.certificate-cards h3 {
  margin: 20px 0 4px;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
}

.certificate-cards p {
  margin: 0;
  color: rgba(22, 50, 38, 0.62);
  font-size: 0.75rem;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 150px 0;
  color: var(--cream);
  background: var(--ink);
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.65fr);
  align-items: center;
  gap: 11vw;
}

.contact-grid h2 {
  max-width: 780px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.7rem, 6.7vw, 7.6rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.contact-grid h2 span {
  display: block;
  color: #d8c77b;
  font-style: italic;
}

.contact-grid > div:first-child > p:not(.eyebrow) {
  max-width: 600px;
  margin: 30px 0 0;
  color: rgba(244, 240, 229, 0.68);
  font-size: 1rem;
  line-height: 1.75;
}

.contact-card {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
}

.contact-card > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 21px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-card > div:first-child {
  padding-top: 0;
}

.contact-card > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-card span {
  margin-bottom: 5px;
  color: #d8c77b;
  font-size: 0.66rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-card a,
.contact-card p {
  margin: 0;
  color: rgba(244, 240, 229, 0.82);
  font-size: 0.87rem;
  line-height: 1.62;
}

.contact-card a:hover {
  color: var(--white);
}

.contact-orbit {
  position: absolute;
  border: 1px solid rgba(218, 203, 138, 0.13);
  border-radius: 50%;
}

.contact-orbit--one {
  top: -380px;
  right: -260px;
  width: 820px;
  height: 820px;
}

.contact-orbit--two {
  right: -60px;
  bottom: -420px;
  width: 920px;
  height: 920px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 100px 48px 32px;
  color: var(--ink);
  background: #e7dfcf;
}

.footer-mark {
  position: absolute;
  right: -2vw;
  bottom: -12vw;
  color: rgba(22, 50, 38, 0.04);
  font-family: var(--serif);
  font-size: 32vw;
  font-weight: 700;
  letter-spacing: -0.09em;
  line-height: 1;
  pointer-events: none;
}

.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 1.6fr) minmax(180px, 0.5fr) minmax(220px, 0.65fr);
  gap: 8vw;
  width: var(--shell);
  margin: 0 auto;
}

.footer-brand img {
  width: 130px;
  height: auto;
}

.footer-brand p {
  max-width: 480px;
  margin: 26px 0 0;
  color: rgba(22, 50, 38, 0.67);
  font-size: 0.88rem;
  line-height: 1.75;
}

.footer-heading {
  margin: 0 0 20px;
  color: var(--olive);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) a {
  display: block;
  width: fit-content;
  margin: 0 0 10px;
  color: rgba(22, 50, 38, 0.78);
  font-size: 0.82rem;
  font-weight: 620;
}

.footer-grid > div:not(.footer-brand) a:hover {
  color: var(--clay);
}

.footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  width: var(--shell);
  margin: 70px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: rgba(22, 50, 38, 0.55);
  font-size: 0.7rem;
}

.footer-bottom p {
  margin: 0;
}

.floating-actions {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.floating-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 138px;
  min-height: 45px;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--white);
  box-shadow: 0 14px 34px rgba(16, 39, 27, 0.2);
  font-size: 0.72rem;
  font-weight: 760;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.floating-action:hover {
  box-shadow: 0 18px 42px rgba(16, 39, 27, 0.27);
  transform: translateY(-2px);
}

.floating-action svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.floating-action--call {
  background: var(--ink);
}

.floating-action--whatsapp {
  background: #1e8e59;
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 64px, 1100px);
  }

  .header-shell {
    grid-template-columns: 150px 1fr 160px;
    width: calc(100% - 64px);
  }

  .desktop-nav {
    gap: 20px;
  }

  .desktop-nav a {
    font-size: 0.74rem;
  }

  .hero-content {
    width: min(690px, calc(100% - 64px));
    margin-left: 32px;
  }

  .category-grid {
    grid-auto-rows: 360px;
  }

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

  .quality-content {
    padding: 80px 44px;
  }

  .recipe-grid {
    grid-auto-rows: 480px;
  }

  .recipe-card--1 {
    grid-column: span 6;
  }

  .recipe-card--2,
  .recipe-card--3 {
    grid-column: span 3;
  }
}

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

  .section {
    padding: 110px 0;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 76px;
  }

  .site-header::after {
    right: 24px;
    left: 24px;
  }

  .header-shell {
    display: flex;
    justify-content: space-between;
    width: calc(100% - 48px);
  }

  .brand img,
  .is-scrolled .brand img {
    width: 96px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: 740px;
    height: 100svh;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-wash {
    background: linear-gradient(90deg, rgba(248, 246, 237, 0.95) 0%, rgba(248, 246, 237, 0.78) 47%, rgba(248, 246, 237, 0.12) 78%);
  }

  .hero-content {
    width: min(670px, calc(100% - 48px));
    margin-left: 24px;
  }

  .hero h1 {
    font-size: clamp(4.4rem, 10.5vw, 7rem);
  }

  .hero-side-note {
    display: none;
  }

  .section-heading,
  .statement-grid,
  .certificate-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

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

  .section-heading > p {
    max-width: 620px;
  }

  .statement-copy {
    max-width: 720px;
    padding-top: 0;
  }

  .stats-ribbon {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 80px;
  }

  .stat-item:nth-child(2) {
    border-right: 0;
  }

  .stat-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .stat-item:nth-child(3) {
    padding-left: 0;
  }

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

  .category-card,
  .category-card:nth-child(1),
  .category-card:nth-child(6) {
    grid-column: auto;
  }

  .category-card:nth-child(1),
  .category-card:nth-child(6) {
    grid-column: span 2;
  }

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

  .product-card:nth-child(even) {
    padding-top: 36px;
  }

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

  .quality-media,
  .quality {
    min-height: 0;
  }

  .quality-media {
    aspect-ratio: 1.35;
  }

  .quality-content {
    padding: 90px max(24px, calc((100vw - 720px) / 2));
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
    border-top: 0;
  }

  .timeline article {
    min-height: 260px;
    border-top: 1px solid rgba(22, 50, 38, 0.3);
  }

  .timeline article:nth-child(2) {
    border-right: 0;
  }

  .timeline article:nth-child(3) {
    padding-left: 0;
  }

  .timeline article:nth-child(3)::before {
    left: 0;
  }

  .sustainability {
    min-height: 0;
    padding: 120px 0;
  }

  .sustainability-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .sustainability-intro {
    max-width: 720px;
  }

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

  .recipe-card--1,
  .recipe-card--2,
  .recipe-card--3 {
    grid-column: auto;
  }

  .recipe-card--1 {
    grid-column: span 2;
  }

  .recipe-card--2 .recipe-content p,
  .recipe-card--3 .recipe-content p {
    display: block;
  }

  .journal-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 60px;
  }

  .journal-card {
    grid-column: auto;
  }

  .journal-card--2 {
    margin-top: 45px;
  }

  .journal-card--3 {
    grid-column: span 2;
    max-width: calc(50% - 11px);
  }

  .certificate-grid {
    gap: 58px;
  }

  .contact-card {
    max-width: 680px;
  }

  .footer-grid {
    grid-template-columns: 1fr 0.55fr 0.7fr;
    gap: 50px;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: calc(100% - 32px);
    --radius-lg: 26px;
    --radius-md: 18px;
  }

  html {
    scroll-padding-top: 76px;
  }

  body {
    font-size: 15px;
  }

  .section {
    padding: 84px 0;
  }

  .display-title {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
    line-height: 0.98;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 0.67rem;
  }

  .header-shell {
    width: calc(100% - 32px);
  }

  .site-header::after {
    right: 16px;
    left: 16px;
  }

  .brand img,
  .is-scrolled .brand img {
    width: 88px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .mobile-menu {
    padding: 100px 20px 30px;
  }

  .mobile-menu nav a {
    gap: 12px;
    padding: 11px 0;
    font-size: clamp(2rem, 9.8vw, 3rem);
  }

  .mobile-menu-footer {
    flex-direction: column;
    gap: 6px;
    margin-top: 26px;
  }

  .hero {
    min-height: 700px;
  }

  .hero-image {
    object-position: 69% center;
  }

  .hero-wash {
    background: linear-gradient(180deg, rgba(248, 246, 237, 0.8) 0%, rgba(248, 246, 237, 0.83) 44%, rgba(248, 246, 237, 0.34) 78%, rgba(248, 246, 237, 0.2) 100%);
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px;
    padding-top: 14px;
  }

  .hero-kicker {
    margin-bottom: 20px;
    font-size: 0.63rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3.7rem, 17vw, 5.6rem);
    line-height: 0.88;
  }

  .hero h1 span {
    margin-top: 5px;
    font-size: 0.61em;
  }

  .hero-copy {
    max-width: 92%;
    margin-top: 24px;
    font-size: 0.92rem;
    line-height: 1.66;
  }

  .hero-actions,
  .contact-actions {
    gap: 10px;
    margin-top: 28px;
  }

  .button {
    min-height: 52px;
    padding: 0 20px;
    font-size: 0.76rem;
  }

  .hero-scroll {
    bottom: 18px;
  }

  .section-heading {
    gap: 24px;
    margin-bottom: 40px;
  }

  .section-heading > p,
  .certificate-grid > div:first-child > p {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .statement-copy p {
    font-size: 0.92rem;
    line-height: 1.74;
  }

  .stats-ribbon {
    margin-top: 58px;
  }

  .stat-item {
    min-height: 132px;
    padding: 24px 16px;
  }

  .stat-item strong {
    font-size: clamp(1.8rem, 8.5vw, 2.6rem);
  }

  .stat-item span {
    margin-top: 10px;
    font-size: 0.68rem;
    line-height: 1.45;
  }

  .category-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 390px;
    gap: 12px;
  }

  .category-card,
  .category-card:nth-child(1),
  .category-card:nth-child(6) {
    grid-column: auto;
  }

  .category-content {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .category-content h3 {
    font-size: 2.35rem;
  }

  .category-content p {
    max-height: 80px;
    margin-top: 8px;
    opacity: 0.8;
  }

  .circle-arrow {
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
  }

  .section-center {
    margin-top: 40px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-card:nth-child(even) {
    padding-top: 0;
  }

  .product-media {
    aspect-ratio: 0.9;
  }

  .quality-media {
    aspect-ratio: 0.93;
  }

  .quality-stamp {
    right: 18px;
    bottom: 18px;
    width: 116px;
    height: 116px;
  }

  .quality-stamp span {
    font-size: 2.2rem;
  }

  .quality-stamp small {
    font-size: 0.56rem;
  }

  .quality-content {
    padding: 70px 16px;
  }

  .quality-content .display-title {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .process-list article {
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }

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

  .timeline article,
  .timeline article:first-child,
  .timeline article:nth-child(3) {
    min-height: 0;
    padding: 32px 0 34px 24px;
    border-right: 0;
  }

  .timeline article::before,
  .timeline article:first-child::before,
  .timeline article:nth-child(3)::before {
    left: 0;
  }

  .sustainability {
    padding: 90px 0;
  }

  .sustainability::after {
    background: linear-gradient(180deg, rgba(10, 34, 24, 0.9), rgba(10, 34, 24, 0.73));
  }

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

  .impact-grid article {
    min-height: 215px;
    padding: 26px;
  }

  .recipe-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 440px;
  }

  .recipe-card--1,
  .recipe-card--2,
  .recipe-card--3 {
    grid-column: auto;
  }

  .recipe-content h3,
  .recipe-card--2 .recipe-content h3,
  .recipe-card--3 .recipe-content h3 {
    font-size: 2.3rem;
  }

  .journal-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .journal-card,
  .journal-card--3 {
    grid-column: auto;
    max-width: none;
  }

  .journal-card--2 {
    margin-top: 0;
  }

  .journal-card h3 {
    font-size: 2.15rem;
  }

  .certificate-grid {
    gap: 42px;
  }

  .certificate-cards {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 92px 0;
  }

  .contact-grid {
    gap: 48px;
  }

  .contact-grid h2 {
    font-size: clamp(3.2rem, 15vw, 5.2rem);
  }

  .contact-grid > div:first-child > p:not(.eyebrow) {
    font-size: 0.9rem;
  }

  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-card {
    padding: 26px;
  }

  .site-footer {
    padding: 74px 16px 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    margin-top: 50px;
  }

  .footer-mark {
    bottom: -2vw;
    font-size: 44vw;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
    flex-direction: row;
    left: 12px;
  }

  .floating-action {
    flex: 1;
    min-width: 0;
    min-height: 48px;
    padding: 0 11px;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 3.55rem;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 0.86rem;
  }

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

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

  .stat-item,
  .stat-item:first-child,
  .stat-item:nth-child(3) {
    min-height: 108px;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat-item:last-child {
    border-bottom: 0;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Interior pages */
.inner-page {
  min-height: 100vh;
  background: var(--paper);
}

.page-hero {
  display: flex;
  align-items: flex-end;
  min-height: 650px;
  padding: 170px 0 100px;
  background: var(--cream-2);
}

.page-hero .section-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  align-items: end;
  gap: 90px;
}

.page-hero .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -44px;
}

.page-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.2rem, 7.8vw, 8.7rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.86;
}

.page-hero h1 em {
  display: block;
  color: var(--olive);
  font-weight: 400;
}

.page-hero .section-shell > p:last-child {
  margin: 0 0 10px;
  color: rgba(22, 50, 38, 0.69);
  font-size: 1rem;
  line-height: 1.78;
}

.page-hero--journal {
  background: linear-gradient(135deg, #e6ddc9 0%, #f6f2e8 62%, #dce0c7 100%);
}

.page-hero--recipes {
  background:
    radial-gradient(circle at 84% 24%, rgba(197, 79, 45, 0.13), transparent 28%),
    linear-gradient(135deg, #efe4d0 0%, #faf7ef 57%, #dce4ca 100%);
}

.recipe-list-grid .blog-list-media {
  aspect-ratio: 1.5;
}

.page-hero--not-found {
  min-height: 760px;
  background:
    radial-gradient(circle at 80% 20%, rgba(130, 142, 79, 0.22), transparent 34%),
    var(--cream-2);
}

.page-hero--not-found .section-shell {
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
}

.page-hero--not-found .section-shell > p:not(.eyebrow) {
  margin: 0 0 10px;
  color: rgba(22, 50, 38, 0.69);
  font-size: 1rem;
  line-height: 1.78;
}

.page-hero--not-found .button {
  grid-column: 2;
  justify-self: start;
  margin-top: -42px;
}

.category-jump {
  position: sticky;
  z-index: 20;
  top: 90px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 90px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(251, 248, 240, 0.9);
  box-shadow: 0 16px 45px rgba(23, 47, 33, 0.08);
  backdrop-filter: blur(14px);
}

.category-jump a {
  padding: 9px 16px;
  border-radius: 999px;
  color: rgba(22, 50, 38, 0.72);
  font-size: 0.73rem;
  font-weight: 700;
  transition: color 200ms ease, background-color 200ms ease;
}

.category-jump a:hover {
  color: var(--white);
  background: var(--ink);
}

.catalog-products {
  display: flex;
  flex-direction: column;
  gap: 130px;
}

.catalog-product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.75fr);
  align-items: center;
  gap: 10vw;
}

.catalog-product:nth-child(even) .catalog-product-media {
  order: 2;
}

.catalog-product-media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--cream-2);
}

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

.catalog-product-media > span {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(251, 248, 240, 0.9);
  font-size: 0.7rem;
  font-weight: 800;
}

.catalog-product-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.6rem, 6vw, 6.8rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.catalog-product-copy > p:not(.eyebrow) {
  margin: 26px 0 24px;
  color: rgba(22, 50, 38, 0.7);
  font-size: 1rem;
  line-height: 1.78;
}

.catalog-product-copy ul {
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.catalog-product-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  color: rgba(22, 50, 38, 0.74);
  font-size: 0.82rem;
}

.catalog-product-copy li::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clay);
  content: "";
}

.catalog-categories {
  background: var(--cream-2);
}

.category-grid--catalog .category-card:nth-child(1),
.category-grid--catalog .category-card:nth-child(6) {
  grid-column: span 4;
}

.blog-listing {
  background: var(--paper);
}

.blog-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 90px 38px;
}

.blog-list-card:nth-child(even) {
  padding-top: 80px;
}

.blog-list-media {
  position: relative;
  display: block;
  aspect-ratio: 1.35;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--cream-2);
}

.blog-list-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-list-media:hover img {
  transform: scale(1.035);
}

.blog-list-media > span {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(251, 248, 240, 0.9);
  font-size: 0.68rem;
  font-weight: 800;
}

.blog-list-card h2 {
  margin: 15px 0 12px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 3.7rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.blog-list-card h2 a:hover {
  color: var(--clay);
}

.blog-list-card > p {
  max-width: 620px;
  margin: 0 0 18px;
  color: rgba(22, 50, 38, 0.68);
  font-size: 0.9rem;
  line-height: 1.72;
}

.article-hero {
  padding: 160px 0 80px;
  background: var(--cream-2);
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.75fr);
  align-items: center;
  gap: 7vw;
}

.article-hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6.4vw, 7.2rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.93;
}

.article-deck {
  max-width: 720px;
  margin: 30px 0 0;
  color: rgba(22, 50, 38, 0.7);
  font-size: 1rem;
  line-height: 1.78;
}

.article-meta {
  display: flex;
  gap: 22px;
  margin-top: 28px;
  color: var(--olive);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-hero-grid > img {
  width: 100%;
  aspect-ratio: 0.92;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.article-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 780px);
  justify-content: center;
  gap: 90px;
  padding-top: 110px;
  padding-bottom: 140px;
}

.article-aside {
  position: sticky;
  top: 110px;
  align-self: start;
  max-height: calc(100vh - 140px);
  overflow: auto;
}

.article-aside > span {
  display: block;
  margin-bottom: 16px;
  color: var(--olive);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.article-aside nav {
  display: flex;
  flex-direction: column;
}

.article-aside a {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  color: rgba(22, 50, 38, 0.62);
  font-size: 0.72rem;
  line-height: 1.45;
}

.article-aside a:hover {
  color: var(--clay);
}

.article-content section {
  padding-top: 42px;
  margin-top: -42px;
  margin-bottom: 68px;
}

.article-content section:first-child {
  margin-top: 0;
}

.article-content h2 {
  margin: 0 0 25px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.article-content p {
  margin: 0 0 22px;
  color: rgba(22, 50, 38, 0.78);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.9;
}

.article-content p:first-of-type::first-letter {
  float: left;
  margin: 8px 9px 0 0;
  color: var(--clay);
  font-family: var(--serif);
  font-size: 4.5rem;
  line-height: 0.72;
}

.article-content ul {
  margin: 32px 0;
  padding: 28px 34px 28px 52px;
  border-radius: var(--radius-md);
  background: var(--cream-2);
}

.article-content li {
  margin-bottom: 10px;
  color: rgba(22, 50, 38, 0.78);
  font-size: 0.9rem;
  line-height: 1.65;
}

.related-articles {
  background: var(--cream-2);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 55px;
}

.related-grid > a {
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(251, 248, 240, 0.45);
  transition: color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.related-grid > a:hover {
  color: var(--white);
  background: var(--ink);
  transform: translateY(-5px);
}

.related-grid span {
  color: var(--olive);
  font-size: 0.66rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.related-grid h3 {
  margin: 38px 0 12px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.05;
}

.related-grid p {
  margin: 0;
  color: rgba(22, 50, 38, 0.64);
  font-size: 0.77rem;
  line-height: 1.6;
}

.related-grid > a:hover p {
  color: rgba(255, 255, 255, 0.7);
}

.recipe-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  min-height: 820px;
  background: var(--cream-2);
}

.recipe-detail-image {
  min-height: 820px;
}

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

.recipe-detail-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 150px clamp(44px, 6vw, 105px) 80px;
}

.recipe-detail-intro h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.8rem, 6.4vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.recipe-detail-intro > p:not(.eyebrow) {
  margin: 28px 0 0;
  color: rgba(22, 50, 38, 0.7);
  font-size: 1rem;
  line-height: 1.78;
}

.recipe-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.recipe-facts > span {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 15px;
  font-family: var(--serif);
  font-size: 1.25rem;
}

.recipe-facts small {
  display: block;
  margin-bottom: 6px;
  color: var(--olive);
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.recipe-method {
  background: var(--paper);
}

.recipe-method-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.68fr) minmax(0, 1.32fr);
  gap: 10vw;
}

.recipe-method h2 {
  margin: 0 0 34px;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.4vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.recipe-method ul,
.recipe-method ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.recipe-method ul li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: rgba(22, 50, 38, 0.76);
  font-size: 0.88rem;
  line-height: 1.55;
}

.recipe-method ol li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 24px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.recipe-method ol span {
  color: var(--clay);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-style: italic;
}

.recipe-method ol p {
  margin: 0;
  color: rgba(22, 50, 38, 0.77);
  font-size: 0.92rem;
  line-height: 1.7;
}

.recipe-contact {
  padding: 48px 0;
  color: var(--cream);
  background: var(--ink);
}

.recipe-contact .section-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.recipe-contact p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.4vw, 3.5rem);
  letter-spacing: -0.04em;
}

.other-recipes {
  background: var(--cream-2);
}

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

.other-recipe-grid img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.other-recipe-grid h3 {
  margin: 16px 0 2px;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.05;
}

.other-recipe-grid span {
  color: var(--olive);
  font-size: 0.68rem;
  font-weight: 760;
}

@media (max-width: 980px) {
  .page-hero .section-shell {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .page-hero .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .page-hero--not-found .section-shell {
    grid-template-columns: 1fr;
  }

  .page-hero--not-found .button {
    grid-column: auto;
    margin-top: 0;
  }

  .catalog-product,
  .article-hero-grid,
  .recipe-method-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .catalog-product:nth-child(even) .catalog-product-media {
    order: 0;
  }

  .catalog-product-copy {
    max-width: 720px;
  }

  .blog-list-grid {
    gap: 70px 24px;
  }

  .article-hero-grid > img {
    aspect-ratio: 1.4;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-top: 80px;
  }

  .article-aside {
    position: static;
    max-height: none;
  }

  .article-aside nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 20px;
  }

  .recipe-detail-hero {
    grid-template-columns: 1fr;
  }

  .recipe-detail-image {
    min-height: 0;
    aspect-ratio: 1.35;
  }

  .recipe-detail-intro {
    padding: 90px 24px;
  }
}

@media (max-width: 680px) {
  .page-hero {
    min-height: 580px;
    padding: 130px 0 70px;
  }

  .page-hero h1 {
    font-size: clamp(3.5rem, 16vw, 5.5rem);
  }

  .category-jump {
    position: static;
    margin-bottom: 64px;
    border-radius: 20px;
  }

  .category-jump a {
    padding: 8px 12px;
  }

  .catalog-products {
    gap: 90px;
  }

  .catalog-product {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .catalog-product-copy h2 {
    font-size: 3.7rem;
  }

  .category-grid--catalog .category-card:nth-child(1),
  .category-grid--catalog .category-card:nth-child(6) {
    grid-column: auto;
  }

  .blog-list-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .blog-list-card:nth-child(even) {
    padding-top: 0;
  }

  .blog-list-card h2 {
    font-size: 2.45rem;
  }

  .article-hero {
    padding: 125px 0 60px;
  }

  .article-hero h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .article-hero-grid > img {
    aspect-ratio: 1;
  }

  .article-layout {
    padding-top: 64px;
    padding-bottom: 90px;
  }

  .article-aside nav {
    grid-template-columns: 1fr;
  }

  .article-content section {
    margin-bottom: 52px;
  }

  .article-content h2 {
    font-size: 2.4rem;
  }

  .article-content p {
    font-size: 1rem;
    line-height: 1.82;
  }

  .article-content ul {
    padding: 24px 24px 24px 40px;
  }

  .related-grid,
  .other-recipe-grid {
    grid-template-columns: 1fr;
  }

  .recipe-detail-image {
    aspect-ratio: 0.92;
  }

  .recipe-detail-intro {
    padding: 105px 16px 70px;
  }

  .recipe-detail-intro h1 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .recipe-facts {
    grid-template-columns: 1fr;
  }

  .recipe-method-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .recipe-method ol li {
    grid-template-columns: 45px 1fr;
    gap: 14px;
  }

  .recipe-contact .section-shell {
    flex-direction: column;
    align-items: stretch;
  }

  .recipe-contact p {
    font-size: 2rem;
  }
}
