/* ============================================================
   base.css — змінні, скидання, типографіка, утиліти
   Бренд «АкваФікс» — ремонт пральних машин, Дніпро
   ============================================================ */

:root {
  /* Палітра: чистий світлий + діловий бірюзово-зелений акцент */
  --bg:        #f4f6f5;
  --surface:   #ffffff;
  --surface-2: #eef2f1;
  --ink:       #15211e;
  --ink-soft:  #4d5d58;
  --line:      #dde5e2;

  --accent:      #0e7c66;
  --accent-deep: #0a5b4b;
  --accent-soft: #e2f4ef;
  --accent-mint: #7fe3cf;

  --warn: #d9772b;

  --sidebar-w: 286px;
  --radius:   18px;
  --radius-s: 11px;
  --radius-l: 26px;

  --shadow-s: 0 2px 10px rgba(15, 40, 35, .05);
  --shadow-m: 0 14px 40px rgba(15, 40, 35, .10);

  --ff-head: "Manrope", system-ui, sans-serif;
  --ff-body: "Commissioner", system-ui, sans-serif;

  --maxw: 1080px;
  --gap: clamp(18px, 3vw, 34px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--ff-head);
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  font-weight: 800;
}

h1 { font-size: clamp(2.05rem, 4.4vw, 3.35rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.18rem, 2vw, 1.42rem); }

p { margin: 0 0 1em; }

a { color: var(--accent-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

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

ul { margin: 0; padding: 0; list-style: none; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
}

.lead {
  font-size: clamp(1.04rem, 1.6vw, 1.18rem);
  color: var(--ink-soft);
  max-width: 60ch;
}

.muted { color: var(--ink-soft); }
.accent-text { color: var(--accent); }

.price-big {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--accent-deep);
  letter-spacing: -.03em;
  line-height: 1;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); border: 0;
}

:focus-visible {
  outline: 3px solid var(--accent-mint);
  outline-offset: 2px;
  border-radius: 4px;
}
