:root {
  --indigo: #353375;
  --indigo-dark: #232057;
  --indigo-deep: #191545;
  --green: #00a859;
  --green-text: #067a3f;
  --green-light: #a8cf45;
  --yellow: #ffdd21;
  --sky: #00afef;
  --cream: #fbf7ef;
  --white: #ffffff;
  --ink: #26234a;
  --muted: #6b6884;
  --line: #e8e3f5;

  --font-head: 'Fredoka', 'Nunito', sans-serif;
  --font-body: 'DM Sans', 'Nunito', sans-serif;

  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 20px 50px -20px rgba(35, 32, 87, 0.25);
  --shadow-soft: 0 10px 30px -15px rgba(35, 32, 87, 0.18);
  --header-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--indigo-dark);
  margin: 0 0 0.5em;
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--muted); }

a { color: var(--indigo); text-decoration: none; }

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

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
@media (max-width: 700px) { .section { padding: 64px 0; } }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--green-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  margin-bottom: 0.6em;
}

.section-head { max-width: 700px; margin-bottom: 48px; }
.section-sub { font-size: 1.05rem; margin-top: 0.8em; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--indigo);
  color: #fff; padding: 12px 20px; z-index: 999; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--indigo);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow); background: var(--indigo-dark); }
.btn-ghost {
  background: transparent;
  color: var(--indigo);
  border-color: var(--indigo);
}
.btn-ghost:hover { background: var(--indigo); color: #fff; transform: translateY(-2px); }
.btn-ghost--light { color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-ghost--light:hover { background: #fff; color: var(--indigo-dark); }
.btn-small { padding: 10px 20px; font-size: 0.88rem; }
.btn-block { width: 100%; margin-top: 6px; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 247, 239, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
}
.brand-logo { height: 42px; width: auto; }
.main-nav { display: flex; gap: 30px; }
.main-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--indigo-dark);
  position: relative;
  padding: 4px 0;
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -3px; height: 2px; width: 0;
  background: var(--green); transition: width 0.25s ease;
}
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
  display: none; width: 40px; height: 40px; border: none; background: none;
  cursor: pointer; flex-direction: column; justify-content: center; gap: 6px;
}
.nav-toggle span { display: block; height: 2px; background: var(--indigo-dark); border-radius: 2px; }

@media (max-width: 900px) {
  .main-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: var(--white);
    flex-direction: column; gap: 0;
    padding: 10px 24px 20px;
    transform: translateY(-8px);
    opacity: 0; visibility: hidden;
    transition: all 0.25s ease;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
  }
  .main-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .main-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .header-actions .btn-small { display: none; }
  .nav-toggle { display: flex; }
}

.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px -12px rgba(35,32,87,0.2);
}
.mobile-cta-bar a {
  flex: 1; text-align: center; padding: 12px 4px; font-family: var(--font-head);
  font-weight: 600; font-size: 0.82rem; color: var(--indigo-dark);
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.mcb-icon { font-size: 1.1rem; }
.mcb-highlight { background: var(--indigo); color: #fff !important; }
@media (max-width: 700px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 66px; }
}

/* ---------- HERO ---------- */
.hero { position: relative; overflow: hidden; padding: 72px 0 60px; }
.hero-organic {
  position: absolute; inset: -20% -10% auto auto; width: 60%; height: 140%;
  background: radial-gradient(circle at 70% 30%, rgba(0,168,89,0.12), transparent 60%),
              radial-gradient(circle at 40% 70%, rgba(255,221,33,0.15), transparent 55%),
              radial-gradient(circle at 90% 80%, rgba(0,175,239,0.12), transparent 50%);
  z-index: 0;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.hero-lede { font-size: 1.08rem; max-width: 52ch; }
.hero-facts {
  display: flex; flex-wrap: wrap; gap: 10px 18px; margin: 22px 0 30px;
  font-family: var(--font-head); font-weight: 600; color: var(--indigo-dark); font-size: 0.92rem;
}
.hero-facts span { display: flex; align-items: center; gap: 8px; }
.hero-facts span::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-media { position: relative; }
.hero-media img {
  width: 100%; aspect-ratio: 4/3.1; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.hero-media-tag {
  position: absolute; left: 20px; bottom: -18px;
  background: var(--white); padding: 10px 18px; border-radius: 999px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.82rem; color: var(--indigo-dark);
  box-shadow: var(--shadow-soft);
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
}

/* ---------- TRUST BAR ---------- */
.trust-bar { background: var(--indigo); color: #fff; padding: 40px 0; }
.trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center;
}
.trust-item p { color: rgba(255,255,255,0.75); margin: 4px 0 0; font-size: 0.92rem; }
.trust-number, .trust-static, .trust-suffix {
  font-family: var(--font-head); font-weight: 700; font-size: 2.1rem; color: var(--yellow);
}
.trust-static { font-size: 1.5rem; }
@media (max-width: 640px) { .trust-grid { grid-template-columns: 1fr; gap: 20px; } }

/* ---------- PHILOSOPHY ---------- */
.philosophy-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.philosophy-media { position: relative; }
.philosophy-media img {
  width: 100%; aspect-ratio: 5/4; object-fit: cover; border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.word-chips {
  position: absolute; bottom: -22px; left: 50%; transform: translateX(-50%);
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; max-width: 92%;
}
.word-chips span {
  background: var(--white); padding: 8px 16px; border-radius: 999px;
  font-family: var(--font-head); font-size: 0.8rem; font-weight: 600; color: var(--indigo);
  box-shadow: var(--shadow-soft);
}
@media (max-width: 900px) { .philosophy-grid { grid-template-columns: 1fr; gap: 48px; } }
@media (max-width: 640px) {
  .philosophy-media { margin-bottom: 16px; }
  .word-chips {
    position: static; transform: none; margin-top: 16px; max-width: 100%;
  }
}

/* ---------- FEATURE GRID ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: var(--white); border-radius: var(--radius); padding: 32px 26px;
  box-shadow: var(--shadow-soft); transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--green-light), var(--green));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 18px;
}
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { margin: 0; font-size: 0.95rem; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }

/* ---------- PROGRAMMES ---------- */
.programme-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.programme-card {
  background: var(--white); border-radius: var(--radius); padding: 30px 26px;
  border-top: 5px solid var(--sky);
  box-shadow: var(--shadow-soft); transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.programme-card:nth-child(2) { border-top-color: var(--green); }
.programme-card:nth-child(3) { border-top-color: var(--yellow); }
.programme-card:nth-child(4) { border-top-color: var(--indigo); }
.programme-card:nth-child(5) { border-top-color: var(--green-light); }
.programme-card:nth-child(6) { border-top-color: var(--sky); }
.programme-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.programme-age {
  display: inline-block; font-family: var(--font-head); font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.03em; color: var(--muted);
  background: var(--cream); padding: 5px 12px; border-radius: 999px; margin-bottom: 14px;
}
.programme-card p { font-size: 0.95rem; margin: 0; }
.programme-card--wide { grid-column: span 1; }
@media (max-width: 900px) { .programme-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .programme-grid { grid-template-columns: 1fr; } }

/* ---------- SPECIAL SUPPORT ---------- */
.support-section { background: var(--white); }
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.support-line {
  font-family: var(--font-head); font-weight: 600; color: var(--indigo); font-size: 1.15rem;
}
.support-tags { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-wrap: wrap; gap: 10px; }
.support-tags li {
  background: var(--cream); color: var(--indigo-dark); font-size: 0.85rem; font-weight: 600;
  padding: 8px 16px; border-radius: 999px; font-family: var(--font-head);
}
.support-media img { border-radius: var(--radius); box-shadow: var(--shadow-soft); aspect-ratio: 4/3.4; object-fit: cover; }
@media (max-width: 900px) { .support-grid { grid-template-columns: 1fr; gap: 36px; } .support-media { order: -1; } }

/* ---------- MONTESSORI JOURNEY ---------- */
.journey {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin: 40px 0;
}
.journey-step {
  background: var(--white); border-radius: 999px; padding: 16px 26px;
  font-family: var(--font-head); font-weight: 600; color: var(--indigo-dark);
  box-shadow: var(--shadow-soft); position: relative;
}
.journey-step:not(:last-child)::after {
  content: '→'; position: absolute; right: -24px; top: 50%; transform: translateY(-50%);
  color: var(--green); font-size: 1.1rem;
}
@media (max-width: 700px) {
  .journey { flex-direction: column; align-items: stretch; }
  .journey-step { text-align: center; }
  .journey-step:not(:last-child)::after { content: '↓'; right: auto; left: 50%; top: auto; bottom: -22px; transform: translateX(-50%); }
}
.montessori-close { text-align: center; font-size: 1.1rem; color: var(--indigo-dark); font-family: var(--font-head); font-weight: 500; max-width: 600px; margin: 0 auto; }

/* ---------- STORY / TIMELINE ---------- */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.timeline { display: flex; flex-direction: column; gap: 18px; }
.timeline-item {
  background: var(--white); border-left: 4px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 16px 22px;
  box-shadow: var(--shadow-soft);
}
.timeline-year { font-family: var(--font-head); font-weight: 700; color: var(--indigo); display: block; margin-bottom: 4px; }
.timeline-item p { margin: 0; font-size: 0.92rem; }
@media (max-width: 900px) { .story-grid { grid-template-columns: 1fr; gap: 32px; } }

.founder-card {
  display: grid; grid-template-columns: 160px 1fr; gap: 36px; align-items: start;
  background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-soft);
  margin-bottom: 40px;
}
.founder-mark {
  width: 120px; height: 120px; border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), var(--indigo-dark));
  color: var(--yellow); font-family: var(--font-head); font-weight: 700; font-size: 3rem;
  display: flex; align-items: center; justify-content: center;
}
.founder-role { font-family: var(--font-head); font-weight: 600; color: var(--green-text); margin-bottom: 12px; }
.founder-copy p:last-child { margin-bottom: 0; }
@media (max-width: 640px) { .founder-card { grid-template-columns: 1fr; text-align: center; } .founder-mark { margin: 0 auto; } }

.team-note {
  background: var(--cream); border-radius: var(--radius); padding: 32px 36px;
}
.team-note p { margin: 0; }

/* ---------- PURPOSE ---------- */
.purpose-section { background: var(--white); }
.purpose-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.purpose-card {
  background: var(--cream); border-radius: var(--radius); padding: 32px 28px;
}
.purpose-card--values ul { padding-left: 20px; margin: 0; color: var(--muted); }
.purpose-card--values li { margin-bottom: 6px; font-size: 0.94rem; }
@media (max-width: 900px) { .purpose-grid { grid-template-columns: 1fr; } }

/* ---------- COMMUNITY ---------- */
.community-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.community-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pillar {
  background: var(--white); border-radius: var(--radius-sm); padding: 26px 10px; text-align: center;
  box-shadow: var(--shadow-soft); font-family: var(--font-head); font-weight: 600; color: var(--indigo-dark);
}
.pillar:nth-child(1) { border-bottom: 4px solid var(--green); }
.pillar:nth-child(2) { border-bottom: 4px solid var(--sky); }
.pillar:nth-child(3) { border-bottom: 4px solid var(--yellow); }
.pillar:nth-child(4) { border-bottom: 4px solid var(--indigo); }
@media (max-width: 900px) { .community-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- GALLERY ---------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.gfilter {
  background: var(--white); border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 20px; font-family: var(--font-head); font-weight: 600; font-size: 0.85rem;
  color: var(--indigo-dark); cursor: pointer; transition: all 0.2s ease;
}
.gfilter.is-active, .gfilter:hover { background: var(--indigo); color: #fff; border-color: var(--indigo); }

.masonry {
  columns: 4 240px; column-gap: 16px;
}
.g-item {
  display: block; width: 100%; border: none; background: none; padding: 0; margin: 0 0 16px;
  break-inside: avoid; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer;
  box-shadow: var(--shadow-soft);
}
.g-item img { width: 100%; display: block; transition: transform 0.4s ease; }
.g-item:hover img { transform: scale(1.05); }
.g-item[hidden] { display: none; }
@media (max-width: 700px) { .masonry { columns: 2 160px; } }

.lightbox {
  position: fixed; inset: 0; background: rgba(25, 21, 69, 0.92); z-index: 200;
  display: flex; align-items: center; justify-content: center; padding: 30px;
}
.lightbox[hidden] { display: none; }

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed; right: 20px; bottom: 28px; z-index: 80;
  width: 48px; height: 48px; border-radius: 50%; border: none;
  background: var(--indigo); color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
  opacity: 0; transform: translateY(10px); pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.back-to-top svg { width: 20px; height: 20px; fill: currentColor; }
.back-to-top:hover { background: var(--indigo-dark); }
.back-to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
@media (max-width: 700px) {
  .back-to-top { bottom: 82px; right: 16px; width: 44px; height: 44px; }
}
@media (prefers-reduced-motion: reduce) {
  .back-to-top { transition: opacity 0.01s linear; }
}
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: 12px; }
.lightbox-close {
  position: absolute; top: 20px; right: 24px; background: none; border: none;
  color: #fff; font-size: 2.2rem; cursor: pointer; line-height: 1;
}

/* ---------- TESTIMONIALS ---------- */
.testimonial-placeholder {
  background: var(--white); border-radius: var(--radius); padding: 44px; text-align: center;
  box-shadow: var(--shadow-soft); max-width: 640px;
}
.testimonial-placeholder p { font-size: 1.05rem; margin-bottom: 20px; }

/* ---------- FAQ ---------- */
.accordion { max-width: 760px; }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-trigger {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 20px 4px; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; color: var(--indigo-dark);
}
.acc-icon { font-size: 1.3rem; color: var(--green-text); transition: transform 0.25s ease; flex-shrink: 0; }
.acc-trigger[aria-expanded="true"] .acc-icon { transform: rotate(45deg); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.acc-panel p { padding: 0 4px 20px; margin: 0; }

/* ---------- FINAL CTA ---------- */
.final-cta { background: linear-gradient(135deg, var(--indigo), var(--indigo-deep)); color: #fff; text-align: center; }
.final-cta h2 { color: #fff; }
.final-cta p { color: rgba(255,255,255,0.8); max-width: 500px; margin: 0 auto 30px; }
.final-cta-inner .hero-ctas { justify-content: center; }

/* ---------- CONTACT ---------- */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-block { margin-bottom: 22px; }
.contact-block h3 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--green-text); margin-bottom: 6px; }
.contact-block p { margin: 0; }
.map-embed { border-radius: var(--radius-sm); overflow: hidden; margin-top: 28px; box-shadow: var(--shadow-soft); }
.map-embed iframe { width: 100%; height: 260px; border: 0; display: block; }

.enquiry-card { background: var(--cream); border-radius: var(--radius); padding: 36px; }
.field { margin-bottom: 16px; }
.field label {
  display: block; font-family: var(--font-head); font-weight: 600; font-size: 0.85rem;
  color: var(--indigo-dark); margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; border-radius: 10px; border: 1px solid var(--line);
  font-family: var(--font-body); font-size: 0.95rem; background: #fff; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--sky); outline-offset: 1px;
}
.form-note { text-align: center; font-size: 0.88rem; color: var(--green-text); min-height: 1.4em; margin-top: 10px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- CAREERS ---------- */
.careers-section { text-align: center; }
.careers-inner { max-width: 560px; margin: 0 auto; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--indigo-deep); color: rgba(255,255,255,0.75); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-logo { height: 38px; filter: brightness(0) invert(1); margin-bottom: 14px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
}
.footer-social a:hover { background: var(--green); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a, .footer-contact a { color: rgba(255,255,255,0.75); }
.footer-nav a:hover, .footer-contact a:hover { color: var(--yellow); }
.footer-contact p { margin: 0 0 10px; font-size: 0.92rem; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 22px 24px; font-size: 0.82rem; flex-wrap: wrap;
}
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { color: rgba(255,255,255,0.6); }
.footer-credit { color: rgba(255,255,255,0.6); margin: 0; }
.footer-credit a { color: rgba(255,255,255,0.85); font-weight: 600; }
.footer-credit a:hover { color: var(--yellow); }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- REVEAL ANIMATION ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
