/* ==========================================================================
   Book My Cleaning — site.css
   Design system: "Clear & Confident"
   Plum ink for words, one pink for actions, mint for what's included.
   ========================================================================== */

:root {
  --ink: #2A1433;        /* headings, footer, dark bands */
  --ink-2: #4B3F55;      /* body text */
  --ink-3: #7A6E84;      /* muted text */
  --pink: #D8267F;       /* primary action */
  --pink-2: #B81A69;     /* action hover */
  --blush: #FBE9F2;      /* tints */
  --mint: #16806A;       /* included / success text */
  --mint-2: #E4F5F0;     /* success tint */
  --amber: #B45309; --amber-2: #FFF4E0;
  --red: #B42318; --red-2: #FEE9E7;
  --lilac: #F7F4FA;      /* alternate section surface */
  --line: #E8E1EE;       /* borders */
  --white: #FFFFFF;

  --font-display: "Bricolage Grotesque", "Figtree", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --r-sm: 8px; --r-md: 12px; --r-lg: 20px; --r-pill: 999px;
  --wrap: 1180px;
  --shadow-card: 0 20px 50px -20px rgba(42, 20, 51, .28);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--font-body); font-size: 17px; line-height: 1.6;
  color: var(--ink-2); background: var(--white);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--pink-2); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid #F5A3CB; outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--blush); color: var(--ink); }

h1, h2, h3, h4 {
  font-family: var(--font-display); color: var(--ink); margin: 0 0 .4em;
  font-weight: 700; line-height: 1.12; letter-spacing: -.02em;
  font-variation-settings: "opsz" 96, "wdth" 100;
}
h1 { font-size: clamp(2.25rem, 1.4rem + 3.4vw, 4rem); font-weight: 800; letter-spacing: -.03em; }
h2 { font-size: clamp(1.75rem, 1.25rem + 1.8vw, 2.6rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; }
p { margin: 0 0 1em; }
.lead { font-size: 1.2rem; line-height: 1.55; color: var(--ink-2); max-width: 36em; }
.muted { color: var(--ink-3); }
.small { font-size: .9rem; }
.measure { max-width: 62ch; }
strong { color: var(--ink); font-weight: 600; }

.wrap { width: min(var(--wrap), calc(100% - 2.5rem)); margin-inline: auto; }
.wrap-narrow { width: min(820px, calc(100% - 2.5rem)); margin-inline: auto; }

.skip-link { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: .6rem 1rem; border-radius: var(--r-sm); z-index: 999; }
.skip-link:focus { left: 8px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.4rem; border-radius: var(--r-pill); border: 2px solid transparent;
  font-weight: 600; font-size: 1rem; line-height: 1.2; cursor: pointer; white-space: nowrap;
  transition: background .18s var(--ease), color .18s, border-color .18s, transform .18s var(--ease);
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--pink); color: #fff; }
.btn-primary:hover { background: var(--pink-2); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); padding-inline: .8rem; }
.btn-ghost:hover { background: var(--lilac); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--blush); }
.btn-lg { padding: 1.05rem 1.8rem; font-size: 1.08rem; }
.btn-sm { padding: .55rem 1rem; font-size: .9rem; }
.btn-block { width: 100%; }
.btn[disabled], .btn.is-loading { opacity: .6; pointer-events: none; }
.btn svg { width: 1.1em; height: 1.1em; flex: none; }

/* ---------- Header ---------- */
.announce {
  background: var(--ink); color: #fff; font-size: .9rem; text-align: center; padding: .5rem 1rem;
}
.announce a { color: #FFD1E6; font-weight: 600; }
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(10px); -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 1.25rem; min-height: 74px; }
.brand { display: flex; align-items: center; gap: .6rem; color: var(--ink); font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; letter-spacing: -.02em; white-space: nowrap; line-height: 1.1; }
.brand:hover { text-decoration: none; }
.brand-mark { width: 36px; height: 36px; flex: none; }
.brand small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .7rem; letter-spacing: 0; color: var(--ink-3); margin-top: -2px; }
.nav-links { display: flex; align-items: center; gap: .25rem; margin-left: auto; list-style: none; padding: 0; margin-block: 0; }
.nav-links > li { position: relative; }
.nav-links a, .nav-links summary { display: inline-flex; align-items: center; gap: .3rem; padding: .55rem .7rem; white-space: nowrap; border-radius: var(--r-sm); color: var(--ink); font-weight: 500; cursor: pointer; list-style: none; }
.nav-links summary::-webkit-details-marker { display: none; }
.nav-links a:hover, .nav-links summary:hover { background: var(--lilac); text-decoration: none; }
.nav-links a[aria-current="page"] { color: var(--pink-2); }
.nav-links summary svg { width: 14px; height: 14px; transition: transform .18s; }
.nav-links details[open] summary svg { transform: rotate(180deg); }
.dropdown {
  position: absolute; left: 0; top: calc(100% + 8px); background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); box-shadow: var(--shadow-card); padding: .5rem; min-width: 250px; z-index: 60;
}
.dropdown a { display: block; padding: .6rem .8rem; border-radius: var(--r-sm); font-weight: 500; }
.dropdown a:hover { background: var(--blush); }
.nav-cta { display: flex; align-items: center; gap: .5rem; margin-left: .5rem; }
.nav-phone { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; color: var(--ink); padding: .5rem .6rem; white-space: nowrap; }
.nav-phone svg { width: 18px; height: 18px; color: var(--pink); }
.nav-toggle { display: none; margin-left: auto; background: none; border: 1px solid var(--line); border-radius: var(--r-sm); padding: .5rem .6rem; cursor: pointer; }
.nav-toggle svg { width: 22px; height: 22px; display: block; }

/* ---------- Hero ---------- */
.hero { padding: clamp(2.5rem, 4vw, 4.5rem) 0 clamp(2rem, 4vw, 4rem); position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(900px 420px at 88% -10%, #FBE9F2 0%, rgba(251,233,242,0) 70%),
    radial-gradient(600px 300px at 0% 110%, #F1ECF6 0%, rgba(241,236,246,0) 70%);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.hero h1 { margin-bottom: .5em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin: 1.75rem 0 1.25rem; }
.hero-proof { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1.4rem; color: var(--ink-3); font-size: .95rem; }
.hero-proof b { color: var(--ink); font-weight: 600; }
.stars { color: #F2A900; letter-spacing: .05em; }
.hero-photo { margin-top: 2rem; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16/8; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.hero-anim > * { opacity: 0; transform: translateY(14px); animation: rise .7s var(--ease) forwards; }
.hero-anim > *:nth-child(2) { animation-delay: .08s; } .hero-anim > *:nth-child(3) { animation-delay: .16s; }
.hero-anim > *:nth-child(4) { animation-delay: .24s; } .hero-anim > *:nth-child(5) { animation-delay: .32s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* Instant price card — the one bold element */
.quote-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.5rem;
  box-shadow: var(--shadow-card); position: relative;
}
.quote-card h2 { font-size: 1.35rem; margin-bottom: .25rem; }
.quote-card .hint { color: var(--ink-3); font-size: .92rem; margin-bottom: 1.1rem; }
.quote-total { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: 1rem 0 .25rem; border-top: 1px dashed var(--line); margin-top: 1rem; }
.quote-total .price { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--ink); letter-spacing: -.03em; white-space: nowrap; line-height: 1.1; }
.quote-total .price small { font-family: var(--font-body); font-weight: 500; font-size: .95rem; color: var(--ink-3); margin-left: .35rem; letter-spacing: 0; }
.quote-note { font-size: .85rem; color: var(--ink-3); margin: .35rem 0 1rem; min-height: 1.3em; }

/* ---------- Forms ---------- */
.field { margin-bottom: 1rem; }
.field label, .label { display: block; font-weight: 600; font-size: .92rem; color: var(--ink); margin-bottom: .35rem; }
.field .help { font-size: .85rem; color: var(--ink-3); margin-top: .3rem; }
.input, .select, .textarea {
  width: 100%; padding: .75rem .9rem; border: 1.5px solid var(--line); border-radius: var(--r-md); background: #fff;
  transition: border-color .15s, box-shadow .15s; min-height: 48px;
}
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 4px rgba(216,38,127,.12); }
.input[aria-invalid="true"] { border-color: var(--red); }
.select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%234B3F55' stroke-width='2'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .8rem center; padding-right: 2.4rem; }
.textarea { min-height: 120px; resize: vertical; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.row-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.check { display: flex; gap: .6rem; align-items: flex-start; font-size: .95rem; cursor: pointer; }
.check input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--pink); flex: none; }
.form-msg { padding: .8rem 1rem; border-radius: var(--r-md); font-size: .95rem; margin-top: 1rem; display: none; }
.form-msg.ok { display: block; background: var(--mint-2); color: var(--mint); }
.form-msg.err { display: block; background: var(--red-2); color: var(--red); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* Option pills (booking + quote card) */
.opts { display: flex; flex-wrap: wrap; gap: .5rem; }
.opt {
  border: 1.5px solid var(--line); border-radius: var(--r-md); padding: .6rem .85rem; cursor: pointer; background: #fff;
  font-weight: 500; font-size: .95rem; display: inline-flex; flex-direction: column; align-items: center; gap: .1rem; min-width: 72px;
  transition: border-color .15s, background .15s;
}
.opt .sub { font-size: .8rem; color: var(--ink-3); font-weight: 500; }
.opt:hover { border-color: var(--ink-3); }
.opt.sel { border-color: var(--pink); background: var(--blush); color: var(--ink); }
.opt.sel .sub { color: var(--pink-2); }
.opts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: .5rem; }
.opts-grid .opt { min-width: 0; }
.stepper { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: var(--r-pill); overflow: hidden; }
.stepper button { width: 40px; height: 40px; border: 0; background: #fff; cursor: pointer; font-size: 1.2rem; color: var(--ink); }
.stepper button:hover { background: var(--lilac); }
.stepper output { min-width: 44px; text-align: center; font-weight: 600; color: var(--ink); }

/* ---------- Sections ---------- */
.section { padding: clamp(3rem, 6vw, 5.5rem) 0; }
.section-tint { background: var(--lilac); }
.section-dark { background: var(--ink); color: #D9CFE0; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark strong { color: #fff; }
.section-head { max-width: 44em; margin-bottom: 2.25rem; }
.section-head p { font-size: 1.1rem; margin: 0; }
.section-head.center { text-align: center; margin-inline: auto; }

/* Trust strip */
.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 1.5rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust div { display: flex; gap: .8rem; align-items: center; }
.trust svg { width: 30px; height: 30px; color: var(--pink); flex: none; }
.trust b { display: block; color: var(--ink); font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; letter-spacing: -.01em; line-height: 1.1; }
.trust span { font-size: .9rem; color: var(--ink-3); }

/* Service tiles */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.tile {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; color: inherit; transition: border-color .18s, transform .25s var(--ease);
}
.tile:hover { text-decoration: none; border-color: var(--ink-3); transform: translateY(-3px); }
.tile figure { margin: 0; aspect-ratio: 16/10; background: var(--lilac); overflow: hidden; }
.tile figure img { width: 100%; height: 100%; object-fit: cover; }
.tile .body { padding: 1.2rem 1.3rem 1.3rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.tile h3 { margin: 0; font-size: 1.2rem; }
.tile p { margin: 0; color: var(--ink-2); font-size: .97rem; }
.tile .from { margin-top: auto; padding-top: .8rem; font-weight: 600; color: var(--ink); display: flex; justify-content: space-between; align-items: center; }
.tile .from span { color: var(--pink-2); font-size: .95rem; }

/* How it works (real sequence — numbered) */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.step { display: flex; flex-direction: column; gap: .5rem; }
.step figure { margin: 0 0 .5rem; background: var(--lilac); border-radius: var(--r-lg); aspect-ratio: 4/3; display: grid; place-items: center; overflow: hidden; }
.step figure img { width: 78%; height: 78%; object-fit: contain; mix-blend-mode: multiply; }
.step .num { display: inline-grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: var(--ink); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: .95rem; }
.step h3 { margin: 0; }
.step p { margin: 0; }

/* Checklist / included */
.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.ticks li { display: flex; gap: .6rem; align-items: flex-start; }
.ticks li::before { content: ""; flex: none; width: 22px; height: 22px; margin-top: 2px; border-radius: 50%; background: var(--mint-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%2316806A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 10.5l3.2 3L15 7'/%3E%3C/svg%3E") center/14px no-repeat; }
.section-dark .ticks li::before { background-color: rgba(255,255,255,.12); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%2367E3C4' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 10.5l3.2 3L15 7'/%3E%3C/svg%3E"); }
.ticks-2 { grid-template-columns: 1fr 1fr; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split figure { margin: 0; border-radius: var(--r-lg); overflow: hidden; }
.split figure img { width: 100%; height: 100%; object-fit: cover; }

/* Guarantee band */
.guarantee { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.guarantee-badge { border: 1px solid rgba(255,255,255,.18); border-radius: var(--r-lg); padding: 1.75rem; background: rgba(255,255,255,.05); }
.guarantee-badge .big { font-family: var(--font-display); font-size: 3.4rem; font-weight: 800; color: #fff; letter-spacing: -.03em; line-height: 1; }
.guarantee-badge p { margin: .5rem 0 0; }

/* Reviews */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.4rem; display: flex; flex-direction: column; gap: .6rem; }
.review p { margin: 0; color: var(--ink-2); }
.review .who { font-weight: 600; color: var(--ink); font-size: .95rem; }
.review .who span { display: block; font-weight: 400; color: var(--ink-3); font-size: .85rem; }

/* Areas */
.areas { display: flex; flex-wrap: wrap; gap: .5rem; }
.areas span { border: 1px solid var(--line); background: #fff; border-radius: var(--r-pill); padding: .4rem .9rem; font-size: .92rem; font-weight: 500; color: var(--ink); }

/* Recruit strip */
.recruit { background: var(--blush); border-radius: var(--r-lg); padding: clamp(1.5rem, 3vw, 2.5rem); display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: center; }
.recruit h2 { font-size: 1.6rem; margin-bottom: .25rem; }
.recruit p { margin: 0; }

/* FAQ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; padding: 1.1rem 2.2rem 1.1rem 0; font-weight: 600; color: var(--ink); font-size: 1.05rem; list-style: none; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: .25rem; top: 50%; transform: translateY(-50%); font-family: var(--font-display); font-size: 1.5rem; color: var(--pink); font-weight: 500; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0 0 1.2rem; max-width: 66ch; }

/* Page hero (inner pages) */
.page-hero { padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(1.5rem, 3vw, 2.5rem); }
.page-hero .lead { margin-top: .5rem; }
.crumbs { font-size: .9rem; color: var(--ink-3); margin-bottom: 1rem; }
.crumbs a { color: var(--ink-3); }
.service-hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.service-hero figure { margin: 0; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3; }
.service-hero figure img { width: 100%; height: 100%; object-fit: cover; }
.price-tag { display: inline-flex; align-items: baseline; gap: .4rem; background: var(--blush); color: var(--ink); border-radius: var(--r-pill); padding: .45rem 1rem; font-weight: 600; margin-bottom: 1rem; }
.price-tag b { font-family: var(--font-display); font-size: 1.25rem; color: var(--pink-2); }

/* Price tables */
.price-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.price-table th, .price-table td { padding: .9rem 1rem; text-align: left; border-bottom: 1px solid var(--line); }
.price-table th { background: var(--lilac); color: var(--ink); font-weight: 600; font-size: .92rem; }
.price-table tr:last-child td { border-bottom: 0; }
.price-table td:last-child, .price-table th:last-child { text-align: right; font-weight: 600; color: var(--ink); }
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
.price-card h3 { margin: 0; }
.price-card .from { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--ink); letter-spacing: -.03em; }
.price-card .from small { font-family: var(--font-body); font-size: .9rem; color: var(--ink-3); font-weight: 500; letter-spacing: 0; }
.price-card .btn { margin-top: auto; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 3rem; }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.contact-list li { display: flex; gap: .9rem; align-items: flex-start; }
.contact-list svg { width: 24px; height: 24px; color: var(--pink); flex: none; margin-top: 2px; }
.contact-list b { display: block; color: var(--ink); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.6rem; }

/* Gallery */
.gallery { columns: 3; column-gap: 1rem; }
.gallery figure { margin: 0 0 1rem; break-inside: avoid; border-radius: var(--r-md); overflow: hidden; background: var(--lilac); }
.gallery figcaption { padding: .6rem .8rem; font-size: .88rem; color: var(--ink-3); }

/* Footer */
.site-footer { background: var(--ink); color: #C9BDD1; padding: 3.5rem 0 2rem; margin-top: clamp(3rem, 6vw, 5rem); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-weight: 600; font-size: .95rem; margin-bottom: .8rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .45rem; }
.site-footer a { color: #C9BDD1; }
.site-footer a:hover { color: #fff; }
.site-footer .brand { color: #fff; }
.site-footer .brand small { color: #A99BB3; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.5rem; padding-top: 1.25rem; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; font-size: .88rem; color: #A99BB3; }

/* Mobile sticky call/book bar */
.mobile-bar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; background: #fff; border-top: 1px solid var(--line); padding: .6rem .9rem; gap: .6rem; }
.mobile-bar .btn { flex: 1; }

/* ---------- Booking page ---------- */
.book-layout { display: grid; grid-template-columns: 1fr 380px; gap: 2.5rem; align-items: start; }
.book-step { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.6rem; margin-bottom: 1.25rem; }
.book-step h2 { font-size: 1.35rem; display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.book-step h2 .num { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--ink); color: #fff; font-size: .9rem; font-family: var(--font-display); }
.summary { position: sticky; top: 90px; background: var(--ink); color: #D9CFE0; border-radius: var(--r-lg); padding: 1.5rem; }
.summary h3 { color: #fff; font-size: 1.15rem; margin-bottom: .8rem; }
.summary dl { display: grid; grid-template-columns: auto 1fr; gap: .35rem 1rem; margin: 0 0 1rem; font-size: .95rem; }
.summary dt { color: #A99BB3; }
.summary dd { margin: 0; color: #fff; text-align: right; }
.summary .total { display: flex; justify-content: space-between; align-items: baseline; border-top: 1px solid rgba(255,255,255,.14); padding-top: .9rem; }
.summary .total b { font-family: var(--font-display); font-size: 2rem; color: #fff; letter-spacing: -.03em; }
.summary .fine { font-size: .82rem; color: #A99BB3; margin: .8rem 0 0; }
.service-pick { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; }
.service-pick .opt { align-items: flex-start; text-align: left; padding: .8rem .9rem; }
.service-pick .opt b { font-weight: 600; color: inherit; }
.slot-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: .5rem; }
.extra-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-bottom: 1px solid var(--line); }
.extra-row:last-child { border-bottom: 0; }
.extra-row .name { font-weight: 500; color: var(--ink); }
.extra-row .price { color: var(--ink-3); font-size: .9rem; }
.included-box { background: var(--mint-2); border-radius: var(--r-md); padding: 1rem 1.1rem; color: var(--mint); font-size: .95rem; margin-top: 1rem; }
.included-box b { color: var(--mint); }
.pay-opts { display: grid; gap: .6rem; }
.pay-opts .opt { align-items: flex-start; text-align: left; }
.done-box { text-align: center; padding: 3rem 1rem; }
.done-box .tick { width: 76px; height: 76px; border-radius: 50%; background: var(--mint-2); display: grid; place-items: center; margin: 0 auto 1.25rem; }
.done-box .tick svg { width: 38px; height: 38px; color: var(--mint); }

/* ---------- Auth / account pages ---------- */
.auth-box { max-width: 460px; margin: 3rem auto; }
.tabs { display: flex; gap: .3rem; border: 1px solid var(--line); border-radius: var(--r-pill); padding: .25rem; margin-bottom: 1.5rem; }
.tabs button { flex: 1; border: 0; background: transparent; border-radius: var(--r-pill); padding: .6rem; font-weight: 600; cursor: pointer; color: var(--ink-3); }
.tabs button.active { background: var(--ink); color: #fff; }
.status { display: inline-block; padding: .2rem .6rem; border-radius: var(--r-pill); font-size: .8rem; font-weight: 600; text-transform: capitalize; }
.status.pending, .status.new { background: var(--amber-2); color: var(--amber); }
.status.confirmed, .status.approved, .status.replied { background: #E7F0FE; color: #1D4ED8; }
.status.assigned, .status.in_progress { background: var(--blush); color: var(--pink-2); }
.status.completed, .status.active, .status.paid, .status.resolved { background: var(--mint-2); color: var(--mint); }
.status.cancelled, .status.rejected, .status.unpaid, .status.open, .status.disabled { background: var(--red-2); color: var(--red); }
.job { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.25rem 1.4rem; display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center; margin-bottom: 1rem; }
.job h3 { margin: 0 0 .2rem; font-size: 1.1rem; }
.job .meta { font-size: .92rem; color: var(--ink-3); }
.job .meta b { color: var(--ink); font-weight: 600; }
.job .actions { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: flex-end; }
.empty { text-align: center; padding: 3rem 1rem; color: var(--ink-3); border: 1px dashed var(--line); border-radius: var(--r-lg); }

/* Chat widget */
.chat-fab { position: fixed; right: 18px; bottom: 18px; z-index: 45; width: 56px; height: 56px; border-radius: 50%; border: 0; background: var(--ink); color: #fff; cursor: pointer; display: none; place-items: center; box-shadow: var(--shadow-card); }
.chat-fab svg { width: 26px; height: 26px; }
.chat-panel { position: fixed; right: 18px; bottom: 84px; z-index: 46; width: min(380px, calc(100vw - 36px)); height: min(560px, calc(100vh - 120px)); background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-card); display: none; flex-direction: column; overflow: hidden; }
.chat-panel.open { display: flex; }
.chat-head { background: var(--ink); color: #fff; padding: .9rem 1rem; display: flex; align-items: center; justify-content: space-between; }
.chat-head b { font-family: var(--font-display); }
.chat-head span { font-size: .8rem; color: #C9BDD1; display: block; }
.chat-head button { background: none; border: 0; color: #fff; font-size: 1.3rem; cursor: pointer; }
.chat-log { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: .6rem; background: var(--lilac); }
.msg { max-width: 85%; padding: .6rem .8rem; border-radius: 14px; font-size: .94rem; line-height: 1.45; white-space: pre-wrap; }
.msg.bot { background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 4px; align-self: flex-start; }
.msg.me { background: var(--pink); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
.chat-form { display: flex; gap: .5rem; padding: .7rem; border-top: 1px solid var(--line); }
.chat-form input { flex: 1; min-height: 42px; }
.chat-form button { padding: .5rem .9rem; }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0 !important; } .mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0 !important; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }
.center { text-align: center; }
.flex { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; }
.between { justify-content: space-between; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.hide { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .quote-card { max-width: 560px; }
  .services-grid, .reviews, .price-cards, .steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .book-layout { grid-template-columns: 1fr; }
  .summary { position: static; }
  .gallery { columns: 2; }
}
@media (max-width: 1100px) {
  .nav-links a, .nav-links summary { padding-inline: .5rem; font-size: .95rem; }
  .nav-phone span { display: none; }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open .nav-links { display: flex; flex-direction: column; align-items: stretch; position: absolute; left: 0; right: 0; top: 100%; background: #fff; border-bottom: 1px solid var(--line); padding: .75rem 1.25rem 1rem; gap: .1rem; box-shadow: var(--shadow-card); }
  .nav.open .nav-links a, .nav.open .nav-links summary { padding: .7rem .6rem; }
  .nav.open .dropdown { position: static; box-shadow: none; border: 0; padding: 0 0 .25rem .75rem; }
  .nav-phone span { display: none; }
  .trust { grid-template-columns: 1fr 1fr; }
  .split, .guarantee, .contact-grid, .service-hero, .grid-2, .grid-3, .row-2, .row-3 { grid-template-columns: 1fr; }
  .recruit { grid-template-columns: 1fr; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 70px; }
  .service-pick { grid-template-columns: 1fr 1fr; }
  .slot-grid { grid-template-columns: repeat(3, 1fr); }
  .ticks-2 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .services-grid, .reviews, .price-cards, .steps, .footer-grid { grid-template-columns: 1fr; }
  .trust { grid-template-columns: 1fr 1fr; }
  .hero-actions .btn { width: 100%; }
  .gallery { columns: 1; }
  .service-pick { grid-template-columns: 1fr; }
  .quote-card { padding: 1.2rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .hero-anim > * { opacity: 1; transform: none; }
}
@media print { .site-header, .announce, .mobile-bar, .chat-fab, .chat-panel, .site-footer { display: none !important; } }
