/* ============================================================
   Leakproof Roofing — design tokens, base & components
   Production stylesheet (recreated from the Claude Design handoff)
   ============================================================ */

:root {
  /* color */
  --ink:        #16181b;   /* charcoal near-black, warm */
  --ink-2:      #20242a;   /* raised charcoal */
  --ink-3:      #2c313a;   /* card on dark */
  --paper:      #f6f4f0;   /* warm off-white */
  --paper-2:    #ffffff;
  --line:       #e3ded6;   /* hairline on paper */
  --line-dark:  #353b44;   /* hairline on dark */
  --muted:      #6c7079;   /* secondary text on paper */
  --muted-dark: #9aa1ad;   /* secondary text on dark */

  --red:        #c0252c;   /* premium confident red */
  --red-bright: #d83139;   /* hover */
  --red-deep:   #8f1a20;   /* pressed / shadow */
  --red-wash:   #f7e7e6;   /* tint bg */

  --gold:       #c9a24b;   /* subtle premium accent for stars/awards */

  /* type */
  --display: "Archivo", "Arial Narrow", sans-serif;
  --body:    "Public Sans", system-ui, sans-serif;

  /* spacing rhythm */
  --gut: clamp(20px, 5vw, 72px);
  --maxw: 1240px;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;

  --shadow-sm: 0 1px 2px rgba(20,22,25,.06), 0 2px 8px rgba(20,22,25,.05);
  --shadow-md: 0 12px 32px rgba(20,22,25,.12);
  --shadow-lg: 0 30px 70px rgba(20,22,25,.22);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.01em;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

/* ---- shared layout ---- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--gut); padding-right: var(--gut); }

.eyebrow {
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--red);
  display: inline-block;
}
.eyebrow.center::before { display: none; }

/* big section heading */
.sec-h {
  font-weight: 800;
  font-size: clamp(30px, 4.4vw, 56px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 15px 26px;
  border: 2px solid transparent;
  border-radius: var(--r-sm);
  transition: transform .12s ease, background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-red { background: var(--red); color: #fff; box-shadow: 0 8px 22px rgba(192,37,44,.32); }
.btn-red:hover { background: var(--red-bright); }

.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: var(--ink-2); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }

.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

.btn-lg { padding: 18px 32px; font-size: 16px; }

/* ---- imagery ---- */
.ph {
  position: relative;
  background-color: #d9d4cb;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(0,0,0,0.045) 0 12px,
    rgba(0,0,0,0.00) 12px 24px
  );
  color: #5b5e64;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ph.dark {
  background-color: #2a2f37;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.05) 0 12px,
    rgba(255,255,255,0.00) 12px 24px
  );
  color: #aab0bb;
}
.ph .ph-tag {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px dashed currentColor;
  border-radius: 3px;
  background: rgba(255,255,255,.35);
}
.ph.dark .ph-tag { background: rgba(0,0,0,.25); }
.ph.has-img {
  background-image: none;
  background-color: var(--ink);
}
.ph.has-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ph.img-top img { object-position: center top; }
.ph.img-bottom img { object-position: center bottom; }
.ph.has-img .ph-tag { display: none; }

/* ---- star rating ---- */
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 18px; height: 18px; display: block; }

/* ---- chips / badges ---- */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--paper-2);
  color: var(--ink);
}
.chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); }

/* ---- utility ---- */
.center { text-align: center; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* section paddings */
.section { padding: clamp(56px, 8vw, 110px) 0; }
.section.tight { padding: clamp(40px, 5vw, 72px) 0; }

@media (max-width: 760px) {
  .hide-sm { display: none !important; }
}

/* ============================================================
   COMPONENTS & SECTIONS
   ============================================================ */

/* ---------- wordmark ---------- */
.wordmark { display: inline-flex; align-items: center; gap: 11px; }
.wm-badge { width: calc(38px * var(--wm, 1)); height: calc(38px * var(--wm, 1)); flex: none; }
.wm-text { display: flex; flex-direction: column; line-height: 0.92; font-family: var(--display); }
.wm-1 { font-weight: 800; font-size: calc(20px * var(--wm, 1)); letter-spacing: -0.01em; }
.wm-2 { font-weight: 600; font-size: calc(11.5px * var(--wm, 1)); letter-spacing: 0.36em; color: var(--red); }

/* ---------- header ---------- */
.hdr { position: sticky; top: 0; z-index: 60; }
.hdr-top { background: var(--ink); color: var(--muted-dark); font-size: 12.5px; }
.hdr-top-in { display: flex; justify-content: space-between; align-items: center; height: 38px; }
.hdr-top-in span { display: inline-flex; align-items: center; gap: 7px; }
.hdr-top-r { display: flex; gap: 26px; }
.hdr-top svg { color: var(--red); }

.hdr-main {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 78px;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease, height .2s ease;
}
.hdr.scrolled .hdr-main { box-shadow: var(--shadow-sm); height: 70px; }
.hdr-logo { display: inline-flex; }

.hdr-nav { display: flex; gap: 4px; margin-left: auto; }
.hdr-nav a {
  font-family: var(--display); font-weight: 600; font-size: 14.5px;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 10px 16px; border-radius: var(--r-sm); color: var(--ink);
  position: relative; transition: color .15s ease, background .15s ease;
}
.hdr-nav a:hover { color: var(--red); }
.hdr-nav a.active { color: var(--red); }
.hdr-nav a.active::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 2px; height: 2px; background: var(--red);
}

.hdr-cta { display: flex; align-items: center; gap: 18px; }
.hdr-phone { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.hdr-phone svg { color: var(--red); }
.hdr-phone small { display: block; font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-family: var(--display); font-weight: 600; }
.hdr-phone strong { display: block; font-family: var(--display); font-weight: 800; font-size: 17px; letter-spacing: -0.01em; }

.hdr-burger { display: none; background: none; border: none; color: var(--ink); padding: 6px; }

.hdr-mobile { background: var(--paper-2); border-bottom: 1px solid var(--line); padding: 14px var(--gut) 22px; display: flex; flex-direction: column; gap: 4px; box-shadow: var(--shadow-md); }
.hdr-mobile[hidden] { display: none; }
.hdr-mobile a { font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; padding: 14px 6px; border-bottom: 1px solid var(--line); }
.hdr-mobile-phone { color: var(--red) !important; display: inline-flex; align-items: center; gap: 8px; }
.hdr-mobile .btn { margin-top: 12px; }

@media (max-width: 980px) {
  .hdr-cta .hdr-phone small { display: none; }
}
@media (max-width: 760px) {
  .hdr-burger { display: inline-flex; }
  .hdr-main { height: 64px; }
}

/* ============================================================
   HERO — Direction A (full-bleed image)
   ============================================================ */
.heroA { position: relative; background: var(--ink); color: #fff; overflow: hidden; }
.heroA .heroA-bg { position: absolute; inset: 0; }
.heroA .heroA-bg .ph { width: 100%; height: 100%; }
.heroA .heroA-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(15,16,18,.94) 0%, rgba(15,16,18,.78) 42%, rgba(15,16,18,.30) 78%, rgba(15,16,18,.15) 100%),
    linear-gradient(0deg, rgba(15,16,18,.65) 0%, rgba(15,16,18,0) 45%);
}
.heroA .wrap { position: relative; }
.heroA-in { padding: clamp(56px, 9vw, 132px) 0 clamp(48px, 7vw, 92px); max-width: 760px; }
.heroA-rating { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 22px; font-size: 14px; color: #e9e6e1; }
.heroA-rating b { font-family: var(--display); }
.heroA h1 {
  font-weight: 800; text-transform: uppercase;
  font-size: clamp(44px, 7.4vw, 104px); letter-spacing: -0.025em; line-height: 0.92;
}
.heroA h1 .red { color: var(--red-bright); }
.heroA-sub { margin-top: 22px; font-size: clamp(16px, 1.5vw, 19px); color: #d7d4cf; max-width: 540px; }
.heroA-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.heroA-actions .lead { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; color: #c7c4bf; }
.heroA-strip {
  position: relative; border-top: 1px solid var(--line-dark);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.heroA-strip > div { padding: 22px 0; display: flex; align-items: center; gap: 13px; }
.heroA-strip > div:not(:last-child) { border-right: 1px solid var(--line-dark); }
.heroA-strip svg { color: var(--red-bright); flex: none; }
.heroA-strip b { display: block; font-family: var(--display); font-weight: 800; font-size: 17px; }
.heroA-strip small { display: block; font-size: 12px; color: var(--muted-dark); }
@media (max-width: 760px) {
  .heroA-strip { grid-template-columns: repeat(2, 1fr); }
  .heroA-strip > div:nth-child(2) { border-right: none; }
  .heroA-strip > div:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
  .heroA .heroA-scrim { background: linear-gradient(0deg, rgba(15,16,18,.96) 0%, rgba(15,16,18,.7) 60%, rgba(15,16,18,.45) 100%); }
}

/* ---------- trust bar ---------- */
.trustbar { background: var(--paper-2); border-bottom: 1px solid var(--line); }
.trustbar-in { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px 28px; padding: 22px 0; }
.trustbar-item { display: flex; align-items: center; gap: 12px; }
.trustbar-item svg { color: var(--red); flex: none; }
.trustbar-item b { display: block; font-family: var(--display); font-weight: 800; font-size: 16px; }
.trustbar-item small { display: block; font-size: 12.5px; color: var(--muted); }

/* ---------- services grid ---------- */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(30px, 4vw, 52px); }
.sec-head .lead { max-width: 440px; color: var(--muted); font-size: 16px; margin-top: 16px; }

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-card .ph { height: 168px; }
.svc-card .svc-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.svc-ico { width: 46px; height: 46px; border-radius: var(--r-sm); background: var(--red-wash); color: var(--red); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.svc-card h3 { font-weight: 800; font-size: 21px; text-transform: uppercase; letter-spacing: -0.01em; }
.svc-card p { color: var(--muted); font-size: 14.5px; margin-top: 10px; flex: 1; }
.svc-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-family: var(--display); font-weight: 700; font-size: 13.5px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--red); }
.svc-link svg { transition: transform .15s ease; }
.svc-card:hover .svc-link svg { transform: translateX(4px); }
@media (max-width: 900px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .svc-grid { grid-template-columns: 1fr; } }

/* ---------- guarantee / why choose ---------- */
.why { background: var(--ink); color: #fff; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); border-radius: var(--r-md); overflow: hidden; }
.why-cell { background: var(--ink-2); padding: 30px 26px; }
.why-cell svg { color: var(--red-bright); margin-bottom: 16px; }
.why-cell h4 { font-weight: 800; font-size: 16px; text-transform: uppercase; letter-spacing: 0.01em; }
.why-cell p { color: var(--muted-dark); font-size: 14px; margin-top: 9px; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .why-grid { grid-template-columns: 1fr; } }

/* warranty banner */
.warranty { display: grid; grid-template-columns: auto 1fr auto; gap: 30px; align-items: center; background: var(--red); color: #fff; border-radius: var(--r-lg); padding: clamp(28px,4vw,46px); }
.warranty .wbig { font-family: var(--display); font-weight: 800; font-size: clamp(54px, 8vw, 92px); line-height: 0.85; letter-spacing: -0.03em; }
.warranty .wbig small { display: block; font-size: 15px; letter-spacing: 0.18em; font-weight: 600; }
.warranty h3 { font-weight: 800; font-size: clamp(24px,3vw,34px); text-transform: uppercase; }
.warranty p { color: rgba(255,255,255,.86); margin-top: 8px; max-width: 520px; }
.warranty .wsep { width: 1px; align-self: stretch; background: rgba(255,255,255,.25); }
@media (max-width: 760px) { .warranty { grid-template-columns: 1fr; text-align: left; gap: 18px; } .warranty .wsep { display: none; } }

/* ---------- before / after ---------- */
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ba-card { border-radius: var(--r-md); overflow: hidden; background: var(--paper-2); border: 1px solid var(--line); }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; position: relative; }
.ba-pair .ph { height: 190px; }
.ba-pair.ba-photo {
  display: block;
  aspect-ratio: 1672 / 941;
  gap: 0;
  background: var(--ink);
}
.ba-pair.ba-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-pair .tag { position: absolute; top: 10px; font-family: var(--display); font-weight: 700; font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 9px; border-radius: 3px; color: #fff; }
.ba-pair .tag.b { left: 10px; background: rgba(20,22,25,.8); }
.ba-pair .tag.a { right: 10px; background: var(--red); }
.ba-card .ba-cap { padding: 16px 18px; display: flex; justify-content: space-between; align-items: center; }
.ba-card .ba-cap b { font-family: var(--display); font-weight: 700; font-size: 15px; }
.ba-card .ba-cap span { font-size: 13px; color: var(--muted); }
@media (max-width: 900px) { .ba-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }

/* ---------- reviews ---------- */
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.rev-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-md); padding: 28px; display: flex; flex-direction: column; }
.rev-card .stars { margin-bottom: 14px; }
.rev-card p { font-size: 16px; line-height: 1.6; flex: 1; }
.rev-card .rev-by { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 12px; }
.rev-av { width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 800; font-size: 16px; flex: none; }
.rev-by b { display: block; font-family: var(--display); font-weight: 700; font-size: 14.5px; }
.rev-by small { display: block; font-size: 12.5px; color: var(--muted); }
@media (max-width: 900px) { .rev-grid { grid-template-columns: 1fr; } }

.rev-summary { display: inline-flex; align-items: center; gap: 16px; background: var(--paper-2); border: 1px solid var(--line); border-radius: 100px; padding: 12px 22px; }
.rev-summary .num { font-family: var(--display); font-weight: 800; font-size: 30px; line-height: 1; }
.rev-summary small { font-size: 12.5px; color: var(--muted); display: block; }

/* ---------- service area map ---------- */
.map-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,56px); align-items: center; }
.map-canvas { position: relative; background: var(--ink); border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 3.2; box-shadow: var(--shadow-md); }
.map-canvas svg { width: 100%; height: 100%; display: block; }
.map-towns { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; margin-top: 24px; }
.map-towns span { display: flex; align-items: center; gap: 9px; font-size: 14.5px; }
.map-towns svg { color: var(--red); flex: none; }
@media (max-width: 820px) { .map-wrap { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.ctaband { background: var(--red); color: #fff; }
.ctaband-in { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; padding: clamp(40px,6vw,72px) 0; }
.ctaband h2 { font-weight: 800; font-size: clamp(30px,4.4vw,52px); text-transform: uppercase; letter-spacing: -0.02em; }
.ctaband p { color: rgba(255,255,255,.9); margin-top: 12px; font-size: 17px; max-width: 540px; }
.ctaband-actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
.ctaband-phone { font-family: var(--display); font-weight: 800; font-size: clamp(28px,3vw,40px); display: inline-flex; align-items: center; gap: 12px; }
@media (max-width: 760px) { .ctaband-in { grid-template-columns: 1fr; } }

/* ---------- page hero (services / contact) ---------- */
.phero { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.phero .ph { position: absolute; inset: 0; opacity: 0.32; }
.phero-in { position: relative; padding-top: clamp(54px,7vw,104px); padding-bottom: clamp(46px,6vw,80px); }
.phero .crumb { font-family: var(--display); font-weight: 600; font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-dark); margin-bottom: 16px; }
.phero .crumb a:hover { color: #fff; }
.phero h1 { font-weight: 800; font-size: clamp(40px,6vw,82px); text-transform: uppercase; letter-spacing: -0.025em; }
.phero p { color: #d7d4cf; font-size: 18px; margin-top: 18px; max-width: 560px; }

/* ---------- services page detail rows ---------- */
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,56px); align-items: center; }
.svc-row.flip .svc-row-media { order: 2; }
.svc-row .ph { height: clamp(280px, 36vw, 420px); border-radius: var(--r-lg); }
.svc-row .svc-row-body .num { font-family: var(--display); font-weight: 800; font-size: 14px; color: var(--red); letter-spacing: 0.1em; }
.svc-row .svc-row-body h2 { font-weight: 800; font-size: clamp(28px,3.6vw,44px); text-transform: uppercase; letter-spacing: -0.02em; margin-top: 8px; }
.svc-row .svc-row-body p { color: var(--muted); font-size: 16px; margin-top: 16px; }
.svc-feats { display: grid; gap: 10px; margin: 22px 0 26px; padding: 0; }
.svc-feats li { list-style: none; display: flex; align-items: center; gap: 11px; font-size: 15px; }
.svc-feats svg { color: var(--red); background: var(--red-wash); border-radius: 50%; padding: 4px; flex: none; }
@media (max-width: 820px) {
  .svc-row { grid-template-columns: 1fr; }
  .svc-row.flip .svc-row-media { order: 0; }
}

/* process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { position: relative; padding-top: 22px; border-top: 3px solid var(--line); }
.step.on { border-top-color: var(--red); }
.step .n { font-family: var(--display); font-weight: 800; font-size: 13px; color: var(--red); letter-spacing: 0.1em; }
.step h4 { font-weight: 800; font-size: 19px; text-transform: uppercase; margin-top: 6px; }
.step p { color: var(--muted); font-size: 14px; margin-top: 8px; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .steps { grid-template-columns: 1fr; } }

/* ---------- contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(30px,4vw,64px); align-items: start; }
.cform { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(26px,3vw,40px); box-shadow: var(--shadow-sm); }
.cform h2 { font-weight: 800; font-size: clamp(26px,3vw,36px); text-transform: uppercase; letter-spacing: -0.02em; }
.cform .csub { color: var(--muted); margin-top: 10px; }
.cform .grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-top: 16px; }
.field label { font-size: 12px; font-family: var(--display); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  font-family: var(--body); font-size: 15px; background: var(--paper); color: var(--ink);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); background: var(--paper-2); }
.field.err input, .field.err select, .field.err textarea { border-color: var(--red); background: var(--red-wash); }
.field .msg { color: var(--red); font-size: 12.5px; margin-top: 5px; font-weight: 600; }
.svc-pills { display: flex; flex-wrap: wrap; gap: 9px; }
.svc-pill { font-family: var(--display); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.03em; padding: 9px 15px; border: 1.5px solid var(--line); border-radius: 100px; background: var(--paper); transition: .15s; }
.svc-pill.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.cform .btn { width: 100%; margin-top: 22px; }

.csuccess { text-align: center; padding: clamp(40px,6vw,80px) 20px; }
.csuccess[hidden] { display: none; }
.csuccess .ok { width: 76px; height: 76px; border-radius: 50%; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.csuccess h2 { font-weight: 800; font-size: 34px; text-transform: uppercase; }
.csuccess p { color: var(--muted); margin-top: 12px; font-size: 17px; }

.cinfo { display: flex; flex-direction: column; gap: 14px; }
.cinfo-card { background: var(--ink); color: #fff; border-radius: var(--r-lg); padding: 28px; }
.cinfo-card h3 { font-weight: 800; font-size: 20px; text-transform: uppercase; }
.cinfo-row { display: flex; gap: 14px; align-items: flex-start; margin-top: 18px; }
.cinfo-row .ci-ico { width: 42px; height: 42px; border-radius: var(--r-sm); background: rgba(216,49,57,.16); color: var(--red-bright); display: flex; align-items: center; justify-content: center; flex: none; }
.cinfo-row small { display: block; font-size: 12px; color: var(--muted-dark); font-family: var(--display); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.cinfo-row b { font-family: var(--display); font-weight: 700; font-size: 18px; }
.cinfo-row p { color: var(--muted-dark); font-size: 14px; }
.cinfo-emerg { background: var(--red); color: #fff; border-radius: var(--r-lg); padding: 24px 28px; }
.cinfo-emerg h3 { font-weight: 800; font-size: 19px; text-transform: uppercase; }
.cinfo-emerg p { color: rgba(255,255,255,.9); font-size: 14px; margin-top: 6px; }
.cinfo-emerg a { display: inline-flex; align-items: center; gap: 9px; font-family: var(--display); font-weight: 800; font-size: 24px; margin-top: 12px; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

/* faq */
.faq { display: grid; gap: 0; max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 20px; width: 100%; text-align: left; background: none; border: none; padding: 24px 4px; font-family: var(--display); font-weight: 700; font-size: clamp(17px,2vw,21px); color: var(--ink); }
.faq-q .pm { color: var(--red); flex: none; transition: transform .2s ease; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 280px; }
.faq-a p { color: var(--muted); font-size: 15.5px; padding: 0 4px 24px; max-width: 680px; }

/* ---------- footer ---------- */
.ftr { background: var(--ink); color: var(--muted-dark); }
.ftr-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(28px,4vw,48px); padding: clamp(50px,7vw,84px) 0 clamp(36px,4vw,52px); }
.ftr-brand .ftr-tag { margin-top: 18px; font-size: 14px; max-width: 300px; line-height: 1.6; }
.ftr-social { display: flex; gap: 10px; margin-top: 20px; }
.ftr-soc { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-dark); display: inline-flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 700; color: #fff; transition: .15s; }
.ftr-soc:hover { background: var(--red); border-color: var(--red); }
.ftr-col h4 { color: #fff; font-weight: 800; font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.ftr-col a { display: block; font-size: 14px; padding: 6px 0; transition: color .15s; }
.ftr-col a:hover { color: #fff; }
.ftr-contact a, .ftr-contact span { display: flex; align-items: center; gap: 9px; font-size: 14px; padding: 6px 0; }
.ftr-contact svg { color: var(--red-bright); flex: none; }
.ftr-base { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding: 22px 0; border-top: 1px solid var(--line-dark); font-size: 13px; }
.ftr-base-r { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.ftr-base-r a:hover { color: #fff; }
.ftr-mark { color: var(--muted-dark); }
@media (max-width: 860px) { .ftr-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .ftr-grid { grid-template-columns: 1fr; } }
