:root {
  --ink: #17241e;
  --ink-soft: #31433a;
  --muted: #65746d;
  --forest: #2b6a4a;
  --forest-dark: #183b2d;
  --sage: #e8f1e6;
  --sage-strong: #cddfca;
  --cream: #fbf7ed;
  --paper: #fffdf8;
  --white: #ffffff;
  --line: #dfe7dc;
  --amber: #d89a24;
  --amber-soft: #f3c96b;
  --terracotta: #ad6544;
  --shadow: 0 18px 45px rgba(23, 36, 30, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body,
button,
input,
textarea {
  letter-spacing: 0;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid rgba(23, 36, 30, 0.1);
  backdrop-filter: blur(14px);
}

.top-line {
  color: rgba(255, 255, 255, 0.88);
  background: var(--forest-dark);
  font-size: 13px;
  font-weight: 700;
}

.top-line-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.top-line a {
  color: var(--amber-soft);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--forest-dark);
  font-weight: 900;
  line-height: 1;
  flex: 0 0 auto;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(23, 36, 30, 0.08);
}

.brand-mark svg {
  width: 30px;
  height: 30px;
}

.brand-text {
  font-size: 18px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

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

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

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

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

.button-primary {
  color: #221a0a;
  background: var(--amber);
  border-color: var(--amber);
  box-shadow: 0 12px 28px rgba(216, 154, 36, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #e7ac39;
  border-color: #e7ac39;
}

.button-secondary {
  color: var(--forest-dark);
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(24, 59, 45, 0.24);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--white);
  border-color: var(--forest);
}

.header-button {
  min-height: 42px;
  color: var(--forest-dark);
  background: var(--white);
  border-color: var(--line);
  box-shadow: 0 8px 22px rgba(23, 36, 30, 0.08);
  white-space: nowrap;
}

.button-small {
  min-height: 38px;
  padding: 0 15px;
  color: var(--white);
  background: var(--forest);
  box-shadow: none;
}

.hero {
  min-height: calc(100svh - 110px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(251, 247, 237, 0.98), rgba(251, 247, 237, 0.9) 43%, rgba(251, 247, 237, 0.36) 72%, rgba(251, 247, 237, 0.1)),
    url("../img/hero-eggs.jpg");
  background-size: cover;
  background-position: center right;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--forest-dark), var(--forest), var(--amber));
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.5fr);
  align-items: end;
  gap: 46px;
  padding: 86px 0 72px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--forest);
}

.hero h1,
.legal-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: 76px;
  line-height: 0.98;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.hero-lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 22px;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 18px;
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(24, 59, 45, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-proof div {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-proof strong {
  color: var(--forest-dark);
  font-size: 31px;
  line-height: 1;
  font-weight: 950;
}

.hero-proof span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-strip {
  padding: 28px 0;
  background: var(--forest-dark);
}

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

.trust-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  min-height: 150px;
  padding: 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.trust-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--amber-soft);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.trust-icon svg {
  width: 26px;
  height: 26px;
}

.trust-item h2 {
  margin: 0;
  color: var(--white);
  font-size: 20px;
  line-height: 1.25;
}

.trust-item p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.section {
  padding: 96px 0;
}

.products-section {
  background: var(--paper);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading h2,
.standard-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: 44px;
  line-height: 1.1;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.section-heading p:not(.eyebrow),
.standard-copy p,
.contact-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

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

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(23, 36, 30, 0.08);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.product-label {
  margin: 0 0 10px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 950;
  line-height: 1.1;
  text-transform: uppercase;
}

.product-card h3,
.process-step h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

.product-card p:not(.product-label),
.process-step p {
  margin: 12px 0 0;
  color: var(--muted);
}

.product-card dl {
  display: grid;
  gap: 9px;
  margin: auto 0 0;
  padding-top: 20px;
}

.product-card dl div {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.product-card dt {
  color: var(--forest);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card dd {
  margin: 2px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.product-link {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 950;
}

.product-link::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

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

.audience-section {
  background: var(--paper);
}

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

.info-card {
  min-height: 260px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(23, 36, 30, 0.07);
}

.info-card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  color: var(--forest-dark);
  background: var(--sage);
  border-radius: 8px;
  font-weight: 950;
}

.info-card h3,
.text-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

.info-card p,
.text-panel p {
  margin: 12px 0 0;
  color: var(--muted);
}

.quality-detail-section {
  background: var(--paper);
}

.split-content {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.72fr);
  gap: 52px;
  align-items: start;
}

.split-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: 42px;
  line-height: 1.1;
  font-weight: 950;
}

.split-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.text-panel-grid {
  display: grid;
  gap: 14px;
}

.text-panel {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(23, 36, 30, 0.07);
}

.ordering-section {
  background: linear-gradient(180deg, var(--sage), #f5f8f1);
}

.ordering-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.9fr);
  gap: 44px;
  align-items: start;
}

.ordering-list {
  display: grid;
  gap: 12px;
}

.ordering-list div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.ordering-list strong {
  color: var(--forest-dark);
  line-height: 1.25;
}

.ordering-list span {
  color: var(--muted);
}

.catalog-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.7fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 42px;
}

.catalog-intro h2 {
  margin: 0;
  color: var(--ink);
  font-size: 42px;
  line-height: 1.1;
  font-weight: 950;
}

.catalog-intro p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.catalog-support-section {
  background: var(--sage);
}

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

.support-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(23, 36, 30, 0.07);
}

.support-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.16;
  font-weight: 950;
}

.support-card p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.standard-section {
  background: linear-gradient(180deg, var(--sage), #f5f8f1);
}

.standard-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1fr);
  align-items: center;
  gap: 52px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--forest);
  box-shadow: inset 0 0 0 5px var(--sage);
}

.standard-media {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.standard-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.media-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  padding: 18px;
  color: var(--white);
  background: rgba(24, 59, 45, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.media-caption strong {
  font-size: 20px;
  line-height: 1.2;
}

.media-caption span {
  color: rgba(255, 255, 255, 0.78);
}

.process-section {
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  counter-reset: process;
}

.process-step {
  min-height: 250px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 34px;
  color: var(--forest-dark);
  background: var(--sage);
  border-radius: 8px;
  font-weight: 950;
}

.contact-band {
  padding: 84px 0;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(24, 59, 45, 0.98), rgba(43, 106, 74, 0.92)),
    url("../img/eggs-carton.jpg");
  background-size: cover;
  background-position: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  gap: 48px;
  align-items: center;
}

.contact-copy h2,
.contact-copy p {
  color: var(--white);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-panel {
  padding: 26px;
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}

.panel-kicker {
  display: block;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-mail {
  display: block;
  margin-top: 10px;
  color: var(--forest-dark);
  font-size: 22px;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.contact-panel p {
  margin: 14px 0 22px;
  color: var(--muted);
}

.contact-form-section {
  padding: 76px 0 96px;
  background: var(--paper);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.contact-aside {
  position: sticky;
  top: 132px;
  padding: 26px;
  background: var(--sage);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-aside h2 {
  margin: 0;
  color: var(--ink);
  font-size: 32px;
  line-height: 1.12;
  font-weight: 950;
}

.contact-aside p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
}

.contact-facts {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
}

.contact-facts div {
  padding: 16px 0;
  border-top: 1px solid rgba(24, 59, 45, 0.16);
}

.contact-facts dt {
  color: var(--forest);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-facts dd {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-form {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field + .form-field,
.form-grid + .form-field,
.checkbox-field {
  margin-top: 18px;
}

.form-field label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.form-field textarea {
  min-height: 148px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: var(--white);
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(43, 106, 74, 0.12);
}

.form-field input.is-invalid,
.form-field select.is-invalid,
.form-field textarea.is-invalid,
.checkbox-field input.is-invalid {
  border-color: #b94a35;
  box-shadow: 0 0 0 4px rgba(185, 74, 53, 0.12);
}

.field-error {
  min-height: 18px;
  margin: 0;
  color: #a93f2d;
  font-size: 13px;
  font-weight: 800;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-size: 14px;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--forest);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 24px;
}

.form-actions span {
  color: var(--muted);
  font-size: 14px;
}

.modal-open {
  overflow: hidden;
}

.form-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

.form-modal[hidden] {
  display: none;
}

.form-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 35, 28, 0.64);
}

.form-modal-panel {
  position: relative;
  width: min(520px, 100%);
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.28);
}

.form-modal-panel h2 {
  margin: 0;
  color: var(--ink);
  font-size: 32px;
  line-height: 1.12;
  font-weight: 950;
}

.form-modal-panel p:not(.eyebrow) {
  margin: 14px 0 24px;
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--forest-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(180deg, rgba(20, 35, 28, 0.98), rgba(12, 24, 18, 1)),
    #14231c;
  border-top: 6px solid var(--amber);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(150px, 0.65fr) minmax(190px, 0.82fr) minmax(250px, 1fr);
  gap: 42px;
  padding: 58px 0 42px;
}

.footer-about {
  max-width: 360px;
}

.footer-brand {
  color: var(--white);
}

.footer-brand .brand-mark {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.footer-about p,
.footer-contact p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.footer-badges span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 10px;
  color: var(--amber-soft);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.footer-column h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 950;
  text-transform: uppercase;
}

.footer-column a:not(.button) {
  display: block;
  width: fit-content;
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 750;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--amber-soft);
}

.footer-email {
  color: var(--amber-soft) !important;
  font-size: 16px !important;
  font-weight: 950 !important;
  overflow-wrap: anywhere;
}

.footer-cta {
  min-height: 44px;
  margin-top: 22px;
  color: #221a0a;
  background: var(--amber);
  border-color: var(--amber);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.footer-cta:hover,
.footer-cta:focus-visible {
  background: #e7ac39;
  border-color: #e7ac39;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-size: 14px;
  font-weight: 800;
}

.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: grid;
  gap: 14px;
  width: min(420px, calc(100% - 44px));
  padding: 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(20, 35, 28, 0.22);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.cookie-actions a {
  color: var(--forest);
  font-size: 14px;
  font-weight: 900;
}

.product-hero {
  padding: 42px 0 74px;
  background: linear-gradient(180deg, var(--sage), var(--paper));
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.breadcrumbs a {
  color: var(--forest);
}

.breadcrumbs > * + *::before {
  content: "/";
  margin-right: 10px;
  color: rgba(101, 116, 109, 0.56);
}

.breadcrumbs strong {
  color: var(--ink);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.82fr);
  gap: 52px;
  align-items: center;
}

.product-summary h1 {
  margin: 0;
  color: var(--ink);
  font-size: 68px;
  line-height: 1;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.product-lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 21px;
  line-height: 1.6;
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.product-badges span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: var(--forest-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-photo {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-photo img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.product-photo figcaption {
  margin: 0;
  padding: 18px 20px;
  color: var(--muted);
  font-size: 14px;
}

.product-detail-section {
  padding: 76px 0;
  background: var(--paper);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 48px;
  align-items: start;
}

.product-info {
  max-width: 760px;
}

.product-info h2,
.spec-card h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.18;
  font-weight: 950;
}

.product-info h2:not(:first-child) {
  margin-top: 40px;
}

.product-info p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.product-info p + p {
  margin-top: 16px;
}

.spec-card {
  position: sticky;
  top: 132px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(23, 36, 30, 0.08);
}

.spec-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.spec-list div {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.spec-list div:first-child {
  border-top: 0;
}

.spec-list dt {
  color: var(--forest);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.spec-list dd {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 700;
}

.spec-note {
  margin: 18px 0 0;
  padding: 16px;
  color: var(--muted);
  background: var(--sage);
  border-radius: 8px;
  font-size: 14px;
}

.related-section {
  background: var(--white);
}

.section-heading.compact {
  max-width: 640px;
  margin-bottom: 28px;
}

.section-heading.compact h2 {
  font-size: 34px;
}

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

.related-card {
  overflow: hidden;
  display: grid;
  align-content: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(23, 36, 30, 0.07);
}

.related-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.related-card span {
  margin: 18px 20px 4px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.related-card strong {
  margin: 0 20px 20px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

.product-cta {
  padding: 74px 0;
  color: var(--white);
  background: var(--forest-dark);
}

.product-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
}

.product-cta h2 {
  margin: 0;
  color: var(--white);
  font-size: 38px;
  line-height: 1.12;
  font-weight: 950;
}

.product-cta p:not(.eyebrow) {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.legal-hero {
  padding: 70px 0 52px;
  background: var(--sage);
}

.legal-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.legal-content {
  max-width: 860px;
  padding-top: 62px;
  padding-bottom: 92px;
}

.legal-content section {
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.legal-content section:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}

.legal-content h2 {
  margin: 0 0 10px;
  color: var(--forest-dark);
  font-size: 26px;
  line-height: 1.2;
}

.legal-content p {
  margin: 0;
  color: var(--muted);
}

.legal-content a {
  color: var(--forest);
  font-weight: 800;
}

.js .home .reveal {
  opacity: 0;
  transform: translateY(22px);
}

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

@media (prefers-reduced-motion: no-preference) {
  .js .home .reveal {
    transition: opacity 700ms ease, transform 700ms ease;
  }

  .home .hero .eyebrow,
  .home .hero h1,
  .home .hero-lead,
  .home .hero-actions {
    animation: riseIn 760ms ease both;
  }

  .home .hero h1 {
    animation-delay: 80ms;
  }

  .home .hero-lead {
    animation-delay: 150ms;
  }

  .home .hero-actions {
    animation-delay: 230ms;
  }

  .home .product-card img {
    transition: transform 560ms ease;
  }

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

@media (prefers-reduced-motion: reduce) {
  .js .home .reveal {
    opacity: 1;
    transform: none;
  }

  .button,
  .home .product-card img {
    transition: none;
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .footer-main {
    grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.8fr);
  }

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

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

@media (max-width: 880px) {
  html {
    scroll-padding-top: 134px;
  }

  .top-line-inner {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
  }

  .header-inner {
    flex-wrap: wrap;
    padding: 12px 0;
    gap: 12px 18px;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .header-button {
    margin-left: auto;
  }

  .hero {
    min-height: auto;
    background-image:
      linear-gradient(180deg, rgba(251, 247, 237, 0.96), rgba(251, 247, 237, 0.86) 58%, rgba(251, 247, 237, 0.45)),
      url("../img/hero-eggs.jpg");
    background-position: center;
  }

  .hero-inner,
  .standard-grid,
  .contact-layout,
  .contact-page-grid,
  .split-content,
  .ordering-grid,
  .catalog-intro,
  .product-hero-grid,
  .product-detail-grid,
  .product-cta-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 30px;
    padding: 64px 0 56px;
  }

  .hero h1,
  .legal-hero h1 {
    font-size: 54px;
  }

  .product-summary h1 {
    font-size: 52px;
  }

  .hero-lead {
    font-size: 19px;
  }

  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 12px;
  }

  .hero-proof div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading h2,
  .standard-copy h2,
  .split-copy h2,
  .catalog-intro h2,
  .contact-copy h2,
  .product-cta h2 {
    font-size: 34px;
  }

  .ordering-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .product-hero {
    padding: 34px 0 58px;
  }

  .product-detail-section {
    padding: 60px 0;
  }

  .spec-card {
    position: static;
  }

  .contact-aside {
    position: static;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .top-line {
    display: none;
  }

  .brand-text {
    font-size: 16px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .header-button {
    min-height: 38px;
    padding: 0 12px;
    font-size: 14px;
  }

  .site-nav {
    font-size: 14px;
  }

  .hero-inner {
    padding: 52px 0 44px;
  }

  .hero h1,
  .legal-hero h1 {
    font-size: 40px;
  }

  .hero-lead,
  .section-heading p:not(.eyebrow),
  .standard-copy p,
  .split-copy p:not(.eyebrow),
  .catalog-intro p:not(.eyebrow),
  .contact-copy p,
  .legal-hero p:not(.eyebrow) {
    font-size: 16px;
  }

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

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

  .hero-proof,
  .info-card-grid,
  .product-grid,
  .process-grid,
  .form-grid,
  .support-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .section-heading h2,
  .standard-copy h2,
  .split-copy h2,
  .catalog-intro h2,
  .contact-copy h2,
  .product-cta h2 {
    font-size: 30px;
  }

  .product-summary h1 {
    font-size: 39px;
  }

  .product-lead,
  .product-info p,
  .product-cta p:not(.eyebrow) {
    font-size: 16px;
  }

  .product-info h2,
  .spec-card h2 {
    font-size: 26px;
  }

  .spec-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .product-cta-inner .button {
    width: 100%;
  }

  .process-step {
    min-height: auto;
  }

  .contact-band {
    padding: 62px 0;
  }

  .contact-panel {
    padding: 20px;
  }

  .contact-panel .button {
    width: 100%;
  }

  .contact-form {
    padding: 20px;
  }

  .contact-aside h2,
  .form-modal-panel h2 {
    font-size: 28px;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 42px 0 30px;
  }

  .footer-about {
    max-width: none;
  }

  .footer-cta {
    width: 100%;
  }

  .cookie-banner {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
  }

  .cookie-actions {
    flex-wrap: wrap;
  }
}
.page-404 {
  background: var(--paper);
}

.not-found {
  position: relative;
  overflow: hidden;
}

.not-found::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(216, 154, 36, 0.1), transparent 30%),
    radial-gradient(circle at 85% 25%, rgba(43, 106, 74, 0.12), transparent 32%),
    linear-gradient(180deg, var(--sage), var(--paper));
  pointer-events: none;
}

.not-found__section {
  position: relative;
  min-height: calc(100svh - 110px);
  display: flex;
  align-items: center;
  padding: 72px 0 88px;
}

.not-found__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.not-found__badge {
  width: fit-content;
  margin: 0 auto 22px;
  padding: 18px 28px;
  color: var(--forest-dark);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(24, 59, 45, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(23, 36, 30, 0.1);
  font-size: 88px;
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.not-found__title {
  margin: 0;
  color: var(--ink);
  font-size: 58px;
  line-height: 1;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.not-found__text {
  max-width: 680px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.not-found__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

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

.not-found__card {
  padding: 22px 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(23, 36, 30, 0.08);
  backdrop-filter: blur(10px);
}

.not-found__card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--forest-dark);
  font-size: 32px;
  line-height: 1;
  font-weight: 950;
}

.not-found__card span {
  display: block;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

@media (max-width: 880px) {
  .not-found__section {
    min-height: auto;
    padding: 64px 0 72px;
  }

  .not-found__badge {
    font-size: 68px;
    padding: 16px 24px;
  }

  .not-found__title {
    font-size: 42px;
  }

  .not-found__text {
    font-size: 18px;
  }

  .not-found__cards {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }
}

@media (max-width: 560px) {
  .not-found__section {
    padding: 52px 0 64px;
  }

  .not-found__badge {
    font-size: 52px;
    padding: 14px 20px;
  }

  .not-found__title {
    font-size: 34px;
  }

  .not-found__text {
    font-size: 16px;
  }

  .not-found__card {
    padding: 18px 16px;
  }

  .not-found__card strong {
    font-size: 28px;
  }
}