/* ==========================================================================
   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 (deeper, for text contrast) */
  --pink-2: #B81A69;     /* action hover */
  --pink-brand: #F5559B; /* the exact pink in the logo */
  --logo-ink: #373435;   /* the charcoal in the logo */
  --grad-brand: linear-gradient(120deg, #D8267F 0%, #F5559B 100%);
  --grad-brand-soft: linear-gradient(120deg, rgba(216,38,127,.10), rgba(245,85,155,.10));
  --glow-pink: 0 14px 34px -12px rgba(216,38,127,.55);
  --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-logo { height: 44px; width: auto; display: block; }
.brand-footer .brand-logo { height: 62px; }
@media (max-width: 1100px) { .brand-logo { height: 38px; } }
@media (max-width: 420px) { .brand-logo { height: 32px; } }
.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; } }

/* =====================================================================
   BRAND GRAPHICS LAYER
   Modern touches built from the logo: brand gradient, glow, the logo's
   four-point sparkle, aurora backdrops and richer image treatments.
   Everything here degrades gracefully and respects reduced motion.
   ===================================================================== */

/* ---------- Gradient brand accents ---------- */
.grad-text {
  background: linear-gradient(96deg, #B81A69 0%, #D8267F 35%, #F5559B 100%); -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.btn-primary {
  background: var(--grad-brand); box-shadow: var(--glow-pink);
  transition: background .18s var(--ease), box-shadow .25s var(--ease), transform .18s var(--ease);
}
.btn-primary:hover { background: linear-gradient(120deg, #B81A69 0%, #E8408A 100%); box-shadow: 0 18px 40px -12px rgba(216,38,127,.7); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(1px); }
.announce { background: linear-gradient(100deg, #2A1433 0%, #46203F 55%, #6B1E4B 100%); }

/* ---------- The logo's four-point sparkle, reusable ---------- */
.sparkle { width: 1em; height: 1em; fill: currentColor; flex: none; }
.spark-deco { position: absolute; fill: var(--pink-brand); color: var(--pink-brand); opacity: .5; pointer-events: none; z-index: 0; }
.spark-deco.s1 { width: 46px; height: 46px; }
.spark-deco.s2 { width: 26px; height: 26px; opacity: .4; }
.spark-deco.s3 { width: 16px; height: 16px; opacity: .3; }
@media (prefers-reduced-motion: no-preference) {
  .spark-deco { animation: twinkle 4.5s var(--ease) infinite; }
  .spark-deco.s2 { animation-delay: 1.2s; } .spark-deco.s3 { animation-delay: 2.4s; }
  @keyframes twinkle { 0%,100% { opacity: .18; transform: scale(.86) rotate(0deg); } 50% { opacity: .6; transform: scale(1) rotate(12deg); } }
}

/* ---------- Aurora backdrop for the hero ---------- */
.hero::before {
  background:
    radial-gradient(760px 380px at 84% -12%, rgba(245,85,155,.22) 0%, rgba(245,85,155,0) 68%),
    radial-gradient(620px 340px at 8% 104%, rgba(216,38,127,.14) 0%, rgba(216,38,127,0) 70%),
    radial-gradient(900px 500px at 50% -30%, #FDF3F8 0%, rgba(253,243,248,0) 72%),
    linear-gradient(180deg, #FFFFFF 0%, #FBF8FD 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: radial-gradient(rgba(42,20,51,.055) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(680px 420px at 78% 8%, #000 0%, transparent 72%);
  mask-image: radial-gradient(680px 420px at 78% 8%, #000 0%, transparent 72%);
}

/* ---------- Photos: brand ring, soft glow, gentle zoom ---------- */
.hero-photo, .tile figure, .gallery figure, .service-hero img, .split img {
  position: relative;
}
.hero-photo {
  box-shadow: 0 30px 60px -30px rgba(42,20,51,.45), 0 0 0 1px rgba(216,38,127,.10);
}
.hero-photo::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(180deg, rgba(42,20,51,0) 55%, rgba(42,20,51,.22) 100%);
}
.tile img, .gallery img { transition: transform .5s var(--ease); }
.tile:hover img, .gallery figure:hover img { transform: scale(1.045); }

/* ---------- Cards: hairline brand border on hover, softer lift ---------- */
.card, .tile, .review, .price-card, .job {
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.card:hover, .tile:hover, .price-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 50px -28px rgba(42,20,51,.4);
  border-color: rgba(216,38,127,.28);
}
.quote-card {
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--grad-brand) border-box;
  border: 2px solid transparent;
  box-shadow: 0 34px 70px -34px rgba(42,20,51,.5);
}
.quote-card::before {
  content: ""; position: absolute; inset: -22px -18px auto auto; width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(245,85,155,.30) 0%, rgba(245,85,155,0) 70%);
  border-radius: 50%; pointer-events: none;
}
.quote-total .price { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }

/* ---------- Dark sections get the same aurora ---------- */
.section-dark, .guarantee { position: relative; overflow: hidden; }
.section-dark::before, .guarantee::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(620px 320px at 88% 0%, rgba(245,85,155,.28) 0%, rgba(245,85,155,0) 68%),
    radial-gradient(520px 300px at 4% 100%, rgba(216,38,127,.22) 0%, rgba(216,38,127,0) 70%);
}
.section-dark > *, .guarantee > * { position: relative; z-index: 1; }

/* ---------- Trust strip and section tints ---------- */
.section-tint { background: linear-gradient(180deg, var(--lilac) 0%, #FDF7FA 100%); }

/* ---------- Chat bubble and floating actions ---------- */
.chat-fab { background: var(--grad-brand); box-shadow: var(--glow-pink); }

/* ---------- Branded loading / empty states ---------- */
.empty { background-image: var(--grad-brand-soft); }

@media (prefers-reduced-motion: reduce) {
  .card:hover, .tile:hover, .price-card:hover, .btn-primary:hover { transform: none; }
  .tile:hover img, .gallery figure:hover img { transform: none; }
}

/* ---------- Small-screen overflow guards ---------- */
.hero-grid > * { min-width: 0; }
@media (max-width: 560px) {
  .quote-total { flex-wrap: wrap; }
  .quote-total .btn { width: 100%; }
  .quote-total .price { font-size: 2rem; }
}

/* =====================================================================
   HOMEPAGE 2.0 — badge, chips, stat band, 4-step flow, standards split,
   photo strip, review avatars, closing CTA band
   ===================================================================== */

.eyebrow {
  display: inline-block; font-size: .82rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--pink-2); margin-bottom: .5rem;
}
.section-head .eyebrow { margin-bottom: .35rem; }
.center { text-align: center; }

/* Hero badge pill */
.badge-pill {
  display: inline-flex; align-items: center; gap: .5rem; padding: .45rem .9rem .45rem .7rem;
  border-radius: var(--r-pill); background: #fff; border: 1px solid var(--line);
  box-shadow: 0 6px 18px -12px rgba(42,20,51,.5);
  font-size: .88rem; font-weight: 600; color: var(--ink-2); margin-bottom: 1.1rem;
}
.badge-pill svg { width: 17px; height: 17px; color: var(--mint); flex: none; }

/* Service chips under the hero */
.chip-row {
  display: flex; flex-wrap: nowrap; gap: .5rem; margin-top: 2.5rem; padding-bottom: .5rem;
  overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.chip-row::-webkit-scrollbar { display: none; }
.chip-row a {
  flex: none; padding: .5rem 1rem; border-radius: var(--r-pill); background: #fff;
  border: 1px solid var(--line); color: var(--ink-2); font-size: .9rem; font-weight: 500; white-space: nowrap;
}
.chip-row a:hover { border-color: var(--pink); color: var(--pink-2); text-decoration: none; }

/* Stat band */
.stat-band {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; margin-top: .5rem;
}
.stat-band > div { background: #fff; padding: 1.4rem 1.25rem; text-align: center; }
.stat-band b {
  display: block; font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.05;
  background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
}
.stat-band span { display: block; margin-top: .3rem; color: var(--ink-3); font-size: .9rem; }

/* Price chip on service photos */
.tile figure { position: relative; }
.price-chip {
  position: absolute; left: .75rem; bottom: .75rem; z-index: 2;
  background: rgba(255,255,255,.94); backdrop-filter: blur(6px);
  border-radius: var(--r-pill); padding: .35rem .75rem; font-size: .82rem; color: var(--ink-3);
  box-shadow: 0 6px 18px -10px rgba(42,20,51,.6);
}
.price-chip b { color: var(--ink); font-weight: 700; }
.tile-link { display: inline-flex; align-items: center; gap: .25rem; margin-top: .9rem; color: var(--pink-2); font-weight: 600; font-size: .92rem; }
.tile-link svg { width: 14px; height: 14px; transform: rotate(-90deg); transition: transform .2s var(--ease); }
.tile:hover .tile-link svg { transform: rotate(-90deg) translateY(-3px); }

/* How it works — four steps */
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.how-step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.5rem 1.35rem;
  position: relative; transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s;
}
.how-step:hover { transform: translateY(-3px); box-shadow: 0 26px 50px -30px rgba(42,20,51,.4); border-color: rgba(216,38,127,.28); }
.how-step .num {
  display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px;
  border-radius: 50%; background: var(--grad-brand); color: #fff; font-family: var(--font-display);
  font-weight: 800; font-size: 1.1rem; margin-bottom: .9rem; box-shadow: var(--glow-pink);
}
.how-step h3 { font-size: 1.08rem; margin-bottom: .4rem; }
.how-step p { color: var(--ink-3); font-size: .95rem; margin: 0; }

/* The standard — photo + checklist */
.standard { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.standard > * { min-width: 0; }
.standard-photo { margin: 0; border-radius: var(--r-lg); overflow: hidden; position: relative; box-shadow: 0 34px 70px -34px rgba(42,20,51,.55); }
.standard-photo img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4/3; }
.standard-photo::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(216,38,127,.16);
}
.standard .ticks li b { color: var(--ink); }

/* Photo strip (branded marquee) */
.photo-strip { overflow: hidden; padding: .5rem 0 2.5rem; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.photo-track { display: flex; gap: .9rem; width: max-content; animation: strip 60s linear infinite; }
.photo-track figure { margin: 0; flex: none; width: 240px; height: 160px; border-radius: var(--r-md); overflow: hidden; }
.photo-track img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes strip { to { transform: translateX(-50%); } }
.photo-strip:hover .photo-track { animation-play-state: paused; }

/* Review avatars */
.review .who { display: flex; align-items: center; gap: .7rem; }
.review .who > .avatar {
  display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; flex: none;
  border-radius: 50%; background: var(--grad-brand); color: #fff; font-weight: 700; font-size: .85rem; letter-spacing: .02em;
}
.review .who > div { min-width: 0; }

/* Closing CTA band */
.cta-band {
  position: relative; overflow: hidden; margin-top: 1rem;
  background: linear-gradient(115deg, #2A1433 0%, #5C1C46 55%, #B81A69 100%);
  color: #fff; padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 340px at 82% 10%, rgba(245,85,155,.35) 0%, rgba(245,85,155,0) 70%);
}
.cta-inner { position: relative; z-index: 1; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; }
.cta-inner h2 { color: #fff; margin-bottom: .35rem; }
.cta-inner p { color: #E6D8EC; margin: 0; max-width: 46ch; }
.cta-form { display: flex; gap: .6rem; flex-wrap: wrap; }
.cta-form .input { min-width: 190px; background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.3); color: #fff; }
.cta-form .input::placeholder { color: rgba(255,255,255,.7); }
.cta-form .input:focus { background: rgba(255,255,255,.2); border-color: #fff; }

@media (max-width: 1024px) {
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .standard { grid-template-columns: 1fr; }
  .standard-photo { order: 2; }
}
@media (max-width: 720px) {
  .stat-band { grid-template-columns: repeat(2, 1fr); }
  .photo-track figure { width: 180px; height: 124px; }
}
@media (max-width: 480px) {
  .how-grid { grid-template-columns: 1fr; }
  .cta-form { width: 100%; }
  .cta-form .input, .cta-form .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .photo-track { animation: none; }
  .how-step:hover { transform: none; }
}

/* Rich checklist items: the whole sentence sits in one span so the bold
   lead-in flows inline next to the tick instead of becoming its own column. */
.ticks-rich li > span { display: block; }
.ticks-rich li b { color: var(--ink); }

/* Step rows with more than three items — collapse properly on small screens */
.steps-4 { grid-template-columns: repeat(4, 1fr); }
.steps-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1024px) { .steps-4, .steps-5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps-4, .steps-5 { grid-template-columns: 1fr; } }

/* =====================================================================
   RESPONSIVE POLISH — small phones (320px) through to large desktops
   ===================================================================== */

/* Price tables: tighten padding on small phones so they never spill out */
@media (max-width: 420px) {
  .price-table th, .price-table td { padding: .7rem .55rem; font-size: .92rem; }
  .price-table th { font-size: .82rem; }
}
@media (max-width: 340px) {
  .price-table th, .price-table td { padding: .6rem .4rem; font-size: .85rem; }
}

/* Tablets in portrait (768–1024): two columns read better than three */
@media (min-width: 721px) and (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: repeat(2, 1fr); }
  .reviews .review:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .stat-band { grid-template-columns: repeat(4, 1fr); }
  .photo-track figure { width: 210px; height: 145px; }
}

/* Big screens: stop the wrap growing forever and keep line length readable */
@media (min-width: 1600px) {
  .wrap { max-width: 1320px; }
  .hero-grid { gap: 5.5rem; }
  .lead { max-width: 62ch; }
}

/* Landscape phones: the hero should not need three screens of scrolling */
@media (max-height: 520px) and (orientation: landscape) {
  .hero { padding-block: 2rem; }
  .announce { display: none; }
}

/* Label/value lists (cleaner profile, booking summaries): the value must be
   allowed to wrap, and on narrow phones the label sits above it. */
.kv-list { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: .4rem 1rem; margin: 0; font-size: .95rem; }
.kv-list dt { color: var(--ink-3); }
.kv-list dd { margin: 0; min-width: 0; overflow-wrap: anywhere; }
@media (max-width: 400px) {
  .kv-list { grid-template-columns: 1fr; gap: .1rem; }
  .kv-list dt { margin-top: .5rem; font-size: .82rem; }
}
.summary dl dd, .summary dl dt { min-width: 0; overflow-wrap: anywhere; }

/* On tablets the hero stacks, so let the price card use the full column
   width instead of sitting in a narrow strip with empty space beside it. */
@media (min-width: 640px) and (max-width: 1024px) {
  .quote-card { max-width: none; }
  .hero-grid { gap: 2.5rem; }
}

/* =====================================================================
   HOMEPAGE — brand ticker, uniform showcase, twin photo marquee
   ===================================================================== */

/* ---------- Scrolling brand ticker ---------- */
.ticker {
  overflow: hidden; background: var(--grad-brand); color: #fff;
  padding: .8rem 0; margin: 0; position: relative;
}
.ticker::before, .ticker::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(90deg, #D8267F, rgba(216,38,127,0)); }
.ticker::after { right: 0; background: linear-gradient(270deg, #F5559B, rgba(245,85,155,0)); }
.ticker-track {
  display: flex; align-items: center; gap: 1.1rem; width: max-content;
  animation: ticker-run 42s linear infinite;
}
.ticker-track span {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(.95rem, 1.6vw, 1.15rem);
  letter-spacing: -.01em; white-space: nowrap;
}
.tick-star { width: 14px; height: 14px; fill: rgba(255,255,255,.65); flex: none; }
@keyframes ticker-run { to { transform: translateX(-50%); } }
.ticker:hover .ticker-track { animation-play-state: paused; }

/* ---------- Uniform showcase ---------- */
.showcase-section { position: relative; }
.showcase { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.showcase > * { min-width: 0; }
.showcase-photo {
  position: relative; margin: 0; border-radius: var(--r-lg); overflow: visible;
}
.showcase-photo img {
  width: 100%; height: auto; display: block; border-radius: var(--r-lg);
  box-shadow: 0 34px 70px -34px rgba(42,20,51,.55), 0 0 0 1px rgba(216,38,127,.12);
}
.showcase-photo::before {
  content: ""; position: absolute; inset: -18px -18px auto auto; width: 190px; height: 190px; z-index: -1;
  background: radial-gradient(circle, rgba(245,85,155,.35) 0%, rgba(245,85,155,0) 70%); border-radius: 50%;
}
.photo-badge {
  position: absolute; background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
  border-radius: var(--r-md); padding: .6rem .9rem; font-size: .88rem; font-weight: 600; color: var(--ink);
  box-shadow: 0 18px 36px -18px rgba(42,20,51,.55); display: flex; align-items: center; gap: .45rem;
}
.photo-badge svg { width: 18px; height: 18px; color: var(--mint); flex: none; }
.photo-badge small { font-weight: 500; color: var(--ink-3); }
.photo-badge-1 { left: -14px; bottom: 16%; }
.photo-badge-2 { right: -14px; top: 12%; display: block; text-align: center; line-height: 1.25; }
.photo-badge-2 b { font-family: var(--font-display); font-size: 1.3rem; }
.photo-badge-2 .stars { color: #F2A900; font-size: .8rem; letter-spacing: .04em; }

/* ---------- Twin photo marquee ---------- */
.photo-strip .photo-track + .photo-track { margin-top: .9rem; }
.photo-track.reverse { animation-direction: reverse; animation-duration: 72s; }

@media (max-width: 900px) {
  .showcase { grid-template-columns: 1fr; }
  .showcase-photo { order: -1; }
  .photo-badge-1 { left: 8px; } .photo-badge-2 { right: 8px; }
}
@media (max-width: 520px) {
  .photo-badge { font-size: .8rem; padding: .45rem .7rem; }
  .photo-badge-2 b { font-size: 1.1rem; }
  .ticker { padding: .6rem 0; }
  .photo-strip .photo-track.reverse { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}


/* =====================================================================
   FAIL-SAFES — these keep the page sane even if a browser is holding on
   to an old cached stylesheet or an image loads before the CSS does.
   ===================================================================== */
img.brand-logo { max-height: 56px; width: auto; }
svg { max-width: 48px; max-height: 48px; }        /* icons can never balloon */
.hero svg.spark-deco { position: absolute; }

/* Notice shown on the sign-up form when someone else is still signed in */
.notice-inline {
  background: var(--amber-2); color: var(--amber); border-radius: var(--r-md);
  padding: 1rem 1.15rem; margin-bottom: 1.25rem; font-size: .95rem;
}
.notice-inline p { margin: 0 0 .6rem; }
.notice-inline p:last-child { margin-bottom: 0; }
.notice-inline strong { color: var(--ink); }

/* ---------- Area pages ---------- */
.crumbs { font-size: .88rem; color: var(--ink-3); margin-bottom: 1rem; }
.crumbs a { color: var(--pink-2); }
.hero-slim { padding-block: clamp(2rem, 5vw, 3.5rem); }
.hero-slim h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
.hero-slim .lead { max-width: 62ch; }
.area-index { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }
.area-group h3 { font-size: 1.6rem; color: var(--pink); margin: 0 0 .4rem; font-family: var(--font-display); }
.area-group ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .35rem; }
.area-group a { font-weight: 600; }

/* ---------- Google Ads landing pages ---------- */
body.landing { background: #fff; }
.lp-bar { border-bottom: 1px solid var(--line); padding: .7rem 0; position: sticky; top: 0; background: rgba(255,255,255,.96); backdrop-filter: blur(8px); z-index: 40; }
.lp-bar-in { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.lp-bar-right { display: flex; align-items: center; gap: 1rem; }
.lp-trust { font-size: .85rem; color: var(--ink-3); display: inline-flex; align-items: center; gap: .35rem; }
.lp-hero { padding: clamp(2rem, 5vw, 3.5rem) 0; background: linear-gradient(160deg, var(--blush) 0%, #fff 60%); }
.lp-hero-in { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.lp-copy h1 { font-size: clamp(2rem, 4.6vw, 3.3rem); margin: .6rem 0 .5rem; }
.lp-ticks { margin: 1.2rem 0; }
.lp-proof { display: flex; flex-wrap: wrap; gap: 1.2rem; font-size: .9rem; color: var(--ink-3); }
.lp-calc { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.5rem; box-shadow: 0 26px 60px -35px rgba(42,20,51,.5); position: sticky; top: 84px; }
.lp-calc h2 { font-size: 1.25rem; margin: 0 0 1rem; }
.lp-field { display: block; margin-bottom: .8rem; }
.lp-field span { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .25rem; }
.lp-field select, .lp-field input {
  width: 100%; padding: .75rem .9rem; border: 1px solid var(--line); border-radius: var(--r-md);
  font: inherit; background: #fff; color: var(--ink);
}
.lp-field select:focus, .lp-field input:focus { outline: 2px solid var(--pink); border-color: var(--pink); }
.lp-total { background: var(--lilac); border-radius: var(--r-md); padding: 1rem; text-align: center; margin: 1rem 0; }
.lp-total span { display: block; font-size: .8rem; color: var(--ink-3); text-transform: uppercase; letter-spacing: .05em; }
.lp-total b { display: block; font-family: var(--font-display); font-size: 2.4rem; color: var(--pink-2); line-height: 1.1; }
.lp-total small { display: block; font-size: .82rem; color: var(--ink-3); margin-top: .2rem; }
.lp-go { width: 100%; text-align: center; }
.lp-small { text-align: center; font-size: .8rem; color: var(--ink-3); margin: .6rem 0 0; }
.lp-usps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.lp-usp { border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.2rem 1.4rem; }
.lp-usp h3 { margin: 0 0 .3rem; font-size: 1.05rem; }
.lp-usp p { margin: 0; color: var(--ink-3); font-size: .93rem; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.step b { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
  background: var(--grad-brand); color: #fff; font-family: var(--font-display); margin-bottom: .5rem; }
.step h3 { margin: 0 0 .2rem; font-size: 1.05rem; }
.step p { margin: 0; color: var(--ink-3); font-size: .93rem; }
.lp-foot { border-top: 1px solid var(--line); padding: 1.5rem 0 5rem; font-size: .9rem; }
.lp-foot a { margin-right: .8rem; }
.btn-outline-light { border: 1px solid rgba(255,255,255,.6); color: #fff; }
.lp-sticky { display: none; }
@media (max-width: 900px) {
  .lp-hero-in, .lp-usps, .steps { grid-template-columns: 1fr; }
  .lp-calc { position: static; }
  .lp-bar-right .lp-trust { display: none; }
  .lp-sticky {
    display: flex; gap: .5rem; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    background: rgba(255,255,255,.97); border-top: 1px solid var(--line); padding: .6rem .8rem;
    backdrop-filter: blur(8px);
  }
  .lp-sticky .btn { flex: 1; text-align: center; }
}

/* ---------- Landing calculator, tables and reviews ---------- */
.lp-calc-sub { font-size: .85rem; color: var(--ink-3); margin: -.5rem 0 1rem; }
.lp-group { margin-bottom: .9rem; }
.lp-group > label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: .35rem; }
.lp-group small { display: block; font-size: .78rem; color: var(--ink-3); margin-top: .25rem; }
.lp-row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.lp-chips { display: flex; flex-wrap: wrap; gap: .35rem; }
.lp-chip { border: 1px solid var(--line); background: #fff; color: var(--ink-3); font: inherit; font-size: .85rem;
  padding: .45rem .8rem; border-radius: var(--r-pill); cursor: pointer; transition: all .15s; }
.lp-chip:hover { border-color: var(--pink); color: var(--pink-2); }
.lp-chip.on { background: var(--grad-brand); border-color: transparent; color: #fff; font-weight: 600; }
.lp-freq { display: grid; grid-template-columns: repeat(3, 1fr); gap: .4rem; }
.lp-freqbtn { position: relative; border: 1px solid var(--line); background: #fff; font: inherit; cursor: pointer;
  border-radius: var(--r-md); padding: .6rem .4rem; text-align: center; transition: all .15s; }
.lp-freqbtn b { display: block; font-size: .82rem; color: var(--ink); }
.lp-freqbtn span { display: block; font-size: .78rem; color: var(--ink-3); }
.lp-freqbtn em { position: absolute; top: -8px; left: 50%; transform: translateX(-50%); font-style: normal;
  background: var(--mint); color: #fff; font-size: .62rem; padding: .1rem .4rem; border-radius: var(--r-pill); white-space: nowrap; }
.lp-freqbtn.on { border-color: var(--pink); box-shadow: inset 0 0 0 1px var(--pink); }
.lp-freqbtn.on b { color: var(--pink-2); }
.lp-count { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--r-pill); overflow: hidden; }
.lp-count button { border: 0; background: #fff; font: inherit; font-size: 1.1rem; width: 38px; height: 38px; cursor: pointer; color: var(--pink-2); }
.lp-count button:hover { background: var(--blush); }
.lp-count input { border: 0; width: 42px; text-align: center; font: inherit; font-weight: 600; background: #fff; }
.lp-input { width: 100%; padding: .7rem .9rem; border: 1px solid var(--line); border-radius: var(--r-md); font: inherit; }
.lp-input:focus { outline: 2px solid var(--pink); border-color: var(--pink); }
.lp-extras { border: 1px solid var(--line); border-radius: var(--r-md); padding: .6rem .8rem; margin-bottom: .9rem; }
.lp-extras summary { cursor: pointer; font-weight: 600; font-size: .9rem; }
.lp-extras summary span { color: var(--ink-3); font-weight: 400; }
.lp-add { display: flex; align-items: center; gap: .5rem; padding: .4rem 0; font-size: .87rem; border-bottom: 1px solid var(--line); }
.lp-add:last-child { border-bottom: 0; }
.lp-add span { flex: 1; }
.lp-add b { color: var(--pink-2); white-space: nowrap; }
.lp-add-qty .lp-qty { flex: none; }
.lp-lines { border-bottom: 1px dashed var(--line); padding-bottom: .5rem; margin-bottom: .5rem; }
.lp-line { display: flex; justify-content: space-between; font-size: .84rem; color: var(--ink-3); padding: .12rem 0; gap: 1rem; }
.lp-line b { color: var(--ink); white-space: nowrap; }
.lp-grand { display: flex; justify-content: space-between; align-items: baseline; }
.lp-grand span { font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-3); }
.lp-grand b { font-family: var(--font-display); font-size: 2.2rem; color: var(--pink-2); line-height: 1.1; }
.lp-total small { display: block; text-align: right; font-size: .78rem; color: var(--ink-3); }
.lp-err { color: var(--pink-2); font-size: .9rem; }
.lp-table { width: 100%; border-collapse: collapse; }
.lp-table th { text-align: left; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em;
  color: var(--ink-3); border-bottom: 2px solid var(--line); padding: .6rem 0; }
.lp-table td { padding: .7rem 0; border-bottom: 1px solid var(--line); }
.lp-table .r { text-align: right; }
.lp-nots { list-style: none; padding: 0; margin: .5rem 0 0; }
.lp-nots li { position: relative; padding-left: 1.5rem; color: var(--ink-3); font-size: .93rem; margin-bottom: .3rem; }
.lp-nots li::before { content: "×"; position: absolute; left: .3rem; color: var(--pink); font-weight: 700; }
.lp-revs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.lp-rev { margin: 0; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.2rem 1.3rem; background: #fff; }
.lp-rev blockquote { margin: .4rem 0 .6rem; }
.lp-rev b { display: block; margin-bottom: .2rem; }
.lp-rev p { margin: 0; color: var(--ink-3); font-size: .93rem; }
.lp-rev figcaption { font-size: .82rem; color: var(--ink-3); }
.lp-where { text-align: center; }
@media (max-width: 900px) { .lp-revs { grid-template-columns: 1fr; } .lp-freq { grid-template-columns: 1fr; } }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card { display: block; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  background: #fff; text-decoration: none; color: inherit; transition: transform .18s, box-shadow .18s; }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 22px 45px -30px rgba(42,20,51,.5); text-decoration: none; }
.blog-card figure { margin: 0; aspect-ratio: 16/10; overflow: hidden; background: var(--lilac); }
.blog-card img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 1.1rem 1.2rem 1.3rem; }
.blog-card h3 { margin: .4rem 0 .35rem; font-size: 1.15rem; }
.blog-card p { margin: 0 0 .6rem; color: var(--ink-3); font-size: .93rem; }
.blog-cat { display: inline-block; background: var(--blush); color: var(--pink-2); font-size: .72rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: .2rem .6rem; border-radius: var(--r-pill); }
.blog-meta { font-size: .82rem; color: var(--ink-3); }
.blog-title { font-size: clamp(2rem, 4.5vw, 3rem); margin: .5rem 0 .4rem; }
.blog-cover { margin: 1.5rem 0; border-radius: var(--r-lg); overflow: hidden; }
.blog-cover img { width: 100%; height: auto; display: block; }
.blog-toc { background: var(--lilac); border-radius: var(--r-md); padding: 1rem 1.2rem; margin-bottom: 1.5rem; }
.blog-toc b { display: block; margin-bottom: .4rem; font-size: .9rem; }
.blog-toc ol { margin: 0; padding-left: 1.1rem; }
.blog-toc li { margin: .2rem 0; font-size: .93rem; }
.blog-body { font-size: 1.05rem; line-height: 1.75; }
.blog-body h2 { margin: 2rem 0 .6rem; font-size: 1.6rem; scroll-margin-top: 90px; }
.blog-body h3 { margin: 1.5rem 0 .4rem; font-size: 1.2rem; }
.blog-body p { margin: 0 0 1rem; }
.blog-body ul { margin: 0 0 1.2rem; padding-left: 1.2rem; }
.blog-body li { margin: .3rem 0; }
.blog-body blockquote { border-left: 4px solid var(--pink); background: var(--blush); margin: 1.4rem 0;
  padding: .9rem 1.2rem; border-radius: 0 var(--r-md) var(--r-md) 0; font-size: 1.05rem; }
.blog-body figure { margin: 1.6rem 0; }
.blog-body figure img { width: 100%; height: auto; border-radius: var(--r-md); display: block; }
.blog-body figcaption { font-size: .85rem; color: var(--ink-3); margin-top: .4rem; text-align: center; }
.blog-cta { background: var(--lilac); border-radius: var(--r-lg); padding: 1.6rem 1.8rem; margin: 2.5rem 0 0; text-align: center; }
.blog-cta h2 { margin: 0 0 .4rem; font-size: 1.4rem; }
.blog-cta p { margin: 0 0 .8rem; color: var(--ink-3); }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   UAE build — language switch, email CTA, Arabic right-to-left layout
   ===================================================================== */
.lang-switch { display: inline-flex; align-items: center; gap: .3rem; font-weight: 600; font-size: .92rem; padding: .45rem .8rem; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); text-decoration: none; white-space: nowrap; }
.lang-switch:hover { border-color: var(--pink); color: var(--pink); }
.nav-email { display: inline-flex; align-items: center; gap: .4rem; color: var(--ink); font-weight: 600; font-size: .92rem; text-decoration: none; white-space: nowrap; }
.nav-email svg { width: 18px; height: 18px; }
.legal h2 { margin-top: 2rem; font-size: 1.35rem; }
.legal h3 { margin-top: 1.2rem; font-size: 1.08rem; }
.legal p, .legal li { line-height: 1.75; }
.legal ol, .legal ul.plain { padding-inline-start: 1.3rem; }
.legal .note { background: var(--blush, #FBF1F6); border-radius: 12px; padding: .9rem 1.1rem; font-size: .95rem; }
.legal-nav { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0 0; }
.legal-nav a { font-size: .9rem; padding: .35rem .8rem; border: 1px solid var(--line); border-radius: 999px; text-decoration: none; }
.area-card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: .8rem; }
.area-card { display: block; padding: 1rem 1.1rem; border: 1px solid var(--line); border-radius: 14px; background: #fff; text-decoration: none; color: var(--ink); transition: border-color .2s, transform .2s; }
.area-card:hover { border-color: var(--pink); transform: translateY(-2px); }
.area-card b { display: block; font-family: var(--font-display); }
.area-card span { font-size: .88rem; color: var(--ink-3); }
.vat-note { font-size: .88rem; color: var(--ink-3); }

html[dir="rtl"] { --font-display: "Cairo", "IBM Plex Sans Arabic", system-ui, sans-serif; --font-body: "IBM Plex Sans Arabic", "Cairo", system-ui, -apple-system, "Segoe UI", Tahoma, sans-serif; }
html[dir="rtl"] body { font-family: var(--font-body); }
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3, html[dir="rtl"] h4, html[dir="rtl"] .brand, html[dir="rtl"] .price, html[dir="rtl"] .from { letter-spacing: 0 !important; }
html[dir="rtl"] h1 { line-height: 1.35; }
html[dir="rtl"] .skip-link { left: auto; right: -999px; }
html[dir="rtl"] .skip-link:focus { right: 8px; }
html[dir="rtl"] .nav-links { margin-left: 0; margin-right: auto; }
html[dir="rtl"] .nav-links .dropdown { left: auto; right: 0; }
html[dir="rtl"] .nav-cta { margin-left: 0; margin-right: .5rem; }
html[dir="rtl"] .nav-toggle { margin-left: 0; margin-right: auto; }
html[dir="rtl"] .quote-total .price small { margin-left: 0; margin-right: .35rem; }
html[dir="rtl"] .select { padding-right: .9rem; padding-left: 2.4rem; background-position: left .8rem center; }
html[dir="rtl"] .faq summary { padding: 1.1rem 0 1.1rem 2.2rem; }
html[dir="rtl"] .faq summary::after { right: auto; left: .25rem; }
html[dir="rtl"] .chat-fab { right: auto; left: 18px; }
html[dir="rtl"] .chat-panel { right: auto; left: 18px; }
html[dir="rtl"] .msg.bot { border-bottom-left-radius: 14px; border-bottom-right-radius: 4px; }
html[dir="rtl"] .msg.me { border-bottom-right-radius: 14px; border-bottom-left-radius: 4px; }
html[dir="rtl"] .photo-badge-1 { left: auto; right: -14px; }
html[dir="rtl"] .price-chip { left: auto; right: .75rem; }
html[dir="rtl"] .photo-badge-2 { right: auto; left: -14px; }
html[dir="rtl"] .blog-body blockquote { border-left: 0; border-right: 4px solid var(--pink); }
html[dir="rtl"] .ticker-track, html[dir="rtl"] .photo-track { direction: ltr; }
html[dir="rtl"] .tile-link svg, html[dir="rtl"] .crumbs { unicode-bidi: plaintext; }
html[dir="rtl"] input[type="email"], html[dir="rtl"] input[type="tel"] { direction: ltr; text-align: right; }
html[dir="rtl"] .ltr { direction: ltr; unicode-bidi: embed; display: inline-block; }
@media (max-width: 900px) {
  html[dir="rtl"] .photo-badge-1 { right: 8px; } html[dir="rtl"] .photo-badge-2 { right: auto; left: 8px; }
}
/* RTL: off-screen helpers must not create a horizontal scrollbar */
html[dir="rtl"] .hp { left: auto !important; right: -9999px !important; }
html[dir="rtl"] .skip-link:not(:focus) { right: auto; left: auto; clip: rect(0 0 0 0); width: 1px; height: 1px; overflow: hidden; padding: 0; }
html[dir="rtl"] body { overflow-x: hidden; }
.quote-total { flex-wrap: wrap; row-gap: .8rem; }
.quote-total .price small { display: inline-block; }
html[dir="rtl"] .quote-total .price small { margin-right: .5rem; }
