/* TPM Cleaning Solutions — brand styles */
@font-face { font-family: 'Montserrat'; font-weight: 700; font-display: swap; src: url('/fonts/montserrat-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-weight: 800; font-display: swap; src: url('/fonts/montserrat-latin-800-normal.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-weight: 900; font-display: swap; src: url('/fonts/montserrat-latin-900-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-weight: 400; font-display: swap; src: url('/fonts/inter-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-weight: 500; font-display: swap; src: url('/fonts/inter-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-weight: 600; font-display: swap; src: url('/fonts/inter-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-weight: 700; font-display: swap; src: url('/fonts/inter-latin-700-normal.woff2') format('woff2'); }

:root {
  --blue: #1E7CD8; --blue-600: #1565C0; --blue-800: #0D47A1; --navy: #001E3C; --sky: #42A5F5; --sky-300: #90CAF9; --sky-50: #E3F2FD;
  --orange: #F5A623; --orange-600: #e69512; --orange-text: #9A5B00; --wa-dark: #1A7F45; --orange-50: #FFF3E0; --green: #43A047; --green-50: #E8F5E9; --red: #D32F2F; --red-50: #FDECEA;
  --wa: #25D366; --ink: #0f172a; --text: #1f2a3a; --muted: #5b6b7f; --line: #e3e8ef; --bg: #f5f8fc; --card: #fff;
  --radius: 18px; --radius-sm: 12px; --shadow: 0 10px 30px -12px rgba(0, 30, 60, .25); --shadow-sm: 0 2px 10px rgba(0, 30, 60, .08);
  --head: 'Montserrat', system-ui, sans-serif; --body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --max: 1180px; --header-h: 72px; --ease: cubic-bezier(.2, .7, .2, 1);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; -webkit-tap-highlight-color: transparent; }
body { margin: 0; font-family: var(--body); color: var(--text); background: var(--bg); line-height: 1.55; font-size: 16px; overflow-x: hidden; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img { max-width: 100%; display: block; }
a { color: var(--blue-600); text-decoration: none; }
/* Links inside running text are underlined so they don't rely on colour alone */
p a:not(.btn), li a:not(.btn), label a, .hint a, dd a:not(.btn) { text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--blue-600); }
h1, h2, h3, h4 { font-family: var(--head); color: var(--navy); line-height: 1.15; margin: 0 0 .5em; text-wrap: balance; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 900; }
h3, .h3 { font-size: 1.2rem; font-weight: 800; }
.h4 { font-size: 1rem; font-weight: 800; }
p { margin: 0 0 1em; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 6px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.muted { color: var(--muted); }
.small { font-size: .875rem; }
.center { text-align: center; }
.stack > * + * { margin-top: 12px; }
.row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.grow { flex: 1; }
.hl { color: var(--blue-600); }
.hl-orange { color: var(--orange-text); }
.hero .hl-orange, .page-hero .hl-orange { color: var(--orange); }
.upper { text-transform: uppercase; letter-spacing: .01em; }
.skip { position: absolute; left: -999px; top: 8px; background: #fff; padding: 8px 14px; z-index: 100; border-radius: 8px; }
.skip:focus { left: 8px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 0; cursor: pointer; border-radius: 12px; padding: 12px 20px; font-weight: 700; font-size: 1rem; transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease); text-align: center; white-space: nowrap; }
.btn:not([disabled]):hover { transform: translateY(-1px); }
.btn:not([disabled]):active { transform: translateY(0) scale(.98); }
.btn[disabled] { opacity: .55; cursor: not-allowed; }
.btn-primary { background: var(--orange); color: var(--navy); box-shadow: 0 8px 20px -8px rgba(245, 166, 35, .7); }
.btn-primary:hover { background: var(--orange-600); color: var(--navy); }
.btn-blue { background: var(--blue-600); color: #fff; }
.btn-blue:hover { background: var(--blue-600); color: #fff; }
.btn-ghost { background: rgba(255, 255, 255, .12); color: #fff; border: 1.5px solid rgba(255, 255, 255, .45); }
.btn-ghost:hover { background: rgba(255, 255, 255, .22); color: #fff; }
.btn-outline { background: #fff; color: var(--blue-600); border: 1.5px solid var(--line); }
.btn-outline:hover { border-color: var(--blue-600); color: var(--blue-600); }
.btn-danger { background: #fff; color: var(--red); border: 1.5px solid #f3c6c6; }
.btn-danger:hover { background: var(--red-50); color: var(--red); }
.btn-wa { background: var(--wa-dark); color: #fff; }
.btn-wa:hover { background: #156b3a; color: #fff; }
.btn-sm { padding: 8px 14px; font-size: .875rem; border-radius: 10px; }
.btn-lg { padding: 16px 26px; font-size: 1.08rem; }
.btn-block { width: 100%; }
.btn .icon { width: 18px; height: 18px; }
.link-btn { background: none; border: 0; padding: 0; color: var(--blue-600); cursor: pointer; font-weight: 600; }

.icon { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.icon.fill { fill: currentColor; stroke: none; }

/* Header */
#header.reserve:empty { height: var(--header-h); }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, .96); backdrop-filter: saturate(160%) blur(10px); border-bottom: 1px solid var(--line); }
.site-header.on-hero { background: transparent; border-color: transparent; position: absolute; left: 0; right: 0; }
.site-header .bar { height: var(--header-h); display: flex; align-items: center; gap: 18px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--head); font-weight: 900; color: var(--navy); line-height: 1; }
.brand img { width: 50px; height: 50px; object-fit: contain; border-radius: 12px; background: #fff; padding: 3px; box-shadow: var(--shadow-sm); }
.brand small { display: block; font-size: .64rem; letter-spacing: .14em; color: var(--muted); font-weight: 700; margin-top: 3px; }
.on-hero .brand, .on-hero .brand small { color: #fff; }
.nav { display: flex; gap: 4px; margin-left: auto; align-items: center; }
.nav a { color: var(--text); font-weight: 600; font-size: .95rem; padding: 8px 12px; border-radius: 10px; }
.nav a:hover, .nav a.active { background: var(--sky-50); color: var(--blue-600); }
.on-hero .nav a { color: #fff; }
.on-hero .nav a:hover, .on-hero .nav a.active { background: rgba(255, 255, 255, .15); color: #fff; }
.nav .btn { margin-left: 6px; }
.menu-btn { display: none; margin-left: auto; background: none; border: 0; padding: 8px; cursor: pointer; color: inherit; }
.on-hero .menu-btn { color: #fff; }
@media (max-width: 960px) {
  .menu-btn { display: block; }
  .nav { display: none; position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch; background: #fff; padding: 12px 20px 20px; box-shadow: var(--shadow); gap: 2px; max-height: calc(100vh - var(--header-h)); overflow: auto; }
  .nav.open { display: flex; }
  .on-hero .nav a { color: var(--text); }
  .nav a { padding: 12px; font-size: 1rem; }
  .nav .btn { margin: 8px 0 0; }
}

/* Hero */
.hero { position: relative; color: #fff; background: radial-gradient(1200px 500px at 85% 10%, rgba(66, 165, 245, .45), transparent 60%), linear-gradient(160deg, #1E7CD8 0%, #1565C0 45%, #0D47A1 100%); padding: calc(var(--header-h) + 40px) 0 120px; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255, 255, 255, .14) 1px, transparent 1px); background-size: 26px 26px; mask-image: linear-gradient(to bottom, #000, transparent 85%); }
.hero .container { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero h1 { color: #fff; text-transform: uppercase; letter-spacing: -.01em; }
.hero h1 .hl { color: var(--sky-300); }
.hero .lead { font-size: 1.15rem; color: #e3f2fd; max-width: 34em; }
.pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .25); padding: 6px 14px; border-radius: 99px; font-size: .9rem; font-weight: 600; margin-bottom: 20px; }
.pill .icon { width: 16px; height: 16px; color: var(--orange); }
.checks { display: flex; flex-wrap: wrap; gap: 8px 20px; margin: 18px 0 26px; padding: 0; list-style: none; font-size: .95rem; color: #e3f2fd; }
.checks li { display: flex; gap: 6px; align-items: center; }
.checks .icon { width: 18px; height: 18px; color: #7ee08a; }
.stats { display: flex; gap: 36px; margin-top: 34px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .2); }
.stats b { display: block; font-family: var(--head); font-size: 1.9rem; font-weight: 900; }
.stats span { font-size: .85rem; color: #cfe6fb; }
.wave { position: absolute; bottom: -1px; left: 0; width: 100%; height: 90px; color: var(--bg); }
@media (max-width: 960px) {
  .hero { padding: calc(var(--header-h) + 24px) 0 100px; }
  .hero .container { grid-template-columns: 1fr; gap: 28px; }
  .stats { gap: 22px; }
}

/* Quick-quote card */
.qq { background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .25); border-radius: 24px; padding: 22px; backdrop-filter: blur(6px); }
.qq h2 { color: #fff; font-size: 1.25rem; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.qq .inner { background: #fff; color: var(--text); border-radius: 16px; padding: 18px; }
.qq-services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 14px; }
.qq-services button { border: 1.5px solid var(--line); background: #fff; border-radius: 12px; padding: 10px 4px; display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: .74rem; font-weight: 700; cursor: pointer; color: var(--muted); }
.qq-services button .icon { color: var(--blue); }
.qq-services button[aria-pressed='true'] { border-color: var(--blue); background: var(--sky-50); color: var(--blue-800); }
.qq-price { display: flex; align-items: baseline; justify-content: space-between; margin: 14px 0; padding-top: 12px; border-top: 1px dashed var(--line); }
.qq-price b { font-family: var(--head); font-size: 2rem; color: var(--navy); }
.qq-foot { margin-top: 12px; background: var(--orange); color: var(--navy); border-radius: 14px; padding: 12px; text-align: center; font-weight: 600; font-size: .92rem; }
.qq-foot a { color: var(--navy); text-decoration: underline; font-weight: 800; }

/* Sections */
.section { padding: 80px 0; }
.section.tight { padding: 48px 0; }
.section.alt { background: #fff; }
.section.blue { background: linear-gradient(160deg, #1E7CD8, #0D47A1); color: #fff; }
.section.blue h2, .section.blue h3 { color: #fff; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.section-head h2 { text-transform: uppercase; }
.section-head p { color: var(--muted); font-size: 1.08rem; }
.section.blue .section-head p { color: #d6ebff; }
.eyebrow { display: inline-block; font-weight: 800; letter-spacing: .14em; font-size: .75rem; color: var(--blue-600); text-transform: uppercase; margin-bottom: 10px; }

.grid { display: grid; gap: 22px; }
.grid > *, .wizard > *, .cols > *, .dash > * { min-width: 0; } /* let grid items shrink on small screens (wide tables scroll inside their card) */
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .g3, .g4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .g2, .g3, .g4 { grid-template-columns: 1fr; } }

.card { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.card.pad { padding: 24px; }
.card h3 { margin-bottom: 6px; }

.svc { overflow: hidden; display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease); color: inherit; }
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow); color: inherit; }
.svc .media { aspect-ratio: 16/9; background: var(--sky-50); position: relative; overflow: hidden; }
.svc .media img { width: 100%; height: 100%; object-fit: cover; }
.svc .media .badge { position: absolute; top: 12px; left: 12px; }
.svc .body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.svc .body p { color: var(--muted); font-size: .95rem; flex: 1; }
.svc .from { display: flex; align-items: center; justify-content: space-between; font-weight: 700; margin-top: 6px; }
.svc .from b { color: var(--navy); font-family: var(--head); font-size: 1.15rem; }
.illus { width: 100%; height: 100%; }

.badge { display: inline-flex; align-items: center; gap: 4px; font-size: .75rem; font-weight: 700; padding: 4px 10px; border-radius: 99px; background: var(--sky-50); color: var(--blue-800); white-space: nowrap; }
.badge.orange { background: var(--orange-50); color: var(--orange-text); }
.badge.green { background: var(--green-50); color: #2e7d32; }
.badge.red { background: var(--red-50); color: #C62828; }
.badge.grey { background: #eef1f5; color: var(--muted); }
.badge.solid { background: var(--orange); color: var(--navy); }

.steps { counter-reset: s; }
.step { position: relative; padding: 28px 24px 24px; }
.step .num { width: 46px; height: 46px; border-radius: 14px; background: var(--orange); color: var(--navy); font-family: var(--head); font-weight: 900; font-size: 1.3rem; display: grid; place-items: center; margin-bottom: 16px; }
.section.blue .card { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .2); color: #fff; }
.section.blue .card p { color: #d6ebff; }

.feature { overflow: hidden; }
.feature img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.feature .body { padding: 18px 20px; }
.feature p { color: var(--muted); margin: 0; }

.review { padding: 24px; display: flex; flex-direction: column; gap: 14px; }
.review .stars { color: var(--orange); display: flex; gap: 2px; }
.review .stars .icon { width: 18px; height: 18px; }
.review blockquote { margin: 0; font-size: 1.02rem; flex: 1; }
.review .who { display: flex; align-items: center; gap: 12px; }
.review .who img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.review .who .ph { width: 44px; height: 44px; border-radius: 50%; background: var(--sky-50); color: var(--blue); display: grid; place-items: center; font-weight: 800; }

.price-table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.price-table th, .price-table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.price-table th { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.price-table td.num, .price-table th.num { text-align: right; white-space: nowrap; }
.price-table td.val { text-align: right; } /* descriptive values may wrap on phones */

.cta-band { background: linear-gradient(120deg, var(--orange), #f7b955); color: var(--navy); border-radius: 24px; padding: 36px; display: flex; gap: 24px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.cta-band h2 { color: var(--navy); margin: 0; font-size: clamp(1.4rem, 3vw, 2rem); }
.cta-band .btn-blue { background: var(--navy); }

.areas-list { columns: 3 220px; column-gap: 28px; }
.areas-list h3 { margin: 0 0 6px; font-size: .95rem; break-after: avoid; }
.areas-list ul { list-style: none; padding: 0; margin: 0 0 18px; break-inside: avoid; }
.areas-list li { padding: 3px 0; color: var(--muted); font-size: .94rem; display: flex; justify-content: space-between; gap: 8px; }

details.faq { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 0 18px; margin-bottom: 10px; }
details.faq summary { cursor: pointer; padding: 16px 0; font-weight: 700; list-style: none; display: flex; justify-content: space-between; gap: 12px; }
details.faq summary::after { content: '+'; font-size: 1.4rem; line-height: 1; color: var(--blue); }
details.faq[open] summary::after { content: '–'; }
details.faq p { color: var(--muted); }

/* Page header */
.page-hero { background: linear-gradient(160deg, #1E7CD8, #0D47A1); color: #fff; padding: 56px 0 70px; position: relative; overflow: hidden; }
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.9rem); text-transform: uppercase; }
.page-hero p { color: #d6ebff; font-size: 1.1rem; max-width: 42em; margin: 0; }
.page-hero .crumbs { font-size: .88rem; color: #bfdcff; margin-bottom: 10px; }
.page-hero .crumbs a { color: #fff; }
.page-body { margin-top: -40px; position: relative; padding-bottom: 70px; }

/* Forms */
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field > label, .label { font-weight: 600; font-size: .92rem; color: var(--navy); }
.field .hint { font-size: .8rem; color: var(--muted); }
.input, select.input, textarea.input { width: 100%; border: 1.5px solid var(--line); background: #fff; border-radius: 12px; padding: 12px 14px; font-size: 1rem; transition: border-color .15s, box-shadow .15s; }
.input:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(30, 124, 216, .12); outline: none; }
textarea.input { min-height: 110px; resize: vertical; }
.field.invalid .input { border-color: var(--red); }
.field .error { color: var(--red); font-size: .84rem; font-weight: 600; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
.checkbox { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; font-size: .95rem; }
.checkbox input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--blue); flex: none; }
.alert { padding: 14px 16px; border-radius: 12px; font-size: .95rem; margin-bottom: 16px; display: flex; gap: 10px; align-items: flex-start; }
.alert .icon { width: 20px; height: 20px; margin-top: 1px; }
.alert.error { background: var(--red-50); color: #8e1f1f; }
.alert.info { background: var(--sky-50); color: var(--blue-800); }
.alert.warn { background: var(--orange-50); color: #8a5300; }
.alert.success { background: var(--green-50); color: #1f6b25; }

.counter { display: flex; align-items: center; border: 1.5px solid var(--line); border-radius: 12px; overflow: hidden; background: #fff; width: max-content; }
.counter button { width: 44px; height: 44px; border: 0; background: var(--sky-50); color: var(--blue-800); font-size: 1.3rem; font-weight: 700; cursor: pointer; }
.counter button:disabled { opacity: .4; cursor: not-allowed; }
.counter input { width: 64px; border: 0; text-align: center; font-weight: 700; font-size: 1.05rem; height: 44px; -moz-appearance: textfield; }
.counter input::-webkit-outer-spin-button, .counter input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.counter.wide input { width: 90px; }

.choice-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
.choice { position: relative; border: 1.5px solid var(--line); background: #fff; border-radius: 14px; padding: 12px 14px; cursor: pointer; display: flex; gap: 10px; align-items: center; font-weight: 600; font-size: .94rem; transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), transform .15s var(--ease); }
.choice:hover { border-color: var(--sky-300); }
.choice:active { transform: scale(.98); }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice:has(input:checked), .choice[aria-pressed='true'] { border-color: var(--blue); background: var(--sky-50); color: var(--blue-800); }
.choice:has(input:focus-visible) { outline: 3px solid var(--orange); outline-offset: 2px; }
.choice .icon { color: var(--blue); }
.choice .sub { display: block; font-weight: 500; font-size: .8rem; color: var(--muted); }
.choice .tick { margin-left: auto; width: 20px; height: 20px; border-radius: 6px; border: 1.5px solid var(--line); display: grid; place-items: center; flex: none; }
.choice:has(input:checked) .tick { background: var(--blue-600); border-color: var(--blue-600); color: #fff; }
.choice .tick .icon { width: 14px; height: 14px; color: #fff; stroke-width: 3; }
.svc-pick { display: grid; grid-template-columns: repeat(auto-fill, minmax(145px, 1fr)); gap: 10px; }
.svc-pick .choice { flex-direction: column; text-align: center; padding: 16px 10px; gap: 6px; }
.svc-pick .choice .icon { width: 28px; height: 28px; }
.svc-pick .choice small { color: var(--muted); font-weight: 600; font-size: .78rem; }

/* Booking wizard */
.wizard { display: grid; grid-template-columns: 1fr 380px; gap: 28px; align-items: start; }
@media (max-width: 1000px) { .wizard { grid-template-columns: 1fr; } }
.progress { display: flex; gap: 6px; margin-bottom: 22px; }
.progress div { flex: 1; }
.progress .bar { height: 6px; border-radius: 99px; background: var(--line); }
.progress .on .bar { background: var(--blue); }
.progress span { display: block; font-size: .78rem; font-weight: 700; color: var(--muted); margin-top: 6px; }
.progress .on span { color: var(--blue-800); }
.wizard-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 24px; }
.summary { position: sticky; top: calc(var(--header-h) + 16px); }
.summary h3 { display: flex; align-items: center; gap: 8px; }
.lines { list-style: none; padding: 0; margin: 0; font-size: .92rem; }
.lines li { display: flex; justify-content: space-between; gap: 12px; padding: 7px 0; border-bottom: 1px dashed var(--line); }
.lines li span:last-child { white-space: nowrap; font-weight: 600; }
.lines li.discount span:last-child { color: var(--green); }
.lines li.surcharge span:last-child { color: #b26a00; }
.total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 14px; }
.total b { font-family: var(--head); font-size: 2rem; color: var(--navy); }
.meta-list { display: grid; grid-template-columns: auto 1fr; gap: 6px 12px; font-size: .92rem; margin: 12px 0; }
.meta-list dt { color: var(--muted); }
.meta-list dd { margin: 0; font-weight: 600; }
.meta-list > * { min-width: 0; overflow-wrap: anywhere; } /* long emails and addresses wrap instead of running off small screens */
.mobile-total { display: none; }
@media (max-width: 1000px) {
  .summary { position: static; }
  .mobile-total { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 40; background: #fff; border-top: 1px solid var(--line); padding: 12px 20px calc(12px + env(safe-area-inset-bottom)); justify-content: space-between; align-items: center; box-shadow: 0 -8px 20px rgba(0, 0, 0, .06); }
  .mobile-total b { font-family: var(--head); font-size: 1.4rem; color: var(--navy); }
  body.has-mobile-total { padding-bottom: 80px; }
}

/* Calendar */
.cal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal .dow { text-align: center; font-size: .75rem; font-weight: 700; color: var(--muted); padding: 4px 0; }
.cal button { border: 1.5px solid var(--line); background: #fff; border-radius: 12px; padding: 8px 2px 6px; cursor: pointer; display: flex; flex-direction: column; align-items: center; min-height: 64px; gap: 2px; }
.cal button b { font-size: 1rem; }
.cal button small { font-size: .68rem; color: var(--muted); font-weight: 600; }
.cal button .p { font-size: .7rem; font-weight: 700; color: var(--green); }
.cal button.sur .p { color: #b26a00; }
.cal button:disabled { background: #f3f5f8; color: #aab4c0; cursor: not-allowed; border-color: transparent; }
.cal button[aria-pressed='true'] { border-color: var(--blue-600); background: var(--blue-600); color: #fff; }
.cal button[aria-pressed='true'] small, .cal button[aria-pressed='true'] .p { color: #fff; }
.cal .empty { visibility: hidden; }
.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); gap: 8px; }
.slots button { border: 1.5px solid var(--line); background: #fff; border-radius: 10px; padding: 10px 0; font-weight: 700; cursor: pointer; }
.slots button:disabled { background: #f3f5f8; color: #b8c1cc; text-decoration: line-through; cursor: not-allowed; }
.slots button[aria-pressed='true'] { background: var(--blue-600); color: #fff; border-color: var(--blue-600); }

/* Status */
.timeline { list-style: none; padding: 0; margin: 0; }
.timeline li { position: relative; padding: 0 0 16px 22px; font-size: .92rem; }
.timeline li::before { content: ''; position: absolute; left: 5px; top: 7px; width: 9px; height: 9px; border-radius: 50%; background: var(--blue); }
.timeline li::after { content: ''; position: absolute; left: 9px; top: 18px; bottom: 0; width: 1px; background: var(--line); }
.timeline li:last-child::after { display: none; }
.timeline time { display: block; color: var(--muted); font-size: .78rem; }
.status-steps { display: flex; gap: 6px; margin: 8px 0 18px; }
.status-steps div { flex: 1; text-align: center; font-size: .75rem; font-weight: 700; color: var(--muted); }
.status-steps div::before { content: ''; display: block; height: 6px; border-radius: 99px; background: var(--line); margin-bottom: 6px; }
.status-steps div.on { color: var(--blue-800); }
.status-steps div.on::before { background: var(--blue); }
.stars-input { display: flex; gap: 4px; }
.stars-input button { background: none; border: 0; cursor: pointer; color: #c9d2dc; padding: 2px; }
.stars-input button.on { color: var(--orange); }
.stars-input .icon { width: 34px; height: 34px; }

/* Footer */
.site-footer { background: linear-gradient(160deg, #1565C0, #0D47A1); color: #d6ebff; padding: 60px 0 24px; font-size: .95rem; }
.site-footer h2 { color: #fff; font-size: 1rem; }
.site-footer a { color: #d6ebff; display: inline-block; padding: 3px 0; }
.site-footer a:hover { color: #fff; }
.site-footer .cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 28px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { padding: 5px 0; }
.site-footer .contact li { display: flex; gap: 10px; align-items: center; }
.site-footer .contact .icon { width: 18px; height: 18px; color: var(--orange); }
.site-footer .logo { width: 88px; height: 88px; object-fit: contain; background: #fff; border-radius: 16px; padding: 6px; margin-bottom: 16px; }
.site-footer .bottom { border-top: 1px solid rgba(255, 255, 255, .15); margin-top: 36px; padding-top: 20px; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; font-size: .85rem; }
.socials { display: flex; gap: 10px; }
.socials a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255, 255, 255, .12); display: grid; place-items: center; color: #fff; }
.socials a.wa { background: var(--wa); }
.socials .icon { width: 18px; height: 18px; }
@media (max-width: 860px) { .site-footer .cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .site-footer .cols { grid-template-columns: 1fr; } }

.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 45; width: 58px; height: 58px; border-radius: 50%; background: var(--wa); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 24px -6px rgba(37, 211, 102, .7); }
.wa-float:hover { color: #fff; transform: scale(1.05); }
.wa-float .icon { width: 30px; height: 30px; }
body.has-mobile-total .wa-float { bottom: 96px; }

.cookie { position: fixed; left: 16px; bottom: 16px; z-index: 60; max-width: 420px; background: #fff; border-radius: 16px; box-shadow: var(--shadow); padding: 18px; font-size: .9rem; border: 1px solid var(--line); }
.cookie p { margin-bottom: 12px; }

.toast { position: fixed; left: 50%; top: 18px; transform: translateX(-50%); z-index: 100; background: var(--navy); color: #fff; padding: 12px 20px; border-radius: 12px; box-shadow: var(--shadow); font-weight: 600; max-width: calc(100% - 32px); animation: pop .2s ease-out; }
.toast.error { background: var(--red); }
@keyframes pop { from { opacity: 0; transform: translate(-50%, -8px); } }

.spinner { width: 22px; height: 22px; border: 3px solid rgba(30, 124, 216, .2); border-top-color: var(--blue); border-radius: 50%; animation: spin .8s linear infinite; display: inline-block; vertical-align: middle; }
@keyframes spin { to { transform: rotate(360deg); } }
.loading { display: grid; place-items: center; padding: 80px 0; color: var(--muted); gap: 12px; }
.empty-state { text-align: center; padding: 40px 20px; color: var(--muted); }
.empty-state .icon { width: 40px; height: 40px; color: var(--sky-300); margin: 0 auto 10px; }

/* Auth pages */
.auth-wrap { min-height: calc(100vh - var(--header-h)); display: grid; place-items: center; padding: 40px 20px; background: radial-gradient(900px 400px at 20% 0%, rgba(66, 165, 245, .35), transparent 60%), linear-gradient(160deg, #1E7CD8, #0D47A1); }
.auth-card { width: 100%; max-width: 440px; }
.auth-card .logo { width: 84px; height: 84px; object-fit: contain; margin: 0 auto 14px; background: #fff; border-radius: 18px; padding: 6px; box-shadow: var(--shadow); }
.auth-card h1 { color: #fff; text-align: center; font-size: 1.8rem; text-transform: none; }
.auth-card .sub { color: #d6ebff; text-align: center; margin-bottom: 22px; }
.auth-card .foot { text-align: center; color: #d6ebff; margin-top: 18px; }
.auth-card .foot a { color: #fff; font-weight: 700; }

/* Dashboards */
.dash { display: grid; grid-template-columns: 230px 1fr; gap: 24px; align-items: start; padding-top: 28px; padding-bottom: 60px; }
.dash-nav { position: sticky; top: calc(var(--header-h) + 16px); display: flex; flex-direction: column; gap: 2px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 10px; }
.dash-nav a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px; color: var(--text); font-weight: 600; font-size: .94rem; }
.dash-nav a .icon { width: 18px; height: 18px; color: var(--muted); }
.dash-nav a.active, .dash-nav a:hover { background: var(--sky-50); color: var(--blue-800); }
.dash-nav a.active .icon { color: var(--blue); }
.dash-nav .count { margin-left: auto; background: var(--orange); color: var(--navy); border-radius: 99px; font-size: .72rem; padding: 1px 8px; font-weight: 800; }
@media (max-width: 900px) {
  .dash { grid-template-columns: 1fr; }
  .dash-nav { position: static; flex-direction: row; overflow-x: auto; }
  .dash-nav a { white-space: nowrap; }
}
.kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 22px; }
.kpi { padding: 18px; }
.kpi span { font-size: .8rem; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.kpi b { display: block; font-family: var(--head); font-size: 1.7rem; color: var(--navy); margin-top: 4px; }
.kpi small { color: var(--muted); }
@media (max-width: 900px) { .kpis { grid-template-columns: repeat(2, 1fr); } }
.table-wrap { overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.table th { text-align: left; font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); padding: 10px 12px; border-bottom: 1px solid var(--line); white-space: nowrap; }
.table td { padding: 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.table tr.click { cursor: pointer; }
.table tr.click:hover td { background: #f8fbff; }
.table td.num, .table th.num { text-align: right; white-space: nowrap; }
.toolbar { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-bottom: 16px; }
.toolbar .input { width: auto; padding: 9px 12px; }
.drawer-bg { position: fixed; inset: 0; background: rgba(0, 30, 60, .45); z-index: 70; }
.drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(640px, 100%); background: var(--bg); z-index: 71; overflow-y: auto; padding: 24px; box-shadow: var(--shadow); animation: slide .2s ease-out; }
@keyframes slide { from { transform: translateX(30px); opacity: 0; } }
.drawer .close { position: sticky; top: 0; float: right; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 6px; cursor: pointer; }
.chart { width: 100%; height: 180px; }
.chart rect { fill: var(--blue); }
.chart rect.today { fill: var(--orange); }
.chart text { font-size: 10px; fill: var(--muted); font-family: var(--body); }
.cfg-group { margin-bottom: 18px; }
.cfg-group h4 { margin: 0 0 10px; }
.cfg-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 8px 14px; }
.cfg-grid .field { margin-bottom: 6px; }
.cfg-grid .field label { font-size: .8rem; font-weight: 600; color: var(--muted); }
.cfg-grid .input { padding: 8px 10px; }
.cfg-grid .changed .input { border-color: var(--orange); background: #fffaf0; }

.prose h2 { font-size: 1.4rem; margin-top: 1.6em; }
.prose h3 { font-size: 1.1rem; margin-top: 1.4em; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: .4em; }

.job { padding: 18px; }
.job + .job { margin-top: 14px; }
.job h3 { display: flex; justify-content: space-between; gap: 10px; align-items: center; flex-wrap: wrap; }

@media print { .site-header, .site-footer, .wa-float, .cookie, .no-print { display: none !important; } body { background: #fff; } }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; scroll-behavior: auto !important; } }
.checks.dark { color: var(--muted); flex-direction: column; gap: 10px; }
.checks.dark .icon { color: var(--green); }

/* Chips, join panel, newsletter, area cards */
.chips { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 26px; }
.chip { border: 1.5px solid var(--line); background: #fff; border-radius: 99px; padding: 8px 16px; font-weight: 700; font-size: .9rem; cursor: pointer; color: var(--muted); }
.chip[aria-pressed='true'] { background: var(--blue-600); border-color: var(--blue-600); color: #fff; }
.join { display: grid; grid-template-columns: 1.1fr 1fr auto; gap: 28px; align-items: center; padding: 28px 32px; border: 2px solid var(--sky-50); background: linear-gradient(120deg, #fff 60%, #f1f8ff); }
.join h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.join-perks { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.join-perks li { display: flex; gap: 12px; align-items: flex-start; }
.join-perks .icon { color: var(--orange); background: var(--orange-50); border-radius: 10px; padding: 7px; width: 36px; height: 36px; }
.join-cta { display: flex; flex-direction: column; gap: 10px; align-items: center; }
@media (max-width: 960px) { .join { grid-template-columns: 1fr; } .join-cta { align-items: stretch; text-align: center; } }
.newsletter { margin-top: 22px; display: flex; gap: 20px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.newsletter h3 { display: flex; align-items: center; gap: 8px; margin: 0; }
.newsletter p { margin: 4px 0 0; }
.newsletter .row { flex-wrap: nowrap; min-width: min(460px, 100%); }
.area-card { display: flex; gap: 14px; align-items: flex-start; color: inherit; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.area-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: inherit; }
.area-card .icon { color: var(--orange); flex: none; margin-top: 2px; }
.container.narrow { max-width: 820px; }
.ssr { color: var(--text); }
.ssr h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.page-hero.slim { padding: 34px 0 60px; }
.page-hero.slim h1 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin-bottom: 4px; }
hr.sep { border: 0; border-top: 1px solid var(--line); margin: 22px 0; }
.plan-box { background: var(--sky-50); border-radius: 14px; padding: 12px 14px; margin-top: 12px; }
.plan-box .lines li { border-bottom-color: rgba(0, 30, 60, .12); }
.plan-box .total b { font-size: 1.6rem; }
.small-total b { font-size: 1.3rem !important; }
.hl-green { color: #2E7D32; font-weight: 700; }
.lead-dark { font-size: 1.08rem; }
.svc-detail { overflow: hidden; }
.svc-detail .media { aspect-ratio: 16/6; overflow: hidden; background: var(--sky-50); }
.svc-detail .media img, .svc-detail .media svg { width: 100%; height: 100%; object-fit: cover; }
.svc-detail .pad { padding: 24px; }
.how-price .icon { width: 34px; height: 34px; color: var(--blue); background: var(--sky-50); padding: 6px; border-radius: 10px; margin-bottom: 10px; }
/* Admin & misc */
.switch { position: relative; display: inline-block; width: 44px; height: 24px; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch span { position: absolute; inset: 0; background: #cfd8e3; border-radius: 99px; cursor: pointer; transition: background .15s; }
.switch span::before { content: ''; position: absolute; width: 18px; height: 18px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: transform .15s; }
.switch input:checked + span { background: var(--green); }
.switch input:checked + span::before { transform: translateX(20px); }
.switch input:focus-visible + span { outline: 3px solid var(--orange); outline-offset: 2px; }
.keycode { display: block; word-break: break-all; background: #fff; border: 1px dashed var(--line); padding: 10px; border-radius: 8px; margin: 8px 0; font-size: .85rem; }
.claude-card { border: 2px solid var(--sky-50); background: linear-gradient(135deg, #fff 55%, #fff7ea); }
.enquiry.done { opacity: .75; }
:not(.grid):not(.stack) > .card.pad + .card.pad { margin-top: 14px; }
.msg { white-space: pre-wrap; background: var(--bg); border-radius: 10px; padding: 12px; }
.reply { border-left: 3px solid var(--blue); padding-left: 12px; margin: 10px 0; }
.reply p { white-space: pre-wrap; margin: 4px 0 0; }
.item-row input[data-i=id], .extra-row input[data-e=id] { width: 110px; }
.item-row input[data-i=price], .item-row input[data-i=hours], .extra-row input[data-e=price] { width: 90px; }
.item-row, .extra-row { margin-bottom: 8px; flex-wrap: nowrap; }
.booking-row { display: flex; gap: 14px; align-items: center; color: inherit; margin-bottom: 10px; }
.booking-row:hover { color: inherit; box-shadow: var(--shadow); }
.rebook-wrap { display: flex; gap: 10px; align-items: center; }
.rebook-wrap .booking-row { flex: 1; }
.visits-table td:first-child { white-space: nowrap; }
@media (max-width: 620px) {
  .booking-row { flex-wrap: wrap; gap: 8px 12px; }
  .booking-row .grow { flex: 1 1 100%; }
  .booking-row > b { margin-left: auto; }
  .rebook-wrap { flex-direction: column; align-items: stretch; gap: 0; margin-bottom: 14px; }
  .rebook-wrap .booking-row { margin-bottom: 6px; }
  .visits-table th, .visits-table td { padding: 10px 6px; }
  .visits-table .badge { white-space: normal; }
}
.steps-list { padding-left: 1.2em; }
.steps-list li { margin-bottom: 8px; }
.contact-card { display: flex; gap: 14px; align-items: center; color: inherit; }
.contact-card .icon { color: var(--blue); width: 28px; height: 28px; }
.big { font-family: var(--head); font-size: 2.2rem; color: var(--navy); }
.about-img { width: 100%; height: 100%; object-fit: cover; padding: 0; }
.narrow-card { max-width: 860px; margin: 0 auto; }
.center-row { justify-content: center; }
pre.mail { white-space: pre-wrap; font-family: var(--body); font-size: .88rem; background: var(--bg); padding: 12px; border-radius: 10px; }
.email-row summary { cursor: pointer; }
.small-kpi { font-size: 1rem !important; }
.reg-perks { margin: 0 0 16px; }
.dash h1 { font-size: 1.6rem; }
.table .input { padding: 7px 9px; min-width: 90px; }
@media (max-width: 620px) { .newsletter .row { flex-wrap: wrap; } .item-row, .extra-row { flex-wrap: wrap; } }
.on-hero .nav a.btn-outline { color: var(--blue-600); }
.on-hero .nav a.btn-primary, .on-hero .nav a.btn-primary:hover { color: var(--navy); }
.on-hero .nav a.btn-outline:hover { color: var(--blue-600); background: #fff; }
.wizard form h2, .wizard .card > h2 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); }
.svc-pick { grid-template-columns: repeat(auto-fill, minmax(118px, 1fr)); gap: 8px; }
.svc-pick .choice { padding: 10px 6px; font-size: .86rem; }
.svc-pick .choice .icon { width: 22px; height: 22px; }
.dash .card h2 { font-size: 1.35rem; }
.dash .card h3 { font-size: 1.05rem; }
.eft { margin-top: 16px; padding: 14px; border: 1.5px dashed var(--line); border-radius: 14px; background: var(--sky-50); }
.eft h4 { display: flex; align-items: center; gap: 8px; margin: 0 0 8px; }
.eft .meta-list { margin-bottom: 12px; }
.eft dd { overflow-wrap: anywhere; }
.more-row { display: flex; margin-top: 24px; }

/* ---- Smooth & clean (Sep 2026) ---- */
p, li { text-wrap: pretty; }
.site-header { transition: box-shadow .25s var(--ease), background .25s var(--ease); }
html.scrolled .site-header:not(.on-hero) { box-shadow: 0 8px 24px -16px rgba(0, 30, 60, .35); }
.choice .tick { transition: background .2s var(--ease), border-color .2s var(--ease); }
.input:hover:not(:focus) { border-color: #cfd8e3; }
.svc .media img { transition: transform .6s var(--ease); }
.svc:hover .media img { transform: scale(1.04); }
/* Page change: a quick fade (opacity only, so fixed elements inside the page are unaffected) */
.page-in { animation: page-in .35s var(--ease) both; }
@keyframes page-in { from { opacity: 0; } }
/* Blocks below the fold glide in once, as they scroll into view (added by js/lib/motion.js) */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); transition-delay: var(--reveal-delay, 0ms); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } .btn:hover, .choice:active, .svc:hover .media img { transform: none; } }
