/*
Theme Name: Орлёнок — Детский лагерь с английским языком
Theme URI: https://orlyonok-vlg.ru
Author: Лагерь Орлёнок Волгоград
Description: Современная тема для детского лагеря «Орлёнок» с уклоном в английский язык. Яркий, живой дизайн с летней атмосферой.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: orlyonok
Tags: children, summer-camp, english, responsive, education
*/

/* ==========================================
   DESIGN TOKENS
   ========================================== */
:root {
  /* ПАЛИТРА — тёплый летний лес + британский акцент */
  --navy:        #0f2d4a;
  --navy-mid:    #1a4468;
  --blue:        #2176ae;
  --blue-light:  #d0e9f7;
  --teal:        #1b998b;
  --teal-light:  #c8f0ea;
  --lime:        #a8d657;
  --lime-dark:   #6da82b;
  --lime-light:  #eaf6cc;
  --sun:         #ffbc42;
  --sun-dark:    #d48f00;
  --sun-light:   #fff4d0;
  --coral:       #f4623a;
  --coral-light: #fde0d8;
  --cream:       #fefcf7;
  --sand:        #f5eed9;
  --ink:         #161c2a;
  --ink-2:       #2d3748;
  --muted:       #6b7a8d;
  --border:      #e8e2d4;
  --white:       #ffffff;

  /* ШРИФТЫ */
  --f-head: 'Syne', 'Trebuchet MS', sans-serif;
  --f-body: 'DM Sans', 'Segoe UI', sans-serif;
  --f-accent: 'Playfair Display', Georgia, serif;

  /* РАЗМЕРЫ */
  --r-xs: 6px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 48px;
  --r-full: 9999px;

  --shadow-xs: 0 1px 4px rgba(0,0,0,.07);
  --shadow-sm: 0 4px 16px rgba(0,0,0,.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,.11);
  --shadow-lg: 0 20px 56px rgba(0,0,0,.14);
  --shadow-inset: inset 0 2px 8px rgba(0,0,0,.06);

  --t: .3s cubic-bezier(.4,0,.2,1);
  --max: 1200px;
}

/* ==========================================
   RESET
   ========================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--t); }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* ==========================================
   LAYOUT
   ========================================== */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }
.section--alt { background: var(--sand); }
.section--dark { background: var(--navy); }
.section--navy-mid { background: var(--navy-mid); }

/* ==========================================
   TYPOGRAPHY HELPERS
   ========================================== */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-full);
  background: var(--lime-light);
  color: var(--lime-dark);
  margin-bottom: 18px;
}
.chip--blue { background: var(--blue-light); color: var(--blue); }
.chip--teal { background: var(--teal-light); color: var(--teal); }
.chip--sun  { background: var(--sun-light);  color: var(--sun-dark); }
.chip--coral { background: var(--coral-light); color: var(--coral); }
.chip--white { background: rgba(255,255,255,.15); color: var(--white); }

.section-title {
  font-family: var(--f-head);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--ink);
}
.section-title--white { color: var(--white); }
.section-title .accent { color: var(--teal); }
.section-title .sun-accent { color: var(--sun); }
.section-title .lime-accent { color: var(--lime-dark); }

.section-lead {
  font-size: 17px;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.75;
  margin-top: 14px;
}
.section-lead--white { color: rgba(255,255,255,.72); }

.center { text-align: center; }
.center .section-lead { margin-left: auto; margin-right: auto; }

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: var(--r-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--t);
  white-space: nowrap;
  line-height: 1;
}
.btn--primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 0 #0d6b5e, 0 6px 20px rgba(27,153,139,.3);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 8px 0 #0d6b5e, 0 14px 28px rgba(27,153,139,.35); }
.btn--primary:active { transform: translateY(0); box-shadow: 0 2px 0 #0d6b5e; }

.btn--sun {
  background: var(--sun);
  color: var(--ink);
  box-shadow: 0 4px 0 #b8890a, 0 6px 20px rgba(255,188,66,.35);
}
.btn--sun:hover { transform: translateY(-3px); box-shadow: 0 8px 0 #b8890a, 0 14px 28px rgba(255,188,66,.4); }
.btn--sun:active { transform: translateY(0); }

.btn--navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 0 #061624, 0 6px 20px rgba(15,45,74,.3);
}
.btn--navy:hover { transform: translateY(-3px); box-shadow: 0 8px 0 #061624, 0 14px 28px rgba(15,45,74,.35); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7); }

.btn--ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn--ghost-dark:hover { border-color: var(--teal); color: var(--teal); }

.btn--lg { padding: 18px 42px; font-size: 17px; }
.btn--sm { padding: 10px 22px; font-size: 13px; }

/* ==========================================
   NAVIGATION
   ========================================== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}
#site-header.is-scrolled {
  background: rgba(255,252,247,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 28px;
  max-width: var(--max);
  margin: 0 auto;
}

/* LOGO */
.site-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.logo-badge {
  width: 46px; height: 46px;
  border-radius: var(--r-md);
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 3px 0 #0d6b5e, 0 6px 16px rgba(27,153,139,.35);
  flex-shrink: 0;
  transition: var(--t);
}
.site-logo:hover .logo-badge { transform: rotate(-6deg) scale(1.05); }
.logo-words { line-height: 1.2; }
.logo-name {
  font-family: var(--f-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.3px;
  transition: var(--t);
}
#site-header:not(.is-scrolled) .logo-name { color: var(--white); }
.logo-sub {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .5px;
}
#site-header:not(.is-scrolled) .logo-sub { color: rgba(255,255,255,.6); }

/* NAV LINKS */
#primary-nav { margin-left: auto; }
#primary-nav ul {
  display: flex;
  align-items: center;
  gap: 2px;
}
#primary-nav a {
  display: block;
  padding: 8px 15px;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: var(--r-full);
  color: rgba(255,255,255,.85);
  transition: var(--t);
}
#site-header.is-scrolled #primary-nav a { color: var(--ink-2); }
#primary-nav a:hover { background: rgba(255,255,255,.18); color: var(--white); }
#site-header.is-scrolled #primary-nav a:hover { background: var(--teal-light); color: var(--teal); }
#primary-nav .current-menu-item > a { color: var(--white); background: rgba(255,255,255,.2); }
#site-header.is-scrolled #primary-nav .current-menu-item > a { background: var(--teal-light); color: var(--teal); }

/* English badge in nav */
.nav-eng-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-full);
  border: 1.5px solid rgba(255,255,255,.35);
  color: rgba(255,255,255,.9);
  margin-left: 6px;
  transition: var(--t);
}
#site-header.is-scrolled .nav-eng-badge { border-color: var(--teal); color: var(--teal); }

.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: 16px; }

.nav-phone {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  transition: var(--t);
}
#site-header.is-scrolled .nav-phone { color: var(--ink); }

/* HAMBURGER */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t);
}
#site-header.is-scrolled .nav-burger span { background: var(--ink); }

/* ==========================================
   HERO
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
}

/* Sky gradient BG */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(33,118,174,.45) 0%, transparent 70%),
    linear-gradient(160deg, var(--navy) 0%, #0a4a2e 55%, #1b6e45 100%);
}

/* Animated blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: .18;
  animation: drift 12s ease-in-out infinite;
}
.hero-blob-1 { width: 500px; height: 500px; background: var(--lime); top: -100px; right: 200px; animation-delay: 0s; }
.hero-blob-2 { width: 350px; height: 350px; background: var(--sun); bottom: -80px; right: 400px; animation-delay: 4s; }
.hero-blob-3 { width: 280px; height: 280px; background: var(--blue); top: 40%; left: -60px; animation-delay: 8s; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.04); }
  66% { transform: translate(-15px, 15px) scale(.97); }
}

/* Decorative dot grid */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-left {
  position: relative;
  z-index: 2;
  padding: 140px 60px 100px 80px;
  color: var(--white);
}
.hero-right {
  position: relative;
  z-index: 2;
  padding: 120px 80px 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

/* ENGLISH RIBBON */
.hero-eng-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  padding: 8px 20px;
  border-radius: var(--r-full);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 28px;
}
.hero-eng-ribbon .flag { font-size: 18px; }

.hero-title {
  font-family: var(--f-head);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title .line-accent {
  color: var(--sun);
  font-style: italic;
  font-family: var(--f-accent);
  font-weight: 700;
}
.hero-title .line-teal { color: var(--lime); }

.hero-desc {
  font-size: 18px;
  line-height: 1.72;
  color: rgba(255,255,255,.78);
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-desc strong { color: var(--white); font-weight: 700; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 52px; }

.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 32px;
  flex-wrap: wrap;
}
.hero-stat {
  padding: 0 36px 0 0;
  margin-right: 36px;
  border-right: 1px solid rgba(255,255,255,.15);
}
.hero-stat:last-child { border: none; margin: 0; }
.hero-stat-n {
  font-family: var(--f-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--sun);
  line-height: 1;
}
.hero-stat-l {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* HERO RIGHT — floating cards */
.hero-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  width: 100%;
  max-width: 360px;
  color: var(--white);
  transition: var(--t);
}
.hero-card:hover { background: rgba(255,255,255,.16); transform: translateY(-4px); }

.hero-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.hero-card-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.hero-card-label { font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,.6); }
.hero-card-title { font-family: var(--f-head); font-size: 17px; font-weight: 700; }

.hero-card-meta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-card-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.15);
}

/* SCROLL INDICATOR */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.45);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  animation: bounce-y 2s ease-in-out infinite;
}
.scroll-hint::after {
  content: '↓';
  font-size: 16px;
  animation: bounce-y 2s ease-in-out infinite .3s;
}
@keyframes bounce-y {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ==========================================
   WHY US / FEATURES
   ========================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.feature-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--t);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent-color, var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 58px; height: 58px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  background: var(--icon-bg, var(--teal-light));
}
.feature-card h3 {
  font-family: var(--f-head);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}
.feature-card p { font-size: 14.5px; color: var(--muted); line-height: 1.65; }

/* ==========================================
   ENGLISH BLOCK — special section
   ========================================== */
.english-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.english-section::before {
  content: 'ENGLISH';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-head);
  font-size: clamp(80px, 14vw, 200px);
  font-weight: 900;
  color: rgba(255,255,255,.03);
  letter-spacing: -4px;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.english-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.english-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.eng-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  text-align: center;
  transition: var(--t);
}
.eng-card:hover { background: rgba(255,255,255,.11); transform: translateY(-4px); }
.eng-card:first-child { grid-column: span 2; background: rgba(27,153,139,.2); border-color: rgba(27,153,139,.35); }
.eng-card-icon { font-size: 36px; margin-bottom: 10px; }
.eng-card-title { font-family: var(--f-head); font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.eng-card-sub { font-size: 13px; color: rgba(255,255,255,.55); }

.english-text { color: var(--white); }
.english-text .section-title { color: var(--white); }
.english-text .section-lead { color: rgba(255,255,255,.65); max-width: 460px; }

.eng-levels {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.eng-level {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: 14px 18px;
  transition: var(--t);
}
.eng-level:hover { background: rgba(255,255,255,.11); }
.eng-level-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.eng-level-name { font-weight: 700; font-size: 15px; color: var(--white); flex: 1; }
.eng-level-desc { font-size: 13px; color: rgba(255,255,255,.5); }
.eng-level-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  padding: 3px 10px;
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.7);
}

/* ==========================================
   PROGRAMS
   ========================================== */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.program-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--t);
  border: 1.5px solid var(--border);
}
.program-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: transparent; }

.program-top {
  padding: 36px 32px 28px;
  position: relative;
  overflow: hidden;
}
.program-top::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
}
.prog-ribbon {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.18);
  padding: 4px 12px;
  border-radius: var(--r-full);
  margin-bottom: 14px;
}
.prog-emoji { font-size: 50px; display: block; margin-bottom: 10px; }
.program-top h3 { font-family: var(--f-head); font-size: 23px; font-weight: 800; color: var(--white); margin-bottom: 6px; line-height: 1.15; }
.program-top p { font-size: 14px; color: rgba(255,255,255,.75); }

.program-body {
  padding: 24px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.prog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.prog-meta-item { display: flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 600; color: var(--ink-2); }
.prog-meta-item .mi { font-size: 15px; }

.prog-features { flex: 1; margin-bottom: 22px; }
.prog-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 7px;
  line-height: 1.5;
}
.prog-features li::before { content: '✓'; color: var(--teal); font-weight: 800; flex-shrink: 0; margin-top: 1px; }

.prog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.prog-price-val { font-family: var(--f-head); font-size: 26px; font-weight: 800; color: var(--ink); }
.prog-price-note { font-size: 12px; color: var(--muted); margin-top: 1px; }

/* ==========================================
   ACTIVITIES
   ========================================== */
.activities-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 52px;
}
.act-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 14px;
  text-align: center;
  cursor: default;
  transition: var(--t);
}
.act-item:hover { border-color: var(--teal); background: var(--teal-light); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.act-item:hover .act-name { color: var(--teal); }
.act-icon { font-size: 34px; margin-bottom: 10px; display: block; }
.act-name { font-size: 13px; font-weight: 700; color: var(--ink-2); line-height: 1.3; }

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.testi-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--r-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: var(--t);
}
.testi-card:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); }
.testi-stars { font-size: 16px; letter-spacing: 3px; }
.testi-text {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,.82);
  font-style: italic;
  flex: 1;
}
.testi-text::before { content: '\201C'; font-size: 28px; color: var(--teal); line-height: .5; display: block; margin-bottom: 8px; font-style: normal; }
.testi-author { display: flex; align-items: center; gap: 13px; }
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 14.5px; color: var(--white); }
.testi-role { font-size: 12.5px; color: rgba(255,255,255,.45); margin-top: 2px; }

/* ==========================================
   GALLERY
   ========================================== */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 14px;
  margin-top: 52px;
}
.gal-cell {
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: var(--t);
}
.gal-cell:hover { transform: scale(.97); box-shadow: var(--shadow-md); }
.gal-cell:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gal-cell:nth-child(5) { grid-column: span 2; }
.gal-inner {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  position: relative;
}
.gal-inner img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.gal-label {
  position: absolute;
  bottom: 12px; left: 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(4px);
  padding: 4px 12px;
  border-radius: var(--r-full);
  letter-spacing: .3px;
}

/* ==========================================
   FAQ
   ========================================== */
.faq-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: start;
  margin-top: 64px;
}
.faq-aside { position: sticky; top: 110px; }
.faq-aside-box {
  background: var(--teal);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  color: var(--white);
}
.faq-aside-box h3 { font-family: var(--f-head); font-size: 24px; font-weight: 800; margin-bottom: 10px; }
.faq-aside-box p { font-size: 15px; color: rgba(255,255,255,.78); margin-bottom: 28px; line-height: 1.65; }
.faq-contact-row { display: flex; flex-direction: column; gap: 12px; }
.faq-contact-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,.9); }

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--t);
}
.faq-item.is-open { border-color: var(--teal); box-shadow: 0 4px 20px rgba(27,153,139,.12); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--ink);
  user-select: none;
  gap: 16px;
}
.faq-toggle {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--teal);
  flex-shrink: 0;
  transition: var(--t);
}
.faq-item.is-open .faq-toggle { background: var(--teal); color: var(--white); transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.72;
}
.faq-item.is-open .faq-a { display: block; }

/* ==========================================
   BLOG
   ========================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.post-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--t);
}
.post-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.post-thumb {
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.post-thumb img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.post-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-full);
  margin-bottom: 12px;
}
.post-card h3 { font-family: var(--f-head); font-size: 18px; font-weight: 700; color: var(--ink); line-height: 1.3; margin-bottom: 10px; }
.post-card h3 a:hover { color: var(--teal); }
.post-excerpt { font-size: 14px; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 18px; }
.post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}
.post-more { font-weight: 700; color: var(--teal); }
.post-more:hover { color: var(--navy); }

/* ==========================================
   CONTACT
   ========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  margin-top: 56px;
  align-items: start;
}
.contact-info h3 { font-family: var(--f-head); font-size: 26px; font-weight: 800; margin-bottom: 10px; }
.contact-info p { font-size: 16px; color: var(--muted); margin-bottom: 36px; line-height: 1.7; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.contact-detail-icon {
  width: 46px; height: 46px;
  border-radius: var(--r-md);
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-detail strong { display: block; font-weight: 700; font-size: 15px; color: var(--ink); margin-bottom: 2px; }
.contact-detail span { font-size: 14px; color: var(--muted); }

.contact-socials { display: flex; gap: 10px; margin-top: 28px; flex-wrap: wrap; }
.soc-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: var(--r-full);
  font-size: 13.5px;
  font-weight: 700;
  border: 1.5px solid var(--border);
  color: var(--ink-2);
  transition: var(--t);
}
.soc-btn:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }

.contact-form-box {
  background: var(--sand);
  border-radius: var(--r-xl);
  padding: 40px;
}
.contact-form-box h3 { font-family: var(--f-head); font-size: 22px; font-weight: 800; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--ink-2); margin-bottom: 6px; letter-spacing: .2px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: 15px;
  color: var(--ink);
  transition: var(--t);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(27,153,139,.12); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-notice { font-size: 12.5px; color: var(--muted); line-height: 1.5; margin-top: 12px; }
.form-notice a { color: var(--teal); }

/* ==========================================
   CTA BANNER
   ========================================== */
.cta-band {
  background: linear-gradient(135deg, var(--sun) 0%, var(--coral) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '🦅';
  position: absolute;
  font-size: 280px;
  opacity: .07;
  top: -60px;
  right: -40px;
  line-height: 1;
  transform: rotate(-15deg);
}
.cta-band h2 { font-family: var(--f-head); font-size: clamp(26px, 4vw, 48px); font-weight: 900; color: var(--white); margin-bottom: 14px; }
.cta-band p { font-size: 18px; color: rgba(255,255,255,.88); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.65; }

/* ==========================================
   FOOTER
   ========================================== */
#site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.65);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 72px 28px 56px;
  max-width: var(--max);
  margin: 0 auto;
}
.footer-brand .logo-name { color: var(--white); margin-bottom: 4px; display: block; }
.footer-brand .logo-sub { color: rgba(255,255,255,.4); }
.footer-desc {
  font-size: 14px;
  line-height: 1.72;
  color: rgba(255,255,255,.5);
  margin: 18px 0 26px;
  max-width: 280px;
}
.footer-social { display: flex; gap: 8px; }
.footer-soc {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  transition: var(--t);
}
.footer-soc:hover { background: var(--teal); transform: translateY(-2px); }
.footer-col h4 { font-family: var(--f-head); font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.5); transition: var(--t); display: flex; align-items: center; gap: 5px; }
.footer-col a:hover { color: var(--teal); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 28px;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.3); }
.footer-bottom a { color: rgba(255,255,255,.4); margin: 0 10px; }
.footer-bottom a:hover { color: var(--teal); }

/* ==========================================
   PAGE HEADER
   ========================================== */
.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, #0a4a2e 60%, #1b6e45 100%);
  padding: 140px 28px 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: var(--white);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 28px 28px;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--f-head); font-size: clamp(32px, 5vw, 60px); font-weight: 900; letter-spacing: -1px; margin: 12px 0; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,.72); max-width: 480px; margin: 0 auto; line-height: 1.7; }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-aside { position: static; }
  .english-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 120px 28px 80px; }
  #primary-nav { display: none; position: fixed; inset: 0; background: var(--navy); z-index: 999; flex-direction: column; justify-content: center; align-items: center; gap: 8px; }
  #primary-nav.is-open { display: flex; }
  #primary-nav a { font-size: 22px; color: var(--white) !important; padding: 14px 24px; }
  .nav-burger { display: flex; }
  .nav-actions .btn { display: none; }
  .activities-strip { grid-template-columns: repeat(3, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; }
  .gal-cell:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gal-cell:nth-child(5) { grid-column: span 1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-stat { border: none; padding: 0; margin: 0; }
  .programs-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* stagger children */
.stagger .reveal:nth-child(1) { transition-delay: .05s; }
.stagger .reveal:nth-child(2) { transition-delay: .12s; }
.stagger .reveal:nth-child(3) { transition-delay: .19s; }
.stagger .reveal:nth-child(4) { transition-delay: .26s; }
.stagger .reveal:nth-child(5) { transition-delay: .33s; }
.stagger .reveal:nth-child(6) { transition-delay: .40s; }

/* Pulse badge */
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(27,153,139,.4); }
  70% { box-shadow: 0 0 0 14px rgba(27,153,139,0); }
  100% { box-shadow: 0 0 0 0 rgba(27,153,139,0); }
}
.pulse { animation: pulse-ring 2.5s infinite; }
