/* ==========================================================================
   KI Cleaning Services — site styles
   Mobile-first. Colors measured from the client logo. No vh units (breaks
   in the Facebook in-app browser) — use dvh.
   ========================================================================== */

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-var.woff2") format("woff2-variations");
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --brand-deep: #222be3;
  --brand-sky: #23a1f8;
  --brand-sky-deep: #1673b8; /* accessible variant for white text on brand-sky (5.03:1) */
  --ink: #0e2a5c;       /* "Harbor" navy — headings + dark anchor sections (14.0:1 on white) */
  --navy-deep: #0a1a3c; /* deeper navy for the anchor-section gradient floor (17.1:1) */
  --body: #4a5875;

  /* Swoosh dividers — one shape, reused for every curved edge. Deepen the
     curve for the whole site by editing these two paths in one place.
     Height reference is 60; the control-point Y (−14 / 78) sets the depth. */
  --swoosh-up: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0,60 L0,38 C400,-14 1040,-14 1440,38 L1440,60 Z' fill='%23000'/%3E%3C/svg%3E");
  --swoosh-down: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L0,22 C400,78 1040,78 1440,22 L1440,0 Z' fill='%23000'/%3E%3C/svg%3E");
  --tint: #f2f8ff;
  --surface: #ffffff;
  --line: #e6ecf7;

  --font: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --wrap: 1140px;
  --gap: 1.25rem;
  --radius: 16px;
  --radius-pill: 999px;
  --shadow: 0 10px 30px rgba(13, 27, 62, 0.12);
  --shadow-lg: 0 18px 44px rgba(13, 27, 62, 0.18);

  --sticky-h: 68px;
}

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

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--body);
  background: var(--surface);
  /* clear the sticky CTA bar so content is never hidden behind it */
  padding-bottom: calc(var(--sticky-h) + env(safe-area-inset-bottom, 0px));
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-deep); }

h1, h2, h3 {
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(1.85rem, 6vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.35rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }

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

/* --- skip link -------------------------------------------------------- */
/* First focusable element on every page; hidden until keyboard focus. */
.skip-link {
  position: absolute; top: 0; left: 0; z-index: 50;
  transform: translateY(-100%);
  background: var(--brand-deep); color: #fff;
  padding: 0.85rem 1.25rem; font-weight: 700; text-decoration: none;
  border-radius: 0 0 var(--radius) 0;
  transition: transform 0.15s ease;
}
.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid #fff; outline-offset: -3px;
}

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 1.25rem; }

.section { padding: 3rem 0; }
.section--tint { background: var(--tint); }
@media (min-width: 768px) { .section { padding: 4.5rem 0; } }

/* --- buttons: 44px minimum tap target ------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0.8rem 1.6rem;
  border: 2px solid transparent; border-radius: var(--radius-pill);
  font: inherit; font-weight: 700; text-decoration: none; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid var(--brand-sky-deep); outline-offset: 3px; }
/* On the brand-deep CTA band, --brand-sky-deep only reaches 1.66:1 — the outline is the
   sole focus signal there, so it switches to white (8.32:1). Same reason on .skip-link. */
.cta-band .btn:focus-visible { outline-color: #fff; }
.btn--primary { background: var(--brand-deep); color: #fff; box-shadow: var(--shadow); }
.btn--primary:hover { background: #1b21c4; }
.btn--ghost { background: transparent; color: var(--brand-deep); border-color: var(--brand-deep); }
.btn--ghost:hover { background: var(--brand-deep); color: #fff; }
.btn--block { width: 100%; }

/* --- header --------------------------------------------------------------- */
.site-header {
  position: relative; z-index: 20;
  background: var(--surface); border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; gap: 1rem; min-height: 68px; }
.site-header__logo img { height: 38px; width: auto; }
.nav { margin-left: auto; }
/* No-JS fallback: below 900px the collapsed-menu CSS never applies (it's
   gated on html.js), so .nav__list renders as a plain stacked list. Left
   in a flex row, that list gets squeezed into the ~84px column beside the
   logo instead of stacking full-width — everything stays clickable, but
   the header balloons to ~326px of mostly blank space. Wrapping the row
   and letting the nav take the full width fixes the layout without
   touching the JS-enhanced experience above. */
html:not(.js) .site-header .wrap { flex-wrap: wrap; }
html:not(.js) .nav { width: 100%; margin-left: 0; }
/* .nav__toggle and the collapsed .nav__list only apply once JS has run
   (html.js, set by site.js). Without JS, .nav__list is a plain, visible,
   stacked list of links and the toggle stays hidden — nothing to click
   that wouldn't do anything. */
.nav__toggle {
  display: none; align-items: center; justify-content: center;
  width: 48px; height: 48px; padding: 0;
  background: none; border: 0; cursor: pointer; color: var(--ink);
}
.js .nav__toggle { display: inline-flex; }
.nav__toggle svg { width: 26px; height: 26px; }
.nav__list {
  list-style: none; margin: 0; padding: 0;
}
.js .nav__list {
  display: none; position: absolute; inset: 100% 0 auto 0;
  background: var(--surface); border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow); padding: 0.5rem 1.25rem 1.25rem;
}
.js .nav__list[data-open="true"] { display: block; }
.nav__list a {
  display: block; padding: 0.85rem 0; min-height: 44px;
  color: var(--ink); text-decoration: none; font-weight: 600;
  border-bottom: 1px solid var(--line);
}
/* No aria-current="page" styling: the header must stay byte-identical
   across all five pages (see tools/check_pages.py), so no page can ever
   emit a distinguishing attribute here. Do not re-add this rule without
   also solving that constraint. */

@media (min-width: 900px) {
  .nav__toggle,
  .js .nav__toggle { display: none; }
  .nav__list,
  .js .nav__list {
    display: flex; position: static; gap: 1.75rem;
    padding: 0; box-shadow: none; border: 0; align-items: center;
  }
  .nav__list a { border: 0; padding: 0; }
  .nav__list .nav__cta a {
    background: var(--brand-deep); color: #fff;
    padding: 0.7rem 1.3rem; border-radius: var(--radius-pill);
  }
}

/* --- hero ----------------------------------------------------------------- */
.hero {
  background: linear-gradient(168deg, var(--tint) 0%, #e3efff 55%, var(--surface) 100%);
  padding: 2.5rem 0 3rem; text-align: center; position: relative; overflow: hidden;
}
/* logo-derived bubble motif — decorative, never reduces text contrast */
.hero::before {
  content: ""; position: absolute; top: -90px; right: -70px;
  width: 260px; height: 260px; border-radius: 50%;
  background: rgba(35, 161, 248, 0.10); pointer-events: none;
}
.hero__eyebrow {
  display: inline-block; background: #e6f2fe; color: #14548f;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill); margin-bottom: 1rem;
}
.hero__lead { max-width: 34rem; margin: 0 auto 1.5rem; font-size: 1.06rem; }
.hero__actions { display: flex; flex-direction: column; gap: 0.7rem; max-width: 22rem; margin: 0 auto; }
.hero__media { margin-top: 2rem; }
.hero__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; }

/* Mobile shows one photo; desktop fans out the trio (spec §5). */
.hero__trio { display: none; }
@media (min-width: 900px) {
  .hero { padding: 3.5rem 0 4rem; }
  .hero__actions { flex-direction: row; justify-content: center; max-width: none; }
  .hero__media { display: none; }
  .hero__trio {
    display: grid; grid-template-columns: 1fr 1.25fr 1fr;
    gap: 1rem; align-items: end; margin-top: 2.75rem;
  }
  .hero__trio img { border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover; width: 100%; }
  .hero__trio > :nth-child(1) img,
  .hero__trio > :nth-child(3) img { height: 210px; }
  .hero__trio > :nth-child(2) img { height: 280px; box-shadow: var(--shadow-lg); }
}

/* --- cards & grids -------------------------------------------------------- */
.grid { display: grid; gap: var(--gap); grid-template-columns: 1fr; }
@media (min-width: 700px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 700px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }

/* Standalone content photos (services images, the about-page team photo) —
   not gallery or card images — otherwise stretch bare across the full
   1140px wrap at desktop widths, leaving conspicuous dead space around a
   raster that tops out at 800px wide. Cap and center instead. */
/* :not(.brandmark) — the featured hero logo is also a direct .wrap child on
   inner-page intros, but it must stay flat (no card shadow) to match home. */
.section > .wrap > img:not(.brandmark) {
  max-width: min(800px, 100%); margin: 0 auto 1.5rem;
  border-radius: var(--radius); box-shadow: var(--shadow);
}

.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.card img { width: 100%; height: 200px; object-fit: cover; }
.card__body { padding: 1.35rem; }
.card__body h3 { margin-bottom: 0.4rem; }

.trust-strip { display: grid; gap: 1rem; text-align: center; }
@media (min-width: 700px) { .trust-strip { grid-template-columns: repeat(3, 1fr); } }
.trust-strip__item strong { display: block; color: var(--ink); }

.cta-band {
  background: linear-gradient(150deg, var(--ink) 0%, var(--navy-deep) 100%);
  color: #fff; text-align: center;
  padding: 3rem 0; border-radius: 0;
}
.cta-band h2 { color: #fff; }
.cta-band .btn--primary { background: #fff; color: var(--brand-deep); }
.cta-band .btn--ghost { color: #fff; border-color: #fff; }
.cta-band__actions { display: flex; flex-direction: column; gap: 0.7rem; max-width: 22rem; margin: 1.5rem auto 0; }
@media (min-width: 700px) { .cta-band__actions { flex-direction: row; justify-content: center; max-width: none; } }

/* --- gallery -------------------------------------------------------------- */
/* A fixed 4/3 crop plus object-fit:cover stacked a second crop on top of
   the composition already chosen at build time, so portrait shots (e.g.
   the pedestal sink, the bathtub) lost ~44% of their height and stopped
   reading as their subject at small sizes. A CSS multi-column layout
   (masonry-style) lets every photo keep its own baked-in proportions —
   nothing is cropped twice — and it also sidesteps the orphaned last row
   a 10-photo / 3-column grid would otherwise leave (two empty cells).
   Images flow into the shortest column instead of a fixed row/column
   position. */
.gallery { columns: 2; column-gap: 0.85rem; }
@media (min-width: 700px) { .gallery { columns: 3; column-gap: 1.1rem; } }
.gallery img {
  width: 100%; height: auto; display: block;
  break-inside: avoid; margin: 0 0 0.85rem;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
@media (min-width: 700px) { .gallery img { margin-bottom: 1.1rem; } }

/* --- form ----------------------------------------------------------------- */
.form { display: grid; gap: 1rem; max-width: 34rem; margin: 0 auto; }
.form label { font-weight: 700; color: var(--ink); display: block; margin-bottom: 0.35rem; }
.form input, .form select, .form textarea {
  width: 100%; min-height: 48px; padding: 0.75rem 0.9rem;
  border: 1px solid #7d8ba5; border-radius: 12px;
  font: inherit; color: var(--ink); background: var(--surface);
}
.form textarea { min-height: 120px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: 3px solid var(--brand-sky-deep); outline-offset: 1px; border-color: var(--brand-sky-deep);
}
.form__notice {
  background: #fff8e1; border: 1px solid #f5d78e; color: #6b4e00;
  border-radius: 12px; padding: 0.9rem 1.1rem; font-weight: 600;
}
.form__notice[hidden] { display: none; }

/* --- embedded HighLevel quote form ---------------------------------------- */
/* The vendor iframe ships with an inline height:100%. In normal flow that has
   no definite parent height to resolve against, so the iframe falls back to
   its 150px intrinsic height until form_embed.js measures the form and writes
   a pixel height onto it. On a phone that gap reads as a broken page.
   min-height covers the gap, and covers it permanently if the script is ever
   slow, blocked, or removed. It sits deliberately BELOW the real form height
   (desktop ~1237px, taller on mobile) so it never forces dead space once the
   script takes over — the script's inline height always wins from there. */
.form-embed { margin-top: 1.5rem; }
.form-embed iframe {
  display: block;      /* kills the inline-element descender gap under the frame */
  width: 100%;
  min-height: 640px;
}

/* --- footer --------------------------------------------------------------- */
.site-footer { background: var(--ink); color: #c3cde0; padding: 3rem 0 2rem; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer h2, .site-footer h3 { color: #fff; }
.site-footer__grid { display: grid; gap: 2rem; }
@media (min-width: 700px) { .site-footer__grid { grid-template-columns: 2fr 1fr 1fr; } }
.site-footer__logo { height: 56px; width: auto; margin-bottom: 1rem; }
.site-footer__links { list-style: none; margin: 0; padding: 0; }
.site-footer__links a { display: inline-block; padding: 0.4rem 0; min-height: 44px; line-height: 2; }
.site-footer__legal { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.15); font-size: 0.85rem; }
/* These links sit inline inside a sentence, so colour alone can't distinguish
   them from the surrounding copy (WCAG SC 1.4.1) — restore the underline. */
.site-footer__legal a { text-decoration: underline; }

/* --- sticky mobile CTA ---------------------------------------------------- */
/* Positioned to clear Facebook's in-app toolbar and the iPhone home indicator. */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
  display: flex; gap: 0.5rem;
  padding: 0.6rem 0.75rem calc(0.6rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.97);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(13, 27, 62, 0.10);
  backdrop-filter: blur(8px);
}
.sticky-cta .btn { flex: 1; min-height: 46px; padding: 0.6rem 0.5rem; font-size: 0.95rem; }
.sticky-cta .btn--ghost { background: var(--brand-sky-deep); color: #fff; border-color: var(--brand-sky-deep); }

@media (min-width: 900px) {
  .sticky-cta { display: none; }
  body { padding-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ==========================================================================
   Brand motif — derived entirely from the logo (swoosh, bubbles, sparkle).
   Bubbles are repeated across light and dark sections; one deep-navy anchor
   section curves in and out on a swoosh; the four-point sparkle marks it.
   ========================================================================== */

/* --- card depth: lift on hover so the grid feels tactile, not flat -------- */
.card { transition: transform 0.2s ease, box-shadow 0.2s ease; }
.card:hover, .card:focus-within { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* --- bubble system (soap suds) -------------------------------------------- */
/* .bubbles is an aria-hidden decorative layer; it clips its own children so a
   section can still show its swoosh edges (overflow visible) around it. */
.bubbles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.bubble {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 32% 26%,
    rgba(255,255,255,0.90) 0%, rgba(255,255,255,0.30) 18%,
    rgba(35,161,248,0.16) 55%, rgba(34,43,227,0.08) 100%);
  box-shadow: inset 0 -6px 14px rgba(34,43,227,0.12), 0 6px 18px rgba(13,27,62,0.06);
  border: 1px solid rgba(255,255,255,0.55);
  animation: bubble-drift 7s ease-in-out infinite alternate;
}
.bubble:nth-child(2) { animation-duration: 9s; }
.bubble:nth-child(3) { animation-duration: 6s; }
.bubble:nth-child(4) { animation-duration: 11s; }
.bubble:nth-child(5) { animation-duration: 8s; }
@keyframes bubble-drift { from { transform: translateY(4px); } to { transform: translateY(-8px); } }

/* keep hero/anchor content above the bubble layer */
.hero .wrap, .section--navy .wrap { position: relative; z-index: 1; }

/* --- hero: swoosh base + softer ambient wash ------------------------------ */
/* replaces the single hard circle with a wavy bottom edge that reads as the
   next (white) section rising into the hero on the logo's swoosh. */
.hero::before {
  width: 300px; height: 300px; top: -120px; right: -90px;
  background: radial-gradient(circle, rgba(35,161,248,0.14), rgba(35,161,248,0) 70%);
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 58px;
  background: var(--surface); pointer-events: none;
  -webkit-mask: var(--swoosh-up) center/100% 100% no-repeat;
          mask: var(--swoosh-up) center/100% 100% no-repeat;
}

/* --- navy anchor section: the page's one dark, high-contrast moment -------- */
.section--navy {
  position: relative; overflow: visible;
  margin: 58px 0; /* room for the swoosh edges that overhang top and bottom */
  background: linear-gradient(150deg, var(--ink) 0%, var(--navy-deep) 100%);
  color: #cfe0f5;
}
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy p { color: #b9cde6; }
/* swoosh in (navy rises into the section above) */
.section--navy::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 58px;
  transform: translateY(-100%); background: var(--ink); pointer-events: none;
  -webkit-mask: var(--swoosh-up) center/100% 100% no-repeat;
          mask: var(--swoosh-up) center/100% 100% no-repeat;
}
/* swoosh out (navy hangs into the section below) */
.section--navy::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 58px;
  transform: translateY(100%); background: var(--navy-deep); pointer-events: none;
  -webkit-mask: var(--swoosh-down) center/100% 100% no-repeat;
          mask: var(--swoosh-down) center/100% 100% no-repeat;
}
.section--navy .bubble {
  background: radial-gradient(circle at 32% 26%,
    rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.14) 18%,
    rgba(35,161,248,0.22) 55%, rgba(35,161,248,0.04) 100%);
  box-shadow: inset 0 -6px 14px rgba(0,0,0,0.18), 0 6px 18px rgba(0,0,0,0.12);
  border: 1px solid rgba(255,255,255,0.20);
}

/* two-tone headline accent — only ever on the navy ground, where sky blue
   clears contrast (13.6:1). Never used for text on white. */
.h-accent { color: var(--brand-sky); }

/* four-point sparkle from the logo */
.sparkle { position: absolute; z-index: 0; opacity: 0.55; pointer-events: none; }

/* glass feature cards inside the navy section */
.feature {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius); padding: 1.35rem 1.4rem;
  backdrop-filter: blur(6px);
}
.feature h3 { margin-bottom: 0.35rem; font-size: 1.05rem; }
.feature p { margin: 0; font-size: 0.95rem; }

/* dark-ground eyebrow variant */
.hero__eyebrow--dark {
  background: rgba(255,255,255,0.10); color: #cfe4fb;
  border: 1px solid rgba(255,255,255,0.22);
}

/* --- CTA band: a swoosh rises into the section above it. Every page ends
   with the CTA band, so this single rule gives every page a curved moment. */
.cta-band { position: relative; }
.cta-band::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 58px;
  transform: translateY(-100%); background: var(--ink); pointer-events: none;
  -webkit-mask: var(--swoosh-up) center/100% 100% no-repeat;
          mask: var(--swoosh-up) center/100% 100% no-repeat;
}

/* --- intro section: the light, bubble-bearing top of every inner page ------ */
/* Same warm gradient as the hero, so inner pages open with the same energy
   as the homepage. Clips its own bubbles; no bottom swoosh (the section that
   follows carries its own curve where it needs one). */
.section--intro {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(168deg, var(--tint) 0%, #e3efff 60%, var(--surface) 100%);
}
.section--intro .wrap { position: relative; z-index: 1; }
.section--intro .hero__lead { margin-left: auto; margin-right: auto; }

/* --- brandmark: the logo featured at the top of the hero / page intros ---- */
.brandmark { display: block; width: auto; height: 260px; margin: 0 auto 1.35rem; }
@media (max-width: 600px) {
  .brandmark { height: 196px; }
}

/* --- package tiers: reuse the service checklist, one column inside a card -- */
.card .svc__list { grid-template-columns: 1fr; margin-bottom: 0; }
.pkg-note { text-align: center; color: var(--body); font-size: 0.92rem; margin-top: 1.4rem; }

/* --- founder story: a left-aligned, centered reading column --------------- */
/* Lives inside the centered .section--intro, so it re-establishes left
   alignment and centers itself as a block. */
.story { max-width: 62ch; margin: 1.5rem auto 0; text-align: left; }
.story p { font-size: 1.06rem; }
.story__sign { margin-top: 1.4rem; font-weight: 700; color: var(--ink); }

/* --- photo carousel (About) ----------------------------------------------- */
/* Fixed-height filmstrip so portrait and landscape photos sit together
   without cropping. Native horizontal scroll + snap works with no JS
   (swipe/trackpad); JS adds the arrow buttons. */
.carousel-lead { margin: 0.75rem 0 0; text-align: left; color: var(--body); }
.carousel { position: relative; margin-top: 1.75rem; }
.carousel__track {
  display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: 0.25rem; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__slide { flex: 0 0 auto; scroll-snap-align: center; margin: 0; }
.carousel__slide img {
  height: 300px; width: auto; display: block;
  border-radius: var(--radius); box-shadow: var(--shadow-lg); background: var(--tint);
}
@media (min-width: 700px) { .carousel__slide img { height: 440px; } }

.carousel__btn { display: none; }
.js .carousel__btn {
  display: grid; place-items: center; position: absolute; top: 50%;
  transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%;
  border: 0; cursor: pointer; color: var(--ink);
  background: rgba(255, 255, 255, 0.95); box-shadow: var(--shadow); z-index: 2;
  transition: background 0.15s ease, transform 0.15s ease;
}
.js .carousel__btn:hover { background: #fff; }
.carousel__btn:focus-visible { outline: 3px solid var(--brand-sky-deep); outline-offset: 2px; }
.carousel__btn--prev { left: 6px; }
.carousel__btn--next { right: 6px; }
.carousel__btn svg { width: 22px; height: 22px; }
.carousel__track:focus-visible { outline: 3px solid var(--brand-sky-deep); outline-offset: 3px; border-radius: var(--radius); }

/* --- service blocks: image + a real "what's included" checklist ----------- */
/* Replaces the sparse big-photo/thin-copy layout with a dense, two-column
   feature block that reads as a premium service page. */
.eyebrow {
  display: inline-block; background: #e6f2fe; color: #14548f;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.35rem 0.8rem;
  border-radius: var(--radius-pill); margin-bottom: 0.9rem;
}
.svc { display: grid; gap: 1.6rem; align-items: center; }
.svc + .svc { margin-top: 3rem; }
.svc__media img {
  width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3; object-fit: cover;
}
.svc__lead { font-size: 1.06rem; margin-bottom: 1.1rem; }
.svc__list {
  list-style: none; margin: 0 0 1.3rem; padding: 0;
  display: grid; gap: 0.55rem 1rem;
}
.svc__list li {
  position: relative; padding-left: 1.75rem; font-weight: 600; color: var(--ink);
}
.svc__list li::before {
  content: ""; position: absolute; left: 0; top: 0.05em;
  width: 1.2rem; height: 1.2rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10' fill='%23e6f2fe'/%3E%3Cpath d='M8.2 13.2 5 10l-1.1 1.1 4.3 4.3 8-8L15.1 6z' fill='%231673b8'/%3E%3C/svg%3E") center/contain no-repeat;
}
.svc__note { font-size: 0.92rem; color: var(--body); }
@media (min-width: 560px) { .svc__list { grid-template-columns: 1fr 1fr; } }
@media (min-width: 860px) {
  .svc { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .svc + .svc { margin-top: 4.5rem; }
  .svc--reverse .svc__media { order: 2; }
}

/* --- legal pages: long-form policy text ---------------------------------- */
/* A narrow reading column for Privacy Policy / Terms. Lives inside a plain
   .section (not .section--intro), so it only needs to set its own measure.
   .story was considered and rejected: it has no list or heading spacing, and
   these pages are bullet-heavy. */
.legal { max-width: 68ch; margin: 0 auto; }
.legal h2 { font-size: 1.35rem; margin: 2.25rem 0 0.6rem; }
.legal h3 { margin: 1.5rem 0 0.4rem; }
.legal ul { margin: 0.6rem 0 1rem; padding-left: 1.25rem; }
.legal li { margin-bottom: 0.5rem; }
.legal__updated { font-size: 0.92rem; color: var(--body); margin-bottom: 2rem; }
