:root {
  --green-950: #0d2c18;
  --green-900: #153b20;
  --green-800: #1f542d;
  --green-700: #2f6b3d;
  --green-100: #e3efe0;
  --cream-50: #fffaf1;
  --cream-100: #f8efd9;
  --cream-200: #efe0c4;
  --sand: #dec7a1;
  --brown-900: #2c1b12;
  --brown-700: #59402b;
  --brown-500: #7b6145;
  --yellow: #f8d33e;
  --telegram: #21a866;
  --line: rgba(87, 61, 38, 0.18);
  --shadow: 0 16px 36px rgba(58, 35, 17, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--brown-900);
  background: var(--cream-50);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: clip;
}

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

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

svg {
  display: block;
  width: 1em;
  height: 1em;
}

[hidden] {
  display: none !important;
}

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1380px, calc(100% - 78px));
  transform: translateX(-50%);
  padding: 22px 0;
  color: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  min-width: 0;
}

.brand-mascot {
  width: clamp(62px, 7vw, 88px);
  height: clamp(62px, 7vw, 88px);
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
}

.brand-wordmark {
  display: grid;
  gap: 0;
  max-width: 260px;
  transform: rotate(-1deg);
}

.brand-wordmark strong {
  display: block;
  color: #ffe45e;
  font-size: clamp(25px, 2.6vw, 35px);
  font-weight: 950;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow:
    0 3px 0 rgba(71, 43, 12, 0.75),
    0 8px 16px rgba(0, 0, 0, 0.28);
}

.brand img:not(.brand-mascot) {
  width: clamp(150px, 15vw, 225px);
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.6vw, 34px);
  margin-left: auto;
  font-size: 15px;
  font-weight: 850;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.nav-links a {
  opacity: 0.96;
}

.nav-links a:hover {
  color: #fff2a5;
}

.language-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 32px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
  color: #fff;
}

.language-switch .active {
  color: var(--brown-900);
  background: #fff;
  text-shadow: none;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(15, 27, 8, 0.9) 0%, rgba(21, 44, 12, 0.82) 34%, rgba(30, 38, 10, 0.35) 62%, rgba(18, 20, 8, 0.25) 100%),
    url("assets/hero-chickens.jpg") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(19, 26, 9, 0.42));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1380px, calc(100% - 78px));
  min-height: 760px;
  margin: 0 auto;
  padding: 156px 0 46px;
}

.hero-copy {
  width: min(640px, 100%);
}

.hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 5.1vw, 66px);
  font-weight: 950;
  line-height: 0.98;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.42);
}

.hero-lead {
  margin: 30px 0 0;
  color: #ffe86b;
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 900;
  line-height: 1.25;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.42);
}

.hero p:not(.hero-lead):not(.hero-note) {
  margin: 26px 0 0;
  color: #fff;
  font-size: 17px;
  font-weight: 760;
  line-height: 1.56;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.hero p + p:not(.hero-lead):not(.hero-note) {
  margin-top: 16px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 0;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-note > span {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: var(--green-900);
  background: #ffe15b;
}

.hero-note > span svg {
  width: 15px;
  height: 15px;
  stroke-width: 3px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}

.button {
  display: grid;
  grid-template-columns: 42px auto;
  align-items: center;
  column-gap: 12px;
  min-width: 230px;
  min-height: 72px;
  padding: 11px 20px 11px 14px;
  border-radius: 8px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.28);
}

.button span {
  grid-row: span 2;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  font-size: 22px;
}

.button span svg {
  width: 23px;
  height: 23px;
}

.button strong,
.button small {
  display: block;
  line-height: 1.15;
}

.button strong {
  font-size: 16px;
  font-weight: 950;
}

.button small {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 850;
}

.button-telegram {
  background: var(--telegram);
  color: #fff;
}

.button-phone {
  color: #2f240b;
  background: var(--yellow);
}

.button-phone span {
  color: #2f240b;
  background: rgba(255, 255, 255, 0.45);
}

.hero-basket {
  position: absolute;
  right: 0;
  bottom: 48px;
  width: clamp(420px, 45vw, 720px);
  height: clamp(300px, 34vw, 510px);
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
  transform: rotate(-3deg);
}

.section {
  width: min(1260px, calc(100% - 72px));
  margin: 0 auto;
}

.product-section {
  padding: 36px 0 18px;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 0 26px;
  text-align: center;
}

.section-title h2,
.faq-section h2,
.seo-section h2,
.chicken-copy h2 {
  margin: 0;
  color: var(--brown-900);
  font-size: clamp(30px, 3.1vw, 43px);
  font-weight: 950;
  line-height: 1.08;
}

.section-title span {
  color: #7c9d62;
  font-size: 38px;
  font-weight: 900;
  transform: translateY(-1px);
}

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

.product-card {
  position: relative;
  min-height: 423px;
  padding: 76px 22px 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 250, 240, 0.88);
  box-shadow: 0 12px 28px rgba(71, 45, 22, 0.1);
}

.product-card::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 96px;
  width: 108px;
  height: 6px;
  border-radius: 999px;
  background: var(--green-700);
}

.card-icon {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 7px solid #f6f0df;
  border-radius: 50%;
  color: #fff;
  background: #6d936c;
  box-shadow: 0 12px 22px rgba(45, 63, 29, 0.16);
  font-size: 30px;
  font-weight: 900;
}

.card-icon svg {
  width: 31px;
  height: 31px;
}

.product-card h3 {
  margin: 0 0 14px 76px;
  color: var(--brown-900);
  font-size: 23px;
  font-weight: 950;
}

.product-card > img,
.schedule-preview {
  width: 100%;
  height: 148px;
  border-radius: 7px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.product-card > img {
  object-fit: cover;
}

.schedule-preview {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(87, 61, 38, 0.14);
  background:
    radial-gradient(circle at 82% 76%, rgba(242, 177, 67, 0.28), transparent 18%),
    linear-gradient(135deg, #fff7e5 0%, #e5d0ad 100%);
}

.schedule-card {
  width: min(240px, 76%);
  padding: 14px 15px 16px;
  border-radius: 8px;
  background: rgba(255, 252, 244, 0.96);
  box-shadow: 0 16px 26px rgba(88, 57, 27, 0.2);
  transform: rotate(-1.5deg);
}

.schedule-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--brown-900);
  font-size: 17px;
  font-weight: 950;
  text-align: center;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.schedule-grid span {
  aspect-ratio: 1;
  border-radius: 4px;
  background: #efe2c9;
}

.schedule-grid .marked {
  background: var(--green-700);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.42);
}

.schedule-eggs {
  position: absolute;
  right: 20px;
  bottom: 18px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
}

.schedule-eggs span {
  display: block;
  width: 30px;
  height: 40px;
  border: 3px solid #c67f20;
  border-radius: 50% 50% 46% 46%;
  background: #f7cf88;
  transform: rotate(-12deg);
}

.schedule-eggs span + span {
  width: 27px;
  height: 36px;
  transform: rotate(12deg);
}

.product-card p {
  min-height: 118px;
  margin: 18px 8px 18px;
  color: #2f281d;
  font-size: 16px;
  font-weight: 620;
  line-height: 1.55;
}

.small-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 6px;
  color: #fff;
  background: var(--green-700);
  font-size: 15px;
  font-weight: 950;
  box-shadow: 0 10px 18px rgba(33, 86, 45, 0.16);
}

.small-button:hover {
  background: var(--green-800);
}

.why-section {
  padding: 20px 0 28px;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 625px);
  gap: 42px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 18px;
}

.check-list article {
  display: grid;
  grid-template-columns: 27px 1fr;
  gap: 14px;
}

.check-list > article > span,
.chicken-copy li span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  border-radius: 50%;
  color: #fff;
  background: #49a23f;
  font-size: 15px;
  font-weight: 950;
}

.check-list > article > span svg,
.chicken-copy li span svg {
  width: 15px;
  height: 15px;
  stroke-width: 3px;
}

.check-list h3 {
  margin: 0 0 4px;
  color: var(--brown-900);
  font-size: 20px;
  font-weight: 950;
}

.check-list p {
  margin: 0;
  color: #463729;
  font-size: 16px;
  font-weight: 610;
  line-height: 1.5;
}

.comparison {
  margin: 0;
}

.comparison img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 14px 30px rgba(86, 55, 26, 0.14);
}

.comparison figcaption {
  margin-top: 14px;
  color: #4d3929;
  font-size: 17px;
  font-weight: 950;
  text-align: center;
}

.chicken-section {
  display: grid;
  grid-template-columns: minmax(0, 46%) minmax(0, 54%);
  align-items: stretch;
  margin-top: 0;
  background: linear-gradient(90deg, #fff7e6 0%, #f7ecd7 100%);
}

.chicken-section > img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.chicken-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 430px;
  padding: 54px clamp(34px, 5vw, 76px);
}

.chicken-copy p {
  max-width: 680px;
  margin: 18px 0 18px;
  color: #3f3125;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.56;
}

.chicken-copy ul {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.chicken-copy li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
  color: #33271d;
  font-size: 17px;
  font-weight: 760;
  line-height: 1.38;
}

.chicken-copy li:nth-child(2) span,
.chicken-copy li:nth-child(3) span {
  background: #f0bd31;
}

.order-section {
  padding: 34px 0 36px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
}

.steps article {
  position: relative;
  text-align: center;
}

.steps article:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 48px;
  right: -26px;
  color: #7b9b62;
  font-size: 32px;
  font-weight: 400;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin: 0 auto 15px;
  border-radius: 50%;
  color: var(--green-800);
  background: #f1deb9;
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.34);
  font-size: 43px;
  font-weight: 900;
}

.step-icon svg {
  width: 42px;
  height: 42px;
}

.steps h3 {
  margin: 0 0 8px;
  color: #1f1b15;
  font-size: 16px;
  font-weight: 950;
  line-height: 1.25;
}

.steps p {
  margin: 0;
  color: #4f4235;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.38;
}

.seo-section {
  padding: 34px max(44px, calc((100% - 1260px) / 2)) 28px;
  background: linear-gradient(90deg, #fff7e8, #f0dfc4);
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(680px, 1.28fr);
  gap: 30px;
  align-items: center;
  margin-top: 4px;
  margin-bottom: 34px;
  padding: 28px;
  border: 1px solid rgba(47, 107, 61, 0.22);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(21, 59, 32, 0.95), rgba(47, 107, 61, 0.94)),
    url("assets/hero-chickens.jpg") center / cover no-repeat;
  color: #fff;
  box-shadow: 0 16px 34px rgba(39, 72, 34, 0.14);
}

.contact-band h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 2.6vw, 39px);
  font-weight: 950;
  line-height: 1.08;
}

.contact-band p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
}

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

.contact-band-link {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 12px;
  align-items: center;
  min-height: 78px;
  padding: 14px 16px;
  border-radius: 10px;
  color: var(--brown-900);
  background: rgba(255, 250, 241, 0.96);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}

.contact-band-link span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  background: var(--green-700);
}

.contact-band-link svg {
  width: 22px;
  height: 22px;
}

.contact-band-link strong,
.contact-band-link small {
  display: block;
}

.contact-band-link strong {
  font-size: 16px;
  font-weight: 950;
  line-height: 1.15;
}

.contact-band-link small {
  margin-top: 4px;
  color: var(--brown-500);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.contact-band-phone small {
  white-space: nowrap;
}

.contact-band-primary span {
  background: var(--telegram);
}

.contact-band-phone span {
  color: var(--brown-900);
  background: var(--yellow);
}

.seo-section h2 {
  text-align: center;
}

.seo-section p {
  width: min(1250px, 100%);
  margin: 18px auto 0;
  color: #35281d;
  font-size: 17px;
  font-weight: 620;
  line-height: 1.66;
  text-align: left;
}

.seo-section p + p {
  margin-top: 12px;
}

.seo-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  width: min(1110px, 100%);
  margin: 22px auto 0;
}

.seo-features div {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 12px;
  align-items: center;
}

.seo-features span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--brown-700);
  border-radius: 50%;
  color: var(--green-800);
  font-size: 22px;
}

.seo-features span svg {
  width: 21px;
  height: 21px;
}

.seo-features strong,
.seo-features small {
  display: block;
}

.seo-features strong {
  font-size: 15px;
  font-weight: 950;
}

.seo-features small {
  color: #554838;
  font-size: 13px;
  font-weight: 700;
}

.faq-section {
  padding: 30px 0 34px;
}

.buyer-section {
  padding: 34px 0 18px;
}

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

.buyer-grid article {
  padding: 20px 18px;
  border: 1px solid rgba(87, 61, 38, 0.16);
  border-radius: 10px;
  background: #fffaf0;
  box-shadow: 0 8px 22px rgba(70, 45, 21, 0.07);
}

.buyer-grid h3 {
  margin: 0 0 10px;
  color: var(--brown-900);
  font-size: 18px;
  font-weight: 950;
}

.buyer-grid p {
  margin: 0;
  color: #463729;
  font-size: 15px;
  font-weight: 630;
  line-height: 1.52;
}

.faq-section h2 {
  margin-bottom: 22px;
  text-align: center;
}

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

.faq-grid details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f0df;
  box-shadow: 0 5px 14px rgba(68, 45, 24, 0.06);
}

.faq-grid summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 18px;
  cursor: pointer;
  color: #2f241b;
  font-size: 15px;
  font-weight: 950;
  list-style: none;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary::after {
  content: "⌄";
  font-size: 22px;
  font-weight: 900;
  transform: translateY(-2px);
}

.faq-grid details[open] summary::after {
  transform: rotate(180deg) translateY(2px);
}

.faq-grid p {
  margin: -2px 18px 16px;
  color: #4e4133;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.45;
}

.faq-grid a {
  color: var(--green-800);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(13, 44, 24, 0.98), rgba(19, 59, 32, 0.95)),
    url("assets/hero-chickens.jpg") center / cover no-repeat;
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(230px, 0.8fr) minmax(260px, 0.8fr) 230px;
  gap: 42px;
  align-items: center;
  width: min(1260px, calc(100% - 72px));
  min-height: 152px;
  margin: 0 auto;
  padding: 24px 0;
}

.footer-brand img {
  margin-bottom: 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.footer-logo .brand-mascot {
  width: 76px;
  height: 76px;
}

.footer-logo .brand-wordmark strong {
  font-size: 25px;
}

.footer-brand p,
.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.site-footer .legal-note {
  max-width: 420px;
  margin-top: 10px;
  color: rgba(255, 247, 199, 0.82);
  font-size: 13px;
  font-weight: 650;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 17px;
  font-weight: 950;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: #fff7c7;
  font-size: 16px;
  font-weight: 850;
}

.promo-banner {
  position: fixed;
  right: 24px;
  bottom: 96px;
  z-index: 55;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 14px;
  width: min(430px, calc(100vw - 48px));
  padding: 18px;
  border: 1px solid rgba(255, 226, 101, 0.42);
  border-radius: 14px;
  color: #fff;
  background:
    radial-gradient(circle at 11% 15%, rgba(255, 226, 101, 0.34), transparent 26%),
    linear-gradient(135deg, rgba(13, 44, 24, 0.98), rgba(36, 95, 47, 0.98));
  box-shadow: 0 22px 58px rgba(10, 31, 16, 0.32);
}

.promo-close {
  position: absolute;
  top: 8px;
  right: 8px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.13);
  cursor: pointer;
  font-size: 25px;
  font-weight: 650;
  line-height: 1;
}

.promo-close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.promo-badge {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  color: var(--green-950);
  background: var(--yellow);
  box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.28);
  font-size: 25px;
  font-weight: 950;
}

.promo-copy {
  min-width: 0;
  padding-right: 22px;
}

.promo-kicker {
  margin: 0 0 5px;
  color: #fff1a2;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.promo-copy h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 24px;
  font-weight: 950;
  line-height: 1.04;
}

.promo-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.38;
}

.promo-copy small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

.promo-action {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 8px;
  color: var(--brown-900);
  background: #fff;
  font-size: 16px;
  font-weight: 950;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.promo-action span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  background: #407aa8;
}

.promo-action svg {
  width: 16px;
  height: 16px;
}

.footer-eggs {
  width: 230px;
  height: 150px;
  object-fit: cover;
  border-radius: 50% 50% 0 0;
  transform: translateY(28px);
  box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.25);
}

.contact-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  color: var(--brown-900);
}

.contact-widget summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 154px;
  min-height: 54px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: #fff;
  background: var(--green-800);
  box-shadow: 0 18px 38px rgba(8, 29, 14, 0.28);
  cursor: pointer;
  font-size: 16px;
  font-weight: 950;
  list-style: none;
}

.contact-widget summary::-webkit-details-marker {
  display: none;
}

.contact-widget summary span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--green-900);
  background: #ffe265;
  font-size: 18px;
}

.contact-widget summary span svg {
  width: 18px;
  height: 18px;
}

.contact-widget[open] summary {
  background: var(--green-950);
}

.contact-popover {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  display: grid;
  gap: 10px;
  width: 334px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 250, 241, 0.98);
  box-shadow: 0 18px 46px rgba(48, 30, 13, 0.22);
}

.contact-option {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  column-gap: 12px;
  min-height: 64px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--brown-900);
  background: #fff;
  box-shadow: 0 6px 18px rgba(58, 35, 17, 0.08);
}

.contact-option span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
}

.contact-option span svg {
  width: 22px;
  height: 22px;
}

.contact-option strong,
.contact-option small {
  display: block;
  line-height: 1.1;
}

.contact-option strong {
  font-size: 17px;
  font-weight: 950;
}

.contact-option small {
  margin-top: 4px;
  color: var(--brown-500);
  font-size: 13px;
  font-weight: 800;
}

.contact-option-telegram span {
  background: var(--telegram);
}

.contact-option-channel span {
  background: #407aa8;
}

.contact-option-phone span {
  color: var(--brown-900);
  background: var(--yellow);
}

@media (max-width: 1140px) {
  .site-header {
    width: min(100% - 36px, 960px);
    gap: 18px;
  }

  .nav-links {
    gap: 12px;
    font-size: 12px;
  }

  .hero-inner {
    width: min(100% - 36px, 960px);
  }

  .hero-basket {
    opacity: 0.72;
    right: -60px;
  }

  .product-cards,
  .why-grid,
  .contact-band {
    grid-template-columns: 1fr;
  }

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

  .product-card {
    min-height: auto;
  }

  .product-card p {
    min-height: auto;
  }

  .why-grid {
    gap: 26px;
  }

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

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

  .steps article:not(:last-child)::after {
    display: none;
  }

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

  .footer-eggs {
    display: none;
  }
}

@media (max-width: 940px) {
  .nav-links {
    display: none;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: relative;
    left: auto;
    width: 100%;
    transform: none;
    justify-content: space-between;
    gap: 8px;
    min-height: 66px;
    padding: 8px 12px;
    color: var(--brown-900);
    background: var(--green-900);
    overflow: hidden;
  }

  .brand {
    max-width: calc(100% - 92px);
    min-width: 0;
    gap: 6px;
  }

  .brand-mascot {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
  }

  .brand-wordmark strong {
    font-size: clamp(17px, 4.8vw, 22px);
    line-height: 0.84;
  }

  .nav-links {
    display: none;
  }

  .language-switch {
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.14);
  }

  .language-switch a {
    width: 34px;
    height: 30px;
    font-size: 12px;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(13, 30, 10, 0.92), rgba(22, 40, 13, 0.82)),
      url("assets/hero-chickens.jpg") center / cover no-repeat;
  }

  .hero-inner {
    width: min(100% - 32px, 620px);
    padding: 46px 0 38px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 56px);
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 21px;
  }

  .hero p:not(.hero-lead):not(.hero-note) {
    font-size: 16px;
  }

  .hero-basket {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 420px);
    height: 280px;
    margin-top: 28px;
    border-radius: 18px;
    opacity: 1;
    transform: none;
  }

  .button {
    width: 100%;
  }

  .section,
  .footer-grid {
    width: min(100% - 32px, 620px);
  }

  .product-section,
  .why-section,
  .order-section,
  .faq-section {
    padding-top: 30px;
  }

  .contact-band {
    width: min(100% - 32px, 620px);
    margin-top: 0;
    margin-bottom: 28px;
    padding: 22px 18px;
  }

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

  .section-title {
    gap: 8px;
  }

  .section-title h2,
  .faq-section h2,
  .seo-section h2,
  .chicken-copy h2 {
    font-size: 30px;
  }

  .section-title span {
    font-size: 28px;
  }

  .product-card {
    padding: 72px 18px 20px;
  }

  .product-card h3 {
    margin-left: 70px;
    font-size: 21px;
  }

  .product-card p {
    margin-inline: 0;
  }

  .chicken-section {
    grid-template-columns: 1fr;
  }

  .chicken-section > img {
    min-height: 280px;
  }

  .chicken-copy {
    min-height: auto;
    padding: 30px 20px;
  }

  .chicken-copy p {
    font-size: 16px;
  }

  .steps,
  .seo-features,
  .buyer-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    gap: 22px;
  }

  .step-icon {
    width: 82px;
    height: 82px;
    font-size: 36px;
  }

  .seo-section {
    padding-inline: 18px;
  }

  .contact-widget {
    right: 12px;
    bottom: 12px;
    left: auto;
    max-width: calc(100% - 24px);
  }

  .contact-widget summary {
    width: auto;
    min-height: 52px;
  }

  .contact-popover {
    right: 0;
    left: auto;
    width: min(334px, calc(100vw - 24px));
  }

  .promo-banner {
    right: 12px;
    bottom: 78px;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 11px;
    width: calc(100vw - 24px);
    padding: 14px;
    border-radius: 12px;
  }

  .promo-badge {
    width: 56px;
    height: 56px;
    font-size: 19px;
    box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.28);
  }

  .promo-copy {
    padding-right: 24px;
  }

  .promo-kicker {
    margin-bottom: 4px;
    font-size: 11px;
  }

  .promo-copy h2 {
    font-size: 20px;
  }

  .promo-copy p {
    font-size: 14px;
  }

  .promo-copy small {
    font-size: 11px;
  }

  .promo-action {
    min-height: 44px;
    font-size: 15px;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 35px;
  }

  .brand-mascot {
    width: 42px;
    height: 42px;
  }

  .brand-wordmark strong {
    font-size: clamp(16px, 4.7vw, 19px);
  }

  .hero-actions {
    gap: 12px;
  }

  .button {
    min-width: 0;
    padding-right: 14px;
  }

  .button strong {
    font-size: 15px;
  }

  .button small {
    font-size: 13px;
  }

  .product-card::before {
    left: 90px;
    width: 88px;
  }

  .site-footer {
    padding-bottom: 78px;
  }

  .promo-banner {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 9px;
    padding: 12px;
  }

  .promo-badge {
    width: 48px;
    height: 48px;
    font-size: 17px;
  }

  .promo-copy h2 {
    font-size: 18px;
  }

  .promo-copy p {
    font-size: 13px;
  }

  .promo-action {
    min-height: 42px;
  }
}
