/* ========== БАЗОВЫЕ СТИЛИ И ПЕРЕМЕННЫЕ ========== */

:root {
  --bg: #FAF7F2;
  --ink: #2B2622;
  --accent: #B5764A;
  --accent-dark: #96603B;
  --greige: #C9BCA9;
  --greige-light: #EFE9DF;
  --muted: #8A8273;
  --white: #FFFFFF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

h2 {
  font-family: 'Tenor Sans', serif;
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 40px);
  letter-spacing: .02em;
  line-height: 1.25;
}

h1 {
  font-family: 'Tenor Sans', serif;
  font-size: clamp(42px, 8vw, 96px);
  font-weight: 400;
  letter-spacing: .06em;
  line-height: 1;
  text-transform: uppercase;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 64px);
  padding-right: clamp(20px, 5vw, 64px);
}

.section-eyebrow {
  display: none !important;
}

section {
  padding-top: clamp(56px, 9vh, 104px);
  padding-bottom: clamp(56px, 9vh, 104px);
}

/* ========== QMARK (четыре квадрата) ========== */

.qmark {
  display: grid;
  grid-template-columns: 7px 7px;
  grid-template-rows: 7px 7px;
  gap: 3px;
  flex-shrink: 0;
}

.qmark span {
  background: currentColor;
  display: block;
}

.qmark span:nth-child(4) {
  background: var(--accent);
}

/* ========== СКРОЛЛ АНИМАЦИИ ========== */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ========== КНОПКИ ========== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: clamp(13px, 1.8vw, 16px) clamp(22px, 3vw, 30px);
  border-radius: 999px;
  font-size: clamp(14px, 1.5vw, 15px);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(181, 118, 74, .35);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, .14);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .55);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .26);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 1.5vw, 14px);
  margin-top: clamp(24px, 4vw, 32px);
}

/* ========== АДАПТИВ ========== */

@media (max-width: 760px) {
  .cta-row .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
