/* World of Kids Photography — "The Sticker Wall" build.
   Type: Fredoka (display) + Manrope (body). Palette: cream/navy/bubblegum/sky. */

:root {
  --paper: #FFF9F0;
  --paper-alt: #FFF1E0;
  --ink: #1E2A45;
  --ink-mid: #4B5670;
  --bubblegum: #FF6F91;
  --bubblegum-dark: #E24E72;
  --bubblegum-soft: #FFE1E9;
  --sky: #3FB6E8;
  --sky-soft: #DCF2FC;
  --border: #E9DFCB;
  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;
  --radius: 16px;
  --shadow-sm: 0 2px 8px rgba(30,42,69,0.08);
  --shadow-md: 0 10px 30px rgba(30,42,69,0.14);
  --shadow-lg: 0 22px 50px rgba(30,42,69,0.20);
  --maxw: 1180px;
}

* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--paper);
  color: var(--ink-mid);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .nav-brand, .btn, .eyebrow { font-family: 'Fredoka', sans-serif; }
h1, h2, h3 { color: var(--ink); margin: 0 0 16px; font-weight: 600; }
h1 { font-size: clamp(34px, 5vw, 54px); line-height: 1.12; }
h2 { font-size: clamp(28px, 4vw, 40px); line-height: 1.18; }
h3 { font-size: 21px; }
p { margin: 0 0 14px; }
a { color: inherit; }
img { max-width: 100%; }
.section-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }
.eyebrow { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--bubblegum-dark); font-weight: 600; margin-bottom: 14px; }
.section-lede { max-width: 60ch; margin: 0 auto 40px; color: var(--ink-mid); font-size: 17px; }
section { padding: 88px 0; position: relative; }
@media (max-width: 640px) { section { padding: 56px 0; } }

/* Wavy section dividers — used at the bottom of every section instead of a
   straight edge. Fill colour is set inline per-instance to match whichever
   section comes next, so it reads as that section's background rising up. */
.section-wave { display: block; width: 100%; height: 44px; position: absolute; left: 0; right: 0; bottom: -1px; pointer-events: none; }
@media (max-width: 640px) { .section-wave { height: 26px; } }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px; border-radius: 999px; font-weight: 600; font-size: 15px;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-primary { background: var(--bubblegum); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--bubblegum-dark); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; box-shadow: var(--shadow-sm); }
.btn-whatsapp:hover { background: var(--whatsapp-dark); box-shadow: var(--shadow-md); }

/* ===== NAV ===== */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,249,240,0.9); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; text-decoration: none; }
.nav-logo { display: block; height: 40px; width: auto; }
.nav-brand-text { font-size: 23px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.nav-links { display: flex; align-items: center; gap: 26px; font-weight: 600; font-size: 15px; }
.nav-links a:not(.btn) { text-decoration: none; color: var(--ink-mid); }
.nav-links a:not(.btn):hover { color: var(--ink); }
.nav-menu-btn { display: none; }
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-menu-btn {
    display: flex; align-items: center; justify-content: center;
    background: none; border: none; color: var(--ink); width: 44px; height: 44px;
    cursor: pointer; padding: 0;
  }
  .nav-logo { height: 32px; }
}

/* ===== FULL-SCREEN MOBILE MENU ===== */
.full-menu {
  position: fixed; inset: 0; z-index: 200;
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.full-menu.open { opacity: 1; visibility: visible; }
.full-menu nav { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.full-menu a:not(.btn) { font-family: 'Fredoka', sans-serif; font-size: 24px; font-weight: 600; text-decoration: none; color: var(--ink); }
.full-menu a.btn { font-family: 'Fredoka', sans-serif; }
.menu-close-btn {
  position: absolute; top: 22px; right: 22px; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; color: var(--ink); cursor: pointer;
}

/* ===== HERO — rotating fan of 4 real photos ===== */
.hero { position: relative; padding: 28px 0 0; overflow-x: clip; }
.hero-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px 70px;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
}
.hero-lede { font-size: 18px; max-width: 46ch; }
.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }
.heart-accent { display: inline-block; vertical-align: -2px; margin-left: 2px; }

.hero-stage { position: relative; height: 480px; }
.hero-fan-preview { position: relative; height: 100%; perspective: 1400px; }
.hero-fan-preview .fan-card {
  position: absolute; top: 50%; left: 50%; width: 250px;
  border-radius: 16px; border: 7px solid #fff; box-shadow: var(--shadow-md);
  overflow: hidden; transform-origin: center center; cursor: pointer;
  transition: transform 0.85s cubic-bezier(.22,1,.36,1), filter 0.3s ease;
  filter: brightness(0.96);
}
.hero-fan-preview .fan-card img { display: block; width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.hero-fan-preview .fan-card.slot-center { transform: translate(-50%,-50%) translateY(-4px) scale(1.05); z-index: 4; filter: none; }
.hero-fan-preview .fan-card.slot-left   { transform: translate(-50%,-50%) translate(-134px, 26px) rotate(-9deg) scale(0.8); z-index: 2; }
.hero-fan-preview .fan-card.slot-right  { transform: translate(-50%,-50%) translate(134px, 26px) rotate(9deg) scale(0.8); z-index: 3; }
.hero-fan-preview .fan-card.slot-back   { transform: translate(-50%,-50%) translateY(-48px) scale(0.86); z-index: 1; filter: brightness(0.9); }
.hero-fan-preview .fan-card.slot-left:hover   { transform: translate(-50%,-50%) translate(-114px, 15px) rotate(-5deg) scale(0.9); filter: none; }
.hero-fan-preview .fan-card.slot-right:hover  { transform: translate(-50%,-50%) translate(114px, 15px) rotate(5deg) scale(0.9); filter: none; }
.hero-fan-preview .fan-card.slot-center:hover { transform: translate(-50%,-50%) translateY(-4px) scale(1.1); }
.hero-fan-preview .fan-card.slot-back:hover   { transform: translate(-50%,-50%) translateY(-48px) scale(0.92); filter: none; }
.hero-fan-preview:has(.fan-card:hover) .fan-card:not(:hover) { filter: blur(3px) brightness(0.7); }

.hero-wave { display: block; width: 100%; height: 40px; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding-bottom: 40px; display: flex; flex-direction: column; }
  .hero-stage { order: 1; height: 340px; margin-bottom: 8px; }
  .hero-copy { order: 2; }
}
@media (max-width: 640px) {
  .hero { padding-top: 14px; }
  .hero-inner { padding-bottom: 28px; }
  .hero-stage { height: 270px; margin-bottom: 4px; }
  .hero-fan-preview .fan-card { width: 168px; }
  .hero-fan-preview .fan-card.slot-left  { transform: translate(-50%,-50%) translate(-84px, 20px) rotate(-9deg) scale(0.8); }
  .hero-fan-preview .fan-card.slot-right { transform: translate(-50%,-50%) translate(84px, 20px) rotate(9deg) scale(0.8); }
  .hero-fan-preview .fan-card.slot-back  { transform: translate(-50%,-50%) translateY(-38px) scale(0.86); }
  .hero .eyebrow { display: none; }
  .hero h1 { font-size: clamp(24px, 7.5vw, 30px); line-height: 1.16; margin-bottom: 10px; }
  .hero-lede { font-size: 14.5px; line-height: 1.5; margin-bottom: 0; }
  .hero-cta-row { margin-top: 18px; }
}

/* ===== STICKER WALL ===== */
.wall-section { background: var(--paper-alt); }
.sticker-wall {
  max-width: var(--maxw); margin: 0 auto; padding: 20px 24px 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 34px 24px;
}
.wall-sticker {
  position: relative; border-radius: 16px; border: 7px solid #fff;
  box-shadow: var(--shadow-sm); overflow: hidden; cursor: pointer;
  aspect-ratio: 4/5;
  transform: rotate(var(--rot, 0deg));
  transition: transform 260ms cubic-bezier(0.34,1.56,0.64,1), box-shadow 260ms ease;
  transform-style: preserve-3d;
}
.wall-sticker img { display: block; width: 100%; height: 100%; object-fit: cover; }
.wall-sticker:hover, .wall-sticker.lifted {
  transform: rotate(0deg) translateY(-8px) scale(1.05);
  box-shadow: var(--shadow-lg);
  z-index: 5;
}
/* Mobile: clean big 2-up grid, no tilt/sticker-border gimmick — easier to
   actually look at on a small screen. */
@media (max-width: 640px) {
  .sticker-wall { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 16px 16px 0; }
  .wall-sticker { border-width: 3px; border-radius: 14px; transform: none !important; aspect-ratio: 1/1; }
  .wall-sticker:hover, .wall-sticker.lifted { transform: translateY(0) !important; box-shadow: var(--shadow-sm); }
  /* 15 photos is odd — hide the trailing one so mobile's 2-up grid always
     ends on a full row instead of one photo sitting alone. */
  .wall-sticker:last-child { display: none; }
}

/* ===== OUR SERVICES ===== */
.services-section { background: var(--paper); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  position: relative; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  padding-bottom: 26px;
}
.service-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: center; display: block; }
.service-card img.pos-top { object-position: center 15%; }
.service-card img.pos-top-strong { object-position: center top; }
.service-card h3 { margin: 20px 22px 8px; }
.service-card p { margin: 0 22px 6px; font-size: 15.5px; max-width: 30ch; }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }

/* ===== WHY PARENTS CHOOSE US ===== */
.why-section { background: var(--paper-alt); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.why-item { text-align: center; }
.why-icon {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 16px;
  background: var(--bubblegum-soft); color: var(--bubblegum-dark);
}
.why-item h3 { font-size: 17px; margin-bottom: 8px; }
.why-item p { font-size: 14.5px; margin: 0 auto; max-width: 26ch; white-space: nowrap; }
.mobile-break { display: none; }
@media (max-width: 640px) {
  .mobile-break { display: block; }
  .why-item p { white-space: normal; max-width: 22ch; }
}
@media (max-width: 860px) { .why-grid { grid-template-columns: 1fr 1fr; row-gap: 32px; } }

/* ===== THEMED SETUPS ===== */
.themes-section { background: var(--paper); }
.theme-scroll {
  display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0 24px 12px; max-width: var(--maxw); margin: 0 auto;
}
.theme-tile {
  position: relative; flex: 0 0 200px; scroll-snap-align: start;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  aspect-ratio: 1/1;
}
.theme-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.theme-tile span {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(30,42,69,0.82), transparent);
  color: #fff; font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 15px;
  padding: 28px 16px 12px;
}
@media (max-width: 640px) { .theme-tile { flex-basis: 158px; } }

/* ===== REPUTATION — dark peek carousel ===== */
.reputation-section { background: var(--ink); color: var(--paper); }
.reputation-section .eyebrow { color: var(--bubblegum); }
.reputation-section h2 { color: #fff; }
.reputation-inner { max-width: 900px; }

.review-carousel { position: relative; max-width: 760px; margin: 0 auto; }
.review-viewport { overflow: hidden; }
.review-track { display: flex; align-items: stretch; transition: transform 500ms cubic-bezier(0.65,0,0.35,1); }
.review-slide {
  flex: 0 0 100%; box-sizing: border-box; margin: 0 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius); padding: 32px 40px;
  text-align: center;
}
.review-avatar {
  width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bubblegum); color: #fff; font-family: 'Fredoka', sans-serif;
  font-weight: 700; font-size: 18px;
}
.review-slide .review-stars { color: #FFB100; font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.review-quote { font-size: 16px; line-height: 1.6; color: #fff; margin: 0 0 14px; }
.review-who { font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 600; }
.review-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.25); border-radius: 50%;
  background: rgba(255,255,255,0.08); color: #fff; cursor: pointer;
  transition: background-color 200ms, border-color 200ms; z-index: 2;
}
.review-nav:hover { background: var(--bubblegum); border-color: var(--bubblegum); }
.review-prev { left: -22px; }
.review-next { right: -22px; }
.review-dots { display: flex; justify-content: center; margin-top: 22px; }
.review-dots button {
  width: 44px; height: 44px; margin: 0 -11px;
  display: flex; align-items: center; justify-content: center;
  border: none; padding: 0; cursor: pointer; background: transparent;
}
.review-dots button::after {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.3); transition: background-color 200ms, transform 200ms;
}
.review-dots button.is-active::after { background: var(--bubblegum); transform: scale(1.3); }
@media (max-width: 640px) {
  .review-slide { padding: 28px 22px; margin: 0; }
  .review-nav { display: none; }
}

/* ===== HOW BOOKING WORKS ===== */
.how-section { background: var(--paper-alt); }
.how-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; }
.how-steps { display: flex; flex-direction: column; gap: 26px; }
.how-step { display: flex; gap: 18px; align-items: flex-start; }
.how-num {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
  background: var(--bubblegum); color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.how-step h3 { margin-bottom: 4px; font-size: 18px; }
.how-step p { margin: 0; font-size: 15.5px; }
.how-ready {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; text-align: center; box-shadow: var(--shadow-sm);
}
.how-ready h3 { margin-bottom: 8px; }
.how-ready .btn { margin-top: 6px; }
@media (max-width: 860px) { .how-grid { grid-template-columns: 1fr; } }

/* ===== OUR STUDIO ===== */
.find-us-section { background: var(--paper); }
.find-us-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.find-us-map { border-radius: var(--radius); overflow: hidden; height: 320px; border: 1px solid var(--border); }
.studio-list { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.studio-list li { position: relative; padding-left: 26px; font-size: 15.5px; }
.studio-list li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 14px; height: 14px;
  border-radius: 50%; background: var(--bubblegum-soft);
  box-shadow: inset 0 0 0 4px var(--bubblegum);
}
@media (max-width: 860px) { .find-us-inner { grid-template-columns: 1fr; } .find-us-map { height: 260px; } }
/* Studio's closing wave differs by breakpoint — desktop goes straight into
   the (dark) footer, mobile goes into the (pink) CTA banner first. */
.wave-mobile-only { display: none; }
@media (max-width: 640px) {
  .wave-desktop-only { display: none; }
  .wave-mobile-only { display: block; }
}

/* ===== "THEY'RE ONLY THIS LITTLE ONCE" CTA — mobile only, Billy's call ===== */
.cta-banner { background: var(--bubblegum); display: none; }
.cta-inner { display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: center; }
.cta-photo { width: 160px; height: 160px; border-radius: 50%; object-fit: cover; border: 6px solid #fff; box-shadow: var(--shadow-md); }
.cta-copy h2 { color: #fff; margin-bottom: 20px; }
.cta-copy .btn-primary { background: #fff; color: var(--bubblegum-dark); }
.cta-copy .btn-primary:hover { background: var(--ink); color: #fff; }
@media (max-width: 640px) {
  .cta-banner { display: block; }
  .cta-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-photo { width: 220px; height: 220px; margin: 0 auto; }
  .cta-copy h2 { font-size: 20px; line-height: 1.3; }
}

/* ===== FOOTER ===== */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.75); padding: 56px 0 0; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-logo { height: 40px; width: auto; filter: brightness(0) invert(1); opacity: 0.92; }
.footer-logo-text { font-family: 'Fredoka', sans-serif; font-size: 22px; font-weight: 700; color: #fff; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 14px; margin-top: 14px; max-width: 26ch; }
.footer-col h4 { color: #fff; font-family: 'Manrope', sans-serif; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.footer-col a { display: block; text-decoration: none; color: rgba(255,255,255,0.7); margin-bottom: 10px; font-size: 15px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--maxw); margin: 40px auto 0; padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.25); }
.footer-bottom a:hover { color: #fff; text-decoration-color: rgba(255,255,255,0.6); }
@media (max-width: 780px) { .footer-inner { grid-template-columns: 1fr; } }
@media (max-width: 640px) {
  .footer-bottom { justify-content: center; }
  .footer-copyright { display: none; }
  .footer-credit { width: 100%; text-align: center; }
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(30,42,69,0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 40px;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 100%; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute; top: 22px; right: 22px; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.1); border: none; border-radius: 50%; color: #fff; cursor: pointer;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .wall-sticker, .fan-card, .review-track, .btn { transition: none !important; }
}
