/* ─── TOKENS ───────────────────────────────────────── */
:root {
  --yellow: #FFC107;
  --gold: #FFB300;
  --deep-gold: #E65100;
  --green: #4CAF50;
  --dgreen: #2E7D32;
  --white: #FFFFFF;
  --gray: #212121;
  --mid: #616161;
  --light: #F9F6EE;
  --card-bg: #FFFDF5;
  --shadow: 0 8px 32px rgba(33,33,33,.10);
  --radius: 16px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'DM Mono', monospace;
  --transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── CONTAINER ────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
}

/* ─── NAV ──────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 70px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--yellow);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: var(--shadow); }
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo .emblem {
  width: 46px;
  height: 46px;
  background: var(--yellow);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 26px;
}
.nav-logo .emblem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.nav-logo span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--gray);
}
.nav-logo span em { color: var(--dgreen); font-style: normal; }
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray);
  transition: color .2s;
}
.nav-links a:hover { color: var(--dgreen); }
.nav-cta {
  background: var(--yellow);
  color: var(--gray);
  padding: 9px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: .9rem;
  transition: var(--transition);
}
.nav-cta:hover {
  background: var(--gold);
  transform: translateY(-2px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray);
  transition: .3s;
  border-radius: 2px;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: #fff;
  padding: 24px 5vw;
  border-bottom: 2px solid var(--yellow);
  box-shadow: var(--shadow);
  flex-direction: column;
  gap: 16px;
  z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

/* ─── BUTTONS ──────────────────────────────────────── */
.btn-primary {
  background: var(--yellow);
  color: var(--gray);
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid transparent;
  transition: var(--transition);
}
.btn-primary:hover {
  background: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255,193,7,.4);
}
.btn-outline {
  border: 2px solid rgba(255,255,255,.5);
  color: #fff;
  padding: 13px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,.1);
  transform: translateY(-3px);
}
.btn-dark {
  background: var(--gray);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-dark:hover {
  background: #333;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.btn-green {
  background: var(--dgreen);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-green:hover {
  background: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(46,125,50,.3);
}

/* ─── SECTION LABELS & TITLES ──────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dgreen);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--yellow);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--gray);
  margin-bottom: 16px;
}
.section-title .hl { color: var(--dgreen); }
.section-desc {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 48px;
}
.centered {
  text-align: center;
}
.centered .section-label {
  justify-content: center;
}
.centered .section-desc {
  margin-inline: auto;
}

/* ─── HERO ──────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 40%, #1a3a1a 100%);
  display: flex;
  align-items: center;
  padding: 70px 5vw 0;
  position: relative;
  overflow: hidden;
}
.hero-petals {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.petal {
  position: absolute;
  opacity: .08;
  font-size: clamp(60px, 10vw, 160px);
  animation: floatPetal 18s ease-in-out infinite;
}
.petal:nth-child(1) { top: 5%; left: 70%; animation-delay: 0s; }
.petal:nth-child(2) { top: 60%; left: 5%; animation-delay: -6s; font-size: 80px; }
.petal:nth-child(3) { top: 30%; left: 85%; animation-delay: -12s; font-size: 120px; }
.petal:nth-child(4) { top: 80%; left: 55%; animation-delay: -4s; font-size: 70px; }
@keyframes floatPetal {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(15deg); }
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,193,7,.15);
  border: 1px solid rgba(255,193,7,.3);
  color: var(--yellow);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .05em;
  margin-bottom: 24px;
}
.hero-eyebrow::before { content: '🌻'; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--yellow); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 540px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stat { text-align: left; }
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.hero-stat .label {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
}
.hero-visual {
  position: absolute;
  right: 0;
  top: 70px;
  bottom: 0;
  width: 46%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.sunflower-art {
  width: min(480px, 90%);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: radial-gradient(circle at 40% 40%, rgba(255,193,7,.25), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(140px, 20vw, 280px);
  animation: spin 60s linear infinite;
  filter: drop-shadow(0 0 80px rgba(255,193,7,.3));
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── CARDS & GRIDS ────────────────────────────────── */
.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ─── DIVISIONS CARDS ──────────────────────────────── */
.div-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid rgba(0,0,0,.06);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.div-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(33,33,33,.12);
}
.div-card-header {
  padding: 48px 32px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.div-card.toddlers .div-card-header { background: linear-gradient(135deg,#FFF8E1,#FFF3CD); }
.div-card.legends .div-card-header  { background: linear-gradient(135deg,#E8F5E9,#C8E6C9); }
.div-card.asas .div-card-header     { background: linear-gradient(135deg,#E3F2FD,#BBDEFB); }
.div-icon { font-size: 3rem; margin-bottom: 16px; }
.div-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 6px;
}
.div-card .tagline { font-size: .88rem; color: var(--mid); }
.div-card-body { padding: 24px 32px; flex: 1; }
.div-programs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.div-programs li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--gray);
}
.div-programs li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}
.div-card-footer {
  padding: 20px 32px;
  border-top: 1px solid rgba(0,0,0,.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.div-link {
  font-weight: 600;
  color: var(--dgreen);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.div-link:hover { gap: 10px; }

/* ─── STATS BAND ───────────────────────────────────── */
.stats-band {
  background: linear-gradient(135deg, var(--dgreen), var(--green));
  padding: 60px 5vw;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem,5vw,4rem);
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  margin-top: 8px;
  line-height: 1.4;
}

/* ─── FACILITIES ───────────────────────────────────── */
.fac-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.fac-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(0,0,0,.06);
  transition: var(--transition);
}
.fac-card:hover {
  background: var(--yellow);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(255,193,7,.3);
}
.fac-card:hover .fac-label { color: var(--gray); }
.fac-icon { font-size: 2.5rem; margin-bottom: 14px; display: block; }
.fac-label { font-weight: 600; font-size: .9rem; color: var(--gray); }

/* ─── NEWS / EVENTS ────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.news-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.07);
  transition: var(--transition);
  background: var(--card-bg);
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.1);
}
.news-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
.news-img.ev1 { background: linear-gradient(135deg,#FFF3E0,#FFB74D40); }
.news-img.ev2 { background: linear-gradient(135deg,#E8F5E9,#66BB6A40); }
.news-img.ev3 { background: linear-gradient(135deg,#E3F2FD,#42A5F540); }
.news-body { padding: 20px; }
.news-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .74rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.news-tag.exam { background: #FFF3E0; color: #E65100; }
.news-tag.event { background: #E8F5E9; color: var(--dgreen); }
.news-tag.award { background: #E3F2FD; color: #1565C0; }
.news-body h4 {
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: 8px;
  line-height: 1.4;
}
.news-body p {
  font-size: .83rem;
  color: var(--mid);
  margin-bottom: 14px;
  line-height: 1.6;
}
.news-meta {
  font-size: .78rem;
  color: var(--mid);
  display: flex;
  gap: 12px;
}

/* ─── WHY CHOOSE US ────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}
.why-card {
  border-radius: var(--radius);
  padding: 36px 28px;
  background: var(--card-bg);
  border: 1px solid rgba(0,0,0,.06);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--yellow), var(--gold));
  opacity: 0;
  transition: opacity .3s;
}
.why-card:hover::before { opacity: 1; }
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(255,193,7,.25);
}
.why-card * { position: relative; z-index: 1; }
.why-icon { font-size: 2.8rem; margin-bottom: 18px; display: block; }
.why-card h4 { font-weight: 700; font-size: 1.05rem; margin-bottom: 10px; }
.why-card p { font-size: .88rem; color: var(--mid); line-height: 1.65; }
.why-card:hover h4,
.why-card:hover p { color: var(--gray); }

/* ─── PORTALS ───────────────────────────────────────── */
.portals-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.portal-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.portal-card:hover {
  background: rgba(255,255,255,.15);
  transform: translateY(-6px);
  border-color: var(--yellow);
}
.portal-icon { font-size: 2.8rem; margin-bottom: 20px; display: block; }
.portal-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}
.portal-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.portal-features li {
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  display: flex;
  gap: 8px;
  align-items: center;
}
.portal-features li::before { content: '✓'; color: var(--yellow); font-weight: 700; }
.portal-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  color: var(--yellow);
  font-weight: 600;
  font-size: .9rem;
  border: 1.5px solid rgba(255,193,7,.4);
  padding: 9px 20px;
  border-radius: 30px;
  transition: var(--transition);
}
.portal-btn:hover {
  background: var(--yellow);
  color: var(--gray);
  border-color: var(--yellow);
}

/* ─── TEAM ──────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.team-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  transition: var(--transition);
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(33,33,33,.12);
}
.team-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #f3f6f3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.team-photo .avatar-emoji {
  font-size: 5rem;
  transition: transform .4s;
  opacity: .35;
  line-height: 1;
}
.team-photo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}
.team-card:hover .avatar-emoji { transform: scale(1.1); }
.team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,94,32,.82);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity .3s;
  padding: 16px;
}
.team-card:hover .team-overlay { opacity: 1; }
.team-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.5);
  display: grid;
  place-items: center;
  font-size: 1rem;
  color: #fff;
  transition: background .2s, transform .2s;
  text-decoration: none;
}
.team-social-btn:hover {
  background: var(--yellow);
  color: var(--gray);
  border-color: var(--yellow);
  transform: scale(1.08);
}
.team-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--yellow);
  color: var(--gray);
  font-size: .68rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: .04em;
  text-transform: uppercase;
  max-width: calc(100% - 28px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.team-info {
  padding: 24px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-name {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 900;
  margin-bottom: 6px;
  color: var(--gray);
  line-height: 1.3;
}
.team-role {
  font-size: .86rem;
  color: var(--dgreen);
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.4;
}
.team-dept { font-size: .8rem; color: var(--mid); }
.team-divider {
  width: 40px;
  height: 3px;
  background: var(--yellow);
  margin: 14px auto 12px;
  border-radius: 2px;
}
.team-quals {
  font-size: .82rem;
  color: var(--mid);
  line-height: 1.6;
  max-width: 28ch;
}

/* ─── GALLERY ───────────────────────────────────────── */
.gallery {
  background: var(--gray);
  padding: clamp(60px,8vw,100px) 5vw;
}
.gallery .section-label { color: var(--yellow); }
.gallery h2.section-title { color: var(--white); }
.gallery .section-desc { color: rgba(255,255,255,.65); }
.gallery-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}
.gal-tab {
  padding: 7px 20px;
  border-radius: 30px;
  border: 1.5px solid rgba(255,255,255,.2);
  background: none;
  color: rgba(255,255,255,.7);
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.gal-tab.active,
.gal-tab:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--gray);
}
.gallery-masonry {
  columns: 4;
  column-gap: 16px;
}
.gal-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: rgba(255,255,255,.05);
  transition: transform .3s, box-shadow .3s;
}
.gal-item:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
  z-index: 2;
}
.gal-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(2.5rem,5vw,5rem);
  border-radius: 12px;
  transition: transform .4s;
}
.gal-item:hover .gal-inner { transform: scale(1.06); }
.gal-inner.tall  { aspect-ratio: 3/4; }
.gal-inner.wide  { aspect-ratio: 4/3; }
.gal-inner.sq    { aspect-ratio: 1; }
.gal-inner.short { aspect-ratio: 16/9; }
.gal-item[data-cat="campus"]   .gal-inner { background: linear-gradient(135deg,#1B5E20,#388E3C); }
.gal-item[data-cat="events"]   .gal-inner { background: linear-gradient(135deg,#E65100,#FF8F00); }
.gal-item[data-cat="students"] .gal-inner { background: linear-gradient(135deg,#1565C0,#0288D1); }
.gal-item[data-cat="sports"]   .gal-inner { background: linear-gradient(135deg,#6A1B9A,#AD1457); }
.gal-item[data-cat="asas"]     .gal-inner { background: linear-gradient(135deg,#004D40,#00695C); }
.gal-item[data-cat="awards"]   .gal-inner { background: linear-gradient(135deg,#827717,#F57F17); }
.gal-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 16px 14px;
  background: linear-gradient(to top, rgba(0,0,0,.8), transparent);
  color: #fff;
  font-size: .82rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity .3s;
  border-radius: 0 0 12px 12px;
}
.gal-item:hover .gal-caption { opacity: 1; }

/* ─── CONTACT ───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  padding: 22px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.07);
  transition: box-shadow .2s;
}
.contact-item:hover { box-shadow: var(--shadow); }
.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--yellow);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.contact-item h4 { font-weight: 600; font-size: .95rem; margin-bottom: 4px; }
.contact-item p  { font-size: .88rem; color: var(--mid); line-height: 1.6; }

/* ─── CTA BAND ──────────────────────────────────────── */
.cta-band {
  background: var(--yellow);
  padding: 80px 5vw;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem,4vw,3.2rem);
  font-weight: 900;
  color: var(--gray);
  margin-bottom: 16px;
}
.cta-band p {
  font-size: 1.05rem;
  color: rgba(33,33,33,.7);
  margin-bottom: 36px;
  max-width: 520px;
  margin-inline: auto;
  line-height: 1.7;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── STORE ──────────────────────────────────────────── */
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.product-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid rgba(0,0,0,.06);
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.1);
}
.product-img {
  aspect-ratio: 1;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  transition: transform .3s;
  overflow: hidden;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card:hover .product-img { transform: scale(1.05); }
.product-info { padding: 16px; }
.product-info h4 {
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: 6px;
}
.product-info .price {
  color: var(--dgreen);
  font-weight: 700;
  font-size: 1.05rem;
}
.product-info .cat {
  font-size: .78rem;
  color: var(--mid);
  margin-bottom: 6px;
}
.add-cart {
  width: 100%;
  margin-top: 12px;
  background: var(--yellow);
  color: var(--gray);
  border: none;
  padding: 10px;
  border-radius: 10px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  font-size: .88rem;
  transition: var(--transition);
}
.add-cart:hover { background: var(--gold); }

/* ─── FOOTER ────────────────────────────────────────── */
footer {
  background: var(--gray);
  color: rgba(255,255,255,.75);
  padding: 60px 5vw 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .emblem {
  width: 48px;
  height: 48px;
  background: var(--yellow);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 26px;
  margin-bottom: 16px;
}
.footer-brand .emblem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.footer-brand p {
  font-size: .9rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  transition: background .2s;
}
.social-link:hover { background: var(--yellow); }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-links a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* ─── FORMS ─────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(0,0,0,.12);
  font-family: var(--font-body);
  font-size: .9rem;
  background: var(--white);
  color: var(--gray);
  transition: border-color .2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255,193,7,.2);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.submit-btn {
  width: 100%;
  background: var(--yellow);
  color: var(--gray);
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}
.submit-btn:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,193,7,.35);
}

/* ─── CHATBOT ───────────────────────────────────────── */
.chat-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 2000;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--yellow);
  border: none;
  cursor: pointer;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(255,193,7,.5);
  transition: var(--transition);
  display: grid;
  place-items: center;
}
.chat-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(255,193,7,.6);
}
.chat-window {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 2000;
  width: 340px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
}
.chat-window.open { display: flex; }
.chat-header {
  background: linear-gradient(135deg, var(--dgreen), var(--green));
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-avatar {
  width: 38px;
  height: 38px;
  background: var(--yellow);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
}
.chat-header-info h4 { color: #fff; font-size: .95rem; font-weight: 600; }
.chat-header-info p  { color: rgba(255,255,255,.7); font-size: .78rem; }
.chat-close {
  margin-left: auto;
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  font-size: 1.2rem;
  cursor: pointer;
}
.chat-messages {
  padding: 16px;
  flex: 1;
  max-height: 280px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chat-msg { max-width: 85%; }
.chat-msg.bot { align-self: flex-start; }
.chat-msg.user { align-self: flex-end; }
.chat-bubble {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: .88rem;
  line-height: 1.5;
}
.chat-msg.bot .chat-bubble {
  background: var(--light);
  color: var(--gray);
  border-bottom-left-radius: 4px;
}
.chat-msg.user .chat-bubble {
  background: var(--dgreen);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.chat-input-row {
  padding: 12px 16px;
  border-top: 1px solid rgba(0,0,0,.07);
  display: flex;
  gap: 8px;
}
.chat-input {
  flex: 1;
  padding: 9px 14px;
  border-radius: 20px;
  border: 1.5px solid rgba(0,0,0,.12);
  font-family: var(--font-body);
  font-size: .88rem;
  background: var(--light);
}
.chat-input:focus { outline: none; border-color: var(--yellow); }
.chat-send {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--yellow);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: grid;
  place-items: center;
  transition: background .2s;
}
.chat-send:hover { background: var(--gold); }

/* ─── WHATSAPP FLOAT ───────────────────────────────── */
.wa-fab {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 2000;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  cursor: pointer;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: var(--transition);
  display: grid;
  place-items: center;
}
.wa-fab:hover { transform: scale(1.1); }

/* ─── TOAST ─────────────────────────────────────────── */
.toast {
  position: fixed;
  top: 90px;
  right: 24px;
  z-index: 3000;
  background: var(--dgreen);
  color: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: .9rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  transform: translateX(120%);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 260px;
}
.toast.show { transform: translateX(0); }

/* ─── BACK TO TOP ───────────────────────────────────── */
.btt {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 1999;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gray);
  color: #fff;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(12px);
  transition: var(--transition);
  pointer-events: none;
}
.btt.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.btt:hover {
  background: var(--dgreen);
  transform: translateY(-3px);
}

/* ─── ANIMATIONS ────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }

/* ─── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .gallery-masonry { columns: 3; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .portals-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-content { max-width: 100%; }
  .hero h1 { font-size: clamp(2rem, 5vw, 2.8rem); }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-outline, .btn-dark, .btn-green { justify-content: center; }
  .chat-window { width: calc(100vw - 40px); right: 20px; }
  /* Store grid: two columns on tablet */
  .store-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; align-items: center; text-align: center; }
  .hero-stat { text-align: center; }
  .gallery-masonry { columns: 1; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; justify-content: center; }
  /* Store grid: single column on mobile */
  .store-grid { grid-template-columns: 1fr; }
}

/* ─── Footer Enhancements ────────────────────────────── */
.footer-col .footer-links li {
    line-height: 1.6;
}
.footer-col .footer-links a {
    transition: color 0.2s, transform 0.2s;
}
.footer-col .footer-links a:hover {
    color: var(--yellow);
    transform: translateX(4px);
}
.footer-brand .social-links .social-link {
    transition: transform 0.2s, background 0.2s;
}
.footer-brand .social-links .social-link:hover {
    transform: translateY(-3px);
    background: var(--yellow);
}

/* ─── Payment Method Fields ─────────────────────────── */
.payment-method-select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #dde5dd;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
}

.payment-method-note {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.5;
}

/* ─── Responsive tweaks for contact icons ────────────── */
@media (max-width: 768px) {
    .footer-col .footer-links a {
        font-size: 0.95rem;
    }
    .footer-col .footer-links li {
        padding: 4px 0;
    }
}