/* ========================================
   YSDAK — Shared Design System
   Colors: #FF8836 (Orange), Black, White
   ======================================== */

:root {
  --bg:      #FFFFFF;
  --surface: #FFFFFF;
  --fg:      #000000;
  --muted:   #4A4A4A;
  --border:  #E5E5E5;
  --accent:  #FF8836;
  --accent-deep: #E07020;
  --accent-warm: #FF9F5C;
  --font-display: 'Söhne', 'Avenir Next', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-body:    -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
  --radius: 14px;
  --space: 1rem;
  --max-width: 1200px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.65;
  font-size: clamp(15px, 1.1vw, 18px);
}

img { max-width: 100%; display: block; }
a { color: var(--accent-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---- NAV ---- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: #FF8836;
  padding: 0 clamp(1rem, 4vw, 3rem);
}
.nav-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
}
.nav-logo:hover { text-decoration: none; }
.nav-logo-img {
  height: 48px; width: auto;
  border-radius: 6px;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.2rem; letter-spacing: -0.02em;
  color: #FFFFFF;
}
.nav-logo-text span { color: #FFFFFF; opacity: 0.85; }
.nav-links { display: flex; gap: 1.8rem; list-style: none; }
.nav-links a {
  color: rgba(255, 255, 255, 0.85); font-size: 0.9rem; font-weight: 500;
  transition: color 0.2s; text-decoration: none;
}
.nav-links a:hover { color: #FFFFFF; text-decoration: none; }
.nav-links a.active { color: #FFFFFF; font-weight: 700; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle svg { width: 24px; height: 24px; stroke: #FFFFFF; }

/* ---- HERO (page-level) ---- */
.page-hero {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch;
  min-height: 460px;
}
.page-hero-text {
  padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 4vw, 3rem);
  display: flex; flex-direction: column; justify-content: center;
  max-width: var(--max-width);
}
.page-hero-badge {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent-deep);
  background: rgba(255, 136, 54, 0.1);
  padding: 0.35em 1em; border-radius: 100px;
  margin-bottom: 1.5rem;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero p {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--muted);
  max-width: 520px; line-height: 1.7;
  margin-bottom: 2rem;
}
.page-hero-illustration {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
.page-hero-illustration img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}
.page-hero-illustration svg {
  width: 100%; max-width: 420px; height: auto;
}

/* ---- FULL-WIDTH HOMEPAGE HERO ---- */
.hero-fullwidth {
  position: relative;
  min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero-fullwidth-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-fullwidth-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.50) 40%,
    rgba(0,0,0,0.65) 100%
  );
  z-index: 1;
}
.hero-fullwidth-content {
  position: relative;
  z-index: 2;
  padding: clamp(4rem, 10vw, 7rem) clamp(1rem, 4vw, 3rem);
  max-width: 800px;
  color: #fff;
}
.hero-fullwidth-content .hero-badge {
  margin-bottom: 1.5rem;
}
.hero-fullwidth-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: #fff;
}
.hero-fullwidth-content h1 em {
  font-style: normal;
  color: #FF8836;
}
.hero-fullwidth-content p {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: rgba(255,255,255,0.88);
  max-width: 600px; margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ---- SECTION SHARED ---- */
.section {
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1rem, 4vw, 3rem);
  max-width: var(--max-width); margin: 0 auto;
}
.section-label {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--accent); margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; letter-spacing: -0.02em;
  line-height: 1.15; margin-bottom: 1rem;
}
.section-subtitle {
  color: var(--muted); font-size: 1.05rem;
  max-width: 560px; line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* ---- HERO CTA BUTTON ---- */
.hero-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--accent);
  color: #fff; font-weight: 600; font-size: 1rem;
  padding: 0.85em 2em; border-radius: 100px;
  transition: background 0.2s, transform 0.15s;
  border: none; cursor: pointer;
}
.hero-cta:hover { background: var(--accent-deep); text-decoration: none; transform: translateY(-1px); }
.hero-cta svg { width: 18px; height: 18px; stroke: currentColor; }

/* ---- FULL-BLEED IMAGE SECTION (Jamilo School style) ---- */
.fullbleed-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.fullbleed-section-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 360px;
}
.fullbleed-section-content {
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex; flex-direction: column; justify-content: center;
  background: var(--surface);
}
.fullbleed-section-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700;
  margin-bottom: 0.75rem;
}
.fullbleed-section-content p {
  color: var(--muted); font-size: 0.95rem; line-height: 1.7;
  margin-bottom: 0.75rem;
}
.fullbleed-section-content .tag {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-deep);
  background: rgba(255, 136, 54, 0.08);
  padding: 0.3em 0.9em; border-radius: 100px;
  margin-bottom: 0.75rem;
}

/* ---- ABOUT GRID ---- */
.about-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr 1fr;
}
.about-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  margin-bottom: 0.75rem;
}
.about-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }

.values-grid {
  display: flex; flex-wrap: wrap;
  gap: 0.75rem; margin-top: 1.5rem;
  justify-content: center;
}
.value-chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255, 136, 54, 0.06);
  border: 1px solid rgba(255, 136, 54, 0.15);
  border-radius: 100px;
  padding: 0.55em 1.25em;
  font-size: 0.85rem; font-weight: 600;
  color: var(--accent-deep);
  transition: background 0.2s, transform 0.15s;
}
.value-chip:hover {
  background: rgba(255, 136, 54, 0.12);
  transform: translateY(-1px);
}
.value-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ---- PROGRAMMES ---- */
.programmes-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.programme-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.programme-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}
.programme-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}
.programme-icon.education { background: rgba(255, 136, 54, 0.1); color: var(--accent-deep); }
.programme-icon.sports { background: rgba(0, 0, 0, 0.06); color: #000; }
.programme-icon.health { background: rgba(255, 136, 54, 0.08); color: var(--accent); }
.programme-icon.sponsorship { background: rgba(255, 159, 92, 0.12); color: var(--accent-deep); }

.programme-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: 0.6rem;
}
.programme-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; }

/* Programme detail (full page) */
.programme-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}
.programme-detail:last-child { border-bottom: none; }
.programme-detail:nth-child(even) { direction: rtl; }
.programme-detail:nth-child(even) > * { direction: ltr; }
.programme-detail-illustration svg {
  width: 100%; max-width: 360px; height: auto;
}
.programme-detail h3 {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700;
  margin-bottom: 0.75rem;
}
.programme-detail p {
  color: var(--muted); font-size: 0.95rem; line-height: 1.7;
  margin-bottom: 1rem;
}
.programme-detail .tag {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-deep);
  background: rgba(255, 136, 54, 0.08);
  padding: 0.3em 0.9em; border-radius: 100px;
  margin-bottom: 0.75rem;
}

/* ---- TIMELINE ---- */
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before {
  content: ''; position: absolute; left: 11px; top: 8px; bottom: 8px;
  width: 2px; background: var(--border);
}
.timeline-item { position: relative; margin-bottom: 2.5rem; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute; left: -2.5rem; top: 6px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--surface); border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.timeline-dot-inner { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.timeline-year {
  font-family: var(--font-display);
  font-weight: 800; font-size: 0.85rem;
  color: var(--accent-deep);
  margin-bottom: 0.25rem;
}
.timeline-text { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }

/* ---- PARTNERS ---- */
.partners-section {
  background: #F8F8F8; border-radius: var(--radius); padding: 3rem; margin-top: 0.5rem;
}
.partners-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.partners-col h4 {
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--accent-deep);
  margin-bottom: 1rem;
}
.partners-list { list-style: none; }
.partners-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem; color: var(--fg);
}
.partners-list li:last-child { border-bottom: none; }

/* Partner card variant */
.partner-cards {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.partner-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
}
.partner-card h4 {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  margin-bottom: 0.3rem;
}
.partner-card .partner-tag {
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--accent);
  margin-bottom: 0.5rem;
}

/* ---- CTA ---- */
.cta-section {
  text-align: center;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem);
}
.cta-box {
  background: linear-gradient(135deg, #000000, #1A1A1A);
  border-radius: 20px;
  padding: clamp(2.5rem, 5vw, 4rem);
  max-width: 700px; margin: 0 auto;
  color: #fff;
}
.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800; letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.cta-box p { opacity: 0.85; margin-bottom: 2rem; font-size: 1.05rem; line-height: 1.7; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--accent); color: #fff;
  padding: 0.8em 2em; border-radius: 100px;
  font-weight: 700; font-size: 0.95rem;
  transition: transform 0.15s, box-shadow 0.2s;
  display: inline-block;
}
.btn-primary:hover { text-decoration: none; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255, 136, 54, 0.3); }
.btn-secondary {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff; padding: 0.75em 2em; border-radius: 100px;
  font-weight: 600; font-size: 0.95rem;
  transition: border-color 0.2s;
  display: inline-block;
}
.btn-secondary:hover { text-decoration: none; border-color: rgba(255, 255, 255, 0.7); }
.btn-outline {
  border: 2px solid var(--accent);
  color: var(--accent-deep);
  padding: 0.75em 2em; border-radius: 100px;
  font-weight: 600; font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}
.btn-outline:hover {
  background: var(--accent); color: #fff; text-decoration: none;
}

/* ---- FOOTER ---- */
.footer {
  background: #000000;
  border-top: none;
  padding: 2.5rem clamp(1rem, 4vw, 3rem);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}
.footer-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer strong { color: #fff; }
.footer a { color: rgba(255, 255, 255, 0.7); }
.footer a:hover { color: var(--accent); }
.footer-links { display: flex; gap: 1.5rem; list-style: none; }
.footer-links a { color: rgba(255, 255, 255, 0.7); font-size: 0.85rem; }
.footer-links a:hover { color: var(--accent); text-decoration: none; }

/* ---- CONTACT FORM ---- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.85rem; font-weight: 600; color: var(--fg);
}
.form-group input, .form-group textarea, .form-group select {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.7em 1em;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  color: var(--fg);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 136, 54, 0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info {
  display: flex; flex-direction: column; gap: 1.5rem;
}
.contact-info-item {
  display: flex; gap: 1rem; align-items: flex-start;
}
.contact-info-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255, 136, 54, 0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; stroke: var(--accent-deep); }
.contact-info-text h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.2rem; }
.contact-info-text p { color: var(--muted); font-size: 0.9rem; }
.contact-info-text a { color: var(--accent-deep); }
.contact-info-text a:hover { color: var(--accent); }

/* ---- STAT CARDS ---- */
.stats-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem; margin-bottom: 3rem;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800;
  color: var(--accent-deep);
  line-height: 1.1;
}
.stat-label {
  font-size: 0.82rem; color: var(--muted);
  margin-top: 0.3rem;
}

/* ---- HOMEPAGE PREVIEW CARDS ---- */
.preview-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
}
.preview-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.preview-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}
.preview-card-illustration {
  background: #FAFAFA;
  padding: 2rem;
  display: flex; justify-content: center; align-items: center;
  height: 220px;
  flex-shrink: 0;
}
.preview-card-illustration svg {
  width: auto; max-width: 180px; height: auto; max-height: 180px;
}
.preview-card-body {
  padding: 1.5rem 2rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.preview-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 700;
  margin-bottom: 0.4rem;
}
.preview-card-body p {
  flex: 1;
  color: var(--muted); font-size: 0.88rem; line-height: 1.6;
  margin-bottom: 1rem;
}
.preview-card-body .btn-outline { font-size: 0.85rem; padding: 0.55em 1.5em; }

/* ---- PARTNER MARQUEE ---- */
.partner-marquee {
  overflow: hidden;
  padding: 2.5rem 0;
  background: #FAFAFA;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.partner-marquee-track {
  overflow: hidden;
}
.partner-marquee-inner {
  display: flex;
  gap: 2rem;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}
.partner-marquee-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 2.5rem;
  min-width: 170px;
  min-height: 100px;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.partner-marquee-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-color: var(--accent);
}
.partner-marquee-item img {
  height: 70px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 0.3s;
  filter: grayscale(0.3);
}
.partner-marquee-item:hover img {
  opacity: 1;
  filter: grayscale(0);
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.partner-marquee-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* ---- PHOTO HERO ---- */
.photo-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 2rem;
}
.photo-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}
.photo-hero-overlay p {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* ---- PARTNER LOGO GRID ---- */
.partner-logo-grid {
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 3rem 0;
}
.partner-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.partner-logo-item img {
  height: 80px;
  width: auto;
  object-fit: contain;
}
.partner-logo-item span {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 70px; left: 0; right: 0;
    background: #FF8836;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    padding: 1rem 1.5rem; gap: 1rem;
  }
  .nav-toggle { display: block; }

  .page-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .page-hero-text {
    padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 4vw, 3rem);
  }
  .page-hero p { margin-left: auto; margin-right: auto; }
  .page-hero-illustration {
    min-height: 260px;
    order: -1;
  }

  .hero-fullwidth { min-height: 55vh; }

  .fullbleed-section { grid-template-columns: 1fr; }
  .fullbleed-section-image { min-height: 260px; }

  .about-grid { grid-template-columns: 1fr; }
  .partners-cols { grid-template-columns: 1fr; }
  .partners-section { padding: 2rem 1.5rem; }
  .programme-detail { grid-template-columns: 1fr; }
  .programme-detail:nth-child(even) { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .preview-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-fullwidth-content h1 { font-size: 2rem; }
  .page-hero h1 { font-size: 1.8rem; }
  .programmes-grid { grid-template-columns: 1fr; }
  .nav-logo-img { height: 40px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .partner-cards { grid-template-columns: 1fr; }
}
