/* ============================================================
   KCS Kris Cleaning Services - landing page styles
   Palette anchored to the logo's magenta-pink "K" arrowmark.
   Clean whites + soft cool greys, single confident pink accent.
   ============================================================ */

:root {
  /* Brand */
  --pink:        #C2388A;
  --pink-strong: #A82D6C;
  --pink-deep:   #8E2559;
  --pink-050:    #FBEEF6;
  --pink-100:    #F6DCEC;
  --grad:        linear-gradient(135deg, #D24C99 0%, #A82D6C 100%);
  --grad-soft:   linear-gradient(135deg, #FCEDF6 0%, #F3F1FA 100%);

  /* Neutrals */
  --ink:      #1C1B22;
  --ink-2:    #45434F;
  --grey:     #6B6976;
  --grey-2:   #9A98A4;
  --line:     #ECEAF1;
  --bg:       #FFFFFF;
  --bg-soft:  #F8F7FB;
  --bg-soft2: #F3F1F8;

  /* System */
  --shadow-sm: 0 1px 2px rgba(28,27,34,.06), 0 1px 3px rgba(28,27,34,.05);
  --shadow-md: 0 8px 24px rgba(40,20,50,.07), 0 2px 6px rgba(40,20,50,.05);
  --shadow-lg: 0 20px 50px rgba(60,20,60,.12);
  --radius:   18px;
  --radius-sm: 12px;
  --container: 1180px;
  --header-h: 74px;

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* K arrowmark silhouette, reused as a mask for bullet motifs */
  --mark-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Crect x='16' y='14' width='15' height='72' rx='2'/%3E%3Cpath d='M33 50 L74 14 L90 14 L49 50 Z'/%3E%3Cpath d='M49 50 L90 86 L74 86 L33 50 Z'/%3E%3C/svg%3E");
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.02em; font-weight: 800; color: var(--ink); }
h1 { font-size: clamp(2.1rem, 6vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -.01em; }
p  { margin: 0 0 1rem; color: var(--ink-2); }
a  { color: var(--pink-strong); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px;
  transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font: inherit; font-weight: 700; font-size: 1rem; line-height: 1;
  padding: 15px 26px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 8px 20px rgba(168,45,108,.28); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(168,45,108,.36); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--pink-100); color: var(--pink-strong); }
.btn-lg { padding: 17px 32px; font-size: 1.05rem; }
.btn svg { width: 18px; height: 18px; flex: none; }

/* ---------- Eyebrow + section rhythm ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  text-transform: uppercase; letter-spacing: .12em; font-weight: 700;
  font-size: .78rem; color: var(--pink-strong); margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; width: 15px; height: 15px; flex: none;
  background: var(--pink); -webkit-mask: var(--mark-mask); mask: var(--mark-mask);
  -webkit-mask-size: contain; mask-size: contain; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
}
section { padding: 84px 0; }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 1.08rem; color: var(--grey); margin: 0; }
.bg-soft { background: var(--bg-soft); }

/* Breadcrumb (location pages) */
.breadcrumb { padding: 16px 0 0; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: .86rem; }
.breadcrumb li { display: flex; align-items: center; gap: 8px; color: var(--grey); }
.breadcrumb li:not(:last-child)::after { content: "›"; color: var(--grey-2); }
.breadcrumb a { color: var(--grey); font-weight: 600; }
.breadcrumb a:hover { color: var(--pink-strong); }
.breadcrumb [aria-current] { color: var(--ink); font-weight: 700; }

/* Local prose (location pages) */
.prose { max-width: 760px; }
.prose h2 { margin-top: 8px; }
.prose h3 { font-size: 1.28rem; margin: 34px 0 10px; }
.prose p { font-size: 1.06rem; }
.prose .service-list { margin: 18px 0 8px; }
.local-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 30px; margin: 20px 0 4px; }
.local-grid li { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--line); font-weight: 600; color: var(--ink-2); }
.local-grid svg { width: 16px; height: 16px; color: var(--pink); flex: none; }
@media (max-width: 620px) { .local-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Header
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s;
}
.header.scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 20px rgba(30,20,40,.04); }
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand-logo { height: 56px; width: auto; display: block; }
@media (max-width: 620px) { .brand-logo { height: 44px; } }
.brand .mark { width: 38px; height: 38px; flex: none; }
.brand .wordmark { display: flex; flex-direction: column; line-height: 1; }
.brand .wordmark b { font-size: 1.12rem; font-weight: 800; color: var(--ink); letter-spacing: -.01em; }
.brand .wordmark span { font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--grey); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a { color: var(--ink-2); font-weight: 600; font-size: .96rem; }
.nav a:hover { color: var(--pink-strong); text-decoration: none; }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: var(--ink); }
.header-phone:hover { color: var(--pink-strong); text-decoration: none; }
.header-phone svg { width: 17px; height: 17px; color: var(--pink); }

.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle svg { width: 26px; height: 26px; color: var(--ink); }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; overflow: hidden; padding: 56px 0 72px; background: var(--grad-soft); }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(closest-side at 88% 8%, rgba(210,76,153,.14), transparent 70%),
    radial-gradient(closest-side at 5% 92%, rgba(168,45,108,.10), transparent 70%);
}
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 13px; font-size: .82rem; font-weight: 600; color: var(--ink-2); box-shadow: var(--shadow-sm);
}
.pill svg { width: 14px; height: 14px; color: var(--pink); }

.hero h1 { margin-bottom: 18px; }
.hero h1 .accent { color: var(--pink-strong); }
.hero-sub { font-size: 1.16rem; color: var(--ink-2); max-width: 34ch; margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 22px; }
.hero-call {
  display: inline-flex; flex-direction: column; line-height: 1.1; text-decoration: none;
}
.hero-call small { font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--grey); font-weight: 700; }
.hero-call b { font-size: 1.32rem; color: var(--ink); font-weight: 800; }
.hero-call:hover b { color: var(--pink-strong); }
.hero-trustline { display: flex; align-items: center; gap: 9px; font-size: .92rem; color: var(--grey); }
.stars { color: #F5A623; letter-spacing: 1px; font-size: 1rem; }

/* Single-column hero for location pages */
.hero.hero-simple { padding: 48px 0 60px; }
.hero.hero-simple .container { grid-template-columns: 1fr; max-width: 840px; text-align: center; }
.hero-simple .hero-badges, .hero-simple .hero-actions, .hero-simple .hero-trustline { justify-content: center; }
.hero-simple .hero-sub { margin-left: auto; margin-right: auto; max-width: 52ch; }

/* Hero image */
.hero-media { position: relative; }
.hero-frame {
  position: relative; border-radius: 24px; overflow: hidden;
  aspect-ratio: 4 / 5; box-shadow: var(--shadow-lg);
  background: var(--grad); /* fallback if photo fails */
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-float {
  position: absolute; left: -18px; bottom: 26px; z-index: 2;
  background: #fff; border-radius: 16px; padding: 14px 18px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px; max-width: 250px;
}
.hero-float .ring {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  background: var(--pink-050); display: grid; place-items: center; color: var(--pink-strong);
}
.hero-float .ring svg { width: 22px; height: 22px; }
.hero-float b { display: block; font-size: .96rem; color: var(--ink); }
.hero-float span { font-size: .8rem; color: var(--grey); }

/* ---------- Trust strip ---------- */
.trust-strip { border-bottom: 1px solid var(--line); background: #fff; }
.trust-strip ul {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
  padding: 22px 0;
}
.trust-strip li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: .92rem; color: var(--ink-2); justify-content: center; }
.trust-strip svg { width: 22px; height: 22px; color: var(--pink); flex: none; }

/* ============================================================
   Services
   ============================================================ */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px; box-shadow: var(--shadow-md); position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.service-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: var(--grad); }
.service-icon {
  width: 54px; height: 54px; border-radius: 14px; background: var(--grad-soft);
  display: grid; place-items: center; color: var(--pink-strong); margin-bottom: 18px;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 1.4rem; font-weight: 800; }
.service-card > p { color: var(--grey); margin-bottom: 20px; }
.service-list { display: grid; gap: 11px; margin-bottom: 22px; }
.service-list li { display: flex; gap: 11px; align-items: flex-start; font-weight: 500; color: var(--ink-2); }
.service-list li b { font-weight: 700; color: var(--ink); }
.service-list .tick { width: 21px; height: 21px; flex: none; margin-top: 2px; color: var(--pink); }
.schedule { margin-top: auto; }
.schedule .label { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--grey); font-weight: 700; margin-bottom: 9px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { background: var(--pink-050); color: var(--pink-deep); border-radius: 8px; padding: 6px 12px; font-size: .84rem; font-weight: 700; }
.service-card .btn { margin-top: 24px; }

/* ============================================================
   Service area
   ============================================================ */
.area-note { margin-top: 22px; font-size: .95rem; color: var(--grey); }

/* Illustrated coverage map (self-contained SVG) */
.coverage { max-width: 1000px; margin: 0 auto 22px; }
figure.coverage-map {
  margin: 0; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-md); background: #E7EFDD;
}
.coverage-map svg { display: block; width: 100%; height: auto; }
.coverage-map figcaption {
  padding: 13px 20px; font-size: .92rem; color: var(--grey);
  background: #fff; border-top: 1px solid var(--line); text-align: center;
}
.coverage-map figcaption strong { color: var(--ink-2); }
.coverage-map figcaption a { font-weight: 700; }
.coverage-map .maplabel { font: 700 15px var(--font); fill: #26242C; paint-order: stroke; stroke: #fff; stroke-width: 3.4px; stroke-linejoin: round; }
.coverage-map .maplabel-hub { font: 800 18px var(--font); fill: #8E2559; paint-order: stroke; stroke: #fff; stroke-width: 4px; stroke-linejoin: round; }
.coverage-map .maplabel-sub { font: 700 12px var(--font); fill: #A82D6C; paint-order: stroke; stroke: #fff; stroke-width: 3px; stroke-linejoin: round; }
.coverage-map .roadlabel { font: 700 11px var(--font); fill: #9C7A16; }
.coverage-map .cov-banner-text { font: 800 15px var(--font); fill: #fff; letter-spacing: .04em; }
.coverage-map a { cursor: pointer; }
.coverage-map a:hover .maplabel, .coverage-map a:hover .maplabel-hub { fill: var(--pink-deep); }
.coverage-map a:hover .pinbody { fill: var(--pink-deep); }
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 880px; margin: 0 auto; }
.area-chips a {
  display: inline-flex; align-items: center; gap: 7px; background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 9px 16px; font-weight: 600; color: var(--ink-2); box-shadow: var(--shadow-sm);
  transition: border-color .15s, color .15s, transform .15s;
}
.area-chips a:hover { border-color: var(--pink-100); color: var(--pink-strong); text-decoration: none; transform: translateY(-2px); }
.area-chips svg { width: 14px; height: 14px; color: var(--pink); flex: none; }
.area-note.center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }

/* ============================================================
   About / family
   ============================================================ */
.about-wrap { display: grid; grid-template-columns: .95fr 1.05fr; gap: 52px; align-items: center; }
.about-media { position: relative; }
.about-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; background: var(--grad); }
.about-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-stat {
  position: absolute; right: -14px; top: -14px; background: #fff; border-radius: 16px;
  padding: 16px 20px; box-shadow: var(--shadow-lg); text-align: center;
}
.about-stat b { display: block; font-size: 1.7rem; font-weight: 800; color: var(--pink-strong); line-height: 1; }
.about-stat span { font-size: .78rem; color: var(--grey); font-weight: 600; }
.about blockquote {
  margin: 22px 0 0; padding: 18px 22px; background: var(--pink-050); border-radius: 14px;
  border-left: 4px solid var(--pink); font-size: 1.05rem; color: var(--ink); font-style: italic;
}

/* ============================================================
   Why choose us
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-card .ic {
  width: 48px; height: 48px; border-radius: 12px; background: var(--grad-soft);
  display: grid; place-items: center; color: var(--pink-strong); margin-bottom: 16px;
}
.why-card .ic svg { width: 26px; height: 26px; }
.why-card h3 { margin-bottom: 8px; }
.why-card p { margin: 0; font-size: .96rem; color: var(--grey); }

/* ============================================================
   Reviews
   ============================================================ */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-md); display: flex; flex-direction: column;
}
.review-card .stars { margin-bottom: 14px; }
.review-card blockquote { margin: 0 0 20px; font-size: 1.02rem; color: var(--ink); line-height: 1.55; }
.review-meta { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none; display: grid; place-items: center;
  color: var(--pink-strong); background: var(--pink-050); border: 1px solid var(--pink-100);
}
.avatar svg { width: 24px; height: 24px; }
.review-meta b { display: block; font-size: .95rem; color: var(--ink); }
.review-meta span { font-size: .82rem; color: var(--grey); display: inline-flex; align-items: center; gap: 5px; }
.review-meta svg { width: 14px; height: 14px; }

/* ============================================================
   FAQ (native details/summary accordion)
   ============================================================ */
.faq { max-width: 800px; margin: 0 auto; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  margin-bottom: 12px; box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 54px 20px 22px; position: relative;
  font-weight: 700; font-size: 1.05rem; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 22px; top: 50%; width: 12px; height: 12px;
  margin-top: -6px; border-right: 2.5px solid var(--pink); border-bottom: 2.5px solid var(--pink);
  transform: rotate(45deg); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq summary:hover { color: var(--pink-strong); }
.faq .faq-a { padding: 0 22px 20px; }
.faq .faq-a p { margin: 0; color: var(--ink-2); }

/* ============================================================
   Quote / booking CTA
   ============================================================ */
.quote { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.quote::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(closest-side at 85% 15%, rgba(210,76,153,.28), transparent 60%),
              radial-gradient(closest-side at 10% 90%, rgba(168,45,108,.22), transparent 60%);
}
.quote .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.05fr; gap: 52px; align-items: center; }
/* let grid columns shrink below content width so long strings (e.g. the email) can't force horizontal overflow */
.quote .container > * { min-width: 0; }
.quote h2 { color: #fff; }
.quote .eyebrow { color: #F0A6D0; }
.quote .eyebrow::before { background: #F0A6D0; }
.quote-lead { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 26px; }
.quote-contacts { display: grid; gap: 14px; margin-top: 8px; }
.qc-item { display: flex; align-items: center; gap: 14px; min-width: 0; }
.qc-item > div { min-width: 0; }
.qc-item .ic { width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #F0A6D0; flex: none; }
.qc-item .ic svg { width: 22px; height: 22px; }
.qc-item small { display: block; font-size: .78rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.qc-item a, .qc-item b { color: #fff; font-weight: 700; font-size: 1.1rem; text-decoration: none; overflow-wrap: anywhere; }
.qc-item a:hover { color: #F0A6D0; }

.quote-form {
  background: #fff; border-radius: 22px; padding: 30px; box-shadow: var(--shadow-lg); color: var(--ink);
}
.quote-form h3 { font-size: 1.3rem; margin-bottom: 4px; }
.quote-form .form-sub { color: var(--grey); font-size: .92rem; margin-bottom: 20px; }
.field { margin-bottom: 15px; }
.field label { display: block; font-size: .85rem; font-weight: 700; color: var(--ink-2); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: .98rem; padding: 12px 14px;
  border: 1.5px solid var(--line); border-radius: 11px; background: var(--bg-soft); color: var(--ink);
  transition: border-color .15s, background .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--pink); background: #fff; box-shadow: 0 0 0 3px rgba(194,56,138,.12);
}
.field textarea { resize: vertical; min-height: 84px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.quote-form .btn { width: 100%; margin-top: 6px; }
.form-fineprint { font-size: .8rem; color: var(--grey); margin: 12px 0 0; text-align: center; }
.form-status { font-size: .92rem; font-weight: 600; margin-top: 12px; text-align: center; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: #14131A; color: rgba(255,255,255,.72); padding: 64px 0 26px; font-size: .95rem; }
.footer a { color: rgba(255,255,255,.72); }
.footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 44px; }
.footer .brand .wordmark b { color: #fff; }
.footer .brand .wordmark span { color: rgba(255,255,255,.5); }
.footer-about { margin: 18px 0 0; color: rgba(255,255,255,.6); font-size: .92rem; max-width: 30ch; }
.footer h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.footer ul { display: grid; gap: 10px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; min-width: 0; }
.footer-contact a { overflow-wrap: anywhere; }
.footer-contact svg { width: 17px; height: 17px; color: var(--pink); flex: none; margin-top: 3px; }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; }
.socials a:hover { background: var(--pink-strong); }
.socials svg { width: 18px; height: 18px; color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .85rem; color: rgba(255,255,255,.5); }

/* ============================================================
   Sticky mobile CTA
   ============================================================ */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.94); backdrop-filter: blur(10px); border-top: 1px solid var(--line);
  box-shadow: 0 -6px 24px rgba(20,15,30,.08);
}
.mobile-cta a { flex: 1; }

/* ============================================================
   Scroll-reveal (progressive; disabled for reduced motion)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .nav, .header-phone span { display: none; }
  .nav-toggle { display: inline-flex; }
  .header.nav-open { height: auto; }
  .header.nav-open .nav {
    display: flex; position: absolute; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0; background: #fff;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); padding: 8px 0;
  }
  .header.nav-open .nav a { padding: 13px 22px; }
  .hero .container { grid-template-columns: 1fr; gap: 36px; }
  .hero-media { max-width: 460px; margin: 0 auto; width: 100%; }
  .hero-frame { aspect-ratio: 16/12; }
  .quote .container, .about-wrap { grid-template-columns: 1fr; gap: 34px; }
  .about-media { max-width: 520px; }
  .why-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-strip ul { grid-template-columns: repeat(2, 1fr); gap: 16px 10px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  section { padding: 60px 0; }
  .hero { padding: 34px 0 44px; }
  .why-grid, .reviews-grid, .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 76px; }
  .hero-float { left: 0; }
  .about-stat { right: 8px; }
  .header-cta .btn { padding: 12px 18px; font-size: .92rem; }
}
