:root {
  --ink: #18201d;
  --muted: #66706a;
  --paper: #fffaf0;
  --cream: #f5ead5;
  --gold: #d6941e;
  --gold-dark: #8c5a08;
  --green: #315c3c;
  --green-soft: #dfe9d3;
  --clay: #a7532a;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(24, 32, 29, 0.18);
  --radius: 8px;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 64px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
body.nav-open .site-header,
.site-header.inner-header {
  color: var(--ink);
  background: rgba(255, 250, 240, 0.94);
  box-shadow: 0 12px 32px rgba(24, 32, 29, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}

.logo-brand {
  min-width: 0;
}

.brand-logo {
  display: block;
  width: clamp(126px, 13vw, 164px);
  height: auto;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-weight: 800;
}

.site-header.is-scrolled .brand-mark,
body.nav-open .brand-mark,
.site-header.inner-header .brand-mark {
  border-color: rgba(49, 92, 60, 0.2);
  background: var(--green-soft);
  color: var(--green);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  line-height: 1;
}

.brand small {
  margin-top: 4px;
  color: currentColor;
  font-size: 12px;
  opacity: 0.78;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.7vw, 24px);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  opacity: 0.86;
}

.nav a:hover {
  opacity: 1;
}

.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;
}

.site-search {
  position: relative;
  z-index: 23;
  display: flex;
  flex: 0 0 min(210px, 16vw);
  align-items: center;
  min-width: 170px;
  border: 1px solid rgba(24, 32, 29, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
}

.site-search label {
  flex: 1 1 auto;
  min-width: 0;
}

.site-search input {
  height: 38px;
  border: 0;
  border-radius: var(--radius);
  padding: 9px 10px 9px 12px;
  background: transparent;
  font-size: 14px;
}

.site-search input:focus {
  outline: 0;
}

.site-search button {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border: 0;
  border-left: 1px solid rgba(24, 32, 29, 0.12);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--gold);
  color: #1f1605;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
}

.search-results {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: none;
  width: min(360px, 88vw);
  overflow: hidden;
  border: 1px solid #eadfc9;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.site-search.has-results .search-results {
  display: grid;
}

.search-results a,
.search-results p {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 13px 14px;
}

.search-results a + a {
  border-top: 1px solid #eadfc9;
}

.search-results a:hover {
  background: var(--paper);
}

.search-results strong {
  font-size: 14px;
}

.search-results span,
.search-results p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.header-contacts {
  display: grid;
  flex: 1 1 620px;
  max-width: 720px;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 18px;
  font-size: 12px;
  line-height: 1.28;
}

.header-contacts a {
  position: relative;
  display: block;
  min-width: 0;
  padding-left: 18px;
  color: currentColor;
}

.header-contacts a::before {
  content: "☎";
  position: absolute;
  left: 0;
  top: 20px;
  color: var(--gold);
  font-size: 14px;
}

.header-contacts span,
.header-contacts strong,
.header-contacts small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-contacts span,
.header-contacts small {
  opacity: 0.78;
}

.header-contacts small {
  margin-top: 3px;
}

.header-contacts strong {
  color: currentColor;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -2;
  object-fit: cover;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(13, 20, 15, 0.78) 0%, rgba(13, 20, 15, 0.48) 46%, rgba(13, 20, 15, 0.08) 100%),
    linear-gradient(180deg, rgba(13, 20, 15, 0.16) 0%, rgba(13, 20, 15, 0.58) 100%);
}

.hero-content {
  width: min(760px, calc(100% - 36px));
  padding: 150px 0 156px clamp(18px, 6vw, 88px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(46px, 7vw, 94px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
}

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

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

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

.button-primary {
  background: var(--gold);
  color: #1f1605;
  box-shadow: 0 14px 32px rgba(214, 148, 30, 0.32);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.44);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.dark-button {
  border-color: rgba(24, 32, 29, 0.18);
  color: var(--ink);
  background: var(--white);
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(620px, calc(100% - 36px));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  padding: 22px;
}

.hero-panel div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  font-size: 32px;
}

.hero-panel span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.35;
}

.page-main {
  padding-top: 78px;
}

.page-hero {
  padding: clamp(86px, 12vw, 150px) clamp(18px, 5vw, 72px) clamp(56px, 8vw, 92px);
  background:
    linear-gradient(90deg, rgba(24, 32, 29, 0.86), rgba(49, 92, 60, 0.62)),
    url("assets/apiary-hero.png") center / cover;
  color: var(--white);
}

.page-hero.compact {
  padding-bottom: clamp(48px, 7vw, 72px);
}

.page-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.6;
}

.section,
.feature-band,
.contact-section {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 72px);
}

.intro-grid,
.section-heading,
.feature-band,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 6vw, 84px);
}

.intro h2,
.section-heading h2,
.feature-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: 0;
}

.intro p,
.section-heading p,
.feature-copy p,
.contact-copy p,
.format-list p,
.product-card p,
.assortment-card p,
.catalog-card li,
.terms-grid li,
.service-list p,
.address-card p,
.benefit-list p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.intro p,
.section-heading p {
  margin: 34px 0 0;
}

.more-details {
  margin-top: 22px;
}

.more-details summary {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  border-radius: var(--radius);
  padding: 12px 18px;
  background: var(--gold);
  color: #1f1605;
  font-weight: 850;
  cursor: pointer;
}

.products {
  background: var(--white);
}

.assortment {
  background: var(--white);
}

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

.assortment-card {
  min-height: 280px;
  padding: 26px;
  border: 1px solid #eadfc9;
  border-radius: var(--radius);
  background: #fffdf8;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.assortment-card:hover {
  transform: translateY(-3px);
  border-color: rgba(214, 148, 30, 0.55);
  box-shadow: 0 20px 42px rgba(24, 32, 29, 0.12);
}

.assortment-card span {
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 900;
}

.assortment-card h3 {
  margin: 42px 0 0;
  font-size: 25px;
  line-height: 1.12;
}

.assortment-card p {
  margin: 16px 0 0;
}

.photo-card {
  padding: 0;
  overflow: hidden;
}

.photo-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.photo-card span,
.photo-card h3,
.photo-card p {
  display: block;
  margin-right: 24px;
  margin-left: 24px;
}

.photo-card span {
  margin-top: 22px;
}

.photo-card p {
  margin-bottom: 24px;
}

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

.product-card {
  min-height: 300px;
  padding: 26px;
  border: 1px solid #eadfc9;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fffdf8 0%, #f8efdf 100%);
}

.product-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 13px;
  font-weight: 850;
}

.product-card h3,
.format-list h3 {
  margin: 28px 0 0;
  font-size: 24px;
  line-height: 1.15;
}

.product-card p {
  margin: 16px 0 0;
}

.production {
  background: var(--paper);
}

.catalog-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
  margin-top: 42px;
}

.catalog-card,
.terms-grid article,
.service-list article,
.address-card {
  border: 1px solid #eadfc9;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  padding: 28px;
}

.catalog-card.highlight {
  background: var(--green);
  color: var(--white);
}

.catalog-card h3,
.terms-grid h3,
.service-list h3,
.address-card h3,
.benefit-list h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.16;
}

.catalog-card ul,
.terms-grid ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding-left: 20px;
}

.catalog-card.highlight li {
  color: rgba(255, 255, 255, 0.84);
}

.price-note {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

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

.product-detail {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 22px;
  border: 1px solid #eadfc9;
  border-radius: var(--radius);
  background: var(--white);
}

.product-detail img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: var(--radius);
  background: #f7f0e3;
}

.product-detail h2,
.order-box h2,
.price-table-wrap h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
}

.product-detail p,
.order-box li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.product-detail strong,
.shop-item strong {
  display: inline-flex;
  margin-top: 12px;
  color: var(--gold-dark);
  font-size: 22px;
}

.order-box {
  margin-top: 28px;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--green);
  color: var(--white);
}

.order-box li {
  color: rgba(255, 255, 255, 0.82);
}

.order-extra {
  margin: 18px 0 24px;
  color: var(--white);
  font-size: 20px;
  font-weight: 850;
}

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

.shop-item {
  display: grid;
  align-content: start;
  border: 1px solid #eadfc9;
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.shop-item.wide {
  grid-column: span 2;
}

.shop-item img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  background: #f7f0e3;
}

.shop-item h2,
.shop-item p,
.shop-item strong {
  margin-right: 22px;
  margin-left: 22px;
}

.shop-item h2 {
  margin-top: 22px;
  margin-bottom: 0;
  font-size: 25px;
}

.shop-item p {
  color: var(--muted);
  line-height: 1.6;
}

.shop-item strong {
  margin-bottom: 22px;
}

.price-table-wrap {
  margin-top: 38px;
}

:target {
  scroll-margin-top: 120px;
}

.price-table {
  width: 100%;
  margin-top: 18px;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
}

.price-table th,
.price-table td {
  padding: 15px 18px;
  border-bottom: 1px solid #eadfc9;
  text-align: left;
}

.price-table th {
  background: var(--green);
  color: var(--white);
}

.articles {
  display: grid;
  gap: 24px;
}

.article-card {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  padding: 28px;
  border: 1px solid #eadfc9;
  border-radius: var(--radius);
  background: var(--white);
}

.article-card img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  border-radius: var(--radius);
  background: #f7f0e3;
}

.article-card h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
}

.article-card p,
.article-card li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.article-note {
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  background: var(--paper);
}

.feature-band {
  align-items: center;
  background: var(--green);
  color: var(--white);
}

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

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.6;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
}

.quality-board {
  display: grid;
  gap: 12px;
}

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

.benefit-list article {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.benefit-list h3 {
  color: var(--white);
}

.benefit-list p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.quality-board div {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
}

.quality-board span,
.quality-board strong {
  display: block;
}

.quality-board span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.quality-board strong {
  margin-top: 8px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
}

.formats {
  background: var(--cream);
}

.goods,
.services {
  background: var(--cream);
}

.wax {
  background: var(--white);
}

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

.service-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.service-list article {
  min-height: 250px;
}

.service-list p,
.address-card p {
  margin: 14px 0 0;
}

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

.format-list article {
  min-height: 230px;
  padding: 28px;
  border-left: 4px solid var(--clay);
  background: rgba(255, 255, 255, 0.56);
}

.format-list h3 {
  margin-top: 0;
}

.contact-section {
  align-items: start;
  background: var(--ink);
  color: var(--white);
}

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

.contact-mail {
  display: inline-flex;
  margin-top: 20px;
  color: var(--gold);
  font-size: 20px;
  font-weight: 850;
}

.phone-line {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.5;
}

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

.address-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.address-card p {
  color: rgba(255, 255, 255, 0.75);
}

.address-card.light {
  background: var(--white);
  color: var(--ink);
  border-color: #eadfc9;
}

.address-card.light p {
  color: var(--muted);
}

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

.standalone-form {
  max-width: 760px;
  margin-top: 28px;
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.map-panel {
  margin-top: 32px;
}

.map-panel h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3vw, 42px);
}

.stores-map {
  width: 100%;
  height: min(560px, 70vh);
  border: 1px solid #eadfc9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--green-soft);
}

.seed-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 34px;
}

.seed-photo {
  padding: 12px;
  border: 1px solid #eadfc9;
  border-radius: var(--radius);
  background: var(--white);
}

.seed-photo img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  background: #f7f0e3;
}

.seed-photo span {
  display: block;
  margin-top: 10px;
  font-weight: 800;
}

.zoomable-image {
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(16, 23, 19, 0.88);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--paper);
}

.lightbox button {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 30px;
  cursor: pointer;
}

.scroll-hint,
.scroll-top {
  position: fixed;
  right: 18px;
  z-index: 30;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(24, 32, 29, 0.18);
  border-radius: 50%;
  background: var(--gold);
  color: #1f1605;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(24, 32, 29, 0.22);
  cursor: pointer;
}

.scroll-hint {
  top: 50%;
  transform: translateY(-50%);
}

.scroll-hint.is-hidden {
  display: none;
}

.scroll-top {
  right: 18px;
  bottom: 18px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.contact-form label,
.contact-form span {
  display: grid;
}

.contact-form span {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d9cdb8;
  border-radius: var(--radius);
  padding: 14px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(214, 148, 30, 0.28);
  border-color: var(--gold);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-weight: 700;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 72px);
  background: #101713;
  color: rgba(255, 255, 255, 0.7);
}

.footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .header-contacts {
    display: none;
  }

  .site-search {
    order: 3;
    flex: 1 1 100%;
    width: 100%;
    margin-top: 6px;
  }

  .search-results {
    right: auto;
    left: 0;
    width: 100%;
  }

  .nav-toggle {
    position: relative;
    z-index: 22;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: var(--radius);
    color: inherit;
    background: transparent;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    transition: transform 160ms ease;
  }

  .nav-toggle span + span {
    margin-top: -16px;
  }

  body.nav-open .nav-toggle span:first-child {
    transform: translateY(9px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:last-child {
    transform: translateY(-9px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 21;
    display: none;
    width: 100vw;
    min-height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 110px 24px 40px;
    background: var(--paper);
    color: var(--ink);
    font-size: 26px;
  }

  body.nav-open .nav {
    display: flex;
  }

  .intro-grid,
  .section-heading,
  .feature-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .format-list,
  .assortment-grid,
  .catalog-grid,
  .terms-grid,
  .service-list,
  .shop-grid,
  .public-contacts,
  .seed-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail,
  .article-card {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-bottom: 220px;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    width: 124px;
  }

  .hero {
    display: block;
    min-height: auto;
  }

  .hero-content {
    width: 100%;
    padding: 116px 18px 18px;
  }

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

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

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

  .hero-panel {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: calc(100% - 36px);
    margin: 0 18px 28px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-panel div {
    padding: 14px 12px;
  }

  .hero-panel div + div {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero-panel strong {
    font-size: 25px;
  }

  .hero-panel span {
    font-size: 11px;
  }

  .product-grid,
  .format-list,
  .assortment-grid,
  .catalog-grid,
  .terms-grid,
  .service-list,
  .shop-grid,
  .public-contacts,
  .seed-photo-grid {
    grid-template-columns: 1fr;
  }

  .shop-item.wide {
    grid-column: auto;
  }

  .product-card,
  .format-list article,
  .assortment-card,
  .service-list article {
    min-height: auto;
  }

  .footer {
    display: grid;
  }
}
