/* =========================================================
   MAGIC PHOTOGRAPHY — DESIGN SYSTEM
   Brand palette from official logo (Aug 2024)
   ========================================================= */

:root {
  /* Brand colours (from Logo Specs) */
  --mp-red:     #ee3324;
  --mp-magenta: #d70c8c;
  --mp-orange:  #fdbb2f;
  --mp-blue:    #0092ce;
  --mp-lime:    #d6e04c;
  --mp-grey:    #343e47;

  /* Functional roles */
  --ink:        #1a2128;          /* body text */
  --ink-soft:   #4a5560;          /* secondary text */
  --paper:      #ffffff;
  --paper-2:    #fbf9f5;          /* warm off-white */
  --paper-3:    #f4f1ea;          /* card backgrounds */
  --line:       #e6e2d6;          /* hairlines */
  --accent:     var(--mp-magenta);
  --accent-2:   var(--mp-blue);
  --warn:       var(--mp-orange);
  --ok:         var(--mp-lime);

  /* Type */
  --font-display: "Playfair Display", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-script:  "Caveat", "Brush Script MT", cursive;
  --font-body:    "Jost", "Futura", "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Spacing scale */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;

  /* Radius */
  --r-1: 6px;
  --r-2: 12px;
  --r-3: 20px;
  --r-4: 32px;
  --r-pill: 999px;

  /* Shadow */
  --shadow-1: 0 1px 2px rgba(20,30,40,0.06), 0 2px 4px rgba(20,30,40,0.04);
  --shadow-2: 0 4px 12px rgba(20,30,40,0.08), 0 8px 24px rgba(20,30,40,0.06);
  --shadow-3: 0 12px 32px rgba(20,30,40,0.12), 0 24px 48px rgba(20,30,40,0.08);

  /* Layout */
  --maxw: 1240px;
  --maxw-text: 720px;
}

/* =========================================================
   RESET + BASE
   ========================================================= */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img,svg,video { max-width: 100%; display: block; height: auto; }
a { color: var(--mp-blue); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--mp-magenta); }
button { font-family: inherit; cursor: pointer; }
hr { border: 0; border-top: 1px solid var(--line); margin: var(--s-7) 0; }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 var(--s-4);
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw + 0.5rem, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3vw + 0.5rem, 2.8rem); }
h3 { font-size: clamp(1.3rem, 1.5vw + 0.6rem, 1.7rem); }
h4 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; }
p  { margin: 0 0 var(--s-4); }
.lead { font-size: 1.2rem; color: var(--ink-soft); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mp-magenta);
  font-weight: 700;
  margin-bottom: var(--s-3);
}
.script {
  font-family: var(--font-script);
  color: var(--mp-magenta);
  font-weight: 400;
  font-size: 1.4em;
  line-height: 1;
}

/* =========================================================
   LAYOUT
   ========================================================= */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--s-5); }
.wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 var(--s-5); }
.section { padding: var(--s-9) 0; }
.section--tight { padding: var(--s-7) 0; }
.section--alt { background: var(--paper-2); }
.section--ink { background: var(--mp-grey); color: var(--paper-2); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--paper); }
.section--ink .eyebrow { color: var(--mp-orange); }

.grid { display: grid; gap: var(--s-6); }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
@media (max-width: 900px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }
/* Card-pair comparisons (e.g. Classic vs Studio) stay side-by-side longer,
   so images don't balloon on tablet widths. Stack only on real mobile. */
.grid--pair { grid-template-columns: repeat(2, minmax(0,1fr)); }
@media (max-width: 640px) { .grid--pair { grid-template-columns: 1fr; } }

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: var(--s-2); }
.gap-3 { gap: var(--s-3); }
.gap-4 { gap: var(--s-4); }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }

.text-center { text-align: center; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  font-size: 1rem;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
/* Primary action = BLUE (Rod feedback May 2026 — more blue, less magenta) */
.btn--primary { background: var(--mp-blue); color: #fff; }
.btn--primary:hover { background: var(--mp-magenta); color: #fff; }
.btn--secondary { background: var(--mp-magenta); color: #fff; }
.btn--secondary:hover { background: var(--mp-blue); color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn--ghost-light:hover { background: #fff; color: var(--mp-grey); }
.btn--lg { padding: 18px 36px; font-size: 1.1rem; }
.btn--block { display: flex; justify-content: center; width: 100%; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
/* Anchored jumps (#request-form, #live-tracker, #how, …) clear the sticky header */
:target { scroll-margin-top: 92px; }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: var(--s-5);
}
.nav__brand img { height: 48px; width: auto; }
.nav__links {
  display: flex;
  gap: var(--s-5);
  list-style: none;
  margin: 0; padding: 0;
  align-items: center;
}
.nav__links a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.96rem;
  position: relative;
  padding: 6px 0;
}
.nav__links a:hover { color: var(--mp-blue); }
.nav__links a.is-active { color: var(--mp-blue); }
.nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 3px;
  background: var(--mp-blue);
  border-radius: 2px;
}
/* Sticky Check-availability CTA — always visible in the header on desktop AND mobile */
.nav__cta {
  padding: 9px 18px;
  font-size: 0.92rem;
  white-space: nowrap;
  margin-left: auto;
}
@media (max-width: 1024px) {
  .nav__cta { padding: 7px 14px; font-size: 0.84rem; margin-left: auto; }
}

.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  width: 44px; height: 44px;
}
.nav__toggle span {
  display: block;
  width: 28px; height: 3px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

@media (max-width: 1024px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: absolute;
    inset: 100% 0 auto 0;
    background: #fff;
    flex-direction: column;
    padding: var(--s-5);
    box-shadow: var(--shadow-2);
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { font-size: 1.1rem; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: var(--s-10) 0 var(--s-9);
  overflow: hidden;
  background:
    radial-gradient(60% 50% at 15% 0%, rgba(215,12,140,0.10), transparent 70%),
    radial-gradient(50% 40% at 100% 30%, rgba(0,146,206,0.10), transparent 70%),
    radial-gradient(40% 30% at 30% 100%, rgba(253,187,47,0.10), transparent 70%),
    var(--paper);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-8);
  align-items: center;
}
.hero h1 { margin-bottom: var(--s-5); }
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  margin-top: var(--s-6);
}
.hero__image {
  position: relative;
  border-radius: var(--r-4);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--paper-3);
  box-shadow: var(--shadow-3);
}
.hero__image::before {
  content: "";
  position: absolute;
  inset: -10px;
  background:
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(215,12,140,0.05) 12px 13px),
    linear-gradient(135deg, rgba(0,146,206,0.18), rgba(214,224,76,0.18));
  z-index: -1;
  border-radius: var(--r-4);
}
@media (max-width: 900px) {
  .hero { padding: var(--s-7) 0 var(--s-7); }
  .hero__grid { grid-template-columns: 1fr; }
}

/* Bubble decoration (inspired by the logo) */
.bubbles { position: absolute; pointer-events: none; }
.bubble { position: absolute; border-radius: 50%; opacity: 0.9; }
.bubble.b-red    { background: var(--mp-red); }
.bubble.b-mag    { background: var(--mp-magenta); }
.bubble.b-org    { background: var(--mp-orange); }
.bubble.b-blu    { background: var(--mp-blue); }
.bubble.b-lim    { background: var(--mp-lime); }
.bubble.b-gry    { background: var(--mp-grey); }

/* =========================================================
   CARDS
   ========================================================= */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  padding: var(--s-6);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: transparent; }
.card__icon {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: var(--s-4);
  background: transparent;
  border: 0;
}
.card__icon svg { width: 44px; height: 44px; stroke-width: 1.6; stroke: currentColor; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.card__icon.is-mag { color: var(--mp-magenta); }
.card__icon.is-blu { color: var(--mp-blue); }
.card__icon.is-org { color: var(--mp-orange); }
.card__icon.is-red { color: var(--mp-red); }
.card__icon.is-lim { color: #7a8b1f; }
.card__icon.is-gry { color: var(--mp-grey); }
.card h3 { margin-bottom: var(--s-3); }
.card p:last-child { margin-bottom: 0; }
.card__cta { margin-top: auto; padding-top: var(--s-4); }

/* Service tile (homepage three-pillars) */
.tile {
  position: relative;
  border-radius: var(--r-3);
  overflow: hidden;
  min-height: 300px;
  color: #fff;
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--s-7) var(--s-6);
  background: var(--mp-blue);
}
.tile::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.30) 100%);
  z-index: 1;
}
.tile > * { position: relative; z-index: 2; }
.tile h3 { color: #fff; margin-bottom: var(--s-4); }
.tile p { color: rgba(255,255,255,0.95); margin-bottom: var(--s-4); }
.tile a { color: #fff; font-weight: 700; }
.tile a::after { content: " →"; }
/* Single-hue per tile — each one brand colour fading to a medium (not black) shade */
.tile.t-childcare { background: linear-gradient(160deg, var(--mp-magenta) 0%, #a30a6c 100%); }
.tile.t-school    { background: linear-gradient(160deg, var(--mp-blue) 0%, #006d9b 100%); }
.tile.t-sport     { background: linear-gradient(160deg, #fba90f 0%, #e07a10 100%); }

/* =========================================================
   TRUST BAR — 3 defensible numbers, directly under hero
   ========================================================= */
.trust-bar {
  background: var(--mp-blue);
  color: #fff;
  padding: var(--s-6) 0;
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  text-align: center;
  align-items: center;
}
.trust-bar__num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw + 0.5rem, 2.8rem);
  line-height: 1;
  color: #fff;
  font-weight: 700;
}
.trust-bar__lbl {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  margin-top: 8px;
  line-height: 1.35;
}
@media (max-width: 720px) {
  .trust-bar__grid { grid-template-columns: 1fr; gap: var(--s-4); }
  .trust-bar { padding: var(--s-5) 0; }
}

/* Old trust strip (still used on legacy spots — kept for backward compat) */
.trust {
  background: var(--paper-2);
  padding: var(--s-5) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust__row {
  display: flex; flex-wrap: wrap; gap: var(--s-6);
  align-items: center; justify-content: center;
  text-align: center;
}
.trust__item {
  display: flex; align-items: center; gap: var(--s-2);
  font-weight: 600; color: var(--ink-soft); font-size: 0.95rem;
}
.trust__item .dot {
  display: inline-block; width: 10px; height: 10px; border-radius: 50%;
  background: var(--mp-lime);
}

/* =========================================================
   FEATURE STRIP / LIST
   ========================================================= */
.feature-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: var(--s-4);
}
.feature-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: var(--s-3);
  align-items: start;
}
.feature-list li::before {
  content: "✓";
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--mp-lime);
  color: var(--mp-grey);
  font-weight: 800;
  font-size: 14px;
  margin-top: 4px;
}

/* =========================================================
   STAT BLOCKS
   ========================================================= */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
  text-align: center;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  color: var(--mp-magenta);
  line-height: 1;
  margin-bottom: var(--s-2);
  font-weight: 700;
}
.stat__lbl { color: var(--ink-soft); font-size: 0.95rem; }

/* On dark sections, flip to white for contrast */
.section--ink .stat__num { color: #fff; }
.section--ink .stat__lbl { color: #fff; opacity: 0.95; font-weight: 500; font-size: 1.02rem; line-height: 1.45; }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.quote {
  background: #fff;
  border-radius: var(--r-3);
  padding: var(--s-7) var(--s-6) var(--s-6);
  border: 1px solid var(--line);
  position: relative;
}
.quote::before {
  content: "“";
  position: absolute;
  top: 6px; left: 20px;
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 1;
  color: var(--mp-magenta);
  opacity: 0.28;
}
.quote p { font-size: 1.1rem; font-style: italic; color: var(--ink); }
.quote__who { display: flex; align-items: center; gap: var(--s-3); margin-top: var(--s-5); }
.quote__avatar {
  width: 44px; height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  background: var(--mp-lime);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--mp-grey); font-weight: 800;
}
.quote__name { font-weight: 700; }
.quote__role { color: var(--ink-soft); font-size: 0.9rem; }

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-2);
  padding: var(--s-4) var(--s-5);
  margin-bottom: var(--s-3);
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--mp-magenta);
  font-weight: 300;
  line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq details[open] { box-shadow: var(--shadow-1); border-color: transparent; }
.faq details > p, .faq details > div { margin-top: var(--s-3); color: var(--ink-soft); }

/* =========================================================
   FORM
   ========================================================= */
.form { display: grid; gap: var(--s-4); }
.field { display: grid; gap: 6px; }
.field label { font-weight: 600; color: var(--ink); font-size: 0.95rem; }
.field input, .field textarea, .field select {
  font: inherit;
  width: 100%;
  max-width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-1);
  background: #fff;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--mp-magenta);
  box-shadow: 0 0 0 3px rgba(215,12,140,0.15);
}
.field textarea { min-height: 140px; resize: vertical; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }
@media (max-width: 600px) { .field--row { grid-template-columns: 1fr; } }

/* =========================================================
   CTA STRIP
   ========================================================= */
.cta-strip {
  background:
    radial-gradient(80% 80% at 20% 0%, rgba(255,255,255,0.12), transparent 60%),
    var(--mp-blue);
  color: #fff;
  padding: var(--s-8) 0;
  text-align: center;
}
.cta-strip h2 { color: #fff; }
.cta-strip p { color: rgba(255,255,255,0.92); font-size: 1.15rem; max-width: 640px; margin: 0 auto var(--s-5); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--mp-grey);
  color: rgba(255,255,255,0.8);
  padding: var(--s-9) 0 var(--s-5);
  margin-top: var(--s-9);
}
.site-footer h4 { color: #fff; }
.site-footer a { color: rgba(255,255,255,0.85); }
.site-footer a:hover { color: var(--mp-orange); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-6);
  margin-bottom: var(--s-7);
}
.footer__grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer__brand img { height: 56px; margin-bottom: var(--s-3); filter: brightness(0) invert(1); }
.footer__brand p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: var(--s-4);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--s-3);
  font-size: 0.85rem; color: rgba(255,255,255,0.55);
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer__grid { grid-template-columns: 1fr; } }

/* =========================================================
   ELPA BADGE / PARTNERSHIP STRIP
   ========================================================= */
.elpa-strip {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-5);
  padding: var(--s-5) var(--s-6);
  background: linear-gradient(135deg, #fff 0%, var(--paper-2) 100%);
  border: 1px solid var(--line);
  border-left: 6px solid var(--mp-magenta);
  border-radius: var(--r-2);
}
.elpa-strip__logo {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--mp-magenta);
  letter-spacing: 0.05em;
  font-size: 1.4rem;
}
.elpa-strip p { margin: 0; color: var(--ink-soft); }

/* =========================================================
   PRICING TABLE
   ========================================================= */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.price {
  background: #fff;
  border-radius: var(--r-3);
  padding: var(--s-6);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.price--featured { border-color: var(--mp-magenta); border-width: 2px; position: relative; }
.price--featured::before {
  content: "Most popular";
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--mp-magenta); color: #fff;
  padding: 4px 14px; border-radius: var(--r-pill);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em;
}
.price h3 { color: var(--mp-magenta); }
.price__amt { font-family: var(--font-display); font-size: 3rem; color: var(--ink); margin: var(--s-3) 0; line-height: 1; }
.price__amt small { font-size: 1rem; color: var(--ink-soft); font-weight: 400; }
.price ul { list-style: none; padding: 0; margin: var(--s-4) 0; display: grid; gap: 10px; }
.price ul li { padding-left: var(--s-5); position: relative; }
.price ul li::before { content: "✓"; position: absolute; left: 0; color: var(--mp-magenta); font-weight: 800; }
.price .btn { margin-top: auto; }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } }

/* =========================================================
   PROCESS STEPS
   ========================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
  position: relative;
}
.step {
  text-align: left;
  background: #fff;
  border-radius: var(--r-2);
  padding: var(--s-5);
  border-top: 4px solid var(--mp-magenta);
}
.step:nth-child(2) { border-color: var(--mp-blue); }
.step:nth-child(3) { border-color: var(--mp-orange); }
.step:nth-child(4) { border-color: var(--mp-lime); }
.step__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--mp-grey);
  opacity: 0.4;
  line-height: 1;
}
.step h4 { margin: var(--s-2) 0; text-transform: none; letter-spacing: 0; font-size: 1.2rem; font-family: var(--font-display); font-weight: 700; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }

/* =========================================================
   GALLERY PLACEHOLDER (until real photos plug in)
   ========================================================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
}
.gallery__tile {
  aspect-ratio: 1;
  border-radius: var(--r-2);
  background: var(--paper-3);
  position: relative;
  overflow: hidden;
}
.gallery__tile::after {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(0,0,0,0.04) 18px 19px);
}
.gallery__tile.g1 { background: linear-gradient(135deg, var(--mp-magenta), #8e0860); }
.gallery__tile.g2 { background: linear-gradient(135deg, var(--mp-blue), #00567a); }
.gallery__tile.g3 { background: linear-gradient(135deg, var(--mp-orange), #b97900); }
.gallery__tile.g4 { background: linear-gradient(135deg, var(--mp-lime), #8aa11b); }
.gallery__tile.g5 { background: linear-gradient(135deg, var(--mp-red), #9c2018); }
.gallery__tile.g6 { background: linear-gradient(135deg, var(--mp-grey), #1a2128); }
@media (max-width: 700px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* =========================================================
   UTILITIES
   ========================================================= */
.mt-0 { margin-top: 0 !important; }
.mt-3 { margin-top: var(--s-3); }
.mt-5 { margin-top: var(--s-5); }
.mt-7 { margin-top: var(--s-7); }
.mb-0 { margin-bottom: 0 !important; }
.mb-3 { margin-bottom: var(--s-3); }
.mb-5 { margin-bottom: var(--s-5); }
.muted { color: var(--ink-soft); }
.pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  background: var(--paper-3);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 600;
}
.pill--mag { background: rgba(215,12,140,0.12); color: var(--mp-magenta); }
.pill--blu { background: rgba(0,146,206,0.12); color: var(--mp-blue); }
.pill--org { background: rgba(253,187,47,0.18); color: #a26d00; }
.pill--lim { background: rgba(214,224,76,0.25); color: #6f7c19; }

.divider { display: inline-block; width: 60px; height: 4px; background: var(--mp-magenta); border-radius: 2px; margin: var(--s-3) 0; }

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeUp .8s ease-out backwards; }
.fade-in.d1 { animation-delay: .1s; }
.fade-in.d2 { animation-delay: .2s; }
.fade-in.d3 { animation-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* =========================================================
   LIVE DASHBOARD FEATURE (show, don't shout)
   ========================================================= */
.livedash {
  background: #fff;
  border: 2px solid var(--mp-grey);
  border-radius: var(--r-4);
  padding: clamp(28px, 4vw, 56px);
}
.livedash .eyebrow { color: var(--mp-blue); }
.livedash h2 { margin-bottom: var(--s-4); }
.livedash__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--s-8);
  align-items: center;
}
@media (max-width: 860px) { .livedash__grid { grid-template-columns: 1fr; } }

.dash-card {
  background: #fff;
  border-radius: var(--r-3);
  box-shadow: var(--shadow-3);
  overflow: hidden;
  border: 1px solid var(--line);
}
.dash-card__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  background: var(--mp-grey);
  color: #fff;
}
.dash-card__title { font-weight: 700; font-size: 0.92rem; }
.live-dot { display: inline-flex; align-items: center; gap: 8px; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; }
.live-dot::before {
  content: ""; width: 9px; height: 9px; border-radius: 50%;
  background: #3ad17a; box-shadow: 0 0 0 0 rgba(58,209,122,0.7);
  animation: livePulse 1.8s infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(58,209,122,0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(58,209,122,0); }
  100% { box-shadow: 0 0 0 0 rgba(58,209,122,0); }
}
.dash-card__body { padding: 20px 18px; display: grid; gap: 18px; }
.dash-row { display: grid; grid-template-columns: 1fr auto; gap: 8px 12px; align-items: center; }
.dash-row__label { color: var(--ink-soft); font-size: 0.92rem; font-weight: 600; }
.dash-row__num { font-family: var(--font-display); font-size: 1.7rem; line-height: 1; color: var(--ink); font-weight: 700; }
.dash-bar { grid-column: 1 / -1; height: 8px; border-radius: 99px; background: var(--paper-3); overflow: hidden; }
.dash-bar > span { display: block; height: 100%; border-radius: 99px; animation: dashGrow 1.4s ease-out backwards; }
.dash-bar.is-blue   > span { background: var(--mp-blue);  width: 84%; }
.dash-bar.is-green  > span { background: #3ad17a;          width: 61%; }
.dash-bar.is-orange > span { background: var(--mp-orange); width: 39%; }
@keyframes dashGrow { from { width: 0; } }
.dash-card__foot { padding: 0 18px 16px; color: var(--ink-soft); font-size: 0.8rem; display: flex; align-items: center; gap: 6px; }
.dash-card__foot::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #3ad17a; }

/* =========================================================
   NUMBERED PHOTO SLOTS
   (each renders the matching /photos/NN.jpg|png once loaded)
   ========================================================= */
.photo-slot {
  position: relative;
  aspect-ratio: var(--ar, 4 / 3);
  background: var(--paper-3);
  border-radius: var(--r-3);
  overflow: hidden;
}
.photo-slot__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.doodle-arrow { width: 92px; height: auto; max-width: 30vw; }
@media (max-width: 900px) { .doodle-arrow { transform: rotate(35deg); } }
.photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 12px; }
/* Fixed 4-up gallery (8 tiles -> clean 4 + 4). Collapses on tablet/phone. */
.photo-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 760px) { .photo-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 430px) { .photo-grid--4 { grid-template-columns: 1fr; } }

/* Modal / lightbox */
.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: var(--s-5); overflow-y: auto; }
.modal[hidden] { display: none; }
.modal__backdrop { position: fixed; inset: 0; background: rgba(20,30,40,0.6); }
.modal__box { position: relative; background: #fff; border-radius: var(--r-3); padding: var(--s-6); max-width: 760px; width: 100%; max-height: calc(100vh - 2 * var(--s-5)); overflow-y: auto; box-shadow: var(--shadow-3); z-index: 1; }
.modal__close { position: absolute; top: 8px; right: 14px; background: transparent; border: 0; font-size: 1.9rem; line-height: 1; color: var(--ink-soft); cursor: pointer; }
@media (max-width: 600px) {
  .modal { padding: 10px; align-items: flex-start; }
  .modal__box { padding: var(--s-5); max-height: calc(100vh - 20px); border-radius: var(--r-2); }
  .modal__box h3 { font-size: 1.25rem; }
}

/* Live-dashboard media column (photo with the live card floating over it) */
.livedash__media { position: relative; padding-bottom: 42px; }
.livedash__media .dash-card { position: absolute; right: -10px; bottom: 0; width: 72%; }
@media (max-width: 860px) {
  .livedash__media { padding-bottom: 0; }
  .livedash__media .dash-card { position: static; width: 94%; margin: -28px auto 0; }
}

/* =========================================================
   LIVE PHOTO-DAY TRACKER — feature band (dark, animated)
   ========================================================= */
.livedash-band {
  background: radial-gradient(120% 130% at 100% 0%, #21303f 0%, #10161d 58%);
  color: #fff;
  padding: var(--s-9) 0;
}
.livedash-band__grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: var(--s-8);
  align-items: center;
}
@media (max-width: 900px) { .livedash-band__grid { grid-template-columns: 1fr; gap: var(--s-7); } }
.livedash-band__intro h2 { color: #fff; }
.livedash-band__intro .lead { color: rgba(255,255,255,0.82); }
.livedash-band__intro .script { color: var(--mp-magenta); }
.livedash-band__pill {
  display: inline-block; margin-bottom: var(--s-4);
  background: var(--mp-orange); color: var(--mp-grey);
  font-weight: 800; font-size: 0.9rem; letter-spacing: .02em;
  padding: 8px 16px; border-radius: 99px;
}
.livedash-band__used { margin-top: var(--s-4); margin-bottom: 0; color: rgba(255,255,255,0.6); font-size: .92rem; font-weight: 600; }

/* dashboard panel */
.dashx {
  background: #0e141b;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-3);
  padding: clamp(16px, 2.4vw, 26px);
  box-shadow: 0 34px 70px -24px rgba(0,0,0,0.65);
}
.dashx__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 20px; }
.dashx__live { display: inline-flex; align-items: center; gap: 7px; font-size: .68rem; font-weight: 800; letter-spacing: .14em; color: #3ad17a; }
.dashx__live::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: #3ad17a;
  animation: livePulse 1.8s infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(58,209,122,0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(58,209,122,0); }
  100% { box-shadow: 0 0 0 0 rgba(58,209,122,0); }
}
.dashx__title { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: #fff; margin-top: 5px; }
.dashx__sub { font-size: .8rem; color: rgba(255,255,255,0.5); margin-top: 2px; }
.dashx__updated { font-size: .72rem; color: rgba(255,255,255,0.45); white-space: nowrap; }
.dashx__tiles { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
.dashx__tile { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--r-2); padding: 14px; }
@media (max-width: 420px) {
  .dashx__tiles { gap: 8px; }
  .dashx__tile { padding: 10px; }
}
.dashx__tlabel { font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,0.55); font-weight: 700; }
.dashx__tnum { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.5rem); line-height: 1; margin: 8px 0 10px; }
.dashx__tnum.is-blue { color: #4aa3e0; }
.dashx__tnum.is-green { color: #3ad17a; }
.dashx__tnum.is-orange { color: var(--mp-orange); }
.dashx__bar { height: 7px; border-radius: 99px; background: rgba(255,255,255,0.09); overflow: hidden; }
.dashx__bar > span { display: block; height: 100%; width: 0; border-radius: 99px; }
.dashx--live .dashx__bar > span { transition: width 1.4s cubic-bezier(.22,1,.36,1); }
.dashx__bar > span.is-blue { background: #4aa3e0; }
.dashx__bar > span.is-green { background: #3ad17a; }
.dashx__bar > span.is-orange { background: var(--mp-orange); }
.dashx__overall { margin-top: 18px; }
.dashx__overall-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; font-size: .82rem; color: rgba(255,255,255,0.7); font-weight: 600; }
.dashx__pct { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: #fff; }
.dashx__bar--lg { height: 10px; }
.dashx__foot { margin-top: 18px; display: flex; align-items: center; gap: 8px; font-size: .82rem; color: rgba(255,255,255,0.65); }
.dashx__foot strong { color: #fff; }
.dashx__dot { width: 8px; height: 8px; border-radius: 50%; background: #3ad17a; flex: 0 0 8px; }
@media (prefers-reduced-motion: reduce) {
  .dashx__bar > span { transition: none; }
  .dashx__live::before { animation: none; }
}
