:root {
  --pink: #d71d63;
  --pink-dark: #a20d46;
  --hot-pink: #f60071;
  --yellow: #f7c500;
  --yellow-soft: #fff0a2;
  --blue: #568bc8;
  --blue-deep: #235da8;
  --teal: #45b8be;
  --purple: #6f3b98;
  --orange: #f18b1d;
  --green: #15aa83;
  --ink: #17324d;
  --muted: #5b6b7c;
  --line: #e8edf2;
  --paper: #ffffff;
  --soft: #f7f9fb;
  --radius: 28px;
  --shadow: 0 24px 70px rgba(28, 56, 88, .12);
  --font-display: "Fredoka", "Arial Rounded MT Bold", sans-serif;
  --font-body: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 4px;
  pointer-events: none;
}
.scroll-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--pink), var(--yellow), var(--teal)); }

.site-header {
  position: fixed;
  z-index: 900;
  inset: 18px 24px auto;
  max-width: 1220px;
  margin-inline: auto;
  min-height: 82px;
  padding: 10px 16px 10px 20px;
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(255,255,255,.91);
  border: 1px solid rgba(255,255,255,.65);
  box-shadow: 0 12px 34px rgba(40, 57, 78, .11);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled { box-shadow: 0 16px 42px rgba(34, 51, 73, .17); }
.brand { width: 218px; height: 62px; display: flex; align-items: center; gap: 10px; flex: 0 0 auto; text-decoration: none; }
.brand-icon { width: 52px; height: 58px; object-fit: contain; }
.brand-wordmark { width: 150px; height: auto; object-fit: contain; }
.main-nav { display: flex; justify-content: center; align-items: center; gap: 28px; margin-left: auto; }
.main-nav a { text-decoration: none; font-size: .94rem; font-weight: 600; color: #34465a; position: relative; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 3px; border-radius: 10px; background: var(--pink); transition: right .25s ease; }
.main-nav a:hover::after { right: 0; }
.menu-toggle { display: none; margin-left: auto; border: 0; background: transparent; width: 44px; height: 44px; border-radius: 50%; }
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--ink); transition: .25s; }
.header-cta { white-space: nowrap; }

.button {
  min-height: 48px;
  padding: 13px 22px;
  border: 0;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}
.button:hover { transform: translateY(-3px); }
.button--lg { min-height: 55px; padding-inline: 26px; }
.button--pink { color: #fff; background: var(--pink); box-shadow: 0 12px 28px rgba(215, 29, 99, .27); }
.button--pink:hover { background: var(--pink-dark); }
.button--green { color: #fff; background: var(--green); box-shadow: 0 12px 28px rgba(21, 170, 131, .25); }
.button--outline { color: var(--blue-deep); border: 2px solid rgba(35, 93, 168, .24); background: #fff; }
.button--blue { color: #fff; background: var(--blue-deep); }
.button--yellow { color: #4c3500; background: var(--yellow); box-shadow: 0 12px 28px rgba(247, 197, 0, .28); }
.button--white { background: white; color: var(--pink-dark); }
.button--full { width: 100%; }
.text-link { font-weight: 800; color: #fff; text-decoration: none; }

.hero {
  min-height: 820px;
  padding: 170px max(5vw, 32px) 92px;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(470px, 1.06fr);
  gap: 5vw;
  align-items: center;
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 25%, rgba(69,184,190,.11), transparent 24%),
    linear-gradient(180deg, #f7fcff 0%, #fff 75%);
}
.hero::after { content: ""; position: absolute; z-index: -3; inset: auto -8vw -110px; height: 220px; background: white; border-radius: 50% 50% 0 0 / 45% 45% 0 0; }
.hero-shape { position: absolute; z-index: -2; border-radius: 50%; filter: saturate(110%); }
.hero-shape--pink { width: 420px; height: 420px; right: -150px; top: 90px; background: rgba(215,29,99,.09); }
.hero-shape--yellow { width: 240px; height: 240px; left: 43%; bottom: 34px; background: rgba(247,197,0,.13); }
.hero-copy { max-width: 650px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 15px; color: var(--pink); font-size: .8rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 30px; height: 3px; background: currentColor; border-radius: 4px; }
.eyebrow--light { color: rgba(255,255,255,.9); }
.hero h1, .section-heading h2, .about-copy h2, .mascot-copy h2, .faq-column h2, .contact-card h2, .content-copy h2 {
  font-family: var(--font-display);
  letter-spacing: -.035em;
}
.hero h1 { margin: 0; max-width: 690px; font-size: clamp(3.4rem, 6.2vw, 6.8rem); line-height: .92; color: var(--blue-deep); }
.hero h1 strong { display: block; color: var(--pink); font-weight: 700; }
.hero-copy > p { max-width: 600px; margin: 28px 0; color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.24rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 11px; padding: 0; margin: 28px 0 0; list-style: none; }
.trust-list li { display: inline-flex; align-items: center; gap: 8px; padding: 9px 13px; border-radius: 999px; background: #fff; border: 1px solid var(--line); color: #4f6172; font-size: .85rem; box-shadow: 0 9px 24px rgba(38,58,82,.07); }
.trust-list span { display: grid; place-items: center; width: 20px; height: 20px; background: rgba(69,184,190,.15); color: #168b92; border-radius: 50%; font-weight: 900; }

.hero-visual { min-height: 580px; position: relative; }
.hero-photo-wrap { position: absolute; inset: 0 20px 60px 50px; border-radius: 46% 54% 31% 69% / 44% 38% 62% 56%; overflow: hidden; background: var(--pink); box-shadow: var(--shadow); border: 10px solid white; }
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: 4% center; transform: scale(1.04); }
.hero-photo-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(13,40,72,.35)); }
.hero-label { position: absolute; z-index: 2; left: 106px; right: 32px; bottom: 95px; display: flex; flex-direction: column; color: white; }
.hero-label span { font-size: .95rem; }
.hero-label strong { font-family: var(--font-display); font-size: 1.8rem; }
.hero-mascots { position: absolute; z-index: 4; left: -15px; bottom: 10px; width: 250px; filter: drop-shadow(0 18px 24px rgba(24,46,75,.18)); }
.mini-card { position: absolute; z-index: 5; right: 0; bottom: 30px; width: 240px; padding: 22px; border-radius: 24px; box-shadow: var(--shadow); transform: rotate(-3deg); }
.mini-card small { display: block; margin-bottom: 8px; text-transform: uppercase; font-weight: 800; letter-spacing: .08em; }
.mini-card strong { display: block; font-family: var(--font-display); font-size: 1.35rem; line-height: 1.05; }
.mini-card--yellow { background: var(--yellow); color: #503600; }
.floating { animation: float 5.5s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }

.statement { display: grid; grid-template-columns: 1fr 1fr; }
.statement-block { min-height: 430px; padding: clamp(50px, 7vw, 110px); display: flex; flex-direction: column; justify-content: center; }
.statement-block--yellow { background: var(--yellow); color: #3e2f05; }
.statement-block--pink { background: var(--pink); color: white; }
.statement .kicker { font-weight: 900; text-transform: uppercase; letter-spacing: .13em; font-size: .78rem; }
.statement h2, .statement h3 { font-family: var(--font-display); margin: 14px 0 18px; line-height: .95; }
.statement h2 { font-size: clamp(3.1rem, 5.7vw, 6.5rem); }
.statement h3 { font-size: clamp(2.3rem, 4vw, 4.7rem); }
.statement p { max-width: 620px; margin: 0 0 25px; font-size: 1.08rem; line-height: 1.65; }

.section { padding: 110px max(5vw, 32px); }
.section-heading { max-width: 820px; margin: 0 auto 58px; text-align: center; }
.section-heading--left { margin-left: 0; text-align: left; }
.section-heading h2 { margin: 0; font-size: clamp(2.6rem, 4.3vw, 4.8rem); line-height: .98; color: var(--blue-deep); }
.section-heading p { max-width: 680px; margin: 20px auto 0; color: var(--muted); font-size: 1.08rem; line-height: 1.7; }
.section-heading--left p { margin-left: 0; }

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 1380px; margin-inline: auto; }
.service-card { min-height: 375px; padding: 30px; position: relative; display: flex; flex-direction: column; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(25,58,91,.08); transition: transform .3s ease, box-shadow .3s ease; }
.service-card:hover { transform: translateY(-10px) rotate(-.5deg); box-shadow: var(--shadow); }
.service-card::after { content: ""; position: absolute; width: 180px; height: 180px; right: -85px; bottom: -90px; border-radius: 50%; background: rgba(255,255,255,.5); }
.service-card--pink { background: #fff0f5; }
.service-card--yellow { background: #fff8d4; }
.service-card--blue { background: #edf7ff; }
.service-card--purple { background: #f4edfb; }
.service-number { position: absolute; right: 25px; top: 23px; font-family: var(--font-display); font-size: 2.4rem; color: rgba(23,50,77,.13); }
.service-icon { width: 72px; height: 72px; display: grid; place-items: center; border-radius: 22px; background: white; font-size: 2.25rem; box-shadow: 0 14px 32px rgba(30,52,76,.09); }
.service-card h3 { margin: 30px 0 14px; font-family: var(--font-display); font-size: 1.7rem; line-height: 1.05; }
.service-card p { color: #586979; line-height: 1.65; }
.service-card a { margin-top: auto; font-weight: 900; text-decoration: none; color: var(--pink); }
.service-card--yellow a { color: #9b6700; }
.service-card--blue a { color: var(--blue-deep); }
.service-card--purple a { color: var(--purple); }

.mascot-section { padding: 110px max(5vw, 32px); display: grid; grid-template-columns: .95fr 1.05fr; gap: 5vw; align-items: center; color: white; background: linear-gradient(135deg, var(--pink-dark), var(--pink) 42%, #ee377a); position: relative; overflow: hidden; }
.mascot-section::before { content: ""; position: absolute; width: 420px; height: 420px; left: -150px; bottom: -210px; border-radius: 50%; background: rgba(247,197,0,.16); }
.mascot-copy { position: relative; z-index: 2; }
.mascot-copy h2 { margin: 0; max-width: 750px; font-size: clamp(3rem, 4.9vw, 5.6rem); line-height: .95; }
.mascot-copy > p { max-width: 650px; margin: 24px 0 34px; color: rgba(255,255,255,.82); font-size: 1.08rem; line-height: 1.7; }
.mission-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.mission-card { min-height: 120px; padding: 17px; text-align: left; border: 1px solid rgba(255,255,255,.22); border-radius: 20px; background: rgba(255,255,255,.08); color: white; cursor: pointer; transition: .25s; }
.mission-card:hover, .mission-card.active { background: white; color: var(--pink-dark); transform: translateY(-4px); }
.mission-card span { display: block; font-size: .75rem; font-weight: 900; letter-spacing: .1em; }
.mission-card strong { display: block; margin: 7px 0 3px; font-family: var(--font-display); font-size: 1.25rem; }
.mission-card small { line-height: 1.35; opacity: .8; }
.mascot-stage { min-height: 650px; position: relative; display: grid; place-items: center; }
.mascot-stage::before { content: ""; position: absolute; inset: 75px 40px 90px; border-radius: 50%; background: var(--yellow); box-shadow: 0 40px 90px rgba(77,12,44,.28); }
.mascot-group { position: relative; z-index: 2; width: min(560px, 90%); filter: drop-shadow(0 24px 24px rgba(54,16,38,.21)); }
.orbit { position: absolute; z-index: 1; border: 2px dashed rgba(255,255,255,.32); border-radius: 50%; animation: spin 18s linear infinite; }
.orbit--one { width: 520px; height: 520px; }
.orbit--two { width: 610px; height: 420px; animation-direction: reverse; animation-duration: 25s; }
@keyframes spin { to { transform: rotate(360deg); } }
.mission-message { position: absolute; z-index: 4; left: 5px; right: 5px; bottom: 12px; max-width: 520px; margin: auto; padding: 22px 24px; border-radius: 22px; color: var(--ink); background: white; box-shadow: var(--shadow); }
.mission-message span { color: var(--pink); font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.mission-message strong { display: block; margin: 6px 0; font-family: var(--font-display); font-size: 1.35rem; }
.mission-message p { margin: 0; color: var(--muted); line-height: 1.5; }

.journey { background: #fffdf7; }
.timeline { max-width: 1280px; margin: auto; display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.timeline::before { content: ""; position: absolute; left: 11%; right: 11%; top: 32px; height: 2px; background: linear-gradient(90deg, var(--pink), var(--orange), var(--teal), var(--purple)); }
.timeline-item { padding: 0 24px; text-align: center; position: relative; }
.timeline-item > span { width: 66px; height: 66px; margin: 0 auto 24px; position: relative; z-index: 2; display: grid; place-items: center; border-radius: 50%; background: white; border: 3px solid var(--pink); color: var(--pink); font-family: var(--font-display); font-size: 1.5rem; box-shadow: 0 9px 25px rgba(34,61,91,.1); }
.timeline-item:nth-child(2) > span { border-color: var(--orange); color: var(--orange); }
.timeline-item:nth-child(3) > span { border-color: var(--teal); color: var(--teal); }
.timeline-item:nth-child(4) > span { border-color: var(--purple); color: var(--purple); }
.timeline-item h3 { font-family: var(--font-display); font-size: 1.4rem; }
.timeline-item p { color: var(--muted); line-height: 1.6; }

.about { padding: 100px max(5vw, 32px); display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 6vw; align-items: center; background: linear-gradient(135deg, #edf8ff, #fff); }
.about-photo { min-height: 560px; position: relative; }
.about-photo img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; object-position: 28% center; border-radius: 38px; box-shadow: var(--shadow); }
.about-badge { position: absolute; right: -24px; bottom: 32px; width: 225px; padding: 24px; color: white; background: var(--blue-deep); border-radius: 26px; box-shadow: var(--shadow); transform: rotate(3deg); }
.about-badge strong, .about-badge span { display: block; }
.about-badge strong { font-family: var(--font-display); font-size: 1.45rem; }
.about-copy h2 { margin: 0; font-size: clamp(2.8rem, 4.8vw, 5.4rem); line-height: .95; color: var(--blue-deep); }
.about-copy p { margin: 26px 0; color: var(--muted); font-size: 1.08rem; line-height: 1.75; }
.credential-list { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.credential-list span { padding: 10px 14px; border-radius: 999px; color: var(--blue-deep); background: white; border: 1px solid #d8e8f7; font-weight: 700; }

.space-section { background: white; }
.gallery-grid { display: grid; grid-template-columns: 1.35fr .85fr .65fr; gap: 18px; max-width: 1380px; margin: auto; }
.gallery-card { min-height: 430px; margin: 0; position: relative; border-radius: 28px; overflow: hidden; background: var(--soft); box-shadow: 0 18px 45px rgba(34,55,80,.1); }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-card:hover img { transform: scale(1.05); }
.gallery-card figcaption { position: absolute; left: 18px; right: 18px; bottom: 18px; padding: 14px 16px; border-radius: 14px; color: white; background: rgba(23,50,77,.76); backdrop-filter: blur(10px); font-weight: 700; }
.gallery-card--color { padding: 30px; display: flex; flex-direction: column; justify-content: center; gap: 14px; color: #4d3600; background: var(--yellow); }
.gallery-card--color span { padding: 17px; border-radius: 16px; background: rgba(255,255,255,.42); font-weight: 800; }

.content-section { min-height: 700px; padding: 90px max(5vw, 32px); display: grid; grid-template-columns: .85fr 1.15fr; gap: 7vw; align-items: center; background: var(--blue-deep); color: white; overflow: hidden; }
.content-copy h2 { margin: 0; font-size: clamp(3.2rem, 5.4vw, 6.1rem); line-height: .92; }
.content-copy p { max-width: 620px; margin: 25px 0 30px; color: rgba(255,255,255,.75); font-size: 1.08rem; line-height: 1.7; }
.post-stack { min-height: 620px; position: relative; perspective: 1300px; }
.post-card { position: absolute; width: 360px; height: 480px; object-fit: cover; border-radius: 30px; box-shadow: 0 35px 90px rgba(3,21,48,.38); border: 8px solid white; transition: transform .45s ease; }
.post-card--back { right: 8%; top: 35px; transform: rotate(8deg); }
.post-card--front { left: 8%; bottom: 10px; transform: rotate(-6deg); }
.post-stack:hover .post-card--back { transform: rotate(3deg) translate(18px, -8px); }
.post-stack:hover .post-card--front { transform: rotate(-2deg) translate(-14px, -8px); }

.faq-contact { padding: 110px max(5vw, 32px); display: grid; grid-template-columns: .9fr 1.1fr; gap: 30px; background: #fff7fb; }
.faq-column { padding: 45px 10px 45px 0; }
.faq-column h2, .contact-card h2 { margin: 0 0 30px; font-size: clamp(2.8rem, 4.4vw, 4.9rem); line-height: .95; }
.faq-column h2 { color: var(--pink-dark); }
.faq-list { display: grid; gap: 11px; }
.faq-item { border: 1px solid #eddde5; border-radius: 18px; background: white; overflow: hidden; }
.faq-item button { width: 100%; padding: 19px 20px; border: 0; display: flex; justify-content: space-between; align-items: center; text-align: left; color: var(--ink); background: transparent; font-weight: 800; cursor: pointer; }
.faq-item b { color: var(--pink); font-size: 1.3rem; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-answer p { overflow: hidden; margin: 0; padding: 0 20px; color: var(--muted); line-height: 1.65; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer p { padding-bottom: 20px; }

.contact-card { padding: clamp(30px, 4.6vw, 66px); border-radius: 34px; color: white; background: linear-gradient(145deg, var(--pink-dark), var(--pink)); box-shadow: var(--shadow); }
.contact-card > p { max-width: 650px; color: rgba(255,255,255,.8); line-height: 1.65; }
#contact-form { display: grid; gap: 14px; margin-top: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: grid; gap: 7px; font-size: .82rem; font-weight: 800; }
input, select, textarea { width: 100%; border: 1px solid rgba(255,255,255,.28); border-radius: 13px; padding: 14px 15px; color: var(--ink); background: rgba(255,255,255,.97); outline: 0; transition: box-shadow .2s ease, transform .2s ease; }
input:focus, select:focus, textarea:focus { box-shadow: 0 0 0 4px rgba(247,197,0,.3); transform: translateY(-1px); }
textarea { resize: vertical; }
.form-status { min-height: 18px; color: #fff7b4; }
.contact-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.contact-meta a, .contact-meta span { padding: 9px 12px; border-radius: 999px; color: white; background: rgba(255,255,255,.11); text-decoration: none; font-size: .82rem; }

.site-footer { padding: 42px max(5vw, 32px); display: grid; grid-template-columns: 1fr auto auto; gap: 40px; align-items: center; color: white; background: #102b47; }
.footer-brand { display: flex; align-items: center; gap: 22px; }
.footer-logo-lockup { display: flex; align-items: center; gap: 11px; min-width: 220px; }
.footer-logo-icon { width: 68px; height: 75px; object-fit: contain; filter: drop-shadow(0 6px 18px rgba(0,0,0,.18)); }
.footer-logo-wordmark { width: 145px; height: auto; object-fit: contain; filter: brightness(1.15); }
.footer-brand p { max-width: 430px; color: rgba(255,255,255,.65); line-height: 1.55; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,.72); text-decoration: none; }

.whatsapp-float { position: fixed; z-index: 850; right: 22px; bottom: 22px; min-height: 56px; padding: 0 18px; display: flex; align-items: center; gap: 9px; color: white; background: var(--green); border-radius: 999px; box-shadow: 0 17px 42px rgba(4,92,68,.3); text-decoration: none; transition: transform .25s ease; }
.whatsapp-float:hover { transform: translateY(-5px) scale(1.02); }
.mobile-cta { display: none; }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .22s; }
.reveal-delay-3 { transition-delay: .32s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  .site-header { inset-inline: 14px; gap: 14px; }
  .main-nav { gap: 17px; }
  .hero { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: clamp(3.4rem, 7vw, 5.6rem); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1.15fr .85fr; }
  .gallery-card--color { grid-column: 1 / -1; min-height: auto; display: grid; grid-template-columns: repeat(2,1fr); }
  .post-card { width: 315px; height: 420px; }
}

@media (max-width: 920px) {
  .site-header { min-height: 72px; }
  .brand { width: 190px; height: 52px; gap: 8px; }
  .brand-icon { width: 44px; height: 50px; }
  .brand-wordmark { width: 132px; }
  .header-cta { display: none; }
  .menu-toggle { display: block; }
  .main-nav { position: fixed; inset: 100px 14px auto; padding: 26px; display: grid; gap: 0; background: white; border-radius: 22px; box-shadow: var(--shadow); transform: translateY(-15px) scale(.98); opacity: 0; pointer-events: none; transition: .25s; }
  .main-nav a { padding: 15px 5px; border-bottom: 1px solid var(--line); }
  .site-header.nav-open .main-nav { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
  .site-header.nav-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .site-header.nav-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { min-height: auto; padding-top: 145px; grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: 620px; }
  .statement { grid-template-columns: 1fr; }
  .statement-block { min-height: 350px; }
  .mascot-section, .about, .content-section, .faq-contact { grid-template-columns: 1fr; }
  .mascot-stage { min-height: 600px; }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .timeline::before { display: none; }
  .about-photo { order: 2; }
  .content-section { min-height: 1050px; }
  .post-stack { min-height: 620px; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-brand { align-items: flex-start; }
}

@media (max-width: 680px) {
  .site-header { inset: 9px 9px auto; border-radius: 17px; padding: 6px 10px; }
  .brand { width: 166px; height: 50px; gap: 7px; }
  .brand-icon { width: 42px; height: 48px; }
  .brand-wordmark { width: 115px; }
  .main-nav { inset: 82px 9px auto; }
  .hero { padding: 125px 18px 78px; }
  .hero h1 { font-size: clamp(3.2rem, 16vw, 4.75rem); }
  .hero-copy > p { font-size: 1rem; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .trust-list { display: grid; }
  .hero-visual { min-height: 500px; }
  .hero-photo-wrap { inset: 0 0 60px; border-width: 6px; border-radius: 34% 66% 31% 69% / 43% 38% 62% 57%; }
  .hero-label { left: 20px; right: 20px; bottom: 146px; }
  .hero-mascots { width: 180px; left: -5px; bottom: 5px; }
  .mini-card { width: 190px; right: 0; bottom: 10px; padding: 15px; }
  .mini-card strong { font-size: 1.05rem; }
  .statement-block, .section, .mascot-section, .about, .content-section, .faq-contact { padding: 76px 18px; }
  .statement h2 { font-size: 3.25rem; }
  .statement h3 { font-size: 2.65rem; }
  .section-heading { text-align: left; }
  .section-heading p { margin-left: 0; }
  .service-grid, .mission-grid, .timeline, .gallery-grid, .form-row { grid-template-columns: 1fr; }
  .service-card { min-height: 330px; }
  .mascot-stage { min-height: 480px; }
  .mascot-stage::before { inset: 50px 10px 85px; }
  .orbit { display: none; }
  .mission-message { font-size: .9rem; }
  .about-photo img { min-height: 430px; }
  .about-badge { right: 8px; bottom: -22px; width: 200px; }
  .gallery-card { min-height: 360px; }
  .gallery-card--color { display: grid; grid-template-columns: 1fr; }
  .content-section { min-height: 1080px; }
  .post-stack { min-height: 660px; }
  .post-card { width: 285px; height: 380px; }
  .post-card--back { right: 0; top: 70px; }
  .post-card--front { left: 0; bottom: 35px; }
  .contact-card { border-radius: 25px; }
  .site-footer { padding-bottom: 105px; }
  .footer-brand { display: grid; }
  .footer-links { display: grid; }
  .whatsapp-float { display: none; }
  .mobile-cta { position: fixed; z-index: 870; inset: auto 8px 8px; display: grid; grid-template-columns: .7fr 1.3fr; gap: 8px; padding: 8px; border-radius: 18px; background: rgba(255,255,255,.94); box-shadow: 0 16px 48px rgba(30,49,72,.22); backdrop-filter: blur(14px); }
  .mobile-cta a { min-height: 48px; display: grid; place-items: center; border-radius: 12px; text-decoration: none; font-weight: 800; color: var(--blue-deep); background: #eaf3fb; }
  .mobile-cta a:last-child { color: white; background: var(--green); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
