:root {
  --color-red: #8d1f18;
  --color-red-dark: #6b1711;
  --color-red-light: #a82a21;
  --color-cream: #fff8ed;
  --color-cream-warm: #fdf3e5;
  --color-cream-dark: #f5eadb;
  --color-white: #ffffff;
  --color-ink: #261613;
  --color-ink-light: #4a3b36;
  --color-ink-muted: #7b6a62;
  --color-gold: #c9a66b;
  --color-gold-light: #e3d0b0;
  --color-line: #e7d7c4;
  --color-line-strong: #d4c3b0;
  --color-success: #2d6f3e;
  --color-danger: #9f241d;
  --color-danger-soft: rgba(159, 36, 29, 0.08);

  --container-max: 1180px;
  --container-narrow: 760px;

  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 2px 8px rgba(38, 22, 19, 0.06);
  --shadow-md: 0 10px 28px rgba(38, 22, 19, 0.1);
  --shadow-lg: 0 18px 44px rgba(38, 22, 19, 0.14);
  --shadow-product: 0 18px 34px rgba(38, 22, 19, 0.18);

  --button-height: 52px;
  --button-height-sm: 44px;
  --button-height-lg: 60px;
  --field-height: 56px;
  --header-height: 84px;

  --font-base: 16px/1.65 system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --font-heading: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--color-cream);
  color: var(--color-ink);
  font: var(--font-base);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-red);
}

h1, h2, h3, p {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
input,
textarea {
  font: inherit;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  color: var(--color-red);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--color-red);
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: var(--button-height);
  padding: 0 var(--space-xl);
  border: 0;
  border-radius: var(--radius-md);
  background: var(--color-red);
  color: var(--color-white);
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.button:hover {
  background: var(--color-red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.button:active {
  transform: translateY(0);
}

.button:focus-visible,
.summary__remove:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 3px;
}

.button--small {
  min-height: var(--button-height-sm);
  padding-inline: var(--space-lg);
  font-size: 0.95rem;
}

.button--large {
  min-height: var(--button-height-lg);
  padding-inline: var(--space-2xl);
  font-size: 1.05rem;
}

.button--outline {
  background: transparent;
  color: var(--color-red);
  border: 2px solid var(--color-red);
  box-shadow: none;
}

.button--outline:hover {
  background: var(--color-red);
  color: var(--color-white);
}

.button--outline.vk-disabled {
  border-color: var(--color-line-strong);
  color: var(--color-ink-muted);
  background: var(--color-cream-dark);
  cursor: not-allowed;
}

.button--outline.vk-disabled:hover {
  background: var(--color-cream-dark);
  color: var(--color-ink-muted);
  transform: none;
  box-shadow: none;
}

.header,
.hero,
.benefits,
.section,
.footer {
  padding-inline: clamp(16px, 3vw, 28px);
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  min-height: var(--header-height);
  background: rgba(255, 248, 237, 0.96);
  border-bottom: 1px solid var(--color-line);
  backdrop-filter: blur(10px);
}

.brand,
.header__right,
.hero__content,
.hero__visual,
.card__body,
.order__info,
.order__form,
.about__body,
.contacts__text,
.contacts__details,
.footer__info {
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  color: var(--color-ink);
  text-decoration: none;
}

.brand img {
  width: 62px;
}

.brand__name {
  max-width: 180px;
  font-weight: 800;
  font-size: 1.12rem;
  line-height: 1.1;
}

.header nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 1.8vw, 28px);
}

.header nav a {
  position: relative;
  color: var(--color-ink);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
  transition: color var(--transition-fast);
}

.header nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--color-red);
  transition: width var(--transition-fast);
}

.header nav a:hover {
  color: var(--color-red);
}

.header nav a:hover::after {
  width: 100%;
}

.nav__contact {
  display: none;
}

.header__right {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.phone {
  color: var(--color-ink);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.phone:hover {
  color: var(--color-red);
}

.menu {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
}

.menu:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 2px;
}

.menu__icon,
.menu__icon::before,
.menu__icon::after {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-red);
  border-radius: 999px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.menu__icon {
  position: relative;
  margin: auto;
}

.menu__icon::before,
.menu__icon::after {
  content: '';
  position: absolute;
  left: 0;
}

.menu__icon::before {
  top: -8px;
}

.menu__icon::after {
  top: 8px;
}

.menu[aria-expanded="true"] .menu__icon {
  background: transparent;
}

.menu[aria-expanded="true"] .menu__icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu[aria-expanded="true"] .menu__icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-top: clamp(28px, 5vw, 64px);
  padding-bottom: clamp(32px, 6vw, 72px);
  min-height: min(calc(100vh - var(--header-height)), 680px);
  min-height: min(calc(100svh - var(--header-height)), 680px);
}

.hero__content {
  max-width: 560px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.05rem, 4vw, 3.55rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-lg);
}

.hero__lead {
  max-width: 500px;
  margin-bottom: var(--space-xl);
  color: var(--color-ink-light);
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.hero__badges li {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  min-width: 0;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-cream-dark);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  color: var(--color-ink-light);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
}

.hero__badges li::before {
  content: '';
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  background: var(--color-red);
  border-radius: 50%;
}

.hero__visual {
  display: flex;
  justify-content: center;
  overflow: clip;
}

.hero__stage {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: clamp(18px, 4vw, 40px);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, var(--color-cream-dark) 0%, var(--color-cream) 72%);
  box-shadow: inset 0 0 80px rgba(201, 166, 107, 0.18);
}

.hero__stage::before {
  content: '';
  position: absolute;
  inset: 10%;
  border: 1px dashed var(--color-line-strong);
  border-radius: 50%;
  opacity: 0.45;
}

.hero__product {
  position: relative;
  z-index: 2;
  filter: drop-shadow(var(--shadow-product));
}

.hero__product:nth-child(1) {
  width: 42%;
  transform: translateX(10%) translateY(4%);
  z-index: 1;
}

.hero__product:nth-child(2) {
  width: 46%;
  transform: translateX(-6%);
  z-index: 3;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-lg);
  max-width: var(--container-max);
  margin-inline: auto;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-2xl);
}

.benefits__item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.benefits__icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  fill: var(--color-red);
}

.benefits__item span {
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.35;
}

.section {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-top: clamp(48px, 7vw, 92px);
  padding-bottom: clamp(48px, 7vw, 92px);
}

.section__header {
  max-width: 720px;
  margin-bottom: var(--space-2xl);
}

.section h2 {
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: -0.015em;
}

.section__intro {
  max-width: 680px;
  color: var(--color-ink-light);
  font-size: 1.04rem;
  line-height: 1.65;
}

.catalog {
  background: linear-gradient(to bottom, var(--color-cream), var(--color-cream-warm) 52%, var(--color-cream));
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 28px);
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card--blocked {
  border-color: rgba(159, 36, 29, 0.18);
}

.card__visual {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  padding: clamp(18px, 4vw, 28px);
  background: var(--color-cream-warm);
}

.card__visual::before {
  content: '';
  position: absolute;
  width: 82%;
  height: 58%;
  bottom: 10%;
  background: radial-gradient(ellipse at center, rgba(38, 22, 19, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.card img {
  position: absolute;
  inset: 0;
  padding: inherit;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(38, 22, 19, 0.15));
}

.card__tag {
  position: absolute;
  top: var(--space-lg);
  left: var(--space-lg);
  z-index: 2;
  max-width: calc(100% - 32px);
  padding: var(--space-xs) var(--space-md);
  background: var(--color-red);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-sm);
}

.card__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex: 1;
  padding: clamp(20px, 3vw, 28px);
}
.card h3,
.card__desc,
.card__availability,
.card__price {
  text-align: center;
}

.card h3 {
  font-size: 1.32rem;
  font-weight: 820;
  line-height: 1.2;
}

.card__meta {
  color: var(--color-ink-muted);
  font-size: 0.94rem;
}

.card__desc,
.card__availability {
  color: var(--color-ink-light);
  line-height: 1.58;
}

.card__availability {
  margin-bottom: var(--space-xs);
  font-size: 0.94rem;
  font-weight: 700;
}

.card__price {
  margin-top: auto;
  color: var(--color-red);
  font-size: 1.24rem;
  font-weight: 820;
}

.card__order {
  display: flex;
  align-items: end;
  gap: var(--space-md);
  width: 100%;
}

.card__qty-label {
  display: grid;
  gap: var(--space-xs);
  min-width: 104px;
  color: var(--color-ink-light);
  font-size: 0.94rem;
  font-weight: 700;
}

.card__order input {
  width: 100%;
  min-height: var(--button-height-sm);
  padding-inline: var(--space-sm);
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  text-align: center;
  font-weight: 700;
}

.card__order input:focus-visible,
.form-field input:focus,
.form-field textarea:focus,
.radio-label input:focus-visible + .radio-label__box,
.consent input:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 2px;
}

.card .button {
  flex: 1;
  min-height: var(--button-height-sm);
}

.card__status {
  min-height: 40px;
  color: var(--color-danger);
  font-size: 0.92rem;
  line-height: 1.45;
}

.delivery__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 28px);
}

.delivery__grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.delivery-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(22px, 4vw, 34px);
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.delivery-card__flag {
  align-self: flex-start;
  padding: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-lg);
  border-radius: var(--radius-sm);
  background: var(--color-red);
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.delivery-card__flag--local {
  background: var(--color-gold);
  color: var(--color-ink);
}

.delivery-card__flag--accent {
  background: var(--color-ink);
}

.delivery-card h3 {
  margin-bottom: var(--space-lg);
  font-size: 1.42rem;
  font-weight: 820;
  line-height: 1.18;
}

.delivery-card__list {
  display: grid;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.delivery-card__list li {
  position: relative;
  padding-left: var(--space-lg);
  color: var(--color-ink-light);
  line-height: 1.5;
}

.delivery-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
}

.delivery-card__note {
  margin-top: auto;
  margin-bottom: var(--space-lg);
  color: var(--color-ink-muted);
  line-height: 1.55;
}

.delivery-card .button {
  align-self: flex-start;
}

.order {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.order__info {
  position: sticky;
  top: calc(var(--header-height) + 16px);
}

.order__lead {
  margin-bottom: var(--space-xl);
  color: var(--color-ink-light);
  font-size: 1.04rem;
}

.order__summary-wrap,
.order__contact-card {
  padding: clamp(20px, 3vw, 28px);
  background: var(--color-cream-dark);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
}

.order__summary-wrap {
  margin-bottom: var(--space-lg);
}

.order__summary-wrap h3,
.order__contact-card h3 {
  margin-bottom: var(--space-md);
  font-size: 1.08rem;
  font-weight: 820;
}

.summary {
  color: var(--color-ink-light);
  line-height: 1.55;
}

.summary__list {
  display: grid;
  gap: var(--space-sm);
}

.summary__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: 12px 14px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
}

.summary__text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.summary__text strong,
.contacts__value,
.footer__info a,
.footer__info p {
  overflow-wrap: anywhere;
}

.summary__text span {
  color: var(--color-ink-muted);
  font-size: 0.93rem;
}

.summary__remove {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(141, 31, 24, 0.22);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-red);
  font-weight: 700;
  cursor: pointer;
}

.order-alert {
  margin-top: var(--space-md);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: var(--color-danger-soft);
  color: var(--color-danger);
  font-size: 0.95rem;
  line-height: 1.5;
}

.order-alert[hidden] {
  display: none;
}

.order__contact-card ol {
  display: grid;
  gap: var(--space-md);
  counter-reset: step;
}

.order__contact-card li {
  position: relative;
  padding-left: var(--space-2xl);
  color: var(--color-ink-light);
  line-height: 1.5;
}

.order__contact-card li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -1px;
  left: 0;
  display: flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-red);
  color: var(--color-white);
  font-size: 0.86rem;
  font-weight: 800;
}

.order__form {
  display: grid;
  gap: var(--space-lg);
  padding: clamp(22px, 4vw, 34px);
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin: 0;
  padding: 0;
  border: 0;
}

.form-group legend {
  margin-bottom: var(--space-sm);
  font-size: 1.04rem;
  font-weight: 820;
}

.form-hint {
  margin-bottom: var(--space-md);
  color: var(--color-ink-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-hint--ozon {
  margin-bottom: 0;
}

.form-group--ozon {
  padding: 18px 18px 16px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-cream-warm);
}

.radio-group {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
}

.radio-label {
  display: flex;
  cursor: pointer;
}

.radio-label input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

.radio-label__box {
  width: 100%;
  min-height: 72px;
  padding: 14px 16px;
  border: 2px solid var(--color-line);
  border-radius: var(--radius-md);
  color: var(--color-ink-light);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  transition: border-color var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.radio-label input:checked + .radio-label__box {
  border-color: var(--color-red);
  background: rgba(141, 31, 24, 0.06);
  color: var(--color-red);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-lg);
}

.form-field {
  display: grid;
  gap: var(--space-xs);
}

.form-field__label {
  font-size: 0.95rem;
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: var(--field-height);
  padding-inline: var(--space-md);
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-md);
  background: var(--color-cream);
  color: var(--color-ink);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.form-field textarea {
  min-height: 120px;
  padding-block: var(--space-md);
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--color-red);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(141, 31, 24, 0.08);
  outline: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--color-ink-muted);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  color: var(--color-ink-light);
  cursor: pointer;
  line-height: 1.5;
}

.consent input {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  accent-color: var(--color-red);
}

.consent--compact {
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.form-result {
  min-height: 24px;
  color: var(--color-success);
  font-weight: 700;
  line-height: 1.45;
}

.about__card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(24px, 5vw, 42px);
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.about__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 34px);
  background: var(--color-cream-warm);
  border-radius: var(--radius-lg);
}

.about__logo img {
  max-width: 280px;
  filter: drop-shadow(var(--shadow-md));
}

.about__text {
  margin-bottom: var(--space-xl);
  color: var(--color-ink-light);
  font-size: 1.06rem;
  line-height: 1.65;
}

.about__address {
  display: grid;
  gap: var(--space-xs);
  margin-bottom: var(--space-xl);
  padding: var(--space-lg);
  border-left: 4px solid var(--color-red);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--color-cream-dark);
  font-style: normal;
}

.about__person {
  font-size: 1.08rem;
  font-weight: 820;
}

.about__street {
  font-weight: 700;
}

.about__landmark {
  color: var(--color-ink-muted);
}

.about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.contacts {
  padding-top: var(--space-2xl);
}

.contacts__card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr) auto;
  gap: clamp(20px, 4vw, 40px);
  align-items: center;
  padding: clamp(24px, 5vw, 40px);
  background: var(--color-red);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contacts__card h2 {
  margin-bottom: var(--space-sm);
  font-size: clamp(1.7rem, 2.6vw, 2rem);
}

.contacts__card p {
  opacity: 0.92;
}

.contacts__details {
  display: grid;
  gap: var(--space-md);
}

.contacts__detail {
  display: grid;
  gap: var(--space-xs);
}

.contacts__label {
  opacity: 0.8;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contacts__value {
  color: var(--color-white);
  text-decoration: none;
  font-size: 1.06rem;
  font-weight: 700;
}

.contacts__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contacts__actions .button {
  background: var(--color-white);
  color: var(--color-red);
}

.contacts__actions .button:hover {
  background: var(--color-cream);
}

.contacts__actions .button--outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.contacts__actions .button--outline:hover {
  background: var(--color-white);
  color: var(--color-red);
}

.footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: var(--space-xl);
  align-items: center;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-xl);
  border-top: 1px solid var(--color-line);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  color: var(--color-ink);
  font-weight: 800;
}

.footer__brand img {
  width: 56px;
}

.footer__info {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md) var(--space-xl);
  color: var(--color-ink-light);
  font-size: 0.95rem;
}

.footer__info a {
  color: var(--color-ink-light);
  text-decoration: none;
}

.footer__info a:hover {
  color: var(--color-red);
  text-decoration: underline;
}

.footer__copy {
  color: var(--color-ink-muted);
  font-size: 0.9rem;
}

.mobile-order {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 60;
  min-height: 56px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.privacy {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: clamp(32px, 6vw, 64px) clamp(16px, 3vw, 28px) clamp(48px, 8vw, 84px);
}

.privacy a {
  display: inline-flex;
  margin-bottom: var(--space-xl);
  font-weight: 700;
  text-decoration: none;
}

.privacy h1 {
  margin-bottom: var(--space-lg);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.1;
}

.privacy h2 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
}

.privacy p {
  color: var(--color-ink-light);
}

@media (max-width: 1180px) {
  .header__right {
    gap: var(--space-md);
  }

  .phone {
    font-size: 0.95rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .delivery__grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contacts__card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .contacts__actions {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 1100px) {
  :root {
    --header-height: 72px;
  }

  body {
    padding-bottom: 0;
  }

  .header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand img {
    width: 52px;
  }

  .brand__name {
    max-width: 150px;
    font-size: 1rem;
  }

  .menu {
    display: flex;
  }

  .header__right {
    display: none;
  }

  .header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 20px;
    background: rgba(255, 248, 237, 0.985);
    border-bottom: 1px solid var(--color-line);
    box-shadow: var(--shadow-md);
  }

  .header nav.open {
    display: flex;
  }

  .header nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--color-line);
    font-size: 1.02rem;
  }

  .header nav a::after {
    display: none;
  }

  .nav__contact {
    display: grid;
    gap: var(--space-md);
    padding-top: var(--space-md);
  }

  .nav__contact .button {
    width: 100%;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
  }

  .hero__content {
    max-width: 640px;
    margin-inline: auto;
  }

  .hero__lead,
  .section__intro {
    margin-inline: auto;
  }

  .hero__actions,
  .hero__badges {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }

  .order {
    grid-template-columns: 1fr;
  }

  .order__info {
    position: static;
  }

  .about__card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 104px;
  }

  .benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .delivery__grid,
  .delivery__grid--three,
  .radio-group,
  .form-row,
  .contacts__card,
  .footer {
    grid-template-columns: 1fr;
  }

  .delivery-card .button,
  .contacts__actions .button {
    width: 100%;
  }

  .contacts__actions {
    flex-direction: column;
  }

  .footer {
    text-align: center;
  }

  .footer__brand,
  .footer__info {
    justify-content: center;
  }
}

@media (max-width: 680px) {
  .hero h1 {
    font-size: clamp(1.9rem, 8vw, 2.5rem);
  }

  .hero__stage {
    width: min(100%, 360px);
  }

  .benefits {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .card__order {
    flex-direction: column;
    align-items: stretch;
  }

  .card__qty-label {
    min-width: 0;
  }

  .summary__item {
    align-items: flex-start;
    flex-direction: column;
  }

  .summary__remove {
    width: 100%;
  }

  .mobile-order {
    display: flex;
  }
}

@media (max-width: 480px) {
  .brand__name {
    max-width: 124px;
    font-size: 0.92rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .button,
  .about__actions .button,
  .order__form > .button {
    width: 100%;
  }

  .hero__badges li,
  .benefits__item {
    width: 100%;
  }

  .benefits__item {
    align-items: flex-start;
  }

  .about__actions {
    flex-direction: column;
  }
}

@media (max-width: 360px) {
  .hero {
    padding-top: 20px;
  }

  .hero__stage {
    width: min(100%, 300px);
    padding: 18px;
  }

  .about__card {
    padding: 20px;
  }

  .about__logo {
    padding: 14px;
  }

  .about__logo img {
    width: min(100%, 220px);
  }

  .about__address {
    padding: 16px;
  }

  .button,
  .button--large {
    padding-inline: var(--space-lg);
  }

  .radio-label__box {
    min-height: 64px;
    padding-inline: 12px;
  }
}
