:root {
  --coral:        #ef5d60;
  --coral-dark:   #c43e41;
  --coral-deep:   #b83235;
  --yellow:       #ffc24b;
  --yellow-dark:  #8a5a00;
  --green:        #3cb46e;
  --green-dark:   #237a49;
  --blue:         #2aa9e0;
  --blue-dark:    #0f6f96;
  --lavender:     #8f86e0;
  --lavender-dark:#6258bc;

  --cream:        #fff9f0;
  --cream-2:      #fef3e4;
  --surface:      #ffffff;
  --ink:          #2c2a32;
  --ink-soft:     #565360;
  --line:         #ece3d6;

  --brand:        var(--blue);
  --brand-dark:   var(--blue-dark);

  --font-head: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius:    10px;
  --radius-lg: 12px;
  --radius-pill: 10px;
  --shadow-sm: 0 1px 3px rgba(44, 42, 50, .08);
  --shadow:    0 2px 8px rgba(44, 42, 50, .08);
  --shadow-lg: 0 2px 8px rgba(44, 42, 50, .10);

  --container: 1200px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

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

body.nav-open { overflow: hidden; }

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

h1, h2, h3 {
  font-family: var(--font-head);
  line-height: 1.18;
  color: var(--ink);
  font-weight: 600;
  margin: 0 0 .5em;
  letter-spacing: 0;
}

h1 { font-size: 3.125rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1rem; }

a { color: var(--brand-dark); text-underline-offset: 3px; overflow-wrap: break-word; }
a:hover { color: var(--ink); }

address { font-style: normal; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.visually-hidden, .skip-link:not(:focus):not(:active) {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.section { padding: clamp(3.5rem, 6vw, 6rem) 0; }
.section--tint { background: var(--cream-2); }

.section-head { max-width: 720px; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; }
.section-head__sub { color: var(--ink-soft); font-size: 1.1rem; }

.eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  font-size: .9rem;
  color: var(--blue-dark);
  margin: 0 0 .6rem;
}
.eyebrow--coral    { color: var(--coral-dark); }
.eyebrow--green    { color: var(--green-dark); }
.eyebrow--blue     { color: var(--blue-dark); }
.eyebrow--lavender { color: var(--lavender-dark); }

:focus-visible {
  outline: 3px solid var(--blue-dark);
  outline-offset: 2px;
  border-radius: 6px;
}

.skip-link {
  position: fixed; top: .75rem; left: .75rem; z-index: 1000;
  background: var(--ink); color: #fff;
  padding: .6rem 1rem; border-radius: 8px; font-weight: 700;
  text-decoration: none;
}

/* Icon colour tints */
.ic-blue     { color: var(--blue-dark); }
.ic-green    { color: var(--green-dark); }
.ic-coral    { color: var(--coral-dark); }
.ic-yellow   { color: var(--yellow-dark); }
.ic-lavender { color: var(--lavender-dark); }

/* Buttons */
.btn {
  --btn-bg: var(--brand);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.1;
  min-height: 44px;
  max-width: 100%;
  padding: .8rem 1.4rem;
  border-radius: 8px;
  border: 2px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  text-decoration: none;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease, opacity .15s ease;
}
.btn:hover { color: var(--btn-fg); }
.btn:disabled { cursor: not-allowed; opacity: .68; }
.btn i { flex: none; }
.btn span { min-width: 0; }

.btn--primary { background: var(--coral-dark); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--coral-deep); }

.btn--ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn--ghost:hover { background: var(--cream-2); color: var(--ink); border-color: #ddd0bd; }

.btn--sm { padding: .55rem 1.05rem; font-size: .95rem; }
.btn--lg { padding: 1rem 1.7rem; font-size: 1.08rem; }
.btn--block { width: 100%; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: .75rem; min-height: 72px; }

.brand { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; }
.brand__logo { width: 48px; height: 48px; object-fit: contain; }
.brand__name {
  font-family: var(--font-head); font-weight: 700; font-size: 1.25rem;
  color: var(--ink); white-space: nowrap;
}

.main-nav { display: flex; align-items: center; gap: .45rem; min-width: 0; }

/* Language switcher */
.lang-switch {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .25rem .5rem; border: 1px solid var(--line); border-radius: var(--radius-pill);
  background: #fff; flex: none;
}
.lang-switch > i { color: var(--ink-soft); font-size: .85rem; }
.lang-switch__select {
  border: 0; background: transparent; cursor: pointer;
  font-family: var(--font-head); font-weight: 500; font-size: .92rem;
  color: var(--ink); padding: .15rem .1rem; max-width: 9rem;
}
.lang-switch__select:focus-visible { outline: 3px solid var(--blue-dark); outline-offset: 3px; border-radius: 4px; }

/* Off-screen honeypot field (spam trap) */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.nav-menu {
  display: flex; align-items: center; gap: .1rem;
  list-style: none; margin: 0; padding: 0;
}
.nav-menu a {
  display: inline-block;
  font-family: var(--font-head); font-weight: 500;
  color: var(--ink); text-decoration: none;
  padding: .5rem .5rem; border-radius: 8px;
  transition: background-color .15s ease, color .15s ease;
}
.nav-menu a:not(.btn):hover { background: var(--cream-2); color: var(--coral-dark); }
.nav-menu__cta { display: flex; align-items: center; }
.nav-menu__cta .btn {
  display: inline-flex;
  align-items: center;
  padding: .55rem 1.05rem;
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  width: 46px; height: 46px;
  padding: 11px; border: 1px solid var(--line); border-radius: 10px;
  background: #fff; cursor: pointer;
}
.nav-toggle__bar { display: block; height: 3px; border-radius: 3px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Multilingual welcome bar */
.lang-welcome { background: var(--cream-2); border-bottom: 1px solid var(--line); }
.lang-welcome .container {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: .25rem .6rem; text-align: center;
  padding-top: .55rem; padding-bottom: .55rem;
  font-size: .88rem; color: var(--ink-soft); margin: 0;
}
.lang-welcome i { color: var(--blue-dark); }
.lang-welcome__greet { font-weight: 700; color: var(--ink); }

/* Hero */
.hero { position: relative; overflow: hidden; padding: clamp(2.5rem, 5vw, 5rem) 0 clamp(3rem, 5vw, 5rem); }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero__content { position: relative; z-index: 2; }
.hero__sub { font-size: 1.2rem; color: var(--ink-soft); max-width: 38ch; }
.hero__sub strong { color: var(--ink); }

.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin: 1.6rem 0; }

.hero__badges {
  display: flex; flex-wrap: wrap; gap: 1.1rem;
  list-style: none; margin: 0; padding: 0;
  font-weight: 700; color: var(--ink);
}
.hero__badges li { display: inline-flex; align-items: center; gap: .5rem; }
.hero__badges i { color: var(--green-dark); }

.hero__media { position: relative; z-index: 2; }
.hero__frame {
  margin: 0 auto;
  max-width: 370px;
  background: #fff;
  padding: 10px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.hero__frame img {
  display: block;
  border-radius: 10px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  width: 100%;
}
.hero__caption {
  font-family: var(--font-head); font-weight: 500;
  text-align: center; color: var(--ink-soft);
  padding: .8rem .5rem .3rem;
}
.hero__sticker {
  position: absolute; top: -12px; right: -8px;
  background: var(--yellow); color: var(--ink);
  font-family: var(--font-head); font-weight: 600;
  padding: .5rem 1rem; border-radius: 8px;
  box-shadow: var(--shadow); border: 2px solid #fff;
}

/* Quick facts */
.facts { padding: clamp(2rem, 4vw, 3rem) 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.facts__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; text-align: center; }
.fact__icon { font-size: 1.9rem; display: block; margin-bottom: .45rem; }
.fact__title { font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; margin: 0 0 .15rem; }
.fact__text { color: var(--ink-soft); font-size: .95rem; margin: 0; }

/* About */
.about__grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about__points { margin: 1.5rem 0 2rem; display: grid; gap: .9rem; }
.about__point { display: flex; gap: .7rem; align-items: flex-start; }
.about__point p { margin: 0; }
.check { color: var(--green); font-size: 1.3rem; line-height: 1.4; flex: none; }

.about__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.stat-card {
  background: #fff; border-radius: var(--radius);
  padding: 1.4rem 1.2rem; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
}
.stat-card--blue   { border-top-color: var(--blue); }
.stat-card--green  { border-top-color: var(--green); }
.stat-card--yellow { border-top-color: var(--yellow); }
.stat-card--coral  { border-top-color: var(--coral); }
.stat-card__num { display: block; font-family: var(--font-head); font-weight: 700; font-size: 1.9rem; color: var(--ink); line-height: 1; }
.stat-card__label { display: block; color: var(--ink-soft); font-size: .95rem; margin-top: .4rem; }

/* Shared tinted icon badge (services + facilities) */
.service-card__icon, .facility__icon {
  display: grid; place-items: center;
  border-radius: 12px;
}
.service-card__icon { width: 56px; height: 56px; font-size: 1.5rem; margin-bottom: 1rem; }
.facility__icon { width: 46px; height: 46px; font-size: 1.25rem; margin-bottom: .8rem; }

.icon--blue     { background: #dff1fb; color: var(--blue-dark); }
.icon--green    { background: #ddf3e7; color: var(--green-dark); }
.icon--coral    { background: #fde0e1; color: var(--coral-dark); }
.icon--yellow   { background: #fff0cf; color: var(--yellow-dark); }
.icon--lavender { background: #e8e5fb; color: var(--lavender-dark); }

/* Services */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 1.7rem; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.service-card:hover { border-color: #dccfbd; box-shadow: var(--shadow); }
.service-card h3 { margin: 0 0 .15rem; }
.service-card__age { font-family: var(--font-head); font-weight: 600; color: var(--ink-soft); margin: 0 0 .7rem; font-size: .95rem; }
.service-card p:last-child { margin: 0; color: var(--ink-soft); }

.services__note { text-align: center; margin-top: 2rem; color: var(--ink-soft); }

/* Facilities */
.facility-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.facility {
  background: #fff; border-radius: var(--radius);
  padding: 1.4rem; text-align: left; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.facility:hover { border-color: #dccfbd; box-shadow: var(--shadow); }
.facility h3 { font-size: 1.08rem; margin: 0 0 .3rem; }
.facility p { margin: 0; color: var(--ink-soft); font-size: .95rem; }

.facility-photo {
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  max-width: 380px;
  background: #fff; padding: 10px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.facility-photo img { display: block; border-radius: 10px; width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.facility-photo figcaption { text-align: center; color: var(--ink-soft); font-family: var(--font-head); padding: .8rem .5rem .2rem; }

/* NCS */
.ncs { background: var(--cream-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ncs__inner { display: grid; grid-template-columns: 1.4fr .6fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.ncs__note { color: var(--ink-soft); font-size: .95rem; margin-top: 1rem; }
.ncs__badge {
  justify-self: center;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); border: 1px solid var(--line);
  width: 220px; height: 220px;
  display: grid; place-items: center; align-content: center; gap: .6rem;
  text-align: center; padding: 1rem;
}
.ncs__badge-icon { font-size: 3rem; color: var(--blue-dark); }
.ncs__badge-text { font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; color: var(--ink); line-height: 1.3; }

/* Location */
.location__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 4vw, 3rem); align-items: stretch; }
.location__info {
  background: #fff; border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.location__info h3 { font-size: 1.45rem; margin-bottom: .5rem; }
.location__address { font-size: 1.1rem; line-height: 1.7; margin-bottom: 1.3rem; }
.location__details { margin: 0 0 1.6rem; display: grid; gap: 1rem; }
.location__details dt { font-family: var(--font-head); font-weight: 600; color: var(--ink-soft); font-size: .88rem; text-transform: none; letter-spacing: 0; }
.location__details dd { margin: .1rem 0 0; font-size: 1.05rem; overflow-wrap: anywhere; }

.map-frame {
  position: relative; width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); border: 4px solid #fff;
  background: var(--cream-2);
}
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-fallback { margin-top: .9rem; font-size: .9rem; color: var(--ink-soft); text-align: center; }

/* Contact */
.contact__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 4vw, 3rem); align-items: start; }

.contact__info {
  background: #fff; border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.contact__list { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: 1.2rem; }
.contact__list li { display: flex; gap: .9rem; align-items: flex-start; }
.contact__list li > div { min-width: 0; }
.contact__icon { font-size: 1.2rem; flex: none; width: 1.6rem; text-align: center; line-height: 1.5; }
.contact__label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .88rem; text-transform: none; letter-spacing: 0; color: var(--ink-soft); }
.contact__list a { font-weight: 700; }
.contact__actions { display: flex; flex-wrap: wrap; gap: .6rem; }

.contact__form-wrap {
  background: #fff; border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.2rem);
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.form-intro { font-size: .9rem; color: var(--ink-soft); margin-bottom: 1.2rem; }
.req { color: var(--coral-dark); }

.field { margin-bottom: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; margin-bottom: .4rem; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem;
  min-height: 44px;
  padding: .75rem .9rem; border: 2px solid var(--line); border-radius: 10px;
  background: var(--cream); color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #6f6b76; opacity: 1; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); background: #fff;
  box-shadow: 0 0 0 3px rgba(42, 169, 224, .2);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] {
  border-color: var(--coral-dark); background: #fff5f5;
}
.field__error { color: var(--coral-dark); font-size: .88rem; font-weight: 700; margin: .4rem 0 0; }

/* reCAPTCHA widget: clip the fixed 304px box so it can never overflow the page;
   scale it down on narrow screens so it stays fully usable. */
.field--captcha { margin-bottom: 1.2rem; }
.captcha-box { overflow: hidden; }
.captcha-box .g-recaptcha { transform-origin: 0 0; }
@media (max-width: 430px) { .captcha-box .g-recaptcha { transform: scale(0.85); } }
@media (max-width: 345px) { .captcha-box .g-recaptcha { transform: scale(0.78); } }

.form-status { margin: 1rem 0 0; font-weight: 700; min-height: 1.2em; }
.form-status.is-error { color: var(--coral-dark); }
.form-status.is-ok { color: var(--green-dark); }

/* Footer */
.site-footer { background: var(--ink); color: #e9e6ef; padding: clamp(2.5rem, 5vw, 4rem) 0 1.5rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 2rem; }
.brand--footer .brand__name { color: #fff; }
.footer__tag { color: #b9b4c4; margin: .8rem 0 .4rem; }
.footer__ncs { color: var(--yellow); font-weight: 700; margin: 0; }
.footer__heading { font-family: var(--font-head); font-size: 1.05rem; color: #fff; margin: 0 0 .9rem; }
.footer__links ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.footer__links a, .footer__contact a { color: #e9e6ef; text-decoration: none; }
.footer__links a { white-space: nowrap; }
.footer__links a:hover, .footer__contact a:hover { color: var(--yellow); text-decoration: underline; }
.footer__contact address { line-height: 1.6; color: #cfcbd8; }

.footer__bottom {
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
  margin-top: 2.5rem; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,.12);
  font-size: .9rem; color: #b9b4c4;
}
.footer__bottom p { margin: 0; }
.footer__madeby a { color: #e9e6ef; font-weight: 700; text-decoration: underline; }
.footer__madeby a:hover { color: var(--yellow); }

/* Responsive */
/* Collapse the primary nav to a toggle before it can crowd the logo.
   Set wide enough that the longer translated labels still fit on desktop. */
@media (min-width: 1281px) {
  .nav-menu a { white-space: nowrap; }
}

@media (max-width: 1280px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: .25rem;
    background: var(--cream);
    padding: 1rem var(--gutter) 1.5rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    max-height: calc(100dvh - 72px);
    overflow-y: auto;
    transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: transform .2s ease, opacity .2s ease, visibility .2s;
  }
  .nav-menu.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-menu a { padding: .8rem .9rem; font-size: 1.1rem; }
  .nav-menu__cta { margin-top: .4rem; }
  .nav-menu__cta a { text-align: center; width: 100%; }
}

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 480px; justify-self: center; margin-inline: auto; }
  .hero__sub { max-width: none; }
  .about__grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .facility-grid { grid-template-columns: repeat(2, 1fr); }
  .ncs__inner { grid-template-columns: 1fr; }
  .ncs__badge { order: -1; }
  .location__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 1rem; }
  h1 { font-size: 2.35rem; }
  h2 { font-size: 1.85rem; }
  .hero__sub, .section-head__sub { font-size: 1.05rem; }
  .facts__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .field-row { grid-template-columns: 1fr; }
  .hero__actions .btn, .ncs__actions .btn, .contact__actions .btn { width: 100%; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.05rem; }
  h2 { font-size: 1.6rem; }
  .card-grid { grid-template-columns: 1fr; }
  .facility-grid { grid-template-columns: 1fr; }
  .about__stats { grid-template-columns: 1fr 1fr; }
  /* The logo artwork already reads "The Crayon Box", so drop the wordmark
     on the smallest screens to leave room for the language switcher. */
  .brand__name { display: none; }
}

@media (max-width: 380px) {
  .container { padding-inline: .9rem; }
  .brand__logo { width: 42px; height: 42px; }
  .lang-switch { padding-inline: .4rem; }
  .lang-switch__select { max-width: 6.8rem; font-size: .88rem; }
  .nav-toggle { width: 42px; height: 42px; padding: 9px; }
  .about__stats, .facts__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
