/* ============================================================
   Clean Kings Exterior Solutions — design system
   Brand matched to their truck wrap + crown logo.
   Palette: white-led + sky blue + charcoal. No gold, no em-dashes.
   Type: DM Serif Display (echoes their serif wordmark) + DM Sans.
   Shape lock: buttons = pill, cards = 14px, inputs = 10px.
   ============================================================ */

:root {
  /* brand */
  --paper: #ffffff;
  --snow: #f5f8fb;
  --haze: #e6edf2;
  --ink: #16191d;
  --ink-soft: #3a414a;
  --steel: #6c7681;
  --line: #dce4ea;

  --sky: #8fc6ea;          /* wrap stripe, graphic fills */
  --sky-soft: #e4f1fb;     /* tint wash */
  --blue: #2e90c9;         /* interactive, AA on white */
  --blue-deep: #1f77a8;    /* hover */
  --blue-ink: #0f3d5c;     /* deep accent text */

  /* type */
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;

  /* shape */
  --r-card: 14px;
  --r-input: 10px;
  --r-pill: 999px;

  /* depth (tinted to brand, never pure black) */
  --shadow-sm: 0 1px 3px rgba(22, 25, 29, 0.06), 0 6px 16px rgba(15, 61, 92, 0.05);
  --shadow-md: 0 10px 30px rgba(15, 61, 92, 0.10);
  --shadow-lg: 0 24px 60px rgba(15, 61, 92, 0.16);

  --wrap: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.05; letter-spacing: -0.01em; }
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }
section { padding-block: clamp(56px, 8vw, 104px); }
.eyebrow {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--blue);
}

/* ---------- sample banner (locked spec) ---------- */
.sample-banner {
  background: #FFD84A; color: #0A0A0A;
  font-family: var(--sans);
  font-size: 13px; font-weight: 600; padding: 10px 16px;
  letter-spacing: 0.02em; text-align: center;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-weight: 700; font-size: 16px;
  padding: 14px 26px; border-radius: var(--r-pill); border: 1.5px solid transparent;
  cursor: pointer; white-space: nowrap; transition: transform .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease);
}
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 6px 18px rgba(46,144,201,.32); }
.btn-primary:hover { background: var(--blue-deep); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(46,144,201,.40); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue-deep); transform: translateY(-2px); }
.btn-ghost.on-photo { color: #fff; border-color: rgba(255,255,255,.6); background: rgba(16,25,30,.18); backdrop-filter: blur(4px); }
.btn-ghost.on-photo:hover { border-color: #fff; background: rgba(16,25,30,.30); }
.btn-lg { padding: 17px 34px; font-size: 17px; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.88); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand img { height: 50px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-weight: 600; font-size: 15.5px; color: var(--ink-soft); transition: color .15s; }
.nav-links a:hover { color: var(--blue-deep); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { font-weight: 700; color: var(--ink); font-size: 15.5px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .2s var(--ease); }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 86vh; display: flex; align-items: center; overflow: hidden; color: #fff; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,18,26,.78) 0%, rgba(8,18,26,.52) 42%, rgba(8,18,26,.18) 100%);
}
.hero .wrap { position: relative; z-index: 2; padding-block: 64px; }
.hero-stamp {
  position: absolute; z-index: 1; right: 4%; bottom: 0; display: block;
  width: min(540px, 70vw); height: auto; opacity: .2; pointer-events: none;
}
.hero-content { max-width: 640px; }
.hero h1 { font-size: clamp(40px, 6.4vw, 74px); color: #fff; margin-bottom: 18px; }
.hero h1 em { font-style: italic; color: var(--sky); }
.hero-sub { font-size: clamp(17px, 2vw, 20px); color: rgba(255,255,255,.92); max-width: 30em; margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- trust strip ---------- */
.trust { background: var(--ink); color: #fff; }
.trust .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 20px 48px; padding-block: 26px; }
.trust-item { display: flex; align-items: center; gap: 11px; font-weight: 600; font-size: 15.5px; }
.trust-item .num { font-family: var(--serif); font-size: 26px; color: var(--sky); line-height: 1; }
.trust .stars { color: #ffc83d; letter-spacing: 2px; font-size: 15px; }
.trust-divider { width: 1px; height: 30px; background: rgba(255,255,255,.18); }

/* ---------- section heading ---------- */
.sec-head { max-width: 40rem; margin-bottom: 46px; }
.sec-head h2 { font-size: clamp(30px, 4.4vw, 46px); margin-top: 12px; }
.sec-head p { color: var(--ink-soft); font-size: 18px; margin-top: 14px; }
.sec-head.center { margin-inline: auto; text-align: center; }

/* ---------- services (asymmetric) ---------- */
.services { background: var(--snow); }
.svc-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.svc {
  position: relative; border-radius: var(--r-card); overflow: hidden; min-height: 280px;
  display: flex; align-items: flex-end; color: #fff; box-shadow: var(--shadow-sm);
  isolation: isolate;
}
.svc img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .6s var(--ease); }
.svc::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(8,18,26,.86) 0%, rgba(8,18,26,.32) 55%, rgba(8,18,26,.10) 100%); }
.svc:hover img { transform: scale(1.06); }
.svc-body { padding: 22px; }
.svc-body h3 { font-size: 23px; color: #fff; margin-bottom: 6px; }
.svc-body p { font-size: 14.5px; color: rgba(255,255,255,.85); line-height: 1.45; }
.svc .tag { position: absolute; top: 16px; left: 16px; z-index: 1; font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; background: var(--blue); padding: 5px 11px; border-radius: var(--r-pill); }
/* span: soft wash feature wide + tall, others fill */
.svc.feature { grid-column: span 3; grid-row: span 2; min-height: 380px; }
.svc.wide { grid-column: span 3; }
.svc.third { grid-column: span 2; }
.svc.half { grid-column: span 3; }

/* ---------- before / after slider ---------- */
.reveal-wrap { background: var(--paper); }
.ba {
  position: relative; width: 100%; max-width: 960px; margin-inline: auto;
  aspect-ratio: 4 / 3; border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-lg);
  user-select: none; touch-action: none; cursor: ew-resize;
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba .after-img { clip-path: inset(0 0 0 50%); }
.ba .ba-label { position: absolute; bottom: 16px; z-index: 3; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #fff; background: rgba(16,25,30,.62); padding: 6px 12px; border-radius: var(--r-pill); backdrop-filter: blur(4px); }
.ba .lbl-before { left: 16px; }
.ba .lbl-after { right: 16px; }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; z-index: 4; transform: translateX(-50%); box-shadow: 0 0 0 1px rgba(15,61,92,.15); }
.ba-knob { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 46px; height: 46px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-md); display: grid; place-items: center; color: var(--blue); }
.ba-knob svg { width: 26px; height: 26px; }
.reveal-note { text-align: center; margin-top: 22px; color: var(--steel); font-size: 14.5px; }

/* ---------- soft wash education (split) ---------- */
.softwash { background: var(--blue-ink); color: #fff; }
.softwash .wrap { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.softwash h2 { font-size: clamp(30px, 4.2vw, 46px); color: #fff; }
.softwash .eyebrow { color: var(--sky); }
.softwash p { color: rgba(255,255,255,.86); font-size: 18px; margin-top: 16px; }
.sw-points { margin-top: 26px; display: grid; gap: 14px; }
.sw-point { display: flex; gap: 13px; align-items: flex-start; }
.sw-point .dot { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; background: rgba(143,198,234,.18); color: var(--sky); display: grid; place-items: center; margin-top: 2px; }
.sw-point .dot svg { width: 15px; height: 15px; }
.sw-point b { color: #fff; }
.sw-point span { color: rgba(255,255,255,.78); font-size: 15.5px; }
.sw-media { border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; }
.sw-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- reviews ---------- */
.reviews { background: var(--snow); }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rev {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 14px;
}
.rev .stars { color: #ffc83d; letter-spacing: 2px; font-size: 15px; }
.rev blockquote { font-size: 17px; color: var(--ink); line-height: 1.5; }
.rev .who { font-weight: 700; font-size: 14.5px; color: var(--ink); margin-top: auto; }
.rev .who span { color: var(--steel); font-weight: 500; }

/* ---------- service area ---------- */
.area { background: var(--paper); }
.area .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.area-cities { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.area-cities span { font-weight: 600; font-size: 15px; background: var(--sky-soft); color: var(--blue-ink); padding: 9px 16px; border-radius: var(--r-pill); }
.area-card { background: var(--snow); border: 1px solid var(--line); border-radius: var(--r-card); padding: 30px; box-shadow: var(--shadow-sm); }
.area-card .area-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--sky-soft); color: var(--blue); display: grid; place-items: center; margin-bottom: 18px; }
.area-card .area-icon svg { width: 27px; height: 27px; }
.area-card h3 { font-size: 24px; margin-bottom: 8px; }
.area-card p { color: var(--ink-soft); }
.area-card .phone-lg { display: block; font-family: var(--serif); font-size: 28px; color: var(--blue-deep); margin-top: 16px; }

/* ---------- holiday ---------- */
.holiday { position: relative; color: #fff; overflow: hidden; }
.holiday-bg { position: absolute; inset: 0; z-index: -2; }
.holiday-bg img { width: 100%; height: 100%; object-fit: cover; }
.holiday::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(8,16,26,.86), rgba(8,16,26,.45)); }
.holiday-content { max-width: 540px; }
.holiday .eyebrow { color: var(--sky); }
.holiday h2 { font-size: clamp(28px, 4vw, 44px); color: #fff; margin-top: 12px; }
.holiday p { color: rgba(255,255,255,.88); font-size: 18px; margin-top: 14px; margin-bottom: 26px; }

/* ---------- FAQ ---------- */
.faq .wrap { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 0; display: flex; justify-content: space-between;
  align-items: center; gap: 20px; font-family: var(--serif); font-size: 21px; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .ic { flex: 0 0 auto; width: 26px; height: 26px; color: var(--blue); transition: transform .25s var(--ease); }
.faq-item[open] summary .ic { transform: rotate(45deg); }
.faq-item p { color: var(--ink-soft); padding-bottom: 24px; max-width: 64ch; font-size: 16.5px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--blue); color: #fff; text-align: center; }
.cta-band h2 { font-size: clamp(30px, 4.4vw, 50px); color: #fff; }
.cta-band p { color: rgba(255,255,255,.92); font-size: 19px; margin: 16px auto 30px; max-width: 34em; }
.cta-band .btn-primary { background: #fff; color: var(--blue-deep); box-shadow: 0 8px 24px rgba(8,40,60,.25); }
.cta-band .btn-primary:hover { background: var(--ink); color: #fff; }
.cta-band .btn-ghost { color: #fff; border-color: rgba(255,255,255,.6); }
.cta-band .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.12); color: #fff; }
.cta-band .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.72); }
.site-footer .wrap { padding-block: 56px 30px; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.foot-brand .foot-logo { width: 124px; height: auto; margin-bottom: 16px; }
.foot-brand p { font-size: 15px; max-width: 30ch; }
.foot-col h4 { font-family: var(--sans); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--sky); margin-bottom: 14px; }
.foot-col a, .foot-col p { display: block; color: rgba(255,255,255,.72); font-size: 15px; margin-bottom: 9px; }
.foot-col a:hover { color: #fff; }
.foot-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13.5px; color: rgba(255,255,255,.55); }
.foot-attr a { color: rgba(255,255,255,.7); }
.foot-attr a:hover { color: #fff; }

/* ---------- scroll reveal ---------- */
.reveal-on-scroll { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-on-scroll.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .softwash .wrap, .area .wrap { grid-template-columns: 1fr; }
  .rev-grid { grid-template-columns: 1fr; }
  .svc.feature, .svc.wide, .svc.third, .svc.half { grid-column: span 6; grid-row: auto; min-height: 260px; }
  .foot-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .site-header.open .nav-links {
    display: flex; position: absolute; top: 70px; left: 0; right: 0; flex-direction: column;
    background: #fff; border-bottom: 1px solid var(--line); padding: 18px 22px; gap: 16px;
  }
  .hero { min-height: 80vh; }
  .hero-stamp { width: 80vw; right: -16%; opacity: .08; }
  .foot-top { grid-template-columns: 1fr; }
  .trust-divider { display: none; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal-on-scroll { opacity: 1; transform: none; transition: none; }
  .btn, .svc img { transition: none; }
}

/* ============================================================
   Inner page components (services / gallery / about / contact)
   ============================================================ */

/* compact page hero */
.page-hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; padding-block: clamp(48px, 8vw, 88px); }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: 0; background: radial-gradient(120% 140% at 88% 0%, rgba(46,144,201,.30), transparent 60%); }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--sky); }
.page-hero h1 { font-size: clamp(36px, 5.6vw, 60px); color: #fff; margin-top: 12px; max-width: 16ch; }
.page-hero p { color: rgba(255,255,255,.82); font-size: 18px; margin-top: 16px; max-width: 52ch; }
.page-hero .hero-stamp { opacity: .16; width: min(440px, 64vw); bottom: 0; }

/* reusable image + text feature row */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.feature-row + .feature-row { margin-top: clamp(40px, 6vw, 80px); }
.feature-row.reverse .fr-media { order: 2; }
.fr-media { border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; }
.fr-media img { width: 100%; height: 100%; object-fit: cover; }
.fr-text .eyebrow { color: var(--blue); }
.fr-text h2 { font-size: clamp(26px, 3.4vw, 38px); margin-top: 10px; }
.fr-text p { color: var(--ink-soft); font-size: 17.5px; margin-top: 14px; }
.fr-list { margin-top: 18px; display: grid; gap: 11px; }
.fr-list li { list-style: none; display: flex; gap: 11px; align-items: flex-start; color: var(--ink-soft); }
.fr-list li svg { flex: 0 0 auto; width: 20px; height: 20px; color: var(--blue); margin-top: 3px; }
.fr-text .btn { margin-top: 24px; }

/* gallery */
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.gallery-grid .ba { aspect-ratio: 4/3; }
.ba-cap { text-align: center; margin-top: 12px; font-weight: 600; color: var(--ink); }
.ba-cap span { color: var(--steel); font-weight: 500; display: block; font-size: 14px; }
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.photo-grid figure { position: relative; border-radius: var(--r-card); overflow: hidden; aspect-ratio: 1/1; box-shadow: var(--shadow-sm); }
.photo-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.photo-grid figure:hover img { transform: scale(1.05); }
.photo-grid figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px; color: #fff; font-size: 13.5px; font-weight: 600; background: linear-gradient(0deg, rgba(8,18,26,.8), transparent); }
.photo-grid figure.tall { grid-row: span 2; aspect-ratio: auto; }

/* about stats */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stat { text-align: center; padding: 26px 18px; background: var(--snow); border: 1px solid var(--line); border-radius: var(--r-card); }
.stat .n { font-family: var(--serif); font-size: clamp(34px, 5vw, 48px); color: var(--blue-deep); line-height: 1; }
.stat .l { color: var(--ink-soft); font-size: 15px; margin-top: 8px; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
.form { display: grid; gap: 18px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-card); padding: clamp(22px, 3vw, 34px); box-shadow: var(--shadow-sm); }
.field { display: grid; gap: 7px; }
.field label { font-weight: 600; font-size: 14.5px; color: var(--ink); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 16px; color: var(--ink); background: var(--snow);
  border: 1.5px solid var(--line); border-radius: var(--r-input); padding: 13px 14px; width: 100%;
  transition: border-color .15s, box-shadow .15s;
}
.field input::placeholder, .field textarea::placeholder { color: #9aa3ad; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(46,144,201,.16); }
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 12px; align-items: end; }
.field-row.two { grid-template-columns: 1fr 1fr; }
.form .btn { justify-self: start; }
.form-ok { background: var(--sky-soft); border: 1.5px solid var(--sky); color: var(--blue-ink); border-radius: var(--r-input); padding: 14px 16px; font-weight: 600; }
.contact-side { display: grid; gap: 18px; }
.contact-card { background: var(--ink); color: #fff; border-radius: var(--r-card); padding: 28px; }
.contact-card h3 { font-size: 22px; color: #fff; margin-bottom: 14px; }
.contact-card .crow { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 16px; }
.contact-card .crow svg { width: 20px; height: 20px; color: var(--sky); flex: 0 0 auto; }
.contact-card a { color: #fff; font-weight: 600; }
.contact-card .muted { color: rgba(255,255,255,.7); font-weight: 400; }
.contact-side .area-cities span { background: var(--sky-soft); }

@media (max-width: 980px) {
  .feature-row, .contact-grid { grid-template-columns: 1fr; }
  .feature-row.reverse .fr-media { order: 0; }
  .gallery-grid, .photo-grid, .stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .gallery-grid, .photo-grid, .stats { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .photo-grid figure.tall { grid-row: auto; }
}

/* custom icon (sprite) defaults + service-card brand icons */
.svc-body .svc-ico { display: block; width: 30px; height: 30px; color: #fff; margin-bottom: 10px; }
.svc-body .svc-ico svg { width: 100%; height: 100%; }
.fr-text .svc-ico { width: 40px; height: 40px; color: var(--blue); margin-bottom: 14px; }
.svc-ico { display: block; }
.svc-ico svg { width: 100%; height: 100%; display: block; }

/* footer social links */
.foot-social { display: flex; gap: 12px; margin-top: 16px; }
.foot-social a { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; color: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.18); transition: color .15s, border-color .15s, background .15s; }
.foot-social a svg { width: 19px; height: 19px; }
.foot-social a:hover { color: #fff; border-color: var(--sky); background: rgba(143,198,234,.12); }
