/* ==========================================================================
   Kristy's Cleaning Co. — site styles
   Brand: hot pink / soft pink / black, playful + poppy
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Poppins:wght@300;400;500;600;700&family=Pacifico&display=swap');

:root {
  --pink-900: #7d0033;
  --pink-800: #a10d4e;
  --pink-700: #c2185b;
  --pink-600: #e6136c;
  --pink-500: #ff3d8b;
  --pink-400: #ff6fa8;
  --pink-300: #ff9cc4;
  --pink-200: #ffbfda;
  --pink-100: #ffe3ef;
  --pink-50:  #fff5fa;

  --ink:   #14080e;
  --ink-2: #43303a;
  --ink-3: #7a6771;
  --line:  #f1d8e4;
  --white: #ffffff;

  --gold: #ffd84d;
  --mint: #4fd8bd;

  --grad-hot: linear-gradient(135deg, #ff5c9d 0%, #e6136c 55%, #a10d4e 100%);
  --grad-soft: linear-gradient(135deg, #fff5fa 0%, #ffe3ef 100%);
  --grad-ink: linear-gradient(150deg, #1b0a12 0%, #14080e 60%, #2a0f1c 100%);

  --shadow-sm: 0 2px 8px rgba(126, 0, 51, .08);
  --shadow: 0 10px 30px rgba(126, 0, 51, .12);
  --shadow-lg: 0 24px 60px rgba(126, 0, 51, .18);
  --shadow-pink: 0 14px 34px rgba(230, 19, 108, .32);

  --r-sm: 12px;
  --r: 18px;
  --r-lg: 28px;
  --r-xl: 40px;

  --wrap: 1200px;
  --nav-h: 82px;

  --font-display: 'Baloo 2', 'Trebuchet MS', system-ui, sans-serif;
  --font-body: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-script: 'Pacifico', 'Segoe Script', cursive;
}

/* --------------------------------------------------------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 20px); }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-2);
  background: var(--white);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.08;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.3rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 800; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; }
p { margin: 0 0 1.1em; }
a { color: var(--pink-700); text-decoration: none; }
a:hover { color: var(--pink-600); }
img { max-width: 100%; display: block; }
ul { margin: 0 0 1.1em; padding-left: 1.2em; }
li { margin-bottom: .4em; }
:focus-visible { outline: 3px solid var(--pink-500); outline-offset: 3px; border-radius: 6px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }
.narrow { max-width: 780px; }
.center { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

section { position: relative; }
.sec { padding: clamp(64px, 8vw, 116px) 0; }
.sec-tight { padding: clamp(44px, 5vw, 72px) 0; }
.sec-soft { background: var(--grad-soft); }
.sec-ink { background: var(--grad-ink); color: #f7dfe9; }
.sec-ink h2, .sec-ink h3 { color: var(--white); }

/* ------------------------------------------------------ type bits -------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 700; font-size: .82rem;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--pink-600); background: var(--pink-100);
  padding: .42em 1em; border-radius: 999px; margin-bottom: 1rem;
}
.sec-ink .eyebrow { background: rgba(255, 61, 139, .18); color: var(--pink-300); }
.script { font-family: var(--font-script); color: var(--pink-500); font-weight: 400; padding-inline: .12em; }
.hl {
  background: linear-gradient(180deg, transparent 58%, var(--pink-200) 58%, var(--pink-200) 92%, transparent 92%);
  padding: 0 .1em;
}
.grad-text {
  background: var(--grad-hot); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.lead { font-size: 1.14rem; color: var(--ink-3); }
.sec-ink .lead { color: #e9c7d7; }
.sec-head { max-width: 720px; margin: 0 auto clamp(38px, 5vw, 62px); text-align: center; }
.sec-head p { margin-bottom: 0; }

/* ------------------------------------------------------- buttons --------- */
.btn {
  --btn-bg: var(--grad-hot);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.02rem;
  padding: .92em 1.7em; border: 0; border-radius: 999px; cursor: pointer;
  background: var(--btn-bg); color: var(--white);
  box-shadow: var(--shadow-pink);
  transition: transform .18s cubic-bezier(.34,1.56,.64,1), box-shadow .18s, filter .18s;
  text-align: center; line-height: 1.2;
}
.btn:hover { transform: translateY(-3px) scale(1.02); color: var(--white); box-shadow: 0 20px 40px rgba(230,19,108,.4); }
.btn:active { transform: translateY(0) scale(.99); }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn-lg { font-size: 1.12rem; padding: 1.05em 2.1em; }
.btn-ghost {
  background: var(--white); color: var(--pink-700);
  box-shadow: inset 0 0 0 2px var(--pink-200), var(--shadow-sm);
}
.btn-ghost:hover { color: var(--pink-600); box-shadow: inset 0 0 0 2px var(--pink-400), var(--shadow); }
.btn-ink { background: var(--ink); color: var(--white); box-shadow: 0 12px 28px rgba(20,8,14,.3); }
.btn-outline-light {
  background: transparent; color: var(--white);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.5);
}
.btn-outline-light:hover { background: rgba(255,255,255,.1); box-shadow: inset 0 0 0 2px #fff; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .45; cursor: not-allowed; transform: none !important; box-shadow: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row.center-x { justify-content: center; }

/* ---------------------------------------------------------- nav ---------- */
.demo-bar {
  background: var(--ink); color: #ffd4e6; font-size: .82rem; text-align: center;
  padding: .5rem 2.6rem .5rem 1rem; position: relative; letter-spacing: .01em;
}
.demo-bar strong { color: var(--pink-400); }
.demo-bar button {
  position: absolute; right: .5rem; top: 50%; transform: translateY(-50%);
  background: none; border: 0; color: #ffd4e6; font-size: 1.15rem; cursor: pointer;
  line-height: 1; padding: .2rem .5rem; border-radius: 8px;
}
.demo-bar button:hover { background: rgba(255,255,255,.12); }

.nav {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s, background .25s;
}
.nav.scrolled { box-shadow: 0 8px 30px rgba(126,0,51,.1); background: rgba(255,255,255,.96); }
.nav-inner {
  height: var(--nav-h); display: flex; align-items: center; gap: 20px;
  max-width: var(--wrap); margin-inline: auto; padding-inline: 22px;
}
.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 62px; width: auto; }
@media (max-width: 900px) { .brand img { height: 52px; } }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links a {
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  color: var(--ink); padding: .55em .9em; border-radius: 999px;
  position: relative; transition: color .18s, background .18s;
}
.nav-links a:hover { background: var(--pink-100); color: var(--pink-700); }
.nav-links a.active { color: var(--pink-600); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 50%; bottom: .18em; transform: translateX(-50%);
  width: 20px; height: 4px; border-radius: 999px; background: var(--grad-hot);
}
.nav-cta { margin-left: 10px; }
.nav-phone {
  display: inline-flex; align-items: center; gap: .45rem; font-weight: 600;
  color: var(--ink); font-size: .95rem; padding: .4em .7em; border-radius: 999px;
}
.nav-phone:hover { background: var(--pink-100); color: var(--pink-700); }
.nav-phone svg { width: 17px; height: 17px; color: var(--pink-600); }

/* five nav items + phone + CTA gets tight on mid-size laptops */
@media (max-width: 1150px) and (min-width: 901px) {
  .nav-phone { display: none; }
  .nav-links { gap: 0; }
  .nav-links a { padding: .55em .7em; font-size: .96rem; }
}

.burger {
  display: none; margin-left: auto; background: var(--white); border: 0; cursor: pointer;
  width: 46px; height: 46px; border-radius: 14px; box-shadow: inset 0 0 0 2px var(--pink-200);
  position: relative;
}
.burger span {
  position: absolute; left: 12px; width: 22px; height: 2.5px; border-radius: 3px;
  background: var(--ink); transition: transform .25s, opacity .2s;
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .burger { display: block; }
  .nav-links {
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 6px;
    background: var(--white); padding: 16px 22px 24px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .7em 1em; font-size: 1.05rem; }
  .nav-links a.active::after { left: 1.2em; transform: none; bottom: .5em; }
  .nav-cta, .nav-phone { margin-left: 0; }
  .nav-cta { justify-content: center; }
}

/* --------------------------------------------------------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 500px at 88% -8%, #ffd9e8 0%, transparent 60%),
    radial-gradient(700px 480px at 4% 105%, #ffe9f2 0%, transparent 62%),
    var(--white);
  padding: clamp(44px, 6vw, 84px) 0 clamp(60px, 7vw, 100px);
}
.hero-grid {
  display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.hero h1 { margin-bottom: .35em; }
.hero-sub { font-size: 1.16rem; max-width: 34em; color: var(--ink-2); }
.hero-tag {
  font-family: var(--font-script); font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  color: var(--pink-500); margin: 0 0 .6em; transform: rotate(-1.4deg);
}
.hero-pills { display: flex; flex-wrap: wrap; gap: 9px; margin: 0 0 1.6rem; padding: 0; list-style: none; }
.hero-pills li {
  display: inline-flex; align-items: center; gap: .4rem; margin: 0;
  background: var(--white); box-shadow: var(--shadow-sm), inset 0 0 0 1.5px var(--pink-200);
  border-radius: 999px; padding: .42em .95em; font-size: .88rem; font-weight: 600; color: var(--pink-800);
}
.hero-pills li::before { content: '✦'; color: var(--pink-400); font-size: .9em; }
.hero-trust { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 1.7rem; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 1.1rem; filter: drop-shadow(0 2px 3px rgba(0,0,0,.12)); }
.hero-trust small { display: block; color: var(--ink-3); font-size: .84rem; line-height: 1.4; }

/* hero art */
.hero-art { position: relative; }
.hero-card {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); background: var(--ink);
  aspect-ratio: 4 / 3.2;
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card .cap {
  position: absolute; inset: auto 0 0 0; padding: 46px 22px 20px; color: #fff;
  background: linear-gradient(to top, rgba(15,4,9,.88), transparent);
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
}
.float-card {
  position: absolute; background: var(--white); border-radius: var(--r);
  box-shadow: var(--shadow); padding: 14px 18px; display: flex; align-items: center; gap: 12px;
  animation: bob 4.5s ease-in-out infinite;
}
.float-card .fc-ico {
  width: 42px; height: 42px; border-radius: 13px; background: var(--grad-hot);
  display: grid; place-items: center; color: #fff; flex: none;
}
.float-card .fc-ico svg { width: 22px; height: 22px; }
.float-card b { display: block; font-family: var(--font-display); color: var(--ink); font-size: 1rem; line-height: 1.2; }
.float-card small { color: var(--ink-3); font-size: .78rem; }
.fc-1 { top: -18px; left: -26px; }
.fc-2 { bottom: 34px; right: -30px; animation-delay: -2.2s; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }

.blob { position: absolute; border-radius: 50%; filter: blur(0.5px); opacity: .55; z-index: -1; }

/* sparkles */
.sparkle { position: absolute; pointer-events: none; color: var(--pink-400); opacity: .0; animation: twinkle 3.4s ease-in-out infinite; }
.sparkle svg { display: block; }
@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(.6) rotate(0deg); }
  50% { opacity: .95; transform: scale(1) rotate(16deg); }
}

/* ---------------------------------------------------- marquee band ------- */
.marquee {
  background: var(--grad-hot); color: #fff; padding: 14px 0; overflow: hidden;
  border-block: 3px solid var(--ink);
}
.marquee-track { display: flex; gap: 42px; width: max-content; animation: slide 26s linear infinite; }
.marquee span {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; font-size: .96rem; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 42px;
}
.marquee span::after { content: '♥'; color: var(--pink-200); }
@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track, .float-card, .sparkle { animation: none !important; }
}

/* ------------------------------------------------------- cards ----------- */
.grid { display: grid; gap: 24px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); border-radius: var(--r-lg); padding: 28px;
  box-shadow: var(--shadow-sm), inset 0 0 0 1.5px var(--line);
  transition: transform .22s cubic-bezier(.34,1.4,.64,1), box-shadow .22s;
  position: relative;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow), inset 0 0 0 1.5px var(--pink-200); }
.card h3 { margin-bottom: .35em; }
.card p:last-child { margin-bottom: 0; }

.svc-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.svc-media {
  position: relative; aspect-ratio: 16 / 10; background: var(--grad-soft);
  display: grid; place-items: center; overflow: hidden;
}
.svc-media img { width: 100%; height: 100%; object-fit: cover; }
.svc-media .svc-ill { width: 100%; height: 100%; }
/* to use a real photo instead: swap the svc-ill <img src> for your .jpg */
.svc-badge {
  position: absolute; top: 12px; left: 12px; background: var(--ink); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase; padding: .35em .8em; border-radius: 999px;
}
.svc-badge.pop { background: var(--grad-hot); }
.svc-body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.svc-body h3 { display: flex; align-items: center; gap: .5rem; }
.svc-list { list-style: none; padding: 0; margin: 0 0 1.2em; }
.svc-list li { position: relative; padding-left: 1.6em; font-size: .93rem; color: var(--ink-2); }
.svc-list li::before {
  content: ''; position: absolute; left: 0; top: .45em; width: 15px; height: 15px;
  border-radius: 50%; background: var(--pink-100);
  box-shadow: inset 0 0 0 1.5px var(--pink-300);
}
.svc-list li::after {
  content: ''; position: absolute; left: 4.5px; top: .72em; width: 6px; height: 3.5px;
  border-left: 2px solid var(--pink-600); border-bottom: 2px solid var(--pink-600);
  transform: rotate(-45deg);
}
.svc-foot {
  margin-top: auto; display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding-top: 14px; border-top: 1px dashed var(--line);
}
.price { font-family: var(--font-display); font-weight: 800; color: var(--pink-700); font-size: 1.05rem; }
.price small { display: block; font-weight: 500; color: var(--ink-3); font-size: .72rem; letter-spacing: .02em; }
.svc-foot a { font-family: var(--font-display); font-weight: 700; font-size: .95rem; }
.svc-foot a::after { content: ' →'; }

/* icon tile */
.ico {
  width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center;
  background: var(--grad-hot); color: #fff; margin-bottom: 16px; flex: none;
  box-shadow: 0 8px 18px rgba(230,19,108,.28);
}
.ico svg { width: 29px; height: 29px; }
.ico-soft { background: var(--pink-100); color: var(--pink-600); box-shadow: none; }

/* numbered steps */
.steps { counter-reset: s; }
.step { position: relative; padding-left: 74px; }
.step::before {
  counter-increment: s; content: counter(s);
  position: absolute; left: 0; top: 0; width: 54px; height: 54px; border-radius: 18px;
  background: var(--white); color: var(--pink-600); display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.5rem;
  box-shadow: inset 0 0 0 2.5px var(--pink-200);
}
.sec-ink .step::before { background: rgba(255,61,139,.14); box-shadow: inset 0 0 0 2.5px rgba(255,61,139,.45); color: var(--pink-300); }
.step h3 { margin-bottom: .25em; }
.step p { margin-bottom: 0; font-size: .95rem; }

/* ------------------------------------------------- before / after -------- */
.ba-wrap { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.ba {
  position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow);
  aspect-ratio: 494 / 314; background: var(--ink); user-select: none; touch-action: none;
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba .after-img { clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba-line {
  position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 4px;
  background: #fff; box-shadow: 0 0 14px rgba(0,0,0,.4); transform: translateX(-2px);
}
.ba-knob {
  position: absolute; top: 50%; left: var(--pos, 50%); transform: translate(-50%, -50%);
  width: 48px; height: 48px; border-radius: 50%; background: var(--white);
  box-shadow: 0 6px 18px rgba(0,0,0,.35); display: grid; place-items: center;
  cursor: ew-resize;
}
.ba-knob::before {
  content: ''; width: 26px; height: 14px;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 14' fill='none' stroke='%23e6136c' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 3 4 7l5 4M17 3l5 4-5 4'/%3E%3C/svg%3E");
}
.ba-tag {
  position: absolute; bottom: 14px; font-family: var(--font-display); font-weight: 700;
  font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: #fff;
  padding: .34em .8em; border-radius: 999px;
}
.ba-tag.b { left: 14px; background: rgba(20,8,14,.82); }
.ba-tag.a { right: 14px; background: var(--pink-600); }
.ba-range { position: absolute; inset: 0; opacity: 0; cursor: ew-resize; width: 100%; height: 100%; margin: 0; }

/* ------------------------------------------------------ stats ------------ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { text-align: center; padding: 26px 14px; border-radius: var(--r-lg); background: rgba(255,255,255,.06); }
.sec-ink .stat { box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.12); }
.stat b {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1; color: var(--pink-400); margin-bottom: .25em;
}
.stat span { font-size: .88rem; letter-spacing: .04em; }

/* ------------------------------------------------- testimonials ---------- */
.quote {
  background: var(--white); border-radius: var(--r-lg); padding: 30px;
  box-shadow: var(--shadow-sm), inset 0 0 0 1.5px var(--line); position: relative;
}
.quote::before {
  content: '“'; position: absolute; top: -6px; right: 22px; font-family: var(--font-display);
  font-size: 5.5rem; color: var(--pink-200); line-height: 1;
}
.quote p { font-size: 1rem; position: relative; z-index: 1; }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--grad-hot); color: #fff;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; flex: none;
}
.who b { display: block; font-family: var(--font-display); color: var(--ink); line-height: 1.2; }
.who small { color: var(--ink-3); font-size: .8rem; }

/* ------------------------------------------------------- areas ----------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0; }
.chips li {
  margin: 0; background: var(--white); padding: .48em 1.05em; border-radius: 999px;
  font-size: .9rem; font-weight: 500; color: var(--ink-2);
  box-shadow: inset 0 0 0 1.5px var(--line); transition: transform .16s, box-shadow .16s;
}
.chips li:hover { transform: translateY(-2px); box-shadow: inset 0 0 0 1.5px var(--pink-300); color: var(--pink-700); }

/* --------------------------------------------------------- faq ----------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item {
  background: var(--white); border-radius: var(--r); margin-bottom: 12px;
  box-shadow: inset 0 0 0 1.5px var(--line); overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--ink);
  padding: 20px 58px 20px 22px; position: relative;
}
.faq-q::after {
  content: '+'; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%; background: var(--pink-100); color: var(--pink-600);
  display: grid; place-items: center; font-size: 1.3rem; transition: transform .25s, background .25s;
}
.faq-item.open .faq-q::after { content: '−'; background: var(--grad-hot); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a > div { padding: 0 22px 20px; font-size: .96rem; color: var(--ink-3); }

/* --------------------------------------------------------- cta ----------- */
.cta {
  background: var(--grad-hot); color: #fff; border-radius: var(--r-xl);
  padding: clamp(38px, 5vw, 66px); text-align: center; position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta h2 { color: #fff; }
.cta p { color: #ffe3ef; max-width: 46em; margin-inline: auto; }
.cta::after {
  content: ''; position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: rgba(255,255,255,.11); top: -160px; right: -110px;
}
.cta::before {
  content: ''; position: absolute; width: 260px; height: 260px; border-radius: 50%;
  background: rgba(20,8,14,.12); bottom: -140px; left: -80px;
}
.cta > * { position: relative; z-index: 1; }

/* ------------------------------------------------------ footer ----------- */
.footer { background: var(--grad-ink); color: #d9b9c8; padding: clamp(52px, 6vw, 80px) 0 0; }
.footer h4 {
  color: #fff; font-family: var(--font-display); font-size: 1.05rem;
  letter-spacing: .04em; margin-bottom: 1rem;
}
.footer a { color: #f0cddc; }
.footer a:hover { color: var(--pink-400); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 38px; }
.footer img.flogo { width: 210px; margin-bottom: 14px; }
.footer ul { list-style: none; padding: 0; }
.footer li { margin-bottom: .55em; font-size: .94rem; }
.fcontact { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 14px; font-size: .94rem; }
.fcontact svg { width: 19px; height: 19px; color: var(--pink-400); flex: none; margin-top: 3px; }
.socials { display: flex; gap: 10px; margin-top: 8px; }
.socials a {
  width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center;
  background: rgba(255,255,255,.08); color: #fff; transition: background .2s, transform .2s;
}
.socials a:hover { background: var(--grad-hot); transform: translateY(-3px); }
.socials svg { width: 20px; height: 20px; }
.footer-bar {
  margin-top: clamp(38px, 5vw, 58px); border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: .84rem; color: #ad8b9c;
}

/* mobile sticky call bar */
.mobile-bar { display: none; }
@media (max-width: 700px) {
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 95;
    background: rgba(255,255,255,.94); backdrop-filter: blur(12px);
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line); box-shadow: 0 -8px 24px rgba(126,0,51,.12);
  }
  .mobile-bar .btn { padding: .8em 1em; font-size: .98rem; }
  body { padding-bottom: 74px; }
}

/* ------------------------------------------------------- page hero ------- */
.page-hero {
  background:
    radial-gradient(700px 400px at 85% 0%, #ffd9e8 0%, transparent 62%),
    var(--grad-soft);
  padding: clamp(44px, 6vw, 78px) 0 clamp(44px, 6vw, 70px);
  text-align: center; position: relative; overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); }
.page-hero p { max-width: 620px; margin-inline: auto; }
.crumbs { font-size: .85rem; color: var(--ink-3); margin-bottom: 1rem; }
.crumbs a { color: var(--pink-700); }

/* --------------------------------------------------------- forms --------- */
.field { margin-bottom: 18px; }
.field > label, .fieldset-legend {
  display: block; font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  color: var(--ink); margin-bottom: .45em;
}
.field .hint { font-size: .82rem; color: var(--ink-3); font-weight: 400; display: block; margin-top: -.2em; margin-bottom: .5em; }
.req { color: var(--pink-600); }
input[type=text], input[type=email], input[type=tel], input[type=number], select, textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--white); border: 2px solid var(--line); border-radius: var(--r-sm);
  padding: .78em .95em; transition: border-color .18s, box-shadow .18s;
}
textarea { min-height: 120px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--pink-400); box-shadow: 0 0 0 4px var(--pink-100);
}
input.invalid, select.invalid, textarea.invalid { border-color: #e0245e; background: #fff6f8; }
.err { display: none; color: #c2185b; font-size: .82rem; margin-top: .35em; font-weight: 500; }
.err.show { display: block; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
fieldset { border: 0; padding: 0; margin: 0 0 18px; }

/* selectable option tiles (checkbox + radio) */
.opt-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); gap: 12px; }
.opt {
  position: relative; display: flex; align-items: flex-start; gap: 12px; cursor: pointer;
  background: var(--white); border-radius: var(--r); padding: 15px 16px;
  box-shadow: inset 0 0 0 2px var(--line); transition: box-shadow .18s, transform .18s, background .18s;
}
.opt:hover { box-shadow: inset 0 0 0 2px var(--pink-300); transform: translateY(-2px); }
.opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.opt .box {
  width: 24px; height: 24px; border-radius: 8px; flex: none; margin-top: 1px;
  background: var(--pink-50); box-shadow: inset 0 0 0 2px var(--pink-200);
  display: grid; place-items: center; transition: background .18s, box-shadow .18s;
}
.opt input[type=radio] ~ .box { border-radius: 50%; }
.opt .box svg { width: 14px; height: 14px; color: #fff; opacity: 0; transform: scale(.5); transition: opacity .18s, transform .18s; }
.opt .txt b { display: block; font-family: var(--font-display); font-size: 1rem; color: var(--ink); line-height: 1.25; }
.opt .txt small { color: var(--ink-3); font-size: .82rem; line-height: 1.4; display: block; }
.opt:has(input:checked) { background: var(--pink-50); box-shadow: inset 0 0 0 2.5px var(--pink-500), 0 8px 20px rgba(230,19,108,.14); }
.opt:has(input:checked) .box { background: var(--grad-hot); box-shadow: none; }
.opt:has(input:checked) .box svg { opacity: 1; transform: scale(1); }
.opt input:focus-visible ~ .box { outline: 3px solid var(--pink-500); outline-offset: 3px; }

/* compact pill choices */
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { position: relative; cursor: pointer; }
.pill input { position: absolute; opacity: 0; width: 0; height: 0; }
.pill span {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-display); font-weight: 600; font-size: .95rem; color: var(--ink-2);
  background: var(--white); padding: .6em 1.15em; border-radius: 999px;
  box-shadow: inset 0 0 0 2px var(--line); transition: all .18s;
}
.pill:hover span { box-shadow: inset 0 0 0 2px var(--pink-300); color: var(--pink-700); }
.pill input:checked ~ span {
  background: var(--grad-hot); color: #fff; box-shadow: 0 8px 18px rgba(230,19,108,.28);
}
.pill input:focus-visible ~ span { outline: 3px solid var(--pink-500); outline-offset: 3px; }
.pill input:disabled ~ span { opacity: .4; cursor: not-allowed; text-decoration: line-through; }

/* ------------------------------------------------------- careers --------- */
.form-section { padding-top: 30px; margin-top: 30px; border-top: 1px dashed var(--line); }
.form-section:first-of-type { padding-top: 0; margin-top: 0; border-top: 0; }
.form-section > h3 {
  display: flex; align-items: center; gap: .6rem; margin-bottom: .2em; font-size: 1.3rem;
}
.form-section > h3 i {
  font-style: normal; width: 32px; height: 32px; border-radius: 10px; flex: none;
  background: var(--grad-hot); color: #fff; display: grid; place-items: center;
  font-family: var(--font-display); font-size: .95rem; font-weight: 700;
}
.form-section > p.hint-lg { color: var(--ink-3); font-size: .93rem; margin: 0 0 1.2em 42px; }

.filefield { position: relative; }
.filefield input[type=file] {
  position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer;
}
.filebox {
  display: flex; align-items: center; gap: 15px; padding: 20px;
  border-radius: var(--r); border: 2px dashed var(--pink-200); background: var(--pink-50);
  transition: border-color .18s, background .18s;
}
.filefield:hover .filebox { border-color: var(--pink-400); background: var(--pink-100); }
.filefield input:focus-visible ~ .filebox { border-color: var(--pink-500); box-shadow: 0 0 0 4px var(--pink-100); }
.filebox .fi {
  width: 44px; height: 44px; border-radius: 14px; flex: none; display: grid; place-items: center;
  background: var(--white); color: var(--pink-600); box-shadow: var(--shadow-sm);
}
.filebox .fi svg { width: 22px; height: 22px; }
.filebox b { display: block; font-family: var(--font-display); color: var(--ink); font-size: 1rem; }
.filebox small { color: var(--ink-3); font-size: .82rem; }
.filefield.has-file .filebox { border-style: solid; border-color: var(--mint); background: #effcf8; }

.role { display: flex; gap: 18px; align-items: flex-start; }
.role .ico { margin-bottom: 0; }
.role h3 { margin-bottom: .2em; font-size: 1.15rem; }
.role p { font-size: .93rem; margin-bottom: .6em; }
.role .tags { display: flex; flex-wrap: wrap; gap: 7px; }
.role .tags span {
  font-size: .75rem; font-weight: 600; letter-spacing: .03em; text-transform: uppercase;
  background: var(--pink-100); color: var(--pink-800); padding: .3em .7em; border-radius: 999px;
}

.perks { list-style: none; padding: 0; margin: 0; }
.perks li { display: flex; gap: 11px; margin-bottom: 14px; font-size: .95rem; align-items: flex-start; }
.perks li svg { width: 20px; height: 20px; color: var(--pink-400); flex: none; margin-top: 3px; }

/* ------------------------------------------------------- booking --------- */
.book-layout { display: grid; grid-template-columns: 1fr 372px; gap: 32px; align-items: start; }
.book-card {
  background: var(--white); border-radius: var(--r-lg); padding: clamp(22px, 3vw, 38px);
  box-shadow: var(--shadow), inset 0 0 0 1.5px var(--line);
}
.progress { margin-bottom: 30px; }
.progress-track { height: 8px; border-radius: 999px; background: var(--pink-100); overflow: hidden; }
.progress-fill { height: 100%; width: 25%; border-radius: 999px; background: var(--grad-hot); transition: width .35s cubic-bezier(.4,1.3,.5,1); }
.progress-steps { display: flex; justify-content: space-between; margin-top: 14px; gap: 6px; }
.pstep { flex: 1; text-align: center; font-size: .8rem; color: var(--ink-3); font-weight: 500; cursor: pointer; }
.pstep:hover b { box-shadow: inset 0 0 0 2px var(--pink-400); }
.pstep b {
  display: grid; place-items: center; width: 30px; height: 30px; margin: 0 auto 6px;
  border-radius: 50%; background: var(--pink-100); color: var(--pink-600);
  font-family: var(--font-display); font-size: .9rem; transition: all .25s;
}
.pstep.active b { background: var(--grad-hot); color: #fff; box-shadow: 0 6px 14px rgba(230,19,108,.3); }
.pstep.active { color: var(--pink-700); font-weight: 600; }
.pstep.done b { background: var(--mint); color: #063d33; }
.step-panel { display: none; animation: fadeUp .35s ease both; }
.step-panel.active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.step-title { display: flex; align-items: baseline; gap: .6rem; flex-wrap: wrap; margin-bottom: .3em; }
.step-title h2 { font-size: clamp(1.5rem, 3vw, 2.05rem); margin: 0; }
.step-of { font-size: .8rem; color: var(--pink-600); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.step-nav { display: flex; gap: 12px; justify-content: space-between; margin-top: 30px; padding-top: 22px; border-top: 1px dashed var(--line); }

/* calendar */
.cal-row { display: grid; grid-template-columns: 1.15fr 1fr; gap: 26px; }
.cal { background: var(--pink-50); border-radius: var(--r); padding: 18px; box-shadow: inset 0 0 0 1.5px var(--line); }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cal-head b { font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); }
.cal-nav { display: flex; gap: 8px; }
.cal-nav button {
  width: 36px; height: 36px; border-radius: 12px; border: 0; cursor: pointer;
  background: var(--white); color: var(--pink-600); font-size: 1.1rem; line-height: 1;
  box-shadow: var(--shadow-sm); transition: transform .16s, background .16s, color .16s;
}
.cal-nav button:hover:not(:disabled) { background: var(--grad-hot); color: #fff; transform: translateY(-2px); }
.cal-nav button:disabled { opacity: .35; cursor: not-allowed; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.cal-dow {
  text-align: center; font-size: .7rem; font-weight: 700; color: var(--ink-3);
  text-transform: uppercase; letter-spacing: .06em; padding-bottom: 6px;
}
.cal-day {
  aspect-ratio: 1; border: 0; border-radius: 12px; cursor: pointer; background: var(--white);
  font-family: var(--font-display); font-weight: 600; font-size: .95rem; color: var(--ink);
  position: relative; transition: transform .14s, background .18s, color .18s, box-shadow .18s;
  display: grid; place-items: center; padding: 0;
}
.cal-day:hover:not(:disabled) { background: var(--pink-100); transform: scale(1.07); color: var(--pink-800); }
.cal-day.empty { background: none; cursor: default; }
.cal-day:disabled { color: #cdbcc4; background: #faf3f6; cursor: not-allowed; }
.cal-day.full { color: #d59fb4; text-decoration: line-through; }
.cal-day.today { box-shadow: inset 0 0 0 2px var(--pink-300); }
.cal-day.sel {
  background: var(--grad-hot); color: #fff; box-shadow: 0 8px 18px rgba(230,19,108,.35);
  transform: scale(1.06);
}
.cal-day .dot {
  position: absolute; bottom: 5px; left: 50%; transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%; background: var(--mint);
}
.cal-day.sel .dot { background: #fff; }
.cal-legend { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 14px; font-size: .76rem; color: var(--ink-3); }
.cal-legend i { display: inline-block; width: 9px; height: 9px; border-radius: 50%; margin-right: 5px; }
.slot-box h4 { font-family: var(--font-display); font-size: 1rem; margin-bottom: .7em; }
.picked {
  background: var(--pink-50); border-radius: var(--r); padding: 16px 18px; margin-bottom: 20px;
  box-shadow: inset 0 0 0 1.5px var(--pink-200);
}
.picked small { display: block; color: var(--pink-700); font-weight: 600; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.picked b { font-family: var(--font-display); font-size: 1.18rem; color: var(--ink); }

/* summary sidebar */
.summary { position: sticky; top: calc(var(--nav-h) + 20px); }
.summary-card {
  background: var(--grad-ink); color: #e9c7d7; border-radius: var(--r-lg);
  padding: 26px; box-shadow: var(--shadow-lg);
}
.summary-card h3 { color: #fff; font-size: 1.25rem; display: flex; align-items: center; gap: .5rem; }
.sum-list { list-style: none; padding: 0; margin: 0 0 18px; }
.sum-list li {
  display: flex; justify-content: space-between; gap: 14px; font-size: .9rem;
  padding: 9px 0; border-bottom: 1px dashed rgba(255,255,255,.14);
}
.sum-list li span:first-child { color: #b9909f; }
.sum-list li span:last-child { text-align: right; color: #fff; font-weight: 500; }
.sum-list li.none { color: #8f6b7a; font-style: italic; justify-content: flex-start; }
.sum-total {
  background: rgba(255,61,139,.14); border-radius: var(--r); padding: 16px 18px;
  box-shadow: inset 0 0 0 1.5px rgba(255,61,139,.3);
}
.sum-total .t-row { display: flex; justify-content: space-between; align-items: baseline; }
.sum-total b { font-family: var(--font-display); font-size: 1.7rem; color: #fff; }
.sum-total small { display: block; font-size: .74rem; color: #b9909f; margin-top: 6px; line-height: 1.5; }
.summary-help { margin-top: 18px; font-size: .86rem; }
.summary-help a { color: var(--pink-300); font-weight: 600; }

/* confirmation */
.confirm { text-align: center; max-width: 640px; margin-inline: auto; }
.confirm .tick {
  width: 92px; height: 92px; border-radius: 50%; margin: 0 auto 22px;
  background: var(--grad-hot); display: grid; place-items: center; color: #fff;
  box-shadow: var(--shadow-pink); animation: pop .5s cubic-bezier(.34,1.6,.64,1) both;
}
.confirm .tick svg { width: 46px; height: 46px; }
@keyframes pop { from { transform: scale(.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.ref {
  display: inline-block; font-family: var(--font-display); font-weight: 800; letter-spacing: .1em;
  background: var(--pink-100); color: var(--pink-800); padding: .5em 1.1em; border-radius: 999px;
  margin-bottom: 1.2rem;
}
.recap { text-align: left; background: var(--pink-50); border-radius: var(--r); padding: 22px; margin-bottom: 26px; box-shadow: inset 0 0 0 1.5px var(--pink-200); }
.recap dl { display: grid; grid-template-columns: 140px 1fr; gap: 10px 16px; margin: 0; font-size: .94rem; }
.recap dt { font-weight: 600; color: var(--pink-800); font-family: var(--font-display); }
.recap dd { margin: 0; color: var(--ink-2); }

/* demo-mode banner: only shown once the API probe reports there's no backend,
   so the deployed site never flashes a "concept demo" notice at a customer */
.demo-bar { display: none; }
html[data-mode="demo"] .demo-bar { display: block; }

/* Only true when there's no backend. Hidden on the deployed site so we never
   tell a customer their submission wasn't sent when it was. */
.demo-only { display: none; }
html[data-mode="demo"] .demo-only { display: inline; }

/* Notes flagging placeholder copy. Delete these blocks (or add
   html[data-content="final"] to each page) once the real content is signed off. */
html[data-content="final"] .draft-note { display: none !important; }

/* honeypot — off-screen rather than display:none, which some bots skip */
.hp {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px;
  overflow: hidden;
}

.submit-error { margin-top: 20px; }

/* The hidden attribute must beat our display:flex/grid class rules, otherwise
   empty alert boxes stay on screen. */
[hidden] { display: none !important; }

/* alert / note boxes */
.note {
  display: flex; gap: 12px; background: var(--pink-50); border-radius: var(--r);
  padding: 16px 18px; font-size: .9rem; box-shadow: inset 0 0 0 1.5px var(--pink-200);
  margin-bottom: 20px;
}
.note svg { width: 20px; height: 20px; color: var(--pink-600); flex: none; margin-top: 2px; }
.note p:last-child { margin-bottom: 0; }
.note.warn { background: #fffaf0; box-shadow: inset 0 0 0 1.5px #ffe1a8; }
.note.warn svg { color: #c58a00; }

/* contact tiles */
.contact-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ct {
  background: var(--white); border-radius: var(--r-lg); padding: 28px; text-align: center;
  box-shadow: var(--shadow-sm), inset 0 0 0 1.5px var(--line); transition: transform .2s, box-shadow .2s;
}
.ct:hover { transform: translateY(-5px); box-shadow: var(--shadow), inset 0 0 0 1.5px var(--pink-200); }
.ct .ico { margin-inline: auto; }
.ct b { display: block; font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); }
.ct a { font-weight: 600; }
.ct small { display: block; color: var(--ink-3); font-size: .84rem; margin-top: .3em; }

.hours { list-style: none; padding: 0; margin: 0; }
.hours li {
  display: flex; justify-content: space-between; gap: 14px; padding: 10px 0;
  border-bottom: 1px dashed var(--line); font-size: .95rem;
}
.hours li b { font-family: var(--font-display); color: var(--ink); font-weight: 600; }
.hours li.closed { color: var(--ink-3); }

/* gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery figure { margin: 0; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); position: relative; }
.gallery img { aspect-ratio: 1; object-fit: cover; width: 100%; transition: transform .4s; }
.gallery figure:hover img { transform: scale(1.07); }
.gallery figcaption {
  position: absolute; inset: auto 0 0 0; padding: 24px 12px 10px; color: #fff; font-size: .78rem;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  background: linear-gradient(to top, rgba(15,4,9,.85), transparent);
}

/* value list */
.values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.value { display: flex; gap: 16px; }
.value .ico { margin-bottom: 0; width: 50px; height: 50px; border-radius: 15px; }
.value .ico svg { width: 24px; height: 24px; }
.value h3 { font-size: 1.12rem; margin-bottom: .2em; }
.value p { font-size: .93rem; margin-bottom: 0; }

/* pricing table */
.table-wrap { overflow-x: auto; border-radius: var(--r-lg); box-shadow: var(--shadow-sm), inset 0 0 0 1.5px var(--line); background: #fff; }
table.tbl { width: 100%; border-collapse: collapse; min-width: 620px; }
table.tbl th, table.tbl td { padding: 15px 18px; text-align: left; font-size: .94rem; }
table.tbl thead th {
  background: var(--ink); color: #fff; font-family: var(--font-display); font-weight: 700;
  font-size: .84rem; letter-spacing: .07em; text-transform: uppercase;
}
table.tbl tbody tr + tr { border-top: 1px solid var(--line); }
table.tbl tbody tr:hover { background: var(--pink-50); }
table.tbl td strong { color: var(--pink-700); font-family: var(--font-display); }

/* ---------------------------------------------------------------- admin --- */
.admin-toolbar {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between;
  align-items: center; margin-bottom: 26px;
}
.admin-toolbar-right { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.admin-toolbar-right .btn { padding: .62em 1.2em; font-size: .95rem; }
.admin-toolbar-right input[type=month] { padding: .55em .8em; }

.admin-list { display: grid; gap: 20px; }
.admin-card { padding: 24px; }
.admin-card-head {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  align-items: flex-start; padding-bottom: 14px; margin-bottom: 16px;
  border-bottom: 1px dashed var(--line);
}
.admin-card-head h3 { margin-bottom: .2em; }
.admin-meta { display: flex; flex-wrap: wrap; gap: 12px; margin: 0; font-size: .82rem; color: var(--ink-3); }
.admin-meta span:first-child { font-family: var(--font-display); font-weight: 700; color: var(--pink-700); }
.admin-status { display: flex; align-items: center; gap: 10px; }
.admin-status select { width: auto; padding: .5em .7em; font-size: .9rem; }
.admin-badge {
  font-family: var(--font-display); font-weight: 700; font-size: .72rem;
  letter-spacing: .08em; text-transform: uppercase; padding: .35em .8em;
  border-radius: 999px; background: var(--pink-100); color: var(--pink-800);
}
.admin-badge.status-new { background: var(--grad-hot); color: #fff; }
.admin-badge.status-confirmed, .admin-badge.status-hired { background: #d8f7ef; color: #08453a; }
.admin-badge.status-completed { background: #e8e6ea; color: #43303a; }
.admin-badge.status-declined, .admin-badge.status-cancelled { background: #f4dde4; color: #8a2049; }

.admin-dl { display: grid; grid-template-columns: 150px 1fr; gap: 8px 18px; margin: 0 0 18px; font-size: .93rem; }
.admin-dl dt { font-family: var(--font-display); font-weight: 600; color: var(--pink-800); }
.admin-dl dd { margin: 0; color: var(--ink-2); white-space: pre-wrap; overflow-wrap: anywhere; }
.admin-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.admin-actions .btn { padding: .55em 1.15em; font-size: .92rem; }
.admin-hint { font-size: .85rem; color: var(--ink-3); }

@media (max-width: 620px) {
  .admin-dl { grid-template-columns: 1fr; gap: 2px 0; }
  .admin-dl dt { margin-top: .7em; }
}

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.8,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------------------------------------------------- responsive --------- */
@media (max-width: 1080px) {
  .book-layout { grid-template-columns: 1fr; }
  .summary { position: static; }
  .g-4, .stats, .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 520px; }
  .fc-1 { left: -8px; top: -12px; }
  .fc-2 { right: -8px; }
  .g-3, .contact-tiles, .values, .ba-wrap { grid-template-columns: 1fr; }
  .cal-row { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .g-2, .row-2, .row-3, .stats { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .float-card { padding: 10px 13px; }
  .float-card small { display: none; }
  .step { padding-left: 62px; }
  .recap dl { grid-template-columns: 1fr; gap: 2px 0; }
  .recap dt { margin-top: .6em; }
  .step-nav { flex-direction: column-reverse; }
  .step-nav .btn { width: 100%; }
}

/* print (quote confirmation) */
@media print {
  .nav, .footer, .mobile-bar, .demo-bar, .step-nav, .summary, .page-hero { display: none !important; }
  body { padding: 0; }
  .book-card { box-shadow: none; }
}

/* ==========================================================================
   Utility classes
   These replace inline style attributes, which the Content Security Policy
   blocks (style-src 'self'). Generated from the markup — one class per
   distinct declaration, so rendering is unchanged.
   ========================================================================== */
.u-bd-0 { border:0; }
.u-bg-e6136c { background:#e6136c; }
.u-bg-efd3de { background:#efd3de; }
.u-bs-inset00015px { box-shadow:inset 0 0 0 1.5px rgba(255,255,255,.12); }
.u-c-e9c7d7 { color:#e9c7d7; }
.u-c-fff { color:#fff; }
.u-d-none { display:none; }
.u-fs-105r { font-size:1.05rem; }
.u-fs-11r { font-size:1.1rem; }
.u-fs-12r { font-size:1.2rem; }
.u-fs-13r { font-size:1.3rem; }
.u-fs-15r { font-size:1.5rem; }
.u-fs-16r { font-size:1.6rem; }
.u-fs-1r { font-size:1rem; }
.u-fs-85r { font-size:.85rem; }
.u-fs-94r { font-size:.94rem; }
.u-fs-95r { font-size:.95rem; }
.u-fw-600 { font-weight:600; }
.u-gap-16 { gap:16px; }
.u-m-22px0 { margin:22px 0; }
.u-m-22px026px { margin:22px 0 26px; }
.u-mb-0 { margin-bottom:0; }
.u-mb-14 { margin-bottom:14px; }
.u-mb-18 { margin-bottom:18px; }
.u-mb-4e { margin-bottom:.4em; }
.u-mb-6e { margin-bottom:.6em; }
.u-ml-auto { margin-left:auto; }
.u-mt-18 { margin-top:18px; }
.u-mt-20 { margin-top:20px; }
.u-mt-22 { margin-top:22px; }
.u-mt-26 { margin-top:26px; }
.u-mt-28 { margin-top:28px; }
.u-mt-30 { margin-top:30px; }
.u-mt-32 { margin-top:32px; }
.u-mt-38 { margin-top:38px; }
.u-mt-40 { margin-top:40px; }
.u-mt-44 { margin-top:44px; }
.u-w-auto { width:auto; }
.u-wb-breakword { word-break:break-word; }
.u-x1 { align-items:center; gap:48px; }
.u-x10 { padding:0; overflow:hidden; background:var(--ink); }
.u-x11 { margin-top:22px; font-size:.9rem; color:var(--ink-3); }
.u-x12 { background:var(--grad-soft); border-bottom:1px solid var(--line); }
.u-x13 { font-size:clamp(1.8rem,4vw,2.6rem); margin-bottom:.2em; }
.u-x14 { background:var(--mint); }
.u-x15 { margin-top:24px; font-size:.9rem; color:var(--ink-3); }
.u-x16 { font-size:.93rem; margin-bottom:.8em; }
.u-x17 { font-size:.85rem; color:var(--ink-3); }
.u-x18 { font-size:.85rem; color:var(--ink-3); margin:14px 0 0; }
.u-x19 { border-radius:var(--r-xl); box-shadow:none; aspect-ratio:4/3.2; }
.u-x2 { padding:0; overflow:hidden; }
.u-x20 { margin:24px 0 0; font-size:.82rem; color:#a8808f; }
.u-x21 { margin:18px 0 0; font-size:.84rem; color:#a8808f; }
.u-x22 { background:rgba(255,255,255,.2); color:#fff; }
.u-x3 { gap:8px 28px; margin:22px 0; }
.u-x4 { padding-top:clamp(60px,9vw,120px); padding-bottom:clamp(60px,9vw,120px); }
.u-x5 { margin:0; font-size:.9rem; }
.u-x6 { margin-top:26px; font-size:.9rem; color:var(--ink-3); }
.u-x7 { color:var(--pink-400); }
.u-x8 { align-items:center; gap:52px; }
.u-x9 { font-size:1.5rem; transform:rotate(-1.5deg); }
.u-x25 { max-width: 900px; margin-inline: auto; }
.u-x26 { font-weight: 600; }
