:root {
  --bg: #f4f1e9;
  --surface: #fbfaf6;
  --surface-strong: #ffffff;
  --ink: #211f1a;
  --muted: #625e55;
  --line: rgba(33, 31, 26, 0.14);
  --gold: #c89937;
  --gold-deep: #7d5616;
  --danger: #9f3f36;
  --inverse-bg: #211f1a;
  --inverse-ink: #f8f5ed;
  --inverse-muted: #d4cfc3;
  --inverse-gold: #e1b758;
  --sage: #77806c;
  --shadow: 0 22px 70px rgba(51, 43, 28, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shell: min(1180px, calc(100% - 40px));
  --text-meta: 0.8125rem;
  --text-label: 0.875rem;
  --text-body: 1rem;
  --text-lead: 1.125rem;
  --text-card-title: 1.3125rem;
}

html[data-theme="dark"] {
  --bg: #161713;
  --surface: #1d1f1a;
  --surface-strong: #242620;
  --ink: #f0eee7;
  --muted: #aaa69c;
  --line: rgba(240, 238, 231, 0.14);
  --gold: #d5a84c;
  --gold-deep: #e0b65c;
  --danger: #ff9185;
  --sage: #9aa58c;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: var(--text-body);
  font-kerning: normal;
  line-height: 1.6;
  transition: background-color 180ms ease, color 180ms ease;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--ink);
  color: var(--bg);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 78px;
  gap: 26px;
}

.brand,
.footer-brand {
  width: 114px;
}

.brand img,
.footer-brand img {
  width: 100%;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: var(--text-label);
  font-weight: 600;
}

.primary-nav a,
.footer-links a {
  position: relative;
}

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

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

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

.language-switcher,
.admin-language {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}

.language-switcher button,
.admin-language button {
  min-width: 34px;
  min-height: 36px;
  padding: 7px 9px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: var(--text-label);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.language-switcher button[aria-pressed="true"],
.admin-language button.active {
  background: var(--ink);
  color: var(--bg);
}

.icon-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.icon-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.sun-icon,
html[data-theme="dark"] .moon-icon {
  display: none;
}

html[data-theme="dark"] .sun-icon {
  display: block;
}

.mobile-menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: min(670px, calc(100vh - 118px));
  margin-top: 28px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #8b806f;
  box-shadow: var(--shadow);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(20, 18, 14, 0.76) 0%, rgba(20, 18, 14, 0.3) 48%, rgba(20, 18, 14, 0.06) 78%),
    linear-gradient(0deg, rgba(20, 18, 14, 0.28), transparent 42%);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  max-width: 620px;
  min-height: inherit;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(46px, 7vw, 92px);
  color: #fffdf7;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: var(--text-meta);
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1 {
  width: 100%;
  max-width: 560px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6.4vw, 86px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.hero-text {
  width: 100%;
  max-width: 460px;
  margin: 24px 0 0;
  color: rgba(255, 253, 247, 0.94);
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  line-height: 1.65;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: var(--text-label);
  font-weight: 700;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

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

.button-light {
  margin-top: 34px;
  background: #fffdf7;
  color: #211f1a;
}

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

.button-ghost {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.hero-index {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-meta);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero-index span {
  display: block;
  width: 74px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.section {
  padding-top: clamp(88px, 11vw, 150px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 38px;
}

.section-heading h2 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.section-heading .eyebrow {
  color: var(--gold-deep);
}

.section-intro {
  max-width: 470px;
  margin: 0 0 4px auto;
  color: var(--muted);
  font-size: var(--text-body);
  line-height: 1.65;
}

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

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

.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(39, 34, 25, 0.1);
}

.card-image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e7e1d4;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.6, 0.2, 1);
}

.card:hover .card-image {
  transform: scale(1.035);
}

.product-card:nth-child(2) .card-image {
  object-position: 58% center;
}

.product-card:nth-child(3) .card-image {
  object-position: 78% center;
}

.card-body {
  padding: 22px 22px 20px;
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.card h3 {
  margin: 0;
  font-size: var(--text-card-title);
  letter-spacing: -0.02em;
}

.card-note {
  flex: none;
  color: var(--gold-deep);
  font-size: var(--text-meta);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card-description {
  min-height: 48px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: var(--text-body);
  line-height: 1.6;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  min-height: 44px;
  font-size: var(--text-label);
  font-weight: 800;
}

.card-link::after {
  content: "→";
  transition: transform 160ms ease;
}

.card-link:hover::after {
  transform: translateX(3px);
}

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

.recipe-card:first-child .card-image-wrap {
  aspect-ratio: 1.36 / 1;
}

.recipe-card:not(:first-child) .card-image-wrap {
  aspect-ratio: 1.08 / 1;
}

.recipe-card:nth-child(2) .card-image {
  object-position: 68% center;
}

.recipe-card:nth-child(3) .card-image {
  object-position: center;
  filter: saturate(0.72) contrast(0.94);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: #d8d2c7;
  color: #fff;
  cursor: zoom-in;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(2),
.gallery-item:nth-child(6) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(3) {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.6, 0.2, 1);
}

.gallery-item:nth-child(2) img { object-position: 58% center; }
.gallery-item:nth-child(4) img { object-position: 40% center; }
.gallery-item:nth-child(8) img { object-position: 45% center; }

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(18, 16, 12, 0.86));
}

.gallery-item span {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 16px;
  left: 18px;
  text-align: left;
  font-size: var(--text-label);
  font-weight: 700;
}

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

.gallery-dialog {
  width: min(1040px, calc(100% - 32px));
  max-width: none;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: #15130f;
  color: #fff;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
}

.gallery-dialog::backdrop { background: rgba(12, 10, 7, 0.82); }
.gallery-dialog img { display: block; width: 100%; max-height: 76vh; object-fit: contain; }
.gallery-dialog p { margin: 0; padding: 16px 22px 19px; font-size: var(--text-body); line-height: 1.6; }
.gallery-dialog-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  background: rgba(15,13,10,.72);
  color: #fff;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.about-layout {
  display: grid;
  min-height: 570px;
  grid-template-columns: 1.08fr 0.92fr;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.about-media {
  position: relative;
  min-height: 470px;
}

.about-media > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-mark {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 124px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(250, 247, 239, 0.9);
  backdrop-filter: blur(10px);
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(42px, 6vw, 86px);
}

.about-content .eyebrow {
  color: var(--gold-deep);
}

.about-content h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.6vw, 62px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.about-content p:not(.eyebrow) {
  max-width: 500px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: var(--text-body);
  line-height: 1.65;
}

.about-content .button {
  margin-top: 34px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  padding: clamp(42px, 7vw, 88px);
  border-radius: var(--radius-lg);
  background: var(--inverse-bg);
  color: var(--inverse-ink);
}

.contact-copy h2 {
  max-width: 580px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.contact-copy > p:last-child { max-width: 65ch; margin: 24px 0 0; color: var(--inverse-muted); font-size: var(--text-body); line-height: 1.7; }
.contact-groups { display: grid; align-content: center; gap: 28px; }
.contact-group { display: grid; gap: 8px; padding-bottom: 24px; border-bottom: 1px solid color-mix(in srgb, var(--inverse-ink) 22%, transparent); }
.contact-group > span { color: var(--inverse-gold); font-size: var(--text-meta); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-group a { width: fit-content; font-size: clamp(17px, 2vw, 23px); }
.contact-group a:hover { color: var(--gold); }

.site-footer {
  margin-top: clamp(100px, 12vw, 170px);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 0.6fr 0.9fr 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 150px;
}

.footer-contact { display: grid; gap: 7px; font-size: var(--text-label); line-height: 1.55; }
.footer-contact a { width: fit-content; color: var(--muted); }
.footer-contact a:hover { color: var(--ink); }

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-label);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
  font-size: var(--text-label);
  font-weight: 700;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 22px;
  bottom: 22px;
  max-width: min(360px, calc(100% - 44px));
  padding: 13px 18px;
  transform: translateY(18px);
  border-radius: 12px;
  background: var(--ink);
  color: var(--bg);
  opacity: 0;
  pointer-events: none;
  box-shadow: var(--shadow);
  font-size: var(--text-label);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.detail-main {
  padding-top: 30px;
}

.detail-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  color: var(--muted);
  font-size: var(--text-label);
  font-weight: 700;
}

.detail-breadcrumb a:hover {
  color: var(--ink);
}

.detail-breadcrumb strong {
  overflow: hidden;
  color: var(--ink);
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detail-hero {
  display: grid;
  min-height: 630px;
  grid-template-columns: 0.88fr 1.12fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.detail-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(46px, 6vw, 82px);
}

.detail-hero-copy .eyebrow,
.detail-section-heading .eyebrow,
.ingredients-panel .eyebrow,
.steps-panel .eyebrow,
.about-process .eyebrow,
.about-page-cta .eyebrow {
  color: var(--gold-deep);
}

.detail-hero-copy h1,
.about-page-overlay h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 6.2vw, 82px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.detail-lead {
  max-width: 500px;
  margin: 25px 0 0;
  font-size: 19px;
  line-height: 1.55;
}

.detail-copy {
  max-width: 65ch;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: var(--text-body);
  line-height: 1.7;
}

.text-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  min-height: 44px;
  font-size: var(--text-label);
  font-weight: 800;
}

.text-arrow::before {
  content: "←";
  transition: transform 160ms ease;
}

.text-arrow:hover::before {
  transform: translateX(-3px);
}

.detail-hero-media {
  min-height: 500px;
  overflow: hidden;
  background: #e5dfd3;
}

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

.detail-product-hero .detail-hero-media img {
  object-position: 58% center;
}

.detail-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.detail-info-grid article,
.about-values article {
  min-height: 230px;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.detail-info-grid article > span,
.about-values article > span {
  color: var(--gold-deep);
  font-size: var(--text-meta);
  font-weight: 800;
  letter-spacing: 0.1em;
}

.detail-info-grid h2,
.about-values h2 {
  margin: 34px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.detail-info-grid p,
.about-values p {
  max-width: 480px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: var(--text-body);
  line-height: 1.65;
}

.detail-related {
  padding-top: clamp(88px, 10vw, 140px);
}

.detail-section-heading {
  margin-bottom: 30px;
}

.detail-section-heading h2,
.recipe-method h2,
.about-process h2,
.about-page-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.6vw, 62px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.detail-related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.detail-related-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
}

.detail-related-card .card-image-wrap {
  height: 100%;
  aspect-ratio: auto;
}

.detail-related-card .card-body {
  display: flex;
  min-height: 280px;
  flex-direction: column;
}

.detail-related-card .card-link {
  margin-top: auto;
  padding-top: 20px;
}

.recipe-method {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 18px;
  margin-top: 18px;
}

.ingredients-panel,
.steps-panel {
  padding: clamp(34px, 5vw, 60px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.ingredients-panel ul,
.steps-panel ol {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.ingredients-panel li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--text-body);
  line-height: 1.65;
}

.ingredients-panel li:last-child {
  border-bottom: 0;
}

.steps-panel ol {
  counter-reset: recipe-steps;
}

.steps-panel li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 18px;
  padding: 0 0 26px;
  counter-increment: recipe-steps;
  color: var(--muted);
  font-size: var(--text-body);
  line-height: 1.65;
}

.steps-panel li::before {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: counter(recipe-steps, decimal-leading-zero);
  color: var(--gold-deep);
  font-size: var(--text-meta);
  font-weight: 800;
}

.about-page-hero {
  position: relative;
  min-height: min(720px, calc(100vh - 150px));
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(16, 16, 13, 0.76), rgba(16, 16, 13, 0.12) 72%);
}

.about-page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-page-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 680px;
  min-height: inherit;
  flex-direction: column;
  justify-content: center;
  padding: clamp(50px, 7vw, 92px);
  color: #fffdf7;
}

.about-page-overlay p:not(.eyebrow) {
  max-width: 540px;
  margin: 28px 0 0;
  color: rgba(255, 253, 247, 0.94);
  font-size: var(--text-lead);
  line-height: 1.65;
}

.about-process {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  gap: clamp(40px, 8vw, 110px);
  padding: clamp(88px, 11vw, 150px) 0;
}

.about-process > p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

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

.about-values article {
  min-height: 270px;
}

.about-page-cta {
  display: grid;
  min-height: 470px;
  grid-template-columns: 1.12fr 0.88fr;
  margin-top: clamp(88px, 10vw, 140px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.about-page-cta > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-page-cta > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(40px, 6vw, 78px);
}

.about-page-cta .button {
  margin-top: 30px;
}

.detail-footer {
  margin-top: clamp(90px, 10vw, 140px);
}

@media (max-width: 880px) {
  :root {
    --shell: min(100% - 30px, 760px);
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    min-height: 70px;
  }

  .mobile-menu-toggle {
    display: inline-grid;
    justify-self: center;
  }

  .mobile-menu-toggle span {
    position: absolute;
    width: 16px;
    height: 1px;
    background: currentColor;
    transition: transform 160ms ease;
  }

  .mobile-menu-toggle span:first-child {
    transform: translateY(-3px);
  }

  .mobile-menu-toggle span:last-child {
    transform: translateY(3px);
  }

  .mobile-menu-toggle[aria-expanded="true"] span:first-child {
    transform: rotate(45deg);
  }

  .mobile-menu-toggle[aria-expanded="true"] span:last-child {
    transform: rotate(-45deg);
  }

  .primary-nav {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid transparent;
    background: var(--bg);
    opacity: 0;
    transition: max-height 220ms ease, opacity 160ms ease, border-color 160ms ease;
  }

  .primary-nav.open {
    max-height: 360px;
    border-color: var(--line);
    opacity: 1;
  }

  .primary-nav a {
    width: var(--shell);
    margin: 0 auto;
    padding: 16px 0;
    border-top: 1px solid var(--line);
  }

  .primary-nav a::after {
    display: none;
  }

  .header-tools .language-switcher {
    display: none;
  }

  .hero {
    min-height: 610px;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(20, 18, 14, 0.74), rgba(20, 18, 14, 0.16));
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-intro {
    margin-left: 0;
  }

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

  .product-card:first-child,
  .recipe-card:first-child {
    grid-column: 1 / -1;
  }

  .product-card:first-child { grid-column: auto; }

  .product-card:first-child .card-image-wrap {
    aspect-ratio: 1.8 / 1;
  }

  .product-card:first-child .card-image-wrap { aspect-ratio: 4 / 3; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item:nth-child(3) { grid-row: span 2; }

  .contact-panel { grid-template-columns: 1fr; }

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

  .about-media {
    min-height: 430px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr auto;
  }

  .footer-inner p {
    display: none;
  }

  .detail-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .detail-hero-copy {
    min-height: 470px;
  }

  .detail-hero-media {
    min-height: 500px;
    grid-row: 1;
  }

  .detail-info-grid,
  .recipe-method,
  .about-process,
  .about-page-cta {
    grid-template-columns: 1fr;
  }

  .detail-related-card {
    grid-template-columns: 1fr;
  }

  .detail-related-card .card-image-wrap {
    aspect-ratio: 1.5 / 1;
  }

  .about-page-hero {
    min-height: 660px;
  }

  .about-process {
    align-items: start;
  }

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

  .about-values article:first-child {
    grid-column: 1 / -1;
  }

  .about-page-cta > img {
    max-height: 480px;
  }
}

@media (max-width: 600px) {
  .brand {
    width: 98px;
  }

  .header-inner {
    gap: 10px;
  }

  .hero {
    min-height: 560px;
    margin-top: 15px;
    border-radius: 20px;
  }

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

  .hero-content {
    max-width: none;
    justify-content: flex-end;
    padding: 42px 28px 62px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(42px, 12.5vw, 54px);
    line-height: 1.01;
    text-wrap: balance;
  }

  .hero-text {
    width: auto;
    max-width: 280px;
    font-size: var(--text-body);
  }

  .hero-index {
    right: 24px;
    bottom: 20px;
  }

  .section {
    padding-top: 86px;
  }

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

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

  .product-card:first-child,
  .recipe-card:first-child {
    grid-column: auto;
  }

  .product-card:first-child .card-image-wrap,
  .recipe-card:first-child .card-image-wrap,
  .recipe-card:not(:first-child) .card-image-wrap {
    aspect-ratio: 1.28 / 1;
  }

  .about-layout {
    min-height: auto;
    border-radius: 20px;
  }

  .about-media {
    min-height: 340px;
  }

  .about-content {
    padding: 40px 28px 46px;
  }

  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 250px; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(6) { grid-column: auto; grid-row: auto; }
  .gallery-item:nth-child(3) { min-height: 390px; }

  .contact-panel { padding: 40px 28px; border-radius: 20px; }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 40px 0;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .detail-main {
    padding-top: 16px;
  }

  .detail-hero,
  .about-page-hero,
  .about-page-cta {
    border-radius: 20px;
  }

  .detail-hero-copy {
    min-height: auto;
    padding: 38px 26px 44px;
  }

  .detail-hero-copy h1,
  .about-page-overlay h1 {
    font-size: clamp(44px, 14vw, 60px);
  }

  .detail-hero-media {
    min-height: 350px;
  }

  .detail-lead {
    font-size: 17px;
  }

  .detail-info-grid,
  .detail-related-grid,
  .about-values {
    grid-template-columns: 1fr;
  }

  .about-values article:first-child {
    grid-column: auto;
  }

  .detail-info-grid article,
  .about-values article {
    min-height: 210px;
    padding: 28px;
  }

  .ingredients-panel,
  .steps-panel {
    padding: 32px 26px;
  }

  .about-page-hero {
    min-height: 610px;
  }

  .about-page-hero::after {
    background: linear-gradient(90deg, rgba(16, 16, 13, 0.78), rgba(16, 16, 13, 0.24));
  }

  .about-page-overlay {
    justify-content: flex-end;
    padding: 44px 28px;
  }

  .about-process {
    padding: 86px 0;
  }

  .about-page-cta > img {
    min-height: 340px;
  }

  .about-page-cta > div {
    padding: 38px 28px 44px;
  }
}

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