/* ============================================================
   FOND ANATOLIE — Stylesheet
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #1a2744;
  --navy-dark: #111b33;
  --gold:   #c9a84c;
  --gold-light: #e0c06e;
  --white:  #ffffff;
  --off-white: #f7f7f5;
  --gray-light: #f0efe9;
  --gray:   #888888;
  --text:   #2b2b2b;
  --text-light: #555555;
  --border: #e0ddd4;
  --nav-height: 80px;
  --transition: 0.3s ease;
  --shadow: 0 4px 24px rgba(26,39,68,0.10);
  --shadow-lg: 0 8px 40px rgba(26,39,68,0.16);
}

html { scroll-behavior: smooth; }

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

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; color: var(--text-light); }

/* ---------- Utilities ---------- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 70px 0; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-white p, .text-white h1, .text-white h2, .text-white h3 { color: var(--white); }
.bg-navy   { background: var(--navy); }
.bg-off-white { background: var(--off-white); }
.bg-gray-light { background: var(--gray-light); }

.gold-line {
  display: inline-block;
  width: 60px; height: 3px;
  background: var(--gold);
  margin-bottom: 1.4rem;
}
.gold-line-center { display: block; margin: 0 auto 1.6rem; }

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  display: block;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: transparent;
  color: var(--navy);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(26,39,68,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: var(--navy-dark);
  box-shadow: var(--shadow);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.navbar__brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.navbar__brand-name {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}
.navbar__brand-sub {
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.navbar__menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.navbar__link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}
.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.navbar__link:hover,
.navbar__link.active { color: var(--white); }
.navbar__link:hover::after,
.navbar__link.active::after { width: 100%; }

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.navbar__toggle span {
  display: block;
  width: 25px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
}
.hero__slide.active { opacity: 1; }
.hero__slide-1 {
  background-image: linear-gradient(135deg, #1a2744 0%, #0d1628 40%, #2a1f3d 100%);
}
.hero__slide-2 {
  background-image: linear-gradient(135deg, #0d2340 0%, #1a3a5c 50%, #0a1a2e 100%);
}
.hero__slide-3 {
  background-image: linear-gradient(135deg, #1f1a35 0%, #1a2744 50%, #0d2340 100%);
}
/* Geometric pattern overlay */
.hero__pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,168,76,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.04) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(255,255,255,0.03) 0%, transparent 40%);
  pointer-events: none;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17,27,51,0.3) 0%,
    rgba(17,27,51,0.5) 50%,
    rgba(17,27,51,0.7) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 2rem;
  margin: 0 auto;
  text-align: center;
}
.hero__badge {
  display: inline-block;
  padding: 7px 20px;
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 2rem;
  border-radius: 2px;
}
.hero__title {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  line-height: 1.05;
}
.hero__title span { color: var(--gold); }
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.8rem;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero__actions { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }

.hero__dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.hero__dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.7), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(0.3) translateY(20px); }
}

/* ============================================================
   INTRO / CHIFFRES
   ============================================================ */
.intro {
  background: var(--white);
  padding: 80px 0;
}
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.intro__text h2 { margin-bottom: 1.2rem; }
.intro__text p { font-size: 1.05rem; line-height: 1.8; }
.intro__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.stat-card {
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  text-align: center;
  transition: box-shadow var(--transition);
}
.stat-card:hover { box-shadow: var(--shadow); }
.stat-card__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-card__label {
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 600;
}

/* ============================================================
   PILIERS / MISSIONS CARDS
   ============================================================ */
.pillars { background: var(--off-white); }
.pillars__header { text-align: center; margin-bottom: 4rem; }
.pillars__header h2 { margin-bottom: 1rem; }
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.pillar-card {
  background: var(--white);
  padding: 3rem 2.2rem;
  border-bottom: 3px solid transparent;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-card__icon {
  width: 64px; height: 64px;
  background: var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  transition: background var(--transition);
}
.pillar-card:hover .pillar-card__icon { background: var(--gold); }
.pillar-card__icon svg { width: 28px; height: 28px; transition: stroke var(--transition); }
.pillar-card:hover .pillar-card__icon svg { stroke: var(--white); }
.pillar-card h3 { margin-bottom: 1rem; }
.pillar-card p { font-size: 0.95rem; line-height: 1.75; margin-bottom: 0; }

/* ============================================================
   ENGAGEMENT / SPLIT SECTION
   ============================================================ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.split-section__visual {
  min-height: 520px;
  position: relative;
  overflow: hidden;
}
.split-section__visual-inner {
  position: absolute; inset: 0;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-visual-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(201,168,76,0.12) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(201,168,76,0.06) 0%, transparent 40%);
}
.split-visual-text {
  position: relative;
  text-align: center;
  padding: 3rem;
}
.split-visual-text .big-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--white);
  line-height: 1.4;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.split-visual-text .quote-author {
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.split-section__content {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.split-section__content.bg-navy {
  background: var(--navy);
}
.split-section__content h2 { margin-bottom: 1.4rem; }
.split-section__content p { margin-bottom: 1.2rem; line-height: 1.8; }

.check-list { margin-top: 1.5rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
  color: var(--text-light);
}
.check-list li::before {
  content: '';
  display: block;
  min-width: 20px; height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
  margin-top: 2px;
}
.check-list.white li { color: rgba(255,255,255,0.85); }

/* ============================================================
   VALEURS SECTION
   ============================================================ */
.values { background: var(--navy); padding: 100px 0; }
.values__header { text-align: center; margin-bottom: 4rem; }
.values__header h2 { color: var(--white); }
.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.value-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(201,168,76,0.2);
  transition: all var(--transition);
}
.value-card:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-4px);
}
.value-card__icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  display: block;
}
.value-card h4 {
  color: var(--gold);
  margin-bottom: 0.6rem;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.value-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================================
   SOUTENIR CTA
   ============================================================ */
.cta-section {
  background: var(--gray-light);
  padding: 100px 0;
}
.cta-section__inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-section__inner h2 { margin-bottom: 1.2rem; }
.cta-section__inner p { font-size: 1.05rem; margin-bottom: 2.5rem; }
.cta-section__actions { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   MISSIONS PAGE — specific
   ============================================================ */
.page-hero {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 60px;
  background: var(--navy);
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

.mission-block { padding: 100px 0; }
.mission-block:nth-child(even) { background: var(--off-white); }
.mission-block__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.mission-block__inner.reverse { direction: rtl; }
.mission-block__inner.reverse > * { direction: ltr; }
.mission-block__visual {
  aspect-ratio: 4/3;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.mission-visual-bg {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mission-visual-icon {
  font-size: 5rem;
  opacity: 0.25;
}
.mission-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,39,68,0.8) 0%, rgba(201,168,76,0.15) 100%);
}
.mission-block__content h2 { margin-bottom: 0.6rem; }
.mission-block__content p { line-height: 1.85; margin-bottom: 1rem; }
.mission-block__content .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.tag {
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--navy);
  border-radius: 2px;
  letter-spacing: 0.5px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 100px 0; }
.contact-section__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h3 { margin-bottom: 0.6rem; }
.contact-info p { margin-bottom: 2rem; line-height: 1.8; }
.info-block {
  margin-bottom: 1.8rem;
}
.info-block__label {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.info-block p { margin-bottom: 0; color: var(--text); }

.contact-form { }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  border-radius: 2px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group textarea { resize: vertical; min-height: 150px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aaa; }
.form-success {
  display: none;
  padding: 1.2rem 1.6rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--gold);
  color: var(--navy);
  font-size: 0.95rem;
  margin-top: 1rem;
  border-radius: 2px;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-section { padding: 100px 0; }
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 3rem;
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin-bottom: 1rem; font-size: 0.97rem; line-height: 1.8; }
.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-content ul li { margin-bottom: 0.4rem; font-size: 0.97rem; color: var(--text-light); }
.legal-placeholder {
  display: inline-block;
  background: #fff3cd;
  border: 1px dashed #c9a84c;
  padding: 2px 8px;
  border-radius: 2px;
  font-size: 0.85rem;
  color: #856404;
  font-style: italic;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
}
.footer__main {
  padding: 70px 0 50px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer__brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.footer__brand-sub {
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.footer__brand-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}
.footer__partner {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 8px 16px;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 2px;
}
.footer__partner-label {
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.footer__partner-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.5px;
}
.footer__col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.4rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold-light); }
.footer__address {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copyright {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer__legal-links {
  display: flex;
  gap: 1.5rem;
}
.footer__legal-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer__legal-links a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer__main { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .values__grid { grid-template-columns: repeat(2, 1fr); }
  .intro__grid { gap: 3rem; }
  .split-section__content { padding: 4rem 3rem; }
}

@media (max-width: 768px) {
  :root { --nav-height: 70px; }
  .navbar__menu { display: none; flex-direction: column; gap: 0; position: absolute; top: var(--nav-height); left: 0; right: 0; background: var(--navy-dark); padding: 1rem 0; border-top: 1px solid rgba(201,168,76,0.2); }
  .navbar__menu.open { display: flex; }
  .navbar__link { padding: 1rem 2rem; width: 100%; }
  .navbar__link::after { display: none; }
  .navbar__toggle { display: flex; }

  .hero__title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .hero__scroll { display: none; }

  .intro__grid { grid-template-columns: 1fr; }
  .intro__stats { grid-template-columns: 1fr 1fr; }
  .pillars__grid { grid-template-columns: 1fr; }
  .split-section { grid-template-columns: 1fr; }
  .split-section__visual { min-height: 300px; }
  .split-section__content { padding: 3rem 2rem; }

  .mission-block__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .mission-block__inner.reverse { direction: ltr; }

  .contact-section__grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .footer__main { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .values__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .section-padding { padding: 70px 0; }
  .container { padding: 0 1.2rem; }
  .hero__actions { flex-direction: column; align-items: center; }
  .intro__stats { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr; }
  .cta-section__actions { flex-direction: column; align-items: center; }
}
