/* 2S Exterior Services
   Built to the supplied design mockup: deep navy chrome, a single bright blue,
   condensed uppercase headings over a normal-width body face, and square-edged
   buttons rather than pills. */

:root {
  --navy-900: #021831;   /* header, CTA band */
  --navy-800: #072441;   /* hero scrim, hover states */
  --navy-700: #0a2a4d;
  --head:     #0a2240;   /* headings */
  --foot:     #111d23;   /* footer */

  --blue:       #2889e1;
  --blue-600:   #1273cf;
  --blue-700:   #0e5da8;
  --blue-300:   #5aa9ee;  /* hero second line */

  --paper:   #ffffff;
  --paper-2: #f6f7f8;
  --paper-3: #f3f4f6;   /* proof band */
  --tint:    #eaf2f8;   /* industries band */

  --text:  #33404d;
  --muted: #5f6d7a;
  --line:  #dde4ea;

  --wrap: 1220px;
  --pad: clamp(1.15rem, 4vw, 2.5rem);

  --shadow: 0 1px 2px rgba(2, 24, 49, .06), 0 8px 26px rgba(2, 24, 49, .09);
  --shadow-lg: 0 2px 6px rgba(2, 24, 49, .08), 0 22px 56px rgba(2, 24, 49, .16);

  --head-font: 'Barlow Condensed', 'Arial Narrow', system-ui, sans-serif;
  --body-font: 'Barlow', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--body-font);
  font-size: clamp(1rem, .97rem + .18vw, 1.06rem);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

/* Without height:auto an img carrying width/height attributes is stretched to
   the attribute ratio as soon as CSS sets one dimension. */
img, svg, video { max-width: 100%; height: auto; display: block; }

h1, h2, h3 {
  font-family: var(--head-font);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.04;
  letter-spacing: .005em;
  color: var(--head);
  margin: 0 0 .45em;
  text-wrap: balance;
}
h4 { font-family: var(--body-font); font-weight: 700; font-size: 1.02rem; color: var(--head); margin: 0 0 .5em; }
h1 { font-size: clamp(2.5rem, 1.5rem + 4vw, 4.15rem); }
h2 { font-size: clamp(1.9rem, 1.3rem + 2.4vw, 2.85rem); }
h3 { font-size: clamp(1.15rem, 1.05rem + .4vw, 1.35rem); }
p  { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

a { color: var(--blue-700); text-underline-offset: 2px; }
a:hover { color: var(--blue); }

.wrap { width: min(100% - (var(--pad) * 2), var(--wrap)); margin-inline: auto; }
.narrow { width: min(100%, 68ch); }

.lede { font-size: clamp(1.03rem, 1rem + .3vw, 1.2rem); color: var(--muted); }

.skip { position: absolute; left: -9999px; top: 0; z-index: 200; background: var(--blue); color: #fff; padding: .8rem 1.2rem; }
.skip:focus { left: 0; }

:where(a, button, input, textarea, select, summary):focus-visible {
  outline: 3px solid var(--blue); outline-offset: 2px;
}

/* ── Kickers ─────────────────────────────────────────────────────────────── */
.kicker {
  font-family: var(--body-font);
  font-size: .8rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  color: var(--head); margin: 0 0 .7rem;
}
/* Centered kicker with the flanking rules from the mockup. */
.kicker.center {
  display: flex; align-items: center; justify-content: center; gap: .85rem;
}
.kicker.center::before, .kicker.center::after {
  content: ""; width: 30px; height: 2px; background: var(--blue); flex: none;
}
/* Left-aligned kicker leads with a short blue dash. */
.kicker.dash::before {
  content: ""; display: inline-block; width: 11px; height: 2px;
  background: var(--blue); vertical-align: middle; margin-right: .5rem;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--body-font);
  font-size: .84rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .95rem 1.6rem;
  border: 2px solid var(--blue); border-radius: 3px;
  background: var(--blue); color: #fff;
  text-decoration: none; cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.btn:hover { background: var(--blue-700); border-color: var(--blue-700); color: #fff; }
.btn svg { width: 15px; height: 15px; flex: none; }
.btn.ghost { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
.btn.ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn.dark { background: var(--navy-900); border-color: var(--navy-900); }
.btn.dark:hover { background: var(--navy-700); border-color: var(--navy-700); }
.btn.lg { padding: 1.05rem 1.9rem; font-size: .88rem; }

/* Phone shown beside a button, separated by a hairline. */
.phone-inline {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--body-font); font-weight: 700; font-size: 1.22rem;
  color: #fff; text-decoration: none; white-space: nowrap;
  padding-left: 1.6rem; margin-left: .4rem;
  border-left: 1px solid rgba(255,255,255,.28);
}
.phone-inline svg { width: 19px; height: 19px; color: var(--blue-300); flex: none; }
.phone-inline:hover { color: var(--blue-300); }
@media (max-width: 560px) {
  .phone-inline { padding-left: 0; margin-left: 0; border-left: 0; }
}

/* ── Header ──────────────────────────────────────────────────────────────── */
.site-head { position: sticky; top: 0; z-index: 100; background: var(--navy-900); }
.head-in { display: flex; align-items: center; gap: 1.25rem; min-height: 84px; }
.brand { display: inline-flex; align-items: center; flex: none; margin-right: auto; }
.brand img { width: 190px; }
@media (max-width: 480px) { .brand img { width: 146px; } }

.nav { display: flex; align-items: center; gap: .15rem; }
.nav a {
  font-family: var(--body-font);
  font-size: .95rem; font-weight: 500;
  color: rgba(255,255,255,.88); text-decoration: none;
  padding: .55rem .7rem; border-radius: 3px;
  transition: color .15s ease, background .15s ease;
  white-space: nowrap;
}
.nav a:hover { color: #fff; background: rgba(255,255,255,.09); }
.nav a[aria-current="page"] { color: var(--blue-300); }
.nav .btn { margin-left: .9rem; color: #fff; }
.nav .btn[aria-current="page"] { color: #fff; }

.head-phone {
  display: none; align-items: center; gap: .4rem;
  color: #fff; text-decoration: none; font-weight: 700;
  padding: .5rem .6rem;
}
.head-phone svg { width: 18px; height: 18px; }

.nav-toggle {
  display: none; background: transparent; border: 1px solid rgba(255,255,255,.28);
  border-radius: 3px; color: #fff; padding: .55rem .7rem; cursor: pointer; line-height: 0;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .x { display: none; }
.nav-toggle[aria-expanded="true"] .x { display: block; }
.nav-toggle[aria-expanded="true"] .bars { display: none; }

@media (max-width: 1080px) {
  .nav-toggle, .head-phone { display: inline-flex; }
  .nav {
    position: absolute; inset: 84px 0 auto; z-index: 99;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--navy-800); padding: .5rem var(--pad) 1.3rem;
    box-shadow: 0 24px 40px rgba(0,0,0,.4);
  }
  .nav:not(.open) { display: none; }
  .nav a { padding: .95rem .3rem; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,.09); }
  .nav .btn { margin: 1.1rem 0 0; justify-content: center; border-bottom: 0; }
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero { position: relative; background: var(--navy-900); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--hero-img); background-size: cover; background-position: center 58%;
}
/* Lighter than a full overlay: the mockup keeps the photograph bright and only
   darkens the left third enough to carry the headline. */
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(96deg, rgba(2,18,38,.88) 0%, rgba(2,18,38,.62) 30%, rgba(2,18,38,.16) 56%, rgba(2,18,38,.04) 78%),
    linear-gradient(to top, rgba(2,18,38,.42), transparent 38%);
}
.hero-in { position: relative; z-index: 2; padding: clamp(3.5rem, 7.5vw, 6.5rem) 0 clamp(3.5rem, 7vw, 6rem); }
.hero-copy { max-width: 41rem; }
.hero h1 { color: #fff; margin-bottom: 0; }
.hero h1 .b { display: block; color: var(--blue-300); }
.hero-rule {
  width: min(100%, 27rem); height: 3px; margin: 1.5rem 0 1.6rem;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-300) 55%, rgba(90,169,238,0) 100%);
}
.hero .lede { color: rgba(255,255,255,.94); max-width: 30rem; font-weight: 400; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .9rem; margin-top: 2.1rem; }
.hero-note {
  display: flex; flex-wrap: wrap; gap: .45rem 1.5rem;
  margin-top: 2.2rem; padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,.2);
  font-size: .92rem; color: rgba(255,255,255,.8);
}
.hero-note span { display: inline-flex; align-items: center; gap: .45rem; }
.hero-note svg { width: 15px; height: 15px; color: var(--blue-300); flex: none; }

/* ── Interior page banner ────────────────────────────────────────────────── */
.page-head {
  background: var(--navy-900);
  background-image: linear-gradient(105deg, rgba(40,137,225,.34), transparent 62%);
  color: #fff; padding: clamp(2.8rem, 5.5vw, 4.5rem) 0 clamp(2.4rem, 4.5vw, 3.6rem);
}
.page-head h1 { color: #fff; }
.page-head .kicker { color: var(--blue-300); }
.page-head .kicker.dash::before { background: var(--blue-300); }
.page-head .lede { color: rgba(255,255,255,.86); max-width: 62ch; }

.crumbs { font-size: .85rem; color: rgba(255,255,255,.6); margin: 0 0 1rem; }
.crumbs a { color: rgba(255,255,255,.84); text-decoration: none; }
.crumbs a:hover { color: #fff; text-decoration: underline; }
.crumbs span { padding: 0 .4rem; opacity: .5; }

/* ── Sections ────────────────────────────────────────────────────────────── */
section { padding: clamp(3rem, 6vw, 5rem) 0; }
.alt { background: var(--paper-2); }
.tinted { background: var(--tint); }

.head { max-width: 62ch; margin-bottom: clamp(1.8rem, 3.5vw, 2.75rem); }
.head.center { margin-inline: auto; text-align: center; }

/* ── Services row ────────────────────────────────────────────────────────── */
/* Column dividers come from a left border that is suppressed on the first item
   of each visual row, which a gap-based rule cannot do responsively. */
.svc-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr)); }
.svc {
  text-align: center; padding: .4rem 1.25rem 1rem;
  border-left: 1px solid var(--line);
  text-decoration: none; color: inherit;
  transition: transform .16s ease;
}
.svc:first-child { border-left: 0; }
.svc:hover { transform: translateY(-3px); }
.svc:hover h3 { color: var(--blue-700); }
.svc-ico { display: block; color: var(--blue); margin: 0 auto .95rem; width: 46px; height: 46px; }
.svc-ico svg { width: 46px; height: 46px; }
.svc h3 { font-size: 1.12rem; margin-bottom: .5rem; transition: color .15s ease; }
.svc p { font-size: .94rem; color: var(--muted); margin: 0; }
@media (max-width: 720px) {
  .svc { border-left: 0; border-top: 1px solid var(--line); padding: 1.4rem .5rem; }
  .svc:first-child { border-top: 0; }
}
@media (prefers-reduced-motion: reduce) { .svc:hover { transform: none; } }

/* ── Proof band ──────────────────────────────────────────────────────────── */
.proof {
  background: var(--paper-3);
  display: grid; gap: 1.4rem 2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  padding: 1.9rem 1.9rem;
}
.proof-item { display: flex; gap: .8rem; align-items: flex-start; }
.proof-item .tick {
  flex: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--blue); color: #fff; display: grid; place-items: center; margin-top: .12em;
}
.proof-item .tick svg { width: 12px; height: 12px; }
.proof-item h3 { font-family: var(--body-font); text-transform: none; font-size: 1rem; font-weight: 700; margin: 0 0 .15rem; letter-spacing: 0; }
.proof-item p { font-size: .93rem; color: var(--muted); margin: 0; }

/* ── Split (text + media) ────────────────────────────────────────────────── */
.split { display: grid; gap: clamp(1.75rem, 4vw, 3.25rem); align-items: center; grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); }
.split.wide-right { grid-template-columns: minmax(min(100%, 18rem), .85fr) minmax(min(100%, 20rem), 1.15fr); }
@media (max-width: 860px) { .split.wide-right { grid-template-columns: 1fr; } }
.split-media img { width: 100%; border-radius: 4px; box-shadow: var(--shadow-lg); }
figure { margin: 0; }
figcaption { font-size: .86rem; color: var(--muted); margin-top: .7rem; }

/* ── Industry tiles ──────────────────────────────────────────────────────── */
.tiles { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 9.5rem), 1fr)); }
.tile {
  position: relative; display: block; overflow: hidden; border-radius: 5px;
  aspect-ratio: 3 / 4; text-decoration: none;
  background: linear-gradient(165deg, var(--navy-700), var(--navy-900));
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
@media (prefers-reduced-motion: reduce) { .tile:hover { transform: none; } }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(2,18,38,.94) 4%, rgba(2,18,38,.45) 42%, rgba(2,18,38,.1) 100%);
}
.tile-in {
  position: absolute; inset: auto 0 0; z-index: 2;
  padding: .9rem .8rem 1.1rem; text-align: center; color: #fff;
}
.tile-in svg { width: 26px; height: 26px; margin: 0 auto .5rem; color: #fff; }
.tile-in span {
  font-family: var(--head-font); font-weight: 700; text-transform: uppercase;
  font-size: 1.02rem; letter-spacing: .02em; line-height: 1.1; display: block;
}
/* A tile without a photo still needs its icon to read, so lift it off the
   gradient rather than pinning it to the bottom edge. */
.tile.no-photo .tile-in { inset: 0; display: grid; align-content: center; }
.tile.no-photo .tile-in svg { width: 34px; height: 34px; margin-bottom: .7rem; }

/* ── Checklists ──────────────────────────────────────────────────────────── */
.checks { list-style: none; padding: 0; margin: 0; display: grid; gap: .85rem; }
.checks.two { grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr)); }
.checks li { position: relative; padding-left: 2.15rem; font-size: .99rem; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: .28em;
  width: 1.3rem; height: 1.3rem; border-radius: 50%;
  background: var(--blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/.78rem no-repeat;
}

/* ── Cards (service + city grids) ────────────────────────────────────────── */
.grid { display: grid; gap: 1.05rem; }
.g2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); }
.g3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }
.g4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr)); }

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 4px;
  padding: 1.5rem 1.4rem; display: flex; flex-direction: column;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.card h3 { margin-bottom: .35rem; }
.card p { color: var(--muted); font-size: .95rem; }
a.card { text-decoration: none; color: inherit; }
a.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: rgba(40,137,225,.5); }
@media (prefers-reduced-motion: reduce) { a.card:hover { transform: none; } }
.card .ico { color: var(--blue); margin-bottom: .9rem; }
.card .ico svg { width: 38px; height: 38px; }
.card-more {
  margin-top: auto; padding-top: 1rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--blue-700); display: inline-flex; align-items: center; gap: .4rem;
}
.card-more svg { width: 13px; height: 13px; }
a.card:hover .card-more { gap: .65rem; }

/* Pill lists (cities, tags) */
.pills { display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; margin: 0; list-style: none; }
.pills a, .pills span {
  display: inline-block; padding: .45rem .95rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: 3px;
  font-size: .92rem; text-decoration: none; color: var(--text);
}
.pills a:hover { border-color: var(--blue); color: var(--blue-700); }
.pills span { color: var(--muted); }

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq { display: grid; gap: .6rem; max-width: 56rem; margin-inline: auto; }
.faq details { background: var(--paper); border: 1px solid var(--line); border-radius: 4px; padding: 1.05rem 1.3rem; }
.faq details[open] { border-color: rgba(40,137,225,.45); box-shadow: var(--shadow); }
.faq summary {
  cursor: pointer; list-style: none; font-weight: 700; font-size: 1.03rem; color: var(--head);
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 1.05rem; height: 1.05rem; margin-top: .25em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232889e1' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform .18s ease;
}
.faq details[open] summary::after { transform: rotate(180deg); }
.faq .a { padding-top: .75rem; color: var(--muted); font-size: .97rem; }

/* ── CTA band ────────────────────────────────────────────────────────────── */
.cta-band { background: var(--navy-900); color: #fff; padding: clamp(1.9rem, 3.5vw, 2.6rem) 0; }
.cta-in { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem 1.75rem; }
.cta-mark { flex: none; color: var(--blue); }
.cta-mark svg { width: 46px; height: 46px; }
.cta-copy {
  flex: 1 1 18rem; padding-left: 1.5rem; border-left: 1px solid rgba(255,255,255,.24);
}
.cta-copy h2 { color: #fff; font-size: clamp(1.4rem, 1.1rem + 1vw, 1.85rem); margin: 0 0 .18rem; }
.cta-copy p { color: rgba(255,255,255,.82); margin: 0; font-size: .99rem; }
.cta-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .9rem; }
@media (max-width: 720px) {
  .cta-mark { display: none; }
  .cta-copy { padding-left: 0; border-left: 0; }
}

/* ── Form ────────────────────────────────────────────────────────────────── */
.form-wrap { display: grid; gap: clamp(2rem, 4.5vw, 3.25rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); align-items: start; }
form.quote { display: grid; gap: 1rem; }
.field { display: grid; gap: .35rem; }
form.quote .pair { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr)); }
label { font-size: .84rem; font-weight: 700; letter-spacing: .03em; color: var(--head); }
label .opt { font-weight: 400; color: var(--muted); }
input, textarea, select {
  font: inherit; font-size: 1rem; color: var(--text);
  padding: .8rem .9rem; background: var(--paper);
  border: 1px solid var(--line); border-radius: 3px; width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(40,137,225,.18);
}
textarea { min-height: 8.5rem; resize: vertical; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .88rem; color: var(--muted); }
.form-msg { padding: .9rem 1.1rem; border-radius: 3px; font-size: .95rem; display: none; }
.form-msg.show { display: block; }
.form-msg.ok { background: #e7f6ec; border: 1px solid #a8ddb9; color: #14532d; }
.form-msg.err { background: #fdecec; border: 1px solid #f2b8b8; color: #7f1d1d; }
button[disabled] { opacity: .6; cursor: progress; }

.side-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: 4px; padding: 1.6rem 1.5rem; }
.side-card h3 { font-size: 1.15rem; }
.contact-rows { display: grid; gap: 1rem; margin-top: 1.2rem; }
.contact-row { display: flex; gap: .8rem; align-items: flex-start; }
.contact-row svg { width: 19px; height: 19px; color: var(--blue); flex: none; margin-top: .2em; }
.contact-row .k { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); display: block; }
.contact-row a { font-weight: 700; text-decoration: none; color: var(--head); }
.contact-row a:hover { color: var(--blue); }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-foot { background: var(--foot); color: rgba(255,255,255,.66); padding: clamp(2.5rem, 5vw, 3.5rem) 0 1.75rem; font-size: .94rem; }
.foot-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr)); align-items: start; }
.foot-brand { grid-column: 1 / -1; }
@media (min-width: 940px) {
  .foot-grid { grid-template-columns: 1.15fr 1fr 1.25fr .7fr; gap: 2.5rem; }
  .foot-brand { grid-column: auto; padding-right: 2rem; border-right: 1px solid rgba(255,255,255,.12); }
}
.foot-brand img { width: 196px; }
.site-foot h4 { color: #fff; font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .95rem; }
.site-foot h4 .hl { color: var(--blue-300); }
.site-foot ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.site-foot a { color: rgba(255,255,255,.7); text-decoration: none; }
.site-foot a:hover { color: #fff; }
.foot-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr)); gap: .5rem 1.5rem; }
.foot-contact { display: grid; gap: .45rem; margin-top: 1rem; }
.foot-contact a { color: #fff; font-weight: 700; }
.social { display: flex; gap: .55rem; }
.social a {
  width: 34px; height: 34px; border-radius: 50%; background: var(--blue);
  display: grid; place-items: center; color: #fff;
}
.social a:hover { background: var(--blue-700); }
.social svg { width: 17px; height: 17px; }
.foot-bottom {
  margin-top: 2.4rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
  font-size: .86rem; color: rgba(255,255,255,.45);
}

/* ── Reveal ──────────────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .45s ease, transform .45s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
