/* ============================================
   CESM SELECTIVIDAD fes — style.css
   Design: Editorial Spanish Blue + Gold
   ============================================ */

:root {
  --navy:    #0D1B3E;
  --blue:    #1A3A6B;
  --gold:    #D4A843;
  --gold-lt: #F0C96A;
  --red:     #C0392B;
  --cream:   #FBF8F2;
  --white:   #FFFFFF;
  --gray:    #F4F1EB;
  --text:    #1C1810;
  --muted:   #6B6355;
  --border:  rgba(212,168,67,.22);
}

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

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

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Libre Baskerville', serif; line-height: 1.15; }

.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .8rem;
}
.section-label::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--gold);
  display: inline-block;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--gold); }

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 700px;
  line-height: 1.8;
  margin-top: .5rem;
}

.section-header { margin-bottom: 3rem; }

.text-center { text-align: center; }
.text-center.section-label::before { display: none; }

/* ── LAYOUT ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

section { padding: 5rem 0; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  padding: .8rem 2rem;
  font-family: 'Outfit', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 2px solid var(--navy);
  transition: background .22s, color .22s, transform .18s;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  padding: .8rem 2rem;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 2px solid var(--navy);
  transition: background .22s, color .22s;
}
.btn-outline:hover { background: var(--navy); color: #fff; }

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: .8rem 2rem;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  transition: background .22s, transform .18s;
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); }

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  transition: color .2s;
  margin-top: 1.5rem;
}
.btn-text:hover { color: var(--gold); }

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(13,27,62,.97);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--gold);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.logo-cesm {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .04em;
}
.logo-sep { color: rgba(255,255,255,.3); font-size: 1.2rem; }
.logo-full {
  font-family: 'Outfit', sans-serif;
  font-size: .88rem;
  font-weight: 400;
  color: rgba(255,255,255,.75);
  letter-spacing: .04em;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: .2rem;
}
.nav-links a {
  display: block;
  padding: .5rem .9rem;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-lt); }

.cta-nav {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  margin-left: .5rem;
  padding: .5rem 1.2rem !important;
  transition: background .2s !important;
}
.cta-nav:hover { background: var(--gold-lt) !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.burger span { width: 24px; height: 2px; background: white; display: block; transition: .3s; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
}

.hero-gradient {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(26,58,107,.6) 0%, rgba(13,27,62,1) 65%);
}

.hero-pattern {
  position: absolute; inset: 0;
  background-image: 
    radial-gradient(circle, rgba(212,168,67,.12) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: .6;
}

/* Spain flag stripe accent */
.hero::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: linear-gradient(to bottom, #AA151B 33%, #F1BF00 33% 66%, #AA151B 66%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin-left: calc((100vw - 1200px)/2 + 2rem);
  animation: heroIn .9s ease forwards;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212,168,67,.4);
  padding: .35rem .9rem;
  margin-bottom: 1.8rem;
}

.hero-title {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-tagline {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: rgba(255,255,255,.55);
  font-weight: 300;
  letter-spacing: .03em;
  margin-bottom: 1.4rem;
}
.hero-tagline strong { color: var(--gold-lt); font-weight: 600; }

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero stats card */
.hero-card {
  position: absolute;
  right: max(2rem, calc((100vw - 1200px)/2 + 2rem));
  bottom: 4rem;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212,168,67,.3);
  padding: 1.8rem 2.2rem;
  z-index: 2;
  animation: heroIn 1.1s .2s ease both;
}
.hero-card-inner { display: flex; gap: 2rem; align-items: center; }
.hc-row { text-align: center; }
.hc-label { display: block; font-size: .7rem; color: rgba(255,255,255,.5); letter-spacing: .1em; text-transform: uppercase; margin-bottom: .3rem; }
.hc-row strong { font-family: 'Libre Baskerville', serif; font-size: 1.8rem; font-weight: 700; color: var(--gold); }
.hc-divider { width: 1px; height: 40px; background: rgba(212,168,67,.3); }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  left: max(2rem, calc((100vw - 1200px)/2 + 2rem));
  bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 2;
  color: rgba(255,255,255,.4);
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 2.5s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%,100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── ABOUT ── */
.about { background: var(--white); }

.about-img-wrap {
  position: relative;
  height: 480px;
}

.about-img-main {
  position: absolute;
  right: 0; top: 0;
  width: 82%; height: 82%;
  background: linear-gradient(145deg, var(--navy), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem;
  border-radius: 2px;
}
.about-img-icon {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-lt);
  box-shadow: 0 20px 45px rgba(0,0,0,.28);
}
.about-img-icon svg { width: 62px; height: 62px; stroke-width: 1.8; }
.about-img-icon-sm {
  width: 86px;
  height: 86px;
  background: rgba(13,27,62,.08);
  color: var(--navy);
  box-shadow: none;
}
.about-img-icon-sm svg { width: 38px; height: 38px; stroke-width: 1.9; }

.about-img-sm {
  position: absolute;
  left: 0; bottom: 0;
  width: 48%; height: 48%;
  background: var(--gold);
  border: 6px solid var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem;
  border-radius: 2px;
}

.about-year-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  font-family: 'Libre Baskerville', serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: .4rem .8rem;
}

.about-text p {
  font-size: .97rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1rem;
}

/* ── ADVANTAGES ── */
.advantages { background: var(--navy); }

.advantages .section-label { color: var(--gold); }
.advantages .section-title { color: #fff; }

.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
}

.adv-card {
  background: var(--navy);
  padding: 2.2rem;
  transition: background .25s;
  position: relative;
  overflow: hidden;
}
.adv-card:hover { background: rgba(255,255,255,.04); }
.adv-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  height: 2px; width: 0;
  background: var(--gold);
  transition: width .3s;
}
.adv-card:hover::after { width: 100%; }

.adv-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,168,67,.12);
  color: var(--gold-lt);
  border: 1px solid rgba(212,168,67,.18);
}
.adv-icon svg { width: 22px; height: 22px; stroke-width: 2; }
.adv-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,.9);
  margin-bottom: .5rem;
}
.adv-card p { font-size: .87rem; color: rgba(255,255,255,.45); line-height: 1.65; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--gray); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testi-card {
  background: var(--white);
  padding: 2rem;
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  transition: transform .25s, box-shadow .25s;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: 0 18px 45px rgba(13,27,62,.1); }

.testi-stars { color: var(--gold); font-size: .9rem; letter-spacing: .15em; margin-bottom: 1rem; }

.testi-card p {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: .94rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.testi-author {
  display: flex; align-items: center; gap: .8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.testi-author strong { font-size: .9rem; color: var(--navy); }
.testi-author small { font-size: .78rem; color: var(--muted); }

/* ── BRANCHES ── */
.branches { background: var(--white); }

.branches-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.branch-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.8rem 2rem;
  border: 1px solid var(--border);
  background: var(--cream);
  transition: background .25s, transform .25s, border-color .25s;
}
.branch-card:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateX(6px);
}
.branch-card:hover .branch-info h3 { color: #fff; }
.branch-card:hover .branch-count { color: var(--gold); }
.branch-card:hover .branch-arrow { color: var(--gold); }

.branch-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13,27,62,.06);
  color: var(--navy);
  transition: background .25s, color .25s;
}
.branch-icon svg { width: 26px; height: 26px; stroke-width: 1.9; }
.branch-card:hover .branch-icon { background: rgba(255,255,255,.08); color: var(--gold); }

.branch-info { flex: 1; }
.branch-info h3 {
  font-family: 'Outfit', sans-serif;
  font-size: .97rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .3rem;
  transition: color .25s;
}
.branch-count {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color .25s;
}
.branch-arrow { font-size: 1.2rem; color: var(--muted); transition: color .25s; }

/* ── STATS ── */
.stats { background: var(--gold); }
.stats .section-label { color: var(--navy); }
.stats .section-label::before { background: var(--navy); }
.stats .section-title { color: var(--navy); max-width: 600px; margin-bottom: 0; }

.stats-header { margin-bottom: 3.5rem; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(13,27,62,.15);
  border: 1px solid rgba(13,27,62,.15);
}

.stat-item {
  background: rgba(255,255,255,.15);
  padding: 2.2rem 1.5rem;
  text-align: center;
  transition: background .2s;
}
.stat-item:hover { background: rgba(255,255,255,.28); }

.stat-num {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  display: inline;
}
.stat-suffix {
  font-family: 'Libre Baskerville', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  display: inline;
}
.stat-item p { font-size: .82rem; color: rgba(13,27,62,.65); margin-top: .6rem; line-height: 1.5; }

/* ── PARTNERS ── */
.partners { background: var(--navy); padding: 3.5rem 0; }
.partners .section-label { display: block; text-align: center; justify-content: center; }
.partners .section-label::before { display: none; }

.partners-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.partner-item {
  padding: .7rem 1.2rem;
  border: 1px solid rgba(212,168,67,.3);
  color: rgba(255,255,255,.55);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .06em;
  transition: border-color .2s, color .2s;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
}
.partner-item svg { width: 16px; height: 16px; }
.partner-item:hover { border-color: var(--gold); color: var(--gold); }

/* ── FOOTER ── */
footer { background: #080F22; }

.footer-top { padding: 4rem 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-brand .footer-logo { margin-bottom: 1rem; }
.footer-brand .logo-cesm { color: var(--gold); }
.footer-brand .logo-sep, .footer-brand .logo-full { color: rgba(255,255,255,.4); }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.4); line-height: 1.75; margin-bottom: 1.2rem; }

.footer-newsletter {
  display: flex;
}
.footer-newsletter input {
  flex: 1;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-right: none;
  padding: .6rem 1rem;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: .85rem;
  outline: none;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,.3); }
.footer-newsletter button {
  background: var(--gold);
  border: none;
  padding: .6rem 1rem;
  color: var(--navy);
  font-size: 1rem;
  cursor: pointer;
  font-weight: 700;
  transition: background .2s;
}
.footer-newsletter button:hover { background: var(--gold-lt); }

.footer-col h5 {
  font-family: 'Outfit', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .55rem; }
.footer-col a {
  font-size: .87rem;
  color: rgba(255,255,255,.4);
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-contact p {
  font-size: .85rem;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
  margin-bottom: .6rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.5rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.25); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 10rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: linear-gradient(to bottom, #AA151B 33%, #F1BF00 33% 66%, #AA151B 66%);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(212,168,67,.08) 1px, transparent 1px);
  background-size: 40px 40px;
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero .breadcrumb {
  font-size: .78rem;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.page-hero .breadcrumb a { color: var(--gold); }
.page-hero h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: .8rem;
}
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.6);
  max-width: 600px;
  line-height: 1.8;
}

/* ── CONTENT SECTIONS (inner pages) ── */
.content-section { background: var(--white); padding: 5rem 0; }
.content-section-alt { background: var(--gray); padding: 5rem 0; }

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.reason-card {
  padding: 1.8rem;
  border: 1px solid var(--border);
  background: var(--cream);
  display: flex;
  gap: 1.2rem;
  transition: border-color .2s, transform .2s;
}
.reason-card:hover { border-color: var(--navy); transform: translateY(-3px); }
.reason-num {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  opacity: .6;
  line-height: 1;
  min-width: 2.5rem;
}
.reason-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .4rem;
}
.reason-card p { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* ── BRANCHES DETAILS ── */
.branches-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.branch-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  font-weight: 600;
  font-size: .92rem;
  color: var(--navy);
  transition: background .2s, transform .2s;
}
.branch-item:hover { background: var(--navy); color: #fff; transform: translateX(4px); }
.branch-item-num {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 2rem;
}

/* ── LEVELS (cours espagnol) ── */
.levels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.level-card {
  border: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  background: var(--white);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.level-card:hover { transform: translateY(-6px); box-shadow: 0 15px 40px rgba(13,27,62,.1); border-color: var(--gold); }
.level-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Libre Baskerville', serif;
  font-size: 1.4rem;
  font-weight: 700;
  padding: .5rem 1.2rem;
  margin-bottom: 1rem;
}
.level-card h3 {
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .6rem;
}
.level-card p { font-size: .87rem; color: var(--muted); line-height: 1.65; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  align-items: flex-start;
}
.contact-icon {
  width: 42px; height: 42px;
  background: var(--navy);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border-radius: 12px;
}
.contact-icon svg { width: 18px; height: 18px; stroke-width: 2; }
.contact-detail p { font-size: .9rem; color: var(--muted); line-height: 1.65; }

.contact-form { background: var(--white); padding: 2.5rem; border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 1px solid var(--border);
  background: var(--cream);
  font-family: 'Outfit', sans-serif;
  font-size: .9rem;
  color: var(--text);
  outline: none;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { height: 120px; resize: vertical; }

/* ── SOCIAL ── */
.social-strip {
  background: var(--navy);
  padding: 3rem 0;
  text-align: center;
}
.social-strip h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: .5rem;
}
.social-strip p {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.5rem;
}
.social-links { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.social-link {
  padding: .7rem 1.2rem;
  border: 1px solid rgba(212,168,67,.4);
  color: var(--gold);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .2s, border-color .2s, color .2s;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.social-link svg { width: 16px; height: 16px; stroke-width: 2; }
.social-link:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--gold);
  padding: 4rem 0;
  text-align: center;
}
.cta-band h2 { color: var(--navy); margin-bottom: .8rem; }
.cta-band p { color: rgba(13,27,62,.65); max-width: 540px; margin: 0 auto 2rem; font-size: .97rem; line-height: 1.75; }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-content { margin-left: 2rem; }
  .hero-card { right: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .burger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1.5rem;
    gap: .3rem;
    border-top: 2px solid var(--gold);
    z-index: 199;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .8rem 1rem; font-size: .9rem; }

  .hero { padding-top: 7rem; flex-direction: column; justify-content: flex-end; padding-bottom: 3rem; }
  .hero-card { position: static; margin-top: 2.5rem; }
  .hero-card-inner { gap: 1.5rem; }
  .scroll-hint { display: none; }

  .grid-2 { grid-template-columns: 1fr; gap: 3rem; }
  .adv-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .branches-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .reasons-grid { grid-template-columns: 1fr; }
  .branches-list { grid-template-columns: 1fr; }
  .levels-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-img-wrap { height: 300px; }

  section { padding: 3.5rem 0; }
}


.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
}
.footer-contact p i {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: .15rem;
}
.footer-contact p i svg {
  width: 15px;
  height: 15px;
  stroke-width: 2;
}
.inline-check {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: .05rem;
}
.immersion-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem;
  border-top: 3px solid var(--gold);
}
.immersion-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13,27,62,.06);
  color: var(--navy);
  margin-bottom: 1rem;
}
.immersion-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.9;
}
