:root {
  --paper: #f7f4ec;
  --paper-soft: #fbfaf6;
  --sage: #e7eee4;
  --forest: #214d39;
  --forest-deep: #153628;
  --ink: #142832;
  --muted: #6b7168;
  --ochre: #c9942f;
  --rust: #b85f32;
  --blue: #2e6782;
  --line: rgba(33, 77, 57, 0.16);
  --shadow: 0 24px 70px rgba(21, 54, 40, 0.13);
  --radius: 8px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --body-wash:
    radial-gradient(circle at 14% 18%, rgba(231, 238, 228, 0.72), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.62), transparent 44%, rgba(255, 255, 255, 0.35));
  --hero-filter: saturate(1);
  --hero-frame: rgba(33, 77, 57, 0.16);
  --button-fill: var(--forest);
  --cover-shade: rgba(247, 244, 236, 0.98);
}

body[data-theme="taiga"] {
  --paper: #edf4ea;
  --paper-soft: #fbfff8;
  --sage: #d7e7d3;
  --forest: #0f4a34;
  --forest-deep: #082b1f;
  --ink: #0e2824;
  --muted: #526b58;
  --ochre: #b78e24;
  --rust: #9b6432;
  --blue: #1f6570;
  --line: rgba(15, 74, 52, 0.22);
  --shadow: 0 26px 80px rgba(8, 43, 31, 0.2);
  --body-wash:
    radial-gradient(circle at 12% 14%, rgba(177, 213, 170, 0.78), transparent 28%),
    radial-gradient(circle at 86% 32%, rgba(31, 101, 112, 0.16), transparent 26%),
    linear-gradient(115deg, rgba(255,255,255,0.62), rgba(225,237,218,0.74));
  --hero-filter: saturate(1.08) contrast(1.04);
  --hero-frame: rgba(15, 74, 52, 0.3);
  --button-fill: linear-gradient(135deg, #0f4a34, #2d6f4a);
}

body[data-theme="altai"] {
  --paper: #fbecd7;
  --paper-soft: #fff8eb;
  --sage: #ece2c2;
  --forest: #3d5636;
  --forest-deep: #27351f;
  --ink: #2b2d26;
  --muted: #776752;
  --ochre: #d39525;
  --rust: #b86033;
  --blue: #2f6a7f;
  --line: rgba(143, 95, 36, 0.24);
  --shadow: 0 26px 80px rgba(126, 82, 32, 0.18);
  --body-wash:
    radial-gradient(circle at 20% 20%, rgba(226, 179, 84, 0.28), transparent 26%),
    radial-gradient(circle at 82% 28%, rgba(47, 106, 127, 0.14), transparent 28%),
    linear-gradient(115deg, rgba(255,250,239,0.94), rgba(244,224,189,0.78));
  --hero-filter: sepia(0.12) saturate(1.1) brightness(1.02);
  --hero-frame: rgba(211, 149, 37, 0.38);
  --button-fill: linear-gradient(135deg, #3d5636, #d39525);
}

body[data-theme="south"] {
  --paper: #fff0e2;
  --paper-soft: #fffaf4;
  --sage: #eadcc8;
  --forest: #4f5a2f;
  --forest-deep: #30381f;
  --ink: #302c24;
  --muted: #80634f;
  --ochre: #d07a27;
  --rust: #a9472e;
  --blue: #336c75;
  --line: rgba(169, 71, 46, 0.24);
  --shadow: 0 26px 78px rgba(136, 68, 38, 0.2);
  --body-wash:
    radial-gradient(circle at 10% 20%, rgba(208, 122, 39, 0.26), transparent 24%),
    radial-gradient(circle at 92% 18%, rgba(169, 71, 46, 0.18), transparent 27%),
    linear-gradient(115deg, rgba(255,250,244,0.95), rgba(244,218,196,0.78));
  --hero-filter: sepia(0.18) saturate(1.22) contrast(1.02);
  --hero-frame: rgba(169, 71, 46, 0.34);
  --button-fill: linear-gradient(135deg, #4f5a2f, #a9472e);
}

body[data-theme="north"] {
  --paper: #eaf2f4;
  --paper-soft: #f8fcfc;
  --sage: #d4e4e5;
  --forest: #1e5660;
  --forest-deep: #12363d;
  --ink: #102832;
  --muted: #596e75;
  --ochre: #b58d3f;
  --rust: #8f684b;
  --blue: #245b7a;
  --line: rgba(30, 86, 96, 0.22);
  --shadow: 0 26px 78px rgba(36, 91, 122, 0.18);
  --body-wash:
    radial-gradient(circle at 16% 20%, rgba(132, 178, 188, 0.3), transparent 25%),
    radial-gradient(circle at 86% 34%, rgba(181, 141, 63, 0.16), transparent 28%),
    linear-gradient(115deg, rgba(248,252,252,0.96), rgba(216,231,233,0.82));
  --hero-filter: saturate(0.92) contrast(1.07) brightness(1.03);
  --hero-frame: rgba(30, 86, 96, 0.3);
  --button-fill: linear-gradient(135deg, #1e5660, #245b7a);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  transition: background 220ms ease, color 220ms ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: var(--body-wash);
  z-index: -1;
}

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

button,
textarea {
  font: inherit;
}

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

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px max(16px, calc((100vw - 1180px) / 2));
  background: rgba(251, 250, 246, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0;
  min-width: 152px;
}

.brand__title {
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(31px, 4vw, 42px);
  font-weight: 700;
  line-height: 0.9;
}

.brand__subtitle {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2.2vw, 30px);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

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

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

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

.design-menu {
  position: relative;
  z-index: 35;
  margin-left: auto;
}

.design-menu__trigger {
  min-height: 38px;
  padding: 8px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-soft);
  color: var(--forest);
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.design-menu__trigger:hover,
.design-menu__trigger:focus-visible,
.design-menu.is-open .design-menu__trigger {
  border-color: var(--forest);
  background: var(--forest);
  color: #fff;
}

.design-menu__list {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  min-width: 190px;
  padding: 8px;
  background: color-mix(in srgb, var(--paper-soft) 94%, transparent);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(18px);
}

.design-menu:hover .design-menu__list,
.design-menu:focus-within .design-menu__list,
.design-menu.is-open .design-menu__list {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.theme-button {
  display: flex;
  width: 100%;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 11px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  text-align: left;
  transition: background 180ms ease, color 180ms ease;
}

.theme-button::after {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--theme-swatch, var(--forest));
}

.theme-button[data-theme="base"] { --theme-swatch: linear-gradient(135deg, #214d39, #c9942f); }
.theme-button[data-theme="taiga"] { --theme-swatch: linear-gradient(135deg, #0f4a34, #2d6f4a); }
.theme-button[data-theme="altai"] { --theme-swatch: linear-gradient(135deg, #d39525, #3d5636); }
.theme-button[data-theme="south"] { --theme-swatch: linear-gradient(135deg, #a9472e, #d07a27); }
.theme-button[data-theme="north"] { --theme-swatch: linear-gradient(135deg, #1e5660, #245b7a); }

.theme-button:hover,
.theme-button:focus-visible,
.theme-button.is-active {
  background: var(--sage);
  color: var(--forest);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-soft);
  color: var(--forest);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

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

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

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(100svh - 84px);
  padding-top: 34px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--ochre);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 700;
  line-height: 0.95;
}

h1 {
  max-width: 560px;
  margin-bottom: 24px;
  font-size: clamp(58px, 11vw, 122px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 72px);
}

h3 {
  color: var(--ink);
  font-size: 19px;
  line-height: 1.25;
}

.hero__text,
.section__intro p,
.section-heading p,
.content-text p,
.payment-card p,
.advantage-card p {
  color: var(--muted);
}

.hero__text {
  max-width: 470px;
  min-height: 86px;
  margin-bottom: 30px;
  font-size: 18px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

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

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

.button--secondary {
  border-color: var(--forest);
  background: transparent;
  color: var(--forest);
}

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

.hero-visual {
  position: relative;
  min-height: 560px;
  margin: 0;
}

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

.hero-visual::before {
  inset: 28px 20px 34px 82px;
  background:
    linear-gradient(130deg, rgba(255,255,255,0.65), rgba(255,255,255,0)),
    repeating-linear-gradient(110deg, rgba(33,77,57,0.14) 0 2px, transparent 2px 18px);
  border-radius: 38% 62% 44% 56%;
  filter: blur(1px);
}

.hero-visual::after {
  right: 6%;
  bottom: 2%;
  width: 72%;
  height: 34px;
  background: rgba(21, 54, 40, 0.17);
  border-radius: 50%;
  filter: blur(10px);
}

.hero-visual__box {
  position: absolute;
  top: 24px;
  right: 34px;
  z-index: 2;
  width: min(560px, 88%);
  min-height: 410px;
  padding: 44px 48px 34px;
  background: #fffdf7;
  border: 1px solid rgba(33, 77, 57, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: rotate(0.6deg);
}

.hero-visual__box::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 108px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0), rgba(247,244,236,0.7)),
    repeating-linear-gradient(110deg, rgba(33,77,57,0.08) 0 2px, transparent 2px 18px);
  border-radius: 0 0 8px 8px;
  pointer-events: none;
}

.box-logo span {
  display: block;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 50px);
  font-weight: 700;
  line-height: 1;
}

.box-logo small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.box-map {
  position: relative;
  z-index: 1;
  width: min(82%, 370px);
  margin: 44px auto 0;
}

.hero-visual__jar,
.hero-visual__bowl {
  position: absolute;
  z-index: 3;
  border-radius: 8px;
  box-shadow: 0 16px 32px rgba(21, 54, 40, 0.18);
}

.hero-visual__jar::before,
.hero-visual__jar::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.hero-visual__jar::before {
  top: -17px;
  width: 68%;
  height: 23px;
  background: linear-gradient(90deg, #a06a32, #e2bd72, #9b6631);
  border-radius: 7px;
}

.hero-visual__jar::after {
  inset: 28px 14px 18px;
  background: rgba(255, 253, 247, 0.88);
  border: 1px solid rgba(21, 54, 40, 0.12);
  border-radius: 8px;
}

.hero-visual__jar span {
  position: absolute;
  z-index: 1;
  top: 58px;
  left: 50%;
  width: 72px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-visual__jar--honey {
  left: 58px;
  bottom: 26px;
  width: 100px;
  height: 126px;
  background: linear-gradient(#d8a54c, #9a5a25);
}

.hero-visual__jar--tea {
  right: 28px;
  bottom: 22px;
  width: 98px;
  height: 130px;
  background: linear-gradient(#d6dac8, #8b9a67);
}

.hero-visual__bowl {
  left: 50%;
  bottom: 4px;
  width: min(220px, 36%);
  height: 92px;
  background:
    radial-gradient(circle at 50% 8%, #e6d3aa 0 12px, transparent 13px),
    radial-gradient(circle at 38% 17%, #c6a465 0 10px, transparent 11px),
    radial-gradient(circle at 60% 20%, #b9864e 0 11px, transparent 12px),
    linear-gradient(#e6d8b3, #9a6534);
  border-radius: 0 0 150px 150px;
  transform: translateX(-50%);
}

.hero-visual {
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual::before,
.hero-visual::after {
  content: none;
}

.hero-visual__image {
  width: min(100%, 620px);
  aspect-ratio: 9 / 8;
  object-fit: cover;
  border: 1px solid var(--hero-frame);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  filter: var(--hero-filter);
}

.about-preview {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.section__intro {
  position: sticky;
  top: 118px;
}

.section__intro p {
  margin-bottom: 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-weight: 800;
}

.text-link::after {
  content: "→";
  color: var(--ochre);
}

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

.region-card {
  overflow: hidden;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 38px rgba(21, 54, 40, 0.08);
}

.region-card__image {
  height: 190px;
  background:
    linear-gradient(145deg, rgba(21, 54, 40, 0.1), transparent),
    var(--image);
  background-position: center;
  background-size: cover;
}

.region-card__body {
  padding: 18px;
}

.region-card__label {
  display: block;
  margin-bottom: 10px;
  color: var(--ochre);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.region-card p,
.product-card p,
.set-card p {
  color: var(--muted);
  font-size: 14px;
}

.gift-preview {
  padding-bottom: 36px;
}

.section-heading {
  max-width: 760px;
}

.gift-banner {
  min-height: 330px;
  display: flex;
  align-items: flex-end;
  padding: clamp(24px, 5vw, 54px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(21, 54, 40, 0.92), rgba(21, 54, 40, 0.54) 48%, rgba(21, 54, 40, 0.18)),
    radial-gradient(circle at 77% 45%, rgba(201, 148, 47, 0.36), transparent 28%),
    linear-gradient(135deg, #153628, #59705a);
  border-radius: var(--radius);
}

body[data-theme="taiga"] .gift-banner {
  background:
    linear-gradient(90deg, rgba(8, 43, 31, 0.95), rgba(15, 74, 52, 0.68) 52%, rgba(15, 74, 52, 0.18)),
    radial-gradient(circle at 74% 42%, rgba(183, 142, 36, 0.34), transparent 30%),
    linear-gradient(135deg, #082b1f, #3f7954);
}

body[data-theme="altai"] .gift-banner {
  background:
    linear-gradient(90deg, rgba(39, 53, 31, 0.9), rgba(61, 86, 54, 0.56) 48%, rgba(211, 149, 37, 0.18)),
    radial-gradient(circle at 78% 38%, rgba(211, 149, 37, 0.5), transparent 30%),
    linear-gradient(135deg, #3d5636, #d39525);
}

body[data-theme="south"] .gift-banner {
  background:
    linear-gradient(90deg, rgba(48, 56, 31, 0.92), rgba(79, 90, 47, 0.58) 46%, rgba(169, 71, 46, 0.24)),
    radial-gradient(circle at 78% 40%, rgba(208, 122, 39, 0.56), transparent 28%),
    linear-gradient(135deg, #4f5a2f, #a9472e);
}

body[data-theme="north"] .gift-banner {
  background:
    linear-gradient(90deg, rgba(18, 54, 61, 0.94), rgba(30, 86, 96, 0.6) 50%, rgba(36, 91, 122, 0.18)),
    radial-gradient(circle at 76% 38%, rgba(181, 141, 63, 0.28), transparent 30%),
    linear-gradient(135deg, #12363d, #245b7a);
}

.gift-banner h3 {
  max-width: 520px;
  margin-bottom: 24px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(35px, 5vw, 62px);
  font-weight: 700;
}

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

.roadmap-item {
  position: relative;
  padding-right: 22px;
}

.roadmap-item::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 46px;
  right: 0;
  height: 1px;
  background: rgba(201, 148, 47, 0.45);
}

.roadmap-item:last-child::before {
  display: none;
}

.roadmap-item__number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--sage);
  color: var(--forest);
  font-weight: 900;
}

.roadmap-item:first-child .roadmap-item__number {
  background: var(--ochre);
  color: #fff;
}

.roadmap-item small {
  display: block;
  color: var(--ochre);
  font-weight: 800;
}

.roadmap-item h3 {
  margin-bottom: 8px;
}

.roadmap-item p {
  color: var(--muted);
  font-size: 14px;
}

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

.advantage-card,
.payment-card,
.contact-card {
  min-height: 180px;
  padding: 24px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

body[data-theme="altai"] .region-card,
body[data-theme="altai"] .product-card,
body[data-theme="altai"] .set-card,
body[data-theme="altai"] .advantage-card,
body[data-theme="altai"] .payment-card,
body[data-theme="altai"] .contact-card {
  background: linear-gradient(180deg, var(--paper-soft), #f5e2bd);
}

body[data-theme="south"] .region-card,
body[data-theme="south"] .product-card,
body[data-theme="south"] .set-card,
body[data-theme="south"] .advantage-card,
body[data-theme="south"] .payment-card,
body[data-theme="south"] .contact-card {
  background: linear-gradient(180deg, var(--paper-soft), #f1d7c4);
}

body[data-theme="north"] .region-card,
body[data-theme="north"] .product-card,
body[data-theme="north"] .set-card,
body[data-theme="north"] .advantage-card,
body[data-theme="north"] .payment-card,
body[data-theme="north"] .contact-card {
  background: linear-gradient(180deg, var(--paper-soft), #dcebed);
}

.advantage-card__icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--sage);
  color: var(--forest);
  font-weight: 900;
}

.wide-cover {
  min-height: 330px;
  display: flex;
  align-items: flex-end;
  padding: clamp(24px, 5vw, 52px);
  overflow: hidden;
  border-radius: var(--radius);
  background-position: center;
  background-size: cover;
}

.wide-cover h2 {
  max-width: 740px;
  margin-bottom: 0;
}

.wide-cover--about {
  background:
    linear-gradient(90deg, rgba(247,244,236,0.98), rgba(247,244,236,0.68), rgba(247,244,236,0.36)),
    linear-gradient(135deg, rgba(33,77,57,0.14), rgba(46,103,130,0.16)),
    url("https://source.unsplash.com/1600x900/?mountains,forest,tea");
}

.wide-cover--collections {
  background:
    linear-gradient(90deg, rgba(247,244,236,0.98), rgba(247,244,236,0.62), rgba(247,244,236,0.35)),
    linear-gradient(135deg, rgba(201,148,47,0.12), rgba(33,77,57,0.16)),
    url("https://source.unsplash.com/1600x900/?honey,nuts,herbs");
}

.wide-cover--sets {
  background:
    linear-gradient(90deg, rgba(247,244,236,0.98), rgba(247,244,236,0.54), rgba(247,244,236,0.24)),
    linear-gradient(135deg, rgba(21,54,40,0.18), rgba(201,148,47,0.15)),
    url("https://source.unsplash.com/1600x900/?gift,box,food");
}

.wide-cover--contacts {
  background:
    linear-gradient(90deg, rgba(247,244,236,0.98), rgba(247,244,236,0.64), rgba(247,244,236,0.26)),
    linear-gradient(135deg, rgba(33,77,57,0.16), rgba(46,103,130,0.2)),
    url("https://source.unsplash.com/1600x900/?market,artisan,food");
}

.wide-cover--delivery {
  background:
    linear-gradient(90deg, rgba(247,244,236,0.98), rgba(247,244,236,0.66), rgba(247,244,236,0.28)),
    linear-gradient(135deg, rgba(201,148,47,0.16), rgba(33,77,57,0.14)),
    url("https://source.unsplash.com/1600x900/?courier,package,food");
}

.content-text {
  max-width: 820px;
  padding: 34px 0 0;
  font-size: 20px;
}

.catalog-groups {
  display: grid;
  gap: 34px;
  margin-top: 34px;
}

.catalog-group h3 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: 38px;
}

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

.product-card,
.set-card {
  overflow: hidden;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.product-card__image,
.set-card__image {
  min-height: 175px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.2), rgba(21,54,40,0.12)),
    var(--image);
  background-position: center;
  background-size: cover;
}

.product-card__body,
.set-card__body {
  padding: 18px;
}

.product-card h4,
.set-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.3;
}

.set-card__meta {
  color: var(--ochre);
  font-size: 13px;
  font-weight: 800;
}

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

dl {
  margin: 0;
}

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

dd {
  margin: 3px 0 15px;
  color: var(--ink);
  font-weight: 700;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.socials a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 38px 0 44px;
  border-top: 1px solid var(--line);
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
}

.site-footer__brand span {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
}

.site-footer__brand small,
.footer-nav a {
  color: var(--muted);
  font-size: 13px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.admin-panel {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: none;
  width: min(560px, calc(100vw - 36px));
}

.admin-panel.is-visible {
  display: block;
}

.admin-panel__toggle {
  display: block;
  margin-left: auto;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.admin-panel__body {
  display: none;
  margin-top: 10px;
  padding: 18px;
  background: #fffdf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.admin-panel.is-open .admin-panel__body {
  display: block;
}

.admin-panel h2 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 32px;
}

.admin-panel p,
.admin-panel label {
  color: var(--muted);
  font-size: 13px;
}

.admin-panel label {
  display: block;
  margin-bottom: 8px;
  font-weight: 900;
}

.admin-panel textarea {
  width: 100%;
  min-height: 260px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  resize: vertical;
  color: var(--ink);
  font-family: Consolas, "Courier New", monospace;
  font-size: 13px;
}

.admin-panel__actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.admin-panel__hint {
  margin: 12px 0 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 980px) {
  .site-header {
    align-items: center;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: var(--paper-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px;
  }

  .design-menu {
    margin-left: auto;
  }

  .design-menu__trigger {
    min-height: 42px;
    padding: 8px 13px;
  }

  .design-menu__list {
    right: 0;
  }

  .hero,
  .about-preview {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-visual__image {
    width: min(100%, 560px);
  }

  .section__intro {
    position: static;
  }

  .region-strip,
  .product-grid,
  .sets-grid,
  .advantages__grid,
  .payment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .roadmap__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .roadmap-item {
    padding-left: 66px;
    padding-right: 0;
  }

  .roadmap-item::before {
    top: 48px;
    left: 24px;
    right: auto;
    bottom: -22px;
    width: 1px;
    height: auto;
  }

  .roadmap-item__number {
    position: absolute;
    left: 0;
    top: 0;
  }

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

@media (max-width: 640px) {
  .section {
    width: min(100% - 24px, 1180px);
    padding: 42px 0;
  }

  .site-header {
    padding: 14px 12px;
    gap: 8px;
  }

  .brand {
    min-width: 0;
  }

  .brand__title {
    font-size: 30px;
  }

  .brand__subtitle {
    font-size: 10px;
  }

  .design-menu__trigger {
    padding: 8px 11px;
    font-size: 13px;
  }

  .hero__text {
    min-height: 0;
    font-size: 16px;
  }

  .hero__actions,
  .admin-panel__actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-visual__box {
    right: 0;
    width: 92%;
    min-height: 312px;
    padding: 26px 24px 24px;
  }

  .box-logo span {
    font-size: 34px;
  }

  .box-map {
    width: 78%;
    margin-top: 34px;
  }

  .hero-visual__jar--honey {
    left: 18px;
    bottom: 22px;
    width: 82px;
    height: 110px;
  }

  .hero-visual__jar--tea {
    right: 12px;
    bottom: 18px;
    width: 82px;
    height: 110px;
  }

  .hero-visual__jar::after {
    inset: 26px 12px 18px;
  }

  .hero-visual__jar span {
    top: 48px;
    width: 58px;
    font-size: 9px;
  }

  .hero-visual__bowl {
    left: 50%;
    bottom: 4px;
    width: min(150px, 38%);
    height: 66px;
  }

  .region-strip,
  .product-grid,
  .sets-grid,
  .advantages__grid,
  .payment-grid {
    grid-template-columns: 1fr;
  }

  .gift-banner,
  .wide-cover {
    min-height: 270px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
