:root {
  --bg: #fffaf1;
  --surface: #ffffff;
  --surface-warm: #f7ecd8;
  --text: #2c2118;
  --muted: #766756;
  --line: #e9dcc8;
  --wheat: #d99f43;
  --wheat-dark: #a9671f;
  --brown: #4a2f1d;
  --olive: #657044;
  --cream: #fff6e6;
  --shadow: 0 22px 70px rgba(87, 55, 25, 0.12);
  --soft-shadow: 0 14px 40px rgba(87, 55, 25, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 241, 0.88);
  border-bottom: 1px solid rgba(233, 220, 200, 0.8);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 82px;
}

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

.brand-logo {
  position: relative;
  display: grid;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  place-items: center;
}

.brand-logo img {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 100%;
  max-height: 100%;
  border-radius: 50%;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(155, 92, 27, 0.18));
}

.brand-logo img.is-hidden {
  display: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #e7b45e, #9b5c1b);
  color: #fff9ed;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(155, 92, 27, 0.22);
}

.brand-fallback {
  position: absolute;
  inset: 6px;
  z-index: 1;
  width: auto;
  height: auto;
}

.brand strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: 0;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
  margin-top: 4px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--brown);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--brown);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, #e0a03a, #9c5c1d);
  color: #fffaf0;
  box-shadow: 0 16px 36px rgba(156, 92, 29, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--line);
  color: var(--brown);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(12px);
}

.btn-light {
  background: #fffaf0;
  color: var(--brown);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

.btn-outline-light {
  border-color: rgba(255, 250, 240, 0.5);
  color: #fffaf0;
}

.btn-small {
  min-height: 44px;
  padding: 12px 16px;
  font-size: 14px;
}

.section-pad {
  padding: 104px 0;
}

.section-pad.compact {
  padding-top: 86px;
}

.muted {
  background: #fbf3e6;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.96) 0%, rgba(255, 250, 241, 0.86) 50%, rgba(255, 244, 222, 0.2) 100%),
    radial-gradient(circle at 86% 16%, rgba(224, 160, 58, 0.1), transparent 32%),
    radial-gradient(circle at 12% 72%, rgba(101, 112, 68, 0.11), transparent 28%),
    url("assets/images/bg-img.png") 58% center / cover no-repeat,
    linear-gradient(180deg, #fffaf1 0%, #f7e6c9 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12) 25%, transparent 25%) 0 0 / 34px 34px,
    linear-gradient(225deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%) 0 0 / 34px 34px;
  opacity: 0.42;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 0;
}

.hero-content {
  max-width: 900px;
  padding: 24px 0 36px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--wheat-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 26px;
  font-size: clamp(50px, 6.4vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.25;
}

.hero-lead,
.section-head p,
.section-text,
.trust-copy p,
.final-inner p {
  color: var(--muted);
  font-size: 18px;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

.badges span {
  border: 1px solid rgba(169, 103, 31, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--brown);
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(87, 55, 25, 0.07);
  backdrop-filter: blur(12px);
}

.hero-visual {
  display: none;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-visual::before {
  width: 520px;
  height: 520px;
  right: -180px;
  top: -160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.hero-visual::after {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(44, 33, 24, 0.01), rgba(44, 33, 24, 0.04)),
    repeating-linear-gradient(78deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 24px);
  opacity: 0.2;
}

.hero-logo-card {
  position: absolute;
  left: 50%;
  top: 44%;
  z-index: 2;
  width: 210px;
  height: 210px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-logo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(74, 47, 29, 0.2));
}

.visual-card {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: min(330px, 76%);
  min-height: 390px;
  transform: translate(-50%, -48%);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 28px 28px 42px 42px;
  background:
    linear-gradient(180deg, rgba(255, 253, 245, 0.68), rgba(239, 220, 185, 0.58));
  box-shadow:
    0 34px 70px rgba(87, 55, 25, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 38px;
  text-align: center;
  overflow: hidden;
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(169, 103, 31, 0.14);
  border-radius: 22px 22px 34px 34px;
  pointer-events: none;
}

.sack-watermark {
  position: absolute;
  z-index: 0;
  width: 245px;
  max-width: 78%;
  opacity: 0.22;
  filter: saturate(0.9) drop-shadow(0 14px 24px rgba(74, 47, 29, 0.1));
  transform: translateY(-12px) scale(1.06);
  pointer-events: none;
}

.visual-card span {
  position: relative;
  z-index: 1;
  color: var(--wheat-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.visual-card strong {
  position: relative;
  z-index: 1;
  margin-top: 0;
  font-size: 48px;
  line-height: 1;
}

.visual-card small {
  position: relative;
  z-index: 1;
  color: var(--muted);
  margin-top: 22px;
  font-weight: 700;
}

.grain-icon {
  position: relative;
  z-index: 1;
  width: 78px;
  height: 78px;
  margin-bottom: 24px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 22%, #d99f43 0 10px, transparent 11px),
    radial-gradient(ellipse at 35% 42%, #d99f43 0 9px, transparent 10px),
    radial-gradient(ellipse at 65% 42%, #d99f43 0 9px, transparent 10px),
    radial-gradient(ellipse at 50% 63%, #d99f43 0 10px, transparent 11px),
    linear-gradient(#9b5c1b, #9b5c1b) center / 3px 72px no-repeat,
    #fff3d9;
}

.quality-card {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
}

.quality-card small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.quality-card {
  right: 30px;
  bottom: 30px;
  top: auto;
  width: min(220px, calc(100% - 60px));
  display: block;
  padding: 18px 20px;
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 253, 248, 0.72);
  backdrop-filter: blur(10px);
}

.quality-card span {
  display: block;
  color: var(--olive);
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.section-head {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-head.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.65fr);
  gap: 40px;
  max-width: none;
  align-items: end;
}

.card,
.price-block,
.delivery-panel,
.request-form,
.certificate-card,
.production-card,
.calculator-card {
  border: 1px solid rgba(233, 220, 200, 0.82);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--soft-shadow);
}

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

.audience-card {
  padding: 26px;
}

.card-icon {
  display: inline-flex;
  color: var(--wheat-dark);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 30px;
}

.audience-card p,
.benefit-card p {
  color: var(--muted);
  margin-bottom: 0;
}

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

.benefit-card {
  padding: 28px;
}

.line-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  border-radius: var(--radius);
  background: #fff4dd;
  position: relative;
}

.line-icon::before,
.line-icon::after {
  content: "";
  position: absolute;
  background: var(--wheat-dark);
}

.line-icon.mill::before {
  width: 24px;
  height: 20px;
  left: 11px;
  bottom: 10px;
  clip-path: polygon(50% 0, 100% 45%, 100% 100%, 0 100%, 0 45%);
}

.line-icon.wheat::before {
  width: 3px;
  height: 28px;
  left: 22px;
  top: 9px;
}

.line-icon.wheat::after {
  width: 24px;
  height: 24px;
  left: 11px;
  top: 9px;
  background:
    radial-gradient(ellipse at 30% 25%, var(--wheat-dark) 0 5px, transparent 6px),
    radial-gradient(ellipse at 70% 45%, var(--wheat-dark) 0 5px, transparent 6px),
    radial-gradient(ellipse at 32% 68%, var(--wheat-dark) 0 5px, transparent 6px);
}

.line-icon.price::before {
  width: 24px;
  height: 24px;
  left: 11px;
  top: 11px;
  border-radius: 50%;
}

.line-icon.price::after {
  width: 12px;
  height: 3px;
  left: 17px;
  top: 22px;
  background: #fff4dd;
}

.line-icon.truck::before {
  width: 26px;
  height: 16px;
  left: 8px;
  top: 15px;
  border-radius: 3px;
}

.line-icon.truck::after {
  width: 28px;
  height: 5px;
  left: 9px;
  bottom: 9px;
  border-radius: 999px;
}

.line-icon.cert::before {
  width: 22px;
  height: 28px;
  left: 12px;
  top: 9px;
  border-radius: 3px;
}

.line-icon.cert::after {
  width: 10px;
  height: 10px;
  right: 9px;
  bottom: 8px;
  border-radius: 50%;
  background: var(--olive);
}

.line-icon.stock::before {
  width: 28px;
  height: 20px;
  left: 9px;
  top: 15px;
  border-radius: 3px;
}

.line-icon.stock::after {
  width: 18px;
  height: 3px;
  left: 14px;
  top: 21px;
  background: #fff4dd;
}

.price-layout {
  display: grid;
  gap: 24px;
}

.production-section {
  background: #fffaf1;
}

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

.production-card {
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.production-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.production-image {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: linear-gradient(145deg, #fff7e8, #ead7b7);
}

.production-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.production-card:hover .production-image img {
  transform: scale(1.04);
}

.production-card h3 {
  margin: 0;
  padding: 22px 24px 24px;
}

.image-placeholder {
  display: none;
  min-height: 220px;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(247, 236, 216, 0.9)),
    repeating-linear-gradient(45deg, transparent 0 16px, rgba(217, 159, 67, 0.08) 16px 17px);
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.image-missing img {
  display: none;
}

.image-missing .image-placeholder {
  display: grid;
}

.price-block {
  overflow: hidden;
}

.price-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 30px;
  background: linear-gradient(135deg, #fffdf7, #f7ecd8);
  border-bottom: 1px solid var(--line);
}

.price-title h3,
.price-title span {
  margin: 0;
}

.price-title span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

td {
  font-weight: 700;
}

tbody tr:last-child td {
  border-bottom: 0;
}

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

.calculator-section {
  padding-top: 0;
}

.calculator-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
  gap: 26px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 232, 0.96)),
    var(--surface);
  box-shadow: var(--shadow);
}

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

.calculator-comment {
  grid-column: 1 / -1;
}

.calculator-form label {
  display: grid;
  gap: 8px;
  color: var(--brown);
  font-size: 14px;
  font-weight: 900;
}

.calculator-form input,
.calculator-form select,
.calculator-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf8;
  color: var(--text);
  padding: 14px 15px;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.calculator-form textarea {
  resize: vertical;
}

.calculator-form input:focus,
.calculator-form select:focus,
.calculator-form textarea:focus {
  border-color: var(--wheat);
  box-shadow: 0 0 0 4px rgba(217, 159, 67, 0.16);
}

.calculator-result {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(74, 47, 29, 0.96), rgba(118, 73, 32, 0.94)),
    var(--brown);
  color: #fffaf0;
  padding: 28px;
}

.result-label {
  color: rgba(255, 250, 240, 0.68);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calculator-result h3 {
  margin: 0;
  color: #fffaf0;
  font-size: 24px;
}

.calculator-result dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.calculator-result dl div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 250, 240, 0.16);
}

.calculator-result dt {
  color: rgba(255, 250, 240, 0.68);
  font-weight: 700;
}

.calculator-result dd {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  text-align: right;
}

.calculator-result p {
  margin: 0;
  color: rgba(255, 250, 240, 0.72);
}

.delivery-grid,
.trust-grid,
.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 0.65fr);
  gap: 54px;
  align-items: center;
}

.section-text {
  margin-bottom: 0;
}

.delivery-panel {
  padding: 30px;
}

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

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--brown);
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 46%, #fff 47% 56%, transparent 57%),
    var(--olive);
}

.address-box {
  padding: 20px;
  border-radius: var(--radius);
  background: #fff7e8;
}

.address-box span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.address-box strong {
  display: block;
  margin-top: 5px;
  line-height: 1.35;
}

.trust-copy p {
  margin-bottom: 0;
}

.certificate-card {
  overflow: hidden;
  padding: 18px;
}

.certificate-link {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff7e8;
}

.certificate-link img {
  display: block;
  width: 100%;
  max-height: 390px;
  object-fit: contain;
  background: #fff;
  transition: transform 0.25s ease;
}

.certificate-link:hover img {
  transform: scale(1.015);
}

.certificate-copy {
  padding: 22px 6px 4px;
}

.certificate-copy h3 {
  margin-bottom: 8px;
}

.certificate-copy p {
  color: var(--muted);
  margin-bottom: 0;
}

.form-section {
  padding-top: 36px;
}

.request-form {
  display: grid;
  gap: 16px;
  padding: 30px;
}

.request-form label {
  display: grid;
  gap: 8px;
  color: var(--brown);
  font-size: 14px;
  font-weight: 800;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf8;
  color: var(--text);
  padding: 14px 15px;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.request-form textarea {
  resize: vertical;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: var(--wheat);
  box-shadow: 0 0 0 4px rgba(217, 159, 67, 0.16);
}

.final-cta {
  padding: 90px 0;
  background:
    linear-gradient(135deg, rgba(74, 47, 29, 0.94), rgba(108, 65, 30, 0.92)),
    linear-gradient(45deg, #d99f43, #657044);
  color: #fffaf0;
}

.final-inner {
  max-width: 820px;
  text-align: center;
}

.final-inner .eyebrow,
.final-inner p {
  color: rgba(255, 250, 240, 0.78);
}

.final-inner .hero-actions {
  justify-content: center;
}

.site-footer {
  padding: 42px 0;
  background: #24170f;
  color: rgba(255, 250, 240, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr auto 0.9fr;
  gap: 34px;
  align-items: start;
}

.footer-brand {
  color: #fffaf0;
  margin-bottom: 16px;
}

.footer-brand small {
  color: rgba(255, 250, 240, 0.62);
}

.site-footer p {
  margin-bottom: 0;
}

.footer-links {
  display: grid;
  gap: 10px;
  font-weight: 800;
}

.footer-links a:hover {
  color: #fffaf0;
}

.footer-note {
  color: rgba(255, 250, 240, 0.58);
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

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

  .nav,
  .header-cta {
    display: none;
  }

  .nav.is-open {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 92px;
    display: grid;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 253, 248, 0.98);
    box-shadow: var(--shadow);
  }

  .nav.is-open a {
    padding: 13px 12px;
    border-radius: 6px;
  }

  .nav.is-open a:hover {
    background: #fff4dd;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .delivery-grid,
  .trust-grid,
  .form-grid,
  .section-head.split {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 0;
  }

  .hero-visual {
    display: none;
  }

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

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

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

  .footer-note {
    grid-column: 1 / -1;
  }
}

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

  .site-header {
    position: sticky;
  }

  .header-inner {
    min-height: 72px;
  }

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

  .brand-logo {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .brand-fallback {
    inset: 3px;
  }

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

  .brand small {
    font-size: 11px;
  }

  .section-pad {
    padding: 72px 0;
  }

  .hero {
    padding-top: 52px;
    background:
      linear-gradient(180deg, rgba(255, 250, 241, 0.94) 0%, rgba(255, 250, 241, 0.82) 52%, rgba(255, 244, 222, 0.36) 100%),
      url("assets/images/bg-img.png") 54% top / cover no-repeat,
      linear-gradient(180deg, #fffaf1 0%, #f7e6c9 100%);
  }

  h1 {
    font-size: 43px;
    line-height: 1.02;
  }

  h2 {
    font-size: 31px;
  }

  .hero-lead,
  .section-head p,
  .section-text,
  .trust-copy p,
  .final-inner p {
    font-size: 16px;
  }

  .hero-actions,
  .hero-actions .btn,
  .center-action .btn,
  .request-form .btn {
    width: 100%;
  }

  .badges {
    align-items: stretch;
  }

  .badges span {
    width: 100%;
  }

  .visual-card {
    width: 250px;
    min-height: 286px;
    padding: 24px;
    top: 49%;
    transform: translate(-50%, -50%);
  }

  .hero-logo-card {
    width: 150px;
    height: 150px;
    top: 40%;
  }

  .sack-watermark {
    width: 190px;
    opacity: 0.2;
  }

  .visual-card strong {
    font-size: 38px;
  }

  .visual-card small {
    display: block;
    max-width: 160px;
    margin-top: 18px;
  }

  .quality-card {
    right: 14px;
    bottom: 14px;
    width: 168px;
    padding: 15px 16px;
  }

  .audience-grid,
  .benefit-grid,
  .production-grid,
  .calculator-form {
    grid-template-columns: 1fr;
  }

  .audience-card,
  .benefit-card,
  .delivery-panel,
  .request-form,
  .calculator-card {
    padding: 22px;
  }

  .production-image {
    height: 230px;
  }

  .calculator-result {
    padding: 24px;
  }

  .calculator-result .btn {
    width: 100%;
  }

  .price-title {
    display: grid;
    padding: 24px 22px;
  }

  table {
    min-width: 0;
  }

  thead {
    display: none;
  }

  tbody,
  tr,
  td {
    display: block;
    width: 100%;
  }

  tr {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
  }

  tbody tr:last-child {
    border-bottom: 0;
  }

  td {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: baseline;
    padding: 8px 0;
    border-bottom: 0;
    text-align: right;
  }

  td::before {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-align: left;
    text-transform: uppercase;
  }

  td:nth-child(1)::before {
    content: "Наименование";
  }

  td:nth-child(2)::before {
    content: "Фасовка";
  }

  td:nth-child(3)::before {
    content: "Цена за 1 кг";
  }

  td:nth-child(4)::before {
    content: "Цена за мешок";
  }

  .final-cta {
    padding: 72px 0;
  }

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

@media (max-width: 390px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .btn {
    padding-left: 16px;
    padding-right: 16px;
  }

  .visual-card {
    width: 220px;
    min-height: 270px;
  }

  .hero-logo-card {
    width: 140px;
    height: 140px;
  }

  .sack-watermark {
    width: 170px;
  }

}
