/* ==========================================================================
   Koszbusters – Mosózsákos klímatisztítás, Szeged
   Design tokens
   ========================================================================== */

:root {
  --navy:      #0C2340;
  --navy-2:    #123157;
  --blue:      #0E6FD0;
  --blue-dark: #0A559F;
  --sky:       #33A0F2;
  --mist:      #EAF2FB;
  --line:      #D7E4F3;
  --paper:     #FFFFFF;
  --soot:      #59677A;
  --ink:       #16233A;
  --warn-bg:   #FFF4E2;
  --warn-line: #F0C27A;
  --warn-ink:  #7A4E07;

  --wrap: 1180px;
  --r: 14px;
  --r-lg: 22px;
  --shadow: 0 1px 2px rgba(12, 35, 64, .06), 0 10px 30px rgba(12, 35, 64, .07);
  --shadow-lift: 0 2px 4px rgba(12, 35, 64, .08), 0 18px 40px rgba(12, 35, 64, .12);

  --f-display: "Anton", "Arial Narrow", Impact, sans-serif;
  --f-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */

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

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

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: .005em;
  line-height: .98;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.5rem, 6.2vw, 4.3rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); letter-spacing: .01em; }
h4 { font-size: 1.02rem; letter-spacing: .02em; }

p { margin: 0 0 1.05em; }
ul, ol { margin: 0 0 1.05em; padding-left: 1.25em; }
li { margin-bottom: .4em; }

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

.wrap { width: min(var(--wrap), 100% - 2.5rem); margin-inline: auto; }
.narrow { width: min(760px, 100%); }

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

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ==========================================================================
   Signature device: the "no-dirt" badge (echo of the logo's circle-slash)
   ========================================================================== */

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--f-body);
  font-weight: 800; font-size: .78rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: ""; flex: none;
  width: 17px; height: 17px; border-radius: 50%;
  border: 3px solid currentColor;
  background:
    linear-gradient(to bottom right,
      transparent calc(50% - 1.6px), currentColor calc(50% - 1.6px),
      currentColor calc(50% + 1.6px), transparent calc(50% + 1.6px));
}
.eyebrow.on-dark { color: var(--sky); }

/* Brush-stroke banner, lifted from the flyer's headline blocks.
   Used sparingly: this is the page's signature moment, not a decoration. */
.brush {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  line-height: 1.08;
  padding: .5rem 1.5rem .6rem;
  clip-path: polygon(0.8% 7%, 99.3% 0%, 98.6% 90%, 100% 100%, 1.3% 96%, 0% 45%);
}
h2 > .brush { margin-top: .12em; }
.brush--navy { background: var(--navy); }
.brush--light { background: var(--mist); color: var(--navy); }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--f-body); font-weight: 800; font-size: .93rem;
  letter-spacing: .04em; text-transform: uppercase; text-decoration: none;
  padding: .85rem 1.5rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 6px 18px rgba(14,111,208,.32); }
.btn--primary:hover { background: var(--blue-dark); color: #fff; }

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

.btn--on-dark { background: #fff; color: var(--navy); }
.btn--on-dark:hover { background: var(--sky); color: var(--navy); }

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

.btn--messenger { background: #0084FF; color: #fff; }
.btn--messenger:hover { background: #0069cc; color: #fff; }

.btn--block { width: 100%; }
.btn--sm { padding: .6rem 1.05rem; font-size: .8rem; }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; gap: 1rem;
  min-height: 74px;
}
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; margin-right: auto; }
.brand img { width: 50px; height: 50px; }
.brand-name {
  font-family: var(--f-display); font-size: 1.32rem; line-height: 1;
  color: var(--navy); text-transform: uppercase; letter-spacing: .01em;
}
.brand-sub {
  display: block; font-family: var(--f-body); font-weight: 700;
  font-size: .62rem; letter-spacing: .16em; color: var(--blue); text-transform: uppercase;
  margin-top: 3px;
}

.nav-toggle {
  display: none; background: none; border: 2px solid var(--line);
  border-radius: 10px; padding: .5rem .7rem; cursor: pointer; color: var(--navy);
  font-family: var(--f-body); font-weight: 800; font-size: .8rem; letter-spacing: .08em;
  text-transform: uppercase;
}

.nav ul { display: flex; align-items: center; gap: .2rem; list-style: none; margin: 0; padding: 0; }
.nav a {
  display: block; padding: .55rem .7rem; border-radius: 9px;
  font-weight: 700; font-size: .84rem; letter-spacing: .03em;
  text-transform: uppercase; text-decoration: none; color: var(--navy);
}
.nav a:hover { background: var(--mist); color: var(--blue-dark); }
.nav a[aria-current="page"] { color: var(--blue); box-shadow: inset 0 -3px 0 var(--blue); border-radius: 9px 9px 0 0; }

.header-cta { display: flex; align-items: center; gap: .5rem; margin-left: .6rem; }
.header-phone {
  font-family: var(--f-display); font-size: 1.12rem; color: var(--navy);
  text-decoration: none; white-space: nowrap;
}
.header-phone:hover { color: var(--blue); }

@media (max-width: 1080px) {
  .nav-toggle { display: block; order: 3; }
  .nav {
    order: 4; flex-basis: 100%; display: none;
    border-top: 1px solid var(--line); padding: .6rem 0 1rem;
  }
  .nav.is-open { display: block; }
  .nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav a { padding: .8rem .6rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav a[aria-current="page"] { box-shadow: inset 4px 0 0 var(--blue); background: var(--mist); }
  .header-inner { flex-wrap: wrap; }
  .header-cta .btn { display: none; }
}
@media (max-width: 560px) {
  .header-phone { display: none; }
  .brand-name { font-size: 1.1rem; }
  .brand img { width: 42px; height: 42px; }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1000px 420px at 88% -10%, rgba(51,160,242,.30), transparent 62%),
    radial-gradient(700px 340px at 4% 104%, rgba(14,111,208,.34), transparent 60%),
    var(--navy);
  color: #fff; padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3rem, 6vw, 4.5rem);
}
.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: var(--sky); }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.hero-lead { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: #C9DCF2; max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.6rem; }
.hero-figure { position: relative; }
.hero-figure img { border-radius: var(--r-lg); box-shadow: 0 26px 60px rgba(0,0,0,.4); }
.hero-badge {
  position: absolute; left: -26px; bottom: -26px; width: 132px;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.4));
}
.hero-facts {
  display: flex; flex-wrap: wrap; gap: .5rem .55rem; margin-top: 1.8rem; list-style: none; padding: 0;
}
.hero-facts li {
  font-size: .8rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  padding: .38rem .8rem; border-radius: 999px; margin: 0;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { order: -1; max-width: 460px; }
  .hero-badge { width: 100px; left: -14px; bottom: -18px; }
}

/* Page header for inner pages */
.page-head {
  background:
    radial-gradient(760px 300px at 92% -30%, rgba(51,160,242,.28), transparent 60%),
    var(--navy);
  color: #fff; padding: clamp(2.4rem, 5vw, 3.6rem) 0 clamp(2.2rem, 4vw, 3rem);
}
.page-head h1 { color: #fff; margin-bottom: .35em; }
.page-head p { color: #C9DCF2; max-width: 62ch; margin: 0; font-size: 1.05rem; }

.crumbs { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: #8FB5DE; margin-bottom: 1rem; }
.crumbs a { color: #C9DCF2; text-decoration: none; }
.crumbs a:hover { color: #fff; text-decoration: underline; }
.crumbs span { opacity: .55; margin: 0 .35rem; }

/* ==========================================================================
   Sections & layout helpers
   ========================================================================== */

.section { padding: clamp(2.8rem, 6vw, 4.6rem) 0; }
.section--mist { background: var(--mist); }
.section--navy { background: var(--navy); color: #fff; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy p { color: #C9DCF2; }
.section-head { max-width: 66ch; margin-bottom: 2.2rem; }
.section-head p { color: var(--soot); font-size: 1.05rem; margin-bottom: 0; }
.section--navy .section-head p { color: #C9DCF2; }

.grid { display: grid; gap: 1.1rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.2rem); align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

/* ==========================================================================
   Cards
   ========================================================================== */

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.5rem 1.4rem; box-shadow: var(--shadow);
}
.card h3 { margin-bottom: .5rem; }
.card p:last-child { margin-bottom: 0; }
.card--tight { padding: 1.15rem 1.2rem; }
.card-icon {
  width: 46px; height: 46px; border-radius: 50%; background: var(--blue);
  display: grid; place-items: center; margin-bottom: 1rem; color: #fff;
}
.card-icon svg { width: 24px; height: 24px; }
.section--mist .card { box-shadow: none; }

.stat { font-family: var(--f-display); font-size: 2.6rem; color: var(--blue); line-height: 1; }
.stat-label { font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--soot); }
.section--navy .stat { color: var(--sky); }
.section--navy .stat-label { color: #9FC1E4; }

/* Checklist */
.check { list-style: none; padding: 0; margin: 0 0 1.05em; }
.check li { position: relative; padding-left: 2rem; margin-bottom: .65em; }
.check li::before {
  content: ""; position: absolute; left: 0; top: .42em;
  width: 15px; height: 8px; border-left: 3px solid var(--blue); border-bottom: 3px solid var(--blue);
  transform: rotate(-45deg);
}
.section--navy .check li::before { border-color: var(--sky); }

.nope { list-style: none; padding: 0; margin: 0; }
.nope li { position: relative; padding-left: 2rem; margin-bottom: .55em; }
.nope li::before {
  content: ""; position: absolute; left: 2px; top: .5em;
  width: 14px; height: 14px; border-radius: 50%; border: 3px solid var(--soot);
  background: linear-gradient(to bottom right, transparent calc(50% - 1.5px), var(--soot) calc(50% - 1.5px), var(--soot) calc(50% + 1.5px), transparent calc(50% + 1.5px));
}

/* ==========================================================================
   Accordion (details/summary)
   ========================================================================== */

.acc { border: 1px solid var(--line); border-radius: var(--r); background: #fff; overflow: hidden; margin-bottom: .8rem; }
.acc + .acc { margin-top: 0; }
.acc > summary {
  display: flex; align-items: center; gap: 1rem; cursor: pointer; list-style: none;
  padding: 1.15rem 1.3rem;
  font-family: var(--f-display); font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  text-transform: uppercase; color: var(--navy); letter-spacing: .01em;
}
.acc > summary::-webkit-details-marker { display: none; }
.acc > summary:hover { background: var(--mist); }
.acc > summary::after {
  content: ""; flex: none; margin-left: auto;
  width: 26px; height: 26px; border-radius: 50%; background: var(--blue);
  background-image:
    linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
  background-size: 12px 3px, 3px 12px;
  background-position: center, center;
  background-repeat: no-repeat;
  transition: transform .25s ease;
}
.acc[open] > summary::after { background-size: 12px 3px, 0 0; transform: rotate(180deg); }
.acc[open] > summary { background: var(--mist); border-bottom: 1px solid var(--line); }
.acc-body { padding: 1.3rem 1.3rem 1.1rem; }
.acc-body > :last-child { margin-bottom: 0; }
.acc-tag {
  font-family: var(--f-body); font-weight: 800; font-size: .68rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue); background: var(--mist);
  padding: .25rem .6rem; border-radius: 999px; flex: none;
}

/* ==========================================================================
   Gallery
   ========================================================================== */

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery figure { margin: 0; }
.gallery img { border-radius: var(--r); border: 1px solid var(--line); width: 100%; }
.gallery figcaption { font-size: .85rem; color: var(--soot); margin-top: .55rem; }
@media (max-width: 720px) { .gallery { grid-template-columns: 1fr; } }

.flyer-wrap { display: grid; grid-template-columns: minmax(0,.85fr) 1fr; gap: clamp(1.5rem,4vw,3rem); align-items: center; }
.flyer-wrap img { border-radius: var(--r); box-shadow: var(--shadow-lift); }
@media (max-width: 860px) { .flyer-wrap { grid-template-columns: 1fr; } }

/* ==========================================================================
   Notes / callouts
   ========================================================================== */

.note {
  border-left: 5px solid var(--blue); background: var(--mist);
  padding: 1.1rem 1.3rem; border-radius: 0 var(--r) var(--r) 0; margin: 0 0 1.4rem;
}
.note > :last-child { margin-bottom: 0; }
.note strong { color: var(--navy); }
.note--warn { border-left-color: var(--warn-line); background: var(--warn-bg); color: var(--warn-ink); }
.note--warn strong { color: var(--warn-ink); }

/* ==========================================================================
   Price table
   ========================================================================== */

.pricetable { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.pricetable th, .pricetable td { padding: .95rem 1.1rem; text-align: left; border-bottom: 1px solid var(--line); }
.pricetable th {
  font-family: var(--f-body); font-weight: 800; font-size: .76rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--soot); background: var(--mist);
}
.pricetable tr:last-child td { border-bottom: 0; }
.pricetable td:last-child { font-weight: 800; white-space: nowrap; }
.table-scroll { overflow-x: auto; }

/* ==========================================================================
   Form
   ========================================================================== */

.form { display: grid; gap: 1.4rem; }
.fieldset {
  border: 1px solid var(--line); border-radius: var(--r); padding: 1.4rem 1.4rem 1.5rem; margin: 0;
  background: #fff;
}
.fieldset > legend {
  font-family: var(--f-display); text-transform: uppercase; font-size: 1.15rem;
  color: var(--navy); padding: 0 .6rem; margin-left: -.6rem;
}
.field-note { font-size: .88rem; color: var(--soot); margin: -.3rem 0 1.1rem; }

.row { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
.row--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 700px) { .row, .row--3 { grid-template-columns: 1fr; } }

.field { display: grid; gap: .35rem; margin-bottom: 1rem; }
.field > label, .field-label {
  font-weight: 800; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--navy);
}
.req { color: var(--blue); }
.hint { font-size: .84rem; color: var(--soot); }

input[type="text"], input[type="tel"], input[type="email"], input[type="number"], select, textarea {
  font-family: var(--f-body); font-size: 1rem; color: var(--ink);
  padding: .72rem .85rem; border: 2px solid var(--line); border-radius: 10px; background: #fff;
  width: 100%; transition: border-color .15s ease, box-shadow .15s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(14,111,208,.14);
}
textarea { min-height: 120px; resize: vertical; }
input[aria-invalid="true"], select[aria-invalid="true"] { border-color: #D14343; }
.error-msg { color: #B02323; font-size: .85rem; font-weight: 700; }

.opts { display: grid; gap: .55rem; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
.opt {
  display: flex; align-items: flex-start; gap: .65rem;
  border: 2px solid var(--line); border-radius: 11px; padding: .7rem .85rem;
  cursor: pointer; background: #fff; transition: border-color .15s ease, background .15s ease;
}
.opt:hover { border-color: #B7D2ED; background: #FAFCFF; }
.opt input { flex: none; width: 19px; height: 19px; margin-top: .18rem; accent-color: var(--blue); }
.opt:has(input:checked) { border-color: var(--blue); background: #F3F8FE; }
.opt:has(input:focus-visible) { outline: 3px solid var(--sky); outline-offset: 2px; }
.opt-text { display: block; }
.opt-title { display: block; font-weight: 700; line-height: 1.3; }
.opt-help { display: block; font-size: .82rem; color: var(--soot); line-height: 1.4; margin-top: .15rem; }
.opts--compact { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
.opts--compact .opt { padding: .55rem .7rem; }

/* Live summary panel */
.calc {
  position: sticky; top: 92px;
  background: var(--navy); color: #fff; border-radius: var(--r); padding: 1.4rem;
}
.calc h3 { color: #fff; font-size: 1.2rem; }
.calc dl { display: grid; grid-template-columns: 1fr auto; gap: .5rem 1rem; margin: 0 0 1rem; }
.calc dt { color: #A8C6E8; font-size: .9rem; }
.calc dd { margin: 0; font-weight: 800; text-align: right; }
.calc .total { border-top: 1px solid rgba(255,255,255,.2); padding-top: .7rem; margin-top: .3rem; }
.calc-note { font-size: .8rem; color: #9FC1E4; line-height: 1.5; margin: 0; }
.calc-warn {
  background: rgba(255,255,255,.1); border-left: 4px solid #FFC65C;
  padding: .7rem .85rem; border-radius: 0 8px 8px 0; font-size: .87rem; margin-bottom: 1rem;
}
.form-layout { display: grid; grid-template-columns: 1fr 330px; gap: 1.6rem; align-items: start; }
@media (max-width: 980px) {
  .form-layout { grid-template-columns: 1fr; }
  .calc { position: static; }
}

.form-actions { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; }
.form-status {
  margin-top: 1rem; padding: 1rem 1.2rem; border-radius: var(--r);
  background: var(--mist); border: 1px solid var(--line); font-weight: 600;
}
.form-status[hidden] { display: none; }
.form-status.is-ok { background: #E9F7EE; border-color: #A8DCBB; color: #17603A; }
.form-status.is-err { background: #FDECEC; border-color: #F0B4B4; color: #9C2020; }

.summary-out {
  width: 100%; min-height: 220px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .84rem; line-height: 1.55;
}

/* ==========================================================================
   Contact rows
   ========================================================================== */

.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .9rem; }
.contact-list li { display: flex; gap: .9rem; align-items: flex-start; }
.contact-ico {
  flex: none; width: 42px; height: 42px; border-radius: 50%; background: var(--mist);
  display: grid; place-items: center; color: var(--blue);
}
.contact-ico svg { width: 21px; height: 21px; }
.contact-list strong { display: block; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--soot); }
.contact-list a { font-family: var(--f-display); font-size: 1.3rem; color: var(--navy); text-decoration: none; }
.contact-list a:hover { color: var(--blue); }

/* ==========================================================================
   CTA strip
   ========================================================================== */

.cta-strip {
  background:
    radial-gradient(600px 260px at 15% 0%, rgba(51,160,242,.35), transparent 60%),
    var(--blue-dark);
  color: #fff; padding: clamp(2.4rem, 5vw, 3.4rem) 0;
}
.cta-strip h2 { color: #fff; margin-bottom: .4em; }
.cta-strip p { color: #DCEBFB; margin-bottom: 1.4rem; }
.cta-inner { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: space-between; }
.cta-inner > div { max-width: 60ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .7rem; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer { background: var(--navy); color: #B9D2EC; padding: 3rem 0 1.6rem; font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 2rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: .88rem; letter-spacing: .12em; margin-bottom: 1rem; }
.site-footer a { color: #B9D2EC; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .5em; }
.footer-brand { display: flex; gap: .8rem; align-items: center; margin-bottom: 1rem; }
.footer-brand img { width: 56px; height: 56px; }
.footer-brand .brand-name { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14); margin-top: 2.4rem; padding-top: 1.3rem;
  display: flex; flex-wrap: wrap; gap: .8rem; justify-content: space-between; font-size: .84rem;
}
.social { display: flex; gap: .6rem; margin-top: 1rem; }
.social a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.1);
  display: grid; place-items: center; color: #fff;
}
.social a:hover { background: var(--blue); }
.social svg { width: 20px; height: 20px; }

/* Floating mobile call bar */
.callbar { display: none; }
@media (max-width: 700px) {
  .callbar {
    display: grid; grid-template-columns: 1fr 1fr; gap: .5rem;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    padding: .55rem .7rem calc(.55rem + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.97); border-top: 1px solid var(--line);
  }
  body { padding-bottom: 76px; }
}

/* ==========================================================================
   Motion
   ========================================================================== */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .site-footer, .callbar, .cta-strip { display: none; }
  body { font-size: 12pt; }
}
