/* ============================================================
   ISBANBAN Foundation — design tokens
   ============================================================ */
:root {
  --blue-900: #08415C;
  --blue-700: #0177B9;
  --blue: #018EDE;
  --blue-light: #9FC2DE;
  --blue-sky: #00ABED;
  --blue-cta-bg: #CBEDFA;
  --blue-pale: #EAF6FC;

  --orange: #FF5528;
  --orange-dark: #E8451B;
  --green: #1A685B;

  --ink: #1F1F1F;
  --gray-700: #4B5563;
  --gray-500: #6B7280;
  --gray-300: #D1D5DB;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --bg-muted: #F6F6F6;
  --white: #FFFFFF;

  --font-body: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-script: "Caveat", cursive;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;

  --shadow-card: 0 10px 30px rgba(16, 24, 40, .06);
  --shadow-pop: 0 20px 45px rgba(16, 24, 40, .12);

  --container: 1240px;
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, p, ul, form { margin: 0; }
ul { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; background: none; border: none; }
input { font: inherit; }
svg { display: block; }

h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; }
h2 { font-size: clamp(1.7rem, 1.2rem + 2vw, 2.5rem); }
h3 { font-size: 1.15rem; }
h4 { font-size: 1.05rem; }

.text-muted { color: var(--gray-500); line-height: 1.7; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.icon { width: 20px; height: 20px; flex-shrink: 0; }
.icon--sm { width: 16px; height: 16px; }
.icon--lg { width: 32px; height: 32px; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: .95rem;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn--primary { background: var(--orange); color: var(--white); }
.btn--primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: var(--shadow-pop); }
.btn--sm { padding: 10px 20px; font-size: .85rem; }
.btn--nowrap { flex-shrink: 0; }

.btn-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--white);
  transition: transform .2s ease, background .2s ease;
}
.btn-circle:hover { transform: scale(1.08); background: #144f45; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-weight: 600;
  font-size: .9rem;
  margin-top: 16px;
}

/* ============================================================
   Top utility bar
   ============================================================ */
.topbar { background: var(--bg-muted); font-size: .85rem; }
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  gap: 16px;
}
.topbar__msg { display: flex; align-items: center; gap: 8px; color: var(--gray-700); }
.topbar__msg .icon { color: var(--orange); }
.topbar__right { display: flex; align-items: center; gap: 14px; color: var(--gray-700); }
.social-dot { display: inline-flex; color: var(--gray-700); transition: color .2s ease; }
.social-dot:hover { color: var(--orange); }

/* ============================================================
   Navbar
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  transition: box-shadow .25s ease, padding .25s ease;
}
.navbar.is-scrolled { box-shadow: 0 4px 20px rgba(16,24,40,.08); }
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
}

.logo__img { height: 46px; width: auto; display: block; }

.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-link { font-weight: 500; color: var(--gray-700); transition: color .2s ease; position: relative; }
.nav-link:hover, .nav-link.is-active { color: var(--orange); }

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(100deg, var(--blue) 0%, var(--blue-light) 100%);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  margin: 0 12px;
}
.hero__inner { position: relative; padding: 90px 24px 130px; z-index: 2; }

.hero__deco { position: absolute; pointer-events: none; }
.hero__deco--dots {
  top: 40px; left: 32px; width: 60px; height: 90px;
  background-image: radial-gradient(rgba(255,255,255,.7) 2px, transparent 2px);
  background-size: 14px 14px;
}
.hero__deco--rings { top: 30px; right: 40px; opacity: .9; }
.hero__deco--wave { bottom: 10px; left: 0; width: 160px; height: 100px; }
.hero__deco--heart { bottom: 70px; right: 220px; width: 26px; height: 26px; }
.hero__deco--handheart { bottom: 20px; right: 60px; width: 70px; height: 70px; opacity: .85; }

.slide__eyebrow {
  font-family: var(--font-script);
  color: var(--orange);
  font-size: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.slide__eyebrow .eyebrow__line { background: var(--orange); }

.slide__heading {
  color: var(--white);
  font-size: clamp(2rem, 1.3rem + 3vw, 3.2rem);
  max-width: 700px;
}
.slide__text {
  margin-top: 18px;
  max-width: 520px;
  color: rgba(20, 30, 40, .75);
  font-size: 1rem;
  line-height: 1.7;
}
.slide__actions { margin-top: 34px; display: flex; align-items: center; gap: 18px; }

.hero__slides { position: relative; min-height: 300px; }
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
  pointer-events: none;
}
.slide.is-active { position: relative; opacity: 1; transform: translateY(0); pointer-events: auto; }

.hero__pager {
  position: absolute;
  right: 24px;
  top: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.85);
  padding: 14px 10px;
  border-radius: var(--radius-full);
  z-index: 3;
}
.pager-arrow {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--gray-700);
  transition: background .2s ease, color .2s ease;
}
.pager-arrow:hover { background: var(--orange); color: var(--white); }
.pager-count { font-weight: 600; font-size: .8rem; text-align: center; color: var(--orange); writing-mode: vertical-rl; }
.pager-count__divider { display: block; width: 1px; height: 16px; background: var(--gray-300); margin: 4px auto; }

/* ============================================================
   Section shell
   ============================================================ */
.section { position: relative; padding: 100px 0; }
.section--tight { padding: 60px 0; }
.section--muted { background: var(--bg-muted); }

.section__head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section__head--split {
  max-width: none; margin: 0 0 48px; text-align: left;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.section__head--split h2 { max-width: 640px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-script);
  color: var(--orange);
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.eyebrow__line { width: 32px; height: 2px; background: var(--orange); display: inline-block; }
.eyebrow--onblue { color: var(--white); }
.eyebrow--onblue .eyebrow__line { background: var(--white); }

.section-label {
  text-align: center;
  color: var(--gray-700);
  font-weight: 600;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.section-label span { flex: 1; height: 1px; background: var(--gray-200); }

/* ============================================================
   Feature cards (impact section)
   ============================================================ */
.deco-hands { position: absolute; left: 0; top: 40%; opacity: .5; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature-card:hover, .feature-card.is-active {
  box-shadow: var(--shadow-card);
  transform: translateY(-6px);
  border-color: transparent;
}
.feature-card__icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px dashed var(--orange);
  color: var(--orange);
  transition: background .25s ease, color .25s ease, border-style .25s ease;
}
.feature-card:hover .feature-card__icon, .feature-card.is-active .feature-card__icon {
  background: var(--orange);
  color: var(--white);
  border-style: solid;
}
.feature-card__icon svg { width: 28px; height: 28px; }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { color: var(--gray-500); font-size: .9rem; line-height: 1.7; }

/* ============================================================
   Marquee
   ============================================================ */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 22px 0;
  white-space: nowrap;
}
.marquee__track { display: inline-flex; align-items: center; animation: marquee 26s linear infinite; }
.marquee__item {
  font-size: clamp(1.4rem, 1rem + 2vw, 2.4rem);
  font-weight: 800;
  color: var(--ink);
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
}
.marquee__item.is-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--orange);
}
.marquee__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   About
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.deco-fade-hands { position: absolute; right: 0; top: -20px; width: 260px; opacity: .5; z-index: 0; }

.about__gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 16px;
  z-index: 1;
}
.about__stack { display: grid; gap: 16px; }
.ph-box {
  background: linear-gradient(135deg, #D9D9D9, #C7C7C7);
  border-radius: var(--radius-md);
}
.ph-box--sm { height: 140px; }
.ph-box--tall { height: 300px; align-self: center; }

.stat-badge {
  position: absolute;
  bottom: -24px;
  right: -16px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-pop);
}
.stat-badge__num { font-size: 2rem; font-weight: 800; }
.stat-badge__label { font-size: .8rem; font-weight: 600; line-height: 1.3; }

.about__content h2 { margin-bottom: 16px; }
.about__content > .text-muted { margin-bottom: 28px; }

.feature-row { display: flex; gap: 16px; margin-bottom: 22px; }
.feature-row__icon {
  width: 46px; height: 46px;
  border-radius: var(--radius-sm);
  background: var(--orange);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-row__icon svg { width: 22px; height: 22px; }
.feature-row h4 { margin-bottom: 4px; }
.feature-row p { font-size: .9rem; }

.about__content .btn { margin-top: 12px; }

/* ============================================================
   Campaign / donation cards
   ============================================================ */
.campaign-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.campaign-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.campaign-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.campaign-card.is-featured { border-color: var(--orange); }
.campaign-card__image { height: 190px; margin: 0; border-radius: 0; }
.campaign-card__body { padding: 22px; }
.campaign-card__body h3 { margin-bottom: 16px; min-height: 56px; }

.donation-box { background: var(--bg-muted); border-radius: var(--radius-sm); padding: 16px; margin-bottom: 16px; }
.donation-box__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.donation-box__head span:first-child { font-size: .85rem; color: var(--gray-700); font-weight: 500; }
.donation-box__pct {
  background: var(--blue);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--radius-full);
}
.campaign-card.is-featured .donation-box__pct { background: var(--orange); }

.progress-track { height: 6px; border-radius: var(--radius-full); background: var(--gray-200); overflow: hidden; margin-bottom: 12px; }
.progress-fill { height: 100%; width: 0%; border-radius: var(--radius-full); background: var(--blue); transition: width 1.1s cubic-bezier(.22,.9,.32,1); }
.campaign-card.is-featured .progress-fill { background: var(--orange); }

.donation-box__meta { display: flex; align-items: center; justify-content: space-between; font-size: .82rem; }
.donation-box__meta .raised { color: var(--gray-700); font-weight: 500; }
.donation-box__meta .goal { color: var(--blue); font-weight: 600; }
.campaign-card.is-featured .donation-box__meta .goal { color: var(--orange); }

.campaign-card .btn { width: 100%; justify-content: center; background: var(--blue); }
.campaign-card.is-featured .btn { background: var(--orange); }
.campaign-card .btn:hover { background: var(--blue-700); }
.campaign-card.is-featured .btn:hover { background: var(--orange-dark); }

.deco-hand-left, .deco-hand-right { position: absolute; width: 40px; height: 40px; opacity: .8; }
.deco-hand-left { bottom: 30px; left: 30px; transform: rotate(-15deg); }
.deco-hand-right { bottom: 20px; right: 40px; transform: rotate(20deg) scaleX(-1); }

/* ============================================================
   Logo rows (media / partners)
   ============================================================ */
.logo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}
.media-extra { text-align: center; color: var(--gray-500); font-size: .85rem; margin-bottom: 56px; }
.media-extra a { color: var(--blue); font-weight: 600; }
.media-extra a:hover { text-decoration: underline; }
.logo-img {
  height: 42px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  transition: transform .2s ease;
}
.logo-img--boxed { height: 56px; border-radius: 8px; }
.logo-img:hover { transform: translateY(-3px); }

/* ============================================================
   CTA box
   ============================================================ */
.cta-box {
  position: relative;
  background: var(--blue-cta-bg);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.cta-box h2 { max-width: 620px; margin: 0 auto 28px; }
.cta-box__heart { position: absolute; top: 30px; right: 40px; width: 22px; height: 22px; }

/* ============================================================
   Testimonial
   ============================================================ */
.testimonial {
  position: relative;
  overflow: hidden;
  background: var(--blue-sky);
  border-radius: var(--radius-lg);
  margin: 0 12px;
  color: var(--white);
}
.testimonial__splash { position: absolute; left: 0; bottom: 0; width: 240px; height: 240px; }
.testimonial__inner {
  position: relative;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 56px;
  align-items: center;
  padding: 80px 24px;
}
.testimonial__photo { height: 320px; background: linear-gradient(135deg, #cfd8dc, #b0bec5); }
.testimonial__content h2 { margin-bottom: 24px; color: var(--white); }

.testi-name { font-weight: 700; font-size: 1.1rem; margin-bottom: 12px; }
.testi-quote { line-height: 1.8; opacity: .95; max-width: 560px; }

.testimonial__controls { display: flex; align-items: center; gap: 24px; margin-top: 36px; }
.pager-count--onblue span:not(.pager-count__divider) { color: var(--white); }
.pager-count--onblue .pager-count__divider { background: rgba(255,255,255,.4); }
.pager-arrows { display: flex; gap: 10px; }
.pager-arrow--onblue { background: rgba(255,255,255,.15); color: var(--white); }
.pager-arrow--onblue:hover { background: var(--orange); }

/* ============================================================
   Gallery
   ============================================================ */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.gallery__item {
  display: block;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(1, 142, 222, 0);
  transition: background .25s ease;
}
.gallery__item:hover::after { background: rgba(1, 142, 222, .15); }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  position: relative;
  overflow: hidden;
  background: var(--blue-sky);
  color: var(--white);
  padding-top: 56px;
  margin: 0 12px 12px;
  border-radius: var(--radius-lg);
}
.footer__splash { position: absolute; left: 0; bottom: 0; width: 200px; }
.footer__sparkles { position: absolute; right: 0; bottom: 40px; width: 140px; }

.footer__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.25);
}
.contact-item { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 220px; }
.contact-item__icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item small { display: block; opacity: .8; font-size: .78rem; margin-bottom: 2px; }
.contact-item a { font-weight: 600; }

.footer__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  padding: 44px 0;
}
.logo--onwhite { display: inline-block; background: var(--white); padding: 10px 16px; border-radius: var(--radius-sm); margin-bottom: 18px; }
.footer__brand .text-muted { color: rgba(255,255,255,.8); margin-bottom: 18px; }
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.social-row a:hover { background: var(--orange); }

.footer__links h4, .footer__newsletter h4 { margin-bottom: 14px; position: relative; padding-bottom: 12px; }
.footer__links h4::after, .footer__newsletter h4::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 40px; height: 3px; background: var(--orange); border-radius: 2px;
}
.footer__links li { margin-bottom: 12px; }
.footer__links a { display: flex; align-items: center; gap: 8px; font-size: .92rem; opacity: .9; transition: opacity .2s ease, gap .2s ease; }
.footer__links a:hover { opacity: 1; gap: 12px; }

.footer__newsletter .text-muted { color: rgba(255,255,255,.8); margin-bottom: 18px; font-size: .92rem; }
.footer__newsletter form { display: flex; background: var(--white); border-radius: var(--radius-full); padding: 4px; }
.footer__newsletter input {
  flex: 1; border: none; outline: none; background: transparent;
  padding: 10px 16px; font-size: .9rem; color: var(--ink); min-width: 0;
}
.footer__newsletter button {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .2s ease;
}
.footer__newsletter button:hover { background: var(--orange-dark); }
.form-msg { min-height: 20px; margin-top: 10px; font-size: .82rem; }
.form-msg.is-success { color: #B9F6CA; }
.form-msg.is-error { color: #FFCDD2; }

.footer__bottom {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.25);
  font-size: .85rem;
}
.footer__bottom-links { display: flex; gap: 24px; opacity: .9; }
.footer__bottom-links a:hover { text-decoration: underline; }

/* ============================================================
   Video modal
   ============================================================ */
.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; }
.modal.is-open { display: flex; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(15,20,25,.65); }
.modal__panel {
  position: relative;
  background: #000;
  border-radius: var(--radius-md);
  width: min(900px, 90vw);
  overflow: hidden;
}
.modal__video-wrap { position: relative; width: 100%; aspect-ratio: 16/9; }
.modal__video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.modal__footer { padding: 10px 16px; text-align: right; background: #111; }
.modal__footer a { color: rgba(255,255,255,.75); font-size: .85rem; font-weight: 500; }
.modal__footer a:hover { color: #fff; }
.modal__close {
  position: absolute; top: -18px; right: -18px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--white); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-card);
  z-index: 1;
}

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { transition: opacity .7s ease, transform .7s ease; }
.reveal.reveal-armed { opacity: 0; transform: translateY(24px); }
.reveal.reveal-armed.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .campaign-grid { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; }
  .about__gallery { max-width: 480px; margin: 0 auto; }
  .testimonial__inner { grid-template-columns: 1fr; }
  .testimonial__photo { height: 260px; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .topbar__msg span:last-child, .topbar__msg { font-size: .78rem; }
  .nav-menu {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column; align-items: stretch;
    padding: 12px 24px 20px;
    gap: 4px;
    box-shadow: 0 12px 24px rgba(16,24,40,.08);
    display: none;
  }
  .nav-menu.is-open { display: flex; }
  .nav-link { padding: 12px 0; border-bottom: 1px solid var(--gray-100); }
  .hamburger { display: flex; }
  .navbar__actions .btn--sm span { display: none; }

  .hero__pager { position: static; flex-direction: row; margin-top: 30px; width: fit-content; }
  .pager-count { writing-mode: horizontal-tb; display: flex; align-items: center; }
  .pager-count__divider { width: 16px; height: 1px; margin: 0 6px; }

  .section { padding: 64px 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .campaign-grid { grid-template-columns: 1fr; }
  .section__head--split { flex-direction: column; align-items: flex-start; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
  .footer__contact { flex-direction: column; }
  .deco-hand-left, .deco-hand-right, .deco-fade-hands, .deco-hands { display: none; }
}

@media (max-width: 480px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .cta-box { padding: 40px 22px; }
}
