/* ============================================================
   LAKE EFFECT COATINGS — BASE: reset, typography, buttons, forms
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }

/* ---- Headings ---- */
h1, h2 {
  font-family: var(--font-display);   /* Anton — big, punchy, condensed */
  font-weight: 400;
  line-height: var(--lh-tight);
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--ink);
  text-wrap: balance;
}
h3, h4 {
  font-family: var(--font-head);      /* Archivo */
  font-weight: var(--fw-black);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }
p  { text-wrap: pretty; }
strong { font-weight: var(--fw-bold); }

/* ---- Eyebrow (uppercase kicker above headings) ---- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: var(--fw-black);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-wash);
  padding: 0.4rem 0.85rem 0.4rem 0.7rem;
  border-radius: var(--r-sm);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: ""; width: 18px; height: 3px; background: var(--red); display: inline-block; border-radius: 3px;
}
.eyebrow.is-invert { color: #fff; background: rgba(255,255,255,0.1); }
.eyebrow.is-centered { justify-content: center; }
.section-head.is-centered .eyebrow.is-centered { margin-inline: auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  font-family: var(--font-head); font-weight: var(--fw-black);
  font-size: 0.95rem; line-height: 1; text-transform: uppercase; letter-spacing: 0.04em;
  padding: 1.1rem 1.8rem; border-radius: var(--r-sm);
  transition: transform var(--t-fast), box-shadow var(--t), background var(--t), color var(--t);
  white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn--primary { background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.btn--primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: #000; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border: 2px solid var(--line); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--outline-invert { background: rgba(255,255,255,0.06); color: #fff; border: 2px solid rgba(255,255,255,0.4); }
.btn--outline-invert:hover { background: #fff; color: var(--ink); transform: translateY(-2px); }
.btn--lg { padding: 1.2rem 2.3rem; font-size: var(--fs-lg); }
.btn--block { width: 100%; }

/* ---- Forms ---- */
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: var(--fs-sm); font-weight: var(--fw-semi); color: var(--text-muted); }
.input, .select, .textarea {
  width: 100%; padding: 0.95rem 1.1rem;
  background: var(--white); border: 1.5px solid var(--line);
  border-radius: var(--r); transition: border var(--t-fast), box-shadow var(--t-fast);
}
.input:focus, .select:focus, .textarea:focus {
  border-color: var(--red); box-shadow: 0 0 0 4px var(--red-wash); outline: none;
}
.select { appearance: none; background-image:
  url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235F6164' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1.1rem center; padding-right: 2.6rem; }

/* ---- Utilities ---- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--section-y); }
.section--ink { background: var(--ink); color: var(--text-invert); }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }
.section--paper { background: var(--paper); }
.section-head { max-width: 760px; margin-bottom: clamp(2rem, 1.4rem + 2vw, 3.5rem); }
.section-head.is-centered { margin-inline: auto; text-align: center; }
.section-head p { color: var(--text-muted); font-size: var(--fs-lg); margin-top: 0.9rem; }
.section--ink .section-head p { color: var(--text-invert-mut); }
.lead { font-size: var(--fs-lg); color: var(--text-muted); }
.text-red { color: var(--red); }
.hide { display: none !important; }
@media (max-width: 760px) { .hide-mobile { display: none !important; } }
