/* ===========================================================
   base.css — змінні, reset, типографіка, утиліти
   Бренд: Akvanor — преміальний ремонт бойлерів у Києві.
   Напрям: глибокий індиго / нічний синій + мідно-латунний акцент.
   Характер: солідний, преміум, з відчуттям якості й гарантії.
   =========================================================== */

:root {
  /* Індиго / нічний синій */
  --night-950: #0a0f29;
  --night-900: #0f1636;
  --night-800: #141b40;
  --night-700: #1d2657;
  --night-600: #2a3576;

  /* Мідно-латунний акцент */
  --brass-600: #b07d30;
  --brass-500: #c9974a;
  --brass-400: #dbb069;
  --brass-300: #ecca8d;

  /* Нейтральні */
  --ink:     #11142a;
  --slate:   #58607f;
  --mist:    #f5f6fb;
  --mist-2:  #ebedf6;
  --white:   #ffffff;
  --line:    #e2e5f0;
  --line-d:  rgba(255,255,255,.12);

  /* Типографіка */
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Радіуси / тіні */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --shadow-sm: 0 6px 20px rgba(15, 22, 54, .08);
  --shadow-md: 0 18px 44px rgba(15, 22, 54, .14);
  --shadow-lg: 0 30px 70px rgba(10, 15, 41, .26);

  /* Сітка */
  --maxw: 1180px;
  --gap: clamp(16px, 2.6vw, 30px);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin: 0 0 .4em;
}

h1 { font-size: clamp(2.05rem, 5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.62rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.12rem, 2vw, 1.3rem); font-weight: 600; }

p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; transition: color .2s; }
img, svg { max-width: 100%; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* Утиліти */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: clamp(16px, 4vw, 40px);
}
.container--narrow { max-width: 800px; }
.center { text-align: center; }
.muted { color: var(--slate); font-weight: 500; }
.hl { color: var(--brass-400); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brass-600);
  margin-bottom: .8rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: linear-gradient(90deg, var(--brass-500), transparent);
}

.section { padding: clamp(56px, 8vw, 112px) 0; }
.section--alt { background: var(--mist); }
.section--dark { background: var(--night-900); color: var(--mist); }

.section__head { max-width: 700px; margin: 0 auto clamp(34px, 5vw, 58px); }
.section__head--center { text-align: center; }
.section__head p { color: var(--slate); font-size: 1.06rem; }
.section__head--light p { color: rgba(245, 246, 251, .7); }
.section__head--light .eyebrow { color: var(--brass-400); }
.section__head--light .eyebrow::before { background: linear-gradient(90deg, var(--brass-400), transparent); }
