:root {
  --bg: #fbf8f1;
  --surface: #ffffff;
  --surface-soft: #f3eadb;
  --text: #1f1c18;
  --muted: #6f665b;
  --accent: #b8873f;
  --accent-dark: #805c24;
  --line: #e8dcc9;
  --shadow: 0 18px 45px rgba(58, 45, 26, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(251, 248, 241, 0.93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  color: var(--muted);
  font-size: 0.93rem;
}

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

.lang-switcher {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px;
}

.lang-switcher button {
  min-width: 38px;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  font-weight: 700;
}

.lang-switcher button.active {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 76px 0;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  padding-top: 48px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 7vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.08rem;
}

.hero p,
.lead,
.section-heading p {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 20px;
  font-weight: 800;
}

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

.button-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
}

.hero-visual {
  position: relative;
  min-height: 480px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.75), rgba(240, 225, 198, 0.7)),
    radial-gradient(circle at 80% 10%, rgba(184, 135, 63, 0.2), transparent 34%);
  box-shadow: var(--shadow);
}

.shelf {
  position: absolute;
  left: 10%;
  right: 10%;
  height: 14px;
  border-radius: 3px;
  background: #5d4630;
}

.shelf-top {
  top: 58%;
}

.shelf-bottom {
  top: 80%;
}

.product-shape {
  position: absolute;
  bottom: 22%;
  border: 1px solid rgba(31, 28, 24, 0.1);
  box-shadow: 0 14px 25px rgba(45, 31, 15, 0.12);
}

.product-shape.tall {
  left: 19%;
  width: 90px;
  height: 190px;
  border-radius: 45px 45px 8px 8px;
  background: #c9984f;
}

.product-shape.small {
  left: 46%;
  width: 82px;
  height: 128px;
  border-radius: 8px;
  background: #fffaf0;
}

.product-shape.box {
  right: 16%;
  width: 126px;
  height: 112px;
  border-radius: 8px;
  background: #2b2a25;
}

.label-chip {
  position: absolute;
  top: 46px;
  left: 42px;
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--surface);
  color: var(--accent-dark);
  font-weight: 900;
  box-shadow: var(--shadow);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.language-band {
  width: 100%;
  max-width: none;
  padding-right: max(18px, calc((100% - 1160px) / 2));
  padding-left: max(18px, calc((100% - 1160px) / 2));
  background: #fff;
  border-block: 1px solid var(--line);
}

.language-grid,
.category-grid,
.product-grid,
.contact-grid {
  display: grid;
  gap: 16px;
}

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

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

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

.card,
.product-card,
.step-card,
.question-card,
.roadmap-item,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(58, 45, 26, 0.08);
}

.card,
.contact-card {
  padding: 20px;
}

.language-name,
.category-name {
  margin-bottom: 8px;
  font-weight: 900;
}

.language-phrase,
.card p,
.contact-card p,
.product-card p,
.question-card {
  color: var(--muted);
  line-height: 1.55;
}

.product-card {
  overflow: hidden;
}

.product-image {
  display: grid;
  min-height: 158px;
  place-items: center;
  background: linear-gradient(135deg, #f8efe0, #fff);
  color: var(--accent-dark);
  font-size: 2rem;
  font-weight: 900;
}

.product-content {
  padding: 18px;
}

.price {
  margin: 14px 0;
  color: var(--accent-dark);
  font-weight: 900;
}

.mini-button {
  display: inline-flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--surface-soft);
  color: var(--text);
  font-weight: 800;
}

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

.step-card {
  padding: 24px;
}

.step-number,
.roadmap-stage {
  display: inline-flex;
  min-width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  font-weight: 900;
}

.questions-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: question;
}

.question-card {
  counter-increment: question;
  padding: 18px 18px 18px 54px;
  position: relative;
}

.question-card::before {
  content: counter(question);
  position: absolute;
  left: 18px;
  top: 18px;
  color: var(--accent-dark);
  font-weight: 900;
}

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

.roadmap-item {
  padding: 18px;
}

.contact-label {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-value {
  margin-top: 7px;
  font-weight: 900;
}

.footer {
  padding: 28px 18px 38px;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .nav,
  .lang-switcher {
    justify-content: flex-start;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 380px;
  }

  .language-grid,
  .product-grid,
  .category-grid,
  .contact-grid,
  .roadmap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .section {
    width: min(100% - 28px, 1160px);
    padding: 54px 0;
  }

  .site-header {
    position: static;
    padding: 14px;
  }

  .nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 4px;
  }

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

  .hero-visual {
    min-height: 320px;
  }

  .language-grid,
  .category-grid,
  .product-grid,
  .steps,
  .questions-list,
  .roadmap,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
