/* ===== Fanschool — base ===== */
:root {
  --cream: #FDF8EF;
  --paper: #FFFFFF;
  --ink: #2B2116;
  --ink-soft: #6B5E4F;
  --amber: #F0A93B;
  --amber-dark: #D9901F;
  --sage: #4C9A5B;
  --plum: #6B4E8E;
  --terracotta: #E07B4F;
  --purple: #b280e5;
  --purple-dark: #7F5FAE;
  --lavender: #C5ACE3;
  --lavender-soft: #F1EBFA;
  --peach: #FDE0BE;
  --sky: #4F97C4;
  --pink: #D97FA0;
  --line: #EDE3D2;
  --shadow-sm: 0 2px 10px rgba(43, 33, 22, .06);
  --shadow-md: 0 12px 32px rgba(43, 33, 22, .10);
  --shadow-lg: 0 24px 60px rgba(43, 33, 22, .18);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-full: 999px;
  --container: 1240px;
  --ff-body: 'Nunito', system-ui, sans-serif;
  --ff-display: 'Comfortaa', 'Nunito', system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block
}

a {
  color: inherit;
  text-decoration: none
}

h1,
h2,
h3 {
  font-family: var(--ff-display);
  margin: 0;
  line-height: 1.15
}

p {
  margin: 0
}

ul {
  margin: 0;
  padding: 0;
  list-style: none
}

svg {
  display: block
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 1.7rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 1rem;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 12px 28px rgba(127, 95, 174, .35);
}

.btn-primary:hover {
  background: var(--purple-dark);
  transform: translateY(-2px)
}

.btn-ghost {
  background: rgba(255, 255, 255, .14);
  color: #fff;
  border-color: rgba(255, 255, 255, .55);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .26)
}

.btn-sm {
  padding: .65rem 1.45rem;
  font-size: .92rem;
  line-height: 1;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px clamp(14px, 3.5vw, 28px) 0;
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 253, 248, .86);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: var(--radius-full);
  padding: 6px 8px 6px 14px;
  box-shadow: 0 8px 28px rgba(43, 33, 22, .08);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--purple);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(127, 95, 174, .25);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.logo:hover .logo-badge {
  background: var(--purple-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(127, 95, 174, .35);
}

.logo-img {
  height: 22px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-sub {
  font-size: .68rem;
  color: var(--ink-soft);
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.15;
  max-width: 140px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 auto;
  flex-wrap: nowrap;
}

.main-nav a {
  padding: .55rem .95rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: .92rem;
  color: var(--ink-soft);
  transition: background .15s ease, color .15s ease, transform .15s ease;
  white-space: nowrap;
}

.main-nav a:hover {
  background: var(--lavender-soft);
  color: var(--ink);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}

.header-actions .btn {
  padding: 7px 18px;
  font-size: .88rem;
  line-height: 1.2;
  border: none;
  box-shadow: 0 4px 14px rgba(127, 95, 174, .25);
}

.header-actions .btn:hover {
  background: var(--purple-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(127, 95, 174, .35);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: .9rem;
  color: var(--ink);
  padding: .5rem .8rem;
  border-radius: var(--radius-full);
  transition: background .15s ease, color .15s ease;
  white-space: nowrap;
}

.header-phone:hover {
  background: var(--lavender-soft);
  color: var(--purple-dark);
}

.header-phone svg {
  color: var(--purple);
  flex-shrink: 0;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid rgba(155, 121, 196, 0.2);
  background: var(--lavender-soft);
  border-radius: var(--radius-full);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: background .18s ease, transform .18s ease;
}

.burger:hover {
  background: var(--lavender);
  transform: scale(1.04);
}

.burger span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

.burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
  opacity: 0;
}

.burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Hero (Modern Split Showcase) ===== */
.hero {
  position: relative;
  min-height: clamp(600px, 86vh, 880px);
  display: flex;
  align-items: center;
  margin-top: 0;
  padding-top: 100px;
  padding-bottom: 70px;
  background: var(--cream);
  overflow: hidden;
}

.hero-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  pointer-events: none;
}

.hero-glow--1 {
  top: -10%;
  right: -5%;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(197, 172, 227, .65) 0%, rgba(197, 172, 227, 0) 70%);
}

.hero-glow--2 {
  bottom: 5%;
  left: -8%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(240, 169, 59, .35) 0%, rgba(240, 169, 59, 0) 70%);
}

.hero-star {
  position: absolute;
  color: var(--purple);
  opacity: .35;
  font-size: 16px;
  animation: heroStarTwinkle 4s ease-in-out infinite;
}

.hero-star--1 { top: 18%; left: 8%; animation-delay: 0s; font-size: 18px; color: var(--amber); }
.hero-star--2 { top: 75%; left: 45%; animation-delay: 1.5s; font-size: 14px; }
.hero-star--3 { top: 22%; right: 12%; animation-delay: 2.8s; font-size: 15px; color: var(--pink); }

@keyframes heroStarTwinkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: .25; }
  50% { transform: scale(1.3) rotate(15deg); opacity: .75; }
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding: 0 clamp(16px, 4vw, 32px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(155, 121, 196, .22);
  color: var(--ink);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: .84rem;
  letter-spacing: .01em;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(43, 33, 22, .06);
}

.hero-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4C9A5B;
  box-shadow: 0 0 10px #4C9A5B;
  animation: badge-pulse 2s infinite;
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.3rem, 4.8vw, 3.8rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}

.hero-title__highlight {
  color: var(--purple-dark);
  position: relative;
  display: inline-block;
}

.hero-title__highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(197, 172, 227, 0.4);
  border-radius: 6px;
  z-index: -1;
  transform: rotate(-1deg);
}

.hero-lead {
  display: block;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.65;
  font-weight: 600;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.hero-btn-cta {
  padding: 1rem 2rem;
  font-size: 1.05rem;
  box-shadow: 0 14px 32px rgba(127, 95, 174, .38);
}

.hero-phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  padding: .6rem 1.3rem .6rem .85rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.hero-phone-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--purple);
}

.hero-phone-pill__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--lavender-soft);
  color: var(--purple-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-phone-pill__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.hero-phone-pill__text small {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--ink-soft);
  opacity: .75;
}

.hero-phone-pill__text strong {
  font-size: .95rem;
  font-weight: 800;
  color: var(--ink);
}

/* Social proof & Trust */
.hero-trust {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px dashed rgba(43, 33, 22, .14);
  width: 100%;
}

.hero-trust__social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.hero-trust__avatars {
  display: flex;
  align-items: center;
}

.hero-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--lavender-soft);
  border: 2px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-left: -8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

.hero-avatar:first-child {
  margin-left: 0;
}

.hero-trust__rating {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.hero-trust__stars {
  color: #F0A93B;
  font-size: .9rem;
  letter-spacing: 2px;
}

.hero-trust__rating span {
  font-size: .84rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  color: var(--ink);
  font-size: .82rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(43, 33, 22, .04);
  transition: transform .18s ease, border-color .18s ease;
}

.hero-chip:hover {
  transform: translateY(-2px);
  border-color: var(--purple);
}

.hero-chip svg {
  color: var(--sage);
  flex-shrink: 0;
}

/* ===== Hero Media Showcase (Right Column) ===== */
.hero-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media-card {
  position: relative;
  width: 100%;
  max-width: 540px;
  border-radius: 36px;
  padding: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, .6));
  border: 1.5px solid rgba(255, 255, 255, .9);
  box-shadow: 0 24px 64px rgba(107, 78, 142, .18), 0 4px 16px rgba(43, 33, 22, .06);
}

.hero-main-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 28px;
  display: block;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
}

/* Floating UI Stickers / Badges */
.hero-float {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .9);
  padding: 10px 16px;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(43, 33, 22, .12), 0 2px 8px rgba(0, 0, 0, .04);
  animation: heroFloatIdle 4s ease-in-out infinite;
}

.hero-float--adapt {
  top: -16px;
  left: -20px;
  animation-delay: 0s;
}

.hero-float--halal {
  bottom: -20px;
  right: -16px;
  animation-delay: 1.8s;
}

.hero-float--lang {
  top: 24px;
  right: -24px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: .82rem;
  font-weight: 800;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--lavender);
  animation-delay: 2.6s;
}

.hero-float--exp {
  bottom: 24px;
  left: -24px;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 16px;
  background: var(--paper);
  border: 1.5px solid var(--peach);
  animation-delay: 1s;
}

.hero-float__exp-num {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--amber-dark);
  line-height: 1;
}

.hero-float__exp-lbl {
  font-size: .72rem;
  font-weight: 700;
  color: var(--ink-soft);
  white-space: nowrap;
}

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

.hero-float__icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--lavender-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.hero-float__info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.hero-float__info strong {
  font-size: .88rem;
  font-weight: 800;
  color: var(--ink);
}

.hero-float__info span {
  font-size: .75rem;
  color: var(--ink-soft);
  font-weight: 600;
}

/* ===== Features ===== */
.features {
  max-width: var(--container);
  margin: 0 auto;
  padding: 30px clamp(16px, 4vw, 32px) 70px;
  position: relative;
  z-index: 2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 4px
}

.feature-card p {
  color: var(--ink-soft);
  font-size: .92rem;
  font-weight: 600
}

.info-strip {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}

.info-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: var(--lavender-soft);
  color: var(--purple-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card div {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.info-card strong {
  font-size: .95rem;
  font-weight: 800
}

.info-card span {
  font-size: .82rem;
  color: var(--ink-soft);
  font-weight: 600
}

/* ===== Age groups ===== */
.age-groups {
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px clamp(16px, 4vw, 32px) 90px;
}

.age-groups__head {
  max-width: 600px;
  margin: 0 auto 48px;
  text-align: center;
}

.age-groups__head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 700;
}

.age-groups__head p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.6;
  font-weight: 500;
}

.age-groups__carousel {
  position: relative;
  padding: 0 60px
}

.age-groups__arrow {
  position: absolute;
  top: 38%;
  translate: 0 -50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, opacity .15s ease;
}

.age-groups__arrow:hover {
  background: var(--purple);
  color: #fff
}

.age-groups__arrow:disabled {
  opacity: .35;
  cursor: default;
  pointer-events: none
}

.age-groups__arrow--prev {
  left: 0
}

.age-groups__arrow--next {
  right: 0
}

.age-groups__track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 4px;
  padding: 6px 4px 14px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.age-groups__track::-webkit-scrollbar {
  display: none
}

.age-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 22px 26px;
  box-shadow: var(--shadow-sm);
}

.age-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 18px;
}

.age-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 44% 56% 63% 37% / 45% 42% 58% 55%;
  background: var(--cream);
}

.age-card__badge {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: var(--tone);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(43, 33, 22, .18);
}

.age-card__badge svg {
  width: 20px;
  height: 20px
}

.age-card__body h3 {
  font-size: 1.15rem;
  font-weight: 800
}

.age-card__meta {
  margin-top: 4px;
  color: var(--tone);
  font-weight: 800;
  font-size: .9rem;
}

.age-card__body p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: .9rem;
  line-height: 1.55;
  font-weight: 500;
  min-height: 4.6em;
}

.age-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: .7rem 1.1rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--tone);
  background: transparent;
  color: var(--tone);
  font-weight: 800;
  font-size: .92rem;
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}

.age-card__cta svg {
  width: 16px;
  height: 16px;
  transition: transform .18s ease
}

.age-card__cta:hover {
  background: var(--tone);
  color: #fff
}

.age-card__cta:hover svg {
  transform: translateX(3px)
}

/* ===== Stats ===== */
.stats {
  max-width: 1160px;
  margin: 0 auto;
  padding: 30px clamp(16px, 4vw, 32px) 80px;
}

.stats__head {
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center
}

.stats__head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 700
}

.stats__head p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.6;
  font-weight: 500
}

.stats__cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px 30px;
  padding: 20px 0 30px;
}

.stat-blob {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px;
  background: color-mix(in srgb, var(--tone) 13%, var(--paper));
  border: 1.5px solid color-mix(in srgb, var(--tone) 32%, transparent);
  translate: 0 var(--stagger, 0px);
}

.stat-blob strong {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  font-weight: 700;
  color: var(--tone);
  line-height: 1;
}

.stat-blob span {
  margin-top: 8px;
  max-width: 15ch;
  font-size: .8rem;
  font-weight: 800;
  color: var(--ink-soft);
  line-height: 1.35;
}

.stat-blob--1 {
  width: 150px;
  height: 150px;
  --stagger: 12px;
  border-radius: 42% 58% 65% 35% / 48% 40% 60% 52%
}

.stat-blob--2 {
  width: 172px;
  height: 172px;
  --stagger: -12px;
  border-radius: 58% 42% 40% 60% / 55% 60% 42% 45%
}

.stat-blob--3 {
  width: 232px;
  height: 232px;
  --stagger: -4px;
  border-radius: 55% 45% 50% 50% / 45% 55% 48% 52%
}

.stat-blob--3 strong {
  font-size: clamp(2.3rem, 4vw, 3.1rem)
}

.stat-blob--4 {
  width: 190px;
  height: 190px;
  --stagger: -16px;
  border-radius: 40% 60% 55% 45% / 60% 45% 55% 40%
}

.stat-blob--5 {
  width: 158px;
  height: 158px;
  --stagger: 10px;
  border-radius: 62% 38% 45% 55% / 42% 58% 40% 60%
}

@media (prefers-reduced-motion:no-preference) {
  .stat-blob {
    animation: stat-float 7s ease-in-out infinite
  }

  .stat-blob--1 {
    animation-duration: 6.5s;
    animation-delay: -1s
  }

  .stat-blob--2 {
    animation-duration: 8s;
    animation-delay: -3s
  }

  .stat-blob--3 {
    animation-duration: 9s;
    animation-delay: -2s
  }

  .stat-blob--4 {
    animation-duration: 7.5s;
    animation-delay: -4s
  }

  .stat-blob--5 {
    animation-duration: 6.8s;
    animation-delay: -.5s
  }
}

@keyframes stat-float {

  0%,
  100% {
    translate: 0 var(--stagger, 0px)
  }

  50% {
    translate: 0 calc(var(--stagger, 0px) - 10px)
  }
}

@media (max-width:640px) {
  .stats__cluster {
    gap: 14px
  }

  .stat-blob--1,
  .stat-blob--2,
  .stat-blob--3,
  .stat-blob--4,
  .stat-blob--5 {
    --stagger: 0px
  }

  .stat-blob--1 {
    width: 120px;
    height: 120px
  }

  .stat-blob--2 {
    width: 138px;
    height: 138px
  }

  .stat-blob--3 {
    width: 168px;
    height: 168px
  }

  .stat-blob--4 {
    width: 146px;
    height: 146px
  }

  .stat-blob--5 {
    width: 124px;
    height: 124px
  }
}

/* ===== Day routine ===== */
.day {
  max-width: 1360px;
  margin: 0 auto;
  padding: 20px clamp(16px, 4vw, 32px) 100px;
}

.day-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: start;
}

.day-intro h2 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 700;
  line-height: 1.22;
}

.day-intro>p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.6;
  font-weight: 500;
}

.day-photo {
  position: relative;
  margin-top: 28px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.day-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 720/788;
  object-fit: cover;
}

.day-photo__badges {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.day-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(6px);
  padding: .45rem .8rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: .78rem;
  box-shadow: var(--shadow-sm);
}

.day-chip--time {
  color: var(--sage)
}

.day-chip--meal {
  color: var(--amber-dark)
}

.day-quote {
  margin-top: 20px;
  background: var(--lavender-soft);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
}

.day-quote__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--purple);
  margin-bottom: 10px;
}

.day-quote strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800
}

.day-quote p {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.5
}

/* --- Radial clock --- */
.day-clock {
  position: relative;
  width: min(660px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  --face-r: 96px;
  --orbit-r: 190px;
  --card-r: 248px;
}

.day-clock__orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(var(--orbit-r) * 2);
  height: calc(var(--orbit-r) * 2);
  translate: -50% -50%;
  border-radius: 50%;
  border: 1.5px dashed var(--line);
}

.day-clock__face {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: calc(var(--face-r) * 2);
  height: calc(var(--face-r) * 2);
  translate: -50% -50%;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

.day-clock__ticks {
  display: block;
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: repeating-conic-gradient(var(--ink) 0deg 2deg, transparent 2deg 30deg);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 8px), #000 calc(100% - 7px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 8px), #000 calc(100% - 7px));
  opacity: .45;
}

.day-clock__hand {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 6px;
  transform-origin: 50% 100%;
}

.day-clock__hand--h {
  width: 6px;
  height: calc(var(--face-r) * .5);
  translate: -50% -100%;
  rotate: 300deg;
  background: var(--purple)
}

.day-clock__hand--m {
  width: 4px;
  height: calc(var(--face-r) * .72);
  translate: -50% -100%;
  rotate: 60deg;
  background: var(--ink)
}

.day-clock__pivot {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 3px var(--paper);
}

.day-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  inset: 0
}

.day-item {
  position: absolute;
  inset: 0;
  pointer-events: none
}

.day-item__spoke {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  rotate: var(--angle);
}

.day-item__line {
  display: block;
  position: absolute;
  left: -1px;
  top: calc(-1 * var(--card-r));
  width: 2px;
  height: calc(var(--card-r) - var(--face-r));
  background: var(--tone);
  opacity: .32;
}

.day-item__dot {
  display: block;
  position: absolute;
  left: -6px;
  top: calc(-1 * var(--orbit-r) - 6px);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--tone);
  box-shadow: 0 0 0 4px var(--paper);
  z-index: 2;
}

.day-item__card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 196px;
  pointer-events: auto;
  translate:
    calc(-50% + (sin(var(--angle)) * var(--card-r))) calc(-50% + (cos(var(--angle)) * -1 * var(--card-r)));
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: var(--shadow-sm);
  z-index: 2;
  transition: box-shadow .18s ease, border-color .18s ease;
}

.day-item__card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--tone)
}

.day-item__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--tone) 16%, white);
  color: var(--tone);
}

.day-item__icon svg {
  width: 16px;
  height: 16px
}

.day-item__time {
  font-size: .72rem;
  font-weight: 800;
  color: var(--tone)
}

.day-item__title {
  margin-top: 2px;
  font-size: .83rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink)
}

@media (max-width:1180px) {
  .day-inner {
    grid-template-columns: 1fr
  }

  .day-photo {
    max-width: 420px
  }

  .day-clock {
    width: 100%;
    aspect-ratio: auto;
    margin-top: 40px
  }

  .day-clock__orbit,
  .day-clock__face,
  .day-item__spoke {
    display: none
  }

  .day-list {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 10px
  }

  .day-item {
    position: static;
    inset: auto;
    pointer-events: auto
  }

  .day-item__card {
    position: static;
    translate: none;
    width: auto;
    align-items: center;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Team ===== */
.team {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px clamp(16px, 4vw, 32px) 90px;
}

.team__head {
  max-width: 600px;
  margin: 0 auto 48px;
  text-align: center
}

.team__head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 700
}

.team__head p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.6;
  font-weight: 500
}

.team__carousel {
  position: relative;
  padding: 0 56px
}

.team__arrow {
  position: absolute;
  top: 38%;
  translate: 0 -50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, opacity .15s ease;
}

.team__arrow:hover {
  background: var(--purple);
  color: #fff
}

.team__arrow:disabled {
  opacity: .35;
  cursor: default;
  pointer-events: none
}

.team__arrow--prev {
  left: 0
}

.team__arrow--next {
  right: 0
}

.team__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 4px;
  padding: 6px 4px 14px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.team__track::-webkit-scrollbar {
  display: none
}

.team-card {
  flex: 0 0 290px;
  scroll-snap-align: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px 20px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.team-card__photo {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 480/640;
  margin-bottom: 16px;
  background: var(--cream);
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.team-card h3 {
  font-size: 1.08rem;
  font-weight: 800
}

.team-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px
}

.team-card__tag {
  font-size: .74rem;
  font-weight: 800;
  padding: .3rem .65rem;
  border-radius: var(--radius-full);
  background: var(--lavender-soft);
  color: var(--purple-dark);
}

.team-card p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: .88rem;
  line-height: 1.55;
  font-weight: 500;
  flex-grow: 1
}

.team-card__cta {
  margin-top: 16px;
  align-self: flex-start;
  padding: .65rem 1.05rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--purple);
  background: transparent;
  color: var(--purple);
  font-weight: 800;
  font-size: .86rem;
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}

.team-card__cta:hover {
  background: var(--purple);
  color: #fff
}

/* ===== Spaces ===== */
.spaces {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px clamp(16px, 4vw, 32px) 100px;
}

.spaces__head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center
}

.spaces__head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 700
}

.spaces__head p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.6;
  font-weight: 500
}

.spaces__carousel {
  position: relative;
  padding: 0 56px
}

.spaces__arrow {
  position: absolute;
  top: 38%;
  translate: 0 -50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, opacity .15s ease;
}

.spaces__arrow:hover {
  background: var(--purple);
  color: #fff
}

.spaces__arrow:disabled {
  opacity: .35;
  cursor: default;
  pointer-events: none
}

.spaces__arrow--prev {
  left: 0
}

.spaces__arrow--next {
  right: 0
}

.spaces__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 4px;
  padding: 6px 4px 14px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.spaces__track::-webkit-scrollbar {
  display: none
}

.space-card {
  flex: 0 0 380px;
  scroll-snap-align: start
}

.space-card__photo {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 50% 50% 14px 14px / 38% 38% 14px 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--cream);
}

.space-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.space-card__badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--tone);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(43, 33, 22, .2);
}

.space-card__badge svg {
  width: 22px;
  height: 22px
}

.space-card h3 {
  margin-top: 18px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--tone)
}

.space-card p {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: .9rem;
  line-height: 1.5;
  font-weight: 500
}

.space-card__more {
  margin-top: 10px;
  background: none;
  border: none;
  padding: 0;
  color: var(--tone);
  font-weight: 800;
  font-size: .86rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.space-card__more:hover {
  opacity: .75
}

.info-modal {
  max-width: 520px
}

.info-modal h3 {
  font-size: 1.3rem;
  font-weight: 700;
  font-family: var(--ff-display);
  padding-right: 28px
}

.info-modal #info-body {
  margin-top: 14px
}

.info-modal #info-body p {
  color: var(--ink-soft);
  font-size: .96rem;
  line-height: 1.6;
  font-weight: 500
}

.info-modal #info-body p+p {
  margin-top: 12px
}

.info-modal .btn {
  margin-top: 22px
}

@media (max-width:900px) {
  .spaces__carousel {
    padding: 0 44px
  }

  .spaces__arrow {
    width: 40px;
    height: 40px
  }

  .space-card {
    flex: 0 0 320px
  }
}

@media (max-width:560px) {
  .spaces__carousel {
    padding: 0
  }

  .spaces__arrow {
    display: none
  }

  .space-card {
    flex-basis: 78vw
  }
}

/* ===== Joy / lead block ===== */
.joy {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px clamp(16px, 4vw, 32px) 100px;
}

.joy-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  gap: 36px;
  align-items: center;
}

.joy-text__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lavender-soft);
  color: var(--purple);
  margin-bottom: 16px;
}

.joy-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.22
}

.joy-text p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500
}

.joy-photo {
  aspect-ratio: 720/900;
  border-radius: 44% 56% 63% 37% / 45% 42% 58% 55%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.joy-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.joy-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-md);
}

.joy-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--amber);
  color: #fff;
  margin-bottom: 14px;
}

.joy-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.3
}

.joy-card>p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: .9rem;
  line-height: 1.55;
  font-weight: 500
}

.joy-card__cta {
  display: inline-flex;
  margin-top: 18px;
  padding: .85rem 1.4rem;
  border-radius: var(--radius-full);
  border: none;
  background: var(--purple);
  color: #fff;
  font-weight: 800;
  font-size: .92rem;
  cursor: pointer;
  transition: background .18s ease;
}

.joy-card__cta:hover {
  background: var(--purple-dark)
}

.joy-card__privacy {
  margin-top: 12px;
  font-size: .78rem;
  color: var(--ink-soft);
  font-weight: 500
}

@media (max-width:900px) {
  .team__carousel {
    padding: 0 44px
  }

  .team__arrow {
    width: 40px;
    height: 40px
  }

  .joy-inner {
    grid-template-columns: 1fr;
    text-align: center
  }

  .joy-text__icon {
    margin-left: auto;
    margin-right: auto
  }

  .joy-photo {
    max-width: 320px;
    margin: 32px auto
  }
}

@media (max-width:560px) {
  .team__carousel {
    padding: 0
  }

  .team__arrow {
    display: none
  }

  .team-card {
    flex-basis: 76vw
  }
}

/* ===== FAQ ===== */
.faq {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px clamp(16px, 4vw, 32px) 100px;
}

.faq__head {
  max-width: 560px;
  margin: 0 auto 40px;
  text-align: center
}

.faq__head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 700
}

.faq__head p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.6;
  font-weight: 500
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 6px 22px;
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  font-family: var(--ff-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none
}

.faq-item summary svg {
  flex-shrink: 0;
  color: var(--purple);
  transition: transform .2s ease;
}

.faq-item[open] summary svg {
  transform: rotate(180deg)
}

.faq-item p {
  margin: -4px 0 18px;
  color: var(--ink-soft);
  font-size: .94rem;
  line-height: 1.6;
  font-weight: 500;
}

/* ===== Footer ===== */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 32px rgba(43, 33, 22, .06);
}

.site-footer__cloud {
  position: absolute;
  top: -6%;
  right: -4%;
  width: 340px;
  height: auto;
  color: var(--lavender);
  opacity: .35;
  pointer-events: none;
}

.site-footer__star {
  position: absolute;
  color: var(--purple);
  opacity: .35;
  pointer-events: none;
  font-size: 14px;
}

.site-footer__star--1 {
  top: 14%;
  left: 8%;
  font-size: 11px
}

.site-footer__star--2 {
  top: 38%;
  left: 22%;
  font-size: 8px;
  opacity: .28
}

.site-footer__star--3 {
  top: 10%;
  left: 46%;
  font-size: 9px;
  opacity: .3
}

.site-footer__star--4 {
  top: 60%;
  left: 6%;
  font-size: 13px;
  opacity: .22
}

.site-footer__star--5 {
  top: 22%;
  left: 64%;
  font-size: 10px;
  opacity: .3
}

@media (prefers-reduced-motion:no-preference) {
  .site-footer__star {
    animation: footer-twinkle 4s ease-in-out infinite
  }

  .site-footer__star--2 {
    animation-duration: 3.2s;
    animation-delay: -1s
  }

  .site-footer__star--3 {
    animation-duration: 5s;
    animation-delay: -2.4s
  }

  .site-footer__star--4 {
    animation-duration: 3.6s;
    animation-delay: -.6s
  }

  .site-footer__star--5 {
    animation-duration: 4.6s;
    animation-delay: -1.8s
  }
}

@keyframes footer-twinkle {

  0%,
  100% {
    opacity: .14
  }

  50% {
    opacity: .55
  }
}

.site-footer__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 72px clamp(16px, 4vw, 32px) 0;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 56px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.site-footer__brand p {
  margin-top: 16px;
  font-size: .9rem;
  line-height: 1.6;
  max-width: 30ch
}

.site-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px
}

.site-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: var(--lavender-soft);
  color: var(--purple-dark);
  font-size: .72rem;
  font-weight: 800;
  transition: background .18s ease, color .18s ease;
}

.site-footer__social a:hover {
  background: var(--purple);
  color: #fff
}

.site-footer__nav,
.site-footer__branch,
.site-footer__contact {
  display: flex;
  flex-direction: column
}

.site-footer__nav h3,
.site-footer__branch h3,
.site-footer__contact h3 {
  font-family: var(--ff-display);
  font-size: .85rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
}

.site-footer__nav a,
.site-footer__branch a,
.site-footer__contact a {
  font-size: .9rem;
  font-weight: 600;
  padding: 5px 0;
  color: var(--ink-soft);
  transition: color .15s ease;
}

.site-footer__nav a:hover,
.site-footer__branch a:hover,
.site-footer__contact a:hover {
  color: var(--purple)
}

.site-footer__branch span,
.site-footer__contact span {
  font-size: .82rem;
  color: var(--ink-soft);
  opacity: .7;
  margin-top: 4px
}

.site-footer__contact .btn {
  margin-top: 18px;
  align-self: flex-start
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  font-size: .8rem;
}

.site-footer__bottom p {
  margin: 0;
  color: var(--ink-soft);
  opacity: .7
}

.site-footer__legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap
}

.site-footer__legal a {
  color: var(--ink-soft);
  opacity: .7;
  font-size: .8rem;
  transition: color .15s ease, opacity .15s ease
}

.site-footer__legal a:hover {
  color: var(--purple);
  opacity: 1
}

@media (max-width:900px) {
  .site-footer__top {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px
  }

  .site-footer__brand {
    grid-column: 1 / -1
  }
}

@media (max-width:560px) {
  .site-footer__top {
    grid-template-columns: 1fr
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start
  }
}

/* ===== Modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(30, 22, 15, .55);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible
}

.modal {
  position: relative;
  width: 100%;
  max-width: 440px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px 36px 32px;
  transform: translateY(18px) scale(.97);
  opacity: 0;
  transition: transform .28s cubic-bezier(.2, .8, .2, 1), opacity .25s ease;
}

.modal-overlay.is-open .modal {
  transform: translateY(0) scale(1);
  opacity: 1
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: var(--radius-full);
  background: var(--cream);
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}

.modal-close:hover {
  background: var(--lavender-soft);
  color: var(--purple-dark)
}

.modal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--lavender-soft), #fff);
  color: var(--purple);
  margin-bottom: 18px;
}

.modal-body h3,
.modal-success h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.modal-body p,
.modal-success p {
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.55;
  font-weight: 500;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 26px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.field span {
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink);
}

.field input,
.field select {
  font-family: var(--ff-body);
  font-size: .98rem;
  font-weight: 600;
  color: var(--ink);
  padding: .85rem 1rem;
  border-radius: 14px;
  border: 1.5px solid var(--line);
  background: var(--cream);
  outline: none;
  transition: border-color .15s ease, background .15s ease;
  appearance: none;
}

.field input::placeholder {
  color: #B7A996;
  font-weight: 500
}

.field input:focus,
.field select:focus {
  border-color: var(--purple);
  background: #fff
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B5E4F' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.4rem;
}

.btn-block {
  width: 100%;
  justify-content: center;
  margin-top: 6px
}

.modal-consent {
  font-size: .76rem !important;
  color: var(--ink-soft);
  text-align: center;
  line-height: 1.5;
}

.modal-consent a {
  color: var(--purple-dark);
  font-weight: 700;
  text-decoration: underline
}

.modal-error {
  margin: 0;
  padding: .7rem .9rem;
  border-radius: 12px;
  background: #FCEFEA;
  color: #B0472C;
  font-size: .84rem;
  font-weight: 600;
  text-align: center;
}

.btn[disabled] {
  opacity: .65;
  cursor: default
}

.modal-success {
  text-align: center;
  padding-top: 6px
}

.modal-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: var(--sage);
  color: #fff;
  margin-bottom: 18px;
}

.modal-success .btn-ghost-purple {
  display: inline-flex;
  margin-top: 20px;
  padding: .8rem 1.4rem;
  border-radius: var(--radius-full);
  background: var(--lavender-soft);
  color: var(--purple-dark);
  font-weight: 800;
  font-size: .92rem;
}

body.no-scroll {
  overflow: hidden !important;
  touch-action: none;
}

/* ===== Fullscreen Awwwards-style Mobile Menu ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-100%);
  transition: transform .42s cubic-bezier(0.16, 1, 0.3, 1), opacity .32s ease, visibility .42s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 12%, rgba(197, 172, 227, 0.45) 0%, transparent 45%),
    radial-gradient(circle at 10% 88%, rgba(240, 169, 59, 0.22) 0%, transparent 45%),
    var(--cream);
  pointer-events: none;
}

.mobile-menu__container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 20px clamp(18px, 5vw, 36px) 32px;
  max-width: 580px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(43, 33, 22, 0.08);
}

.mobile-menu__close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lavender-soft);
  border: 1px solid rgba(155, 121, 196, 0.25);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .22s ease, background .22s ease, color .22s ease;
}

.mobile-menu__close:hover,
.mobile-menu__close:active {
  background: var(--purple);
  color: #fff;
  transform: rotate(90deg) scale(1.05);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 28px 0 36px;
}

.mobile-menu__link {
  display: flex;
  align-items: baseline;
  gap: 16px;
  text-decoration: none;
  font-family: var(--ff-display);
  font-size: clamp(2rem, 7.8vw, 3.2rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  transition: transform .25s cubic-bezier(0.16, 1, 0.3, 1), color .2s ease;
}

.mobile-menu__num {
  font-family: var(--ff-body);
  font-size: clamp(.82rem, 2.8vw, .95rem);
  font-weight: 800;
  color: var(--purple);
  opacity: .75;
}

.mobile-menu.is-open .mobile-menu__link {
  animation: mobileLinkIn .48s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.mobile-menu.is-open .mobile-menu__link:nth-child(1) { animation-delay: .06s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(2) { animation-delay: .11s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(3) { animation-delay: .16s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(4) { animation-delay: .21s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(5) { animation-delay: .26s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(6) { animation-delay: .31s; }

@keyframes mobileLinkIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu__link:hover,
.mobile-menu__link:active {
  color: var(--purple);
  transform: translateX(10px);
}

.mobile-menu__footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(43, 33, 22, 0.08);
}

.mobile-menu__contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mobile-menu__label {
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  color: var(--ink-soft);
  opacity: .72;
  display: block;
  margin-bottom: 4px;
}

.mobile-menu__branch p {
  font-size: .88rem;
  font-weight: 700;
  color: var(--ink);
  margin: 2px 0;
}

.mobile-menu__phone {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--purple);
  display: block;
  text-decoration: none;
}

.mobile-menu__hours {
  font-size: .8rem;
  color: var(--ink-soft);
  display: block;
  margin-top: 2px;
}

.mobile-menu__cta {
  width: 100%;
  justify-content: center;
  padding: 1rem 1.4rem;
  font-size: 1.05rem;
}

.mobile-menu__socials {
  display: flex;
  gap: 16px;
  margin-top: 4px;
}

.mobile-menu__socials a {
  font-size: .92rem;
  font-weight: 700;
  color: var(--ink-soft);
  transition: color .15s ease;
}

.mobile-menu__socials a:hover {
  color: var(--purple);
}

/* ===== Responsive ===== */
@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-content {
    max-width: 680px;
  }

  .hero-media-card {
    max-width: 600px;
    margin: 0 auto;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-phone span {
    display: none;
  }

  .hero {
    margin-top: -76px;
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .age-groups__carousel {
    padding: 0 44px;
  }

  .age-groups__arrow {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 92px;
    padding-bottom: 30px;
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-btn-cta,
  .hero-phone-pill {
    width: 100%;
    justify-content: center;
  }

  .hero-float {
    padding: 6px 12px;
    border-radius: 14px;
    gap: 7px;
  }

  .hero-float--adapt {
    top: -10px;
    left: -4px;
  }

  .hero-float--halal {
    bottom: -12px;
    right: -4px;
  }

  .hero-float--lang {
    top: 10px;
    right: -4px;
    font-size: .74rem;
    padding: 5px 10px;
  }

  .hero-float--exp {
    bottom: 12px;
    left: -4px;
    padding: 6px 10px;
  }

  .hero-float__icon {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .hero-float__info strong {
    font-size: .78rem;
  }

  .hero-float__info span {
    font-size: .68rem;
  }

  .hero-float__exp-num {
    font-size: 1.15rem;
  }

  .features {
    padding-top: 14px;
    padding-bottom: 34px;
  }

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

  .age-groups {
    padding-top: 6px;
  }
}

@media (max-width: 560px) {
  .header-actions .btn-sm {
    display: none;
  }

  .logo-sub {
    display: none;
  }

  .mobile-menu__contacts {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .modal {
    padding: 32px 22px 26px;
    border-radius: 22px;
  }

  .modal-overlay {
    padding: 14px;
  }

  .age-groups__carousel {
    padding: 0;
  }

  .age-groups__arrow {
    display: none;
  }

  .age-card {
    flex-basis: 76vw;
  }
}