:root {
  --canvas: #f6efe7;
  --canvas-strong: #eedfce;
  --card: rgba(255, 248, 240, 0.82);
  --card-solid: #fffaf5;
  --ink: #251b17;
  --muted: #705f57;
  --line: rgba(37, 27, 23, 0.12);
  --terracotta: #c8643d;
  --terracotta-deep: #a44826;
  --olive: #66734a;
  --olive-deep: #495435;
  --saffron: #d6a33c;
  --shadow: 0 20px 60px rgba(82, 47, 27, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(214, 163, 60, 0.12), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(200, 100, 61, 0.16), transparent 24%),
    linear-gradient(180deg, #f7f0e8 0%, #f0e2d2 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  position: relative;
  overflow: hidden;
  padding: 18px;
}

.ambient {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.55;
  pointer-events: none;
}

.ambient-one {
  top: -12%;
  right: -6%;
  width: 360px;
  height: 360px;
  background: rgba(200, 100, 61, 0.2);
}

.ambient-two {
  top: 24%;
  left: -8%;
  width: 300px;
  height: 300px;
  background: rgba(102, 115, 74, 0.16);
}

.ambient-three {
  right: 4%;
  bottom: 10%;
  width: 260px;
  height: 260px;
  background: rgba(214, 163, 60, 0.18);
}

.site-header,
main,
.site-footer {
  width: min(var(--max-width), calc(100vw - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(255, 249, 243, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 32px rgba(77, 46, 28, 0.1);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}

.brand-mark,
.eyebrow,
h1,
h2,
h3,
.recipe-card h3,
.detail-card h3 {
  font-family: "Fraunces", serif;
}

.brand-mark {
  font-size: 1.28rem;
  font-weight: 700;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-nav a {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.93rem;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--terracotta-deep);
}

main {
  display: grid;
  gap: 24px;
}

.hero,
.workspace,
.results-section,
.closing-banner,
.quick-links {
  position: relative;
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 22px;
  align-items: stretch;
}

.hero-copy,
.hero-media,
.panel,
.closing-banner {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background:
    linear-gradient(180deg, rgba(255, 250, 245, 0.88), rgba(255, 246, 236, 0.78));
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-copy,
.panel,
.closing-banner {
  border-radius: var(--radius-xl);
}

.hero-copy {
  padding: 30px;
}

.hero-media {
  display: grid;
  gap: 12px;
  padding: 12px;
  border-radius: 36px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--terracotta-deep);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.3rem, 4.2vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-text,
.support-copy,
.results-description,
.mini-guide-item p,
.collection-card p,
.detail-card p,
.recipe-card p,
.closing-banner p,
.site-footer p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-text {
  max-width: 58ch;
  margin: 16px 0 0;
  font-size: 0.96rem;
}

.hero-search {
  margin-top: 22px;
}

.hero-search-row {
  display: flex;
  gap: 12px;
}

.hero-search-row input,
.field input,
.field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  padding: 0 14px;
  outline: none;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.hero-search-row input:focus,
.field input:focus,
.field select:focus {
  border-color: rgba(200, 100, 61, 0.48);
  box-shadow: 0 0 0 4px rgba(200, 100, 61, 0.12);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 14px;
  padding: 0 16px;
  font-weight: 800;
  font-size: 0.94rem;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

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

.button.primary {
  color: #fff8f2;
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-deep));
  box-shadow: 0 16px 28px rgba(164, 72, 38, 0.25);
}

.button.secondary {
  color: var(--ink);
  background: linear-gradient(135deg, rgba(214, 163, 60, 0.84), rgba(247, 203, 98, 0.84));
  box-shadow: 0 16px 28px rgba(214, 163, 60, 0.2);
}

.button.tertiary {
  color: #fff9f2;
  background: linear-gradient(135deg, var(--olive), var(--olive-deep));
}

.button.ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid var(--line);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ingredient-grid + .button-row {
  margin-top: 10px;
}

.hero-actions {
  margin-top: 14px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.stat-card {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.76);
}

.stat-card strong {
  display: block;
  font-size: 1.16rem;
  font-weight: 800;
}

.stat-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-feature,
.mosaic-card,
.recipe-card,
.collection-card {
  overflow: hidden;
  border-radius: 28px;
}

.hero-feature {
  position: relative;
  min-height: 350px;
  background-size: cover;
  background-position: center;
}

.hero-feature.editorial,
.mosaic-card.editorial,
.recipe-card-image.editorial,
.detail-media.editorial,
.plant-card-media.editorial {
  background: transparent;
}

.hero-feature::after,
.mosaic-card::after,
.recipe-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(26, 17, 13, 0.72) 100%);
}

.hero-feature.editorial::after,
.mosaic-card.editorial::after,
.recipe-card-image.editorial::after {
  display: none;
}

.hero-feature-content,
.mosaic-card-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 20px;
  color: #fff9f2;
}

.hero-feature-content p,
.mosaic-card-content p {
  margin: 0;
  color: rgba(255, 249, 242, 0.78);
}

.hero-feature-content h2,
.mosaic-card-content h3 {
  margin: 8px 0 10px;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.hero-feature-content h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.3rem);
}

.editorial-surface {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.2), transparent 36%),
    linear-gradient(135deg, var(--tone-a), var(--tone-b) 58%, var(--tone-c));
  color: #fffaf5;
}

.editorial-orb {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.editorial-copy {
  display: grid;
  gap: 5px;
  justify-items: end;
  text-align: right;
}

.editorial-kicker,
.editorial-meta {
  color: rgba(255, 250, 245, 0.82);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.editorial-heading {
  font-family: "Fraunces", serif;
  font-size: 1rem;
  line-height: 1.05;
}

.editorial-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 6px;
}

.editorial-tags span,
.editorial-status {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.7rem;
  font-weight: 800;
}

.editorial-status {
  margin-top: 10px;
}

.editorial-status.verified,
.badge-verified {
  background: rgba(102, 115, 74, 0.2);
}

.editorial-status.editorial,
.badge-editorial {
  background: rgba(200, 100, 61, 0.16);
}

.editorial-hero .editorial-orb,
.editorial-detail .editorial-orb {
  width: 76px;
  height: 76px;
  font-size: 1.15rem;
}

.editorial-hero .editorial-heading,
.editorial-detail .editorial-heading {
  font-size: 1.2rem;
}

.editorial-detail {
  padding: 22px;
}

.editorial-card,
.editorial-mosaic,
.editorial-plant {
  padding: 14px;
}

.hero-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mosaic-card {
  position: relative;
  min-height: 170px;
  background-size: cover;
  background-position: center;
}

.mosaic-card-content h3 {
  font-size: 1.12rem;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.section-head.compact h2 {
  font-size: 1.65rem;
}

.quick-links {
  display: grid;
  gap: 12px;
}

.plant-showcase {
  display: grid;
  gap: 14px;
}

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

.plant-card {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 250, 245, 0.9), rgba(255, 246, 236, 0.84));
  box-shadow: 0 18px 38px rgba(82, 47, 27, 0.1);
}

.plant-card-media {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  background-size: cover;
  background-position: center;
}

.plant-card-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.plant-card-body h3 {
  margin: 0;
  font-size: 1.26rem;
  line-height: 1.08;
}

.plant-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip-row,
.chip-wrap,
.active-chip-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shortcut-chip,
.tag-chip,
.ingredient-chip,
.active-filter-chip,
.recipe-badge,
.detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  background: rgba(255, 251, 247, 0.75);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
}

.shortcut-chip.active,
.shortcut-chip:hover,
.shortcut-chip:focus-visible,
.collection-card button:hover,
.collection-card button:focus-visible {
  background: rgba(200, 100, 61, 0.14);
  border-color: rgba(200, 100, 61, 0.28);
}

.workspace-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.82fr);
  gap: 18px;
}

.control-column {
  display: grid;
  gap: 18px;
}

.panel {
  padding: 22px;
}

.field-stack {
  display: grid;
  gap: 14px;
}

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

.field {
  display: grid;
  gap: 6px;
}

.field span {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--muted);
}

.builder-head h3,
.detail-section h4,
.collection-card h3 {
  margin: 0;
  font-size: 1rem;
}

.builder-head p,
.detail-section p,
.collection-card p,
.pantry-summary p {
  margin: 8px 0 0;
}

.ingredient-builder {
  margin-top: 4px;
  padding: 16px;
  border: 1px dashed rgba(102, 115, 74, 0.2);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.72);
}

.pantry-summary {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.pantry-summary-card {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  background: rgba(255, 250, 245, 0.72);
}

.pantry-summary-card strong {
  display: block;
  font-size: 1rem;
}

.pantry-meter {
  display: grid;
  gap: 8px;
}

.meter-track {
  width: 100%;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(37, 27, 23, 0.08);
}

.meter-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--olive), var(--saffron));
}

.collection-list {
  display: grid;
  gap: 10px;
}

.collection-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background:
    linear-gradient(135deg, rgba(255, 250, 245, 0.82), rgba(248, 239, 230, 0.88));
}

.collection-card button {
  justify-self: start;
  min-height: 38px;
  border: 1px solid rgba(200, 100, 61, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  padding: 0 12px;
  font-weight: 800;
  font-size: 0.88rem;
}

.mini-guide {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.mini-guide-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.mini-guide-item span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(102, 115, 74, 0.16);
  color: var(--olive-deep);
  font-weight: 800;
}

.recipe-drawer {
  position: sticky;
  top: 92px;
  align-self: start;
}

.detail-card {
  display: grid;
  gap: 18px;
}

.detail-media {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 1.2 / 1;
}

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

.detail-topline,
.recipe-card-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.detail-card h3 {
  margin: 0;
  font-size: clamp(1.65rem, 2vw, 2.1rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.detail-highlight {
  margin-top: 14px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(102, 115, 74, 0.1);
  border: 1px solid rgba(102, 115, 74, 0.12);
}

.detail-highlight strong,
.detail-facts strong,
.missing-list strong {
  display: block;
  font-size: 0.88rem;
}

.detail-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.detail-facts .fact {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 16px;
  background: rgba(255, 250, 245, 0.8);
}

.detail-facts span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
}

.detail-section {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.detail-section h4 {
  margin-bottom: 8px;
}

.detail-list,
.detail-steps,
.missing-list ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.detail-list li,
.detail-steps li {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 252, 248, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.48);
}

.detail-list li small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.detail-credit {
  margin-top: 8px;
  font-size: 0.84rem;
}

.detail-credit a {
  color: var(--terracotta-deep);
  font-weight: 800;
}

.results-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: end;
}

.results-meta {
  max-width: 420px;
  text-align: right;
}

.results-count {
  display: block;
  font-size: 0.94rem;
  font-weight: 800;
}

.active-chip-bar {
  margin-top: 14px;
}

.active-filter-chip {
  padding-right: 10px;
}

.active-filter-chip button,
.ingredient-chip button {
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 50%;
  background: rgba(37, 27, 23, 0.08);
  color: var(--ink);
  font-weight: 800;
}

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.results-actions {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.recipe-card {
  display: grid;
  background:
    linear-gradient(180deg, rgba(255, 250, 245, 0.92), rgba(255, 246, 236, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow: 0 18px 38px rgba(82, 47, 27, 0.1);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.recipe-card:hover,
.recipe-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(82, 47, 27, 0.16);
  border-color: rgba(200, 100, 61, 0.2);
}

.recipe-card.is-active {
  border-color: rgba(200, 100, 61, 0.34);
  box-shadow: 0 24px 52px rgba(164, 72, 38, 0.18);
}

.recipe-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.24 / 1;
}

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

.recipe-card-image .recipe-badges {
  position: absolute;
  z-index: 1;
  inset: auto 12px 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.recipe-badge,
.detail-badge {
  min-height: 26px;
  padding: 0 10px;
  background: rgba(255, 249, 242, 0.86);
  font-size: 0.74rem;
}

.badge-diet {
  background: rgba(214, 163, 60, 0.18);
}

.recipe-card-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.recipe-card h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.recipe-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-chip {
  min-height: 30px;
  padding: 0 10px;
  border-color: rgba(102, 115, 74, 0.14);
  background: rgba(102, 115, 74, 0.08);
  color: var(--olive-deep);
  font-size: 0.74rem;
}

.ingredient-preview,
.missing-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ingredient-chip {
  min-height: 30px;
  padding: 0 10px;
  color: var(--muted);
  font-size: 0.74rem;
}

.recipe-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.recipe-card-footer button {
  min-height: 38px;
  border-radius: 12px;
  border: 0;
  padding: 0 14px;
  background: rgba(200, 100, 61, 0.12);
  color: var(--terracotta-deep);
  font-weight: 800;
  font-size: 0.88rem;
}

.match-badge {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(102, 115, 74, 0.12);
  color: var(--olive-deep);
  font-size: 0.74rem;
  font-weight: 800;
}

.empty-state {
  padding: 20px;
  border: 1px dashed rgba(200, 100, 61, 0.22);
  border-radius: 20px;
  background: rgba(255, 250, 245, 0.7);
}

.closing-banner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  padding: 24px;
}

.site-footer {
  padding: 18px 0 4px;
}

.site-footer p {
  margin: 0;
  font-size: 0.84rem;
}

.reveal {
  animation: fade-up 700ms ease both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .hero,
  .workspace-grid,
  .closing-banner {
    grid-template-columns: 1fr;
  }

  .plant-grid,
  .plant-card {
    grid-template-columns: 1fr;
  }

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

  .recipe-drawer {
    position: static;
  }

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

  .results-meta {
    text-align: left;
  }

  .hero-feature {
    min-height: 300px;
  }
}

@media (max-width: 820px) {
  .page-shell {
    padding: 12px;
  }

  .site-header,
  main,
  .site-footer {
    width: min(var(--max-width), calc(100vw - 24px));
  }

  .site-header {
    position: static;
    flex-direction: column;
    align-items: start;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 22px;
  }

  .hero-copy,
  .panel,
  .closing-banner {
    padding: 18px;
  }

  .hero-search-row,
  .results-head {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stats,
  .field-grid,
  .detail-facts,
  .hero-mosaic,
  .plant-grid,
  .recipe-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 16px;
  }

  .hero-feature {
    min-height: 250px;
  }

  .mosaic-card {
    min-height: 140px;
  }

  h1 {
    font-size: clamp(1.95rem, 9vw, 2.6rem);
  }

  .section-head.compact h2,
  .section-head h2 {
    font-size: 1.4rem;
  }

  .hero-text,
  .support-copy,
  .results-description,
  .mini-guide-item p,
  .collection-card p,
  .detail-card p,
  .recipe-card p,
  .closing-banner p,
  .site-footer p {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .hero-search-row input,
  .field input,
  .field select,
  .button {
    min-height: 44px;
  }

  .recipe-card-body {
    padding: 14px;
  }

  .plant-card-body {
    padding: 16px;
  }

  .recipe-card-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .results-meta {
    max-width: none;
  }
}
