:root {
  --sky: #58bff7;
  --sky-dark: #0f74a8;
  --sun: #ffd75a;
  --leaf: #63c971;
  --leaf-dark: #1f8b4c;
  --orange: #ff8a3d;
  --coral: #ff6f61;
  --ink: #18324a;
  --muted: #607386;
  --paper: #fffaf0;
  --white: #ffffff;
  --line: #ddebf4;
  --shadow: 0 16px 40px rgba(24, 50, 74, 0.12);
  --soft-shadow: 0 8px 22px rgba(24, 50, 74, 0.09);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  background: #ffffff;
}

body.menu-open {
  overflow: hidden;
}

body.language-modal-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(255, 138, 61, 0.55);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 999;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(221, 235, 244, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 0.8rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  place-items: center;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: grid;
  min-width: 0;
  line-height: 1.1;
}

.brand-text strong {
  max-width: 330px;
  font-size: 1.08rem;
  white-space: normal;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: #edf8ff;
  cursor: pointer;
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0.55rem 0.82rem;
  color: #28475f;
  font-size: 0.94rem;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--sky-dark);
  background: #eaf8ff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.language-toggle {
  display: inline-grid;
  min-width: 52px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  padding: 0 0.75rem;
  color: var(--sky-dark);
  background: #fff7ce;
  box-shadow: inset 0 0 0 1px rgba(245, 178, 53, 0.45);
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.language-toggle:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px rgba(245, 178, 53, 0.7), var(--soft-shadow);
}

.icon-link {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  color: var(--sky-dark);
  background: #eaf8ff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.icon-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--soft-shadow);
}

.icon-link svg,
.btn svg,
.footer-social svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 0.78rem 1.08rem;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.15;
  cursor: pointer;
  box-shadow: var(--soft-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-primary {
  color: var(--ink);
  background: var(--sun);
}

.btn-secondary {
  color: var(--white);
  background: var(--sky-dark);
}

.btn-green {
  color: var(--white);
  background: var(--leaf-dark);
}

.btn-orange {
  color: var(--white);
  background: var(--orange);
}

.btn-light {
  color: var(--sky-dark);
  background: var(--white);
}

.btn-full {
  width: 100%;
}

.language-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(24, 50, 74, 0.58);
  backdrop-filter: blur(10px);
}

.language-dialog {
  width: min(100%, 420px);
  border: 1px solid rgba(221, 235, 244, 0.95);
  border-radius: var(--radius);
  padding: 1.4rem;
  text-align: center;
  background: var(--white);
  box-shadow: var(--shadow);
}

.language-logo {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 0.9rem;
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.language-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.language-dialog h2 {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.15;
}

.language-dialog p {
  margin: 0.55rem 0 1.1rem;
  color: var(--muted);
  font-weight: 800;
}

.language-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.language-option {
  min-height: 50px;
}

.section {
  padding: 4.5rem 0;
}

.section-soft {
  background: linear-gradient(180deg, #f2fbff, #ffffff);
}

.section-sun {
  background: linear-gradient(180deg, #fff7ce, #ffffff);
}

.section-green {
  background: linear-gradient(180deg, #effff2, #ffffff);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.narrow {
  max-width: 860px;
}

.section-heading {
  display: grid;
  gap: 0.55rem;
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  color: var(--sky-dark);
  font-size: 0.82rem;
  font-weight: 900;
  background: #e8f8ff;
}

.section-heading h1,
.section-heading h2,
.page-hero h1,
.hero-copy h1 {
  margin: 0;
  color: var(--ink);
  line-height: 1.08;
}

.section-heading h2,
.page-hero h1 {
  font-size: 2.8rem;
}

.section-heading p,
.page-hero p,
.hero-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.42) 63%, rgba(255, 255, 255, 0.16) 100%),
    url("images/hero-school.webp");
  background-position: center;
  background-size: cover;
}

.hero::after {
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  content: "";
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  min-height: 680px;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 4.5rem 0 6rem;
}

.hero-copy {
  max-width: 650px;
}

.hero-copy h1 {
  margin-top: 1rem;
  font-size: 4.75rem;
}

.hero-copy p {
  max-width: 560px;
  margin-top: 1rem;
  font-size: 1.18rem;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 600px;
  margin-top: 2rem;
}

.stat-pill {
  border: 1px solid rgba(221, 235, 244, 0.92);
  border-radius: var(--radius);
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
}

.stat-pill strong {
  display: block;
  color: var(--sky-dark);
  font-size: 1.35rem;
  line-height: 1.1;
}

.stat-pill span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.floating-icon {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 999px;
  font-size: 1.45rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
  animation: floaty 5s ease-in-out infinite;
}

.icon-book { top: 18%; right: 15%; }
.icon-pencil { top: 38%; right: 6%; animation-delay: 0.6s; }
.icon-star { top: 16%; left: 47%; animation-delay: 1s; }
.icon-globe { bottom: 22%; right: 24%; animation-delay: 1.4s; }
.icon-bag { bottom: 12%; left: 52%; animation-delay: 1.8s; }

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

.grid {
  display: grid;
  gap: 1rem;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(88, 191, 247, 0.55);
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0.7rem 0 0.35rem;
  font-size: 1.25rem;
  line-height: 1.2;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card-icon {
  display: inline-grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 999px;
  font-size: 1.45rem;
  background: #fff3ba;
}

.card-blue .card-icon { background: #def4ff; }
.card-green .card-icon { background: #e4fbe8; }
.card-orange .card-icon { background: #ffe8d8; }
.card-pink .card-icon { background: #ffe8ef; }

.feature-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--muted);
}

.check {
  display: inline-grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  background: var(--leaf-dark);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 2rem;
  align-items: center;
}

.image-panel {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.highlight-band {
  border: 1px solid rgba(255, 215, 90, 0.7);
  border-radius: var(--radius);
  padding: 1.3rem;
  background: linear-gradient(135deg, #fff8d8, #e9fbff);
  box-shadow: var(--soft-shadow);
}

.class-card {
  display: grid;
  gap: 0.75rem;
}

.class-card h3 {
  margin-bottom: 0;
}

.class-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
  color: var(--sky-dark);
  font-size: 0.8rem;
  font-weight: 900;
  background: #e8f8ff;
}

.tag-green {
  color: var(--leaf-dark);
  background: #e7fbe9;
}

.tag-orange {
  color: #a44b12;
  background: #ffe8d8;
}

.tag-sun {
  color: #7d5b00;
  background: #fff2b8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--soft-shadow);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
  opacity: 0.82;
}

.gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem;
  background: linear-gradient(0deg, rgba(24, 50, 74, 0.85), rgba(24, 50, 74, 0));
  text-align: left;
}

.gallery-caption strong {
  display: block;
  font-size: 1rem;
}

.testimonial {
  display: grid;
  gap: 0.9rem;
}

.testimonial blockquote {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.testimonial strong {
  color: var(--ink);
}

.process {
  counter-reset: steps;
}

.process-card {
  position: relative;
  padding-left: 4.3rem;
}

.process-card::before {
  position: absolute;
  top: 1.15rem;
  left: 1.15rem;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  font-weight: 900;
  background: var(--orange);
  counter-increment: steps;
  content: counter(steps);
}

.notice-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.2rem;
}

.filter-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.62rem 0.9rem;
  color: var(--muted);
  font-weight: 900;
  background: var(--white);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-btn.is-active,
.filter-btn:hover {
  color: var(--sky-dark);
  border-color: #b8e7fb;
  background: #eaf8ff;
}

.notice-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.notice-date {
  display: grid;
  width: 72px;
  overflow: hidden;
  border-radius: var(--radius);
  text-align: center;
  background: #eaf8ff;
}

.notice-date strong {
  padding: 0.45rem 0 0.2rem;
  color: var(--sky-dark);
  font-size: 1.45rem;
  line-height: 1;
}

.notice-date span {
  padding: 0.2rem 0 0.45rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.map-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  font-weight: 900;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 2rem;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 15%, rgba(255, 215, 90, 0.8), transparent 22rem),
    linear-gradient(135deg, var(--sky-dark), #22496d);
  box-shadow: var(--shadow);
}

.cta-band h2,
.cta-band p {
  max-width: 720px;
  margin: 0;
}

.cta-band h2 {
  font-size: 2.55rem;
  line-height: 1.1;
}

.cta-band p {
  margin-top: 0.65rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-band .action-row {
  margin-top: 1.35rem;
}

.page-hero {
  padding: 4.2rem 0;
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 215, 90, 0.5), transparent 16rem),
    radial-gradient(circle at 15% 82%, rgba(99, 201, 113, 0.24), transparent 16rem),
    linear-gradient(135deg, #eaf8ff, #fff7dc);
}

.page-hero .container {
  display: grid;
  gap: 1rem;
}

.page-hero p {
  max-width: 760px;
}

.site-footer {
  padding: 3rem 0 1.2rem;
  color: #d9efff;
  background: #17324b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.footer-grid h3,
.footer-grid h4 {
  margin: 0 0 0.75rem;
  color: var(--white);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer-brand img {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  object-fit: cover;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.footer-brand h3 {
  margin: 0;
}

.footer-grid p,
.footer-grid li {
  color: #bcd3e5;
}

.footer-grid ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid a:hover {
  color: var(--sun);
}

.footer-social {
  display: flex;
  gap: 0.65rem;
  margin-top: 1rem;
}

.footer-social a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1rem;
  color: #bcd3e5;
  font-size: 0.92rem;
  text-align: center;
}

.sticky-whatsapp,
.mobile-call {
  position: fixed;
  z-index: 95;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  box-shadow: var(--shadow);
}

.sticky-whatsapp {
  right: 1rem;
  bottom: 1rem;
  background: #22a75a;
}

.mobile-call {
  display: none;
  left: 1rem;
  bottom: 1rem;
  background: var(--sky-dark);
}

.sticky-whatsapp svg,
.mobile-call svg {
  width: 26px;
  height: 26px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(13, 31, 47, 0.78);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-content {
  position: relative;
  width: min(100%, 920px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.lightbox-content img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #f6fbff;
}

.lightbox-caption {
  padding: 0.9rem 1rem;
  color: var(--ink);
  font-weight: 900;
}

.lightbox-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 72px 1rem auto 1rem;
    display: none;
    max-height: calc(100vh - 96px);
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0.8rem;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav a {
    justify-content: flex-start;
    border-radius: var(--radius);
  }

  .header-actions .btn {
    display: none;
  }

  .grid-4,
  .grid-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero {
    background-image:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 45%, rgba(255, 255, 255, 0.28) 100%),
      url("images/hero-school.webp");
    background-position: 58% center;
  }

  .hero-inner {
    padding: 3rem 0 3.8rem;
  }

  .hero-copy p {
    font-size: 1.05rem;
  }

  .section-heading h2,
  .page-hero h1 {
    font-size: 2.25rem;
  }

  .cta-band h2 {
    font-size: 2rem;
  }

  .hero-stats,
  .grid-3,
  .grid-2,
  .split,
  .gallery-grid,
  .quick-links {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    max-width: 420px;
  }

  .floating-icon {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }

  .icon-book { top: 58%; right: 8%; }
  .icon-pencil { top: 68%; right: 23%; }
  .icon-star { top: 54%; left: 8%; }
  .icon-globe { bottom: 11%; right: 9%; }
  .icon-bag { bottom: 10%; left: 12%; }

  .section {
    padding: 3.2rem 0;
  }

  .image-panel img {
    min-height: 260px;
  }

  .cta-band {
    padding: 1.35rem;
  }

  .mobile-call {
    display: grid;
    width: 46px;
    height: 46px;
    right: auto;
    bottom: 0.75rem;
    left: 0.75rem;
  }

  .sticky-whatsapp {
    right: 0.75rem;
    bottom: 0.75rem;
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 580px) {
  .header-inner {
    width: min(100% - 1rem, var(--max));
  }

  .brand-text strong {
    max-width: calc(100vw - 150px);
    font-size: 0.96rem;
  }

  .brand-text span {
    display: none;
  }

  .icon-link {
    display: none;
  }

  .site-nav {
    inset-inline: 0.5rem;
    grid-template-columns: 1fr !important;
  }

  .container,
  .hero-inner {
    width: min(100% - 1rem, var(--max));
  }

  .hero-copy h1 {
    font-size: 2.45rem;
  }

  .hero-stats,
  .floating-icon {
    display: none;
  }

  .section-heading h2,
  .page-hero h1 {
    font-size: 2rem;
  }

  .cta-band h2 {
    font-size: 1.75rem;
  }

  .hero-actions,
  .action-row {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .grid-4,
  .grid-5 {
    grid-template-columns: 1fr;
  }

  .notice-card {
    grid-template-columns: 1fr;
  }

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