/* =========================================================
   FunFam Kids UK — stylesheet
   Design tokens: cream #FFF7ED, ink #2E2432, coral #FF6F5B,
   butter #FFC94D, sage #7FB69B, lavender #B8A0D9, sky #8FC6E0
   Display type: Baloo 2  |  Body type: Figtree
   ========================================================= */

:root{
  --cream: #FFFBF4;
  --cream-deep: #FBEEDC;
  --ink: #221A2C;
  --ink-soft: #6B5D71;
  --coral: #FF6F5B;
  --coral-2: #FF3E7D;
  --coral-deep: #E13F63;
  --butter: #FFC94D;
  --butter-2: #FF9F1C;
  --sage: #6FCBA4;
  --sage-2: #22B893;
  --lavender: #B8A0E8;
  --lavender-2: #8B5CF6;
  --sky: #7FC4EA;
  --sky-2: #3E9BE8;

  --font-display: 'Baloo 2', system-ui, sans-serif;
  --font-body: 'Figtree', system-ui, -apple-system, sans-serif;

  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 34px;
  --radius-pill: 999px;

  --shadow-sm: 0 4px 14px rgba(34, 26, 44, 0.08);
  --shadow-md: 0 16px 38px rgba(34, 26, 44, 0.14);
  --shadow-lg: 0 30px 70px rgba(34, 26, 44, 0.2);
  --shadow-glow: 0 18px 46px rgba(255, 62, 125, 0.22);

  --ease-bounce: cubic-bezier(.34,1.56,.64,1);
  --ease-smooth: cubic-bezier(.2,.7,.2,1);

  --container: 1180px;
  --header-h: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body, h1, h2, h3, h4, p, ul, blockquote, figure{ margin: 0; }
ul{ list-style: none; padding: 0; }
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
button, input, select, textarea{ font: inherit; color: inherit; }
address{ font-style: normal; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body{
  font-family: var(--font-body);
  background:
    radial-gradient(680px 460px at 8% 0%, rgba(255,159,28,0.07), transparent 60%),
    radial-gradient(720px 480px at 96% 6%, rgba(62,155,232,0.07), transparent 60%),
    var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.text-gradient{
  background: linear-gradient(100deg, var(--coral-2), var(--lavender-2) 55%, var(--sky-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wrap{
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 20px;
  border-radius: 0 0 10px 0;
  z-index: 200;
}
.skip-link:focus{ left: 0; }

:focus-visible{
  outline: 3px solid var(--coral);
  outline-offset: 3px;
  border-radius: 4px;
}

h1, h2, h3, h4{
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.eyebrow{
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--coral-deep);
  margin-bottom: 10px;
}
.eyebrow.center{ text-align: center; }
.eyebrow.light{ color: var(--butter); }

.section-title{
  font-size: clamp(1.8rem, 1.4rem + 1.8vw, 2.8rem);
  margin-bottom: 16px;
}
.section-title.center{ text-align: center; }
.section-title.light{ color: var(--cream); }

.section-sub{
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 620px;
}
.section-sub.center{ margin-inline: auto; text-align: center; margin-bottom: 52px; }
.section-sub.light{ color: #E9DEF3; }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn-primary{
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-2) 100%);
  color: #fff;
  box-shadow: 0 10px 26px rgba(255, 62, 125, 0.32);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-primary::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.45) 48%, transparent 66%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
  z-index: -1;
}
.btn-primary:hover::before{ transform: translateX(120%); }
.btn-primary:hover{
  background: linear-gradient(135deg, var(--coral-2) 0%, var(--coral-deep) 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 34px rgba(255, 62, 125, 0.42);
}
.btn-primary:active{ transform: translateY(0) scale(0.97); }
.btn-ghost{
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn-ghost:hover{
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-md);
}
.btn-ghost:active{ transform: translateY(0) scale(0.97); }
.btn-sm{ padding: 10px 20px; font-size: 0.88rem; }
.btn-block{ width: 100%; }

/* ---------- Split-word heading reveal ---------- */
.split-word{
  display: inline-block;
  opacity: 0;
  transform: translateY(0.4em) rotate(3deg);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--wi) * 0.08s);
}
.split-reveal-ready.is-visible .split-word{
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}
.marquee{
  background: var(--ink);
  overflow: hidden;
  padding: 18px 0;
  position: relative;
}
.marquee::before, .marquee::after{
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before{ left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.marquee::after{ right: 0; background: linear-gradient(-90deg, var(--ink), transparent); }
.marquee-track{
  display: flex;
  width: max-content;
  gap: 14px;
  animation: marqueeScroll 26s linear infinite;
}
.marquee-track span{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.marquee-track .dot{
  color: var(--butter-2);
  font-size: 0.9rem;
}
.marquee-track .dot:nth-of-type(6n+1){ color: var(--coral-2); }
.marquee-track .dot:nth-of-type(6n+2){ color: var(--butter-2); }
.marquee-track .dot:nth-of-type(6n+3){ color: var(--sage-2); }
.marquee-track .dot:nth-of-type(6n+4){ color: var(--lavender-2); }
.marquee-track .dot:nth-of-type(6n+5){ color: var(--sky-2); }
@keyframes marqueeScroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* ---------- Wave dividers ---------- */
.wave-divider{
  position: absolute;
  left: 0; right: 0;
  height: 70px;
  z-index: 2;
  pointer-events: none;
  line-height: 0;
}
.wave-divider.wave-top{ top: -1px; }
.wave-divider.wave-bottom{ bottom: -1px; }
.wave-divider svg{ width: 100%; height: 100%; display: block; }
.scroll-progress{
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--coral), var(--butter), var(--sage), var(--lavender));
  z-index: 300;
  transition: width 0.12s ease-out;
}

/* ---------- Header ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 251, 244, 0.78);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid rgba(34, 26, 44, 0.06);
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.site-header.is-scrolled{
  background: rgba(255, 251, 244, 0.94);
  box-shadow: 0 8px 30px rgba(34, 26, 44, 0.08);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo-mark{ transition: transform 0.4s cubic-bezier(.34,1.56,.64,1); }
.logo:hover .logo-mark{ transform: rotate(-8deg) scale(1.08); }
.logo-text{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  line-height: 1;
}
.logo-text span{
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin-top: 2px;
}

.main-nav{ position: relative; }
.main-nav ul{
  display: flex;
  gap: 6px;
  position: relative;
  z-index: 1;
  background: rgba(46, 36, 50, 0.04);
  padding: 5px;
  border-radius: var(--radius-pill);
}
.main-nav a{
  font-weight: 700;
  font-size: 0.94rem;
  position: relative;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  display: inline-block;
  transition: color 0.3s ease;
  color: var(--ink-soft);
}
.main-nav a:hover{ color: var(--ink); }
.main-nav a.is-active{
  color: #fff;
}

.nav-indicator{
  position: absolute;
  top: 5px; left: 5px;
  height: calc(100% - 10px);
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-2) 100%);
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 18px rgba(255, 62, 125, 0.45);
  transition: left 0.4s cubic-bezier(.34,1.4,.64,1), width 0.4s cubic-bezier(.34,1.4,.64,1), opacity 0.25s ease;
  opacity: 0;
  z-index: 0;
}
.nav-indicator.is-ready{ opacity: 1; }

.nav-cta{ margin-left: 8px; }

.nav-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span{
  display: block;
  height: 2.5px;
  border-radius: 2px;
  background: var(--ink);
  width: 24px;
  margin-inline: auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero{
  position: relative;
  background: linear-gradient(180deg, #F5EDFC 0%, var(--cream) 68%);
  padding-top: 76px;
  overflow: hidden;
}
.hero::before,
.hero::after{
  content: "";
  position: absolute;
  width: 460px; height: 460px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  z-index: 0;
  animation: driftBlob 16s ease-in-out infinite;
}
.hero::before{
  background: radial-gradient(circle at 35% 35%, var(--butter-2), var(--coral-2) 75%);
  top: -160px; left: -140px;
}
.hero::after{
  background: radial-gradient(circle at 65% 65%, var(--sky-2), var(--lavender-2) 75%);
  bottom: -200px; right: -160px;
  animation-delay: -8s;
  animation-direction: reverse;
}
.hero-inner::before{
  content: "";
  position: absolute;
  top: 10%;
  left: 50%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(139,92,246,0.16), transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: driftBlob 12s ease-in-out infinite;
  animation-delay: -4s;
}
@keyframes driftBlob{
  0%, 100%{ transform: translate(0, 0) scale(1); }
  50%{ transform: translate(40px, 30px) scale(1.15); }
}
.hero-inner{ position: relative; z-index: 1; }
.hero-garland{
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 150px;
  pointer-events: none;
}
.garland-svg{ width: 100%; height: 100%; }
.garland-balloons{
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  padding-inline: 4%;
}
.g-balloon{
  width: 22px; height: 26px;
  border-radius: 50%;
  margin-top: 6px;
  animation: bob 4.5s ease-in-out infinite;
  opacity: 0.85;
}
.g-balloon{ box-shadow: 0 6px 16px rgba(34,26,44,0.18), inset -4px -5px 0 rgba(0,0,0,0.08), inset 4px 5px 0 rgba(255,255,255,0.25); }
.g-balloon.c1{ background: linear-gradient(145deg, var(--coral), var(--coral-2)); }
.g-balloon.c2{ background: linear-gradient(145deg, var(--butter), var(--butter-2)); animation-delay: .4s; }
.g-balloon.c3{ background: linear-gradient(145deg, var(--sage), var(--sage-2)); animation-delay: .8s; }
.g-balloon.c4{ background: linear-gradient(145deg, var(--lavender), var(--lavender-2)); animation-delay: 1.2s; }
.g-balloon.c5{ background: linear-gradient(145deg, var(--sky), var(--sky-2)); animation-delay: 1.6s; }
.g-balloon:nth-child(odd){ transform: translateY(18px); }
.g-balloon:nth-child(3n){ transform: translateY(-6px); }

@keyframes bob{
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-inner{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  padding-top: 76px;
  padding-bottom: 70px;
}
.hero-copy h1{
  font-size: clamp(2.4rem, 1.8rem + 3vw, 4rem);
  margin-bottom: 20px;
}
.hero-copy h1 .hl{
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, var(--coral) 0%, var(--coral-2) 25%, var(--lavender-2) 50%, var(--coral-deep) 75%, var(--coral) 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerText 5s linear infinite;
}
@keyframes shimmerText{
  to{ background-position: -250% center; }
}
.hl-underline{
  position: absolute;
  left: -4px; right: -4px;
  bottom: -6px;
  width: calc(100% + 8px);
  height: 0.3em;
  overflow: visible;
}
.hl-underline path{
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawUnderline 0.9s cubic-bezier(.3,.8,.4,1) 1.1s forwards;
}

@keyframes drawUnderline{
  to{ stroke-dashoffset: 0; }
}

.hero-in{
  opacity: 0;
  transform: translateY(22px);
  animation: heroIn 0.8s cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes heroIn{
  to{ opacity: 1; transform: translateY(0); }
}
.hero-lede{
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 30px;
}
.hero-actions{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-trust{
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.hero-trust li{ display: flex; align-items: center; gap: 8px; }
.hero-trust li::before{
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

.hero-art{ display: flex; justify-content: center; }
.hero-illustration{ width: 100%; max-width: 420px; overflow: visible; }
.hero-illustration .parallax-item{
  transition: transform 0.25s ease-out;
}
.hero-illustration .parallax-item ellipse{
  animation: float 6s ease-in-out infinite;
  transform-origin: center;
}
.hero-illustration .parallax-item:nth-child(2){ animation-delay: 0s; }
.hero-illustration .parallax-item:nth-child(3){ animation-delay: .6s; }
.hero-illustration .parallax-item:nth-child(4){ animation-delay: 1.2s; }
.hero-illustration .parallax-item:nth-child(5){ animation-delay: 1.8s; }
@keyframes float{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-14px); }
}

/* ---------- Services ---------- */
.services{ padding: 116px 0 108px; position: relative; overflow: hidden; }
.services-aurora{
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 620px;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(420px 320px at 12% 20%, rgba(255,159,28,0.14), transparent 65%),
    radial-gradient(460px 340px at 88% 10%, rgba(139,92,246,0.13), transparent 65%),
    radial-gradient(380px 300px at 50% 55%, rgba(34,184,147,0.1), transparent 65%);
  filter: blur(10px);
}
.services .wrap{ position: relative; z-index: 1; }

.service-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 22px;
}
.service-card{
  grid-column: span 2;
  grid-row: span 1;
  background: linear-gradient(180deg, #fff 0%, #fffaf3 100%);
  border-radius: var(--radius-md);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-card--feature{ grid-column: span 2; grid-row: span 2; justify-content: flex-end; padding: 40px; }
.service-card--small{ grid-column: span 1; }

/* gradient glow border, revealed on hover */
.service-card::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  padding: 2px;
  background: linear-gradient(135deg, var(--icon-bg, var(--coral)), var(--icon-bg2, var(--coral-2)));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
/* soft radial wash of the card's own accent colour */
.service-card::after{
  content: "";
  position: absolute;
  top: -40%; right: -30%;
  width: 220px; height: 220px;
  background: radial-gradient(circle, color-mix(in srgb, var(--icon-bg, var(--coral)) 30%, transparent), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: transform 0.5s var(--ease-smooth), opacity 0.5s ease;
  opacity: 0.7;
}
.service-card:hover{
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before{ opacity: 1; }
.service-card:hover::after{ transform: scale(1.25) translate(6%, -6%); opacity: 1; }

.service-icon{
  width: 58px; height: 58px;
  border-radius: 17px;
  background: linear-gradient(145deg, var(--icon-bg, var(--coral)), var(--icon-bg2, var(--coral-2)));
  box-shadow: 0 10px 22px color-mix(in srgb, var(--icon-bg, var(--coral)) 45%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  transition: transform 0.4s var(--ease-bounce);
  animation: iconFloat 5s ease-in-out infinite;
}
.service-card--small .service-icon{ margin-bottom: 12px; width: 46px; height: 46px; border-radius: 14px; }
.service-card--small .service-icon svg{ width: 22px; height: 22px; }
.service-icon svg{ width: 28px; height: 28px; }
.service-card:hover .service-icon{ transform: rotate(-8deg) scale(1.12); }
@keyframes iconFloat{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-5px); }
}
.service-card:hover .service-icon{ animation-play-state: paused; }

.service-card h3{
  font-size: 1.28rem;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.service-card--feature h3{ font-size: 1.7rem; }
.service-card--small h3{ font-size: 1.08rem; }
.service-card p{ color: var(--ink-soft); font-size: 0.96rem; position: relative; z-index: 1; }
.service-card--feature p{ font-size: 1rem; max-width: 380px; }
.service-card--small p{ font-size: 0.86rem; }

.service-arrow{
  position: absolute;
  top: 28px; right: 28px;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34,26,44,0.06);
  color: var(--ink);
  font-size: 1.1rem;
  transition: transform 0.4s var(--ease-bounce), background 0.3s ease, color 0.3s ease;
}
.service-card--feature:hover .service-arrow{
  transform: rotate(45deg) scale(1.1);
  background: linear-gradient(135deg, var(--icon-bg), var(--icon-bg2));
  color: #fff;
}

.service-card--cta{
  grid-column: span 4;
  grid-row: span 1;
  background: linear-gradient(135deg, var(--ink) 0%, #3a2a49 60%, #2a1f3d 100%);
  color: var(--cream);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.service-card--cta::before{ background: conic-gradient(from 0deg, var(--coral), var(--butter), var(--sage), var(--lavender), var(--sky), var(--coral)); animation: spinBorder 6s linear infinite; opacity: 0; }
.service-card--cta:hover::before{ opacity: 0.9; }
@keyframes spinBorder{ to{ transform: rotate(360deg); } }
.service-card--cta::after{ display: none; }
.service-card--cta h3{ color: var(--cream); margin-bottom: 4px; }
.service-card--cta p{ color: #D8CBE0; margin: 0; max-width: 460px; }
.service-card--cta .btn{ flex-shrink: 0; }
.service-card--cta .btn span{ display: inline-block; transition: transform 0.3s var(--ease-bounce); }
.service-card--cta .btn:hover span{ transform: translateX(4px); }

@media (max-width: 900px){
  .service-grid{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
  .service-card, .service-card--feature, .service-card--small, .service-card--cta{ grid-column: span 2; }
  .service-card--feature{ padding: 32px; }
}
@media (max-width: 560px){
  .service-grid{ grid-template-columns: 1fr; }
  .service-card, .service-card--feature, .service-card--small, .service-card--cta{ grid-column: span 1; }
  .service-card--cta{ flex-direction: column; align-items: flex-start; }
}

/* ---------- Gallery ---------- */
.gallery{
  background: var(--ink);
  padding: 108px 0 100px;
  position: relative;
  overflow: hidden;
}
.gallery::before{
  content: "";
  position: absolute;
  top: 10%;
  left: 50%;
  width: 900px;
  height: 500px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(255,62,125,0.16), rgba(139,92,246,0.1) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.gallery .wrap{ position: relative; z-index: 1; }

/* ---------- Gallery filter tabs ---------- */
.gallery-filters{
  position: relative;
  display: flex;
  width: fit-content;
  gap: 4px;
  margin: 0 auto 44px;
  padding: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-pill);
}
.filter-btn{
  position: relative;
  z-index: 1;
  background: transparent;
  border: none;
  color: #C7B9CF;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: color 0.25s ease;
}
.filter-btn:hover{ color: #fff; }
.filter-btn.is-active{ color: var(--ink); }
.filter-indicator{
  position: absolute;
  top: 6px; bottom: 6px;
  left: 6px;
  width: 60px;
  background: linear-gradient(135deg, var(--coral), var(--coral-2));
  box-shadow: 0 6px 16px rgba(255,62,125,0.4);
  border-radius: var(--radius-pill);
  transition: left 0.35s cubic-bezier(.34,1.2,.64,1), width 0.35s cubic-bezier(.34,1.2,.64,1);
  z-index: 0;
}

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}
.gallery-item.is-hidden{
  display: none;
}
.gallery-item.is-filtering{
  animation: filterPop 0.4s ease;
}
@keyframes filterPop{
  from{ opacity: 0; transform: scale(0.92); }
  to{ opacity: 1; transform: scale(1); }
}

.play-badge{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(46, 36, 50, 0.55);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), background 0.25s ease;
}
.play-badge svg{ width: 24px; height: 24px; margin-left: 3px; }
.gallery-item--video:hover .play-badge{
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--coral);
}
.gallery-caption em{ font-style: normal; opacity: 0.75; font-weight: 500; }
.gallery-item{
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1), box-shadow 0.35s ease;
}
.gallery-item:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.gallery-item.reveal-pop{ transform: translateY(20px) scale(0.9) rotate(-2deg); }
.gallery-item.reveal-pop:nth-child(even){ transform: translateY(20px) scale(0.9) rotate(2deg); }
.gallery-item.reveal-pop.is-visible{ transform: translateY(0) scale(1) rotate(0deg); }
.gallery-item.reveal-pop.is-visible:hover{ transform: translateY(-6px) scale(1.01) rotate(0deg); }
.gallery-item.span-2{ grid-column: span 2; }
.gallery-item img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img{ transform: scale(1.06); }
.gallery-caption{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 18px;
  background: linear-gradient(0deg, rgba(46,36,50,0.85), transparent);
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.gallery-item:hover .gallery-caption,
.gallery-item:focus .gallery-caption{
  opacity: 1;
  transform: translateY(0);
}
.gallery-note{
  text-align: center;
  margin-top: 30px;
  font-size: 0.88rem;
  color: #C7B9CF;
}

/* ---------- About ---------- */
.about{ padding: 108px 0; background: linear-gradient(180deg, var(--cream) 0%, #EFE4F5 100%); }
.about-inner{
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.about-illustration{ width: 100%; max-width: 380px; margin-inline: auto; display: block; }
.about-copy p{ color: var(--ink-soft); margin-bottom: 16px; font-size: 1.02rem; }
.about-badges{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 26px;
}
.about-badges li{
  background: linear-gradient(180deg, #fff 0%, #fffaf3 100%);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--coral-2);
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s ease, border-color 0.3s ease;
}
.about-badges li:nth-child(2){ border-left-color: var(--sage-2); }
.about-badges li:nth-child(3){ border-left-color: var(--lavender-2); }
.about-badges li:nth-child(4){ border-left-color: var(--sky-2); }
.about-badges li:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.about-badges strong{
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--coral-deep);
}
.about-badges span{ font-size: 0.85rem; color: var(--ink-soft); }

/* ---------- Testimonials ---------- */
.testimonials{ padding: 100px 0 108px; }
.testimonial-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card{
  background: linear-gradient(180deg, #fff 0%, #fffaf3 100%);
  border-radius: var(--radius-md);
  padding: 34px 28px 30px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--coral);
  position: relative;
  transition: box-shadow 0.35s ease;
}
.testimonial-card:hover{ box-shadow: var(--shadow-lg); }
.testimonial-card::before{
  content: "\201C";
  position: absolute;
  top: -6px; right: 22px;
  font-family: var(--font-display);
  font-size: 4.2rem;
  line-height: 1;
  color: var(--coral);
  opacity: 0.14;
  pointer-events: none;
}
.testimonial-card:nth-child(2){ border-top-color: var(--sage-2); }
.testimonial-card:nth-child(2)::before{ color: var(--sage-2); }
.testimonial-card:nth-child(3){ border-top-color: var(--lavender-2); }
.testimonial-card:nth-child(3)::before{ color: var(--lavender-2); }
.testimonial-card p{
  font-size: 1.02rem;
  margin-bottom: 18px;
  color: var(--ink);
  position: relative;
}
.testimonial-card cite{
  font-style: normal;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ---------- Contact ---------- */
.contact{
  position: relative;
  background: linear-gradient(180deg, #EFE4F5 0%, #F3ECFB 100%);
  padding: 96px 0 110px;
  overflow: hidden;
}
.contact::before{
  content: "";
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sage-2), transparent 72%);
  filter: blur(90px);
  opacity: 0.28;
  top: 10%;
  right: -120px;
  animation: driftBlob 18s ease-in-out infinite;
  z-index: 0;
}
.contact-inner{ position: relative; z-index: 1; }
.contact-garland{
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 90px;
  pointer-events: none;
}
.contact-inner{
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
  align-items: start;
  margin-top: 40px;
}
.contact-details{ margin: 30px 0 24px; display: flex; flex-direction: column; gap: 18px; }
.contact-detail{ display: flex; gap: 14px; align-items: flex-start; }
.detail-icon{
  width: 40px; height: 40px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral-deep);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.detail-icon svg{ width: 20px; height: 20px; }
.contact-detail strong{ display: block; font-size: 0.95rem; margin-bottom: 2px; }
.contact-detail a, .contact-detail address{ color: var(--ink-soft); font-size: 0.95rem; }
.contact-detail a:hover{ color: var(--coral-deep); }

.map-embed{
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 220px;
}
.map-embed iframe{ width: 100%; height: 100%; border: 0; }

.contact-form{
  background: linear-gradient(180deg, #fff 0%, #fffaf3 100%);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.contact-form::before{
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255,62,125,0.12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.contact-form h3{
  font-size: 1.5rem;
  margin-bottom: 22px;
}
.form-row{ margin-bottom: 18px; }
.form-row--split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row label{
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 7px;
  color: var(--ink);
}
.form-row input,
.form-row select,
.form-row textarea{
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid #E7DCEE;
  border-radius: var(--radius-sm);
  background: #FDFBF8;
  font-size: 0.96rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus{
  border-color: var(--coral-2);
  box-shadow: 0 0 0 4px rgba(255, 62, 125, 0.14);
  outline: none;
}
.form-row textarea{ resize: vertical; min-height: 100px; }
.hp-field{ position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.form-status{
  margin-top: 14px;
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 1.2em;
}
.form-status.success{ color: #3F8F63; }
.form-status.error{ color: #D2483A; }

/* ---------- Footer ---------- */
.site-footer{
  background: var(--ink);
  color: #E9DEF3;
  position: relative;
}
.site-footer::before{
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--butter-2), var(--sage-2), var(--lavender-2), var(--sky-2));
}
.footer-inner{
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding: 70px 0 50px;
}
.footer-brand p{ margin: 16px 0 20px; color: #C7B9CF; font-size: 0.92rem; max-width: 320px; }
.footer-brand .logo-text{ color: #fff; }
.socials{ display: flex; gap: 12px; }
.socials a{
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s ease, transform 0.35s var(--ease-bounce), box-shadow 0.3s ease;
}
.socials svg{ width: 17px; height: 17px; fill: #E9DEF3; }
.socials a:hover{
  background: linear-gradient(135deg, var(--coral), var(--coral-2));
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 18px rgba(255,62,125,0.4);
}

.site-footer h4{
  font-size: 0.98rem;
  color: #fff;
  margin-bottom: 18px;
}
.footer-nav ul, .footer-services ul{ display: flex; flex-direction: column; gap: 11px; }
.footer-nav a, .footer-services li{ color: #C7B9CF; font-size: 0.92rem; }
.footer-nav a:hover{ color: #fff; }

.footer-contact{ display: flex; flex-direction: column; gap: 10px; }
.footer-contact address, .footer-contact a{ color: #C7B9CF; font-size: 0.92rem; }
.footer-contact a:hover{ color: #fff; }

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom .wrap{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 22px 24px;
  font-size: 0.82rem;
  color: #9C8CA6;
}

/* ---------- Scroll reveal ---------- */
.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--stagger, 0s);
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}
.reveal-pop{
  transform: translateY(20px) scale(0.94);
}
.reveal-pop.is-visible{
  transform: translateY(0) scale(1);
}

.reveal-children > *{
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-children.is-visible > *{
  opacity: 1;
  transform: translateY(0) scale(1);
}
.reveal-children.is-visible > *:nth-child(1){ transition-delay: 0.05s; }
.reveal-children.is-visible > *:nth-child(2){ transition-delay: 0.15s; }
.reveal-children.is-visible > *:nth-child(3){ transition-delay: 0.25s; }
.reveal-children.is-visible > *:nth-child(4){ transition-delay: 0.35s; }

/* ---------- Tilt cards ---------- */
.tilt-card{
  transform-style: preserve-3d;
  will-change: transform;
}

/* ---------- Back to top ---------- */
.back-to-top{
  position: fixed;
  right: 22px;
  bottom: 26px;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--coral);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s, background 0.2s ease;
  z-index: 90;
  animation: bob 4.5s ease-in-out infinite;
}
.back-to-top svg{ width: 22px; height: 22px; }
.back-to-top.is-visible{
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.back-to-top:hover{ background: var(--coral-deep); animation-play-state: paused; transform: translateY(-3px) scale(1.05); }

/* ---------- Confetti burst ---------- */
.submit-wrap{ position: relative; }
.confetti-host{
  position: absolute;
  left: 50%; top: 50%;
  width: 0; height: 0;
  pointer-events: none;
}
.confetti-piece{
  position: absolute;
  left: 0; top: 0;
  width: 8px; height: 8px;
  border-radius: 2px;
  opacity: 1;
  animation: confettiBurst 0.9s ease-out forwards;
}
@keyframes confettiBurst{
  to{
    opacity: 0;
    transform: translate(var(--tx), var(--ty)) rotate(var(--rot));
  }
}

/* =========================================================
   Grain / texture overlay — subtle premium finish site-wide
   ========================================================= */
.grain-overlay{
  position: fixed;
  inset: 0;
  z-index: 250;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* =========================================================
   Hero scroll cue
   ========================================================= */
.scroll-cue{
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.scroll-cue:hover{ opacity: 1; transform: translateX(-50%) translateY(-2px); }
.scroll-cue-mouse{
  width: 24px; height: 38px;
  border: 2px solid var(--ink-soft);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-cue-dot{
  width: 4px; height: 8px;
  border-radius: 2px;
  background: var(--coral);
  animation: scrollCueBob 1.8s ease-in-out infinite;
}
@keyframes scrollCueBob{
  0%{ opacity: 1; transform: translateY(0); }
  70%{ opacity: 0.3; transform: translateY(10px); }
  71%{ opacity: 0; transform: translateY(10px); }
  72%{ opacity: 0; transform: translateY(0); }
  100%{ opacity: 1; transform: translateY(0); }
}

/* =========================================================
   Stats strip
   ========================================================= */
.stats{ padding: 64px 0; }
.stats-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-card{
  background: linear-gradient(180deg, #fff 0%, #fffaf3 100%);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-smooth), box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}
.stat-card::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  padding: 2px;
  background: linear-gradient(135deg, var(--coral-2), var(--lavender-2), var(--sky-2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.stat-card::after{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120px 90px at 50% -20%, rgba(255,62,125,0.14), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.stat-card:hover{ transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-md); }
.stat-card:hover::after{ opacity: 1; }
.stat-card:hover::before{ opacity: 1; }
.stat-icon{
  width: 48px; height: 48px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease-bounce);
}
.stat-card:hover .stat-icon{ transform: scale(1.12) rotate(-6deg); }
.stat-icon svg{ width: 44px; height: 44px; }
.stat-number{
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 1.4rem + 1vw, 2.3rem);
  line-height: 1.1;
  background: linear-gradient(135deg, var(--coral-2), var(--coral-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label{
  display: block;
  margin-top: 6px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-soft);
}

/* =========================================================
   Process / "How it works"
   ========================================================= */
.process{
  padding: 100px 0 108px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, #FBF1E4 100%);
}
.process-blob{
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.28;
  z-index: 0;
  animation: driftBlob 17s ease-in-out infinite;
}
.process-blob--1{ width: 340px; height: 340px; background: radial-gradient(circle, var(--lavender-2), transparent 72%); top: -80px; right: -100px; }
.process-blob--2{ width: 300px; height: 300px; background: radial-gradient(circle, var(--sage-2), transparent 72%); bottom: -120px; left: -90px; animation-delay: -6s; animation-direction: reverse; }
.process .wrap{ position: relative; z-index: 1; }

.process-grid{
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 30px;
}
.process-line{
  position: absolute;
  top: 44px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--coral) 0%, var(--sage-2) 33%, var(--lavender-2) 66%, var(--sky-2) 100%);
  opacity: 0.35;
  z-index: 0;
}
.process-step{
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #fff 0%, #fffaf3 100%);
  border-radius: var(--radius-md);
  padding: 30px 22px 26px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.35s var(--ease-smooth), box-shadow 0.35s ease;
}
.process-step:hover{ transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-md); }
.process-number{
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--coral-2));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(255,62,125,0.4);
}
.process-step:nth-child(3) .process-number{ background: linear-gradient(135deg, var(--sage), var(--sage-2)); box-shadow: 0 6px 14px rgba(34,184,147,0.4); }
.process-step:nth-child(4) .process-number{ background: linear-gradient(135deg, var(--lavender), var(--lavender-2)); box-shadow: 0 6px 14px rgba(139,92,246,0.4); }
.process-step:nth-child(5) .process-number{ background: linear-gradient(135deg, var(--sky), var(--sky-2)); box-shadow: 0 6px 14px rgba(62,155,232,0.4); }
.process-icon{
  width: 52px; height: 52px;
  margin: 14px auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease-bounce);
}
.process-step:hover .process-icon{ transform: scale(1.1) rotate(-6deg); }
.process-icon svg{ width: 46px; height: 46px; }
.process-step h3{ font-size: 1.12rem; margin-bottom: 8px; }
.process-step p{ font-size: 0.9rem; color: var(--ink-soft); }

/* =========================================================
   Gallery — loading state, count text, video tiles, spotlight
   ========================================================= */
.gallery-loading{
  grid-column: 1 / -1;
  text-align: center;
  color: #C7B9CF;
  font-weight: 600;
  padding: 60px 0;
}
#gallery-count{ color: var(--butter); font-weight: 700; }
.gallery-item video{
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  transition: transform 0.5s ease;
  background: rgba(255,255,255,0.04);
}
.gallery-item:hover video{ transform: scale(1.06); }
.gallery-grid{
  position: relative;
}
.gallery-grid::before{
  content: "";
  position: absolute;
  inset: -40px;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%), rgba(255,111,91,0.16), transparent 70%);
  transition: opacity 0.3s ease;
}
.gallery-grid.has-spotlight::before{ opacity: 1; }

/* =========================================================
   Testimonials — stars & avatars
   ========================================================= */
.testimonial-stars{
  display: block;
  color: var(--butter-2);
  letter-spacing: 2px;
  font-size: 1.05rem;
  margin-bottom: 14px;
  text-shadow: 0 2px 8px rgba(255,159,28,0.35);
}
.testimonial-footer{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.testimonial-avatar{
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--avatar-bg, var(--coral));
  box-shadow: 0 6px 14px color-mix(in srgb, var(--avatar-bg, var(--coral)) 50%, transparent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-footer cite{
  display: flex;
  flex-direction: column;
  font-style: normal;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
  gap: 2px;
}
.testimonial-footer cite span{
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px){
  .service-grid{ grid-template-columns: repeat(2, 1fr); }
  .gallery-grid{ grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
  .about-inner{ grid-template-columns: 1fr; }
  .about-art{ order: -1; max-width: 280px; margin-inline: auto; }
  .contact-inner{ grid-template-columns: 1fr; }
  .footer-inner{ grid-template-columns: 1fr 1fr; }
  .stats-grid{ grid-template-columns: repeat(2, 1fr); }
  .process-grid{ grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .process-line{ display: none; }
}

@media (max-width: 860px){
  .main-nav, .nav-cta{ display: none; }
  .nav-toggle{ display: flex; }

  .main-nav{
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(46,36,50,0.08);
    box-shadow: var(--shadow-md);
  }
  .main-nav.is-open{ display: block; }
  .main-nav ul{
    flex-direction: column;
    padding: 20px 24px 26px;
    gap: 4px;
    background: none;
    border-radius: 0;
  }
  .main-nav a.is-active{
    color: var(--coral-deep);
    background: rgba(255, 111, 91, 0.1);
  }
  .main-nav a{
    display: block;
    padding: 12px 4px;
    font-size: 1.05rem;
  }
  .main-nav a::after{ display: none; }
  .nav-indicator{ display: none; }

  .hero-inner{ grid-template-columns: 1fr; padding-top: 46px; }
  .hero-art{ order: -1; }
  .hero-illustration{ max-width: 280px; }
  .hero-copy{ text-align: left; }

  .service-grid{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
  .gallery-item.span-2{ grid-column: span 2; }
  .gallery-filters{ flex-wrap: wrap; }

  .testimonial-grid{ grid-template-columns: 1fr; }

  .form-row--split{ grid-template-columns: 1fr; }
  .contact-form{ padding: 28px 22px; }

  .footer-inner{ grid-template-columns: 1fr 1fr; gap: 34px; }

  .scroll-cue{ display: none; }
  .stats{ padding: 50px 0; }
  .process{ padding: 76px 0; }
}

@media (max-width: 560px){
  .wrap{ padding-inline: 18px; }
  .services, .about, .testimonials, .gallery{ padding: 76px 0; }
  .contact{ padding: 70px 0 84px; }
  .gallery-grid{ grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .footer-inner{ grid-template-columns: 1fr; padding: 56px 0 40px; }
  .footer-bottom .wrap{ flex-direction: column; text-align: center; }
  .hero-garland{ height: 100px; }
  .g-balloon{ width: 16px; height: 19px; }
  .marquee-track span{ font-size: 0.92rem; }
  .marquee{ padding: 13px 0; }
  .wave-divider{ height: 40px; }
  .stats-grid{ grid-template-columns: 1fr 1fr; gap: 14px; }
  .stat-card{ padding: 20px 14px; }
  .process-grid{ grid-template-columns: 1fr; }
}