/* =========================================================
   Edis Cleaning Services — styles
   ========================================================= */
:root {
  /* Brand: pink-first, plum ink, warm fall accents */
  --ink: #2A1433;        /* deep plum — text & dark sections */
  --ink-2: #5B4560;
  --muted: #85708A;
  --rose: #F0468F;       /* brand pink */
  --rose-600: #D62872;
  --berry: #B51F66;      /* pink for text on light backgrounds */
  --blush: #FFEAF3;      /* pink tint surfaces */
  --petal: #FFF7FA;
  --pink: #F0468F;       /* CTA base */
  --pink-600: #D62872;
  --pumpkin: #FF7A2F;    /* fall accent */
  --sun: #FFC857;
  --line: #F3DDE7;
  --white: #fff;
  --bg: #FFFBFC;

  --radius: 20px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(42,20,51,.06), 0 2px 8px rgba(42,20,51,.05);
  --shadow: 0 10px 30px -10px rgba(42,20,51,.18), 0 2px 6px rgba(42,20,51,.05);
  --shadow-lg: 0 30px 60px -20px rgba(42,20,51,.30), 0 8px 20px -8px rgba(42,20,51,.12);
  --glow: 0 10px 28px -8px rgba(240,70,143,.6);
  --cta: linear-gradient(135deg, #F0468F 0%, #FF5E7A 55%, #FF7A2F 100%);

  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --ease: cubic-bezier(.22,1,.36,1);
  --header-h: 76px;
  --promo-h: 0px;        /* set by the seasonal stylesheet when a promo bar is shown */
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--font); color: var(--ink); background: var(--bg);
  font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
[hidden] { display: none !important; }
img, svg { display: block; max-width: 100%; }
svg { width: 1em; height: 1em; flex-shrink: 0; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -0.025em; font-weight: 800; }
p { margin: 0; }
em { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
button, input, select { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--rose); outline-offset: 3px; border-radius: 6px; }

.container { width: min(1200px, 100% - 40px); margin-inline: auto; }
.center { text-align: center; margin-top: 48px; }
.skip { position: absolute; left: -9999px; top: 8px; z-index: 100; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 10px; }
.skip:focus { left: 12px; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: 14px 24px; border-radius: 999px; border: 0; cursor: pointer;
  background: var(--bg); color: var(--fg); font-weight: 700; font-size: 16px; line-height: 1.1;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s;
  position: relative; isolation: isolate; overflow: hidden; white-space: nowrap;
  will-change: transform;
}
.btn svg { font-size: 1.15em; transition: transform .35s var(--ease); }
.btn:hover svg:last-child { transform: translateX(3px); }
.btn:active { transform: scale(.97); }
.btn--primary { --bg: var(--pink); background: var(--cta); box-shadow: var(--glow); }
.btn--primary::after { /* shine sweep */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.45) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .8s var(--ease);
}
.btn--primary:hover { background: var(--cta); filter: saturate(1.15) brightness(1.03); box-shadow: 0 16px 34px -10px rgba(240,70,143,.8); }
.btn--primary:hover::after { transform: translateX(120%); }
.btn--ghost { --bg: rgba(255,255,255,.7); --fg: var(--ink); box-shadow: inset 0 0 0 1.5px rgba(42,20,51,.14); backdrop-filter: blur(8px); }
.btn--ghost:hover { --bg: #fff; box-shadow: inset 0 0 0 1.5px rgba(42,20,51,.3), var(--shadow); }
.btn--light { --bg: rgba(255,255,255,.1); --fg: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.3); }
.btn--light:hover { --bg: rgba(255,255,255,.18); }
.btn--text { --bg: transparent; --fg: var(--muted); padding-inline: 8px; }
.btn--text:hover { --fg: var(--ink); }
.btn--sm { padding: 10px 18px; font-size: 15px; }
.btn--lg { padding: 18px 30px; font-size: 17px; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  transition: background .3s, box-shadow .3s;
}
.header.is-scrolled {
  background: rgba(251,254,254,.82); backdrop-filter: saturate(1.6) blur(14px); -webkit-backdrop-filter: saturate(1.6) blur(14px);
  box-shadow: 0 1px 0 rgba(42,20,51,.07), 0 8px 24px -16px rgba(42,20,51,.25);
  --header-h: 66px;
}
.header__inner { height: var(--header-h); transition: height .3s var(--ease); display: flex; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand img { transition: transform .6s var(--ease); }
.brand:hover img { transform: rotate(-4deg) scale(1.04); }
.brand__word { width: auto; height: 52px; }
.brand__tag { font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; line-height: 1.3; color: var(--ink-2); padding-left: 11px; border-left: 1.5px solid var(--line); }
.brand--light img { width: 200px; height: auto; }

.nav { display: flex; gap: 4px; margin-left: auto; }
.nav a { padding: 8px 14px; border-radius: 999px; font-weight: 600; font-size: 15px; color: var(--ink-2); transition: background .2s, color .2s; }
.nav a:hover, .nav a.is-active { background: rgba(240,70,143,.1); color: var(--ink); }
.header__cta { display: flex; align-items: center; gap: 14px; }
.header__phone { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; }
.header__phone svg { color: var(--berry); }
.header__phone:hover { color: var(--berry); }

.burger { display: none; width: 44px; height: 44px; border: 0; background: rgba(42,20,51,.06); border-radius: 12px; cursor: pointer; position: relative; }
.burger span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .35s var(--ease); }
.burger span:first-child { top: 17px; } .burger span:last-child { top: 25px; }
.burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mnav {
  display: none; position: absolute; top: 100%; left: 12px; right: 12px; padding: 12px;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  flex-direction: column; gap: 2px;
  opacity: 0; transform: translateY(-8px); pointer-events: none; transition: opacity .25s, transform .35s var(--ease);
}
.mnav a:not(.btn) { padding: 14px 16px; border-radius: 12px; font-weight: 600; }
.mnav a:not(.btn):hover { background: var(--blush); }
.mnav .btn { margin-top: 8px; }
.mnav.is-open { opacity: 1; transform: none; pointer-events: auto; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding: calc(var(--header-h) + var(--promo-h) + 40px) 0 80px; overflow: hidden; isolation: isolate;
  background:
    radial-gradient(60% 60% at 85% 20%, rgba(240,70,143,.14), transparent 60%),
    radial-gradient(60% 70% at 10% 90%, rgba(240,70,143,.22), transparent 60%),
    linear-gradient(180deg, #FFF7FA, #FFEFE6);
}
.hero__gl { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -2; opacity: 0; transition: opacity 1.2s ease; }
.hero__gl.is-ready { opacity: 1; }
.hero__veil { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(255,247,250,.82) 0%, rgba(255,247,250,.55) 40%, transparent 70%); pointer-events: none; }
.hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.hero__copy { position: sticky; top: calc(var(--header-h) + 40px); padding-top: 24px; }

.pill {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px 8px 12px; border-radius: 999px;
  background: rgba(255,255,255,.75); backdrop-filter: blur(10px); box-shadow: var(--shadow-sm), inset 0 0 0 1px rgba(42,20,51,.06);
  font-size: 14px; color: var(--ink-2); transition: transform .3s var(--ease), box-shadow .3s;
}
.pill:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.pill__stars, .rating__stars, .review__stars { display: inline-flex; gap: 1px; color: var(--sun); }
.pill__stars svg { font-size: 15px; }

.hero__title { font-size: clamp(46px, 5.8vw, 88px); margin: 22px 0 22px; letter-spacing: -0.045em; line-height: .98; }
.hero__title .line { display: block; white-space: nowrap; overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }
.hero__title .line > span { display: inline-block; }
.hero__title em { font-size: 1.12em; }
.shine {
  background: linear-gradient(100deg, var(--berry) 0%, var(--rose) 28%, #FF8FB8 42%, var(--pumpkin) 58%, var(--sun) 70%, var(--rose) 85%, var(--berry) 100%);
  background-size: 250% 100%; -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shine 7s linear infinite; padding-right: .08em;
}
@keyframes shine { to { background-position: -250% 0; } }
.hero__sub { font-size: clamp(17px, 1.5vw, 20px); color: var(--ink-2); max-width: 34ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero__proof { list-style: none; padding: 0; margin: 32px 0 0; display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: 14.5px; font-weight: 600; color: var(--ink-2); }
.hero__proof li { display: flex; align-items: center; gap: 8px; }
.hero__proof svg { color: var(--rose-600); font-size: 18px; }
.hero__scroll { position: absolute; left: 50%; bottom: 22px; width: 26px; height: 42px; border-radius: 20px; border: 2px solid rgba(42,20,51,.25); transform: translateX(-50%); }
.hero__scroll span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; border-radius: 4px; background: var(--ink); animation: wheel 1.8s var(--ease) infinite; }
@keyframes wheel { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* ---------- Quote card ---------- */
.quote {
  position: relative; background: rgba(255,255,255,.86); backdrop-filter: blur(20px) saturate(1.4); -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-radius: 28px; padding: 28px; box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255,255,255,.9);
  scroll-margin-top: calc(var(--header-h) + 20px);
}
.quote::before { /* animated gradient border */
  content: ""; position: absolute; inset: -1.5px; border-radius: 29.5px; z-index: -1; padding: 1.5px;
  background: conic-gradient(from var(--a, 0deg), var(--rose), var(--pink), #FFB778, var(--rose));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude;
  animation: spin 6s linear infinite; opacity: .8;
}
@property --a { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@keyframes spin { to { --a: 360deg; } }
.quote.is-flash { animation: flash 1s var(--ease); }
@keyframes flash { 30% { transform: scale(1.02); box-shadow: 0 0 0 8px rgba(240,70,143,.25), var(--shadow-lg); } }
.quote__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.quote__eyebrow { font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--berry); }
.quote__title { font-size: 24px; margin-top: 6px; letter-spacing: -0.03em; }
.quote__badge { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--berry); background: var(--blush); padding: 6px 12px; border-radius: 999px; white-space: nowrap; }
.quote__form { position: relative; margin: 18px -12px 0; min-height: 540px; }
.quote__form .jobber-inline-work-request { position: relative; max-width: none; }
.quote__form iframe.jobber-work-request { max-width: none; padding: 0; border-radius: 16px; background: transparent; }
/* Guard: Jobber sizes the iframe via postMessage; never let a bad measurement collapse the form */
.quote__form .jobber-inline-work-request, .quote__form iframe.jobber-work-request { min-height: 480px; }
.quote__skeleton { position: absolute; inset: 0 12px; display: grid; grid-template-columns: 1fr 1fr; align-content: start; gap: 14px; pointer-events: none; transition: opacity .4s; }
.quote__skeleton span { height: 48px; border-radius: 10px; background: linear-gradient(90deg, #EEF6F7 25%, #F8FCFC 50%, #EEF6F7 75%); background-size: 200% 100%; animation: skel 1.4s ease-in-out infinite; }
.quote__skeleton .w { grid-column: 1 / -1; }
.quote__skeleton .btn-s { grid-column: 2; justify-self: end; width: 90px; margin-top: 12px; }
@keyframes skel { to { background-position: -200% 0; } }
.quote__form.is-loaded .quote__skeleton { opacity: 0; }
.quote__form.is-loaded { min-height: 0; }
.quote__form.is-slow:not(.is-loaded) .quote__skeleton::after { content: "Loading the form… or call us at (240) 505-2664"; grid-column: 1 / -1; text-align: center; font-size: 14px; font-weight: 600; color: var(--muted); }
.quote__alt { margin-top: 10px; text-align: center; font-size: 14.5px; color: var(--muted); }
.quote__alt a { color: var(--pink-600); font-weight: 700; }
.quote__alt a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Stats ---------- */
.stats { position: relative; z-index: 2; margin-top: -48px; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); background: #fff; border-radius: 24px; box-shadow: var(--shadow); overflow: hidden; }
.stat { padding: 28px 24px; text-align: center; display: grid; gap: 4px; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 24%; bottom: 24%; width: 1px; background: var(--line); }
.stat b { font-size: clamp(30px, 3.4vw, 42px); letter-spacing: -0.04em; display: inline-flex; align-items: center; justify-content: center; gap: 4px; line-height: 1.1; }
.stat b svg { color: var(--sun); font-size: .7em; }
.stat > span { color: var(--muted); font-size: 14.5px; font-weight: 600; }

/* ---------- Sections ---------- */
.section { padding: clamp(80px, 11vw, 140px) 0; position: relative; }
.section--tint { background: linear-gradient(180deg, var(--petal), var(--blush)); }
.section--dark { background: var(--ink); color: #fff; overflow: hidden; }
.section--dark::before { content: ""; position: absolute; width: 700px; height: 700px; right: -250px; top: -250px; border-radius: 50%; background: radial-gradient(circle, rgba(240,70,143,.28), transparent 65%); pointer-events: none; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--berry); margin-bottom: 16px; }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; border-radius: 2px; }
.section--dark .eyebrow { color: var(--rose); }
.shead { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.shead--left { text-align: left; margin-inline: 0; }
.shead h2, .incl h2, .areas h2 { font-size: clamp(36px, 5vw, 60px); }
.shead h2 em, .incl h2 em, .areas h2 em, .final h2 em { color: var(--berry); }
.section--dark h2 em { color: var(--rose); }
.shead > p:last-child, .shead > p:not(.eyebrow) { color: var(--ink-2); font-size: 18px; margin-top: 18px; }
.shead--light > p { color: rgba(255,255,255,.75); }
.shead a { color: var(--berry); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Services ---------- */
.services { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.svc {
  grid-column: span 2; position: relative; background: #fff; border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--line);
  display: flex; flex-direction: column; gap: 12px; overflow: hidden;
  transition: box-shadow .4s var(--ease), transform .4s var(--ease);
  transform-style: preserve-3d;
}
.svc::after { /* spotlight */
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity .3s;
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%), rgba(240,70,143,.12), transparent 60%);
}
.svc:hover { box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(240,70,143,.35); }
.svc:hover::after { opacity: 1; }
.svc--feature { grid-column: span 4; grid-row: span 2; background: linear-gradient(145deg, #7A1F5C, #2A1433 75%); color: #fff; padding: 40px; }
.svc--feature::before { content: ""; position: absolute; width: 420px; height: 420px; right: -120px; bottom: -160px; border-radius: 50%; background: radial-gradient(circle, rgba(255,122,47,.45), transparent 65%); }
.svc.svc--feature h3 { font-size: clamp(30px, 3.2vw, 42px); }
.svc.svc--feature p { color: rgba(255,255,255,.8); font-size: 18px; max-width: 46ch; }
.svc--feature .svc__icon { background: rgba(255,255,255,.12); color: #FFB778; }
.svc--feature .svc__cta { color: #fff; margin-top: auto; background: var(--cta); padding: 14px 22px; border-radius: 999px; align-self: flex-start; box-shadow: var(--glow); }
.svc--feature .ticks { color: rgba(255,255,255,.9); }
.svc--feature .ticks svg { background: rgba(255,183,120,.18); color: #FFB778; }
.svc:nth-child(4), .svc:nth-child(5) { grid-column: span 3; }
.svc__icon { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: var(--blush); color: var(--berry); font-size: 26px; transition: transform .5s var(--ease); }
.svc:hover .svc__icon { transform: rotate(-8deg) scale(1.08); }
.svc__tag { position: absolute; top: 30px; right: 30px; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; background: var(--sun); color: var(--ink); }
.svc h3 { font-size: 22px; margin-top: 8px; }
.svc p { color: var(--ink-2); font-size: 15.5px; }
.svc__cta { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 8px; font-weight: 700; color: var(--pink-600); font-size: 15px; }
.svc__cta svg { transition: transform .3s var(--ease); }
.svc__cta:hover svg { transform: translateX(4px); }

.ticks { list-style: none; padding: 0; margin: 6px 0 12px; display: grid; gap: 10px; font-weight: 600; }
.ticks li { display: flex; align-items: flex-start; gap: 12px; }
.ticks svg { font-size: 22px; padding: 4px; border-radius: 50%; background: var(--blush); color: var(--berry); margin-top: 1px; }
.ticks--lg { font-size: 17px; gap: 14px; }

/* ---------- Included / tabs ---------- */
.incl { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; }
.incl__copy p:not(.eyebrow) { color: var(--ink-2); font-size: 18px; margin: 18px 0 30px; }
.tabs { background: #fff; border-radius: 28px; padding: 14px 14px 28px; box-shadow: var(--shadow); }
.tabs__list { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); background: var(--petal); border-radius: 18px; padding: 5px; margin-bottom: 24px; }
.tabs__list button { position: relative; z-index: 1; border: 0; background: none; padding: 12px 8px; border-radius: 14px; font-weight: 700; font-size: 15px; color: var(--muted); cursor: pointer; transition: color .3s; }
.tabs__list button[aria-selected="true"] { color: #fff; }
.tabs__ink { position: absolute; top: 5px; bottom: 5px; left: 5px; width: calc((100% - 10px) / 3); border-radius: 14px; background: var(--ink); transition: transform .5s var(--ease); box-shadow: var(--shadow); }
.tabs__panel { padding: 0 18px; margin: 0; }
.tabs__panel li { opacity: 0; transform: translateY(8px); animation: tickIn .5s var(--ease) forwards; }
.tabs__panel li:nth-child(2) { animation-delay: .06s; } .tabs__panel li:nth-child(3) { animation-delay: .12s; }
.tabs__panel li:nth-child(4) { animation-delay: .18s; } .tabs__panel li:nth-child(5) { animation-delay: .24s; }
@keyframes tickIn { to { opacity: 1; transform: none; } }

/* ---------- Process ---------- */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.steps__line { position: absolute; top: 36px; left: 16.66%; right: 16.66%; height: 3px; background: var(--line); border-radius: 3px; overflow: hidden; }
.steps__line span { display: block; height: 100%; width: 100%; transform-origin: left; transform: scaleX(0); background: linear-gradient(90deg, var(--rose), var(--pink)); }
html:not(.anim) .steps__line span { transform: none; }
.step { text-align: center; position: relative; }
.step__num {
  width: 72px; height: 72px; margin: 0 auto 24px; display: grid; place-items: center; border-radius: 50%;
  background: #fff; font-size: 26px; font-weight: 800; color: var(--berry);
  box-shadow: var(--shadow), inset 0 0 0 2px var(--line); position: relative;
}
.step h3 { font-size: 22px; margin-bottom: 8px; }
.step p { color: var(--ink-2); max-width: 30ch; margin-inline: auto; }

/* ---------- Reviews ---------- */
.rating { display: inline-flex; align-items: center; gap: 10px; margin-top: 22px; padding: 10px 18px; border-radius: 999px; background: rgba(255,255,255,.08); box-shadow: inset 0 0 0 1px rgba(255,255,255,.14); font-size: 15px; }
.rating .g { font-size: 20px; }
.rating strong { font-size: 17px; }
.reviews {
  display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 10px 20px 24px;
  margin-inline: calc((100vw - min(1200px, 100vw - 40px)) / -2); padding-inline: calc((100vw - min(1200px, 100vw - 40px)) / 2);
  scrollbar-width: none; -webkit-mask: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); mask: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.reviews::-webkit-scrollbar { display: none; }
.review {
  flex: 0 0 min(380px, 82vw); scroll-snap-align: center; margin: 0; padding: 30px; border-radius: var(--radius);
  background: rgba(255,255,255,.06); box-shadow: inset 0 0 0 1px rgba(255,255,255,.1); backdrop-filter: blur(6px);
  display: flex; flex-direction: column; gap: 18px; transition: transform .4s var(--ease), background .3s;
}
.review:hover { transform: translateY(-6px); background: rgba(255,255,255,.1); }
.review blockquote { margin: 0; font-size: 19px; line-height: 1.5; font-weight: 500; flex: 1; }
.review figcaption { display: flex; align-items: center; gap: 12px; }
.review figcaption small { display: block; color: rgba(255,255,255,.6); font-size: 13px; }
.avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; background: linear-gradient(135deg, var(--rose), var(--pink)); }

/* ---------- Areas ---------- */
.areas { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.areas p:not(.eyebrow) { color: var(--ink-2); font-size: 18px; margin: 18px 0 20px; }
.addr { font-style: normal; display: flex; align-items: center; gap: 10px; font-weight: 600; margin-bottom: 28px; }
.addr svg { color: var(--pink); font-size: 22px; }
.cities { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cities li {
  padding: 18px 20px; border-radius: 16px; background: #fff; font-weight: 700; box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--line);
  display: flex; align-items: center; gap: 10px; transition: transform .3s var(--ease), box-shadow .3s;
}
.cities li::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--rose); box-shadow: 0 0 0 4px rgba(240,70,143,.18); }
.cities li:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.marquee { margin-top: clamp(64px, 9vw, 110px); overflow: hidden; border-block: 1px solid var(--line); padding: 22px 0; }
.marquee__track { display: flex; gap: 32px; width: max-content; animation: marquee 32s linear infinite; font-size: clamp(26px, 3.4vw, 44px); font-weight: 800; letter-spacing: -0.03em; white-space: nowrap; }
.marquee__track i { font-style: normal; color: var(--pink); }
.marquee__track span:nth-of-type(even) { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--berry); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- FAQ ---------- */
.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: 64px; align-items: start; }
.faq .shead { position: sticky; top: calc(var(--header-h) + 30px); margin-bottom: 0; }
.faq__list { display: grid; gap: 12px; }
.faq details { background: #fff; border-radius: 18px; box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--line); transition: box-shadow .3s; }
.faq details[open] { box-shadow: var(--shadow), inset 0 0 0 1.5px rgba(240,70,143,.4); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 60px 22px 24px; font-weight: 700; font-size: 17.5px; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 22px; top: 50%; width: 26px; height: 26px; margin-top: -13px; border-radius: 50%;
  background: var(--blush) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath stroke='%23B51F66' stroke-width='2.5' stroke-linecap='round' d='M12 7v10M7 12h10'/%3E%3C/svg%3E") center/16px no-repeat;
  transition: transform .4s var(--ease);
}
.faq details[open] summary::after { transform: rotate(135deg); }
.faq details p { padding: 0 24px 22px; color: var(--ink-2); }

/* ---------- Final CTA ---------- */
.final { padding: 0 0 clamp(80px, 10vw, 120px); background: linear-gradient(180deg, var(--blush), var(--bg)); }
.final__inner {
  position: relative; overflow: hidden; text-align: center; border-radius: 36px; padding: clamp(56px, 8vw, 100px) 24px;
  background: radial-gradient(80% 120% at 50% 0%, #7A1F5C, var(--ink) 70%); color: #fff;
}
.final h2 { font-size: clamp(36px, 5.4vw, 68px); max-width: 16ch; margin: 0 auto; }
.final h2 em { color: #FFB778; }
.final p { color: rgba(255,255,255,.78); font-size: 19px; margin: 18px auto 36px; max-width: 44ch; }
.final__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.72); padding: 72px 0 28px; font-size: 15px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer h3 { color: #fff; font-size: 15px; letter-spacing: 0; margin-bottom: 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer a:hover { color: #fff; }
.footer p { margin-bottom: 16px; }
.footer__about { margin-top: 18px; max-width: 34ch; }
.footer__base { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: 14px; }

/* ---------- Mobile sticky bar ---------- */
.mbar {
  display: none; position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); z-index: 60;
  grid-template-columns: 1fr 1.4fr; gap: 8px; padding: 8px; border-radius: 20px;
  background: rgba(42,20,51,.92); backdrop-filter: blur(14px); box-shadow: var(--shadow-lg);
  transform: translateY(150%); transition: transform .5s var(--ease);
}
.mbar.is-visible { transform: none; }
.mbar a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px; border-radius: 14px; font-weight: 700; font-size: 16px; }
.mbar__call { color: #fff; background: rgba(255,255,255,.1); }
.mbar__quote { background: var(--cta); color: #fff; }

/* =========================================================
   Photography
   ========================================================= */

/* ---------- Hero: team avatars ---------- */
.crew { display: inline-flex; align-items: center; gap: 14px; margin-top: 28px; padding: 8px 18px 8px 8px; border-radius: 999px; background: rgba(255,255,255,.7); backdrop-filter: blur(10px); box-shadow: var(--shadow-sm), inset 0 0 0 1px rgba(42,20,51,.06); transition: transform .3s var(--ease), box-shadow .3s; }
.crew:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.crew__faces { display: flex; }
.crew__faces img, .crew__more { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 3px solid #fff; margin-left: -12px; box-shadow: 0 4px 10px -4px rgba(42,20,51,.35); transition: transform .35s var(--ease); }
.crew__faces img:first-child { margin-left: 0; }
.crew:hover .crew__faces img { transform: translateY(-3px); }
.crew:hover .crew__faces img:nth-child(2) { transition-delay: .04s; }
.crew:hover .crew__faces img:nth-child(3) { transition-delay: .08s; }
.crew:hover .crew__faces img:nth-child(4) { transition-delay: .12s; }
.crew__more { display: grid; place-items: center; background: var(--pink); color: #fff; font-size: 18px; }
.crew__txt { display: flex; flex-direction: column; line-height: 1.25; }
.crew__txt b { font-size: 15px; }
.crew__txt small { font-size: 13px; color: var(--muted); }
.hero__proof { margin-top: 22px; }

/* ---------- Team (full-bleed photo) ---------- */
.team {
  position: relative; isolation: isolate; color: #fff; background: var(--ink);
  margin-top: clamp(72px, 9vw, 120px); padding-bottom: clamp(48px, 6vw, 72px);
}
.team__bg { position: relative; aspect-ratio: 3 / 2; max-height: 92vh; width: 100%; overflow: hidden; }
.team__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 85%; will-change: transform; }
.team__bg::after { /* plum fade over the empty pavement so the copy never covers the team */
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(42,20,51,1) 0%, rgba(42,20,51,.88) 12%, rgba(42,20,51,.35) 26%, rgba(42,20,51,0) 38%),
    linear-gradient(180deg, rgba(42,20,51,.3), transparent 15%);
}
.team__inner { position: relative; z-index: 1; margin-top: clamp(-210px, -14vw, -110px); display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 5vw, 72px); align-items: end; }
.team .eyebrow { color: #FFB6D5; margin-bottom: 12px; }
.team__copy h2 { font-size: clamp(36px, 4.6vw, 60px); }
.team__copy h2 em { color: #FF9CC6; }
.team__copy > p:not(.eyebrow) { color: rgba(255,255,255,.85); font-size: 18px; margin-top: 16px; max-width: 54ch; }
.team .ticks { color: #fff; margin: 0 0 24px; }
.team .ticks svg { background: rgba(255,156,198,.2); color: #FF9CC6; }
.team__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; }
.team__badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px 8px 8px; border-radius: 16px; background: rgba(255,255,255,.1); backdrop-filter: blur(10px); box-shadow: inset 0 0 0 1px rgba(255,255,255,.18); }
.team__badge svg { width: 38px; height: 38px; padding: 9px; border-radius: 12px; background: var(--cta); color: #fff; }
.team__badge > span { display: flex; flex-direction: column; line-height: 1.2; font-size: 14px; }
.team__badge small { color: rgba(255,255,255,.7); font-size: 12.5px; }

/* ---------- Service cards with photos ---------- */
.svc__media { margin: -30px -30px 6px; aspect-ratio: 16 / 10; overflow: hidden; position: relative; }
.svc__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(255,255,255,.95)); }
.svc__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.svc:hover .svc__media img { transform: scale(1.07); }
.svc__media + .svc__icon { margin-top: -44px; position: relative; z-index: 1; background: #fff; box-shadow: var(--shadow); }

.svc--feature { min-height: 560px; }
.svc--feature > *:not(.svc__bg):not(.svc__tag) { max-width: 420px; }
.svc__bg { position: absolute; inset: 0; z-index: 0; }
.svc__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 75% 45%; transition: transform 1.4s var(--ease); }
.svc--feature:hover .svc__bg img { transform: scale(1.05); }
.svc__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(42,20,51,.97) 0%, rgba(42,20,51,.88) 38%, rgba(42,20,51,.25) 68%, rgba(42,20,51,0) 85%); }
.svc--feature > *:not(.svc__bg) { position: relative; z-index: 1; }
.svc--feature::before { z-index: 0; opacity: .6; }
.svc--feature .svc__tag { position: absolute; z-index: 2; }
.svc--feature .svc__icon { background: rgba(255,255,255,.16); backdrop-filter: blur(8px); }

/* ---------- Included tabs photo ---------- */
.tabs__media { position: relative; aspect-ratio: 16 / 9; border-radius: 18px; overflow: hidden; margin-bottom: 14px; background: var(--blush); }
.tabs__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.08); transition: opacity .7s var(--ease), transform 1.4s var(--ease); }
.tabs__media img.is-on { opacity: 1; transform: none; }

/* ---------- Gallery (pinned horizontal scroll on desktop) ---------- */
.gallery { background: linear-gradient(180deg, var(--bg), var(--petal)); overflow: hidden; }
.gallery__pin { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; gap: 44px; padding: calc(var(--header-h) + 30px) 0 60px; }
.gallery__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.gallery__head h2 { font-size: clamp(36px, 5vw, 60px); }
.gallery__head h2 em { color: var(--berry); }
.gallery__head .eyebrow { margin-bottom: 12px; }
.gallery__track { display: flex; gap: 24px; width: max-content; padding-inline: max(20px, calc((100vw - 1200px) / 2)); will-change: transform; }
.gcard { margin: 0; width: clamp(260px, 26vw, 360px); flex-shrink: 0; }
.gcard:nth-child(even) { margin-top: 48px; }
.gcard__img { aspect-ratio: 3 / 4; border-radius: 26px; overflow: hidden; box-shadow: var(--shadow); background: var(--blush); position: relative; }
.gcard__img img { width: 118%; max-width: none; height: 100%; object-fit: cover; margin-left: -9%; transition: scale 1s var(--ease); }
.gcard:hover .gcard__img img { scale: 1.05; }
.gcard figcaption { display: flex; flex-direction: column; padding: 14px 6px 0; }
.gcard figcaption b { font-size: 18px; }
.gcard figcaption span { color: var(--muted); font-size: 15px; }

/* ---------- Final CTA photo ---------- */
.final__inner { isolation: isolate; }
.final__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; z-index: -1; opacity: .9; }
.final__inner::after { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(90% 120% at 50% 10%, rgba(122,31,92,.66), rgba(42,20,51,.9) 75%); }
.final__sparkles { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.final__inner > *:not(.final__bg):not(.final__sparkles) { position: relative; z-index: 1; }

@media (max-width: 1080px) {
  .team__inner { grid-template-columns: 1fr; gap: 24px; }
  .svc--feature { min-height: 480px; }
}
@media (max-width: 720px) {
  /* team: taller crop on phones, copy below on plum */
  .team__bg { aspect-ratio: 4 / 3; }
  .team__bg img { object-position: 50% 70%; }
  .team__inner { margin-top: -48px; }
  .crew { width: 100%; border-radius: 22px; }
  .crew__faces img, .crew__more { width: 38px; height: 38px; }
  .svc__media { margin: -28px -24px 6px; }
  .svc--feature { min-height: 560px; justify-content: flex-end; }
  .svc--feature .svc__cta { margin-top: 8px; }
  .svc__bg img { object-position: 60% 30%; }
  .svc__bg::after { background: linear-gradient(0deg, rgba(42,20,51,.97) 35%, rgba(42,20,51,.75) 60%, rgba(42,20,51,.1) 90%); }
  .gallery__pin { min-height: 0; padding: 80px 0; gap: 32px; }
  .gallery__track { width: auto; overflow-x: auto; scroll-snap-type: x mandatory; padding-inline: 16px; padding-bottom: 8px; scrollbar-width: none; }
  .gallery__track::-webkit-scrollbar { display: none; }
  .gcard { width: 74vw; scroll-snap-align: center; }
  .gcard:nth-child(even) { margin-top: 0; }
  .gcard__img img { width: 100%; margin-left: 0; }
}

/* ---------- SEO headings & internal links (home) ---------- */
.hero__kicker { margin: 20px 0 -6px; font-size: clamp(14px, 1.2vw, 16px); font-weight: 800; letter-spacing: .01em; line-height: 1.35; color: var(--berry); max-width: 40ch; }
.svc__link { color: inherit; background: linear-gradient(currentColor, currentColor) 0 100% / 0 2px no-repeat; transition: background-size .4s var(--ease); }
.svc__link:hover { background-size: 100% 2px; }
.cities li a { flex: 1; }
.cities li:has(a:hover) { box-shadow: var(--shadow), inset 0 0 0 1.5px var(--rose); color: var(--berry); }

/* =========================================================
   Inner pages (service, city and city x service landing pages)
   ========================================================= */
.phero {
  position: relative; padding: calc(var(--header-h) + var(--promo-h) + 36px) 0 clamp(64px, 8vw, 100px);
  background:
    radial-gradient(55% 60% at 90% 10%, rgba(240,70,143,.16), transparent 60%),
    radial-gradient(50% 60% at 0% 100%, rgba(255,122,47,.14), transparent 60%),
    linear-gradient(180deg, var(--petal), #FFEFE6);
}
.phero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.phero__copy { position: sticky; top: calc(var(--header-h) + 32px); padding-top: 8px; }
.phero__title { font-size: clamp(40px, 5vw, 68px); letter-spacing: -0.04em; line-height: 1.02; margin: 4px 0 18px; }
.phero__title em { font-size: 1.06em; }
.phero__lead { font-size: clamp(17px, 1.4vw, 19px); color: var(--ink-2); max-width: 46ch; }
.phero__rating { display: inline-flex; align-items: center; gap: 10px; margin-top: 24px; font-size: 14px; color: var(--ink-2); }
.phero .hero__actions { margin-top: 28px; }
.crumbs ol { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; font-size: 13.5px; color: var(--muted); }
.crumbs li + li::before { content: "›"; margin-right: 6px; color: var(--rose); }
.crumbs a:hover { color: var(--berry); text-decoration: underline; text-underline-offset: 3px; }
.crumbs [aria-current] { color: var(--ink); font-weight: 600; }

/* City photo hero (city + city x service pages) */
.phero--photo { background: var(--ink); color: #fff; isolation: isolate; overflow: hidden; }
.phero__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.phero__bg img { width: 100%; height: 100%; object-fit: cover; transform-origin: 60% 50%; animation: kenburns 28s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1.02); } to { transform: scale(1.12) translate(-1.5%, -1%); } }
.phero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(42,20,51,.92) 0%, rgba(42,20,51,.78) 38%, rgba(42,20,51,.4) 68%, rgba(42,20,51,.25) 100%),
    linear-gradient(0deg, rgba(42,20,51,.55), transparent 30%);
}
.phero--photo .phero__title { color: #fff; }
.phero--photo .shine { background-image: linear-gradient(100deg, #FF9CC6 0%, #FFD1E3 25%, #FFB778 50%, #FFC857 65%, #FF9CC6 85%, #FFD1E3 100%); }
.phero--photo .eyebrow { color: #FFB6D5; }
.phero--photo .phero__lead { color: rgba(255,255,255,.88); }
.phero--photo .crumbs ol { color: rgba(255,255,255,.7); }
.phero--photo .crumbs [aria-current] { color: #fff; }
.phero--photo .crumbs a:hover { color: #fff; }
.phero--photo .crumbs li + li::before { color: #FF9CC6; }
.phero--photo .phero__rating, .phero--photo .hero__proof { color: rgba(255,255,255,.85); }
.phero--photo .hero__proof svg { color: #FF9CC6; }
.phero--photo .btn--ghost { --bg: rgba(255,255,255,.12); --fg: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.4); }
.phero--photo .btn--ghost:hover { --bg: rgba(255,255,255,.2); }
.phero__credit {
  position: absolute; left: max(20px, calc((100vw - 1200px) / 2)); bottom: 16px; right: 20px;
  display: flex; align-items: center; gap: 6px; margin: 0; font-size: 12px; color: rgba(255,255,255,.62);
}
.phero__credit svg { color: #FF9CC6; font-size: 13px; }
.phero__credit a { text-decoration: underline; text-underline-offset: 2px; }
.phero__credit a:hover { color: #fff; }

.phero--photo .quote { color: var(--ink); background: #fff; }
/* light header while it sits over a photo hero */
body:has(.phero--photo, .thanks) .header:not(.is-scrolled) .nav a { color: rgba(255,255,255,.85); }
body:has(.phero--photo, .thanks) .header:not(.is-scrolled) .nav a:hover { color: #fff; background: rgba(255,255,255,.12); }
body:has(.phero--photo, .thanks) .header:not(.is-scrolled) .header__phone { color: #fff; }
body:has(.phero--photo, .thanks) .header:not(.is-scrolled) .header__phone svg { color: #FF9CC6; }
body:has(.phero--photo, .thanks) .header:not(.is-scrolled) .brand__tag { color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.25); }
body:has(.phero--photo, .thanks) .header:not(.is-scrolled) .burger { background: rgba(255,255,255,.14); }
body:has(.phero--photo, .thanks) .header:not(.is-scrolled) .burger span { background: #fff; }

/* Thank-you page */
.thanks { position: relative; isolation: isolate; overflow: hidden; background: var(--ink); color: #fff; text-align: center;
  padding: calc(var(--header-h) + var(--promo-h) + 56px) 0 clamp(72px, 9vw, 110px); min-height: 92svh; display: flex; align-items: center; }
.thanks .phero__bg::after { background: radial-gradient(80% 90% at 50% 40%, rgba(42,20,51,.78), rgba(42,20,51,.94) 75%); }
.thanks__inner { max-width: 780px; }
.thanks__check { position: relative; width: 96px; height: 96px; margin: 0 auto 26px; border-radius: 50%; display: grid; place-items: center;
  background: var(--cta); font-size: 46px; box-shadow: 0 18px 40px -10px rgba(240,70,143,.7); }
.thanks__check::before, .thanks__check::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(255,156,198,.6); animation: ring 2.4s ease-out infinite; }
.thanks__check::after { animation-delay: 1.2s; }
@keyframes ring { from { transform: scale(1); opacity: .9; } to { transform: scale(1.9); opacity: 0; } }
.thanks .eyebrow { color: #FFB6D5; justify-content: center; }
.thanks__title { font-size: clamp(42px, 6.4vw, 80px); letter-spacing: -0.045em; line-height: 1; margin: 6px 0 20px; }
.thanks .shine { background-image: linear-gradient(100deg, #FF9CC6 0%, #FFD1E3 25%, #FFB778 50%, #FFC857 65%, #FF9CC6 85%, #FFD1E3 100%); }
.thanks__lead { font-size: clamp(17px, 1.6vw, 20px); color: rgba(255,255,255,.88); max-width: 60ch; margin: 0 auto; }
.thanks__lead strong { color: #FFB778; }
.timeline { list-style: none; margin: 38px auto 0; padding: 22px 26px; max-width: 560px; text-align: left; border-radius: 24px;
  background: rgba(255,255,255,.08); box-shadow: inset 0 0 0 1px rgba(255,255,255,.14); backdrop-filter: blur(10px); }
.timeline li { position: relative; display: grid; grid-template-columns: 40px 1fr; gap: 14px; padding: 12px 0; }
.timeline li:not(:last-child)::before { content: ""; position: absolute; left: 19px; top: 50px; bottom: -10px; width: 2px; background: rgba(255,255,255,.16); }
.timeline li.is-done::before { background: linear-gradient(#FF7EB6, rgba(255,255,255,.16)); }
.timeline__dot { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-size: 18px; background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); }
.is-done .timeline__dot { background: var(--cta); color: #fff; }
.is-active .timeline__dot { background: rgba(255,156,198,.18); box-shadow: inset 0 0 0 2px #FF9CC6; }
.is-active .timeline__dot i { width: 12px; height: 12px; border-radius: 50%; background: #FF9CC6; animation: pulseDot 1.4s ease-in-out infinite; }
@keyframes pulseDot { 50% { transform: scale(.55); opacity: .5; } }
.timeline b { display: block; font-size: 16.5px; }
.timeline div span { color: rgba(255,255,255,.72); font-size: 14.5px; }
.thanks__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.thanks__note { margin-top: 18px; font-size: 14px; color: rgba(255,255,255,.7); }
.thanks__note a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.thanks__confetti { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.thanks__confetti svg { position: absolute; top: -8%; width: 24px; height: 24px; opacity: .85; animation: leafFall 14s linear infinite; }
.thanks__confetti svg:nth-child(4n+1) { color: #FF7A2F; } .thanks__confetti svg:nth-child(4n+2) { color: #FFB443; }
.thanks__confetti svg:nth-child(4n+3) { color: #F0468F; } .thanks__confetti svg:nth-child(4n) { color: #E2542B; }
.thanks__confetti svg:nth-child(1) { left: 4%; animation-delay: -1s; }   .thanks__confetti svg:nth-child(2) { left: 14%; animation-delay: -6s; width: 16px; height: 16px; }
.thanks__confetti svg:nth-child(3) { left: 24%; animation-delay: -11s; } .thanks__confetti svg:nth-child(4) { left: 36%; animation-delay: -3s; width: 18px; height: 18px; }
.thanks__confetti svg:nth-child(5) { left: 48%; animation-delay: -8s; }  .thanks__confetti svg:nth-child(6) { left: 60%; animation-delay: -13s; width: 30px; height: 30px; }
.thanks__confetti svg:nth-child(7) { left: 71%; animation-delay: -5s; }  .thanks__confetti svg:nth-child(8) { left: 82%; animation-delay: -10s; width: 16px; height: 16px; }
.thanks__confetti svg:nth-child(9) { left: 90%; animation-delay: -2s; }  .thanks__confetti svg:nth-child(10) { left: 96%; animation-delay: -7s; width: 20px; height: 20px; }
@media (max-width: 720px) {
  .thanks__actions .btn { flex: 1 1 100%; }
  .timeline { padding: 16px 18px; }
}

/* City cards with photo thumbnails */
.citycard--photo { grid-template-columns: 56px 1fr auto; gap: 2px 14px; padding: 12px 18px 12px 12px; }
.citycard--photo .citycard__img { grid-row: 1 / 3; grid-column: 1; align-self: center; width: 56px; height: 56px; border-radius: 14px; overflow: hidden; background: var(--blush); }
.citycard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.citycard--photo:hover .citycard__img img { transform: scale(1.1); }
.citycard--photo b { grid-column: 2; grid-row: 1; align-self: end; }
.citycard--photo > span:not(.citycard__img) { align-self: start; }
.citycard--photo > span:not(.citycard__img) { grid-column: 2; grid-row: 2; }
.citycard.citycard--photo > svg { grid-column: 3; grid-row: 1 / 3; }
.citygrid--lg .citycard--photo { grid-template-columns: 76px 1fr auto; padding: 14px 20px 14px 14px; }
.citygrid--lg .citycard--photo .citycard__img { width: 76px; height: 76px; }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.split__media { margin: 0; border-radius: 28px; overflow: hidden; aspect-ratio: 4 / 5; box-shadow: var(--shadow-lg); background: var(--blush); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.prose h2 { font-size: clamp(32px, 4vw, 52px); margin-bottom: 8px; }
.prose h2 em, .section:not(.section--dark) .shead h2 em { color: var(--berry); }
.prose p:not(.eyebrow) { color: var(--ink-2); font-size: 17.5px; margin-top: 16px; }
.prose .btn { margin-top: 28px; }
.prose .ticks { margin-top: 22px; }

.cl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cl { background: #fff; border-radius: 22px; padding: 28px; box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--line); }
.cl h3 { font-size: 19px; margin-bottom: 14px; }
.cl .ticks { margin: 0; font-size: 15.5px; }

.areasplit { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.areasplit h3 { font-size: 16px; margin-bottom: 14px; }
.chiplinks { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.chiplinks li > * , .chiplinks--plain li { display: inline-block; padding: 9px 15px; border-radius: 999px; background: #fff; box-shadow: inset 0 0 0 1.5px var(--line); font-size: 14px; font-weight: 600; }
.chiplinks a { transition: background .2s, color .2s, box-shadow .2s; }
.chiplinks a:hover { background: var(--blush); color: var(--berry); box-shadow: inset 0 0 0 1.5px var(--rose); }

.lcards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.lcard { display: flex; flex-direction: column; background: #fff; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--line); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.lcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(240,70,143,.35); }
.lcard__img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--blush); }
.lcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.lcard:hover .lcard__img img { transform: scale(1.06); }
.lcard__body { display: flex; flex-direction: column; gap: 6px; padding: 22px; }
.lcard__body b { font-size: 18px; }
.lcard__body > span { color: var(--muted); font-size: 15px; }
.lcard__more { font-style: normal; color: var(--berry); font-weight: 700; display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; font-size: 15px; }

.citygrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.citycard { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2px 12px; padding: 18px 20px; border-radius: 18px; background: #fff; box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--line); transition: transform .3s var(--ease), box-shadow .3s; }
.citycard b { font-size: 16.5px; }
.citycard span { grid-row: 2; color: var(--muted); font-size: 14px; }
.citycard svg { grid-row: 1 / 3; grid-column: 2; color: var(--rose); font-size: 20px; transition: transform .3s var(--ease); }
.citycard:hover { transform: translateY(-3px); box-shadow: var(--shadow), inset 0 0 0 1.5px var(--rose); }
.citycard:hover svg { transform: translateX(4px); }
.citygrid--lg { grid-template-columns: repeat(3, 1fr); }
.citygrid--lg .citycard { padding: 24px; }

.matrix { overflow-x: auto; border-radius: 22px; background: #fff; box-shadow: var(--shadow); }
.matrix table { width: 100%; min-width: 820px; border-collapse: collapse; font-size: 14.5px; }
.matrix th, .matrix td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); }
.matrix thead th { background: var(--ink); color: #fff; font-size: 13px; letter-spacing: .02em; }
.matrix tbody tr:last-child > * { border-bottom: 0; }
.matrix th[scope=row] a { font-weight: 800; }
.matrix td a { color: var(--berry); font-weight: 600; }
.matrix a:hover { text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 1080px) {
  .phero__grid, .split { grid-template-columns: 1fr; gap: 40px; }
  .phero__copy { position: static; }
  .split__media { aspect-ratio: 16 / 11; }
  .cl-grid, .areasplit { grid-template-columns: 1fr; }
  .citygrid--lg { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .phero { padding-top: calc(var(--header-h) + var(--promo-h) + 24px); }
  .phero .hero__actions .btn { flex: 1 1 100%; }
  .phero__bg::after { background: linear-gradient(180deg, rgba(42,20,51,.72) 0%, rgba(42,20,51,.88) 45%, rgba(42,20,51,.95) 100%); }
  .phero__credit { font-size: 11px; bottom: 12px; }
  body:has(.phero--photo, .thanks) .header:not(.is-scrolled) .header__phone { background: rgba(255,255,255,.14); }
  .citygrid--lg { grid-template-columns: 1fr; }
}

/* ---------- Reveal (only when JS animations are on) ---------- */
.anim [data-reveal], .anim [data-hero], .anim [data-hero-card] { opacity: 0; }
.anim .hero__title .line > span { transform: translateY(110%); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav { display: none; }
  .header__cta { margin-left: auto; }
  .burger { display: block; }
  .mnav { display: flex; }
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__copy { position: static; padding-top: 0; }
  .hero__sub { max-width: 46ch; }
  .hero__veil { background: linear-gradient(180deg, rgba(255,247,250,.6), rgba(255,247,250,.2)); }
  .quote { max-width: 560px; }
  .hero__scroll { display: none; }
  .services { grid-template-columns: 1fr 1fr; }
  .svc, .svc--feature, .svc:nth-child(4), .svc:nth-child(5) { grid-column: span 1; grid-row: auto; }
  .svc--feature { grid-column: 1 / -1; }
  .incl, .areas, .faq { grid-template-columns: 1fr; gap: 40px; }
  .faq .shead { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  :root { --header-h: 66px; }
  body { font-size: 16px; }
  .container { width: calc(100% - 32px); }
  .header__phone span { display: none; }
  .header__phone { width: 44px; height: 44px; justify-content: center; border-radius: 12px; background: var(--blush); }
  .header__cta .btn { display: none; }
  .hero { padding-top: calc(var(--header-h) + var(--promo-h) + 28px); min-height: auto; }
  .brand__word { height: 40px; }
  .brand__tag { font-size: 9px; }
  .hero__actions .btn { flex: 1 1 100%; }
  .quote { padding: 22px 18px; border-radius: 24px; }
  .stats { margin-top: -28px; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 22px 12px; }
  .stat:nth-child(3)::before { display: none; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .services { grid-template-columns: 1fr; }
  .svc, .svc--feature { padding: 28px 24px; }
  .svc__tag { top: 24px; right: 24px; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .steps__line { top: 36px; bottom: 36px; left: 50%; right: auto; width: 3px; height: auto; }
  .steps__line span { transform-origin: top; transform: scaleY(0); }
  .step__num { background: #fff; z-index: 1; }
  .step { background: var(--bg); }
  .tabs__list button { font-size: 13.5px; padding: 11px 4px; }
  .tabs__panel { padding: 0 8px; }
  .cities { grid-template-columns: 1fr 1fr; }
  .footer { padding-bottom: 110px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .mbar { display: grid; }
  .btn--lg { padding: 17px 24px; }
  .final__actions .btn { flex: 1 1 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .hero__gl { display: none; }
}
