/* ═══════════════════════════════════════════
   QALA Early Learning Center — Shared Stylesheet
   DA34B, DA Block, Salt Lake City, Kolkata 700064
   info@qalaelc.com
   ═══════════════════════════════════════════ */

/* Fonts — loaded from Google Fonts (can be self-hosted: run fonts/download-fonts.ps1) */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&family=Nunito:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ─── TOKENS ─── */
:root {
  --forest: #8B5E3C;
  --forest2: #A67850;
  --clay: #C4714A;
  --clay-lt: #F5E5DC;
  --cream: #FBF7F0;
  --sand: #F0E8DA;
  --sand2: #E8DDD0;
  --sage: #7BBFB5;
  --sage-lt: #D4EFEC;
  --ink: #5C3A1E;
  --mid: #8B6B4A;
  --pale: #B09880;
  --white: #FFFFFF;
  --bark-deep: #6B4423;
  --bark-pale: #EDD9C0;
  --bark-lt: #C9A97A;
  --amber: #D4A017;
  --amber-lt: #FDE68A;
  --olive: #8DAA6E;
  --olive-lt: #DDE8CC;
  --footer-bg: #DFC5A0;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.serif {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
}

.italic {
  font-style: italic;
}

/* ─── NAV ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(251, 247, 240, 0.96);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom: 2px solid var(--sand2);
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  letter-spacing: .04em;
  color: var(--forest);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 74px;
  width: auto;
  display: block;
  transition: opacity .2s;
  mix-blend-mode: multiply;
}

.nav-logo img:hover {
  opacity: .88;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}

nav ul a {
  text-decoration: none;
  font-family: 'Baloo 2', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--mid);
  transition: color .2s;
}

nav ul a:hover,
nav ul a.active {
  color: var(--forest);
}

.nav-cta {
  background: var(--forest) !important;
  color: white !important;
  padding: 9px 22px !important;
  border-radius: 100px;
  box-shadow: 0 3px 0 var(--bark-deep) !important;
  transition: all .2s !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 0 var(--bark-deep) !important;
}

/* ─── HAMBURGER ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: all .3s;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(250, 247, 242, 0.98);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--sand);
  padding: 24px 6% 32px;
  z-index: 199;
  display: flex;
  flex-direction: column;
  gap: 0;
  /* iOS-safe show/hide: opacity+pointer-events instead of display:none */
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
  -webkit-transform: translateY(-8px);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  transition: opacity .22s ease, transform .22s ease, visibility 0s linear 0s;
}

.mobile-menu a {
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  color: var(--mid);
  padding: 14px 0;
  border-bottom: 1px solid var(--sand);
  display: block;
  transition: color .2s;
}

.mobile-menu a:hover {
  color: var(--forest);
}

.mobile-menu .mobile-cta {
  margin-top: 20px;
  background: var(--forest);
  color: white !important;
  text-align: center;
  border-radius: 50px;
  border: none;
  padding: 15px !important;
  font-size: 16px !important;
}

/* ─── LAYOUT.JS NAV HAMBURGER ─── */
.nav-hbg {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hbg span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--forest);
  border-radius: 3px;
  transition: all .3s;
}

.nav-hbg.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-hbg.open span:nth-child(2) { opacity: 0; }
.nav-hbg.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ─── LAYOUT.JS MOBILE MENU ─── */
.mob-menu {
  display: none;
  position: fixed;
  top: 84px;
  left: 0;
  right: 0;
  z-index: 199;
  background: rgba(251, 247, 240, 0.98);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--sand2);
  padding: 18px 6% 26px;
}

.mob-menu.open {
  display: flex;
  flex-direction: column;
}

.mob-menu a {
  font-family: 'Baloo 2', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--bark-deep);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1.5px solid var(--sand2);
}

.mob-menu a:last-child { border-bottom: none; }

.mob-cta {
  margin-top: 14px !important;
  background: var(--forest) !important;
  color: white !important;
  padding: 14px !important;
  border-radius: 100px;
  text-align: center;
  border-bottom: none !important;
}

/* ─── HERO ─── */
.hero {
  /* 100vh fix for iOS Safari — address bar causes 100vh to be too tall.
     Stack: svh (small viewport = stable), dvh (dynamic), fallback 100vh */
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  overflow: hidden;
}

.hero-left {
  padding: 100px 7% 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 28px;
}

.hero-kicker::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--clay);
}

.hero h1 {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: clamp(46px, 5.2vw, 72px);
  line-height: 1.06;
  color: var(--bark-deep);
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: italic;
  color: var(--clay);
}

.hero-body {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 56px;
}

.btn-dark {
  background: var(--forest);
  color: white;
  padding: 14px 30px;
  border-radius: 100px;
  font-family: 'Baloo 2', sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: all .22s;
  display: inline-block;
  box-shadow: 0 4px 0 var(--bark-deep);
}

.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--bark-deep);
}

.btn-link {
  font-family: 'Baloo 2', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--mid);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}

.btn-link:hover {
  color: var(--forest);
}

.btn-link::after {
  content: '→';
}

.hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.htag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .3px;
  background: var(--sage-lt);
  color: var(--forest2);
  border: 1px solid #C0DDCF;
  padding: 6px 16px;
  border-radius: 50px;
}

.hero-right {
  background: var(--forest);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding-top: 60px;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .06;
  background-image: radial-gradient(circle, white 1.5px, transparent 1.5px);
  background-size: 32px 32px;
}

.hero-quote-block {
  position: relative;
  z-index: 2;
  padding: 56px 10%;
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: auto;
}

.hero-quote {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 34px);
  color: rgba(255, 255, 255, .9);
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-quote-attr {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
}

.hero-big-Q {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'DM Serif Display', serif;
  font-size: clamp(160px, 22vw, 300px);
  color: rgba(255, 255, 255, .04);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  letter-spacing: -.02em;
}

.hero-cards {
  position: relative;
  width: 240px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: auto;
}

.hcard {
  background: white;
  border: 2px solid var(--sand2);
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: 0 3px 0 var(--sand2);
  transition: all .22s;
}

.hcard:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 0 var(--sand2);
}

.hcard-num {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--forest);
  line-height: 1;
}

.hcard-label {
  font-size: 12px;
  color: var(--pale);
  margin-top: 4px;
  font-weight: 600;
}

.hcard-highlight {
  border-color: var(--bark-lt);
  background: var(--bark-pale);
}

/* ─── PAGE HERO (interior pages) ─── */
.page-hero {
  background: var(--forest);
  padding: 80px 6% 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .06;
  background-image: radial-gradient(circle, white 1.5px, transparent 1.5px);
  background-size: 32px 32px;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.page-hero .kicker {
  color: rgba(255, 255, 255, .4);
}

.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.08;
  color: white;
  margin-bottom: 20px;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--clay);
}

.page-hero p {
  font-size: 17px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.8;
}

/* ─── STRIP ─── */
.strip {
  background: var(--forest);
  padding: 14px 6%;
  display: flex;
  gap: 48px;
  align-items: center;
  overflow-x: auto;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.strip-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .38);
  flex-shrink: 0;
}

.strip-text {
  font-family: 'Baloo 2', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, .92);
}

/* ─── SECTION COMMON ─── */
.sec {
  padding: 100px 6%;
}

.sec-alt {
  background: white;
}

.sec-dark {
  background: var(--forest);
}

.sec-sand {
  background: var(--sand);
}

.sec-clay-lt {
  background: var(--clay-lt);
}

.kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 14px;
  display: block;
}

.kicker-light {
  color: rgba(255, 255, 255, .45);
}

.sec-title {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3.5vw, 46px);
  line-height: 1.15;
  color: var(--bark-deep);
  margin-bottom: 20px;
}

.sec-title-light {
  color: white;
}

.sec-body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--mid);
  max-width: 540px;
  margin-bottom: 56px;
}

.sec-body-light {
  color: rgba(255, 255, 255, .6);
}

/* ─── FOUNDERS ─── */
#founders .inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 100px;
  align-items: center;
}

.founders-visual {
  position: relative;
}

.founders-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  max-height: 480px;
  border-radius: 24px;
  background: linear-gradient(160deg, var(--sage-lt) 0%, var(--sand) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.founders-tag {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--clay);
  color: white;
  padding: 18px 24px;
  border-radius: 16px;
  font-family: 'DM Serif Display', serif;
  font-size: 17px;
  line-height: 1.4;
  max-width: 200px;
  box-shadow: 0 12px 36px rgba(196, 113, 74, .2);
}

.founders-content blockquote {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(24px, 2.5vw, 34px);
  color: var(--forest);
  line-height: 1.35;
  border-left: 3px solid var(--clay);
  padding-left: 28px;
  margin-bottom: 32px;
}

.founders-content p {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 16px;
}

.founders-sig {
  margin-top: 32px;
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--forest);
}

.founders-sig span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-size: 12px;
  color: var(--pale);
  margin-top: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ─── PHILOSOPHY ─── */
#philosophy .pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--sand2);
  border-radius: 20px;
  overflow: hidden;
}

.pillar-box {
  padding: 40px 32px;
  background: white;
  border: 2px solid var(--sand2);
  border-radius: 24px;
  transition: all .28s;
  position: relative;
  box-shadow: 0 3px 0 var(--sand2);
}

.pillar-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 9px 0 var(--sand2);
  border-color: var(--bark-lt);
}

.pillar-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sage);
  opacity: 0;
  transition: opacity .2s;
}

.pillar-box:hover::before {
  opacity: 1;
}

.pillar-num {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  color: var(--sand2);
  line-height: 1;
  margin-bottom: 20px;
}

.pillar-box h3 {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--bark-deep);
  margin-bottom: 10px;
  line-height: 1.2;
}

.pillar-box p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 14px;
}

.pillar-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.method-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--forest2);
  background: var(--sage-lt);
  border: 1px solid #C0DDCF;
  padding: 5px 14px;
  border-radius: 50px;
}

/* ─── PROGRAMS ─── */
#programs .prog-tabs {
  display: flex;
  gap: 0;
  border: 1px solid var(--sand2);
  border-radius: 14px;
  overflow: hidden;
  max-width: 480px;
  margin-bottom: 48px;
}

.ptab {
  flex: 1;
  padding: 14px 28px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  background: white;
  color: var(--mid);
  border: none;
  transition: all .2s;
}

.ptab.active {
  background: var(--forest);
  color: white;
}

.prog-content {
  display: none;
}

.prog-content.active {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: start;
}

.prog-left h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: var(--forest);
  margin-bottom: 16px;
}

.prog-left>p {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 36px;
}

.dev-block {
  margin-bottom: 28px;
}

.dev-block h4 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--clay);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.dev-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.dev-block ul li {
  font-size: 15px;
  color: var(--mid);
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.dev-block ul li::before {
  content: '—';
  color: var(--sage);
  flex-shrink: 0;
  font-size: 13px;
}

.prog-right {
  background: var(--forest);
  border-radius: 24px;
  padding: 44px 38px;
  position: sticky;
  top: 100px;
}

.prog-right h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: white;
  margin-bottom: 28px;
}

.prog-detail {
  margin-bottom: 20px;
}

.prog-detail-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .35);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.prog-detail-val {
  font-size: 16px;
  color: white;
  font-weight: 400;
}

.prog-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin: 24px 0;
}

.prog-promise {
  font-family: 'Nunito', sans-serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.62;
}

/* ─── A DAY ─── */
#day {
  background: var(--forest);
}

.day-flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
  margin-top: 16px;
}

.day-flow::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: rgba(255, 255, 255, .12);
  z-index: 0;
}

.day-step {
  padding: 0 12px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.day-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px;
  transition: background .2s;
}

.day-step:hover .day-dot {
  background: rgba(255, 255, 255, .22);
  border-color: rgba(255, 255, 255, .38);
  transform: scale(1.08) translateY(-4px);
}

.day-time {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, .3);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.day-step h4 {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: white;
  margin-bottom: 6px;
}

.day-step p {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.6;
}

/* ─── TEACHERS ─── */
#teachers .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

#teachers h2.sec-title {
  margin-bottom: 20px;
}

.teacher-pillars {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 40px;
}

.teacher-pillar {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  border-radius: 14px;
  background: var(--cream);
  border: 1px solid var(--sand);
  transition: border-color .2s;
}

.teacher-pillar:hover {
  border-color: var(--sage);
}

.teacher-pillar-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--sage-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.teacher-pillar h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 5px;
}

.teacher-pillar p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.65;
}

.teacher-right {
  background: var(--clay);
  border-radius: 28px;
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
}

.teacher-right::before {
  content: '"';
  position: absolute;
  top: -20px;
  right: 24px;
  font-family: 'Baloo 2', sans-serif;
  font-size: 200px;
  color: rgba(255, 255, 255, .07);
  line-height: 1;
}

.teacher-right p {
  font-style: italic;
  font-size: clamp(15px, 1.8vw, 21px);
  color: white;
  line-height: 1.62;
  position: relative;
  z-index: 1;
}

.teacher-right .attr {
  font-family: 'Baloo 2', sans-serif;
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, .44);
  margin-top: 18px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

/* ─── PHOTO GALLERY ─── */
#gallery {
  background: var(--cream);
}

.gallery-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 32px;
  flex-wrap: wrap;
}

.gallery-intro-text {
  max-width: 500px;
}

.gallery-upload-hint {
  font-size: 12px;
  color: var(--pale);
  border: 1px dashed var(--sand2);
  border-radius: 10px;
  padding: 10px 18px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 14px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: var(--sand);
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .12);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--pale);
  font-size: 13px;
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, var(--amber-lt), var(--sage-lt));
}

.gallery-placeholder-icon {
  font-size: 34px;
  opacity: .7;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 74, 66, .7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-label {
  font-size: 13px;
  color: white;
  font-weight: 500;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(0, 0, 0, .9);
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 12px;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 32px;
  color: white;
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
  opacity: .7;
  transition: opacity .2s;
}

.lightbox-close:hover {
  opacity: 1;
}

/* ─── TESTIMONIALS ─── */
#testimonials {
  background: var(--forest);
  overflow: hidden;
}

.testimonials-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 20px;
}

.testi-scroll-wrap {
  overflow: hidden;
  position: relative;
}

.testi-track {
  display: flex;
  gap: 24px;
  animation: scrollTesti 40s linear infinite;
  width: max-content;
}

.testi-track:hover {
  animation-play-state: paused;
}

@keyframes scrollTesti {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.testi-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  padding: 32px 36px;
  width: 360px;
  flex-shrink: 0;
  transition: background .3s;
}

.testi-card:hover {
  background: rgba(255, 255, 255, .11);
}

.testi-stars {
  color: #F5C842;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testi-text {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 17px;
  color: rgba(255, 255, 255, .85);
  line-height: 1.65;
  margin-bottom: 22px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.testi-name {
  font-size: 14px;
  font-weight: 600;
  color: white;
}

.testi-role {
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
  margin-top: 2px;
}

.testi-static-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

/* ─── NOTICES BOARD ─── */
#notices {
  background: var(--clay-lt);
}

.notices-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}

.notices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.notice-card {
  background: white;
  border-radius: 18px;
  padding: 30px 28px;
  border: 1px solid var(--sand2);
  border-top: 4px solid var(--clay);
  transition: transform .2s, box-shadow .2s;
  position: relative;
}

.notice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(196, 113, 74, .1);
}

.notice-card.notice-important {
  border-top-color: var(--forest);
}

.notice-card.notice-event {
  border-top-color: var(--sage);
}

.notice-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.notice-badge.general {
  background: var(--clay-lt);
  color: var(--clay);
}

.notice-badge.important {
  background: var(--sage-lt);
  color: var(--forest);
}

.notice-badge.event {
  background: var(--sage-lt);
  color: var(--forest2);
}

.notice-date {
  font-size: 11px;
  color: var(--pale);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.notice-card h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 10px;
  line-height: 1.3;
}

.notice-card p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
}

.notices-add-hint {
  margin-top: 32px;
  text-align: center;
  font-size: 13px;
  color: var(--pale);
  border: 1px dashed var(--sand2);
  border-radius: 12px;
  padding: 18px;
}

/* ─── BLOG ─── */
#blog {
  background: white;
}

.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 20px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid var(--sand2);
  background: white;
  transition: all .28s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  box-shadow: 0 3px 0 var(--sand2);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 9px 0 var(--sand2);
  border-color: var(--bark-lt);
}

.blog-card-img {
  height: 200px;
  background: var(--sage-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.blog-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 10px;
  display: block;
}

.blog-card h3 {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 16.5px;
  color: var(--bark-deep);
  line-height: 1.35;
  margin-bottom: 10px;
}

.blog-card p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.75;
  flex: 1;
}

.blog-meta {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-date {
  font-size: 12px;
  color: var(--pale);
}

.blog-read {
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-read::after {
  content: '→';
  transition: transform .2s;
}

.blog-card:hover .blog-read::after {
  transform: translateX(4px);
}

/* Blog card image area (emoji placeholder + real image support) */
.blog-img {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  position: relative;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.blog-img.c1 { background: linear-gradient(135deg, var(--sage-lt), var(--olive-lt)); }
.blog-img.c2 { background: linear-gradient(135deg, var(--amber-lt), var(--bark-pale)); }
.blog-img.c3 { background: linear-gradient(135deg, var(--olive-lt), var(--clay-lt)); }

.blog-body {
  padding: 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ─── ADMISSIONS ─── */
#admissions {
  background: var(--cream);
}

.adm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.adm-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
}

.adm-step {
  display: flex;
  gap: 22px;
  position: relative;
  padding-bottom: 36px;
}

.adm-step:last-child {
  padding-bottom: 0;
}

.adm-step:last-child .adm-line {
  display: none;
}

.adm-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.adm-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--forest);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Baloo 2', sans-serif;
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 3px 0 var(--bark-deep);
}

.adm-line {
  flex: 1;
  width: 1px;
  background: var(--sand2);
  margin-top: 6px;
}

.adm-step-body {
  padding-top: 8px;
}

.adm-step-body h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 6px;
}

.adm-step-body p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
}

.adm-right {
  background: var(--forest);
  border-radius: 24px;
  padding: 44px 40px;
  position: sticky;
  top: 100px;
}

.adm-right h3 {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 21px;
  color: white;
  margin-bottom: 8px;
}

.adm-right-sub {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .42);
  margin-bottom: 28px;
  line-height: 1.62;
}

/* ─── CONTACT FORM (self-hosted, mailto) ─── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  color: white;
  outline: none;
  transition: border-color .2s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, .3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(196, 113, 74, .6);
}

.form-group select option {
  background: var(--forest);
  color: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  background: var(--clay);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: 'Baloo 2', sans-serif;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: all .22s;
  box-shadow: 0 4px 0 #8B3E28;
  margin-top: 6px;
  width: 100%;
}

.form-submit:hover {
  opacity: .88;
}

.form-or {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, .3);
  margin: 4px 0;
}

.form-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: white;
  border: none;
  padding: 13px 28px;
  border-radius: 100px;
  font-family: 'Baloo 2', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .2s;
  text-decoration: none;
  width: 100%;
}

.form-wa:hover {
  opacity: .9;
}

/* ─── LOCATION ─── */
#location {
  background: var(--sand);
}

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.location-detail-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--sand2);
}

.location-detail-item:last-child {
  border-bottom: none;
}

.location-detail-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--forest);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.location-detail-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pale);
  margin-bottom: 5px;
}

.location-detail-val {
  font-size: 15px;
  color: var(--forest);
  font-weight: 500;
  line-height: 1.5;
}

.location-detail-val a {
  color: var(--forest);
}

.map-frame-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--sand2);
  height: 400px;
}

.map-frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ─── PARENT COMMS ─── */
#comms {
  background: var(--sand);
}

.comms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
}

.comm-card {
  background: white;
  border-radius: 18px;
  padding: 34px 28px;
  border: 1px solid var(--sand2);
  transition: transform .2s, border-color .2s;
}

.comm-card:hover {
  transform: translateY(-5px);
  border-color: var(--sage);
}

.comm-ico {
  font-size: 28px;
  margin-bottom: 18px;
  display: block;
}

.comm-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 8px;
}

.comm-card p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
}

/* ─── FAQ ─── */
#faq {
  background: white;
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--sand);
  overflow: hidden;
}

.faq-q {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--forest);
  transition: color .2s;
}

.faq-q:hover {
  color: var(--clay);
}

.faq-ico {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border: 1px solid var(--sand2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--mid);
  transition: transform .3s, background .2s;
}

.faq-item.open .faq-ico {
  transform: rotate(45deg);
  background: var(--forest);
  color: white;
  border-color: var(--forest);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}

.faq-a-inner {
  padding: 0 0 22px;
  font-size: 15px;
  color: var(--mid);
  line-height: 1.8;
}

.faq-item.open .faq-a {
  max-height: 300px;
}

/* ─── CTA SECTION ─── */
.cta-section {
  background: linear-gradient(148deg, var(--bark-deep), var(--forest));
  padding: 80px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-section h2 {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3vw, 42px);
  color: white;
  line-height: 1.2;
}

.cta-section p {
  font-size: 16px;
  color: rgba(255, 255, 255, .65);
  margin-top: 10px;
  max-width: 480px;
}

.btn-white {
  background: white;
  color: var(--forest);
  padding: 14px 30px;
  border-radius: 100px;
  font-family: 'Baloo 2', sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: all .22s;
  white-space: nowrap;
  display: inline-block;
  box-shadow: 0 4px 0 var(--bark-deep);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--bark-deep);
}

/* ─── FOOTER ─── */
footer {
  background: var(--footer-bg);
  padding: 68px 6% 30px;
}

.foot-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 56px;
  margin-bottom: 64px;
}

.foot-logo {
  height: 60px;
  width: auto;
  display: block;
  margin-bottom: 11px;
  mix-blend-mode: multiply;
}

.foot-tagline {
  font-family: 'Baloo 2', sans-serif;
  font-size: 13.5px;
  color: var(--bark-deep);
  margin-bottom: 13px;
  font-style: italic;
  opacity: .7;
}

.foot-desc {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.84;
  max-width: 220px;
  opacity: .82;
}

.foot-col h5 {
  font-size: 9.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--bark-deep);
  margin-bottom: 13px;
  font-weight: 700;
  font-family: 'Baloo 2', sans-serif;
  opacity: .6;
}

.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.foot-col ul a {
  font-size: 13px;
  color: var(--bark-deep);
  text-decoration: none;
  transition: color .2s;
  font-weight: 600;
  opacity: .72;
}

.foot-col ul a:hover {
  color: var(--forest);
  opacity: 1;
}

.foot-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  align-items: flex-start;
}

.foot-contact-item span:first-child {
  color: var(--clay);
  font-size: 14px;
  flex-shrink: 0;
  opacity: .85;
}

.foot-contact-item span:last-child {
  font-size: 12.5px;
  color: var(--bark-deep);
  line-height: 1.58;
  opacity: .72;
}

.foot-contact-item a {
  color: var(--bark-deep);
  text-decoration: none;
  opacity: .72;
}

.foot-contact-item a:hover {
  color: var(--forest);
  opacity: 1;
}

/* layout.js footer contact (SVG icons) */
.foot-contact {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  align-items: flex-start;
}

.foot-contact-ico {
  flex-shrink: 0;
  margin-top: 1px;
  opacity: .85;
}

.foot-contact span {
  font-size: 12.5px;
  color: var(--bark-deep);
  line-height: 1.58;
  opacity: .72;
}

.foot-contact a {
  color: var(--bark-deep);
  text-decoration: none;
  opacity: .72;
}

.foot-contact a:hover {
  color: var(--forest);
  opacity: 1;
}

.foot-bottom {
  border-top: 1.5px solid rgba(92, 58, 30, .15);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  color: var(--mid);
  flex-wrap: wrap;
  gap: 8px;
  font-weight: 700;
  opacity: .68;
  font-family: 'Baloo 2', sans-serif;
}

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .4);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  animation: waPulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, .55);
  animation: none;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, .4);
  }

  50% {
    box-shadow: 0 6px 36px rgba(37, 211, 102, .65);
  }
}

/* ─── REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

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

/* ─── RESPONSIVE ─── */
@media(max-width:1000px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-right {
    min-height: 540px;
  }

  #founders .inner,
  #teachers .inner,
  .adm-grid,
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .location-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .day-flow {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
  }

  .day-flow::before {
    display: none;
  }

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

  .foot-top {
    grid-template-columns: 1fr 1fr;
  }

  #philosophy .pillars-grid {
    grid-template-columns: 1fr;
  }

  .prog-content.active {
    grid-template-columns: 1fr;
  }

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

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

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

  .testi-static-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media(max-width:768px) {
  nav ul {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-hbg {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .mob-menu {
    top: 72px;
    padding: 16px 6% 24px;
  }
}

@media(max-width:640px) {
  .nav-logo img {
    height: 62px;
  }

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

  .day-flow {
    grid-template-columns: 1fr 1fr;
  }

  .foot-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

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

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

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

  .testi-static-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.wide {
    grid-column: span 1;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }

  .cta-section {
    flex-direction: column;
    text-align: center;
  }
}