/* Granada School — v1 */
:root {
  --green: #99cc00;
  --green-deep: #76b72a;
  --dark-green: #6a9200;
  --dark: #1a1a1a;
  --dark2: #222;
  --ink: #2d3a1a;
  --muted: #6b7280;
  --light: #f7f8f4;
  --white: #fff;
  --border: #e5e7eb;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
}

a { color: var(--green); text-decoration: none; }
a:hover { color: var(--dark-green); }

img { max-width: 100%; height: auto; display: block; }

/* ── TOPBAR ── */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  font-size: 13px;
  padding: 8px 0;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 24px;
  align-items: center;
}
.topbar a { color: rgba(255,255,255,.75); }
.topbar a:hover { color: var(--green); }
.topbar-item { display: flex; align-items: center; gap: 6px; }

/* ── HEADER / NAV ── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 70px;
}
.nav-logo img { height: 48px; width: auto; }
.nav-menu {
  display: flex;
  list-style: none;
  gap: 4px;
  margin-left: auto;
  align-items: center;
}
.nav-menu li { position: relative; }
.nav-menu a, .nav-menu > li > span {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: color .2s, background .2s;
}
.nav-menu a:hover, .nav-menu > li > span:hover { color: var(--green); background: rgba(153,204,0,.07); }
.nav-menu a.active { color: var(--green); }
.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  border-radius: 6px !important;
}
.nav-cta:hover { background: var(--dark-green) !important; }

/* Dropdown */
.has-drop { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  min-width: 200px;
  list-style: none;
  padding: 6px 0;
  z-index: 200;
}
.has-drop:hover .dropdown { display: block; }
.dropdown li a {
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  border-radius: 0;
}
.dropdown li a:hover { background: var(--light); color: var(--green); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; margin-left: auto; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: .3s; }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 500;
  overflow-y: auto;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
}
.mobile-close { font-size: 28px; cursor: pointer; color: var(--dark); }
.mobile-nav { display: flex; flex-direction: column; padding: 16px 0; }
.mobile-nav > a, .mobile-nav > span {
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}
.mobile-sub { display: none; background: var(--light); }
.mobile-sub.open { display: block; }
.mobile-sub a { display: block; padding: 12px 36px; font-size: 15px; color: var(--dark); border-bottom: 1px solid var(--border); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; opacity: .45; }
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-content {
  max-width: 660px;
  padding: 80px 0;
  color: var(--white);
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(153,204,0,.85);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 20px;
  opacity: 1;
}
.hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.hero h1 span { color: var(--green); }
.hero p { font-size: 17px; opacity: .85; margin-bottom: 32px; max-width: 520px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  background: var(--green);
  color: var(--dark);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--dark-green); color: var(--white); transform: translateY(-1px); }
.btn-outline {
  border: 2px solid rgba(255,255,255,.5);
  color: var(--white);
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 6px;
  font-size: 15px;
  transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: var(--green); background: rgba(153,204,0,.15); color: var(--white); }

/* Slider controls */
.hero-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.4); cursor: pointer; transition: background .3s; border: none; }
.hero-dot.active { background: var(--green); }
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,.15);
  border: none;
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: background .2s;
  display: flex; align-items: center; justify-content: center;
}
.hero-arrow:hover { background: var(--green); }
.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--ink) 100%);
  color: var(--white);
  padding: 60px 24px;
  text-align: center;
}
.page-hero .breadcrumb { font-size: 13px; opacity: .6; margin-bottom: 12px; }
.page-hero .breadcrumb a { color: rgba(255,255,255,.7); }
.page-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; }
.page-hero h1 span { color: var(--green); }
.page-hero p { font-size: 16px; opacity: .8; max-width: 600px; margin: 16px auto 0; }

/* ── SECTIONS ── */
.section { padding: 72px 24px; }
.section.bg-light { background: var(--light); }
.section.bg-dark { background: var(--dark); color: var(--white); }
.section.bg-cta { background: var(--green-deep); }
.section.bg-cta .section-title { color: var(--dark); }
.section.bg-cta p { color: rgba(26,26,26,.75); }
.section.bg-cta .btn-primary { background: var(--dark); color: var(--white); border: none; }
.section.bg-cta .btn-primary:hover { background: var(--ink); color: var(--white); }
button.btn-primary { border: none; cursor: pointer; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 16px; line-height: 1.25; }
.section-sub { font-size: 16px; color: var(--muted); max-width: 620px; margin-bottom: 48px; }
.section-sub.centered { text-align: center; margin: 0 auto 48px; }
.centered { text-align: center; }

/* ── INFO STRIP ── */
.info-strip {
  background: var(--green);
  padding: 20px 24px;
}
.info-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}
.info-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--dark); }

/* ── CARDS GRID ── */
.cards-grid { display: grid; gap: 28px; }
.cards-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cards-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.12); }
.card-img { aspect-ratio: 4/3; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 20px 24px 24px; }
.card-tag { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green); margin-bottom: 8px; }
.card-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--dark); line-height: 1.35; }
.card-title a { color: var(--dark); }
.card-title a:hover { color: var(--green); }
.card-date { font-size: 13px; color: var(--muted); margin-bottom: 10px; }
.card-text { font-size: 14px; color: var(--muted); line-height: 1.6; }
.card-link { display: inline-block; margin-top: 14px; font-size: 14px; font-weight: 600; color: var(--green); }

/* ── ACTIVITY TABS ── */
.tab-nav { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.tab-btn {
  padding: 10px 20px;
  border-radius: 6px;
  border: 2px solid var(--border);
  background: var(--white);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: var(--dark);
  transition: .2s;
}
.tab-btn.active { background: var(--green); border-color: var(--green); color: var(--dark); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── ACTIVITY BLOCKS ── */
.activity-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}
.activity-block.reverse { direction: rtl; }
.activity-block.reverse > * { direction: ltr; }
.activity-block h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 14px; }
.activity-block p { color: var(--muted); }
.activity-img { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; }
.activity-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── PRINCIPLES LIST ── */
.principles-list { list-style: none; display: grid; gap: 16px; }
.principles-list.cols-2 { grid-template-columns: 1fr 1fr; }
.principle-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border-radius: 10px;
  padding: 18px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.principle-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--green);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
  color: var(--dark);
  display: flex; align-items: center; justify-content: center;
}
.principle-text { font-size: 14px; color: var(--dark); line-height: 1.6; }

/* ── PROGRAMME LEVELS ── */
.levels-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.level-card {
  background: var(--white);
  border-radius: 10px;
  border: 2px solid var(--border);
  padding: 24px 20px;
  text-align: center;
  transition: border-color .2s, box-shadow .2s;
}
.level-card:hover { border-color: var(--green); box-shadow: 0 4px 16px rgba(153,204,0,.15); }
.level-num {
  width: 48px; height: 48px;
  background: var(--green);
  border-radius: 50%;
  margin: 0 auto 14px;
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  display: flex; align-items: center; justify-content: center;
}
.level-name { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.level-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ── ANGLAIS CARDS ── */
.anglais-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 48px; }
.anglais-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  text-align: center;
  border-top: 4px solid var(--green);
}
.anglais-age {
  display: inline-block;
  background: var(--green);
  color: var(--dark);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.anglais-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.anglais-text { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── DEVOIRS ACCORDION ── */
.devoirs-grid { display: grid; gap: 8px; }
.devoirs-folder {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.devoirs-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  border: none;
  width: 100%;
  text-align: left;
  transition: background .2s;
  user-select: none;
}
.devoirs-header:hover { background: var(--light); }
.devoirs-header.open { background: var(--green); color: var(--dark); }
.devoirs-icon { font-size: 18px; }
.devoirs-chevron { margin-left: auto; font-size: 14px; transition: transform .3s; }
.devoirs-header.open .devoirs-chevron { transform: rotate(180deg); }
.devoirs-count {
  margin-left: 8px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(0,0,0,.1);
  padding: 2px 8px;
  border-radius: 10px;
}
.devoirs-header.open .devoirs-count { background: rgba(0,0,0,.15); }
.devoirs-files { display: none; padding: 8px 0; border-top: 1px solid var(--border); }
.devoirs-files.open { display: block; }
.devoirs-file {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--dark);
  border-bottom: 1px solid rgba(0,0,0,.04);
  transition: background .15s;
  text-decoration: none;
}
.devoirs-file:hover { background: var(--light); color: var(--green); }
.devoirs-file:last-child { border-bottom: none; }
.file-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--muted); }
.devoirs-file:hover .file-icon { color: var(--green); }

/* ── CONTACT ── */
.contact-wrap { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; }
.contact-form h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--dark); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--dark);
  background: var(--white);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--green); }
.form-group textarea { min-height: 130px; resize: vertical; }
.btn-submit {
  background: var(--green);
  color: var(--dark);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background .2s;
  width: 100%;
}
.btn-submit:hover { background: var(--dark-green); color: var(--white); }
.success-msg {
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 20px;
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
  font-size: 14px;
}

.contact-info h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 20px; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.ci-icon {
  width: 40px; height: 40px;
  background: rgba(153,204,0,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ci-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.ci-value { font-size: 15px; font-weight: 600; color: var(--dark); }
.ci-value a { color: var(--dark); }

/* ── BLOG ── */
.post-content { max-width: 800px; margin: 0 auto; }
.post-content p { margin-bottom: 16px; color: var(--dark); line-height: 1.75; }
.post-content h2, .post-content h3 { margin: 28px 0 12px; font-weight: 700; }
.post-content ul, .post-content ol { margin: 12px 0 16px 24px; }
.post-content li { margin-bottom: 6px; line-height: 1.65; }
.post-meta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.post-cat { background: var(--green); color: var(--dark); font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 4px; }
.post-date { font-size: 13px; color: var(--muted); }
.post-featured { border-radius: 12px; overflow: hidden; margin-bottom: 36px; aspect-ratio: 16/7; }
.post-featured img { width: 100%; height: 100%; object-fit: cover; }

/* ── FOOTER ── */
.site-footer { background: var(--dark); color: rgba(255,255,255,.75); padding: 60px 24px 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { height: 52px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; }
.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,.65); transition: color .2s; }
.footer-col ul a:hover { color: var(--green); }
.footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 14px; margin-bottom: 10px; color: rgba(255,255,255,.75); }
.footer-contact-item a { color: rgba(255,255,255,.65); }
.footer-contact-item a:hover { color: var(--green); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: background .2s, color .2s;
  text-decoration: none;
}
.footer-social-link:hover { background: var(--green); color: var(--dark); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255,255,255,.45);
}

/* ── STATS BAND ── */
.stats-band { background: var(--green); padding: 48px 24px; }
.stats-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.stat-num { font-size: 4rem; font-weight: 900; color: var(--dark); line-height: 1; }
.stat-label { font-size: 14px; font-weight: 600; color: rgba(26,26,26,.75); margin-top: 8px; }

/* ── OBJECTIVES LIST ── */
.objectives-list { display: grid; gap: 16px; }
.objective-item { display: flex; gap: 14px; align-items: flex-start; }
.obj-check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.objective-item p { font-size: 15px; color: var(--dark); line-height: 1.6; }

/* ── MENTIONS ── */
.mentions-content { max-width: 760px; }
.mentions-content h2 { font-size: 1.3rem; font-weight: 700; margin: 32px 0 12px; color: var(--green); }
.mentions-content p { margin-bottom: 10px; font-size: 15px; line-height: 1.7; }

/* ── FEATURE CARDS ── */
.features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 48px; }
.feature-card {
  background: var(--white); border-radius: 12px; padding: 32px 24px 28px;
  border: 1px solid var(--border); text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  transition: box-shadow .2s, border-color .2s;
}
.feature-card:hover { box-shadow: 0 6px 24px rgba(118,183,42,.12); border-color: var(--green); }
.feature-icon { width: 52px; height: 52px; border-radius: 50%; background: rgba(153,204,0,.1); display: flex; align-items: center; justify-content: center; margin-bottom: 4px; }
.feature-num { font-size: 2.4rem; font-weight: 800; color: var(--dark); line-height: 1; font-variant-numeric: tabular-nums; }
.feature-title { font-size: 13px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.feature-desc { font-size: 14px; line-height: 1.65; color: var(--muted); margin: 0; }
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px) { .features-grid { grid-template-columns: 1fr; } }

/* ── RECAP NOTE ── */
.recap-note {
  background: rgba(153,204,0,.1);
  border-left: 4px solid var(--green);
  border-radius: 0 10px 10px 0;
  padding: 28px 32px;
  margin-top: 48px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.recap-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--green);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.recap-note blockquote { font-size: 15px; line-height: 1.75; color: var(--dark); font-style: italic; margin: 0; }

/* ── LEVELS GRID ── */
.levels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.level-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
}
.level-card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 14px;
}
.level-card-img img { width: 100%; height: 100%; object-fit: cover; }
.level-num {
  width: 40px; height: 40px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 900; color: var(--dark);
  margin: 0 auto 10px;
}
.level-name { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.level-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── PRINCIPLES LIST ── */
.principles-list { list-style: none; display: grid; gap: 16px; margin-top: 40px; }
.principles-list.cols-2 { grid-template-columns: 1fr 1fr; }
.principle-item { display: flex; gap: 16px; align-items: flex-start; }
.principle-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 15px; color: var(--dark);
}
.principle-text { font-size: 14px; color: var(--dark); line-height: 1.6; padding-top: 6px; }

/* ── CONTACT LAYOUT ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-block { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: rgba(153,204,0,.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.contact-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 4px; }
.contact-social { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.social-link {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px; font-weight: 600;
  color: var(--dark);
  transition: border-color .2s, background .2s;
}
.social-link:hover { border-color: var(--green); background: rgba(153,204,0,.08); color: var(--dark); }
.contact-form-wrap { background: var(--white); border-radius: 16px; border: 1px solid var(--border); padding: 40px; }
.contact-form-wrap .section-title { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success { text-align: center; padding: 40px 24px; }
.form-success svg { margin: 0 auto 20px; }
.form-success h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 10px; }
.form-error {
  background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b;
  border-radius: 8px; padding: 12px 16px; margin-bottom: 20px; font-size: 14px;
}

/* ── LEGAL ── */
.legal-content h2 { font-size: 1.2rem; font-weight: 700; color: var(--green); margin: 36px 0 12px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { font-size: 15px; line-height: 1.75; margin-bottom: 10px; color: var(--dark); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .cards-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .levels-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .cards-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .anglais-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .activity-block { grid-template-columns: 1fr; }
  .activity-block.reverse { direction: ltr; }
  .principles-list.cols-2 { grid-template-columns: 1fr; }
  .levels-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { padding: 0; }
}

@media (max-width: 600px) {
  .cards-grid.cols-3, .cards-grid.cols-2 { grid-template-columns: 1fr; }
  .anglais-grid { grid-template-columns: 1fr; }
  .levels-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .info-strip-inner { flex-direction: column; gap: 12px; align-items: flex-start; }
  .topbar-inner { flex-wrap: wrap; gap: 8px; }
}
