/* ==========================================================================
   tokens.css — Bella'Loons Events (v2)
   Festive-yet-elegant: lavender (from the real logo) + champagne gold
   (echoes the real photos) + cream/blush neutrals. Light-committed.
   ========================================================================== */
:root {
  color-scheme: light;

  /* Brand palette (hex, matches critical CSS) */
  --ink: #2c2436;
  --ink-soft: #6a6076;
  --ink-faint: #9a90a6;
  --paper: #fbf7f2;
  --cream: #f4ece1;
  --cream-2: #efe6da;
  --white: #fffdfb;

  --lav: #a48fd0;
  --lav-soft: #e8def7;
  --lav-tint: #f3edfb;
  --lav-deep: #7c62b8;
  --lav-deeper: #6a52a3;

  --gold: #c9a24b;
  --gold-soft: #e7d6a8;
  --blush: #e8879e;
  --blush-soft: #f6d7de;

  --border: #ece3d8;
  --border-soft: #f1eae0;

  /* Semantic */
  --bg: var(--paper);
  --primary: var(--lav-deep);
  --primary-strong: var(--lav-deeper);
  --primary-contrast: #ffffff;
  --accent: var(--gold);

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --step--1: clamp(0.82rem, 0.79rem + 0.14vw, 0.9rem);
  --step-0:  clamp(1rem, 0.97rem + 0.16vw, 1.09rem);
  --step-1:  clamp(1.16rem, 1.09rem + 0.34vw, 1.4rem);
  --step-2:  clamp(1.45rem, 1.3rem + 0.7vw, 1.95rem);
  --step-3:  clamp(1.8rem, 1.55rem + 1.15vw, 2.7rem);
  --step-4:  clamp(2.1rem, 1.75rem + 1.7vw, 3.3rem);

  /* Layout */
  --container: 74rem;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --header-h: 4.75rem;

  /* Radii */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  /* Shadow (soft, warm) */
  --shadow-sm: 0 1px 2px rgba(44,36,54,.06), 0 1px 1px rgba(44,36,54,.04);
  --shadow: 0 10px 30px rgba(44,36,54,.09), 0 3px 8px rgba(44,36,54,.05);
  --shadow-lg: 0 30px 70px rgba(44,36,54,.14), 0 10px 24px rgba(44,36,54,.08);
  --shadow-lav: 0 16px 40px rgba(124,98,184,.22);

  /* Motion */
  --ease-out: cubic-bezier(.22,1,.36,1);
  --ease-spring: cubic-bezier(.34,1.4,.64,1);
  --dur: 320ms;
}
/* ==========================================================================
   base.css — reset + typography + a11y
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100svh;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  font-synthesis: none;
  overflow-x: clip;
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
ul[role="list"] { list-style: none; padding: 0; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .16em; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.015em;
  text-wrap: balance;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); }
p { text-wrap: pretty; }
em { font-style: italic; }
strong { font-weight: 650; }

::selection { background: var(--lav-deep); color: #fff; }

:focus-visible { outline: 3px solid var(--lav-deep); outline-offset: 2px; border-radius: 6px; }
:focus:not(:focus-visible) { outline: none; }

.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;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
/* ==========================================================================
   layout.css — containers, sections, section headers
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(3.25rem, 8vw, 6.5rem); }

/* Section header */
.sec-head { max-width: 44rem; margin-bottom: clamp(2rem, 5vw, 3rem); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head h2 { font-size: var(--step-3); margin-top: .5rem; }
.sec-head h2 em { color: var(--lav-deep); }
.sec-head__lead {
  margin-top: .9rem;
  color: var(--ink-soft);
  font-size: var(--step-1);
  line-height: 1.55;
}
.sec-head--center .sec-head__lead { margin-inline: auto; }

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55ch;
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lav-deep);
}
.eyebrow--center { justify-content: center; }
.eyebrow__dot {
  inline-size: .5rem; block-size: .5rem; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-soft);
}
.eyebrow--on-dark { color: #e6dcf7; }
.eyebrow--on-dark .eyebrow__dot { box-shadow: 0 0 0 3px rgba(201,162,75,.35); }
/* ==========================================================================
   components.css — Bella'Loons Events (v2)
   ========================================================================== */

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .55ch;
  padding: .85rem 1.5rem;
  min-height: 3rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: var(--step-0);
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .18s var(--ease-out), box-shadow .18s var(--ease-out), background .18s var(--ease-out);
}
.btn--lg { padding: 1rem 1.85rem; min-height: 3.4rem; font-size: var(--step-1); }
.btn--primary {
  background: var(--lav-deep); color: #fff;
  box-shadow: var(--shadow-lav);
}
.btn--primary:hover { transform: translateY(-2px); background: var(--lav-deeper); box-shadow: 0 20px 46px rgba(124,98,184,.32); }
.btn--soft {
  background: var(--white); color: var(--ink);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.btn--soft:hover { transform: translateY(-2px); border-color: var(--lav); color: var(--lav-deep); }
.btn--ghost-light {
  background: rgba(255,255,255,.1); color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn--ghost-light:hover { background: rgba(255,255,255,.18); }
.btn:active { transform: translateY(0); }

/* ---------------- Mobile menu ---------------- */
.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  z-index: 99;
  background: var(--white);
  border-block-end: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 1.25rem var(--gutter) 2rem;
  display: grid; gap: .35rem;
  transform: translateY(-115%);
  transition: transform var(--dur) var(--ease-out);
}
.mobile-menu[data-open="true"] { transform: translateY(0); }
.mobile-menu a {
  text-decoration: none; color: var(--ink);
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 600;
  padding-block: .55rem; border-block-end: 1px solid var(--border-soft);
}
.mobile-menu__cta {
  margin-top: .75rem;
  display: inline-flex !important; align-items: center; gap: .5ch;
  justify-content: center;
  background: var(--lav-deep); color: #fff !important;
  border-radius: var(--radius-pill); border: 0 !important;
  padding: .9rem 1.2rem !important; font-size: 1.05rem !important;
}

/* ---------------- HERO (one screen) ----------------
   Mobile/short: full-bleed background image + text overlay (always one screen).
   Desktop (>=60rem): elegant split — text left, framed photo right. */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid; align-content: end;
  padding-block: calc(var(--header-h) + 2svh) clamp(1.5rem, 5svh, 3rem);
  padding-inline: var(--gutter);
  overflow: clip;
}
.hero__grid { display: grid; gap: clamp(1.25rem, 4vw, 3rem); align-items: center; }
.hero__grid > * { position: relative; z-index: 1; }
.hero__blob { display: none; }

.hero__title {
  font-size: clamp(1.95rem, 1.2rem + 2vw + 1.4svh, 3.6rem);
  line-height: 1.04; margin-block: .55rem .85rem;
}
.hero__title em { color: #e7cf92; }
.hero__sub {
  font-size: clamp(1rem, .95rem + .3svh + .2vw, 1.22rem);
  max-width: 34rem; line-height: 1.55;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.3rem; }
.hero__facts {
  display: flex; flex-wrap: wrap; gap: .6rem 1.3rem;
  margin-top: 1.35rem;
  font-size: var(--step--1); font-weight: 500;
}
.hero__facts li { display: inline-flex; align-items: center; gap: .45ch; }
.hero__facts svg { color: var(--gold-soft); flex: none; }

/* Media as full-bleed background on mobile/short */
.hero__media { position: absolute; inset: 0; z-index: 0; margin: 0; }
.hero__frame { position: absolute; inset: 0; border: 0; border-radius: 0; box-shadow: none; overflow: hidden; }
.hero__frame img { inline-size: 100%; block-size: 100%; max-height: none; aspect-ratio: auto; object-fit: cover; object-position: center 28%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(178deg, rgba(38,28,54,.28) 0%, rgba(38,28,54,.5) 48%, rgba(28,20,42,.86) 100%);
}
.hero__badge { display: none; }

/* Overlay text is light on mobile */
.hero__text { color: #fff; text-shadow: 0 2px 14px rgba(20,14,30,.45); max-width: 36rem; }
.hero .eyebrow { color: #f1e8ff; }
.hero .eyebrow__dot { box-shadow: 0 0 0 3px rgba(201,162,75,.4); }
.hero__sub { color: #f2ecf7; }
.hero__facts { color: #ece4f4; }
.hero .btn--soft { background: rgba(255,255,255,.13); color: #fff; border-color: rgba(255,255,255,.5); box-shadow: none; }
.hero .btn--soft:hover { background: rgba(255,255,255,.22); color: #fff; border-color: #fff; }

/* DESKTOP: revert to split, dark text on paper */
@media (min-width: 60rem) {
  .hero { align-content: center; padding-block: calc(var(--header-h) + 2svh) 4svh; }
  .hero__grid { grid-template-columns: 1.05fr .95fr; }
  .hero::after { display: none; }
  .hero__blob { display: block; position: absolute; border-radius: 50%; filter: blur(50px); opacity: .5; pointer-events: none; z-index: 0; }
  .hero__blob--1 { inline-size: 30rem; block-size: 30rem; background: var(--lav-soft); inset-block-start: -8rem; inset-inline-end: -6rem; }
  .hero__blob--2 { inline-size: 22rem; block-size: 22rem; background: var(--blush-soft); inset-block-end: -6rem; inset-inline-start: -8rem; opacity: .45; }
  .hero__text { color: var(--ink); text-shadow: none; }
  .hero .eyebrow { color: var(--lav-deep); }
  .hero .eyebrow__dot { box-shadow: 0 0 0 3px var(--gold-soft); }
  .hero__title em { color: var(--lav-deep); }
  .hero__sub { color: var(--ink-soft); }
  .hero__facts { color: var(--ink-soft); }
  .hero__facts svg { color: var(--gold); }
  .hero .btn--soft { background: var(--white); color: var(--ink); border-color: var(--border); box-shadow: var(--shadow-sm); }
  .hero .btn--soft:hover { color: var(--lav-deep); border-color: var(--lav); }
  .hero__media { position: relative; inset: auto; justify-self: center; width: 100%; }
  .hero__frame {
    position: relative; inset: auto;
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-lg); border: 6px solid var(--white);
    transform: rotate(-1.4deg);
  }
  .hero__frame img { object-position: center; max-height: calc(100svh - var(--header-h) - 4rem); aspect-ratio: 5 / 5.4; }
  .hero__badge {
    display: inline-flex; position: absolute; inset-block-end: 1rem; inset-inline-start: 50%;
    transform: translateX(-50%); align-items: center; gap: .5ch;
    background: var(--white); color: var(--ink);
    padding: .55rem 1rem; border-radius: var(--radius-pill);
    font-size: var(--step--1); font-weight: 600; box-shadow: var(--shadow); white-space: nowrap;
  }
  .hero__badge svg { color: var(--gold); }
}

/* Compact portrait (e.g. 360x640, 375x667): trim facts + tighten to stay one screen */
@media (max-width: 59.99rem) and (max-height: 700px) {
  .hero { padding-block: calc(var(--header-h) + 1svh) 1.5rem; }
  .hero__facts { display: none; }
  .hero__title { margin-block: .45rem .65rem; }
  .hero__sub { max-width: 32rem; }
}
/* Very short (mobile landscape etc.) */
@media (max-width: 59.99rem) and (max-height: 560px) {
  .hero__sub { display: none; }
  .hero__title { margin-block: .3rem .55rem; }
}

/* ---------------- What we create ---------------- */
.creation-grid {
  display: grid; gap: 1.1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 40rem) { .creation-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64rem) { .creation-grid { grid-template-columns: repeat(4, 1fr); } }
.creation {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}
.creation:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--lav-soft); }
.creation__ic {
  display: grid; place-items: center;
  inline-size: 3rem; block-size: 3rem;
  border-radius: 14px;
  background: linear-gradient(150deg, var(--lav-tint), var(--lav-soft));
  color: var(--lav-deep);
  margin-bottom: 1rem;
}
.creation h3 { font-size: var(--step-1); margin-bottom: .4rem; }
.creation p { color: var(--ink-soft); font-size: var(--step-0); }

/* ---------------- DESIGN STUDIO (star tool) ---------------- */
.designer {
  background:
    radial-gradient(120% 80% at 15% 0%, var(--lav-tint), transparent 55%),
    radial-gradient(120% 90% at 100% 100%, var(--blush-soft), transparent 50%),
    var(--cream);
}
.studio {
  display: grid; gap: clamp(1.25rem, 3vw, 2.25rem);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3.5vw, 2.5rem);
  box-shadow: var(--shadow-lg);
}
@media (min-width: 56rem) { .studio { grid-template-columns: 1fr 1fr; align-items: stretch; } }

.studio__group { border: 0; padding: 0; margin: 0 0 1.35rem; }
.studio__group legend {
  font-family: var(--font-body);
  font-size: var(--step--1); font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: .7rem; padding: 0;
}
.chip-row, .swatch-row { display: flex; flex-wrap: wrap; gap: .55rem; }

.chip {
  padding: .6rem 1.05rem; min-height: 2.75rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  background: var(--paper);
  color: var(--ink); font-weight: 600; font-size: .96rem;
  transition: transform .16s var(--ease-out), border-color .16s, background .16s, color .16s;
}
.chip:hover { transform: translateY(-2px); border-color: var(--lav); }
.chip[aria-pressed="true"] {
  background: var(--lav-deep); color: #fff; border-color: var(--lav-deep);
  box-shadow: 0 8px 18px rgba(124,98,184,.24);
}

.swatch {
  display: inline-flex; align-items: center; gap: .55ch;
  padding: .5rem .95rem .5rem .55rem; min-height: 2.75rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  background: var(--paper);
  color: var(--ink); font-weight: 600; font-size: .92rem;
  transition: transform .16s var(--ease-out), border-color .16s, box-shadow .16s;
}
.swatch span {
  inline-size: 2.4rem; block-size: 1.4rem; border-radius: var(--radius-pill);
  background: linear-gradient(120deg, var(--a) 0 34%, var(--b) 34% 67%, var(--c) 67% 100%);
  box-shadow: inset 0 0 0 1px rgba(44,36,54,.08);
  flex: none;
}
.swatch:hover { transform: translateY(-2px); border-color: var(--lav); }
.swatch[aria-pressed="true"] { border-color: var(--lav-deep); box-shadow: 0 0 0 2px var(--lav-soft), var(--shadow-sm); }

.studio__desc {
  margin-top: .25rem; padding-top: 1.25rem;
  border-top: 1px dashed var(--border);
}
.studio__title { font-size: var(--step-2); color: var(--ink); }
.studio__title::first-letter { color: var(--lav-deep); }
.studio__style { color: var(--ink-soft); margin-top: .5rem; line-height: 1.55; }
.studio__elements {
  list-style: none; padding: 0; margin: 1rem 0 0;
  display: flex; flex-wrap: wrap; gap: .5rem;
}
.studio__elements li {
  display: inline-flex; align-items: center; gap: .5ch;
  padding: .35rem .8rem; border-radius: var(--radius-pill);
  background: var(--lav-tint); color: var(--lav-deeper);
  font-size: var(--step--1); font-weight: 600;
}
.studio__elements li::before { content: ""; inline-size: .4rem; block-size: .4rem; border-radius: 50%; background: var(--gold); }
.studio__cta { margin-top: 1.5rem; align-self: start; }

/* Stage / preview */
.studio__stage { display: grid; align-content: center; }
.studio__preview {
  border-radius: var(--radius);
  background:
    radial-gradient(90% 70% at 50% 15%, #fff, transparent 70%),
    linear-gradient(180deg, var(--paper), var(--cream));
  border: 1px solid var(--border);
  padding: clamp(1rem, 3vw, 1.75rem);
  text-align: center;
}
.balloon-svg { inline-size: 100%; max-inline-size: 26rem; margin-inline: auto; }
.balloon-svg .bln {
  transition: fill .5s var(--ease-out);
  filter: drop-shadow(0 3px 4px rgba(44,36,54,.1));
}
.balloon-svg .bln[data-tone="1"] { fill: var(--c1, #f3c6cf); }
.balloon-svg .bln[data-tone="2"] { fill: var(--c2, #f7e4d0); }
.balloon-svg .bln[data-tone="3"] { fill: var(--c3, #c9a24b); }
.balloon-svg .bln-plinth {
  fill: var(--c-plinth, #f4ece1);
  stroke: rgba(44,36,54,.1); stroke-width: 1;
  transition: fill .5s var(--ease-out);
}
.balloon-svg .bln-floor { stroke: rgba(44,36,54,.14); stroke-width: 2; stroke-linecap: round; }
/* gentle idle float */
.balloon-arch { transform-box: fill-box; transform-origin: center; animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@media (prefers-reduced-motion: reduce) { .balloon-arch { animation: none; } .balloon-svg .bln, .balloon-svg .bln-plinth { transition: none; } }
.studio__repnote { margin-top: .9rem; font-size: var(--step--1); color: var(--ink-faint); line-height: 1.5; max-width: 30rem; margin-inline: auto; }

/* ---------------- OUR WORK (gallery) ---------------- */
.work-grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
}
.work-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  background: var(--cream);
}
.work-card img { inline-size: 100%; block-size: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.work-card:hover img { transform: scale(1.05); }
.work-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(44,36,54,.72));
  pointer-events: none;
}
.work-card__cap {
  position: absolute; inset-block-end: 0; inset-inline: 0; z-index: 1;
  padding: 1rem 1.1rem; color: #fff; display: grid; gap: .1rem;
}
.work-card__cap b { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; }
.work-card__cap span { font-size: var(--step--1); color: rgba(255,255,255,.82); }
.work-card--feature { grid-column: span 2; aspect-ratio: 16 / 9; }
.work-card--tall, .work-card--a, .work-card--b { aspect-ratio: 3 / 4; }
@media (min-width: 52rem) {
  .work-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; }
  .work-card--feature { grid-column: 1 / 3; grid-row: 1 / 3; aspect-ratio: auto; }
  .work-card--tall { grid-column: 3; grid-row: 1 / 3; aspect-ratio: auto; }
  .work-card--a { grid-column: 1; }
  .work-card--b { grid-column: 2; }
}

/* ---------------- WHY US ---------------- */
.why__grid { display: grid; gap: clamp(1.75rem, 5vw, 3.5rem); align-items: center; }
@media (min-width: 56rem) { .why__grid { grid-template-columns: .85fr 1.15fr; } }
.why__stylist { position: relative; max-width: 24rem; }
.why__img {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 6px solid var(--white);
}
.why__img img { inline-size: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.why__stylist-cap {
  position: absolute; inset-block-end: -1rem; inset-inline-end: -0.5rem;
  background: var(--white); border-radius: var(--radius);
  padding: .7rem 1.15rem; box-shadow: var(--shadow); text-align: center;
}
.why__role { font-size: var(--step--1); color: var(--gold); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.why__name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--ink); }
.why__body h2 { font-size: var(--step-3); margin-top: .5rem; }
.why__lead { color: var(--ink-soft); font-size: var(--step-1); margin-top: .9rem; line-height: 1.55; }
.why__list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 1rem; }
.why__list li { display: flex; gap: .9rem; align-items: flex-start; }
.why__list li > span {
  flex: none; display: grid; place-items: center;
  inline-size: 2.75rem; block-size: 2.75rem; border-radius: 12px;
  background: var(--lav-tint); color: var(--lav-deep);
}
.why__list b { display: block; font-weight: 650; color: var(--ink); }
.why__list p { color: var(--ink-soft); font-size: var(--step-0); }

/* ---------------- FAQ ---------------- */
.faq__grid { display: grid; gap: clamp(1.75rem, 5vw, 3rem); }
@media (min-width: 56rem) { .faq__grid { grid-template-columns: .8fr 1.2fr; align-items: start; } }
.faq__aside h2 { font-size: var(--step-2); margin: .5rem 0 .7rem; }
.faq__aside p { color: var(--ink-soft); margin-bottom: 1.2rem; }
.faq__list { display: grid; gap: .7rem; }
.faq__item {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--white); overflow: hidden;
  transition: border-color var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.faq__item[data-open="true"] { border-color: var(--lav-soft); box-shadow: var(--shadow-sm); }
.faq__q {
  inline-size: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.1rem 1.35rem; text-align: start;
  font-family: var(--font-display); font-weight: 600; font-size: var(--step-1); color: var(--ink);
}
.faq__q .chev { flex: none; color: var(--lav-deep); transition: transform var(--dur) var(--ease-out); }
.faq__item[data-open="true"] .chev { transform: rotate(180deg); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--dur) var(--ease-out); }
.faq__item[data-open="true"] .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding: 0 1.35rem 1.25rem; color: var(--ink-soft); }

/* ---------------- CLOSER / CALL CTA ---------------- */
.closer__card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--lav-deeper), #43356b 70%, #2c2436);
  color: #fff; text-align: center;
  padding: clamp(2.25rem, 7vw, 4.5rem) clamp(1.35rem, 5vw, 3rem);
  box-shadow: var(--shadow-lg);
}
.closer__blob {
  position: absolute; inline-size: 26rem; block-size: 26rem; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,75,.45), transparent 65%);
  inset-block-start: -10rem; inset-inline-end: -6rem; filter: blur(10px); pointer-events: none;
}
.closer__card > * { position: relative; z-index: 1; }
.closer__card h2 { color: #fff; font-size: var(--step-3); margin-top: .5rem; }
.closer__lead { color: #e5ddf1; max-width: 34rem; margin: .9rem auto 0; font-size: var(--step-1); }
.closer__ctas { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 1.75rem; }
.closer__area { margin-top: 1.4rem; font-size: var(--step--1); color: #cfc4e6; display: inline-flex; align-items: center; gap: .5ch; }
.closer__area svg { color: var(--gold-soft); }

/* ---------------- FOOTER ---------------- */
.bl-foot { background: var(--ink); color: #cfc7d6; }
.bl-foot__band {
  background: linear-gradient(120deg, var(--lav-deep), var(--lav-deeper));
}
.bl-foot__band-in {
  display: flex; flex-wrap: wrap; gap: 1.25rem;
  align-items: center; justify-content: space-between;
  padding-block: clamp(1.5rem, 4vw, 2.25rem);
}
.bl-foot__band-eyebrow { color: #e6dcf7; font-size: var(--step--1); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.bl-foot__band-title { font-family: var(--font-display); font-size: var(--step-2); color: #fff; margin-top: .25rem; }
.bl-foot__band-btn {
  display: inline-flex; align-items: center; gap: .55ch;
  background: #fff; color: var(--lav-deeper);
  padding: .95rem 1.6rem; border-radius: var(--radius-pill);
  font-weight: 700; text-decoration: none; white-space: nowrap;
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
  transition: transform .18s var(--ease-out);
}
.bl-foot__band-btn:hover { transform: translateY(-2px); }

.bl-foot__cols {
  display: grid; gap: 2rem 1.5rem;
  grid-template-columns: 1fr; padding-block: clamp(2.5rem, 6vw, 3.5rem) 2rem;
}
@media (min-width: 46rem) { .bl-foot__cols { grid-template-columns: 1.6fr 1fr 1fr 1.3fr; } }
.bl-foot__tag { color: #a99fb8; margin-top: .85rem; max-width: 24rem; font-size: var(--step-0); }
.bl-foot__col h3 { font-family: var(--font-body); font-size: var(--step--1); letter-spacing: .1em; text-transform: uppercase; color: #8f85a0; margin-bottom: .9rem; }
.bl-foot__col a:not(.bl-foot__contact) { display: block; color: #cfc7d6; text-decoration: none; padding-block: .3rem; transition: color .16s; }
.bl-foot__col a:hover { color: #fff; }
.bl-foot__line { display: flex; align-items: center; gap: .5ch; color: #cfc7d6; padding-block: .2rem; }
.bl-foot__line svg { color: var(--gold-soft); flex: none; }
.bl-foot__muted { color: #8f85a0; font-size: var(--step--1); margin-top: .35rem; line-height: 1.5; }
.bl-foot__contact { display: inline-flex; align-items: center; gap: .5ch; color: #cfc7d6; text-decoration: none; margin-top: .6rem; }
.bl-foot__contact svg { color: var(--gold-soft); flex: none; }
.bl-foot__contact:hover { color: #fff; }

.bl-foot__bottom {
  border-top: 1px solid rgba(255,255,255,.09);
  padding-block: 1.5rem 2rem;
  display: flex; flex-wrap: wrap; gap: .75rem 1.5rem;
  justify-content: space-between; align-items: center;
  font-size: var(--step--1); color: #8f85a0;
}
.studio-credit__link { color: #cfc7d6; text-decoration: none; font-weight: 600; }
.studio-credit__link:hover { color: #fff; text-decoration: underline; }

/* ---------------- Sticky mobile call bar ---------------- */
.callbar {
  position: fixed; inset-block-end: .85rem; inset-inline: .85rem;
  z-index: 90;
  display: flex; align-items: center; justify-content: center; gap: .55ch;
  background: var(--lav-deep); color: #fff; text-decoration: none;
  padding: .95rem 1.25rem; border-radius: var(--radius-pill);
  font-weight: 700; box-shadow: 0 14px 34px rgba(124,98,184,.4);
}
.callbar svg { flex: none; }
@media (min-width: 60rem) { .callbar { display: none; } }

/* ---------------- Reveal ---------------- */
.reveal { opacity: 0; transform: translateY(20px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal--stagger.is-in > * { animation: rise .7s var(--ease-out) backwards; }
.reveal--stagger.is-in > *:nth-child(2) { animation-delay: .08s; }
.reveal--stagger.is-in > *:nth-child(3) { animation-delay: .16s; }
.reveal--stagger.is-in > *:nth-child(4) { animation-delay: .24s; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .reveal--stagger.is-in > * { animation: none; }
}
/* ==========================================================================
   utilities.css — atomic helpers (last in the cascade)
   ========================================================================== */
.hbtn__txt { display: none; }
@media (min-width: 24rem) { .hbtn__txt { display: inline; } }

.hnav__link {
  text-decoration: none; color: var(--ink); font-weight: 600; font-size: .98rem;
  position: relative; transition: color .16s var(--ease-out);
}
.hnav__link::after {
  content: ""; position: absolute; left: 0; bottom: -5px;
  inline-size: 0; block-size: 2px; background: var(--gold); border-radius: 2px;
  transition: inline-size .28s var(--ease-out);
}
.hnav__link:hover { color: var(--lav-deep); }
.hnav__link:hover::after { inline-size: 100%; }

.is-hidden { display: none !important; }
