/* =========================================================
   THE ROSS PRESCHOOL — Shared Stylesheet
   "Ready for More Than Just Kindergarten. Ready for Life."
   ========================================================= */

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

:root {
  --navy:        #1a2a5e;
  --navy-dark:   #111d44;
  --navy-mid:    #1e3268;
  --green:       #3d8b4e;
  --green-light: #4ea862;
  --green-pale:  #e8f4eb;
  --gold:        #c8910e;
  --gold-light:  #f0c040;
  --gold-pale:   #fef9ed;
  --white:       #ffffff;
  --off-white:   #f7f8f4;
  --gray-light:  #eef0ec;
  --gray-mid:    #d8dbd4;
  --text-dark:   #1c1c2e;
  --text-mid:    #4a4a5a;
  --text-light:  #7a7a8a;
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:   0 8px 32px rgba(26,42,94,0.12);
  --shadow-lg:   0 20px 60px rgba(26,42,94,0.16);
}

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

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── LAYOUT ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 28px; }
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

/* ── TYPOGRAPHY ── */
.eyebrow {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.eyebrow-light { color: rgba(255,255,255,0.65); }
.eyebrow-gold { color: var(--gold-light); }

h1.display {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.15;
  color: var(--white);
  font-weight: 700;
}
h2.headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.22;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
}
h2.headline-light { color: var(--white); }
h3.subheadline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.3;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 12px;
}
h3.subheadline-light { color: var(--white); }

.lead {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 600px;
}
.lead-light { color: rgba(255,255,255,0.85); }
.lead-center { margin: 0 auto; text-align: center; }

p.body-text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 18px;
}
p.body-text:last-child { margin-bottom: 0; }

em.gold { font-style: normal; color: var(--gold-light); }
em.green { font-style: normal; color: var(--green-light); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(61,139,78,0.3);
}
.btn-primary:hover { background: var(--green-light); box-shadow: 0 8px 24px rgba(61,139,78,0.4); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(200,145,14,0.35);
}
.btn-gold:hover { background: #d99a14; box-shadow: 0 8px 24px rgba(200,145,14,0.45); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2.5px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2.5px solid var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

.btn-lg { padding: 17px 38px; font-size: 0.93rem; }
.btn-sm { padding: 10px 22px; font-size: 0.8rem; }

.cta-group { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.cta-group-center { justify-content: center; }

.link-arrow {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.15s;
  border-bottom: 2px solid transparent;
  padding-bottom: 1px;
}
.link-arrow:hover { gap: 10px; border-color: var(--navy); }
.link-arrow-light { color: rgba(255,255,255,0.85); }
.link-arrow-light:hover { border-color: rgba(255,255,255,0.5); }

/* ── TOP BAR ── */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 0;
  text-align: center;
  letter-spacing: 0.02em;
}
.top-bar a { color: var(--gold-light); margin-left: 6px; transition: opacity 0.15s; }
.top-bar a:hover { opacity: 0.8; }

/* ── NAVBAR ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  box-shadow: 0 1px 0 var(--gray-light), 0 4px 20px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 28px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}
.nav-logo img { height: 52px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-dark);
  padding: 8px 13px;
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-links a:hover { background: var(--off-white); color: var(--green); }
.nav-links a.active { color: var(--green); }
.nav-links .nav-cta {
  background: var(--green);
  color: var(--white);
  border-radius: 50px;
  padding: 10px 22px;
  margin-left: 8px;
}
.nav-links .nav-cta:hover { background: var(--green-light); color: var(--white); }
.nav-links .nav-enrolled {
  border: 1.5px solid var(--gray-light);
  border-radius: 50px;
  padding: 8px 16px;
  color: var(--text-muted);
  font-size: 0.76rem;
  margin-left: 4px;
}
.nav-links .nav-enrolled:hover { background: var(--off-white); color: var(--navy); border-color: var(--navy); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative;
  padding: 100px 0 80px;
  background: var(--navy-dark);
  overflow: hidden;
  text-align: center;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero .lead { color: rgba(255,255,255,0.82); margin: 0 auto; }

/* ── HERO (home) ── */
.home-hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  overflow: hidden;
}
.home-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://www.therosspreschool.org/wp-content/uploads/2021/07/banner1.png') center/cover no-repeat;
  opacity: 0.38;
}
.home-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 740px;
  padding: 80px 28px 110px;
  margin-left: max(28px, calc((100vw - 1160px)/2));
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
  backdrop-filter: blur(6px);
}
.home-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.14;
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.home-hero .hero-sub {
  font-size: 1.13rem;
  color: rgba(255,255,255,0.87);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.75;
}
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:.25} 50%{opacity:.8} }

/* ── QUICK FACTS ── */
.quick-facts {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.quick-facts-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}
.fact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  border-right: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
}
.fact-item:last-child { border-right: none; }
.fact-icon { font-size: 1.25rem; flex-shrink: 0; }
.fact-label { font-size: 0.7rem; font-weight: 600; color: rgba(255,255,255,0.5); letter-spacing: 0.07em; text-transform: uppercase; display: block; margin-top: 1px; }

/* ── TWO-COL GRID ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.two-col.gap-lg { gap: 88px; }
.two-col.flip { direction: rtl; }
.two-col.flip > * { direction: ltr; }

/* ── CARDS ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.card-pad { padding: 32px 28px; }

/* ── IMAGE GRID ── */
.photo-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.photo-mosaic-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.photo-mosaic-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-mosaic-item.tall { grid-row: span 2; }
.photo-mosaic-item img.portrait { aspect-ratio: auto; height: 100%; }
.photo-mosaic-item img.square { aspect-ratio: 1; }
.photo-mosaic-item img.landscape { aspect-ratio: 4/3; }

/* ── VIDEO CARD ── */
.video-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}
.video-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,29,68,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.video-overlay:hover { background: rgba(17,29,68,0.52); }
.play-btn {
  width: 72px; height: 72px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--navy);
  padding-left: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}
.video-overlay:hover .play-btn { transform: scale(1.08); }

/* ── TESTIMONIAL FLOAT ── */
.testimonial-float {
  position: absolute;
  bottom: -32px;
  left: -32px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  box-shadow: var(--shadow-lg);
  max-width: 290px;
  z-index: 3;
}
.testimonial-float .stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 8px; }
.testimonial-float p { font-size: 0.83rem; color: var(--text-mid); font-style: italic; line-height: 1.6; margin-bottom: 10px; }
.testimonial-float .author { font-weight: 800; font-size: 0.8rem; color: var(--navy); }

/* ── MISSION QUOTE ── */
.mission-quote {
  background: var(--navy-dark);
  padding: 72px 0;
  text-align: center;
}
.mission-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  color: var(--white);
  line-height: 1.5;
  max-width: 860px;
  margin: 0 auto 20px;
  font-weight: 700;
}
.mission-quote cite {
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ── ACTIVITY CARDS ── */
.activity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.activity-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: default;
}
.activity-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.activity-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.activity-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(17,29,68,0.9) 0%, transparent 100%);
  color: var(--white);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 36px 14px 13px;
  letter-spacing: 0.02em;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1.5px solid var(--gray-light);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gray-light);
  line-height: 1;
  position: absolute;
  top: 16px; right: 22px;
}
.testimonial-card .stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 14px; }
.testimonial-card p { font-size: 0.93rem; color: var(--text-mid); line-height: 1.78; font-style: italic; margin-bottom: 18px; }
.testimonial-card .reviewer { font-weight: 800; font-size: 0.85rem; color: var(--navy); }

/* ── SKILLS / CURRICULUM ── */
.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
  margin: 24px 0 36px;
}
.skill-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  line-height: 1.4;
  padding: 4px 0;
}
.skill-check {
  width: 22px; height: 22px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--white);
  margin-top: 1px;
}

/* ── FEATURE PILLS ── */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 32px; }
.pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
}
.pill-dark {
  background: var(--green-pale);
  border-color: rgba(61,139,78,0.2);
  color: var(--green);
}

/* ── ENROLL CTA SECTION ── */
.enroll-section {
  background: var(--navy-dark);
  padding: 104px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.enroll-section::before {
  content: 'IMAGINE · PLAY · LEARN';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 900;
  color: rgba(255,255,255,0.025);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.12em;
}
.enroll-inner { position: relative; z-index: 2; }
.enroll-meta {
  margin-top: 24px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
}
.enroll-meta a { color: rgba(255,255,255,0.4); }

/* ── DIVIDER ── */
.divider { width: 56px; height: 3px; background: var(--green); border-radius: 2px; margin: 20px 0 28px; }
.divider-gold { background: var(--gold); }
.divider-center { margin-left: auto; margin-right: auto; }

/* ── ICON BOXES ── */
.icon-box-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.icon-box {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--gray-light);
  transition: box-shadow 0.2s, transform 0.2s;
}
.icon-box:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.icon-box-icon { font-size: 2.2rem; margin-bottom: 16px; }
.icon-box h4 { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.icon-box p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }

/* ── STEPS ── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-light);
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  font-family: 'Playfair Display', serif;
}
.step-body h4 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.step-body p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; }

/* ── CONTACT FORM ── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.83rem; font-weight: 700; color: var(--navy); margin-bottom: 7px; letter-spacing: 0.04em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray-mid);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(61,139,78,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── INFO BOX ── */
.info-box {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border-left: 4px solid var(--green);
}
.info-box h4 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.info-list { display: flex; flex-direction: column; gap: 10px; }
.info-list-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--text-mid); }
.info-list-item strong { color: var(--navy); }

/* ── FAQ ── */
.faq { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--gray-light); padding: 22px 0; }
.faq-item:first-child { padding-top: 0; }
.faq-q { font-weight: 800; font-size: 0.97rem; color: var(--navy); margin-bottom: 8px; }
.faq-a { font-size: 0.92rem; color: var(--text-mid); line-height: 1.75; }

/* ── FOOTER ── */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.65); padding: 60px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 68px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.75; color: rgba(255,255,255,0.55); }
.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: color 0.15s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  transition: background 0.15s, color 0.15s;
}
.social-link:hover { background: var(--green); color: var(--white); }

/* ── BAND ── */
.band-green { background: var(--green); }
.band-navy { background: var(--navy); }
.band-navy-dark { background: var(--navy-dark); }
.band-off-white { background: var(--off-white); }

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .two-col.flip { direction: ltr; }
  .activity-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .icon-box-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .home-hero h1 { font-size: 2.2rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .activity-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .icon-box-grid { grid-template-columns: 1fr; }
  .testimonial-float { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr; }
  .section-pad { padding: 64px 0; }
  .quick-facts-inner { overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; }
}
