/* Jazeera Islamic Preschool Padang
   Palette from the logo (teal, iris) and the building facade (gable orange & yellow, moss wall). */
:root {
  --teal: #2c5c5d;
  --teal-ink: #173536;
  --teal-soft: #d6e5e2;
  --mist: #eef4f2;
  --paper: #fbfcfa;
  --iris: #4646b4;
  --iris-soft: #e3e3f6;
  --orange: #ee5a2a;
  --orange-soft: #fbe2d7;
  --yellow: #f4cf3a;
  --yellow-soft: #fcf0c2;
  --moss: #6f9b3c;
  --moss-soft: #e2ecd2;
  --text: #1f3a3b;
  --muted: #56706f;
  --line: #cddcd8;

  --display: "Fredoka", "Trebuchet MS", system-ui, sans-serif;
  --body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --hand: "Caveat", "Comic Sans MS", cursive;
  --arabic: "Amiri", "Traditional Arabic", serif;

  --wrap: 1180px;
  --gutter: clamp(16px, 4vw, 40px);
  --radius: 18px;

  /* 8-point star (khatam) lattice */
  --star: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'%3E%3Cg fill='none' stroke='%232c5c5d' stroke-opacity='.1'%3E%3Cpath d='M18 18h20v20H18z'/%3E%3Cpath d='M28 13.9 42.1 28 28 42.1 13.9 28z'/%3E%3Cpath d='M0 0l13.9 13.9M56 0 42.1 13.9M0 56l13.9-13.9M56 56 42.1 42.1'/%3E%3C/g%3E%3C/svg%3E");
  --star-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'%3E%3Cg fill='none' stroke='%23fff' stroke-opacity='.08'%3E%3Cpath d='M18 18h20v20H18z'/%3E%3Cpath d='M28 13.9 42.1 28 28 42.1 13.9 28z'/%3E%3Cpath d='M0 0l13.9 13.9M56 0 42.1 13.9M0 56l13.9-13.9M56 56 42.1 42.1'/%3E%3C/g%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font: 400 1.0625rem/1.65 var(--body);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-underline-offset: 3px; }
a:hover { color: var(--teal-ink); }
:focus-visible { outline: 3px solid var(--iris); outline-offset: 3px; border-radius: 6px; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; color: var(--teal-ink); line-height: 1.12; margin: 0; text-wrap: balance; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.75rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.15rem; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.skip { position: absolute; left: -999px; top: 8px; z-index: 100; background: var(--teal-ink); color: #fff; padding: 8px 14px; border-radius: 8px; }
.skip:focus { left: 8px; }
.hand { font-family: var(--hand); font-weight: 600; line-height: 1; }
.arabic { font-family: var(--arabic); line-height: 1.8; }
.fine { font-size: .875rem; color: var(--muted); }

.pattern { background-color: var(--mist); background-image: var(--star); }
.pattern-ink { background-color: var(--teal-ink); background-image: var(--star-light); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 12px 24px; border-radius: 999px;
  font: 700 1rem/1.2 var(--body); text-decoration: none;
  border: 2px solid transparent; transition: background-color .2s, color .2s, border-color .2s, transform .2s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-ink); color: #fff; }
.btn-ghost { border-color: var(--teal); color: var(--teal); background: transparent; }
.btn-ghost:hover { background: var(--teal); color: #fff; }
.btn-light { background: #fff; color: var(--teal-ink); }
.btn-light:hover { background: var(--yellow); color: var(--teal-ink); }
.btn-sm { min-height: 42px; padding: 9px 18px; font-size: .95rem; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Ribbon + header */
.ribbon { background: var(--teal-ink); color: #e9f1ef; font-size: .9rem; }
.ribbon p { padding-block: 9px; text-align: center; }
.ribbon a { color: var(--yellow); font-weight: 700; margin-left: 6px; white-space: nowrap; }
.ribbon a:hover { color: #fff; }

.site-header {
  position: sticky; top: env(safe-area-inset-top, 0px); z-index: 50;
  background: rgba(251, 252, 250, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 76px; }
.brand img { width: 148px; height: auto; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a:not(.btn) { color: var(--text); text-decoration: none; font-weight: 500; font-size: .98rem; }
.nav a:not(.btn):hover { color: var(--teal); text-decoration: underline; }
.nav-toggle {
  display: none; font: 700 .95rem var(--body); color: var(--teal-ink);
  background: var(--mist); border: 1px solid var(--line); border-radius: 999px; padding: 10px 18px; cursor: pointer;
}

/* Sections */
.section { padding-block: clamp(64px, 9vw, 120px); }
.section-mist { background: var(--mist); }
.section-ink { color: #dfeae8; }
.section-ink h2 { color: #fff; }
.section-teal { background: var(--teal); color: #e8f1ef; }
.section-teal h2 { color: #fff; }
.section-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head p { margin-top: 14px; color: var(--muted); font-size: 1.1rem; }
.section-head-row { max-width: none; display: flex; justify-content: space-between; align-items: end; gap: 24px; }
.section-head-row > div:first-child { max-width: 640px; }
.sub-head { margin: clamp(48px, 6vw, 72px) 0 24px; font-size: 1.5rem; }

/* HERO */
.hero { padding-block: clamp(40px, 6vw, 80px) clamp(64px, 8vw, 110px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero-hello { font-size: clamp(1.7rem, 2.6vw, 2.1rem); color: var(--orange); margin-bottom: 14px; }
.hero h1 { font-size: clamp(2.5rem, 5vw, 4.1rem); letter-spacing: -.01em; max-width: 15ch; }
.hero .lead { margin: 24px 0 32px; font-size: 1.15rem; max-width: 34em; color: var(--text); }
.partner { margin-top: 28px; font-size: .9rem; color: var(--muted); padding-left: 14px; border-left: 3px solid var(--iris); }

.hero-art { position: relative; aspect-ratio: 5 / 6; width: 100%; max-width: 520px; justify-self: end; }
.gables { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.gables .g { fill: none; stroke-width: 20; stroke-linejoin: miter; stroke-dasharray: 1; stroke-dashoffset: 0; }
.g1 { stroke: var(--orange); }
.g2 { stroke: var(--yellow); }
.mihrab { clip-path: url(#mihrab); }
.hero-photo { position: absolute; left: 12%; right: 12%; top: 6.5%; bottom: 0; background: var(--teal-soft); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.hero-kid { position: absolute; left: -6%; bottom: -4%; height: 52%; width: auto; filter: drop-shadow(0 10px 18px rgba(23, 53, 54, .22)); }
.hero-name {
  position: absolute; left: -9%; bottom: 52%; font-size: 1.5rem; color: var(--teal-ink); transform: rotate(-6deg);
  background: #fff; padding: 5px 12px 7px; border-radius: 8px; box-shadow: 0 4px 12px rgba(23, 53, 54, .14);
}
.stickers { list-style: none; position: absolute; right: -4%; top: 34%; display: grid; gap: 12px; justify-items: end; }
.stickers li {
  background: #fff; color: var(--teal-ink); font-weight: 700; font-size: .95rem;
  padding: 10px 16px; border-radius: 12px; box-shadow: 0 8px 20px rgba(23, 53, 54, .14);
}
.stickers li:nth-child(1) { transform: rotate(3deg); }
.stickers li:nth-child(2) { transform: rotate(-2deg); margin-right: 18px; background: var(--yellow); }
.stickers li:nth-child(3) { transform: rotate(2deg); }

/* One orchestrated entrance: gables draw, photo rises, kid pops in */
@media (prefers-reduced-motion: no-preference) {
  .gables .g { stroke-dashoffset: 1; animation: draw 1.1s cubic-bezier(.6, 0, .2, 1) forwards; }
  .g2 { animation-delay: .25s !important; }
  .hero-photo { animation: rise .9s .15s cubic-bezier(.2, .7, .2, 1) both; }
  .hero-kid { animation: pop .7s .8s cubic-bezier(.3, 1.4, .5, 1) both; }
  .hero-name, .stickers li { animation: fade .5s 1.2s both; }
  .stickers li:nth-child(2) { animation-delay: 1.35s; }
  .stickers li:nth-child(3) { animation-delay: 1.5s; }
}
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes rise { from { opacity: 0; transform: translateY(24px); } }
@keyframes pop { from { opacity: 0; transform: translateY(30px) scale(.9); } }
@keyframes fade { from { opacity: 0; } }

/* WHY */
.reasons { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 36px); }
.reason h3 { margin: 22px 0 12px; }
.reason ul { list-style: none; display: grid; gap: 8px; color: var(--muted); font-size: .98rem; }
.reason li { padding-left: 20px; position: relative; }
.reason li::before {
  content: ""; position: absolute; left: 2px; top: .55em; width: 9px; height: 9px;
  background: var(--teal); clip-path: polygon(50% 0, 100% 40%, 100% 100%, 0 100%, 0 40%);
}
.reason-fig { position: relative; height: 290px; display: flex; justify-content: center; align-items: flex-end; }
.reason-fig::before {
  content: ""; position: absolute; inset: 22% 4% 0; border-radius: 999px 999px 14px 14px; background: var(--tint);
}
.reason-fig img { position: relative; height: 100%; width: auto; object-fit: contain; object-position: bottom; }
.reason-fig-pair img { height: 96%; max-width: 50%; }
.reason-fig-pair img + img { margin-left: -8%; height: 88%; }
.reason-fig .hand {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%) rotate(-3deg);
  background: #fff; padding: 5px 12px 7px; border-radius: 8px; font-size: 1.3rem; white-space: nowrap;
  box-shadow: 0 4px 12px rgba(23, 53, 54, .12);
}
.tint-yellow { --tint: var(--yellow-soft); }
.tint-orange { --tint: var(--orange-soft); }
.tint-iris { --tint: var(--iris-soft); }
.tint-moss { --tint: var(--moss-soft); }

/* PRINCIPAL LETTER */
.letter { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 6vw, 88px); align-items: center; }
.letter-fig { position: relative; aspect-ratio: 4 / 5; max-width: 420px; width: 100%; }
.letter-arch { position: absolute; inset: 0; background: var(--teal) var(--star-light); }
.letter-fig img { position: absolute; left: 50%; bottom: 0; width: 92%; transform: translateX(-50%); }
.letter-body .arabic { font-size: clamp(1.5rem, 2.4vw, 1.9rem); color: var(--teal); text-align: left; margin-bottom: 8px; }
.letter-body blockquote { margin: 24px 0 28px; padding: 0; font-size: 1.2rem; line-height: 1.7; max-width: 36em; }
.letter-body blockquote p + p { margin-top: 14px; }
.signoff { display: flex; align-items: center; gap: 16px; }
.signoff img { width: 76px; height: auto; }
.signoff p { line-height: 1.4; color: var(--muted); }
.signoff strong { color: var(--teal-ink); }

/* PROGRAMS */
.programs { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 32px); }
.house {
  --roof: 70px;
  padding: calc(var(--roof) + 18px) 28px 30px;
  clip-path: polygon(50% 0, 100% var(--roof), 100% 100%, 0 100%, 0 var(--roof));
  text-align: center;
}
.house-yellow { background: var(--yellow); }
.house-orange { background: var(--orange); }
.house-moss { background: var(--moss); }
.house .age { font-family: var(--display); font-weight: 500; font-size: 1.05rem; color: var(--teal-ink); }
.house h3 { font-size: clamp(2rem, 3vw, 2.4rem); margin: 4px 0 2px; }
.house .equiv { font-family: var(--hand); font-size: 1.45rem; color: var(--teal-ink); }
.house-orange :is(.age, h3, .equiv), .house-moss :is(.age, h3, .equiv) { color: #fff; }
.program dl { margin: 0; background: #fff; border: 1px solid var(--line); border-top: 0; border-radius: 0 0 var(--radius) var(--radius); padding: 8px 24px; }
.program dl div { display: grid; grid-template-columns: 56px 1fr; gap: 12px; padding: 14px 0; }
.program dl div + div { border-top: 1px dashed var(--line); }
.program dt { font-weight: 700; color: var(--teal); }
.program dd { margin: 0; }

.extra {
  margin-top: clamp(40px, 5vw, 56px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px 48px; align-items: start;
  background: var(--yellow-soft); border-radius: var(--radius); padding: clamp(24px, 4vw, 40px);
}
.extra h3 { margin-bottom: 10px; }
.extra .price-line { margin-top: 14px; }
.extra .price-line strong { font-family: var(--display); font-size: 1.6rem; color: var(--teal-ink); }
.extra .fine { grid-column: 1 / -1; }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; align-content: start; }
.chips li { background: #fff; border-radius: 999px; padding: 8px 16px; font-weight: 500; }

/* HOW WE TEACH */
.teach-intro { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.teach-intro p { margin-top: 16px; font-size: 1.1rem; }
.methods { list-style: none; display: grid; gap: 18px; }
.methods li { padding-left: 34px; position: relative; color: var(--muted); }
.methods li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 20px;
  background: var(--orange); clip-path: polygon(50% 0, 100% 35%, 100% 100%, 0 100%, 0 35%);
}
.methods li:nth-child(2)::before { background: var(--yellow); }
.methods li:nth-child(3)::before { background: var(--moss); }
.methods li:nth-child(4)::before { background: var(--iris); }
.methods strong { display: block; color: var(--teal-ink); font-size: 1.05rem; }

.areas { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 2px solid var(--teal); }
.area { padding: 22px 20px 8px 0; }
.area + .area { padding-left: 20px; border-left: 1px solid var(--line); }
.area h4 { margin-bottom: 8px; color: var(--teal); }
.area p { font-size: .96rem; }
.area .tools { margin-top: 12px; font-size: .86rem; color: var(--muted); font-style: italic; }

/* ISLAMIC DAILY LIFE */
.faith { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(32px, 6vw, 88px); align-items: center; }
.faith-copy > p { margin-top: 16px; font-size: 1.1rem; max-width: 30em; }
.faith-list { list-style: none; margin-top: 28px; display: grid; gap: 12px; }
.faith-list li { display: flex; gap: 14px; align-items: baseline; font-weight: 500; color: #fff; }
.faith-list li::before { content: "✦"; color: var(--yellow); font-size: .9rem; }
.dua {
  position: relative; isolation: isolate; margin: 0; color: var(--text);
  padding: 0 clamp(130px, 15vw, 170px) clamp(28px, 4vw, 40px) clamp(24px, 4vw, 44px);
  min-height: 500px; display: flex; flex-direction: column; justify-content: flex-end;
}
.dua::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--paper); clip-path: url(#mihrab); }
.dua figcaption { font-family: var(--display); font-weight: 600; color: var(--teal); font-size: 1.15rem; }
.dua .arabic { font-size: clamp(1.5rem, 2.3vw, 1.9rem); color: var(--teal-ink); margin: 10px 0 4px; text-align: left; }
.dua .translit { font-style: italic; color: var(--muted); margin-bottom: 8px; }
.dua img { position: absolute; right: 2%; bottom: 0; height: 64%; width: auto; }
.dua .hand { position: absolute; right: 21%; top: 30%; font-size: 1.5rem; color: var(--orange); transform: rotate(-6deg); }

/* OBJECTIVES */
.goals-head { max-width: 640px; }
.goals-head p { margin-top: 14px; color: var(--muted); font-size: 1.1rem; }
.goals-art { margin-top: 40px; display: grid; grid-template-columns: 1.15fr 1fr; gap: 24px 48px; align-items: center; }
.goals-art img { width: 100%; }
.speech { list-style: none; display: flex; flex-wrap: wrap; gap: 12px; }
.speech li {
  position: relative; background: #fff; border-radius: 16px; padding: 10px 16px;
  font-family: var(--display); font-weight: 500; font-size: 1.05rem; color: var(--teal-ink);
  box-shadow: 0 2px 0 var(--line);
}
.speech li:nth-child(3n+1) { transform: rotate(-1.5deg); }
.speech li:nth-child(3n+2) { transform: rotate(1deg); }
.speech li:nth-child(4n) { background: var(--teal); color: #fff; box-shadow: none; }
.speech li:nth-child(5) { background: var(--yellow); box-shadow: none; }

/* ACTIVITIES */
.acts { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.acts-copy > p { margin-top: 16px; font-size: 1.05rem; }
.acts-list { list-style: none; columns: 2; column-gap: 28px; margin: 24px 0; }
.acts-list li { break-inside: avoid; padding: 9px 0; border-bottom: 1px solid var(--line); font-weight: 500; }
.acts-art { position: relative; padding-bottom: 12%; }
.acts-room { width: 100%; aspect-ratio: 1; object-fit: cover; object-position: 70% 50%; border-radius: 999px 999px var(--radius) var(--radius); }
.acts-kids { position: absolute; left: -4%; bottom: 0; width: 108%; max-width: none; filter: drop-shadow(0 12px 16px rgba(23, 53, 54, .25)); }
.themes { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.themes li {
  border: 1.5px solid var(--teal); color: var(--teal-ink); border-radius: 999px; padding: 7px 16px;
  font-family: var(--display); font-weight: 500;
}
.themes li:nth-child(7) { background: var(--moss-soft); border-color: var(--moss); }
.themes li:nth-child(8) { background: var(--teal); color: #fff; }

/* SPACES */
.gallery-nav { display: flex; gap: 10px; }
.gallery-nav button {
  width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--teal); background: transparent;
  color: var(--teal); font-size: 1.6rem; line-height: 1; cursor: pointer; transition: background-color .2s, color .2s;
}
.gallery-nav button:hover { background: var(--teal); color: #fff; }
.gallery {
  display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0 max(var(--gutter), calc((100vw - var(--wrap)) / 2 + var(--gutter))) 16px;
  scroll-padding-inline: max(var(--gutter), calc((100vw - var(--wrap)) / 2 + var(--gutter)));
  scrollbar-width: thin; scrollbar-color: var(--teal) transparent;
}
.gallery figure { flex: 0 0 clamp(260px, 28vw, 360px); margin: 0; scroll-snap-align: start; }
.gallery img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 999px 999px 14px 14px; background: var(--teal-soft); }
.gallery figcaption { margin-top: 12px; font-family: var(--display); font-weight: 500; font-size: 1.1rem; color: var(--teal-ink); }

/* FEES */
.fees { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(28px, 4vw, 48px); align-items: start; }
.fee-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.fee-tabs input { position: absolute; opacity: 0; pointer-events: none; }
.fee-tabs label {
  cursor: pointer; padding: 10px 20px; border-radius: 999px; border: 2px solid var(--line);
  font-family: var(--display); font-weight: 600; font-size: 1.05rem; color: var(--muted); transition: all .2s;
}
.fee-tabs label:hover { border-color: var(--teal); color: var(--teal); }
.fee-tabs input:checked + label { background: var(--teal); border-color: var(--teal); color: #fff; }
.fee-tabs input:focus-visible + label { outline: 3px solid var(--iris); outline-offset: 3px; }
#fee-n:checked + label { background: var(--yellow); border-color: var(--yellow); color: var(--teal-ink); }
#fee-k:checked + label { background: var(--orange); border-color: var(--orange); }
#fee-r:checked + label { background: var(--moss); border-color: var(--moss); }
.fee-panel { display: none; flex-basis: 100%; margin-top: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(20px, 3vw, 32px); }
#fee-n:checked ~ .fee-panel[data-for="fee-n"],
#fee-k:checked ~ .fee-panel[data-for="fee-k"],
#fee-r:checked ~ .fee-panel[data-for="fee-r"] { display: block; }
@media (prefers-reduced-motion: no-preference) {
  .fee-panel { animation: fade .3s both; }
}
.fee-tabs .fine { flex-basis: 100%; margin-top: 12px; }
.fee-total { font-family: var(--display); font-weight: 600; font-size: clamp(2rem, 4vw, 2.6rem); color: var(--teal-ink); line-height: 1.1; padding-bottom: 18px; border-bottom: 2px solid var(--teal); }
.fee-total span { display: block; font-family: var(--body); font-size: .95rem; font-weight: 500; color: var(--muted); margin-bottom: 4px; }
.fees table { width: 100%; border-collapse: collapse; }
.fee-panel th, .fee-panel td { padding: 12px 0; border-bottom: 1px solid var(--line); text-align: left; font-weight: 400; vertical-align: baseline; }
.fee-panel td { text-align: right; font-variant-numeric: tabular-nums; font-weight: 500; white-space: nowrap; padding-left: 16px; }
.fee-panel th small { color: var(--muted); font-size: .85rem; margin-left: 6px; }
.fee-panel tr:last-child > * { border-bottom: 0; }
.fee-panel .row-strong > * { font-weight: 700; color: var(--teal-ink); background: var(--mist); }
.fee-panel .row-strong th { padding-left: 12px; border-radius: 8px 0 0 8px; }
.fee-panel .row-strong td { padding-right: 12px; border-radius: 0 8px 8px 0; }

.promos { display: grid; gap: 20px; }
.promo { border-radius: var(--radius); padding: clamp(22px, 3vw, 32px); }
.promo-cash { background: var(--yellow); color: var(--teal-ink); border-radius: 999px 999px var(--radius) var(--radius); padding-top: clamp(56px, 7vw, 80px); text-align: center; }
.promo-big { font-family: var(--display); font-weight: 600; font-size: clamp(2rem, 3.6vw, 2.6rem); line-height: 1.05; margin-bottom: 8px; }
.promo-small { margin-top: 14px; font-size: .92rem; padding-top: 14px; border-top: 1.5px dashed rgba(23, 53, 54, .35); }
.promo-mgm { background: var(--mist); }
.promo-mgm > p { color: var(--muted); font-size: .95rem; margin: 6px 0 14px; }
.promo-mgm th, .promo-mgm td { padding: 9px 8px 9px 0; text-align: left; font-size: .92rem; border-bottom: 1px solid var(--line); }
.promo-mgm th { font-weight: 700; color: var(--teal); }
.promo-mgm td { font-variant-numeric: tabular-nums; }
.promo-mgm tr:last-child td { border-bottom: 0; }

/* REGISTER */
.register { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 6vw, 88px); align-items: start; }
.register-copy { position: relative; }
.register-copy p { margin: 16px 0 28px; font-size: 1.1rem; max-width: 26em; }
.register-kid { width: auto; height: 340px; margin: 40px 0 0 24px; }
.register-name { position: absolute; left: 200px; bottom: 200px; font-size: 1.7rem; color: var(--yellow); transform: rotate(-6deg); }
.steps { list-style: none; counter-reset: step; display: grid; gap: 4px; }
.steps li {
  counter-increment: step; position: relative; padding: 18px 0 18px 72px; color: #cfe0dd;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}
.steps li::before {
  content: counter(step); position: absolute; left: 0; top: 16px; width: 48px; height: 52px;
  display: grid; place-items: center; padding-top: 10px;
  font-family: var(--display); font-weight: 600; font-size: 1.3rem; color: var(--teal-ink); background: #fff;
  clip-path: polygon(50% 0, 100% 30%, 100% 100%, 0 100%, 0 30%);
}
.steps li:nth-child(3)::before { background: var(--yellow); }
.steps li:nth-child(6)::before { background: var(--orange); color: #fff; }
.steps strong { display: block; color: #fff; font-family: var(--display); font-weight: 600; font-size: 1.25rem; margin-bottom: 2px; }

/* FAQ */
.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 6vw, 88px); align-items: start; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list details:first-child { border-top: 1px solid var(--line); }
.faq-list summary {
  cursor: pointer; list-style: none; padding: 20px 44px 20px 0; position: relative;
  font-family: var(--display); font-weight: 500; font-size: 1.2rem; color: var(--teal-ink);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; border-radius: 50%; background: var(--mist); color: var(--teal);
  display: grid; place-items: center; font-size: 1.3rem; transition: transform .25s, background-color .25s;
}
.faq-list details[open] summary::after { content: "−"; background: var(--teal); color: #fff; }
.faq-list details p { padding: 0 44px 22px 0; color: var(--muted); }

/* CONTACT */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: stretch; }
.contact address { font-style: normal; margin: 22px 0 28px; }
.addr { font-size: 1.2rem; font-weight: 500; }
.contact-list { list-style: none; margin-top: 18px; display: grid; gap: 10px; }
.contact-list li { display: grid; grid-template-columns: 100px 1fr; gap: 12px; }
.contact-list span { color: var(--muted); }
.contact-list a { font-weight: 700; overflow-wrap: anywhere; }
.qr { display: flex; align-items: center; gap: 18px; margin-top: 32px; }
.qr img { width: 112px; border-radius: 12px; }
.qr p { color: var(--muted); font-size: .95rem; max-width: 16em; }
.map { min-height: 460px; border-radius: var(--radius); overflow: hidden; background: var(--teal-soft); }
.map iframe { width: 100%; height: 100%; min-height: 460px; border: 0; display: block; }

/* FOOTER */
.site-footer { color: #b9cfcb; padding-block: 56px calc(40px + env(safe-area-inset-bottom, 0px)); }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 28px 48px; align-items: start; }
.footer-logo { width: 170px; height: auto; margin-bottom: 16px; }
.footer-grid div p { max-width: 30em; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: flex-end; }
.footer-nav a { color: #fff; text-decoration: none; font-weight: 500; }
.footer-nav a:hover { color: var(--yellow); }
.footer-copy { grid-column: 1 / -1; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .14); font-size: .9rem; }

/* WhatsApp float */
.wa-float {
  position: fixed; right: 20px; bottom: calc(20px + env(safe-area-inset-bottom, 0px)); z-index: 60;
  display: flex; align-items: center; gap: 8px; padding: 12px 18px 12px 14px; border-radius: 999px;
  background: var(--teal); color: #fff; text-decoration: none; font-weight: 700;
  box-shadow: 0 10px 28px rgba(23, 53, 54, .3); transition: background-color .2s, transform .2s;
}
.wa-float:hover { background: var(--teal-ink); color: #fff; transform: translateY(-2px); }

/* Responsive */
@media (max-width: 1080px) {
  .nav { gap: 18px; }
  .reasons { grid-template-columns: repeat(2, 1fr); row-gap: 48px; }
  .areas { grid-template-columns: repeat(2, 1fr); border-top: 0; gap: 0 24px; }
  .area, .area + .area { padding: 20px 0; border-left: 0; border-top: 2px solid var(--teal); }
}
@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: 8px var(--gutter) 20px;
  }
  .nav.open { display: flex; }
  .nav a:not(.btn) { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav .btn { margin-top: 16px; }
  .hero-grid, .letter, .teach-intro, .faith, .acts, .fees, .register, .faq, .contact, .goals-art { grid-template-columns: 1fr; }
  .hero-art { justify-self: center; max-width: 440px; margin-top: 12px; }
  .letter-fig { justify-self: center; max-width: 340px; }
  .programs { grid-template-columns: 1fr; max-width: 520px; }
  .extra { grid-template-columns: 1fr; }
  .register-kid { display: none; }
  .register-name { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-nav { justify-content: flex-start; }
}
@media (max-width: 600px) {
  body { font-size: 1rem; }
  .ribbon p { font-size: .82rem; }
  .brand img { width: 124px; }
  .reasons { grid-template-columns: 1fr; }
  .reason-fig { height: 260px; }
  .areas { grid-template-columns: 1fr; }
  .stickers { right: -2%; top: 30%; }
  .stickers li { font-size: .82rem; padding: 8px 12px; }
  .hero-name { font-size: 1.4rem; left: 22%; }
  .acts-list { columns: 1; }
  .hero-kid { left: -2%; }
  .fee-panel th small { display: block; margin-left: 0; }
  .section-head-row { flex-direction: column; align-items: flex-start; }
  .dua { padding: 150px 24px 210px; min-height: 0; }
  .dua img { height: 200px; right: 8%; }
  .dua .hand { top: auto; bottom: 150px; right: auto; left: 32px; }
  .contact-list li { grid-template-columns: 1fr; gap: 0; }
  .map, .map iframe { min-height: 360px; }
  .wa-float span { display: none; }
  .wa-float { padding: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
