/* =================================================================
   Arianna's Day Care — Styles
   Aesthetic: warm "storybook" — cream backgrounds, rounded shapes,
   playful wavy dividers, brand-color accents, gentle motion.
   ----------------------------------------------------------------
   Brand colors:  navy #112D4E · teal #4DB6AC · pink #FF6B8B
                  orange #FFA726 · purple #7E57C2
   Fonts: Great Vibes (script) · Fredoka (display) · Poppins (body)
   ================================================================= */

:root {
  /* Brand palette */
  --navy:   #112D4E;
  --teal:   #4DB6AC;
  --pink:   #FF6B8B;
  --orange: #FFA726;
  --purple: #7E57C2;
  --yellow: #FFD45E;

  /* Surfaces */
  --cream:    #FFF9F3;
  --cream-2:  #FFF1E6;
  --white:    #ffffff;
  --ink:      #1c2b40;
  --ink-soft: #5a6b80;

  /* Effects */
  --radius:    22px;
  --radius-lg: 34px;
  --radius-sm: 14px;
  --shadow-sm: 0 6px 18px rgba(17, 45, 78, .08);
  --shadow:    0 18px 40px rgba(17, 45, 78, .12);
  --shadow-lg: 0 30px 70px rgba(17, 45, 78, .18);
  --ring:      0 0 0 4px rgba(77, 182, 172, .25);

  /* Type */
  --font-script:  'Great Vibes', cursive;
  --font-display: 'Fredoka', 'Poppins', sans-serif;
  --font-body:    'Poppins', system-ui, sans-serif;

  --maxw: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 6px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: .7rem 1.2rem; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--navy); line-height: 1.1; font-weight: 600; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); letter-spacing: -.5px; }
h3 { font-size: 1.3rem; }
p  { color: var(--ink-soft); }
em { font-style: normal; color: var(--pink); }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 600; font-size: .82rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--teal); margin-bottom: .6rem;
}

/* ---------- Layout helpers ---------- */
.container { width: min(var(--maxw), 92%); margin-inline: auto; }
.section { padding: clamp(4rem, 9vw, 7.5rem) 0; position: relative; }
.section__head { text-align: center; max-width: 720px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); }
.section__sub { font-size: 1.08rem; margin-top: .6rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  padding: .8rem 1.6rem; border-radius: 100px;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s, background .25s, color .25s;
  white-space: nowrap;
}
.btn--lg { padding: 1rem 2rem; font-size: 1.06rem; }
.btn--block { width: 100%; }
.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  box-shadow: 0 12px 26px rgba(255, 107, 139, .4);
}
.btn--primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 34px rgba(255, 107, 139, .5); }
.btn--ghost {
  color: var(--navy); background: #fff; box-shadow: var(--shadow-sm);
  border: 2px solid rgba(17,45,78,.08);
}
.btn--ghost:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--teal); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Wavy dividers ---------- */
.wave { position: absolute; left: 0; width: 100%; line-height: 0; z-index: 3; }
.wave svg { width: 100%; height: clamp(60px, 8vw, 120px); }
.wave--bottom { bottom: -1px; }

/* =================================================================
   BRAND WORDMARK
   ================================================================= */
.brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand__img { height: 88px; width: auto; display: block; }
.brand__mark { display: grid; place-items: center; flex: none; filter: drop-shadow(0 4px 6px rgba(17,45,78,.15)); }
.brand__text { display: flex; flex-direction: column; line-height: .8; }
.brand__script {
  font-family: var(--font-script); color: var(--navy);
  font-size: 2rem; line-height: .9;
}
.brand__sub {
  font-family: var(--font-display); font-weight: 700;
  letter-spacing: 1.5px; font-size: .72rem; margin-top: 2px;
}
.brand__sub i { font-style: normal; }
.brand--footer .brand__script { color: #fff; font-size: 2.4rem; }

/* =================================================================
   HEADER / NAV
   ================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 249, 243, .82);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  transition: box-shadow .3s, background .3s;
}
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(17,45,78,.10); background: rgba(255,249,243,.95); }
.header__inner { display: flex; align-items: center; justify-content: space-between; padding: .7rem 0; }

.nav { display: flex; align-items: center; }
.nav__menu { display: flex; align-items: center; gap: .35rem; }
.nav__menu > li > a:not(.btn) {
  display: inline-block; padding: .5rem .85rem; border-radius: 100px;
  font-family: var(--font-display); font-weight: 500; color: var(--navy);
  transition: background .2s, color .2s;
}
.nav__menu > li > a:not(.btn):hover { background: rgba(77,182,172,.16); color: var(--teal); }
.nav__cta { margin-left: .5rem; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__toggle span { width: 26px; height: 3px; border-radius: 3px; background: var(--navy); transition: transform .3s, opacity .3s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =================================================================
   HERO + ANIMATED SCENE
   ================================================================= */
.hero {
  position: relative;
  min-height: clamp(620px, 92vh, 900px);
  display: flex; align-items: center;
  padding: 5rem 0 7rem;
  overflow: hidden;
}
.hero__scene { position: absolute; inset: 0; z-index: 0; }
.hero__scene .scene { width: 100%; height: 100%; }
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(255,249,243,.92) 0%, rgba(255,249,243,.7) 30%, rgba(255,249,243,.1) 55%, transparent 70%);
}
@media (max-width: 760px) {
  .hero__scrim { background: linear-gradient(180deg, rgba(255,249,243,.86) 0%, rgba(255,249,243,.5) 40%, transparent 72%); }
}

.hero__content { position: relative; z-index: 4; max-width: 620px; }
.hero__eyebrow {
  display: inline-block; background: #fff; color: var(--navy);
  font-family: var(--font-display); font-weight: 600; font-size: .85rem;
  padding: .45rem 1rem; border-radius: 100px; box-shadow: var(--shadow-sm); margin-bottom: 1.4rem;
}
.hero__title {
  font-size: clamp(2.7rem, 6.5vw, 5rem); line-height: 1.02; letter-spacing: -1.5px;
  color: var(--navy);
}
.hero__title span { color: var(--pink); position: relative; white-space: nowrap; }
.hero__title span::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .08em; height: .16em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14'%3E%3Cpath d='M2 9c40-8 80-8 120-4s60 6 76 2' fill='none' stroke='%23FFA726' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}
.hero__lead { font-size: clamp(1.05rem, 2vw, 1.25rem); margin: 1.4rem 0 2rem; max-width: 30em; color: #43556e; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__badges { display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 2.6rem; }
.hero__badges li { display: flex; flex-direction: column; line-height: 1.1; }
.hero__badges strong { font-family: var(--font-display); font-size: 1.3rem; color: var(--navy); }
.hero__badges span { font-size: .82rem; color: var(--ink-soft); }
.hero__badges li + li { padding-left: 1.6rem; border-left: 2px dashed rgba(17,45,78,.15); }

/* --- staggered entrance for hero --- */
.hero__content .reveal { opacity: 0; transform: translateY(24px); animation: rise .9s cubic-bezier(.22,1,.36,1) forwards; }
.hero__content .reveal:nth-child(1) { animation-delay: .1s; }
.hero__content .reveal:nth-child(2) { animation-delay: .25s; }
.hero__content .reveal:nth-child(3) { animation-delay: .4s; }
.hero__content .reveal:nth-child(4) { animation-delay: .55s; }
.hero__content .reveal:nth-child(5) { animation-delay: .7s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ---------------- Scene animations ---------------- */
/* Sun */
.sun__rays  { animation: spin 60s linear infinite; transform-box: fill-box; transform-origin: center; }
.sun__glow  { animation: pulse 5s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes spin  { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100% { transform: scale(1); opacity:.85;} 50% { transform: scale(1.12); opacity:.55;} }

/* Clouds drift */
.cloud { animation: drift linear infinite; }
.cloud--1 { animation-duration: 46s; }
.cloud--2 { animation-duration: 62s; animation-delay: -12s; }
.cloud--3 { animation-duration: 54s; animation-delay: -28s; }
@keyframes drift { from { transform: translateX(-260px);} to { transform: translateX(1460px);} }

/* Swing */
.swing { transform-box: fill-box; transform-origin: 50% 0%; animation: swing 3.4s ease-in-out infinite; }
@keyframes swing { 0%,100% { transform: rotate(20deg);} 50% { transform: rotate(-20deg);} }

/* Ball bounce + boy's wave */
.ball { transform-box: fill-box; transform-origin: center; animation: bounce 1.15s cubic-bezier(.5,0,.5,1) infinite; }
.ball-shadow { animation: shadow 1.15s cubic-bezier(.5,0,.5,1) infinite; transform-box: fill-box; transform-origin: center; }
@keyframes bounce { 0%,100% { transform: translateY(-52px) scale(1,1);} 45% { transform: translateY(0) scale(1.08,.92);} 50% { transform: translateY(2px) scale(1.12,.86);} 55% { transform: translateY(0) scale(1.08,.92);} }
@keyframes shadow { 0%,100% { transform: scale(.7); opacity:.12;} 50% { transform: scale(1.1); opacity:.3;} }
.player__arm { transform-box: fill-box; transform-origin: 0% 100%; animation: wave 1.6s ease-in-out infinite; }
@keyframes wave { 0%,100% { transform: rotate(-6deg);} 50% { transform: rotate(14deg);} }

/* Butterflies — flight path + wing flap */
.butterfly { transform-box: fill-box; }
.butterfly--1 { animation: fly1 17s ease-in-out infinite; }
.butterfly--2 { animation: fly2 21s ease-in-out infinite; }
@keyframes fly1 {
  0%   { transform: translate(380px, 300px) rotate(8deg);}
  25%  { transform: translate(520px, 230px) rotate(-6deg);}
  50%  { transform: translate(680px, 300px) rotate(8deg);}
  75%  { transform: translate(540px, 360px) rotate(-4deg);}
  100% { transform: translate(380px, 300px) rotate(8deg);}
}
@keyframes fly2 {
  0%   { transform: translate(940px, 360px) rotate(-8deg);}
  33%  { transform: translate(840px, 280px) rotate(6deg);}
  66%  { transform: translate(1000px, 250px) rotate(-6deg);}
  100% { transform: translate(940px, 360px) rotate(-8deg);}
}
.butterfly__wing { transform-box: fill-box; transform-origin: 100% 50%; animation: flap .28s ease-in-out infinite alternate; }
.butterfly__wing--r { transform-origin: 0% 50%; }
@keyframes flap { from { transform: scaleX(1);} to { transform: scaleX(.35);} }

/* Balloons float */
.balloon { transform-box: fill-box; }
.balloon--a { animation: float 7s ease-in-out infinite; }
.balloon--b { animation: float 9s ease-in-out infinite; animation-delay: -3s; }
@keyframes float { 0%,100% { transform: translateY(0) rotate(-3deg);} 50% { transform: translateY(-26px) rotate(3deg);} }

/* Grass blades + blooms sway */
.blade, .bloom { transform-box: fill-box; transform-origin: 50% 100%; animation: sway 4s ease-in-out infinite; animation-delay: var(--d, 0s); }
.bloom { transform-origin: 50% 90%; }
@keyframes sway { 0%,100% { transform: rotate(-5deg);} 50% { transform: rotate(5deg);} }

/* =================================================================
   ABOUT
   ================================================================= */
.about { background: var(--cream); }
.about__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about__media { position: relative; }
.photo {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  aspect-ratio: 4/3; background: linear-gradient(135deg, #cdeee9, #ffe3ec);
}
.photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo--placeholder { display: grid; place-items: center; color: var(--navy); font-family: var(--font-display); font-weight: 600; }
.photo--placeholder span { background: rgba(255,255,255,.7); padding: .7rem 1.2rem; border-radius: 100px; }
.about__media::before {
  content: ""; position: absolute; inset: -18px -18px auto auto; width: 120px; height: 120px;
  background: radial-gradient(circle, var(--yellow) 30%, transparent 31%) 0 0 / 22px 22px;
  opacity: .5; z-index: -1; border-radius: 30px;
}
.about__badge {
  position: absolute; right: -10px; bottom: 24px; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 1rem 1.3rem; text-align: center; transform: rotate(3deg);
}
.about__badge-num { display: block; font-family: var(--font-script); font-size: 2.2rem; color: var(--pink); line-height: 1; }
.about__badge-label { font-family: var(--font-display); font-weight: 600; font-size: .8rem; color: var(--navy); }

.about__body h2 { margin-bottom: 1.1rem; }
.about__body p { margin-bottom: 1rem; }
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem 1.2rem; margin: 1.4rem 0 1.8rem; }
.checklist li { position: relative; padding-left: 2rem; font-weight: 500; color: var(--navy); }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: -1px; width: 1.4rem; height: 1.4rem;
  display: grid; place-items: center; border-radius: 50%; font-size: .8rem; font-weight: 700;
  color: #fff; background: var(--teal);
}

/* =================================================================
   PROGRAMS
   ================================================================= */
.programs { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
.card {
  position: relative; flex: 1 1 200px; max-width: 264px;
  background: #fff; border-radius: var(--radius-lg); padding: 2.2rem 1.6rem 2rem;
  box-shadow: var(--shadow-sm); transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
  overflow: hidden; border: 1px solid rgba(17,45,78,.04);
}
.card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 8px; background: var(--c, var(--teal)); }
.card::after {
  content: ""; position: absolute; right: -30px; top: -30px; width: 110px; height: 110px; border-radius: 50%;
  background: var(--c, var(--teal)); opacity: .1;
}
.card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.card__icon {
  width: 64px; height: 64px; display: grid; place-items: center; font-size: 1.9rem; border-radius: 20px;
  background: color-mix(in srgb, var(--c, var(--teal)) 18%, white); margin-bottom: 1.1rem;
}
.card h3 { margin-bottom: .2rem; }
.card__age { font-family: var(--font-display); font-weight: 600; color: var(--c, var(--teal)); font-size: .9rem; margin-bottom: .7rem; }
.card p:last-child { font-size: .95rem; }
.card--pink   { --c: var(--pink); }
.card--teal   { --c: var(--teal); }
.card--orange { --c: var(--orange); }
.card--purple { --c: var(--purple); }
.card--navy   { --c: var(--navy); }

/* =================================================================
   AT-A-GLANCE RIBBON
   ================================================================= */
.ribbon { background: var(--cream); padding: 2.4rem 0 .5rem; }
.ribbon__inner { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem 1rem; }
.ribbon__pill {
  display: inline-flex; align-items: center; gap: .55rem;
  background: #fff; border-radius: 100px; padding: .7rem 1.3rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(17,45,78,.05);
  font-family: var(--font-display); font-weight: 500; color: var(--navy); font-size: .98rem;
}
.ribbon__pill b { font-size: 1.2rem; line-height: 1; }
.ribbon__pill strong { color: var(--pink); font-weight: 700; }

/* =================================================================
   ENRICHMENT & ACTIVITIES
   ================================================================= */
.enrichment { background: linear-gradient(180deg, var(--cream), #FFF1E6); }
.activities { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.activity {
  background: #fff; border-radius: var(--radius-lg); padding: 2.2rem 1.5rem; text-align: center;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(17,45,78,.04);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
}
.activity:hover { transform: translateY(-8px) rotate(-1deg); box-shadow: var(--shadow-lg); }
.activity__ico {
  width: 78px; height: 78px; margin: 0 auto 1.1rem; display: grid; place-items: center;
  font-size: 2.3rem; border-radius: 50%;
  background: color-mix(in srgb, var(--c, var(--teal)) 18%, white);
  box-shadow: inset 0 0 0 3px color-mix(in srgb, var(--c, var(--teal)) 35%, white);
}
.activity h3 { margin-bottom: .4rem; }
.activity p { font-size: .94rem; margin: 0; }
.activity--pink   { --c: var(--pink); }
.activity--purple { --c: var(--purple); }
.activity--orange { --c: var(--orange); }
.activity--teal   { --c: var(--teal); }

/* =================================================================
   WHY CHOOSE US
   ================================================================= */
.why { background: var(--navy); color: #fff; position: relative; }
.why::before, .day::before { /* decorative dotted texture */
  content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background: radial-gradient(rgba(255,255,255,.05) 1.5px, transparent 1.6px) 0 0 / 26px 26px;
}
.why .eyebrow { color: var(--orange); }
.why h2 { color: #fff; }
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; position: relative; }
.feature {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 1.8rem; transition: transform .3s, background .3s;
}
.feature:hover { transform: translateY(-6px); background: rgba(255,255,255,.1); }
.feature__ico { font-size: 2.2rem; display: block; margin-bottom: .8rem; }
.feature h3 { color: #fff; margin-bottom: .4rem; }
.feature p { color: rgba(255,255,255,.72); font-size: .95rem; margin: 0; }

/* =================================================================
   OUR DAY / TIMELINE
   ================================================================= */
.day { background: linear-gradient(180deg, #FFF1E6, var(--cream)); }
.timeline { position: relative; max-width: 760px; margin: 0 auto; display: grid; gap: 1.1rem; }
.timeline::before { content: ""; position: absolute; left: 84px; top: 12px; bottom: 12px; width: 3px; background: repeating-linear-gradient(var(--teal) 0 8px, transparent 8px 16px); }
.timeline li { display: grid; grid-template-columns: 64px 1fr; gap: 2.4rem; align-items: center; position: relative; }
.timeline li::before { content: ""; position: absolute; left: 84px; top: 50%; transform: translate(-50%, -50%); width: 16px; height: 16px; border-radius: 50%; background: var(--orange); border: 4px solid var(--cream); box-shadow: 0 0 0 2px var(--orange); z-index: 1; }
.timeline__time { font-family: var(--font-display); font-weight: 700; color: var(--navy); text-align: right; font-size: 1.05rem; }
.timeline__card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 1rem 1.4rem; position: relative; }
.timeline__card h3 { font-size: 1.1rem; margin-bottom: .15rem; }
.timeline__card p { margin: 0; font-size: .92rem; }

/* =================================================================
   GALLERY
   ================================================================= */
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.gallery__item {
  aspect-ratio: 1 / 1; border-radius: var(--radius); overflow: hidden; display: grid; place-items: center; font-size: 2rem;
  background: linear-gradient(135deg, #d8f0ec, #ffe7ef); color: rgba(17,45,78,.4);
  box-shadow: var(--shadow-sm); transition: transform .35s, box-shadow .35s;
}
.gallery__item:hover { transform: scale(1.03) rotate(-1deg); box-shadow: var(--shadow); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.gallery__item:nth-child(2) { background: linear-gradient(135deg, #ffe9cf, #ffe1ea); }
.gallery__item:nth-child(3) { background: linear-gradient(135deg, #e6e0fb, #d8f0ec); }
.gallery__item:nth-child(5) { background: linear-gradient(135deg, #ffe1ea, #e6e0fb); }
.gallery__item:nth-child(6) { background: linear-gradient(135deg, #d8f0ec, #ffe9cf); }

/* =================================================================
   TESTIMONIALS
   ================================================================= */
.quotes { background: var(--cream); }
.quotes__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.quote { background: #fff; border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); position: relative; }
.quote::before { content: "\201C"; position: absolute; top: -.2em; right: .3em; font-family: var(--font-script); font-size: 5rem; color: rgba(77,182,172,.18); }
.quote__stars { color: var(--orange); letter-spacing: 3px; margin-bottom: .8rem; }
.quote blockquote { color: var(--ink); font-size: 1.02rem; line-height: 1.6; margin-bottom: 1rem; }
.quote figcaption { font-family: var(--font-display); font-weight: 600; color: var(--teal); font-size: .92rem; }

/* =================================================================
   CONTACT
   ================================================================= */
.contact { background: linear-gradient(180deg, var(--cream), #FFF1E6); }
.contact__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact__info h2 { margin-bottom: 1rem; }
.contact__list { margin: 1.8rem 0; display: grid; gap: 1.1rem; }
.contact__list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact__ico {
  flex: none; width: 48px; height: 48px; display: grid; place-items: center; font-size: 1.3rem;
  background: #fff; border-radius: 16px; box-shadow: var(--shadow-sm);
}
.contact__list strong { display: block; font-family: var(--font-display); color: var(--navy); }
.contact__list a, .contact__list span { color: var(--ink-soft); }
.contact__list a:hover { color: var(--teal); }
.map { position: relative; margin-top: 1.6rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: linear-gradient(135deg, #dbeee9, #ffe6ee); min-height: 260px; }
.map__fallback { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; gap: .2rem; padding: 1.4rem; color: var(--navy); font-family: var(--font-display); font-weight: 600; line-height: 1.5; }
.map__fallback span { font-size: 1.8rem; }
.map__fallback small { color: var(--teal); font-weight: 500; }
.map iframe { position: relative; width: 100%; height: 260px; border: 0; }

.contact__form { background: #fff; border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow); border-top: 8px solid var(--pink); }
.contact__form h3 { font-size: 1.6rem; margin-bottom: .3rem; }
.form__note { font-size: .9rem; margin-bottom: 1.3rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-family: var(--font-display); font-weight: 500; color: var(--navy); margin-bottom: .35rem; font-size: .92rem; }
.field label span { color: var(--ink-soft); font-weight: 400; }
.field input, .field textarea {
  width: 100%; padding: .8rem 1rem; border-radius: var(--radius-sm); font: inherit; color: var(--ink);
  background: var(--cream); border: 2px solid transparent; transition: border .2s, box-shadow .2s, background .2s;
}
.field input::placeholder, .field textarea::placeholder { color: #aab4c2; }
.field input:focus, .field textarea:focus { outline: none; background: #fff; border-color: var(--teal); box-shadow: var(--ring); }
.field textarea { resize: vertical; }
.form__status { margin-top: .9rem; font-size: .92rem; font-weight: 500; color: var(--teal); min-height: 1.2em; text-align: center; }

/* =================================================================
   FOOTER
   ================================================================= */
.footer { background: var(--navy); color: rgba(255,255,255,.78); padding-top: 3.5rem; position: relative; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; }
.footer__logo { display: block; width: 168px; max-width: 60%; height: auto; background: #fff; border-radius: 22px; padding: 12px; box-shadow: 0 14px 34px rgba(0,0,0,.25); }
.footer__brand p { color: rgba(255,255,255,.6); margin-top: 1.1rem; max-width: 38ch; }
.footer__col h4 { color: #fff; margin-bottom: 1rem; font-size: 1.05rem; }
.footer__col ul { display: grid; gap: .55rem; }
.footer__col a:hover { color: var(--teal); }
.footer__bar {
  border-top: 1px solid rgba(255,255,255,.12); padding: 1.4rem 0;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  width: min(var(--maxw), 92%); margin-inline: auto; font-size: .85rem; color: rgba(255,255,255,.5);
}

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 980px) {
  .activities, .features, .quotes__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .about__grid, .contact__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 420px; margin: 0 auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  /* Drop the glass effect on mobile: backdrop-filter would otherwise trap the
     position:fixed menu inside the header's box. Solid background instead. */
  .site-header { -webkit-backdrop-filter: none; backdrop-filter: none; background: var(--cream); }
  .site-header.is-scrolled { background: var(--cream); }
  .brand__img { height: 60px; }
  .nav__toggle { display: flex; position: relative; z-index: 95; }
  .nav__menu {
    position: fixed; inset: 0 0 0 auto; width: min(300px, 84vw);
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: .4rem;
    background: var(--cream); padding: 5.5rem 1.4rem 2rem; box-shadow: -20px 0 50px rgba(17,45,78,.18);
    transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1); z-index: 90;
  }
  .nav__menu.is-open { transform: none; }
  .nav__menu > li > a:not(.btn) { display: block; padding: .8rem 1rem; font-size: 1.1rem; }
  .nav__cta { margin: .5rem 0 0; }
  .nav__cta .btn { width: 100%; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__badges li + li { padding-left: 1rem; }
}
@media (max-width: 540px) {
  .activities, .features, .quotes__grid { grid-template-columns: 1fr; }
  .card { flex-basis: 100%; max-width: 360px; }
  .checklist { grid-template-columns: 1fr; }
  .timeline::before { left: 68px; }
  .timeline li { grid-template-columns: 50px 1fr; gap: 2rem; }
  .timeline li::before { left: 68px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bar { flex-direction: column; text-align: center; }
}

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