:root {
  --navy: #0c1938;
  --navy-mid: #15274d;
  --navy-light: #1f3666;
  --copper: #6d7781;
  --copper-light: #8b96a1;
  --copper-bright: #aab6c2;
  --cream: #f5f0e8;
  --cream-dark: #ede6d8;
  --white: #fdfcfa;
  --text-dark: #0c1938;
  --text-mid: #2a3a5c;
  --text-light: #8899bb;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.6;
}

/* ─── NAVIGATION ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 60px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* MODIFICATION : Fond blanc pur avec 90% d'opacité pour laisser passer la texture du site */
  background: rgba(253, 252, 250, 0.9); 
  backdrop-filter: blur(12px);
  /* Une fine bordure pour séparer proprement la nav du reste du site */
  border-bottom: 1px solid rgba(12, 25, 56, 0.08); 
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
}

.nav-logo-img {
  max-height: 50px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  /* MODIFICATION : Les liens passent de blanc à bleu marine pour être lisibles sur le fond blanc */
  color: var(--navy); 
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px; /* Un poil plus épais pour le contraste */
  background: var(--copper);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-links a:hover { color: var(--copper); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  padding: 10px 24px;
  /* MODIFICATION : Le bouton s'adapte sur fond clair */
  border: 1px solid var(--navy);
  color: var(--navy) !important;
  font-weight: 600 !important;
  transition: all 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--navy) !important;
  color: var(--white) !important;
}

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

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(109,119,129,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(31,54,102,0.8) 0%, transparent 60%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(109,119,129,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109,119,129,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 60px 80px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-left {
  animation: none; /* Évite les conflits avec les enfants animés */
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--copper);
}

.hero-eyebrow-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--copper-light);
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 4.5vw, 68px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 12px;
}

.hero-title em {
  font-style: italic;
  color: var(--copper-light);
}

.hero-title-accent {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 4.5vw, 68px);
  font-weight: 600;
  color: var(--copper-light);
  display: block;
  line-height: 1.1;
  margin-bottom: 28px;
}

.hero-subtitle {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  line-height: 2;
  margin-bottom: 48px;
  border-left: 2px solid var(--copper);
  padding-left: 20px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-light) 100%);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 8px 32px rgba(109,119,129,0.35);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(109,119,129,0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
}
.btn-secondary:hover { color: var(--copper-light); }

.hero-right {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-emblem {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-emblem-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(109,119,129,0.2);
  animation: rotateRing 20s linear infinite;
}

.hero-emblem-ring:nth-child(1) { width: 320px; height: 320px; border-style: dashed; }
.hero-emblem-ring:nth-child(2) { width: 260px; height: 260px; animation-direction: reverse; animation-duration: 15s; }
.hero-emblem-ring:nth-child(3) { width: 200px; height: 200px; border-color: rgba(109,119,129,0.35); }

@keyframes rotateRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-emblem-center {
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-light) 50%, var(--copper-bright) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(109,119,129,0.4), 0 0 120px rgba(109,119,129,0.15);
  position: relative;
  z-index: 2;
}

.hero-emblem-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 600;
  color: white;
  line-height: 1;
  margin-top: 8px;
}

.hero-emblem-dot {
  position: absolute;
  width: 10px; height: 10px;
  background: var(--copper-light);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(109,119,129,0.8);
}

.hero-emblem-dot:nth-child(4) { top: 0; left: 50%; transform: translateX(-50%); }
.hero-emblem-dot:nth-child(5) { bottom: 0; left: 50%; transform: translateX(-50%); }
.hero-emblem-dot:nth-child(6) { left: 0; top: 50%; transform: translateY(-50%); }
.hero-emblem-dot:nth-child(7) { right: 0; top: 50%; transform: translateY(-50%); }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
}

.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--copper-light);
  line-height: 1;
}

.hero-stat-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

/* ─── SECTION SHARED ─── */
section { padding: 120px 60px; }

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.section-eyebrow-line { width: 32px; height: 1px; background: var(--copper); }
.section-eyebrow-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--copper);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 3.5vw, 54px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--copper);
}

/* ─── SERVICES ─── */
#services {
  background: var(--white);
  position: relative;
}

#services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--copper) 0%, var(--copper-light) 50%, transparent 100%);
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}

.services-desc {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-mid);
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--cream-dark);
}

.service-card {
  background: var(--white);
  padding: 56px 44px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--copper) 0%, var(--copper-light) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover { transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 32px;
  position: relative;
}

.service-icon svg { width: 100%; height: 100%; }

.service-number {
  position: absolute;
  top: -8px;
  right: -8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: rgba(109,119,129,0.1);
  line-height: 1;
}

.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.service-desc {
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 32px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--copper);
  text-decoration: none;
  transition: gap 0.3s;
}
.service-link:hover { gap: 14px; }
.service-link::after { content: '→'; }

/* ─── WHY US ─── */
#about {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

#about::after {
  content: 'C';
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 500px;
  font-weight: 600;
  color: rgba(109,119,129,0.04);
  line-height: 1;
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-left .section-title { color: var(--white); }

.about-body {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  margin-bottom: 48px;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pillar {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(109,119,129,0.15);
  position: relative;
}

.pillar:first-child { border-top: 1px solid rgba(109,119,129,0.15); }

.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--copper);
  letter-spacing: 2px;
  min-width: 28px;
  padding-top: 3px;
}

.pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}

.pillar-desc {
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
}

.about-card-mockup {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(109,119,129,0.2);
  padding: 50px;
  position: relative;
}

.about-card-mockup::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(109,119,129,0.1);
  transform: translate(8px, 8px);
  pointer-events: none;
}

.mockup-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(109,119,129,0.1);
}

.mockup-stat {
  background: rgba(12,25,56,0.8);
  padding: 32px 28px;
  text-align: center;
}

.mockup-stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--copper-light);
  line-height: 1;
  display: block;
}

.mockup-stat-lbl {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 8px;
  display: block;
}

/* ─── CONTACT & FORM ─── */
#contact {
  background: var(--cream);
  position: relative;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(109,119,129,0.2);
}

.contact-info-item:first-of-type { border-top: 1px solid rgba(109,119,129,0.2); margin-top: 40px; }

.contact-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.contact-icon svg { width: 18px; height: 18px; fill: white; }

.contact-info-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 6px;
}

.contact-info-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--navy);
}

.contact-form-container {
  background: var(--white);
  padding: 45px;
  border: 1px solid rgba(12, 25, 56, 0.1);
  box-shadow: 0 15px 45px rgba(12, 25, 56, 0.04);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }

.form-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
}

/* MODIFICATION ICI : Cible tous les inputs textes du HTML + le textarea */
#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form input[type="tel"],
#contact-form input[type="file"],
.form-textarea, 
#contact-form textarea {
  background: var(--cream);
  border: 1px solid rgba(12, 25, 56, 0.15);
  padding: 14px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: var(--navy);
  outline: none;
  transition: all 0.3s ease;
  resize: none;
  width: 100%;
}

/* Éléments au focus */
#contact-form input[type="text"]:focus,
#contact-form input[type="email"]:focus,
#contact-form input[type="tel"]:focus,
#contact-form input[type="file"]:focus,
#contact-form textarea:focus {
  border-color: var(--copper);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(109, 119, 129, 0.1);
}

#contact-form textarea { min-height: 120px; }

/* Stylisation premium spécifique pour l'upload de fichier */
#contact-form input[type="file"] {
  padding: 11px 14px;
  cursor: pointer;
  font-size: 11px;
}

#contact-form input[type="file"]::file-selector-button {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 6px 12px;
  margin-right: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s;
}

#contact-form input[type="file"]::file-selector-button:hover {
  background: var(--copper);
}

.form-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 12px;
  width: 100%;
  justify-content: center;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.form-submit-btn:hover {
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-light) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(109, 119, 129, 0.3);
}

.form-error-box {
  display: none;
  margin-top: 15px;
  padding: 12px;
  background: #fce8e6;
  border: 1px solid #f2b8b5;
  color: #b3261e;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}

/* ─── FOOTER ─── */
footer {
  background: #081126;
  padding: 60px;
  border-top: 1px solid rgba(109, 119, 129, 0.2);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo-c {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: white;
  box-shadow: 0 0 24px rgba(109,119,129,0.3);
}

.footer-brand-text .main {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--white);
  text-transform: uppercase;
}

.footer-brand-text .sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--copper-light);
  letter-spacing: 1px;
}

.footer-center { text-align: center; }

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-style: italic;
  color: rgba(255,255,255,0.35);
}

.footer-copy {
  font-size: 10px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.2);
  margin-top: 8px;
}

.footer-socials { display: flex; gap: 16px; }

.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(109, 119, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s;
}

.social-link:hover {
  border-color: var(--copper);
  color: var(--copper-light);
  background: rgba(109, 119, 129, 0.1);
}

/* Animations initiales */
.hero-eyebrow { animation: fadeUp 0.8s ease 0.2s both; }
.hero-title { animation: fadeUp 0.8s ease 0.4s both; }
.hero-title-accent { animation: fadeUp 0.8s ease 0.5s both; }
.hero-subtitle { animation: fadeUp 0.8s ease 0.6s both; }
.hero-actions { animation: fadeUp 0.8s ease 0.7s both; }
.hero-stats { animation: fadeUp 0.8s ease 0.8s both; }

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

/* Burger button */
.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s;
}

/* Menu mobile déroulant */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 80px;
  left: 0; right: 0;
  background: rgba(253,252,250,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(12,25,56,0.08);
  z-index: 999;
  padding: 20px 0;
}
.mobile-menu a {
  padding: 16px 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid rgba(12,25,56,0.06);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--copper); }
.mobile-menu.open { display: flex; }

@media (max-width: 768px) {
  .burger-btn { display: flex; }
}

@media (max-width: 768px) {
  /* Déjà présent : .burger-btn { display: flex; } */
  .nav-links { display: none; }

  section { padding: 80px 24px; }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 120px 24px 60px;
    gap: 40px;
  }
  .hero-right { display: none; } /* Masque l'emblème sur mobile */

  .services-header { grid-template-columns: 1fr; gap: 20px; }
  .services-grid { grid-template-columns: 1fr; }

  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-visual { display: none; } /* Optionnel */

  .contact-layout { grid-template-columns: 1fr; gap: 40px; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; gap: 28px; text-align: center; }
  .footer-socials { justify-content: center; }

  nav { padding: 0 24px; }
  footer { padding: 40px 24px; }
}
/* ─── RESPONSIVE MOBILE ─── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  nav { padding: 0 24px; }

  section { padding: 80px 24px; }
  footer  { padding: 40px 24px; }

  /* Hero */
  .hero-content {
    grid-template-columns: 1fr;
    padding: 120px 24px 60px;
    gap: 40px;
  }
  .hero-right { display: none; }
  .hero-title { font-size: clamp(36px, 8vw, 52px); }
  .hero-title-accent { font-size: clamp(36px, 8vw, 52px); }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
  .btn-primary { width: 100%; justify-content: center; }

  /* Services */
  .services-header { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
  .services-grid   { grid-template-columns: 1fr; }
  .service-card    { padding: 40px 28px; }

  /* About */
  .about-grid   { grid-template-columns: 1fr; gap: 50px; }
  .about-visual { display: none; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-container { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .footer-socials { justify-content: center; }

  /* Section title */
  .section-title { font-size: clamp(28px, 7vw, 40px); }
}

@media (max-width: 480px) {
  .hero-eyebrow { margin-bottom: 20px; }
  .contact-form-container { clip-path: none; }
  .form-submit-btn { clip-path: none; }
}