:root {
  --bg: #f3eee7;
  --bg-strong: #ece4d9;
  --paper: rgba(255, 252, 246, 0.92);
  --paper-strong: #fffdf9;
  --ink: #0f0f10;
  --heading: #000;
  --muted: #5f544a;
  --line: rgba(15, 15, 16, 0.1);
  --accent: #bc6b34;
  --accent-soft: #f2d5bf;
  --olive: #697250;
  --shadow: 0 25px 60px rgba(56, 35, 18, 0.14);
  --surface-soft: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.84);
  --surface-muted: rgba(255, 255, 255, 0.64);
  --surface-overlay: rgba(255, 252, 247, 0.86);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
}

html[data-theme="dark"] {
  --bg: #111318;
  --bg-strong: #171b21;
  --paper: rgba(20, 23, 28, 0.9);
  --paper-strong: #1c2027;
  --ink: #f3ede5;
  --heading: #fff8f1;
  --muted: #c2b5a7;
  --line: rgba(255, 255, 255, 0.09);
  --accent: #d3864b;
  --accent-soft: rgba(211, 134, 75, 0.18);
  --olive: #96a56c;
  --shadow: 0 28px 62px rgba(0, 0, 0, 0.36);
  --surface-soft: rgba(30, 34, 41, 0.84);
  --surface-strong: rgba(27, 31, 38, 0.92);
  --surface-muted: rgba(24, 27, 33, 0.9);
  --surface-overlay: rgba(22, 26, 32, 0.88);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at top left, rgba(188, 107, 52, 0.14), transparent 22%),
    radial-gradient(circle at 85% 14%, rgba(105, 114, 80, 0.14), transparent 20%),
    linear-gradient(180deg, #f7f2eb 0%, #f3ece3 52%, #ede2d6 100%);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

html[data-theme="dark"] body {
  background:
    radial-gradient(circle at top left, rgba(211, 134, 75, 0.18), transparent 24%),
    radial-gradient(circle at 85% 14%, rgba(150, 165, 108, 0.14), transparent 22%),
    linear-gradient(180deg, #12151a 0%, #181c22 54%, #1c2026 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.5;
  background:
    linear-gradient(rgba(15, 15, 16, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 15, 16, 0.03) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at center, black, transparent 82%);
  pointer-events: none;
}

html[data-theme="dark"] body::before {
  opacity: 0.18;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
}

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

.site-shell {
  width: min(1380px, calc(100% - 28px));
  margin: 0 auto;
  padding: 18px 0 60px;
}

.site-header,
.hero,
.statement,
.section,
.cta-banner {
  border: 1px solid var(--line);
  background: var(--paper);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 999px;
}

.brand {
  display: grid;
  gap: 2px;
}

.brand__name {
  font-family: "Space Grotesk", "Arial Black", sans-serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.08em;
  color: var(--heading);
}

.brand__tag {
  color: var(--muted);
  font-size: 13px;
}

.site-nav,
.site-header__actions,
.hero__actions,
.hero__metrics,
.cta-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--muted);
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

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

.button--large {
  min-height: 56px;
  padding-inline: 22px;
}

.button--primary {
  background: linear-gradient(135deg, var(--accent), #d98a56);
  color: #fffaf5;
  box-shadow: 0 18px 34px rgba(188, 107, 52, 0.2);
}

.button--outline,
.button--ghost {
  border-color: rgba(15, 15, 16, 0.14);
  background: var(--surface-muted);
}

.button--black {
  background: #121212;
  color: white;
}

.button--messenger {
  min-height: 50px;
  border-color: rgba(15, 15, 16, 0.12);
  background: var(--surface-strong);
  color: var(--ink);
}

.button--whatsapp {
  background: linear-gradient(135deg, var(--accent), #d98a56);
  color: #fffaf5;
  border-color: transparent;
  box-shadow: 0 18px 34px rgba(188, 107, 52, 0.2);
}

.button--telegram {
  border-color: rgba(64, 126, 201, 0.22);
}

.button--max {
  border-color: rgba(105, 114, 80, 0.24);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(15, 15, 16, 0.14);
  background: var(--surface-muted);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

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

.theme-toggle__dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #f5c27f);
  box-shadow: 0 0 0 4px rgba(188, 107, 52, 0.12);
}

.hero,
.statement,
.section,
.cta-banner {
  margin-top: 18px;
  border-radius: var(--radius-xl);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 20px;
  padding: 26px;
}

.hero__copy,
.hero__visual {
  border-radius: calc(var(--radius-xl) - 8px);
}

.hero__copy {
  padding: 18px 8px 18px 8px;
}

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

.hero h1,
.section h2,
.cta-banner h2 {
  margin: 0;
  font-family: "Space Grotesk", "Arial Black", sans-serif;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: var(--heading);
}

.hero h1 {
  font-size: clamp(58px, 9vw, 104px);
  line-height: 0.95;
  max-width: 8ch;
}

.hero h1 span {
  display: block;
}

.hero__lead,
.section p,
.cta-banner p,
.reason-card p,
.collection-tile p,
.step p,
.statement p {
  color: var(--muted);
  line-height: 1.7;
}

.hero__lead {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: 18px;
}

.hero__actions {
  margin-top: 28px;
}

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

.messenger-strip--hero {
  margin-top: 14px;
}

.messenger-strip--compact {
  max-width: 100%;
}

.hero__metrics {
  margin-top: 30px;
}

.metric {
  min-width: 170px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 15, 16, 0.1);
  background: var(--surface-soft);
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.metric strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
}

.hero__visual {
  padding: 10px;
  background:
    radial-gradient(circle at top left, rgba(242, 213, 191, 0.72), transparent 28%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.94), rgba(249, 241, 232, 0.92));
  border: 1px solid rgba(15, 15, 16, 0.08);
}

html[data-theme="dark"] .hero__visual {
  background:
    radial-gradient(circle at top left, rgba(211, 134, 75, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(28, 33, 39, 0.96), rgba(21, 24, 30, 0.92));
}

.hero-collage {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 12px;
  min-height: 100%;
}

.hero-collage__card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  border-radius: 26px;
  background: var(--bg-strong);
  border: 1px solid rgba(15, 15, 16, 0.08);
}

.hero-collage__card--tall {
  grid-row: span 2;
  min-height: 490px;
}

.hero-collage__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-collage__card div {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 14px;
  border-radius: 18px;
  background: var(--surface-overlay);
  backdrop-filter: blur(12px);
}

.hero-collage__card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-collage__card strong {
  display: block;
  margin-top: 6px;
  font-size: 20px;
}

.statement {
  padding: 26px 34px;
}

.statement p {
  margin: 0;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.35;
  color: var(--heading);
  font-family: "Space Grotesk", "Arial Black", sans-serif;
  letter-spacing: -0.04em;
  max-width: 22ch;
}

.section {
  padding: 28px;
}

.section--contrast {
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.95), rgba(244, 236, 226, 0.93)),
    var(--paper);
}

.section--accent {
  background:
    radial-gradient(circle at top right, rgba(188, 107, 52, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(248, 241, 232, 0.92));
}

html[data-theme="dark"] .section--contrast {
  background:
    linear-gradient(180deg, rgba(28, 31, 37, 0.96), rgba(22, 26, 31, 0.94)),
    var(--paper);
}

html[data-theme="dark"] .section--accent {
  background:
    radial-gradient(circle at top right, rgba(211, 134, 75, 0.2), transparent 24%),
    linear-gradient(180deg, rgba(26, 30, 36, 0.98), rgba(20, 23, 29, 0.94));
}

.section__heading {
  display: grid;
  gap: 8px;
}

.section__heading--split {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.section__heading h2,
.cta-banner h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.98;
  max-width: 12ch;
}

.text-link {
  align-self: center;
  font-weight: 800;
  color: var(--accent);
}

.reasons-grid,
.collections-grid,
.steps {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

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

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

.reason-card,
.collection-tile,
.step {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(15, 15, 16, 0.08);
  background: var(--surface-soft);
}

.reason-card__index,
.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(188, 107, 52, 0.12);
  color: var(--accent);
  font-weight: 900;
}

.reason-card h3,
.collection-tile strong,
.step h3 {
  margin: 18px 0 0;
  font-size: 22px;
  line-height: 1.1;
}

.reason-card p,
.collection-tile p,
.step p {
  margin: 14px 0 0;
}

.collection-tile span {
  display: inline-block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
}

.cta-banner p {
  margin: 14px 0 0;
  max-width: 62ch;
}

.has-motion [data-reveal] {
  opacity: 0;
  filter: blur(16px);
  will-change: transform, opacity, filter;
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.05s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.has-motion [data-reveal="left"] {
  transform: translate3d(calc(-1 * clamp(96px, 14vw, 220px)), 0, 0) scale(0.985);
}

.has-motion [data-reveal="right"] {
  transform: translate3d(clamp(96px, 14vw, 220px), 0, 0) scale(0.985);
}

.has-motion [data-reveal="up"] {
  transform: translate3d(0, clamp(84px, 12vh, 150px), 0) scale(0.99);
}

.has-motion [data-reveal="down"] {
  transform: translate3d(0, calc(-1 * clamp(84px, 12vh, 150px)), 0) scale(0.99);
}

.has-motion [data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .has-motion [data-reveal] {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1140px) {
  .hero,
  .reasons-grid,
  .collections-grid,
  .steps,
  .cta-banner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .site-header {
    border-radius: 30px;
  }

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

@media (max-width: 780px) {
  .site-shell {
    width: min(100%, calc(100% - 18px));
    padding-top: 12px;
    padding-bottom: 40px;
  }

  .site-header,
  .hero,
  .statement,
  .section,
  .cta-banner {
    border-radius: 24px;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand__name {
    font-size: 34px;
  }

  .site-nav,
  .site-header__actions,
  .hero__actions,
  .hero__metrics,
  .cta-banner__actions,
  .messenger-strip {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .theme-toggle {
    width: 100%;
  }

  .hero,
  .section,
  .cta-banner,
  .statement {
    padding: 20px;
  }

  .hero__copy {
    padding: 0;
  }

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

  .hero__lead {
    font-size: 17px;
  }

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

  .hero-collage__card--tall {
    grid-row: auto;
    min-height: 340px;
  }

  .section__heading h2,
  .cta-banner h2 {
    font-size: 36px;
    max-width: none;
  }

  .statement p {
    font-size: 28px;
    max-width: none;
  }
}
