/* Christian-Magician — minimal, colourful, child-friendly, not childish.
   The palette is the brief's and nothing else is invented:
   Magic Blue #2563EB · Sunshine Yellow #FFD43B · Magic Purple #8B5CF6 ·
   Playful Red #FF4D4D · Turquoise #22C7C9 · Deep Navy #172554 ·
   Soft White #FFFDF8 · Pale Blue #EFF6FF · WhatsApp Green #25D366.

   WhatsApp green is used for one thing only: buttons that open WhatsApp. It
   is never decoration — that is what makes it mean something. */
:root {
  --blue: #2563EB;
  --blue-dark: #1D4ED8;
  --yellow: #FFD43B;
  --purple: #8B5CF6;
  --red: #FF4D4D;
  --turquoise: #22C7C9;
  --navy: #172554;
  --white: #FFFDF8;
  --pale: #EFF6FF;
  --wa: #25D366;
  --wa-dark: #1FB855;
  --ink: #172554;
  --ink-soft: #4b5b7a;
  --hair: #e4e9f2;
  --radius: 18px;
  --shadow: 0 1px 2px rgba(23, 37, 84, .05), 0 10px 30px rgba(23, 37, 84, .07);
  --wrap: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Poppins, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .display { font-family: Fredoka, Poppins, sans-serif; line-height: 1.15; margin: 0 0 .4em; }
h1 { font-weight: 700; font-size: clamp(2rem, 6vw, 3.4rem); letter-spacing: -.01em; }
h2 { font-weight: 600; font-size: clamp(1.5rem, 4vw, 2.3rem); }
h3 { font-weight: 600; font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--ink-soft); }
p.lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 60ch; }
a { color: var(--blue); }
img { max-width: 100%; display: block; }

.wrap { width: min(var(--wrap), 100% - 40px); margin-inline: auto; }
section { padding: 62px 0; }
section.tight { padding: 44px 0; }
.pale { background: var(--pale); }
.center { text-align: center; }
.center p.lead { margin-inline: auto; }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; border: 2px solid transparent;
  font-family: Poppins, sans-serif; font-weight: 600; font-size: 1rem;
  text-decoration: none; cursor: pointer; transition: transform .12s ease, background .12s ease;
}
.btn:active { transform: translateY(1px); }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: var(--wa-dark); }
.btn-wa svg { width: 21px; height: 21px; fill: currentColor; flex: none; }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-dark); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--hair); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-block { width: 100%; }

/* ── Header ─────────────────────────────────────────────────────────────── */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 253, 248, .94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hair);
}
.head-row { display: flex; align-items: center; gap: 16px; padding: 8px 0; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--navy); }
/* DSM-1116: the supplied wordmark. Sized by HEIGHT so it keeps its shape on
   every screen, and given room to breathe rather than being squeezed. */
.brand-logo { height: 62px; width: auto; }
.foot-logo { height: 54px; }
@media (max-width: 860px) { .brand-logo { height: 44px; } }
@media (max-width: 380px) { .brand-logo { height: 34px; } }
.nav { display: flex; gap: 6px; margin-left: auto; align-items: center; }
.nav a {
  padding: 9px 14px; border-radius: 999px; text-decoration: none;
  color: var(--navy); font-weight: 500; font-size: .98rem;
}
.nav a:hover { background: var(--pale); }
.nav a[aria-current="page"] { color: var(--blue); font-weight: 600; }
.head-wa { margin-left: 10px; padding: 11px 20px; }
.burger {
  display: none; margin-left: auto; width: 46px; height: 42px; border-radius: 12px;
  border: 1px solid var(--hair); background: #fff; cursor: pointer; align-items: center; justify-content: center;
}
.burger span, .burger span::before, .burger span::after {
  content: ''; display: block; width: 20px; height: 2px; background: var(--navy); border-radius: 2px; position: relative;
}
.burger span::before { position: absolute; top: -6px; }
.burger span::after { position: absolute; top: 6px; }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero { padding: 0; background: linear-gradient(180deg, var(--pale) 0%, var(--white) 100%); }
.hero-grid { display: grid; gap: 30px; align-items: center; padding: 48px 0 56px; }
.hero h1 { color: var(--navy); }
.hero .kicker {
  display: inline-block; background: var(--yellow); color: var(--navy);
  font-weight: 600; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-note { margin-top: 18px; font-size: .95rem; color: var(--ink-soft); }

/* ── Photographs ────────────────────────────────────────────────────────── */
.photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--pale); }
.photo picture { display: block; height: 100%; }
/* The slot is given the photograph's own proportions, so "cover" never
   actually crops anything — it only fills the last fraction of a pixel. */
.photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
/* A tall photograph in a two-column section is held to a sensible width rather
   than cropped to a landscape shape: the client's portraits stay whole. */
.split .photo.portrait, .hero-grid .photo.portrait { max-width: 430px; margin-inline: auto; }
/* A photograph shot on a phone (taller than 3:2) gets a narrower cap again, so
   it sits level with the paragraphs beside it instead of towering over them. */
.split .photo.tall, .hero-grid .photo.tall { max-width: 330px; }
/* A slot whose photograph has not arrived yet: quiet, branded, honest — never
   a stock picture of somebody else's party. */
.photo-wait {
  display: grid; place-items: center; text-align: center; gap: 6px;
  min-height: 260px; padding: 28px;
  background:
    repeating-linear-gradient(45deg, rgba(37, 99, 235, .05) 0 12px, transparent 12px 24px),
    var(--pale);
  color: var(--ink-soft);
}
.photo-wait strong { font-family: Fredoka, sans-serif; color: var(--navy); font-weight: 600; }
.photo-wait small { font-size: .8rem; letter-spacing: .06em; }

/* ── Two-column sections ────────────────────────────────────────────────── */
.split { display: grid; gap: 34px; align-items: center; }
.split .photo { min-height: 300px; }

/* ── Cards ──────────────────────────────────────────────────────────────── */
.cards { display: grid; gap: 20px; }
.card {
  background: #fff; border: 1px solid var(--hair); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 10px;
}
.price-card .mins { font-family: Fredoka, sans-serif; font-weight: 600; font-size: 1.3rem; color: var(--navy); }
.price-card .price { font-family: Fredoka, sans-serif; font-weight: 700; font-size: 2.8rem; color: var(--blue); line-height: 1; }
.price-card p { flex: 1; margin-bottom: 4px; }
.price-card.popular { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37, 99, 235, .12), var(--shadow); }
.tag {
  align-self: flex-start; background: var(--yellow); color: var(--navy);
  font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 999px;
}

/* ── Testimonials ───────────────────────────────────────────────────────── */
.reviews { position: relative; }
.review-track {
  display: grid; grid-auto-flow: column; grid-auto-columns: 100%;
  gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; padding-bottom: 6px;
}
.review-track::-webkit-scrollbar { display: none; }
.review {
  scroll-snap-align: start; background: #fff; border: 1px solid var(--hair);
  border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow);
}
.review .quote { color: var(--ink); font-size: 1rem; }
.review .who { font-weight: 600; color: var(--navy); margin-top: 14px; }
.review .src { font-size: .8rem; color: var(--ink-soft); }
.review-nav { display: flex; gap: 8px; justify-content: center; margin-top: 18px; }
.review-nav button {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--hair);
  background: #fff; cursor: pointer; color: var(--navy); font-size: 1.1rem;
}
.review-nav button:hover { border-color: var(--blue); color: var(--blue); }
.pro-review { display: grid; gap: 18px; align-items: center; background: #fff;
  border: 1px solid var(--hair); border-left: 5px solid var(--turquoise);
  border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.pro-review .quote { font-size: 1.06rem; color: var(--ink); }

/* ── Gallery ────────────────────────────────────────────────────────────── */
.filters { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 26px; }
.filters button {
  padding: 9px 18px; border-radius: 999px; border: 1px solid var(--hair);
  background: #fff; color: var(--navy); font: inherit; font-size: .94rem; font-weight: 500; cursor: pointer;
}
.filters button[aria-pressed="true"] { background: var(--blue); border-color: var(--blue); color: #fff; }
.masonry { columns: 1; column-gap: 16px; }
.masonry .shot { break-inside: avoid; margin-bottom: 16px; }

/* ── Final call to action ───────────────────────────────────────────────── */
.cta-band { background: var(--blue); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .9); max-width: 52ch; margin-inline: auto; }

/* ── Contact ────────────────────────────────────────────────────────────── */
.contact-card {
  background: #fff; border: 1px solid var(--hair); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow); max-width: 480px; margin-inline: auto;
}
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; text-align: left; }
.field label { font-weight: 600; font-size: .92rem; color: var(--navy); }
.field input {
  padding: 14px 16px; border: 1px solid var(--hair); border-radius: 12px;
  font: inherit; color: var(--ink); background: var(--white);
}
.field input:focus { outline: 3px solid rgba(37, 99, 235, .18); border-color: var(--blue); }
.form-err { color: var(--red); font-size: .9rem; min-height: 1.3em; }
.steps { display: grid; gap: 10px; margin: 26px auto 0; max-width: 480px; text-align: left; }
.step { display: flex; gap: 12px; align-items: flex-start; font-size: .96rem; color: var(--ink-soft); }
.step b {
  flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--pale);
  color: var(--blue); display: grid; place-items: center; font-size: .82rem;
}

/* ── Footer ─────────────────────────────────────────────────────────────── */
.site-foot { border-top: 1px solid var(--hair); padding: 34px 0; font-size: .95rem; }
.foot-row { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between; }
.foot-links { display: flex; flex-wrap: wrap; gap: 16px; }
.foot-links a { color: var(--ink-soft); text-decoration: none; }
.foot-links a:hover { color: var(--blue); }
.foot-note { color: var(--ink-soft); font-size: .86rem; }
/* DSM-1122: the copyright line, quietly under everything else. */
.foot-legal {
  display: flex; flex-wrap: wrap; gap: 6px 18px; justify-content: space-between;
  margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--hair);
  color: var(--ink-soft); font-size: .8rem;
}
.foot-legal a { color: var(--ink-soft); text-decoration: underline; text-underline-offset: 2px; }
.foot-legal a:hover { color: var(--blue); }

/* ── Bigger screens ─────────────────────────────────────────────────────── */
@media (min-width: 720px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1fr 1fr; }
  .split.reverse .photo { order: 2; }
  .masonry { columns: 2; }
  .review-track { grid-auto-columns: calc((100% - 36px) / 3); }
  /* Only a card that really has a logo gets the logo column. */
  .pro-review.has-logo { grid-template-columns: 150px 1fr; }
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; padding: 70px 0 84px; }
  .masonry { columns: 3; }
}
@media (max-width: 860px) {
  .burger { display: flex; }
  .nav {
    position: fixed; inset: 64px 0 auto; flex-direction: column; align-items: stretch;
    background: var(--white); border-bottom: 1px solid var(--hair); padding: 12px 20px 20px;
    gap: 4px; margin: 0; display: none; box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { padding: 13px 14px; font-size: 1.05rem; }
  .head-wa { margin-left: auto; padding: 10px 16px; font-size: .94rem; }
  .head-wa .label-long { display: none; }
  section { padding: 46px 0; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
