/* Listo Cleaners design tokens. brand-identity-designer, 2026-09-24; logo tokens added 2026-09-25 (palette and type unchanged by the final logo).
   Logo files: final/logo.svg, final/logo-white.svg, final/logo-stacked.svg, final/mark.svg, final/favicon.svg (fonts not needed; all outlined). Mirrors brand/src/build.py.
   Load fonts (both SIL OFL 1.1, Latin + Latin Extended, so á é í ó ú ñ ü ¿ ¡ are covered):
   <link rel="preconnect" href="https://fonts.googleapis.com">
   <link href="https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,600&family=Fredoka:wght@500;600;700&display=swap" rel="stylesheet">
   Theme: light by default; dark via prefers-color-scheme or [data-theme="dark"]; force light with [data-theme="light"]. */

:root {
  /* ---- primitives ---- */
  --blue-500: #1B4FD8;   /* Listo Blue */
  --blue-700: #143CA8;   /* Listo Blue Deep */
  --blue-300: #6FA8FF;   /* Bubble Blue: decoration; links on dark */
  --blue-50:  #E8F0FF;   /* Sky Wash */
  --gold-400: #FFC72C;   /* Listo Gold: FILL ONLY on light backgrounds (1.56:1 on white) */
  --gold-500: #F2AE00;   /* Gold Deep: gold hover fill */
  --gold-800: #8A5A00;   /* Honey: the only gold-family colour allowed as text on white (5.93:1) */
  --gold-50:  #FFF6DA;   /* Suds */
  --navy-900: #0E2250;   /* Ink Navy */
  --night-900: #0A1733;
  --night-800: #13244A;
  --slate-600: #4B5875;
  --line-200: #DCE3EF;
  --cloud-50: #F5F7FB;
  --white: #FFFFFF;

  /* ---- type ---- */
  --font-display: "Fredoka", "Figtree", "Arial Rounded MT Bold", system-ui, sans-serif; /* headlines only, 600 */
  --font-text: "Figtree", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;     /* everything else */
  --fw-regular: 400; --fw-medium: 500; --fw-semibold: 600; --fw-bold: 700; --fw-heavy: 800;
  /* modular scale 1.25 on 16px */
  --fs-100: 0.8rem;   /* 12.8 legal, captions */
  --fs-200: 0.875rem; /* 14 meta */
  --fs-300: 1rem;     /* 16 body (min 16 on mobile forms) */
  --fs-400: 1.25rem;  /* 20 lead */
  --fs-500: 1.563rem; /* 25 h3 */
  --fs-600: 1.953rem; /* 31 h2 */
  --fs-700: 2.441rem; /* 39 h1 mobile */
  --fs-800: 3.052rem; /* 49 h1 desktop */
  --lh-tight: 1.12; --lh-body: 1.55;
  --track-caps: 0.12em;

  /* ---- space / shape ---- */
  --space-1: 4px; --space-2: 8px; --space-3: 12px; --space-4: 16px; --space-5: 24px;
  --space-6: 32px; --space-7: 48px; --space-8: 64px; --space-9: 96px;
  --radius-s: 10px; --radius-m: 16px; --radius-l: 24px; --radius-pill: 999px; /* bubbly = generous radii */
  /* ---- logo assets (final, 2026-09-25; paths relative to ventures/housecleaning/brand/) ---- */
  /* 2026-09-25 rev 2: logo-stacked.svg is the PRIMARY logo (CLEANERS spans LISTO + check). viewBox 501 x 212.63 (2.356:1) */
  --logo-stacked-min-width: 100px;
  --logo-header-height: 56px;       /* logo-stacked.svg at 56px tall is about 132px wide (desktop) */
  --logo-header-height-mobile: 48px;/* about 113px wide */
  --logo-min-width: 200px;          /* secondary horizontal logo.svg, short wide spaces only */
  --shadow-1: 0 1px 2px rgb(14 34 80 / .08), 0 4px 14px rgb(14 34 80 / .06);

  /* ---- semantic (light) ---- */
  --color-bg: var(--white);
  --color-bg-alt: var(--cloud-50);
  --color-bg-tint: var(--blue-50);
  --color-bg-warm: var(--gold-50);
  --color-surface: var(--white);
  --color-text: var(--navy-900);          /* 15.40:1 on white */
  --color-text-muted: var(--slate-600);   /* 7.11:1 on white, 6.63:1 on cloud */
  --color-heading: var(--navy-900);
  --color-brand: var(--blue-500);         /* 6.65:1 on white */
  --color-link: var(--blue-500);
  --color-accent-fill: var(--gold-400);   /* never text on light */
  --color-accent-text: var(--gold-800);
  --color-border: var(--line-200);
  --color-focus: var(--blue-500);

  /* ---- components ---- */
  --btn-primary-bg: var(--blue-500);   --btn-primary-fg: var(--white);    --btn-primary-bg-hover: var(--blue-700);
  --btn-accent-bg: var(--gold-400);    --btn-accent-fg: var(--navy-900);  --btn-accent-bg-hover: var(--gold-500); /* 9.87 / 7.94 */
  --btn-radius: var(--radius-pill);
  --btn-font: var(--fw-heavy) var(--fs-300)/1 var(--font-text);
  --card-bg: var(--color-surface); --card-radius: var(--radius-l); --card-border: 1px solid var(--color-border);
  --badge-bg: var(--gold-400); --badge-fg: var(--navy-900);
  --lang-toggle-bg: var(--blue-50); --lang-toggle-fg: var(--blue-500);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --color-bg: var(--night-900); --color-bg-alt: var(--night-800); --color-bg-tint: #1A2F5E; --color-bg-warm: #2A2410;
    --color-surface: var(--night-800); --color-text: #F5F7FB; --color-text-muted: #AEBBD6; --color-heading: #FFFFFF;
    --color-brand: var(--blue-300); --color-link: var(--blue-300);       /* 7.37:1 on night, 6.32:1 on night-800 */
    --color-accent-text: var(--gold-400);                                 /* 11.37:1 on night */
    --color-border: #2A3D69; --color-focus: var(--gold-400);
    --btn-primary-bg: var(--gold-400); --btn-primary-fg: var(--navy-900); --btn-primary-bg-hover: var(--gold-500);
  }
}
:root[data-theme="dark"] {
  --color-bg: var(--night-900); --color-bg-alt: var(--night-800); --color-bg-tint: #1A2F5E; --color-bg-warm: #2A2410;
  --color-surface: var(--night-800); --color-text: #F5F7FB; --color-text-muted: #AEBBD6; --color-heading: #FFFFFF;
  --color-brand: var(--blue-300); --color-link: var(--blue-300);
  --color-accent-text: var(--gold-400);
  --color-border: #2A3D69; --color-focus: var(--gold-400);
  --btn-primary-bg: var(--gold-400); --btn-primary-fg: var(--navy-900); --btn-primary-bg-hover: var(--gold-500);
}

/* Listo Cleaners site styles. Brand tokens (brand/tokens.css) are prepended at build time.
   Mobile first. Light theme only (html[data-theme="light"]): the logo art is drawn for light surfaces. */

*, *::before, *::after { box-sizing: border-box; }
html { color-scheme: light; -webkit-text-size-adjust: 100%; scroll-padding-top: 88px; }
body {
  margin: 0; background: var(--color-bg); color: var(--color-text);
  font: var(--fw-regular) var(--fs-300)/var(--lh-body) var(--font-text);
  overflow-wrap: break-word;
}
img, svg { max-width: 100%; height: auto; }
a { color: var(--color-link); text-underline-offset: 2px; }
a:hover { text-decoration-thickness: 2px; }
:focus-visible { outline: 3px solid var(--color-focus); outline-offset: 2px; border-radius: 4px; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: var(--lh-tight); color: var(--color-heading); margin: 0 0 var(--space-4); letter-spacing: -.005em; }
h1 { font-size: var(--fs-700); }
h2 { font-size: var(--fs-600); }
h3 { font-size: var(--fs-400); font-family: var(--font-text); font-weight: var(--fw-bold); }
p { margin: 0 0 var(--space-4); }
ul, ol { margin: 0 0 var(--space-4); padding-left: 1.25rem; }
.wrap { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 16px; }
.narrow { max-width: 760px; }
.lead { font-size: var(--fs-400); color: var(--color-text-muted); }
.muted { color: var(--color-text-muted); }
.small { font-size: var(--fs-200); }
.eyebrow { font: var(--fw-heavy) var(--fs-100)/1.2 var(--font-text); letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--color-brand); margin: 0 0 var(--space-2); }
.sr-only { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 8px; top: -60px; z-index: 100; background: var(--navy-900); color: #fff; padding: 10px 14px; border-radius: var(--radius-s); }
.skip:focus { top: 8px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 12px 22px; border-radius: var(--btn-radius); border: 2px solid transparent;
  font: var(--btn-font); text-decoration: none; cursor: pointer; text-align: center;
  background: var(--btn-primary-bg); color: var(--btn-primary-fg);
}
.btn:hover { background: var(--btn-primary-bg-hover); }
.btn--gold { background: var(--btn-accent-bg); color: var(--btn-accent-fg); }
.btn--gold:hover { background: var(--btn-accent-bg-hover); }
.btn--ghost { background: transparent; color: var(--color-brand); border-color: currentColor; }
.btn--ghost:hover { background: var(--blue-50); }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .6; cursor: progress; }

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgb(255 255 255 / .97); border-bottom: 1px solid var(--color-border); }
.site-header .wrap { display: flex; align-items: center; gap: 12px; min-height: 64px; }
.brand { display: block; line-height: 0; margin-right: auto; }
.brand img { height: 48px; width: auto; }   /* stacked logo at every width: 48px phones, 56px desktop */
.lang { display: inline-flex; border-radius: var(--radius-pill); background: var(--lang-toggle-bg); padding: 3px; font-weight: var(--fw-heavy); font-size: var(--fs-200); }
.lang a, .lang span { padding: 6px 10px; border-radius: var(--radius-pill); text-decoration: none; line-height: 1; min-width: 36px; text-align: center; }
.lang a { color: var(--lang-toggle-fg); }
.lang span { background: var(--blue-500); color: #fff; }
.nav { position: static; }
.nav summary { list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; min-height: 44px; padding: 8px 12px; border-radius: var(--radius-pill); border: 2px solid var(--color-border); font-weight: var(--fw-bold); }
.nav summary::-webkit-details-marker { display: none; }
.nav summary svg { width: 18px; height: 18px; }
.nav ul { list-style: none; margin: 0; padding: 0; }
.nav[open] ul { position: absolute; left: 0; right: 0; top: 100%; background: #fff; border-bottom: 1px solid var(--color-border); padding: 8px 16px 16px; box-shadow: var(--shadow-1); }
.nav li a { display: block; padding: 12px 4px; font-weight: var(--fw-bold); color: var(--color-text); text-decoration: none; border-bottom: 1px solid var(--color-border); }
.nav li a[aria-current="page"] { color: var(--color-brand); }
.nav .nav-cta { display: none; }
.head-phone { display: none; }

@media (min-width: 1100px) {
  .brand img { height: 56px; }
  .site-header .wrap { min-height: 72px; }
  .nav summary { display: none; }
  .nav ul, .nav[open] ul { position: static; display: flex; gap: 4px; align-items: center; padding: 0; box-shadow: none; border: 0; background: none; }
  .nav:not([open]) ul { display: flex; }
  .nav::details-content { content-visibility: visible; display: contents; }  /* closed <details> hides its content in current browsers */
  .nav li a { border: 0; padding: 8px 10px; border-radius: var(--radius-pill); }
  .nav li a:hover { background: var(--blue-50); }
  .nav .nav-cta { display: inline-flex; min-height: 44px; padding: 10px 18px; }
  .head-phone { display: none; font-weight: var(--fw-heavy); text-decoration: none; color: var(--color-text); white-space: nowrap; }
}
/* <details> is closed by default; on desktop the list must show regardless. */
@media (min-width: 1100px) { .nav > ul { display: flex !important; } }
@media (max-width: 1099px) { .nav:not([open]) > ul { display: none; } }

/* ---------- sections ---------- */
main { display: block; }
.section { padding: var(--space-8) 0; }
.section--tint { background: var(--color-bg-tint); }
.section--alt { background: var(--color-bg-alt); }
.section--warm { background: var(--color-bg-warm); }
.section-head { max-width: 720px; margin-bottom: var(--space-6); }
.grid { display: grid; gap: var(--space-5); }
@media (min-width: 720px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } .grid--3 { grid-template-columns: repeat(3, 1fr); } .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }
.card { background: var(--card-bg); border: var(--card-border); border-radius: var(--card-radius); padding: var(--space-5); box-shadow: var(--shadow-1); }
.card h3 { margin-bottom: var(--space-2); }
.card .price { font: 600 var(--fs-500)/1.1 var(--font-display); color: var(--color-brand); margin: 0 0 var(--space-3); }
.card .price small { font: var(--fw-semibold) var(--fs-200) var(--font-text); color: var(--color-text-muted); }
.card > :last-child { margin-bottom: 0; }

/* ---------- hero ---------- */
.hero { padding: var(--space-6) 0 var(--space-8); background: linear-gradient(180deg, var(--blue-50), #fff 85%); }
.hero .wrap { display: grid; gap: var(--space-6); align-items: start; }
.hero h1 { margin-bottom: var(--space-3); }
.hero .tagline { font-weight: var(--fw-bold); color: var(--color-brand); margin-bottom: var(--space-3); }
.ticks { list-style: none; padding: 0; margin: var(--space-4) 0 0; display: grid; gap: 8px; }
.ticks li { position: relative; padding-left: 30px; font-weight: var(--fw-semibold); }
.ticks li::before { content: ""; position: absolute; left: 0; top: .2em; width: 20px; height: 20px; border-radius: 50%; background: var(--gold-400) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5.5 10.5l3 3 6-7' fill='none' stroke='%230E2250' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/20px no-repeat; }
@media (min-width: 1100px) {
  .hero { padding: var(--space-8) 0 var(--space-9); }
  .hero .wrap { grid-template-columns: 1.05fr .95fr; gap: var(--space-8); }
  h1 { font-size: var(--fs-800); }
}

/* ---------- estimator ---------- */
.estimator { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-l); padding: var(--space-5); box-shadow: 0 10px 40px rgb(14 34 80 / .12); }
.estimator h2 { font-size: var(--fs-500); margin-bottom: var(--space-3); }
fieldset { border: 0; margin: 0 0 var(--space-5); padding: 0; min-width: 0; }
legend, .label { display: block; font-weight: var(--fw-bold); margin-bottom: var(--space-2); padding: 0; }
.choices { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.choices--3 { grid-template-columns: repeat(3, 1fr); }
.choices--1 { grid-template-columns: 1fr; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.choice span { display: flex; flex-direction: column; justify-content: center; min-height: 52px; height: 100%; padding: 10px 12px; border: 2px solid var(--color-border); border-radius: var(--radius-m); font-weight: var(--fw-bold); line-height: 1.25; background: #fff; }
.choice small { font-weight: var(--fw-medium); color: var(--color-text-muted); font-size: var(--fs-200); }
.choice input:checked + span { border-color: var(--blue-500); background: var(--blue-50); box-shadow: inset 0 0 0 1px var(--blue-500); }
.choice input:focus-visible + span { outline: 3px solid var(--color-focus); outline-offset: 2px; }
.estimate { border-radius: var(--radius-m); background: var(--navy-900); color: #fff; padding: var(--space-4) var(--space-5); margin: 0 0 var(--space-4); }
.estimate .est-label { font-size: var(--fs-200); color: #C9D5EE; margin: 0; }
.estimate .est-range { font: 600 var(--fs-700)/1.05 var(--font-display); color: var(--gold-400); margin: 4px 0; }
.estimate .est-note { font-size: var(--fs-200); color: #DCE3EF; margin: 0; }
.estimate .est-then { font-weight: var(--fw-bold); color: #fff; margin: 6px 0 0; font-size: var(--fs-200); }

/* ---------- forms ---------- */
.field { margin-bottom: var(--space-4); }
.field label { display: block; font-weight: var(--fw-bold); margin-bottom: 6px; }
.field .hint { display: block; font-weight: var(--fw-regular); font-size: var(--fs-200); color: var(--color-text-muted); }
input[type="text"], input[type="tel"], input[type="email"], input[type="date"], input[type="number"], select, textarea {
  width: 100%; min-height: 48px; padding: 10px 14px; font: inherit; font-size: 16px; color: var(--color-text);
  background: #fff; border: 2px solid var(--line-200); border-radius: var(--radius-s);
}
textarea { min-height: 110px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--blue-500); outline: none; box-shadow: 0 0 0 3px rgb(27 79 216 / .25); }
.row2 { display: grid; gap: 0 var(--space-4); }
@media (min-width: 600px) { .row2 { grid-template-columns: 1fr 1fr; } }
.check { display: flex; gap: 10px; align-items: flex-start; margin-bottom: var(--space-3); font-size: var(--fs-200); }
.check input { width: 22px; height: 22px; margin: 1px 0 0; flex: none; accent-color: var(--blue-500); }
.check--lg { font-size: var(--fs-300); font-weight: var(--fw-semibold); }
.checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 var(--space-4); }
@media (min-width: 600px) { .checks--days { grid-template-columns: repeat(4, 1fr); } }
.policies { background: var(--color-bg-warm); border-radius: var(--radius-m); padding: var(--space-4); font-size: var(--fs-200); margin-bottom: var(--space-4); }
.policies ul { margin: 0; }
.hp { position: absolute; left: -9999px; }
.formstatus { margin: var(--space-4) 0 0; padding: var(--space-3) var(--space-4); border-radius: var(--radius-s); font-weight: var(--fw-semibold); }
.formstatus:empty { display: none; }
.formstatus.is-ok { background: #E3F6EC; color: #0B5132; }
.formstatus.is-bad { background: #FDECEC; color: #8A1C1C; }
.form-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-l); padding: var(--space-5); box-shadow: var(--shadow-1); }
@media (min-width: 720px) { .form-card, .estimator { padding: var(--space-6); } }
.req { color: var(--gold-800); }
.done { text-align: center; padding: var(--space-6) var(--space-4); }
.done h2 { color: var(--color-brand); }

/* ---------- lists, tables, steps ---------- */
.bubbles { list-style: none; padding: 0; }
.bubbles li { position: relative; padding-left: 26px; margin-bottom: 8px; }
.bubbles li::before { content: ""; position: absolute; left: 2px; top: .45em; width: 12px; height: 12px; border-radius: 50%; background: var(--gold-400); box-shadow: 8px -7px 0 -3px var(--gold-400); }
.table-wrap { overflow-x: auto; border: 1px solid var(--color-border); border-radius: var(--radius-m); background: #fff; }
table { width: 100%; border-collapse: collapse; font-size: var(--fs-200); min-width: 560px; }
th, td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--color-border); vertical-align: top; }
thead th { background: var(--navy-900); color: #fff; font-weight: var(--fw-bold); }
tbody th { font-weight: var(--fw-bold); }
td.num { font-variant-numeric: tabular-nums; white-space: nowrap; font-weight: var(--fw-semibold); }
tbody tr:last-child > * { border-bottom: 0; }
.steps { list-style: none; padding: 0; counter-reset: s; display: grid; gap: var(--space-5); }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.steps li { counter-increment: s; background: #fff; border-radius: var(--radius-l); padding: var(--space-5); border: 1px solid var(--color-border); }
.steps li::before { content: counter(s); display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--gold-400); color: var(--navy-900); font: 600 var(--fs-400)/1 var(--font-display); margin-bottom: var(--space-3); }
.steps h3 { margin-bottom: var(--space-2); }
.steps p { margin: 0; color: var(--color-text-muted); }
.badge { display: inline-block; background: var(--badge-bg); color: var(--badge-fg); font-weight: var(--fw-heavy); font-size: var(--fs-100); letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px; border-radius: var(--radius-pill); margin-bottom: var(--space-3); }
.promise { display: grid; gap: var(--space-5); align-items: center; background: var(--blue-500); color: #fff; border-radius: var(--radius-l); padding: var(--space-6) var(--space-5); }
.promise h2 { color: #fff; }
.promise p { color: #EEF3FF; }
.promise .btn { justify-self: start; }
@media (min-width: 860px) { .promise { grid-template-columns: 1.4fr .6fr; padding: var(--space-7); } .promise .btn { justify-self: end; } }
.areas { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.areas li { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-pill); padding: 8px 14px; font-weight: var(--fw-semibold); }
.faq details { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-m); margin-bottom: 10px; }
.faq summary { cursor: pointer; padding: 16px 18px; font-weight: var(--fw-bold); list-style-position: inside; }
.faq details > div { padding: 0 18px 16px; }
.faq details > div > :last-child { margin-bottom: 0; }
.notice { border-left: 4px solid var(--gold-400); background: var(--color-bg-warm); padding: var(--space-4); border-radius: 0 var(--radius-s) var(--radius-s) 0; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.prose h2 { font-size: var(--fs-500); margin-top: var(--space-6); }
.prose h3 { margin-top: var(--space-5); }
.page-head { padding: var(--space-7) 0 var(--space-5); background: var(--blue-50); }
.page-head p { max-width: 720px; }

/* ---------- footer + sticky bar ---------- */
.site-footer { background: var(--navy-900); color: #DCE3EF; padding: var(--space-7) 0 var(--space-6); font-size: var(--fs-200); }
.site-footer a { color: #fff; }
.site-footer .grid { gap: var(--space-6); }
@media (min-width: 720px) { .site-footer .grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.site-footer h2 { color: #fff; font: var(--fw-heavy) var(--fs-100)/1.2 var(--font-text); letter-spacing: var(--track-caps); text-transform: uppercase; margin-bottom: var(--space-3); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer .foot-logo { height: 40px; width: auto; margin-bottom: var(--space-3); }
.site-footer .legal { border-top: 1px solid #2A3D69; margin-top: var(--space-6); padding-top: var(--space-4); color: #AEBBD6; }
.callbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: flex; gap: 8px; padding: 8px 12px calc(8px + env(safe-area-inset-bottom)); background: #fff; border-top: 1px solid var(--color-border); box-shadow: 0 -4px 16px rgb(14 34 80 / .08); }
.callbar .btn { flex: 1; min-height: 48px; padding: 10px 12px; }
body { padding-bottom: 72px; }
@media (min-width: 1100px) { .callbar { display: none; } body { padding-bottom: 0; } }

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; } }
@media print { .site-header, .callbar, .site-footer { display: none; } body { padding: 0; } }
.h3like { font-size: var(--fs-500); margin-bottom: var(--space-2); }
@media (min-width: 1100px) { .nav li a { font-size: var(--fs-300); padding: 8px 9px; } }
@media (min-width: 1320px) { .head-phone { display: inline; font-weight: var(--fw-heavy); text-decoration: none; color: var(--color-text); white-space: nowrap; } }

/* Footer column labels (not headings, so each page's outline is only its own content). */
.site-footer .h-foot { color: #fff; font: var(--fw-heavy) var(--fs-100)/1.2 var(--font-text); letter-spacing: var(--track-caps); text-transform: uppercase; margin: 0 0 var(--space-3); }

/* Breadcrumb (service sub-pages). */
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 4px 8px; padding: 0; margin: 0 0 var(--space-3); font-size: var(--fs-200); }
.crumbs li + li::before { content: "›"; margin-right: 8px; color: var(--color-text-muted); }
.crumbs [aria-current] { color: var(--color-text-muted); }

/* About: owner slot (renders only when config.OWNER_NAME is set). */
.owner { display: grid; gap: var(--space-4); align-items: center; }
.owner-photo { width: 160px; height: 160px; border-radius: 50%; object-fit: cover; }
@media (min-width: 600px) { .owner { grid-template-columns: 160px 1fr; } }

/* Grid children may shrink below their content (keeps wide tables scrolling inside .table-wrap). */
.grid > * { min-width: 0; }
