:root {
  --bg: #070605;
  --bg-soft: #11100f;
  --bg-panel: rgba(15, 13, 11, 0.9);
  --bg-panel-soft: rgba(18, 16, 14, 0.72);
  --text: #f4eee4;
  --text-muted: #cbbda8;
  --text-soft: #9f947f;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.16);
  --gold: #b99765;
  --gold-soft: #dfc8a5;
  --bronze: #8e6b3e;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  --transition: 180ms ease;
  --container: min(1240px, calc(100% - clamp(2rem, 4vw, 4.5rem)));
  --header-gutter: clamp(1.5rem, 3.4vw, 4rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(900px 540px at 12% 8%, rgba(152, 116, 70, 0.14), transparent 55%),
    radial-gradient(1000px 620px at 88% 18%, rgba(105, 70, 43, 0.12), transparent 58%),
    linear-gradient(180deg, #090807 0%, #0c0b0a 48%, #070605 100%);
  position: relative;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
  height: 100dvh;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 28rem;
  height: 28rem;
  filter: blur(100px);
  pointer-events: none;
  z-index: -1;
}

body::before {
  top: -10rem;
  right: -12rem;
  background: rgba(142, 107, 62, 0.12);
}

body::after {
  bottom: -14rem;
  left: -10rem;
  background: rgba(72, 52, 31, 0.12);
}

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

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

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

button {
  cursor: pointer;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 60;
  padding: 0.85rem 1rem;
  background: var(--gold);
  color: #0d0a08;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 1rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  backdrop-filter: blur(14px);
  background: rgba(7, 6, 5, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.home-page .site-header {
  position: fixed;
  inset-inline: 0;
  background:
    linear-gradient(180deg, rgba(7, 6, 5, 0.72), rgba(7, 6, 5, 0.26) 66%, rgba(7, 6, 5, 0.04) 100%);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.menu-open .site-header,
.home-page.menu-open .site-header {
  background: rgba(7, 6, 5, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.site-header__inner {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: var(--header-gutter);
  min-height: 5.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.home-page .site-header__inner {
  padding-inline: clamp(1.5rem, 3.8vw, 4.5rem);
  min-height: 5.7rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.04rem;
  width: max-content;
}

.brand__title {
  font-family: "Fraunces", serif;
  font-size: clamp(1.45rem, 1.2rem + 1vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.015em;
  line-height: 0.96;
  color: #fff;
}

.brand__subtitle {
  display: block;
  width: 100%;
  margin-top: 0.08rem;
  padding-top: 0;
  font-size: 0.47rem;
  line-height: 1;
  letter-spacing: 0.6em;
  text-align: left;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
}

.site-nav__close {
  display: none;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  transition: color var(--transition);
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.site-nav__link:hover,
.site-nav__link[aria-current="page"] {
  color: var(--text);
}

.site-nav__link:hover::after,
.site-nav__link[aria-current="page"]::after {
  transform: scaleX(1);
}

.page-main {
  padding-bottom: 5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.eyebrow::before {
  content: "";
  width: 3rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(185, 151, 101, 0), rgba(185, 151, 101, 1));
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.03em;
}

p {
  margin: 0;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(112% 92% at 50% 46%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.04) 42%, rgba(0, 0, 0, 0.32) 100%),
    linear-gradient(180deg, rgba(6, 5, 4, 0.42) 0%, rgba(6, 5, 4, 0.12) 24%, rgba(6, 5, 4, 0.08) 58%, rgba(6, 5, 4, 0.44) 100%);
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8rem;
  background: linear-gradient(180deg, rgba(7, 6, 5, 0), rgba(7, 6, 5, 0.84) 96%);
  z-index: 1;
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.07)),
    url("assets/images/hero/hero-plated-mushrooms.jpg") center 56% / cover no-repeat;
  filter: saturate(1) contrast(1.02) brightness(1);
  transform: scale(1.03);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(100%, calc(100% - clamp(2rem, 5vw, 6.5rem)));
  max-width: 1720px;
  min-height: 100svh;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8.9rem 0 4.2rem;
}

.hero__content {
  max-width: 46rem;
  margin-inline: auto;
  padding-inline: 1rem;
  text-align: center;
}

.hero .eyebrow {
  justify-content: center;
  margin-bottom: 1.2rem;
  color: rgba(255, 247, 236, 0.84);
}

.hero__title {
  max-width: 10ch;
  margin-inline: auto;
  font-size: clamp(4.1rem, 8vw, 8.2rem);
  line-height: 0.94;
  text-wrap: balance;
  color: #fff;
  text-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.hero__lead {
  max-width: 38rem;
  margin: 1.35rem auto 0;
  font-size: clamp(1rem, 0.94rem + 0.45vw, 1.2rem);
  color: rgba(255, 255, 255, 0.92);
  text-wrap: balance;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.25rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.85rem 1.45rem;
  border: 1px solid transparent;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

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

.button--primary {
  background: linear-gradient(180deg, #c6a272, #9b7544);
  color: #0d0906;
  border-color: rgba(255, 255, 255, 0.12);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.button--block {
  width: 100%;
}

.section {
  position: relative;
  padding: 6.9rem 0;
}

.section + .section {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section--tight {
  padding-top: 5.4rem;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3.1rem;
}

.section-header__copy {
  max-width: 44rem;
}

.section-title {
  font-size: clamp(2.55rem, 2.05rem + 2vw, 4.9rem);
  margin-bottom: 0.9rem;
}

.section-intro {
  color: var(--text-muted);
  max-width: 41rem;
  font-size: 1.02rem;
  line-height: 1.8;
}

.inline-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-bottom: 0.25rem;
  color: var(--gold-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.inline-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(17, 14, 12, 0.9), rgba(10, 9, 8, 0.88)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(185, 151, 101, 0.28);
}

.card__media {
  position: relative;
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  isolation: isolate;
  background-color: #12100e;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.card__media--compact {
  aspect-ratio: 5 / 4;
}

.card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.1) 38%, rgba(0, 0, 0, 0.46) 100%),
    radial-gradient(60% 80% at 50% 8%, rgba(255, 214, 167, 0.08), transparent 60%);
}

.card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 18%;
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.28));
}

.visual--chanterelle {
  background-image:
    linear-gradient(160deg, rgba(107, 53, 29, 0.16), rgba(0, 0, 0, 0.08)),
    url("assets/images/sections/section-forest-chanterelle.jpg");
  background-position: center, 34% 55%;
}

.visual--oyster {
  background-image:
    linear-gradient(160deg, rgba(49, 72, 61, 0.18), rgba(0, 0, 0, 0.08)),
    url("assets/images/cards/card-bowl-mushrooms.jpg");
  background-position: center, 56% 58%;
}

.visual--porcini {
  background-image:
    linear-gradient(160deg, rgba(93, 63, 39, 0.2), rgba(0, 0, 0, 0.08)),
    url("assets/images/cards/card-plated-toast-mushrooms.jpg");
  background-position: center, 58% 76%;
}

.visual--menu-spring {
  background-image:
    linear-gradient(160deg, rgba(64, 54, 38, 0.2), rgba(0, 0, 0, 0.08)),
    url("assets/images/sections/section-roasted-vegetables-tray.jpg");
  background-position: center, 50% 62%;
}

.visual--menu-autumn {
  background-image:
    linear-gradient(160deg, rgba(102, 64, 38, 0.2), rgba(0, 0, 0, 0.08)),
    url("assets/images/sections/section-forest-chanterelle.jpg");
  background-position: center, 40% 54%;
}

.visual--menu-winter {
  background-image:
    linear-gradient(160deg, rgba(70, 57, 43, 0.16), rgba(0, 0, 0, 0.08)),
    url("assets/images/cards/card-plated-toast-mushrooms.jpg");
  background-position: center, 56% 64%;
}

.visual--guide-gold {
  background-image:
    linear-gradient(160deg, rgba(101, 61, 30, 0.28), rgba(0, 0, 0, 0.12)),
    url("assets/images/cards/card-chanterelle-closeup.jpg");
  background-position: center, 34% 54%;
}

.visual--guide-silver {
  background-image:
    linear-gradient(160deg, rgba(88, 72, 54, 0.16), rgba(0, 0, 0, 0.08)),
    url("assets/images/cards/card-oyster-closeup-light.jpg");
  background-position: center, 54% 58%;
}

.visual--guide-plum {
  background-image:
    linear-gradient(160deg, rgba(82, 56, 36, 0.16), rgba(0, 0, 0, 0.08)),
    url("assets/images/cards/card-wood-board-mushrooms.jpg");
  background-position: center, 54% 62%;
}

.visual--guide-cream {
  background-image:
    linear-gradient(160deg, rgba(94, 68, 43, 0.14), rgba(0, 0, 0, 0.08)),
    url("assets/images/cards/card-plated-toast-mushrooms.jpg");
  background-position: center, 55% 68%;
}

.visual--guide-shiitake {
  background-image:
    linear-gradient(160deg, rgba(84, 60, 39, 0.16), rgba(0, 0, 0, 0.08)),
    url("assets/images/cards/card-sliced-mushroom-dark.jpg");
  background-position: center, 52% 54%;
}

.visual--guide-maitake {
  background-image:
    linear-gradient(160deg, rgba(88, 67, 46, 0.14), rgba(0, 0, 0, 0.08)),
    url("assets/images/cards/card-oyster-closeup-light.jpg");
  background-position: center, 50% 42%;
}

.visual--guide-king-trumpet {
  background-image:
    linear-gradient(160deg, rgba(82, 58, 40, 0.16), rgba(0, 0, 0, 0.08)),
    url("assets/images/sections/section-techniques-sliced-mushrooms.jpg");
  background-position: center, 54% 58%;
}

.visual--guide-enoki {
  background-image:
    linear-gradient(160deg, rgba(92, 78, 57, 0.1), rgba(0, 0, 0, 0.06)),
    url("assets/images/sections/section-minimal-mushrooms.jpg");
  background-position: center, 52% 48%;
}

.visual--guide-button {
  background-image:
    linear-gradient(160deg, rgba(96, 74, 51, 0.12), rgba(0, 0, 0, 0.08)),
    url("assets/images/cards/card-bowl-mushrooms.jpg");
  background-position: center, 52% 58%;
}

.visual--guide-encyclopedia {
  background-image:
    linear-gradient(160deg, rgba(78, 55, 36, 0.18), rgba(0, 0, 0, 0.08)),
    url("assets/images/cards/card-wood-board-mushrooms.jpg");
  background-position: center, 48% 54%;
}

.visual--guide-methodology {
  background-image:
    linear-gradient(180deg, rgba(10, 8, 7, 0.02), rgba(10, 8, 7, 0.08)),
    url("assets/images/sections/section-techniques-roasting-tray.jpg");
  background-position: center 54%;
}

.visual--ingredient-chanterelle,
.visual--ingredient-oyster,
.visual--ingredient-stropharia,
.visual--ingredient-dried,
.visual--technique-dry,
.visual--technique-roast,
.visual--technique-stock,
.visual--technique-rehydrate,
.visual--article-plate,
.visual--article-board,
.visual--article-bowl {
  background-image:
    linear-gradient(160deg, rgba(69, 52, 35, 0.16), rgba(0, 0, 0, 0.08));
}

.visual--ingredient-chanterelle {
  background-image:
    linear-gradient(160deg, rgba(96, 58, 28, 0.26), rgba(0, 0, 0, 0.12)),
    url("assets/images/cards/card-chanterelle-closeup.jpg");
  background-position: center, 32% 52%;
}

.visual--ingredient-oyster {
  background-image:
    linear-gradient(160deg, rgba(88, 72, 54, 0.16), rgba(0, 0, 0, 0.08)),
    url("assets/images/cards/card-oyster-closeup-light.jpg");
  background-position: center, 54% 60%;
}

.visual--ingredient-stropharia {
  background-image:
    linear-gradient(160deg, rgba(84, 58, 38, 0.14), rgba(0, 0, 0, 0.08)),
    url("assets/images/cards/card-plated-toast-mushrooms.jpg");
  background-position: center, 62% 72%;
}

.visual--ingredient-dried {
  background-image:
    linear-gradient(160deg, rgba(72, 52, 34, 0.14), rgba(0, 0, 0, 0.08)),
    url("assets/images/sections/section-minimal-mushrooms.jpg");
  background-position: center, 62% 50%;
}

.visual--technique-dry {
  background-image:
    linear-gradient(160deg, rgba(82, 50, 31, 0.18), rgba(0, 0, 0, 0.08)),
    url("assets/images/cards/card-sliced-mushroom-dark.jpg");
  background-position: center, 62% 58%;
}

.visual--technique-roast {
  background-image:
    linear-gradient(160deg, rgba(74, 57, 38, 0.18), rgba(0, 0, 0, 0.08)),
    url("assets/images/sections/section-roasted-vegetables-tray.jpg");
  background-position: center, 50% 62%;
}

.visual--technique-stock {
  background-image:
    linear-gradient(160deg, rgba(52, 68, 57, 0.12), rgba(0, 0, 0, 0.08)),
    url("assets/images/cards/card-bowl-mushrooms.jpg");
  background-position: center, 50% 40%;
}

.visual--technique-rehydrate {
  background-image:
    linear-gradient(160deg, rgba(70, 53, 34, 0.12), rgba(0, 0, 0, 0.08)),
    url("assets/images/sections/section-minimal-mushrooms.jpg");
  background-position: center, 54% 50%;
}

.visual--article-plate {
  background-image:
    linear-gradient(160deg, rgba(88, 55, 33, 0.16), rgba(0, 0, 0, 0.08)),
    url("assets/images/cards/card-plated-toast-mushrooms.jpg");
  background-position: center, 52% 72%;
}

.visual--article-board {
  background-image:
    linear-gradient(160deg, rgba(74, 50, 30, 0.16), rgba(0, 0, 0, 0.08)),
    url("assets/images/cards/card-wood-board-mushrooms.jpg");
  background-position: center, 50% 54%;
}

.visual--article-bowl {
  background-image:
    linear-gradient(160deg, rgba(92, 76, 58, 0.16), rgba(0, 0, 0, 0.08)),
    url("assets/images/cards/card-oyster-closeup-light.jpg");
  background-position: center, 54% 58%;
}

.visual--page-about {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.12)),
    url("assets/images/cards/card-wood-board-mushrooms.jpg");
  background-position: center 64%;
}

.visual--page-menus {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.12)),
    url("assets/images/hero/hero-plated-mushrooms.jpg");
  background-position: center 56%;
}

.visual--page-techniques {
  background-image:
    linear-gradient(180deg, rgba(10, 8, 7, 0.02), rgba(10, 8, 7, 0.08)),
    url("assets/images/sections/section-techniques-roasting-tray.jpg");
  background-position: center 54%;
}

.visual--page-techniques-detail {
  background-image:
    linear-gradient(180deg, rgba(10, 8, 7, 0.02), rgba(10, 8, 7, 0.08)),
    url("assets/images/sections/section-techniques-sliced-mushrooms.jpg");
  background-position: center 57%;
}

.visual--page-contact {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.1)),
    url("assets/images/cards/card-bowl-mushrooms.jpg");
  background-position: center 52%;
}

.visual--recipe-card-chanterelle {
  background-image:
    linear-gradient(160deg, rgba(86, 61, 38, 0.16), rgba(0, 0, 0, 0.08)),
    url("assets/images/recipes/recipe-toast-plated.jpg");
  background-position: center, 54% 58%;
}

.visual--recipe-card-oyster {
  background-image:
    linear-gradient(160deg, rgba(88, 58, 36, 0.16), rgba(0, 0, 0, 0.08)),
    url("assets/images/recipes/recipe-mushroom-skillet.jpg");
  background-position: center, 54% 58%;
}

.visual--recipe-card-polenta {
  background-image:
    linear-gradient(160deg, rgba(80, 57, 35, 0.14), rgba(0, 0, 0, 0.08)),
    url("assets/images/recipes/recipe-braised-mushrooms-plate.jpg");
  background-position: center, 52% 52%;
}

.visual--recipe-band-chanterelle {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.12)),
    url("assets/images/recipes/recipe-toast-plated.jpg");
  background-position: center 54%;
}

.visual--recipe-band-oyster {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.14)),
    url("assets/images/recipes/recipe-mushroom-skillet.jpg");
  background-position: center 54%;
}

.visual--recipe-band-polenta {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.12)),
    url("assets/images/recipes/recipe-braised-mushrooms-plate.jpg");
  background-position: center 52%;
}

.visual--mushrooms-hub {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.18)),
    url("assets/mushrooms/mushrooms-hub-reference.jpg");
  background-position: center 56%;
}

.visual--mushroom-lions-mane {
  background-image:
    linear-gradient(180deg, rgba(38, 26, 18, 0.1), rgba(0, 0, 0, 0.16)),
    url("assets/mushrooms/lions-mane-reference.jpg");
  background-position: center 48%;
}

.visual--mushroom-reishi {
  background-image:
    linear-gradient(180deg, rgba(18, 10, 8, 0.08), rgba(0, 0, 0, 0.18)),
    url("assets/mushrooms/reishi-reference.jpg");
  background-position: center 54%;
}

.visual--mushroom-cordyceps {
  background-image:
    linear-gradient(180deg, rgba(28, 19, 14, 0.1), rgba(0, 0, 0, 0.16)),
    url("assets/mushrooms/cordyceps-reference.jpg");
  background-position: center 58%;
}

.visual--mushroom-chaga {
  background-image:
    linear-gradient(180deg, rgba(22, 12, 10, 0.08), rgba(0, 0, 0, 0.16)),
    url("assets/mushrooms/chaga-reference.jpg");
  background-position: center 52%;
}

.visual--mushroom-turkey-tail {
  background-image:
    linear-gradient(180deg, rgba(34, 22, 12, 0.08), rgba(0, 0, 0, 0.14)),
    url("assets/mushrooms/turkey-tail-reference.jpg");
  background-position: center 50%;
}

.visual--mushroom-shiitake {
  background-image:
    linear-gradient(180deg, rgba(31, 22, 15, 0.08), rgba(0, 0, 0, 0.16)),
    url("assets/mushrooms/shiitake-reference.jpg");
  background-position: center 50%;
}

.visual--mushroom-maitake {
  background-image:
    linear-gradient(180deg, rgba(31, 22, 15, 0.08), rgba(0, 0, 0, 0.16)),
    url("assets/mushrooms/maitake-reference.jpg");
  background-position: center 48%;
}

.visual--mushroom-king-trumpet {
  background-image:
    linear-gradient(180deg, rgba(20, 12, 10, 0.06), rgba(0, 0, 0, 0.16)),
    url("assets/mushrooms/king-trumpet-reference.jpg");
  background-position: center 52%;
}

.visual--mushroom-tremella {
  background-image:
    linear-gradient(180deg, rgba(20, 12, 10, 0.04), rgba(0, 0, 0, 0.12)),
    url("assets/mushrooms/tremella-reference.jpg");
  background-position: center 50%;
}

.visual--mushroom-agarikon {
  background-image:
    linear-gradient(180deg, rgba(26, 17, 12, 0.08), rgba(0, 0, 0, 0.16)),
    url("assets/mushrooms/agarikon-reference.jpg");
  background-position: center 56%;
}

.visual--mushroom-white-button {
  background-image:
    linear-gradient(180deg, rgba(26, 17, 12, 0.04), rgba(0, 0, 0, 0.12)),
    url("assets/mushrooms/white-button-reference.jpg");
  background-position: center 52%;
}

.visual--mushroom-black-fungus {
  background-image:
    linear-gradient(180deg, rgba(16, 10, 8, 0.08), rgba(0, 0, 0, 0.18)),
    url("assets/mushrooms/black-fungus-reference.jpg");
  background-position: center 54%;
}

.visual--mushroom-royal-sun {
  background-image:
    linear-gradient(180deg, rgba(28, 18, 12, 0.05), rgba(0, 0, 0, 0.14)),
    url("assets/mushrooms/royal-sun-reference.jpg");
  background-position: center 52%;
}

.visual--mushroom-psilocybin {
  background-image:
    linear-gradient(180deg, rgba(20, 12, 10, 0.08), rgba(0, 0, 0, 0.18)),
    url("assets/mushrooms/psilocybin-reference.jpg");
  background-position: center 50%;
}

.visual--mushroom-amanita-muscaria {
  background-image:
    linear-gradient(180deg, rgba(22, 12, 10, 0.08), rgba(0, 0, 0, 0.18)),
    url("assets/mushrooms/amanita-muscaria-reference.jpg");
  background-position: center 52%;
}

.visual--mushroom-tampanensis {
  background-image:
    linear-gradient(180deg, rgba(18, 10, 8, 0.08), rgba(0, 0, 0, 0.18)),
    url("assets/mushrooms/tampanensis-reference.jpg");
  background-position: center 54%;
}

.visual--mushroom-atlantis {
  background-image:
    linear-gradient(180deg, rgba(18, 10, 8, 0.08), rgba(0, 0, 0, 0.18)),
    url("assets/mushrooms/atlantis-reference.jpg");
  background-position: center 54%;
}

.visual--mushroom-mexicana {
  background-image:
    linear-gradient(180deg, rgba(20, 12, 10, 0.04), rgba(0, 0, 0, 0.12)),
    url("assets/mushrooms/mexicana-reference.jpg");
  background-position: center 50%;
}

.visual--mushroom-hollandia {
  background-image:
    linear-gradient(180deg, rgba(20, 12, 10, 0.06), rgba(0, 0, 0, 0.16)),
    url("assets/mushrooms/hollandia-reference.jpg");
  background-position: center 52%;
}

.visual--mushroom-oyster {
  background-image:
    linear-gradient(180deg, rgba(20, 12, 10, 0.04), rgba(0, 0, 0, 0.12)),
    url("assets/mushrooms/oyster-mushroom-reference.jpg");
  background-position: center 50%;
}

.visual--mushroom-enoki {
  background-image:
    linear-gradient(180deg, rgba(20, 12, 10, 0.04), rgba(0, 0, 0, 0.12)),
    url("assets/mushrooms/enoki-reference.jpg");
  background-position: center 50%;
}

.visual--mushroom-poria {
  background-image:
    linear-gradient(180deg, rgba(26, 17, 12, 0.08), rgba(0, 0, 0, 0.16)),
    url("assets/mushrooms/poria-reference.jpg");
  background-position: center 56%;
}

.visual--mushroom-meshima {
  background-image:
    linear-gradient(180deg, rgba(22, 12, 10, 0.08), rgba(0, 0, 0, 0.16)),
    url("assets/mushrooms/meshima-reference.jpg");
  background-position: center 52%;
}

.visual--mushroom-antrodia {
  background-image:
    linear-gradient(180deg, rgba(26, 17, 12, 0.08), rgba(0, 0, 0, 0.16)),
    url("assets/mushrooms/antrodia-reference.jpg");
  background-position: center 56%;
}

.visual--mushroom-artists-conk {
  background-image:
    linear-gradient(180deg, rgba(24, 16, 12, 0.08), rgba(0, 0, 0, 0.16)),
    url("assets/mushrooms/artists-conk-reference.jpg");
  background-position: center 54%;
}

.visual--mushroom-huitlacoche {
  background-image:
    linear-gradient(180deg, rgba(34, 18, 12, 0.08), rgba(0, 0, 0, 0.16)),
    url("assets/mushrooms/huitlacoche-reference.jpg");
  background-position: center 50%;
}

.visual--mushroom-cordyceps-sinensis {
  background-image:
    linear-gradient(180deg, rgba(22, 14, 10, 0.08), rgba(0, 0, 0, 0.18)),
    url("assets/mushrooms/cordyceps-sinensis-reference.jpg");
  background-position: center 48%;
}

.visual--mushroom-tiger-milk {
  background-image:
    linear-gradient(180deg, rgba(20, 12, 10, 0.04), rgba(0, 0, 0, 0.12)),
    url("assets/mushrooms/tiger-milk-mushroom-reference.jpg");
  background-position: center 50%;
}

.visual--mushroom-tinder-polypore {
  background-image:
    linear-gradient(180deg, rgba(24, 16, 12, 0.08), rgba(0, 0, 0, 0.16)),
    url("assets/mushrooms/tinder-polypore-reference.jpg");
  background-position: center 54%;
}

.visual--mushroom-liberty-cap {
  background-image:
    linear-gradient(180deg, rgba(20, 12, 10, 0.08), rgba(0, 0, 0, 0.18)),
    url("assets/mushrooms/liberty-cap-reference.jpg");
  background-position: center 46%;
}

.visual--mushroom-wavy-caps {
  background-image:
    linear-gradient(180deg, rgba(20, 12, 10, 0.08), rgba(0, 0, 0, 0.18)),
    url("assets/mushrooms/wavy-caps-reference.jpg");
  background-position: center 52%;
}

.visual--mushroom-flying-saucers {
  background-image:
    linear-gradient(180deg, rgba(20, 12, 10, 0.08), rgba(0, 0, 0, 0.18)),
    url("assets/mushrooms/flying-saucers-reference.jpg");
  background-position: center 52%;
}

.visual--mushroom-blue-meanies {
  background-image:
    linear-gradient(180deg, rgba(20, 12, 10, 0.08), rgba(0, 0, 0, 0.18)),
    url("assets/mushrooms/blue-meanies-reference.jpg");
  background-position: center 50%;
}

.visual--mushroom-pajaritos {
  background-image:
    linear-gradient(180deg, rgba(20, 12, 10, 0.08), rgba(0, 0, 0, 0.18)),
    url("assets/mushrooms/pajaritos-reference.jpg");
  background-position: center 50%;
}

.visual--mushroom-utopia {
  background-image:
    linear-gradient(180deg, rgba(18, 10, 8, 0.08), rgba(0, 0, 0, 0.18)),
    url("assets/mushrooms/utopia-reference.jpg");
  background-position: center 52%;
}

.visual--mushroom-valhalla {
  background-image:
    linear-gradient(180deg, rgba(18, 10, 8, 0.08), rgba(0, 0, 0, 0.18)),
    url("assets/mushrooms/valhalla-reference.jpg");
  background-position: center 52%;
}

.visual-tag {
  position: absolute;
  left: 1.35rem;
  bottom: 1.2rem;
  z-index: 2;
  color: rgba(255, 247, 236, 0.94);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1rem;
  padding: 1.45rem 1.75rem 1.75rem;
}

.card__kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.card__title {
  font-size: 1.62rem;
}

.card__summary {
  color: var(--text-muted);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.meta-chip {
  position: relative;
  padding-bottom: 0.2rem;
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.meta-chip::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.card__link {
  margin-top: auto;
  position: relative;
  display: inline-flex;
  width: fit-content;
  padding-bottom: 0.3rem;
  color: var(--gold-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.card__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
}

.menu-card__title {
  font-size: 1.8rem;
}

.menu-card__summary {
  color: var(--text-muted);
}

.menu-card__list {
  list-style: none;
  display: grid;
  gap: 0;
  margin: 1.3rem 0 0;
  padding: 0;
}

.menu-card__list li {
  padding: 0.95rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

.menu-card__list span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--gold-soft);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.highlight-card {
  overflow: hidden;
}

.highlight-card .card__body {
  padding: 1.45rem;
  gap: 0.8rem;
}

.highlight-card h3 {
  font-size: 1.35rem;
}

.highlight-card p {
  color: var(--text-muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.editorial-band,
.editorial-figure {
  display: grid;
  gap: 0.9rem;
}

.editorial-band__media,
.editorial-figure__media {
  position: relative;
  overflow: hidden;
  border-radius: 1.35rem;
  background-color: #120f0d;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
}

.editorial-band__media {
  min-height: 19rem;
  aspect-ratio: 16 / 7;
}

.editorial-figure__media {
  min-height: 14rem;
  aspect-ratio: 5 / 4;
}

.editorial-figure--compact .editorial-figure__media {
  min-height: 13rem;
  aspect-ratio: 16 / 10;
}

.editorial-band__media::before,
.editorial-figure__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 8, 7, 0.04), rgba(9, 8, 7, 0.12) 46%, rgba(9, 8, 7, 0.3) 100%),
    radial-gradient(64% 88% at 50% 10%, rgba(223, 200, 165, 0.08), transparent 60%);
}

.editorial-band__caption,
.editorial-figure__caption {
  max-width: 48rem;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.75;
}

.split-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.split-panel__content {
  display: grid;
  gap: 1rem;
}

.split-panel__quote {
  padding-left: 2rem;
  border-left: 1px solid rgba(185, 151, 101, 0.28);
}

.split-panel__quote--image {
  padding: 2rem;
  border-left: 0;
  background:
    linear-gradient(180deg, rgba(8, 7, 6, 0.18), rgba(8, 7, 6, 0.58)),
    linear-gradient(180deg, rgba(8, 7, 6, 0.05), rgba(8, 7, 6, 0.1)),
    url("assets/images/sections/section-minimal-mushrooms.jpg") center center / cover no-repeat;
}

.split-panel__quote p {
  font-family: "Fraunces", serif;
  font-size: clamp(1.6rem, 2vw, 2.35rem);
}

.split-panel__quote span {
  display: block;
  margin-top: 1rem;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.bullet-list {
  list-style: none;
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
}

.bullet-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--text-muted);
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.82rem;
  width: 0.65rem;
  height: 1px;
  background: var(--gold);
}

.page-hero {
  padding: 8rem 0 2rem;
}

.page-hero__panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero__content {
  display: grid;
  gap: 1rem;
  align-content: center;
}

.page-hero__title {
  font-size: clamp(2.8rem, 4vw, 4.8rem);
}

.page-hero__intro {
  max-width: 42rem;
  color: var(--text-muted);
  font-size: 1.02rem;
}

.page-hero__aside {
  padding: 0 0 0 2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.page-hero__aside h2 {
  font-size: 1.35rem;
}

.page-hero__aside p,
.page-hero__aside li {
  color: var(--text-muted);
}

.page-techniques .page-hero {
  padding: 8.4rem 0 3.4rem;
}

.page-techniques .page-hero__panel {
  gap: 2.4rem;
  padding: 2.35rem 0 2.8rem;
}

.page-techniques .page-hero__content {
  gap: 1.15rem;
}

.page-techniques .page-hero__title {
  max-width: 11ch;
  text-wrap: balance;
}

.page-techniques .page-hero__intro {
  max-width: 44rem;
  line-height: 1.85;
}

.page-techniques .page-hero__aside {
  gap: 1rem;
}

.page-techniques .techniques-page__hero-band {
  padding-top: 1.75rem;
  padding-bottom: 6.4rem;
}

.page-techniques .techniques-page__foundations {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.page-techniques .techniques-page__reading-pan {
  padding-top: 1rem;
  padding-bottom: 5.6rem;
}

.page-techniques .techniques-page__stock-callout {
  padding-top: 5.8rem;
  padding-bottom: 4.8rem;
}

.page-techniques .techniques-page__detail-band {
  padding-top: 3.8rem;
  padding-bottom: 6.35rem;
}

.page-techniques .techniques-page__stop-note {
  padding-top: 4.35rem;
  padding-bottom: 4.7rem;
}

.page-techniques .techniques-page__utility {
  padding-top: 5.6rem;
}

.page-techniques .techniques-page__band,
.page-techniques .techniques-page__band--detail {
  gap: 0.95rem;
}

.page-techniques .techniques-page__band .editorial-band__media,
.page-techniques .techniques-page__band .editorial-figure__media {
  min-height: 23.5rem;
  aspect-ratio: 16 / 6.6;
  border-radius: 0;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.045);
  background-color: #0f0c0a;
}

.page-techniques .techniques-page__band .editorial-band__media::before,
.page-techniques .techniques-page__band .editorial-figure__media::before {
  background: linear-gradient(180deg, rgba(9, 8, 7, 0.01), rgba(9, 8, 7, 0.05) 52%, rgba(9, 8, 7, 0.14) 100%);
}

.page-techniques .techniques-page__band .editorial-band__caption,
.page-techniques .techniques-page__band .editorial-figure__caption {
  max-width: 50rem;
  line-height: 1.72;
  color: rgba(232, 224, 211, 0.76);
}

.page-techniques .techniques-page__foundations .section-header {
  margin-bottom: 3.6rem;
}

.page-techniques .techniques-page__foundations .grid {
  gap: 1.8rem;
}

.page-techniques .techniques-page__foundations .technique-card {
  min-height: 100%;
}

.page-techniques .techniques-page__foundations .technique-card .card__body {
  padding: 1.6rem 1.65rem 1.72rem;
  gap: 0.9rem;
}

.page-techniques .techniques-page__foundations .technique-card h3 {
  font-size: 1.42rem;
  margin-bottom: 0.2rem;
}

.page-techniques .techniques-page__foundations .technique-card p {
  line-height: 1.78;
}

.page-techniques .techniques-page__stock-callout .callout {
  padding: 2.35rem 0 2.2rem;
}

.page-techniques .techniques-page__reading-pan .callout,
.page-techniques .techniques-page__stop-note .callout {
  padding: 2.45rem 0 2.3rem;
}

.page-techniques .techniques-page__utility .feature-grid {
  gap: 1.7rem;
}

.page-techniques .techniques-page__utility .highlight-card {
  display: grid;
  gap: 0.8rem;
  align-content: start;
  padding: 1.45rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stack {
  display: grid;
  gap: 1.4rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.technique-card {
  padding: 0;
}

.technique-card__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid rgba(185, 151, 101, 0.36);
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.technique-card .card__body {
  padding: 1.18rem 1.4rem 1.4rem;
  gap: 0.75rem;
}

.technique-card h3 {
  font-size: 1.28rem;
  margin-bottom: 0.65rem;
}

.technique-card p {
  color: var(--text-muted);
}

.article-card {
  padding: 0;
}

.article-card .card__body {
  padding: 1.24rem 1.55rem 1.55rem;
  gap: 0.9rem;
}

.article-card h3 {
  font-size: 1.4rem;
}

.article-card p {
  color: var(--text-muted);
}

.callout {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.callout h2,
.callout h3 {
  font-size: clamp(1.85rem, 2vw, 2.6rem);
  margin-bottom: 0.9rem;
}

.callout p {
  color: var(--text-muted);
}

.callout__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin-top: 1.1rem;
}

.table-list {
  display: grid;
}

.table-row {
  display: grid;
  grid-template-columns: 12rem 1fr;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.table-row:last-child {
  border-bottom: 0;
}

.table-row strong {
  color: var(--gold-soft);
}

.table-row p {
  color: var(--text-muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
}

.contact-grid .editorial-figure {
  margin-bottom: 0.2rem;
}

.contact-card,
.contact-form {
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(17, 15, 13, 0.9), rgba(11, 10, 9, 0.88)),
    rgba(255, 255, 255, 0.02);
}

.contact-card h3,
.contact-form h2 {
  font-size: 1.45rem;
  margin-bottom: 0.8rem;
}

.contact-card p,
.contact-form p,
.form-note {
  color: var(--text-muted);
}

.contact-form__grid {
  display: grid;
  gap: 0.95rem;
  margin-top: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.field textarea {
  min-height: 11rem;
  resize: vertical;
}

.form-response {
  display: none;
  margin-top: 0.95rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(185, 151, 101, 0.28);
  background: rgba(185, 151, 101, 0.08);
  color: var(--gold-soft);
}

.form-response.is-visible {
  display: block;
}

.site-footer {
  padding: 2.8rem 0 3rem;
}

.site-footer__panel {
  padding: 2.8rem 0 0;
  border-top: 1px solid rgba(185, 151, 101, 0.18);
  display: grid;
  gap: 1.6rem;
}

.site-footer__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 2rem;
}

.site-footer__text {
  max-width: 35rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer__nav a {
  position: relative;
  padding-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.muted {
  color: var(--text-muted);
}

.home-featured,
.home-articles {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0));
}

.home-featured .card,
.home-menus .card,
.home-ingredients .card,
.home-techniques .card,
.home-articles .card {
  background:
    linear-gradient(180deg, rgba(19, 17, 15, 0.92), rgba(11, 10, 9, 0.96));
}

.home-menus .card__media,
.home-articles .card__media {
  aspect-ratio: 16 / 9;
}

.home-ingredients .card__media {
  aspect-ratio: 1 / 1;
}

.home-techniques .card__media {
  aspect-ratio: 16 / 11;
}

.home-featured .grid--three {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.home-featured .grid--three > :first-child {
  grid-column: span 6;
}

.home-featured .grid--three > :nth-child(2),
.home-featured .grid--three > :nth-child(3) {
  grid-column: span 3;
}

.home-featured .card:first-child .card__media {
  aspect-ratio: 16 / 9;
}

.home-featured .card:first-child .card__body {
  padding: 1.6rem 1.95rem 1.95rem;
}

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

  .feature-grid,
  .contact-grid,
  .page-hero__panel,
  .split-panel {
    grid-template-columns: 1fr;
  }

  .page-hero__aside,
  .split-panel__quote {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
  }

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

  .home-featured .grid--three > :first-child,
  .home-featured .grid--three > :nth-child(2),
  .home-featured .grid--three > :nth-child(3) {
    grid-column: auto;
  }

  .editorial-band__media {
    aspect-ratio: 16 / 9;
  }

  .page-techniques .techniques-page__hero-band,
  .page-techniques .techniques-page__foundations,
  .page-techniques .techniques-page__reading-pan,
  .page-techniques .techniques-page__stock-callout,
  .page-techniques .techniques-page__detail-band,
  .page-techniques .techniques-page__stop-note,
  .page-techniques .techniques-page__utility {
    padding-top: 4.9rem;
    padding-bottom: 4.9rem;
  }

  .page-techniques .techniques-page__band .editorial-band__media,
  .page-techniques .techniques-page__band .editorial-figure__media {
    min-height: 18rem;
    aspect-ratio: 16 / 8.6;
  }
}

@media (max-width: 820px) {
  .site-header__inner {
    min-height: 4.65rem;
    padding-inline: 1rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 45;
    display: block;
    width: 100vw;
    height: 100dvh;
    padding:
      calc(7.5rem + env(safe-area-inset-top))
      clamp(1.5rem, 6vw, 2.5rem)
      max(2.25rem, env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    background:
      linear-gradient(180deg, rgba(7, 6, 5, 0.7) 0%, rgba(7, 6, 5, 0.94) 18%, rgba(7, 6, 5, 0.98) 100%);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-0.85rem);
    transition:
      opacity var(--transition),
      visibility var(--transition),
      transform var(--transition);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav__close {
    position: absolute;
    top: calc(5.25rem + env(safe-area-inset-top));
    right: clamp(1rem, 4vw, 2rem);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.85rem;
    height: 2.85rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 1.15rem;
    padding-top: 0.5rem;
  }

  .site-nav__link {
    justify-content: flex-start;
    padding: 0.5rem 0;
    font-size: clamp(1.16rem, 4vw, 1.6rem);
    letter-spacing: 0.13em;
  }

  .site-nav__link::after {
    bottom: -0.2rem;
  }

  .hero__inner {
    width: min(100%, calc(100% - 1.5rem));
    padding: 7.2rem 0 4.2rem;
  }

  .section {
    padding: 4.8rem 0;
  }

  .grid--three,
  .grid--four,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .home-featured .grid--three {
    grid-template-columns: 1fr;
  }

  .home-featured .grid--three > :first-child,
  .home-featured .grid--three > :nth-child(2),
  .home-featured .grid--three > :nth-child(3) {
    grid-column: auto;
  }

  .section-header,
  .site-footer__top,
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .table-row {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .editorial-band__media,
  .editorial-figure__media,
  .editorial-figure--compact .editorial-figure__media {
    min-height: 12.5rem;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 640px) {
  .container,
  .hero__inner {
    width: min(100% - 1.5rem, 100%);
  }

  .hero__title {
    font-size: clamp(3.2rem, 13vw, 5.15rem);
  }

  .hero__lead {
    max-width: 27rem;
  }

  .page-hero {
    padding-top: 7rem;
  }

  .page-techniques .page-hero {
    padding-top: 7.2rem;
    padding-bottom: 2.5rem;
  }

  .page-techniques .techniques-page__hero-band,
  .page-techniques .techniques-page__foundations,
  .page-techniques .techniques-page__reading-pan,
  .page-techniques .techniques-page__stock-callout,
  .page-techniques .techniques-page__detail-band,
  .page-techniques .techniques-page__stop-note,
  .page-techniques .techniques-page__utility {
    padding-top: 4.25rem;
    padding-bottom: 4.25rem;
  }

  .page-techniques .techniques-page__band .editorial-band__media,
  .page-techniques .techniques-page__band .editorial-figure__media {
    min-height: 13.5rem;
    aspect-ratio: 4 / 3.2;
  }

  .page-techniques .techniques-page__foundations .technique-card .card__body {
    padding: 1.4rem 1.35rem 1.5rem;
  }
}

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

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