@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Barlow:wght@300;400;500;600&family=Barlow+Condensed:wght@400;500;600&display=swap');

/* ── VARIABLES ────────────────────────────────────────────── */
:root {
  --navy:      #0A1628;
  --navy-mid:  #112040;
  --navy-lt:   #1A3060;
  --gold:      #C4A44A;
  --gold-lt:   #E0C97A;
  --cream:     #F5F2EB;
  --white:     #FFFFFF;
  --text:      #1E1E2E;
  --muted:     #7A8099;
  --border:    rgba(196,164,74,0.25);
  --font-disp: 'Cormorant Garamond', serif;
  --font-body: 'Barlow', sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── NAVIGATION ───────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem;
  height: 72px;
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
}
.nav-logo img { height: 36px; width: auto; }
.nav-logo-text {
  font-family: var(--font-cond);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--white);
}
.nav-logo-world { color: var(--gold); }

/* ── LANG SWITCHER ────────────────────────────────────────── */
.lang-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  flex-shrink: 0;
  align-items: center;
  margin-left: 1.25rem;
  max-width: 152px;
}
.lang-btn {
  font-family: var(--font-cond);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.38);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.13);
  padding: 0.26rem 0.5rem 0.24rem;
  line-height: 1;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  white-space: nowrap;
}
.lang-btn:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.32);
}
.lang-active {
  color: var(--gold) !important;
  border-color: rgba(196,164,74,0.5) !important;
  box-shadow: inset 0 -2px 0 0 var(--gold);
}
.lang-active:hover { color: var(--gold) !important; }

/* ── RTL (Arabic) ─────────────────────────────────────────── */
[dir="rtl"] nav        { flex-direction: row-reverse; }
[dir="rtl"] .nav-links { flex-direction: row-reverse; }
[dir="rtl"] .lang-switcher { margin-left: 0; margin-right: 1.25rem; }
[dir="rtl"] .hero-content  { direction: rtl; }
[dir="rtl"] .hero-eyebrow::before { display: none; }
[dir="rtl"] .section-label { flex-direction: row-reverse; }
[dir="rtl"] .section-label::after { display: none; }
[dir="rtl"] .about-mandate::before { left: auto; right: 0; }
[dir="rtl"] .stat-item { border-left: none; border-right: 2px solid var(--border); padding-left: 0; padding-right: 1rem; }
[dir="rtl"] .footer-inner  { flex-direction: row-reverse; }
[dir="rtl"] .footer-links  { flex-direction: row-reverse; }
[dir="rtl"] .footer-bottom { flex-direction: row-reverse; }
[dir="rtl"] .contact-grid  { direction: rtl; }
[dir="rtl"] .form-row      { direction: rtl; }
[dir="rtl"] input, [dir="rtl"] textarea, [dir="rtl"] select { text-align: right; direction: rtl; }
[dir="rtl"] .form-consent  { flex-direction: row-reverse; }
[dir="rtl"] #cookie-banner { direction: rtl; }
[dir="rtl"] .cookie-actions { flex-direction: row-reverse; }
.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
}
.nav-links a {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.nav-cta {
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy) !important;
  background: var(--gold);
  padding: 0.55rem 1.4rem;
  border-bottom: none !important;
  transition: background var(--transition), color var(--transition) !important;
}
.nav-cta:hover { background: var(--gold-lt) !important; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(196,164,74,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(26,48,96,0.8) 0%, transparent 70%),
    linear-gradient(135deg, #0A1628 0%, #112040 50%, #0D1B35 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(196,164,74,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,164,74,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 6rem 3rem 4rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 2rem; height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--font-disp);
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 420px;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
}
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 2.5rem;
  backdrop-filter: blur(8px);
}
.hero-card-label {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.stat-item {
  border-left: 2px solid var(--border);
  padding-left: 1rem;
}
.stat-num {
  font-family: var(--font-disp);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.3rem;
  line-height: 1.3;
}
.hero-locations {
  margin-top: 2rem;
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.hero-loc {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}
.hero-loc::before { content: '◈ '; color: var(--gold); font-size: 0.6rem; }

/* ── SECTION BASE ─────────────────────────────────────────── */
section { padding: 6rem 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 3rem; }
.section-label {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section-label::after {
  content: '';
  display: block; flex: 1; max-width: 3rem; height: 1px;
  background: var(--gold); opacity: 0.4;
}
.section-title {
  font-family: var(--font-disp);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-intro {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
}

/* ── ABOUT ────────────────────────────────────────────────── */
.about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.about-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.2rem;
}
.about-text p:first-child {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--navy);
}
.about-mandate {
  background: var(--navy);
  padding: 2.5rem;
  position: relative;
}
.about-mandate::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--gold);
}
.about-mandate-label {
  font-family: var(--font-cond);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.about-mandate blockquote {
  font-family: var(--font-disp);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.about-mandate p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.about-mandate strong { color: rgba(255,255,255,0.85); font-weight: 500; }

/* ── EXPERTISE ────────────────────────────────────────────── */
.expertise { background: var(--cream); }
.expertise-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5px;
  margin-top: 3rem;
  background: var(--border);
}
.expertise-card {
  background: var(--white);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.expertise-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.expertise-card:hover::after { width: 100%; }
.expertise-card:hover { background: #FAFAFA; }
.expertise-icon {
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-size: 1.1rem;
}
.expertise-card h3 {
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.expertise-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── PROCESS ──────────────────────────────────────────────── */
.process { background: var(--navy); }
.process .section-title { color: var(--white); }
.process .section-intro { color: rgba(255,255,255,0.5); }
.process-steps {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 0;
  margin-top: 3.5rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 2rem; left: 8.33%; right: 8.33%;
  height: 1px; background: var(--border);
}
.process-step {
  padding: 0 1rem;
  text-align: center;
}
.process-dot {
  width: 4rem; height: 4rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  background: var(--navy);
  position: relative; z-index: 1;
  color: var(--gold);
  font-size: 1rem;
  transition: all var(--transition);
}
.process-step:hover .process-dot {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.process-step h4 {
  font-family: var(--font-cond);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

/* ── TEAM ─────────────────────────────────────────────────── */
.team { background: var(--cream); }
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  margin-top: 3rem;
}
.team-card {
  background: var(--white);
  overflow: hidden;
  transition: transform var(--transition);
}
.team-card:hover { transform: translateY(-4px); }
.team-photo {
  height: 240px;
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.team-photo-placeholder {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--navy-lt);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-disp);
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 300;
}
.team-info { padding: 1.75rem; }
.team-role {
  font-family: var(--font-cond);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.team-name {
  font-family: var(--font-disp);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.team-bio {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── PRINCIPLES ───────────────────────────────────────────── */
.principles {
  background: var(--navy);
  padding: 5rem 0;
}
.principles-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
}
.principle-item {
  padding: 2.5rem;
  border-right: 1px solid var(--border);
  text-align: center;
  transition: background var(--transition);
}
.principle-item:last-child { border-right: none; }
.principle-item:hover { background: rgba(196,164,74,0.05); }
.principle-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gold);
}
.principle-name {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.principle-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: #060E1A;
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-brand {
  font-family: var(--font-cond);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--white);
}
.footer-brand span { color: var(--gold); }
.footer-cities {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
}
.footer-links {
  display: flex; gap: 2rem; list-style: none;
}
.footer-links a {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
}
.footer-bottom a { color: rgba(255,255,255,0.3); }
.footer-bottom a:hover { color: var(--gold); }

/* ── CONTACT PAGE ─────────────────────────────────────────── */
.contact-hero {
  min-height: 40vh;
  background: var(--navy);
  display: flex; align-items: flex-end;
  padding-top: 72px;
}
.contact-hero-inner {
  padding: 4rem 3rem;
}
.contact-section { background: var(--cream); padding: 5rem 0; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem;
}
.contact-info-block {
  margin-bottom: 2rem;
}
.contact-info-block dt {
  font-family: var(--font-cond);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.contact-info-block dd {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
}
.contact-form {
  background: var(--white);
  padding: 2.5rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
label {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid #DDD9CE;
  border-radius: 0;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color var(--transition);
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
textarea { resize: vertical; min-height: 120px; }
.form-consent {
  display: flex; gap: 0.75rem; align-items: flex-start;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}
.form-consent input { width: auto; margin-top: 3px; }
.form-consent a { color: var(--gold); text-decoration: underline; }
.btn-submit {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  padding: 1rem;
  font-family: var(--font-cond);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  margin-top: 1rem;
}
.btn-submit:hover { background: var(--navy-lt); }
.form-message {
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  margin-top: 1rem;
  display: none;
}
.form-message.success { background: #EAF5EA; color: #2E7D32; border-left: 3px solid #2E7D32; }
.form-message.error   { background: #FDECEA; color: #C62828; border-left: 3px solid #C62828; }

/* ── COOKIE BANNER ────────────────────────────────────────── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: rgba(10,22,40,0.97);
  border-top: 1px solid var(--border);
  padding: 1.25rem 3rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  backdrop-filter: blur(12px);
}
.cookie-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-btn {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 1.2rem;
  border: none; cursor: pointer;
  transition: all var(--transition);
}
.cookie-accept { background: var(--gold); color: var(--navy); }
.cookie-accept:hover { background: var(--gold-lt); }
.cookie-refuse { background: transparent; color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.2); }
.cookie-refuse:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }

/* ── SUCCESS PAGE ─────────────────────────────────────────── */
.success-wrap {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy);
  padding: 2rem;
}
.success-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 4rem;
  max-width: 520px;
  text-align: center;
}
.success-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 1.5rem; }
.success-card h2 {
  font-family: var(--font-disp);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.success-card p { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.7; }
.success-card .btn { margin-top: 2rem; }

/* ── MENTIONS LÉGALES ─────────────────────────────────────── */
.legal-section { padding: 5rem 0; background: var(--cream); }
.legal-content {
  max-width: 760px;
  background: var(--white);
  padding: 3rem 3.5rem;
}
.legal-content h2 {
  font-family: var(--font-disp); font-size: 1.5rem; font-weight: 400;
  color: var(--navy); margin: 2rem 0 0.75rem;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { font-size: 0.88rem; color: #555; line-height: 1.75; margin-bottom: 0.8rem; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 1.5rem 3rem; }
  .hero-card { display: none; }
  .container { padding: 0 1.5rem; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .expertise-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-steps::before { display: none; }
  .team-grid { grid-template-columns: 1fr; }
  .principles-inner { grid-template-columns: repeat(2, 1fr); }
  .principle-item:nth-child(2) { border-right: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  #cookie-banner { flex-direction: column; padding: 1.25rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}
.fade-up:nth-child(1) { animation-delay: 0.1s; }
.fade-up:nth-child(2) { animation-delay: 0.2s; }
.fade-up:nth-child(3) { animation-delay: 0.3s; }
.fade-up:nth-child(4) { animation-delay: 0.4s; }
.fade-up:nth-child(5) { animation-delay: 0.5s; }
.fade-up:nth-child(6) { animation-delay: 0.6s; }
