/* ============================================================
   Twin Cleaners — Design System (brand-matched)
   Brand blue #046bd2 (from the live site), warm off-white,
   friendly rounded UI, real photography. Swap --tc-blue to
   re-skin everything.
   ============================================================ */

:root {
  /* Brand (from twincleaners.ae Elementor globals) */
  --tc-blue:       #046bd2;
  --tc-blue-dark:  #035cb4;
  --tc-blue-deep:  #023c84;
  --tc-blue-soft:  #e8f1fc;   /* light blue tint */
  --tc-navyfoot:   #0a2647;   /* deep blue footer */

  /* Ink & neutrals */
  --tc-ink:        #1e293b;
  --tc-body:       #41506a;
  --tc-muted:      #566070;
  --tc-line:       #e6ebf2;
  --tc-line-2:     #eef2f7;
  --tc-bg:         #ffffff;
  --tc-soft:       #f9fafb;
  --tc-cream:      #f7f5f1;   /* warm off-white for warmth */
  --tc-gold:       #f6a609;   /* review stars */
  --tc-green:      #0F7468; /* WCAG: white on this green = 5.65:1 */

  --radius:        18px;
  --radius-sm:     12px;
  --radius-lg:     28px;
  --shadow-sm:     0 1px 2px rgba(15,40,80,.05), 0 4px 12px rgba(15,40,80,.06);
  --shadow:        0 14px 36px rgba(15,40,80,.12);
  --shadow-lg:     0 26px 64px rgba(15,40,80,.18);
  --shadow-blue:   0 12px 26px rgba(4,107,210,.30);
  --maxw:          1180px;
  --header-h:      88px;
  --gut:           clamp(18px, 5vw, 40px);
  --sans:          "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --head:          "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--sans); color: var(--tc-body); background: var(--tc-bg); line-height: 1.65; font-size: 17px; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
svg { display: block; max-width: 100%; width: 1.1em; height: 1.1em; flex: none; }
a { color: var(--tc-blue-dark); text-decoration: none; }
a:hover { color: var(--tc-blue); }
ul { padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--head); color: var(--tc-ink); font-weight: 700; line-height: 1.16; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.05rem, 5vw, 3.3rem); }
h2 { font-size: clamp(1.65rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
strong { color: var(--tc-ink); }
:focus-visible { outline: 3px solid var(--tc-blue); outline-offset: 2px; border-radius: 4px; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.section { padding-block: clamp(52px, 8vw, 96px); }
/* CTA closer: the previous section already supplies its full bottom padding, so the
   wrapper only needs a small top breather — avoids a ~190px doubled-padding void. */
.section--cta { padding-top: clamp(14px, 2.4vw, 30px); }
.section--soft { background: var(--tc-soft); }
.section--cream { background: var(--tc-cream); }
.section--blue { background: linear-gradient(135deg, var(--tc-blue-dark), var(--tc-blue-deep)); color: #eaf2ff; }
.section--blue h2, .section--blue h3 { color: #fff; }
.center { text-align: center; }
.eyebrow { display: inline-block; font-family: var(--head); font-weight: 600; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--tc-blue); margin-bottom: 12px; }
.section--blue .eyebrow { color: #dbe8ff; }
.lead { font-size: 1.12rem; color: var(--tc-body); max-width: 64ch; }
.section--blue .lead { color: #eaf2ff; }
.center .lead { margin-inline: auto; }
.section-head { max-width: 740px; margin-bottom: clamp(30px, 5vw, 54px); }
.center.section-head { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-family: var(--head); font-weight: 600; font-size: 1rem; padding: 13px 26px; border-radius: 999px; border: 2px solid transparent; cursor: pointer; transition: transform .15s, box-shadow .2s, background .2s, color .2s; min-height: 50px; line-height: 1; }
.btn svg { width: 18px; height: 18px; }
.btn img { width: 20px; height: 20px; }
.btn--primary { background: var(--tc-blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn--primary:hover { background: var(--tc-blue-dark); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: #fff; color: var(--tc-ink); border-color: var(--tc-line); }
.btn--ghost:hover { border-color: var(--tc-blue); color: var(--tc-blue); }
.btn--ghost.wa-ghost svg { color: #25D366; }
.btn--light { background: #fff; color: var(--tc-blue-dark); }
.btn--light:hover { background: var(--tc-blue-soft); color: var(--tc-blue-deep); transform: translateY(-2px); }
.btn--wa { background: var(--tc-green); color: #fff; box-shadow: 0 10px 24px rgba(37,211,102,.32); }
.btn--wa:hover { background: #0b5c52; color: #fff; transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn:active { transform: translateY(0); box-shadow: var(--shadow-sm); }
.btn:disabled, .btn[aria-disabled="true"] { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }
.btn--lg { padding: 16px 30px; font-size: 1.05rem; min-height: 56px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.center .btn-row { justify-content: center; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92); backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid transparent; transition: box-shadow .25s, border-color .25s; }
.site-header.is-stuck { box-shadow: var(--shadow-sm); border-color: var(--tc-line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 88px; gap: 18px; position: relative; }
.brand { display: inline-flex; align-items: center; }
.brand img { height: 74px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links > li > a, .nav-toggle-services { display: inline-flex; align-items: center; gap: 5px; padding: 10px 13px; border-radius: 10px; font-family: var(--head); font-weight: 500; font-size: .96rem; color: var(--tc-ink); background: none; border: 0; cursor: pointer; }
.nav-links > li > a:hover, .nav-toggle-services:hover { background: var(--tc-blue-soft); color: var(--tc-blue-dark); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* .mega anchors to .nav (position:relative) so the 720px panel centers in the header instead of clipping at 961-1093px */
.has-mega { position: static; }
.mega { position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%) translateY(8px); width: min(720px, 92vw); background: #fff; border: 1px solid var(--tc-line); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 16px; opacity: 0; visibility: hidden; transition: .2s; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.mega::before { content: ""; position: absolute; left: 0; right: 0; top: -34px; height: 34px; }
.has-mega:hover .mega, .has-mega:focus-within .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega a { display: flex; gap: 12px; align-items: center; padding: 10px 12px; border-radius: 10px; color: var(--tc-ink); }
.mega a:hover { background: var(--tc-blue-soft); }
.mega a .mi { width: 34px; height: 34px; flex: none; border-radius: 9px; background: linear-gradient(150deg, var(--tc-blue), var(--tc-blue-deep)); display: grid; place-items: center; }
.mega a .mi img { width: 22px; height: 22px; object-fit: contain; }
.mega a .mi svg { width: 20px; height: 20px; color: #fff; }
.mega a b { display: block; font-size: .93rem; font-family: var(--head); font-weight: 600; }
.mega a span { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-size: .79rem; color: var(--tc-muted); }
.mega .badge { font-size: .6rem; font-weight: 700; color: #6b5600; background: #fff7e6; border: 1px solid #f0e2bd; border-radius: 999px; padding: 2px 7px; letter-spacing: .06em; text-transform: uppercase; }

.hamburger { display: none; background: none; border: 0; width: 46px; height: 46px; cursor: pointer; color: var(--tc-blue-deep); }
.hamburger svg { width: 26px; height: 26px; margin-inline: auto; }
.hamburger .ic-close { display: none; }
.hamburger[aria-expanded="true"] .ic-menu { display: none; }
.hamburger[aria-expanded="true"] .ic-close { display: block; }
.mobile-nav { display: none; }
@media (max-width: 960px) {
  .nav-links, .nav-cta .btn--ghost { display: none; }
  .hamburger { display: block; }
  .brand img { height: 52px; }
  .nav { height: 76px; }
  .nav-cta .btn--primary { padding: 11px 18px; }
  .mobile-nav { display: block; position: fixed; inset: 76px 0 0; background: #fff; z-index: 99; padding: 18px var(--gut) 120px; overflow-y: auto; transform: translateX(100%); transition: transform .28s ease; }
  .mobile-nav.open { transform: translateX(0); }
  .mobile-nav a, .mobile-nav details > summary { display: block; padding: 14px 4px; font-family: var(--head); font-weight: 600; color: var(--tc-ink); border-bottom: 1px solid var(--tc-line-2); font-size: 1.05rem; }
  .mobile-nav details summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
  .mobile-nav details summary::-webkit-details-marker { display: none; }
  .mobile-nav .sub a { display: flex; align-items: center; gap: 12px; padding: 9px 4px; font-weight: 500; font-size: .98rem; color: var(--tc-body); border: 0; }
  .mobile-nav .sub a .mi { width: 32px; height: 32px; flex: none; border-radius: 9px; background: linear-gradient(150deg, var(--tc-blue), var(--tc-blue-deep)); display: grid; place-items: center; box-shadow: 0 3px 8px rgba(4,107,210,.18); }
  .mobile-nav .sub a .mi svg { width: 18px; height: 18px; color: #fff; }
  .mobile-nav .sub a strong { font-weight: 600; color: var(--tc-ink); }
  /* the .mobile-nav a rule (0-1-1) would otherwise force display:block + dark text onto the CTAs,
     left-aligning the label and stacking the WhatsApp icon — restore the .btn flex + white text */
  .mobile-nav .btn { margin-top: 16px; border-bottom: 0; display: inline-flex; }
  .mobile-nav .btn--primary, .mobile-nav .btn--wa { color: #fff; }
  body.nav-open { overflow: hidden; }
}

/* ---------- Hero (light, matching twincleaners.ae) ---------- */
.hero { position: relative; background: linear-gradient(180deg, #ffffff 0%, #e9f2fd 100%); color: var(--tc-body); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(680px 520px at 86% 78%, rgba(4,107,210,.10), transparent 62%); pointer-events: none; }
.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(20px, 4vw, 56px); align-items: end; }
.hero-copy { padding-block: clamp(48px, 8vw, 88px); position: relative; z-index: 1; }
.hero h1 { color: var(--tc-ink); }
.hero h1 .accent { color: var(--tc-blue); }
.hero .eyebrow { color: var(--tc-blue); }
.hero-copy p { color: var(--tc-body); font-size: 1.16rem; margin-top: 18px; max-width: 48ch; }
.hero-copy p strong { color: var(--tc-ink); }
.hero-copy .btn-row { margin-top: 28px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 14px 24px; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--tc-line); }
.hero-trust div { display: flex; align-items: center; gap: 9px; font-size: .92rem; color: var(--tc-body); }
.hero-trust svg { width: 19px; height: 19px; color: var(--tc-blue); flex: none; }
.hero-photo { position: relative; align-self: end; text-align: center; min-height: 1px; z-index: 1; }
.hero-photo::before { content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 92%; max-width: 480px; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(4,107,210,.16), rgba(4,107,210,.05) 58%, transparent 70%); z-index: -1; }
.hero-photo img { max-height: 540px; width: auto; margin: 0 auto; display: block; position: relative; filter: drop-shadow(0 18px 36px rgba(15,40,80,.20)); }
.hero-badge { position: absolute; left: 4%; bottom: 16%; background: #fff; border: 1px solid var(--tc-line); border-radius: 16px; box-shadow: var(--shadow-lg); padding: 12px 16px; display: flex; align-items: center; gap: 10px; }
.hero-badge .stars { color: var(--tc-gold); letter-spacing: 1px; font-size: 1rem; }
.hero-badge b { color: var(--tc-ink); font-family: var(--head); font-size: .92rem; display: block; line-height: 1.2; }
.hero-badge span { color: var(--tc-muted); font-size: .76rem; display: block; }
.hero-badge .gicon { width: 28px; height: 28px; }
.hero-badge .rev-stars { color: var(--tc-gold); letter-spacing: 1px; font-size: .8rem; display: block; }

/* Google reviews section */
.reviews-head { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 34px; text-align: center; }
.reviews-head .glogo { height: 30px; width: auto; }
.reviews-head .rscore { font-family: var(--head); font-weight: 700; font-size: 1.7rem; color: var(--tc-ink); display: flex; align-items: center; gap: 12px; }
.reviews-head .rstars { color: var(--tc-gold); letter-spacing: 2px; font-size: 1.4rem; }
.reviews-head .rsub { color: var(--tc-muted); font-size: .95rem; }
.rev-carousel { position: relative; }
.rev-track { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 6px 2px 18px; -webkit-overflow-scrolling: touch; scrollbar-width: thin; }
.rev-track::-webkit-scrollbar { height: 6px; }
.rev-track::-webkit-scrollbar-thumb { background: var(--tc-line); border-radius: 999px; }
.rev-track .rev { scroll-snap-align: start; flex: 0 0 clamp(280px, 31.5%, 360px); }
.rev-nav { position: absolute; top: 42%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--tc-line); background: #fff; color: var(--tc-blue-deep); box-shadow: var(--shadow); cursor: pointer; display: grid; place-items: center; z-index: 2; transition: background .15s; }
.rev-nav svg { width: 22px; height: 22px; }
.rev-nav:hover { background: var(--tc-blue-soft); }
.rev-prev { left: -12px; } .rev-next { right: -12px; }
@media (max-width: 760px) { .rev-nav { display: none; } .rev-track .rev { flex-basis: 86%; } }
.rev { background: #fff; border: 1px solid var(--tc-line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 10px; margin: 0; }
.rev-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.rev-who { display: flex; align-items: center; gap: 11px; }
.rev-av { width: 40px; height: 40px; border-radius: 50%; background: var(--tc-blue-soft); color: var(--tc-blue-deep); display: grid; place-items: center; font-family: var(--head); font-weight: 700; flex: none; }
.rev-who b { display: block; font-family: var(--head); font-size: .95rem; color: var(--tc-ink); }
.rev-stars { color: var(--tc-gold); font-size: .9rem; letter-spacing: 1px; }
.rev-g { width: 22px; height: 22px; flex: none; }
.rev p { font-size: .93rem; color: var(--tc-body); margin: 0; }
.rev[dir="rtl"] { text-align: right; }
.rev[dir="rtl"] .rev-top, .rev[dir="rtl"] .rev-who { flex-direction: row-reverse; }
@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; align-items: stretch; }
  .hero-copy { padding-bottom: 8px; text-align: center; }
  .hero-copy p { margin-inline: auto; }
  .hero-copy .btn-row { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-photo img { max-height: 360px; }
  .hero-badge { left: 50%; transform: translateX(-50%); bottom: 6%; }
}

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { display: flex; flex-direction: column; align-items: center; background: #fff; border: 1px solid var(--tc-line); border-radius: var(--radius); padding: 26px 20px 24px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .22s, border-color .2s; }
.stat .num { font-family: var(--head); font-weight: 700; font-size: clamp(1.9rem, 4vw, 2.6rem); color: var(--tc-blue); line-height: 1; }
.stat .num .suffix { color: var(--tc-blue); font-size: .48em; font-weight: 600; margin-left: 2px; }
.stat .lbl { margin-top: 10px; font-family: var(--head); font-size: 1.02rem; color: var(--tc-ink); font-weight: 600; line-height: 1.25; }
.stat-stars { margin-top: 6px; color: var(--tc-gold); font-size: .92rem; letter-spacing: 2px; }
.stat-sub { margin-top: 7px; font-size: .87rem; color: var(--tc-muted); line-height: 1.5; max-width: 26ch; }
.stat-cta { display: inline-flex; align-items: center; gap: 6px; margin-top: auto; padding-top: 14px; font-family: var(--head); font-weight: 600; font-size: .9rem; color: var(--tc-blue); }
.stat-cta svg { width: 15px; height: 15px; transition: transform .2s; }
a.stat--link { color: inherit; }
.stat--link:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(4,107,210,.4); }
.stat--link:hover .stat-cta svg { transform: translateX(4px); }
@media (max-width: 620px) { .stats { grid-template-columns: 1fr 1fr; } }

/* ---------- Service cards ---------- */
/* Grid (not flex math): partial last rows left-align and no viewport band breaks (audit #4) */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 20px; }
.card { position: relative; background: #fff; border: 1px solid var(--tc-line); border-radius: var(--radius); padding: 24px 22px; box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .22s, border-color .2s; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(4,107,210,.4); }
.card .ico { width: 64px; height: 64px; border-radius: 16px; background: linear-gradient(150deg, var(--tc-blue), var(--tc-blue-deep)); display: grid; place-items: center; margin-bottom: 15px; box-shadow: 0 6px 14px rgba(4,107,210,.22); }
.card .ico img { width: 38px; height: 38px; object-fit: contain; }
.card .ico svg { width: 32px; height: 32px; color: #fff; }
.card h3 { font-size: 1.15rem; margin-bottom: 7px; }
.card p { font-size: .94rem; color: var(--tc-body); flex: 1; }
.card .price-tag { margin-top: 13px; font-family: var(--head); font-weight: 600; color: var(--tc-blue-deep); font-size: .94rem; }
.card .more { margin-top: 14px; font-family: var(--head); font-weight: 600; color: var(--tc-blue); display: inline-flex; align-items: center; gap: 6px; font-size: .93rem; }
.card:hover .more { gap: 10px; }
.card .soon { position: absolute; top: 15px; right: 15px; font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #6b5600; background: #fff7e6; border: 1px solid #f0e2bd; padding: 4px 9px; border-radius: 999px; }
/* (compact teaser card rules live at the end of this file so they win over the .cards .card refinements) */

/* ---------- Feature / why (image icons) ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .feature-grid { grid-template-columns: 1fr; } }
.feature { display: flex; gap: 15px; align-items: flex-start; background: #fff; border: 1px solid var(--tc-line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.feature .fi { width: 56px; height: 56px; flex: none; border-radius: 14px; background: linear-gradient(150deg, var(--tc-blue), var(--tc-blue-deep)); box-shadow: 0 6px 14px rgba(4,107,210,.22); display: grid; place-items: center; }
.feature .fi img { width: 32px; height: 32px; object-fit: contain; }
.feature .fi svg { width: 27px; height: 27px; color: #fff; }
.feature h3 { font-size: 1.06rem; margin-bottom: 4px; }
.feature p { font-size: .92rem; }

/* ---------- People / real-work band ---------- */
.people { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 760px) { .people { grid-template-columns: 1fr; } }
.people figure { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.people figure img { width: 100%; height: 340px; object-fit: cover; }
.people figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px; color: #fff; font-family: var(--head); font-weight: 600; background: linear-gradient(transparent, rgba(8,24,48,.78)); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--tc-blue-dark), var(--tc-blue-deep)); border-radius: var(--radius-lg); padding: clamp(34px, 5vw, 58px); color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(560px 280px at 82% -20%, rgba(255,255,255,.18), transparent 60%); pointer-events: none; }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #e6f0fb; max-width: 56ch; margin: 14px auto 0; }
.cta-band .btn-row { margin-top: 26px; justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--tc-navyfoot); color: #9fb4ce; padding-block: clamp(46px, 6vw, 72px) 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 32px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer a { color: #9fb4ce; display: block; padding: 5px 0; font-size: .95rem; }
.site-footer a:hover { color: #fff; }
.footer-services a { white-space: nowrap; }
.footer-all { color: #6aa8ec; font-weight: 600; margin-top: 6px; }
.footer-logo { background: #fff; border-radius: 14px; padding: 12px 16px; display: inline-block; box-shadow: var(--shadow); }
.footer-logo img { height: 40px; width: auto; }
.footer-brand p { color: #8ea4bf; font-size: .93rem; margin-top: 14px; max-width: 34ch; }
.footer-contact div { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: .94rem; }
.footer-contact svg { width: 18px; height: 18px; color: #6aa8ec; flex: none; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-block: 22px; display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; font-size: .85rem; color: #7e94b0; }
.footer-bottom a { color: #7e94b0; font-size: .85rem; display: inline; padding: 0; }

/* ---------- Sticky mobile bar ---------- */
.mobile-bar { display: none; }
@media (max-width: 760px) {
  .mobile-bar { display: grid; grid-template-columns: 1fr 1fr 1fr; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; background: #fff; border-top: 1px solid var(--tc-line); box-shadow: 0 -6px 24px rgba(15,40,80,.1); padding: 8px; gap: 8px; padding-bottom: max(8px, env(safe-area-inset-bottom)); }
  .mobile-bar a { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 8px 4px; border-radius: 12px; font-family: var(--head); font-size: .72rem; font-weight: 600; color: var(--tc-blue-deep); }
  .mobile-bar a svg { width: 21px; height: 21px; }
  .mobile-bar a.wa { color: #047857; }
  .mobile-bar a.book { background: var(--tc-blue); color: #fff; }
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
}

/* ---------- Inner page hero ---------- */
.page-hero { background: linear-gradient(135deg, var(--tc-blue-dark), var(--tc-blue-deep)); color: #d9e7f8; }
.page-hero .wrap { padding-block: clamp(36px, 6vw, 64px); }
.page-hero .ph-text { max-width: 64ch; }
.breadcrumb { font-size: .85rem; color: #cfe0f5; margin-bottom: 14px; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.breadcrumb a { color: #cfe0f5; } .breadcrumb a:hover { color: #fff; }
.page-hero h1 { color: #fff; max-width: 20ch; }
.page-hero p { color: #e3eefb; margin-top: 12px; max-width: 60ch; font-size: 1.08rem; }
.page-hero .ph-ico { width: 96px; height: 96px; border-radius: 22px; background: rgba(255,255,255,.14); display: grid; place-items: center; flex: none; }
.page-hero .ph-ico img { width: 56px; height: 56px; object-fit: contain; filter: brightness(0) invert(1); opacity: .95; }
@media (max-width: 720px) { .page-hero .ph-ico { display: none; } }

/* ---------- Service page ---------- */
.svc-layout { display: grid; grid-template-columns: 1fr 360px; gap: 44px; align-items: start; }
/* Mobile: the price card is the conversion engine — surface it first, mirroring the booking page (audit #8) */
@media (max-width: 900px) { .svc-layout { grid-template-columns: 1fr; } .svc-aside { order: -1; position: static; margin-bottom: 8px; } }
.prose h2 { margin-top: 8px; }
.prose h3 { margin: 28px 0 12px; }
.prose p { margin-bottom: 14px; max-width: 68ch; }
.incl { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px; margin: 8px 0 6px; }
@media (max-width: 560px) { .incl { grid-template-columns: 1fr; } }
.incl li { display: flex; gap: 10px; align-items: flex-start; font-size: .97rem; color: var(--tc-body); }
.incl li svg { width: 20px; height: 20px; color: var(--tc-blue); flex: none; margin-top: 2px; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 6px; }
.chip { background: var(--tc-blue-soft); border: 1px solid #cfe3fb; border-radius: 999px; padding: 7px 15px; font-size: .88rem; color: var(--tc-blue-deep); }
.svc-aside { position: sticky; top: calc(var(--header-h) + 6px); }
.price-card { background: #fff; border: 1px solid var(--tc-line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 26px; }
.price-card h3 { font-size: 1.02rem; margin-bottom: 4px; }
.price-card .pmain { font-family: var(--head); font-weight: 700; font-size: 1.9rem; color: var(--tc-blue-deep); margin: 10px 0 2px; }
.price-card .pmain small { font-size: .9rem; color: var(--tc-muted); font-weight: 500; }
.price-list { margin: 14px 0; }
.price-list .pr { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px dashed var(--tc-line); font-size: .94rem; }
.price-list .pr:last-child { border-bottom: 0; }
.price-list .pr b { color: var(--tc-blue-deep); }
.price-card .note { font-size: .82rem; color: var(--tc-muted); margin-top: 10px; }
.price-card .btn { margin-top: 8px; }

/* FAQ */
.faq { max-width: 820px; }
.faq details { border: 1px solid var(--tc-line); border-radius: var(--radius-sm); margin-bottom: 12px; background: #fff; overflow: hidden; }
.faq summary { cursor: pointer; padding: 18px 22px; font-family: var(--head); font-weight: 600; color: var(--tc-ink); list-style: none; display: flex; justify-content: space-between; gap: 16px; align-items: center; font-size: 1.02rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { width: 22px; height: 22px; flex: none; color: var(--tc-blue); transition: transform .2s; }
.faq details[open] summary .pm { transform: rotate(45deg); }
.faq details > div { padding: 0 22px 20px; color: var(--tc-body); font-size: .97rem; }

/* ---------- Booking ---------- */
.booking-grid { display: grid; grid-template-columns: 1fr 380px; gap: 38px; align-items: start; }
@media (max-width: 900px) { .booking-grid { grid-template-columns: 1fr; } .booking-grid > div:last-child { order: -1; } .estimate { position: static; margin-bottom: 24px; } }
.field { margin-bottom: 18px; }
.field > label { display: block; font-family: var(--head); font-weight: 600; color: var(--tc-ink); margin-bottom: 7px; font-size: .95rem; }
.field select, .field input, .field textarea { width: 100%; padding: 13px 15px; border: 2px solid var(--tc-line); border-radius: 12px; font: inherit; color: var(--tc-ink); background: #fff; transition: border-color .15s; }
.field select:focus, .field input:focus, .field textarea:focus { border-color: var(--tc-blue); outline: none; box-shadow: 0 0 0 3px rgba(4,107,210,.25); }
.field .hint { font-size: .82rem; color: var(--tc-muted); margin-top: 5px; }
.field input.invalid, .field textarea.invalid { border-color: #e11d48; box-shadow: 0 0 0 3px rgba(225,29,72,.12); }
.ferr { font-size: .8rem; color: #e11d48; margin-top: 5px; font-weight: 500; }
.opt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { .opt-grid { grid-template-columns: 1fr; } }
/* Quantity rows: label on the left, stepper on the right — keeps every qty field aligned */
.field--qty { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.field--qty label { margin-bottom: 0; }
.qty { display: flex; align-items: center; border: 2px solid var(--tc-line); border-radius: 12px; overflow: hidden; width: max-content; flex: none; }
.qty button { width: 42px; height: 44px; border: 0; background: var(--tc-soft); font-size: 1.2rem; cursor: pointer; color: var(--tc-blue-deep); }
.qty input { width: 54px; text-align: center; border: 0; border-inline: 2px solid var(--tc-line); border-radius: 0; }
.estimate { position: sticky; top: calc(var(--header-h) + 6px); background: linear-gradient(135deg, var(--tc-blue-dark), var(--tc-blue-deep)); color: #fff; border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-lg); }
.estimate h2 { color: #fff; font-size: 1rem; }
.estimate .amount { font-family: var(--head); font-weight: 700; font-size: 2.5rem; margin: 14px 0 4px; color: #fff; }
.estimate .amount small { font-size: 1rem; color: #cfe0f5; font-family: var(--sans); }
.estimate .bd { font-size: .9rem; color: #e3eefb; margin: 18px 0 14px; border-top: 1px solid rgba(255,255,255,.16); padding-top: 16px; }
.estimate .bd .r { display: flex; justify-content: space-between; padding: 5px 0; }
.estimate .disclaim { font-size: .78rem; color: #dcecff; margin-top: 10px; }

/* ---------- Misc ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }
.media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tag-soon { display: inline-block; background: #fff7e6; color: #9a7b1e; border: 1px solid #f0e2bd; font-size: .78rem; font-weight: 700; padding: 6px 14px; border-radius: 999px; margin-bottom: 16px; }
.callout { background: var(--tc-blue-soft); border: 1px solid #cfe3fb; border-radius: var(--radius); padding: 18px 22px; font-size: .95rem; color: var(--tc-blue-deep); }
.placeholder-note { background: #fffaf0; border: 1px dashed #e3c98a; color: #8a6d1e; border-radius: 12px; padding: 14px 18px; font-size: .86rem; margin: 18px 0; }
.error-page { text-align: center; padding-block: clamp(70px, 12vw, 140px); min-height: 60vh; display: grid; place-content: center; }
.error-page .code { font-family: var(--head); font-weight: 700; font-size: clamp(5rem, 18vw, 10rem); color: var(--tc-blue); line-height: 1; }
.error-page h1 { font-weight: 600; font-size: clamp(1.5rem, 4vw, 2.1rem); }

/* ===== Photo-rich redesign additions ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 820px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { background: #fff; border: 1px solid var(--tc-line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .22s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card img { width: 100%; height: 190px; object-fit: cover; display: block; }
.blog-card-body { padding: 18px 20px 22px; }
.blog-card-body .eyebrow { margin-bottom: 6px; font-size: .75rem; }
.blog-card-body h3 { font-size: 1.05rem; margin-bottom: 8px; line-height: 1.3; }
.blog-card-body h3 a { color: var(--tc-ink); }
.blog-card-body h3 a:hover { color: var(--tc-blue); }
.blog-card-body p { font-size: .9rem; color: var(--tc-muted); margin-bottom: 12px; }
.blog-card-body .read-more { font-family: var(--head); font-weight: 600; color: var(--tc-blue); font-size: .9rem; display: inline-flex; align-items: center; gap: 5px; }
.blog-card-body .read-more svg { width: 16px; height: 16px; }

.svc-photo-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(22px,3.5vw,44px); align-items: center; margin: clamp(28px,4vw,44px) 0; }
.svc-photo-split.reverse .media { order: 2; }
@media (max-width: 820px) { .svc-photo-split { grid-template-columns: 1fr; } .svc-photo-split.reverse .media { order: 0; } }
.svc-photo-split .media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.svc-photo-split .media img { width: 100%; height: 340px; object-fit: cover; display: block; }
.svc-photo-split .svc-split-text h2 { margin-bottom: 12px; }
.svc-photo-split .svc-split-text p { color: var(--tc-body); margin-bottom: 14px; }

.about-gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 14px; }
.about-gallery .ag-main { grid-row: 1 / 3; }
.about-gallery .ag-item { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.about-gallery .ag-item img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 170px; }
.about-gallery .ag-main img { min-height: 360px; }
@media (max-width: 720px) { .about-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; } .about-gallery .ag-main { grid-row: auto; grid-column: 1 / 3; } }

.svc-why { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin: 36px 0; }
@media (max-width: 760px) { .svc-why { grid-template-columns: 1fr 1fr; } }
.svc-why-item { background: var(--tc-blue-soft); border-radius: var(--radius-sm); padding: 18px 14px; text-align: center; }
.svc-why-item .fi { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(150deg, var(--tc-blue), var(--tc-blue-deep)); display: grid; place-items: center; margin: 0 auto 10px; box-shadow: 0 5px 12px rgba(4,107,210,.22); }
.svc-why-item .fi img { width: 28px; height: 28px; object-fit: contain; }
.svc-why-item .fi svg { width: 24px; height: 24px; color: #fff; }
.svc-why-item .swt { font-family: var(--head); font-weight: 600; font-size: .9rem; color: var(--tc-blue-deep); margin: 0; }

.related-services { margin: 38px 0 0; }
.related-services h3 { margin-bottom: 14px; font-size: 1.1rem; }
.related-services .chip { background: #fff; }
.related-services .chip a { color: var(--tc-blue-dark); font-size: .9rem; }
.related-services .chip:hover { background: var(--tc-blue-soft); }


.hero-trust-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.hero-trust-pill { background: var(--tc-blue-soft); border: 1px solid #cfe3fb; border-radius: 999px; padding: 7px 15px; font-size: .84rem; color: var(--tc-blue-deep); font-family: var(--head); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.hero-trust-pill svg { width: 14px; height: 14px; color: var(--tc-blue); flex: none; }
.hero-trust-pill a { color: inherit; }
@media (max-width: 880px) { .hero-trust-pills { justify-content: center; } }

.page-hero-inner { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); padding-block: clamp(36px,6vw,64px); display: grid; grid-template-columns: 1fr 420px; gap: clamp(20px,4vw,48px); align-items: center; }
.page-hero-copy { max-width: 54ch; }
.page-hero-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.page-hero-img img { width: 100%; height: 360px; object-fit: cover; display: block; }
.page-hero-img--cutout { background: linear-gradient(160deg, var(--tc-blue), var(--tc-blue-deep)); display: flex; align-items: flex-end; justify-content: center; }
.page-hero-img--cutout img { height: 380px; width: auto; object-fit: contain; }
@media (max-width: 820px) { .page-hero-inner { grid-template-columns: 1fr; } .page-hero-img, .page-hero-media { display: none; } }

/* ===== Service-page hero — light & premium (matches homepage family) ===== */
.page-hero.svc-hero { background: linear-gradient(168deg, #e7f0fd 0%, #f3f8fe 56%, #ffffff 100%); color: var(--tc-body); position: relative; overflow: hidden; }
.page-hero.svc-hero::before { content: ""; position: absolute; top: -30%; right: -6%; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle, rgba(4,107,210,.16), transparent 62%); pointer-events: none; }
.page-hero.svc-hero::after { content: ""; position: absolute; bottom: -48%; left: -12%; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(4,107,210,.08), transparent 66%); pointer-events: none; }
.page-hero.svc-hero .page-hero-inner, .page-hero.svc-hero .wrap { position: relative; z-index: 1; }
.page-hero.svc-hero .breadcrumb { color: var(--tc-muted); }
.page-hero.svc-hero .breadcrumb a { color: var(--tc-blue-dark); }
.page-hero.svc-hero .breadcrumb a:hover { color: var(--tc-blue); }
.page-hero.svc-hero .eyebrow { color: var(--tc-blue); }
.page-hero.svc-hero h1 { color: var(--tc-ink); }
.page-hero.svc-hero p { color: var(--tc-body); }
.page-hero-media { position: relative; display: flex; align-items: center; justify-content: center; }
.page-hero-media::before { content: ""; position: absolute; width: 88%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(4,107,210,.22), rgba(4,107,210,.06) 54%, transparent 72%); z-index: 0; }
.page-hero.svc-hero .page-hero-img { position: relative; z-index: 1; width: 100%; box-shadow: 0 0 0 6px #fff, 0 28px 56px rgba(15,40,80,.22); }

.people--3 { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 900px) { .people--3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .people--3 { grid-template-columns: 1fr; } }

.svc-gallery-single { margin: 28px 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.svc-gallery-single img { width: 100%; height: 320px; object-fit: cover; display: block; }
.svc-gallery-single figcaption { background: var(--tc-soft); border-top: 1px solid var(--tc-line); padding: 12px 18px; font-size: .88rem; color: var(--tc-muted); font-style: italic; }

.page-hero .eyebrow { color: #dbe8ff; display: block; }
.skip-link { position: absolute; left: -9999px; top: 8px; padding: 10px 18px; background: var(--tc-blue); color: #fff; border-radius: 8px; font-family: var(--head); font-weight: 600; z-index: 9999; }
.skip-link:focus { left: 8px; }
.legal-prose h2 { font-size: 1.3rem; margin-top: 30px; }
.legal-prose h3 { font-size: 1.08rem; margin-top: 18px; }
.legal-prose p { margin-bottom: 12px; }
.legal-prose ul { list-style: disc; padding-left: 22px; margin: 0 0 14px; }
.legal-prose li { margin-bottom: 6px; color: var(--tc-body); }

/* ===== Refinements ===== */
/* Compact services grid */
.cards .card { padding: 20px 18px; }
.cards .card .ico { width: 54px; height: 54px; border-radius: 14px; margin-bottom: 12px; }
.cards .card .ico img { width: 32px; height: 32px; }
.cards .card .ico svg { width: 28px; height: 28px; }
.cards .card h3 { font-size: 1.05rem; }
.cards .card p { font-size: .9rem; }

/* How it works — process cards */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 820px) { .process { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .process { grid-template-columns: 1fr; } }
.process-step { position: relative; background: #fff; border: 1px solid var(--tc-line); border-radius: var(--radius); padding: 28px 22px; text-align: center; box-shadow: var(--shadow-sm); }
.process-step .pnum { position: absolute; top: 12px; right: 18px; font-family: var(--head); font-weight: 700; font-size: 1.6rem; color: #c2d8f3; }
.process-step .pico { width: 60px; height: 60px; border-radius: 50%; background: var(--tc-blue-soft); color: var(--tc-blue); display: grid; place-items: center; margin: 0 auto 14px; }
.process-step .pico svg { width: 28px; height: 28px; }
.process-step h3 { font-size: 1.08rem; margin-bottom: 6px; }
.process-step p { font-size: .92rem; color: var(--tc-body); }

/* Footer — clearer text */
.site-footer { color: #b6c6db; }
.site-footer a { color: #c0cfe1; }
.footer-brand p { color: #aebfd4; }
.footer-bottom, .footer-bottom a { color: #9aacc4; }
.footer-all { color: #7fb6f0; }

/* Anchor offset so sticky-header doesn't clip section headings */
section[id] { scroll-margin-top: 104px; }
@media (max-width: 960px) { section[id] { scroll-margin-top: 88px; } :root { --header-h: 76px; } }

/* Print — strip site chrome from the long legal pages clients save/print */
@media print {
  .site-header, .mobile-bar, .mobile-nav, .site-footer, .cta-band, .skip-link, .page-hero { display: none !important; }
  body { color: #000; background: #fff; font-size: 12pt; padding: 0; }
  a { color: #000; text-decoration: underline; }
  .wrap { max-width: none; padding: 0; }
  .section { padding-block: 0; }
}

/* ===== Compact teaser card (homepage) — kept LAST so it wins over the .cards .card refinements (audit #13) ===== */
.cards .card--compact { align-items: center; text-align: center; justify-content: flex-start; padding: 26px 16px 22px; }
.cards .card--compact .ico { width: 62px; height: 62px; border-radius: 18px; margin-bottom: 14px; background: linear-gradient(150deg, var(--tc-blue), var(--tc-blue-deep)); border: 0; box-shadow: 0 6px 14px rgba(4,107,210,.24); }
.cards .card--compact .ico svg { width: 32px; height: 32px; color: #fff; }
.cards .card--compact h3 { font-size: 1rem; margin-bottom: 0; min-height: 2.6em; display: flex; align-items: center; justify-content: center; }
.cards .card--compact .go { margin-top: 10px; color: var(--tc-blue); opacity: .65; transition: opacity .2s, transform .2s; }
.cards .card--compact .go svg { width: 17px; height: 17px; }
.cards .card--compact:hover .go { opacity: 1; transform: translateX(4px); }
.cards .card--compact .soon-tag { margin-top: 10px; font-size: .62rem; font-weight: 700; color: #6b5600; background: #fff7e6; border: 1px solid #f0e2bd; border-radius: 999px; padding: 2px 10px; letter-spacing: .06em; text-transform: uppercase; }
.cards .card--soon .ico { opacity: .9; filter: saturate(.85); }
@media (max-width: 560px) {
  .cards.cards--compact { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cards .card--compact { padding: 18px 10px 16px; }
  .cards .card--compact .ico { width: 52px; height: 52px; border-radius: 15px; }
  .cards .card--compact .ico svg { width: 27px; height: 27px; }
  .cards .card--compact h3 { font-size: .88rem; min-height: 2.4em; }
}

/* ===== Photo cards (services directory) ===== */
.cards--photogrid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.card--photo { padding: 0; overflow: hidden; }
.card--photo .cp-media { position: relative; height: 188px; overflow: hidden; }
.card--photo .cp-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.card--photo:hover .cp-media img { transform: scale(1.06); }
.card--photo .cp-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(2,30,64,0) 55%, rgba(2,30,64,.28)); pointer-events: none; }
.card--photo .cp-media .soon { top: 14px; right: 14px; }
.card--photo .cp-body { position: relative; padding: 26px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.card--photo .cp-body .ico { position: absolute; top: -27px; left: 18px; width: 54px; height: 54px; border-radius: 15px; box-shadow: 0 0 0 4px #fff, 0 8px 18px rgba(4,107,210,.30); margin: 0; z-index: 1; }
.card--photo .cp-body h3 { margin: 6px 0 7px; padding-left: 66px; min-height: 38px; display: flex; align-items: center; }
.card--photo .cp-body p { font-size: .92rem; color: var(--tc-body); flex: 1; }
.card--photo .cp-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--tc-line-2); }
.card--photo .cp-foot .price-tag, .card--photo .cp-foot .more { margin: 0; }
@media (max-width: 560px) { .cards--photogrid { grid-template-columns: 1fr; } .card--photo .cp-media { height: 170px; } }

/* ===== Focus ring: white on dark-blue surfaces so the conversion path is keyboard-visible (audit #5) ===== */
.page-hero:not(.svc-hero) :focus-visible, .cta-band :focus-visible, .estimate :focus-visible, .site-footer :focus-visible { outline-color: #fff; }

/* ===== Trust micro-elements (audit #11) ===== */
.cta-perks { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 26px; }
.cta-perk { display: inline-flex; align-items: center; gap: 7px; padding: 8px 16px; border-radius: 999px; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.32); color: #fff; font-family: var(--head); font-weight: 600; font-size: .85rem; }
a.cta-perk:hover { background: rgba(255,255,255,.24); color: #fff; }
.cta-perk svg { width: 15px; height: 15px; color: #fff; }
.cta-perk .rev-stars { color: var(--tc-gold); font-size: .8rem; letter-spacing: 1px; }
.pc-proof { margin-top: 14px; text-align: center; font-size: .84rem; color: var(--tc-muted); }
.pc-proof .rev-stars { color: var(--tc-gold); font-size: .78rem; letter-spacing: 1px; margin-right: 4px; }
.svc-review { margin: 34px 0 6px; max-width: 600px; }
.svc-review .rev { box-shadow: var(--shadow-sm); }
.svc-review-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-family: var(--head); font-weight: 600; font-size: .92rem; color: var(--tc-blue); }
.svc-review-more svg { width: 16px; height: 16px; }
.estimate .btn--wa { margin-top: 22px; }
.estimate .est-alt { font-size: .84rem; color: #dcecff; margin-top: 16px; text-align: center; }
.estimate .est-alt a { color: #fff; font-weight: 600; text-decoration: underline; }
.bk-promise { display: block; margin-top: 16px; padding-inline: 8px; font-size: .84rem; color: var(--tc-muted); text-align: center; line-height: 1.6; }
.bk-promise svg { display: inline-block; width: 15px; height: 15px; color: var(--tc-blue); vertical-align: -2px; margin-right: 5px; }
.bk-promise a { color: var(--tc-blue-dark); text-decoration: underline; white-space: nowrap; }

/* ===== Booking page (audit #7, #16) ===== */
.bk-send-mobile { display: none; }
@media (max-width: 900px) {
  .bk-send-mobile { display: inline-flex; margin-top: 4px; }
  body.page-booking .mobile-bar { display: none; }
  body.page-booking { padding-bottom: 24px; }
}
.bk-fallback { margin-top: 36px; border: 1px solid var(--tc-line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); overflow: hidden; }
.bk-fallback summary { display: flex; align-items: center; gap: 14px; cursor: pointer; padding: 16px 20px; list-style: none; transition: background .15s; }
.bk-fallback summary:hover { background: var(--tc-soft); }
.bk-fallback summary::-webkit-details-marker { display: none; }
.bk-fallback .bf-ico { width: 44px; height: 44px; flex: none; border-radius: 13px; background: linear-gradient(150deg, var(--tc-blue), var(--tc-blue-deep)); display: grid; place-items: center; box-shadow: 0 5px 12px rgba(4,107,210,.22); }
.bk-fallback .bf-ico svg { width: 20px; height: 20px; color: #fff; }
.bk-fallback .bf-sumtext { font-size: .94rem; color: var(--tc-muted); line-height: 1.45; }
.bk-fallback .bf-sumtext b { display: block; font-family: var(--head); font-weight: 600; color: var(--tc-ink); font-size: 1.02rem; }
.bk-fallback .chev { margin-left: auto; color: var(--tc-muted); flex: none; transition: transform .2s; }
.bk-fallback .chev svg { width: 19px; height: 19px; }
.bk-fallback[open] .chev { transform: rotate(180deg); }
.bk-fallback .bf-inner { padding: 18px 20px 22px; border-top: 1px solid var(--tc-line-2); }
.bk-fallback .bf-hp { position: absolute; left: -9999px; }
.bf-note { display: flex; align-items: center; gap: 7px; font-size: .82rem; color: var(--tc-muted); margin: -4px 0 14px; }
.bf-note svg { width: 15px; height: 15px; color: var(--tc-green); flex: none; }
.bf-success { text-align: center; padding: 14px 8px 8px; }
.bf-success .ok { width: 56px; height: 56px; border-radius: 50%; background: #e7f6ee; color: var(--tc-green); display: grid; place-items: center; margin: 0 auto 12px; }
.bf-success .ok svg { width: 26px; height: 26px; }
.bf-success h3 { margin-bottom: 6px; }
.bf-success p { font-size: .95rem; color: var(--tc-body); max-width: 46ch; margin: 0 auto 10px; }
.bf-success .bf-success-alt { font-size: .88rem; color: var(--tc-muted); }
.bf-success .bf-success-alt a { font-weight: 600; }

/* Cutout images on light heroes: soft halo instead of the dark blue tile (about + housekeeping) */
.page-hero.svc-hero .page-hero-img--cutout { background: radial-gradient(circle at 50% 78%, rgba(4,107,210,.18), rgba(4,107,210,.05) 56%, transparent 72%); box-shadow: none; }

/* NOTE: the dark .page-hero base is now reserved for legal/document pages only —
   every funnel page (home, services, our-services, booking, contact, about) uses the light .svc-hero variant. */

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto; } }

/* ---------- social icon row (footer dark + contact light) ---------- */
.social-row { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.social-row a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); color: #6aa8ec; padding: 0; transition: background .2s, color .2s, transform .2s, border-color .2s; }
.social-row a:hover { background: #046bd2; color: #fff; border-color: transparent; transform: translateY(-2px); }
.social-row a svg { width: 18px; height: 18px; display: block; }
.social-row--light { margin-top: 4px; }
.social-row--light a { border-color: #d8e4f3; color: #046bd2; }
.social-row--light a:hover { color: #fff; }

/* ---------- service-page depth block (fattens the thin pages) ---------- */
.svc-depth { margin-top: 38px; }
.svc-depth h2 { margin-bottom: 10px; }
.svc-depth > p { color: var(--tc-body); max-width: 68ch; margin-bottom: 16px; }

/* ---------- per-service "Where we clean" local-SEO module ---------- */
.where-clean { max-width: 940px; margin: 0 auto; text-align: center; }
.where-clean .lead { margin: 0 auto; }
.where-clean .chips { justify-content: center; margin-top: 20px; }
.where-clean .wc-note { color: var(--tc-muted); font-size: .92rem; max-width: 58ch; margin: 18px auto 0; }

/* ---------- community finder (search + chips) ---------- */
.comm-finder { width: 100%; margin-top: 20px; }
.comm-search-wrap { position: relative; max-width: 440px; margin: 0 auto 22px; }
.comm-search-wrap svg { position: absolute; left: 17px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--tc-muted); pointer-events: none; }
.comm-search { width: 100%; padding: 13px 18px 13px 46px; border: 2px solid var(--tc-line); border-radius: 999px; font: inherit; color: var(--tc-ink); background: #fff; transition: border-color .15s, box-shadow .15s; }
.comm-search::placeholder { color: var(--tc-muted); }
.comm-search:focus { border-color: var(--tc-blue); outline: none; box-shadow: 0 0 0 3px rgba(4,107,210,.18); }
.comm-finder .chips { justify-content: center; }
.comm-none { margin: 16px auto 0; max-width: 52ch; color: var(--tc-muted); font-size: .92rem; }
.comm-none a { color: var(--tc-blue-deep); font-weight: 600; }

/* ---------- blog article + prose lists/quotes ---------- */
.blog-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 16px; color: var(--tc-muted); font-size: .92rem; font-family: var(--head); font-weight: 500; }
.blog-meta .dot { opacity: .5; }
.blog-hero { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); margin: 0 0 clamp(22px, 4vw, 36px); }
.blog-hero img { width: 100%; height: auto; display: block; aspect-ratio: 16 / 9; object-fit: cover; }
.blog-article h2 { margin: 30px 0 12px; }
.blog-article h3 { margin: 24px 0 10px; }
.prose ul { margin: 4px 0 18px; padding-left: 22px; }
.prose ul li { margin-bottom: 8px; color: var(--tc-body); list-style: disc; }
.prose blockquote { border-left: 3px solid var(--tc-blue); background: var(--tc-blue-soft); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 14px 18px; margin: 24px 0; }
.prose blockquote p { margin: 0; color: var(--tc-blue-deep); font-size: 1.05rem; max-width: none; }
.blog-svccta { margin-top: 30px; }
.blog-svccta a { font-weight: 600; color: var(--tc-blue-deep); display: inline-flex; align-items: center; gap: 6px; }
.blog-svccta a svg { width: 16px; height: 16px; }
.blog-meta .byline { color: var(--tc-ink); font-weight: 600; }
/* Lead paragraph: a larger, calmer intro that sets the article apart from the body */
.blog-article > p.lead { font-size: 1.16rem; line-height: 1.72; color: var(--tc-ink); max-width: 70ch; margin-bottom: 22px; }
.blog-article h2, .blog-article h3 { scroll-margin-top: 92px; }
/* "The quick version" takeaways box */
.takeaways { background: var(--tc-blue-soft); border: 1px solid #cfe3fb; border-left: 4px solid var(--tc-blue); border-radius: var(--radius); padding: 18px 22px; margin: 0 0 26px; }
.takeaways-title { display: flex; align-items: center; gap: 8px; font-family: var(--head); font-weight: 700; color: var(--tc-blue-deep); margin: 0 0 10px; font-size: 1rem; }
.takeaways-title svg { width: 18px; height: 18px; color: var(--tc-blue); flex: none; }
.takeaways ul { margin: 0; padding: 0; list-style: none; }
.takeaways li { position: relative; padding-left: 22px; margin-bottom: 8px; color: var(--tc-body); }
.takeaways li:last-child { margin-bottom: 0; }
.takeaways li::before { content: ""; position: absolute; left: 5px; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--tc-blue); }
/* Auto table of contents */
.toc { background: var(--tc-soft); border: 1px solid var(--tc-line); border-radius: var(--radius); padding: 18px 22px 16px; margin: 0 0 30px; }
.toc-title { font-family: var(--head); font-weight: 700; color: var(--tc-ink); margin: 0 0 12px; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; }
.toc ol { margin: 0; padding-left: 20px; columns: 2; column-gap: 30px; }
@media (max-width: 560px) { .toc ol { columns: 1; } }
.toc li { margin-bottom: 8px; break-inside: avoid; }
.toc a { color: var(--tc-blue-deep); font-size: .94rem; }
.toc a:hover { color: var(--tc-blue); text-decoration: underline; }
/* Inline article illustrations */
.article-figure { margin: 30px 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--tc-line); }
.article-figure img { width: 100%; height: auto; display: block; }
.article-figure figcaption { background: var(--tc-soft); border-top: 1px solid var(--tc-line); padding: 11px 18px; font-size: .88rem; color: var(--tc-muted); font-style: italic; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
/* Author / E-E-A-T card at the end of each article */
.author-card { display: flex; gap: 16px; align-items: flex-start; background: var(--tc-soft); border: 1px solid var(--tc-line); border-radius: var(--radius); padding: 18px 20px; margin: 30px 0 0; }
.author-card__avatar { flex: none; width: 52px; height: 52px; border-radius: 50%; background: var(--tc-blue); color: #fff; display: grid; place-items: center; }
.author-card__avatar svg { width: 30px; height: 30px; }
.author-card__name { font-family: var(--head); font-weight: 700; color: var(--tc-ink); margin: 0 0 6px; }
.author-card__bio { margin: 0; font-size: .92rem; color: var(--tc-muted); line-height: 1.6; max-width: none; }
.author-card__bio a { color: var(--tc-blue-deep); font-weight: 600; }
@media (max-width: 560px) { .author-card { gap: 12px; padding: 16px; } }

/* ---------- booking add-on toggles ---------- */
.bk-addons .opt { font-weight: 500; color: var(--tc-muted); font-size: .85em; }
.addon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 6px; }
@media (max-width: 460px) { .addon-grid { grid-template-columns: 1fr; } }
.addon { display: flex; align-items: center; gap: 9px; padding: 9px 12px; border: 1px solid var(--tc-line); border-radius: 10px; font-size: .9rem; color: var(--tc-body); cursor: pointer; transition: border-color .15s, background .15s, color .15s; }
.addon input { accent-color: var(--tc-blue); width: 16px; height: 16px; flex: none; cursor: pointer; padding: 0; border: 0; }
.addon:hover { border-color: var(--tc-blue); }
.addon:has(input:checked) { border-color: var(--tc-blue); background: var(--tc-blue-soft); color: var(--tc-blue-deep); font-weight: 600; }
/* the selected-add-ons line inside the (blue) estimate card needs light text */
.estimate .r--addons { display: block; }
.estimate .r--addons > span:last-child { display: block; margin-top: 3px; color: #fff; font-weight: 600; line-height: 1.4; }

/* 24-Hour Re-Clean Promise badge */
.guarantee { display: flex; align-items: center; gap: 16px; max-width: 600px; margin: 34px auto 0; padding: 16px 22px; background: #fff; border: 1px solid var(--tc-line); border-radius: 16px; box-shadow: 0 12px 32px -20px rgba(4,107,210,.45); }
.guarantee-seal { flex: none; width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(150deg, var(--tc-blue), var(--tc-blue-deep)); color: #fff; }
.guarantee-seal svg { width: 27px; height: 27px; stroke-width: 1.8; }
.guarantee-txt b { display: block; font-family: var(--head); color: var(--tc-ink); font-size: 1.05rem; line-height: 1.2; }
.guarantee-txt p { margin: 3px 0 0; font-size: .9rem; color: var(--tc-body); line-height: 1.45; }
@media (max-width: 560px) { .guarantee { align-items: flex-start; padding: 14px 16px; gap: 13px; } .guarantee-txt b { font-size: 1rem; } }

/* Cleaning plans page */
.plan-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 8px; }
@media (max-width: 900px) { .plan-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .plan-grid { grid-template-columns: 1fr; } }
.plan { position: relative; background: #fff; border: 1px solid var(--tc-line); border-radius: 16px; padding: 28px 22px 24px; text-align: center; display: flex; flex-direction: column; gap: 7px; }
.plan--best { border-color: var(--tc-blue); box-shadow: 0 18px 44px -24px rgba(4,107,210,.55); }
.plan-tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(150deg, var(--tc-blue), var(--tc-blue-deep)); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; white-space: nowrap; }
.plan h3 { font-family: var(--head); font-size: 1.15rem; color: var(--tc-ink); }
.plan-rate { margin-top: 2px; }
.plan-rate b { font-family: var(--head); font-size: 2.6rem; color: var(--tc-blue); line-height: 1; }
.plan-rate span { display: block; font-size: .85rem; color: var(--tc-muted); margin-top: 2px; }
.plan-save { align-self: center; font-weight: 600; color: var(--tc-blue-deep); background: var(--tc-blue-soft); padding: 4px 12px; border-radius: 999px; font-size: .85rem; }
.plan p { font-size: .9rem; color: var(--tc-body); flex: 1; margin: 2px 0 4px; }
