@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=Plus+Jakarta+Sans:wght@400;500;600&family=Raleway:wght@600;700;800;900&display=swap');

/* ── Variables ── */
:root {
  --navy:         #0C1A45;
  --navy-mid:     #1B3478;
  --silver:       #8A96AA;
  --silver-light: #C4CBD8;
  --silver-pale:  #E8EBF2;
  --surface:      #F4F6FB;
  --ink:          #0C1223;
  --ink-muted:    #5A6478;
  --border:       #DDE1EC;
  --white:        #ffffff;
  --font-syne:    'Syne', 'Helvetica Neue', Arial, sans-serif;
  --font-jakarta: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-raleway: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--font-jakarta);
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
h1, h2, h3, h4 { font-family: var(--font-raleway); }

/* ── Scroll progress ── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--navy);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 200;
  pointer-events: none;
}

/* ── Announcement banner ── */
#announcement {
  position: relative;
  background: var(--navy);
  padding: 10px 48px 10px 16px;
  text-align: center;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), opacity 0.5s;
}
#announcement.hidden { display: none; }
#announcement p { font-size: 12px; color: var(--silver-light); }
#announcement .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--silver);
  margin-right: 10px;
  vertical-align: middle;
}
#announcement a { color: var(--white); text-decoration: underline; text-underline-offset: 2px; font-weight: 500; }
#announcement a:hover { text-decoration: none; }
#announcement-close {
  position: absolute;
  right: 8px; top: 50%;
  transform: translateY(-50%);
  color: var(--silver);
  padding: 8px;
  display: flex; align-items: center; justify-content: center;
  min-height: 44px; min-width: 44px;
  transition: color 0.15s;
}
#announcement-close:hover { color: var(--white); }
#announcement-close svg { width: 14px; height: 14px; }

/* ── Container ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 1024px) { .container { padding: 0 32px; } }

/* ── Navbar ── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
  border-color: transparent;
  box-shadow: 0 2px 32px rgba(12,26,69,0.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img {
  width: 36px; height: 36px;
  object-fit: contain;
}
.nav-logo span {
  font-family: var(--font-syne);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.02em;
  display: block;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2px;
}
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a {
  padding: 8px 16px;
  font-size: 14px;
  color: var(--silver);
  font-weight: 500;
  transition: color 0.15s;
  position: relative;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active {
  color: var(--navy);
  font-weight: 600;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 2px;
  background: var(--navy);
}

.nav-cta {
  display: none;
}
@media (min-width: 768px) { .nav-cta { display: flex; align-items: center; } }
.nav-cta a {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-jakarta);
  border-radius: 2px;
  transition: background 0.15s;
}
.nav-cta a:hover { background: var(--navy-mid); }

.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px; min-width: 44px;
  color: var(--ink-muted);
  transition: color 0.15s;
  padding: 8px;
}
.hamburger:hover { color: var(--ink); }
.hamburger svg { width: 20px; height: 20px; }
@media (min-width: 768px) { .hamburger { display: none; } }

/* Mobile overlay */
#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
#mobile-menu.open { transform: translateX(0); }
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.mobile-menu-header .nav-logo img { width: 36px; height: 36px; }
.mobile-menu-close {
  display: flex; align-items: center; justify-content: center;
  min-height: 44px; min-width: 44px;
  color: var(--ink-muted);
  transition: color 0.15s;
  padding: 8px;
}
.mobile-menu-close:hover { color: var(--ink); }
.mobile-menu-close svg { width: 20px; height: 20px; }
.mobile-nav {
  flex: 1;
  overflow-y: auto;
  padding: 32px 24px 16px;
}
.mobile-nav a {
  display: block;
  padding: 16px 0;
  font-family: var(--font-syne);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink-muted);
  border-bottom: 1px solid var(--silver-pale);
  transition: color 0.15s;
  letter-spacing: -0.02em;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--navy); }
.mobile-menu-footer {
  padding: 0 24px 32px;
  flex-shrink: 0;
}
.mobile-menu-footer a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px;
  background: var(--navy);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  border-radius: 2px;
  transition: background 0.15s;
}
.mobile-menu-footer a:hover { background: var(--navy-mid); }
body.menu-open { overflow: hidden; }

/* ── Footer ── */
footer {
  background: var(--navy);
  color: var(--silver);
}
.footer-inner {
  padding-top: 64px;
  padding-bottom: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 4fr 3fr 3fr;
  }
}
.footer-brand img { width: 40px; height: 40px; object-fit: contain; margin-bottom: 24px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: var(--silver); margin-bottom: 32px; max-width: 280px; }
.footer-brand ul { display: flex; flex-direction: column; gap: 16px; }
.footer-brand li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--silver); }
.footer-brand li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.footer-brand li a { color: var(--silver); transition: color 0.15s; }
.footer-brand li a:hover { color: var(--white); }
.footer-col h3 {
  font-family: var(--font-jakarta);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 24px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 14px; }
.footer-col a { font-size: 14px; color: var(--silver); transition: color 0.15s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ── Animations ── */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(12,26,69,0); }
  50%       { box-shadow: 0 0 0 8px rgba(12,26,69,0.08); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lineReveal {
  from { transform: translateY(105%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger delays */
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }

/* ── Gradient text ── */
.gradient-text {
  background: linear-gradient(90deg, #0C1A45 0%, #4A6FD4 50%, #0C1A45 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
.wave-underline { position: relative; display: inline; }
.wave-underline::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 5px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='5'%3E%3Cpath d='M0 3.5 Q12.5 0.5 25 3.5 Q37.5 6.5 50 3.5 Q62.5 0.5 75 3.5 Q87.5 6.5 100 3.5' stroke='%230C1A45' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") repeat-x;
  background-size: 50px 5px;
}
.cta-pulse:hover { animation: pulseGlow 1.5s ease-in-out infinite; }

/* ── Buttons / CTAs ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-jakarta);
  border-radius: 2px;
  transition: background 0.15s;
  min-height: 48px;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--navy-mid); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: 1px solid var(--border);
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-jakarta);
  border-radius: 2px;
  transition: border-color 0.15s;
  min-height: 48px;
  white-space: nowrap;
}
.btn-outline:hover { border-color: var(--navy); }
.btn-outline .arrow { display: inline-block; margin-left: 4px; transition: transform 0.15s; }
.btn-outline:hover .arrow { transform: translateX(4px); }
.link-arrow {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  font-family: var(--font-jakarta);
  transition: color 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.link-arrow:hover { color: var(--navy-mid); }
.link-arrow .arrow { display: inline-block; transition: transform 0.15s; }
.link-arrow:hover .arrow { transform: translateX(4px); }

/* ── Hero section (homepage) ── */
.hero-section { background: var(--white); overflow: hidden; }
.hero-inner { padding-top: 64px; padding-bottom: 48px; }
@media (min-width: 768px) { .hero-inner { padding-top: 96px; padding-bottom: 64px; } }

.hero-title {
  font-family: var(--font-raleway);
  font-size: clamp(30px, 7vw, 96px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  max-width: 960px;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line-inner {
  display: block;
  animation: lineReveal 0.75s cubic-bezier(0.22,1,0.36,1) both;
}
.hero-title .line:nth-child(1) .line-inner { animation-delay: 0.2s; }
.hero-title .line:nth-child(2) .line-inner { animation-delay: 0.33s; }
.hero-title .line:nth-child(3) .line-inner { animation-delay: 0.46s; }

.hero-body { font-size: 16px; color: var(--ink-muted); line-height: 1.7; max-width: 480px; margin-bottom: 16px; animation: fadeUp 0.6s 0.6s both; }
.hero-body-2 { font-size: 16px; color: var(--ink-muted); line-height: 1.7; max-width: 480px; margin-bottom: 40px; animation: fadeUp 0.6s 0.65s both; }

.hero-ctas { display: flex; flex-direction: column; gap: 12px; margin-bottom: 48px; animation: fadeUp 0.5s 0.75s both; }
@media (min-width: 640px) { .hero-ctas { flex-direction: row; } }

.brands-strip { border-top: 1px solid var(--border); padding-top: 24px; animation: fadeUp 0.6s 0.9s both; }
.brands-strip p { font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--silver); margin-bottom: 12px; font-weight: 600; }
.brands-list { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.brands-list span { font-size: 14px; color: var(--ink-muted); font-weight: 500; }

/* ── Stats strip ── */
.stats-section { background: var(--border); }
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-cell {
  background: var(--white);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}
.stat-cell::before {
  content: '';
  position: absolute;
  top: 0; left: 24px;
  width: 32px; height: 3px;
  background: var(--navy);
}
@media (min-width: 768px) {
  .stat-cell { padding: 44px 40px; }
  .stat-cell::before { left: 40px; width: 40px; }
}
@media (min-width: 1280px) { .stat-cell { padding: 52px 48px; } }
.stat-value {
  font-family: var(--font-raleway);
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 13px;
  color: var(--silver);
  font-weight: 500;
  line-height: 1.4;
}

/* ── Services section ── */
.section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-raleway);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.services-list { border-top: 1px solid var(--border); }
.service-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: padding-left 0.3s;
  cursor: default;
}
@media (min-width: 768px) { .service-row { gap: 32px; padding: 36px 0; } }
@media (min-width: 1024px) { .service-row { padding: 40px 0; } }
.service-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--navy);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s;
}
.service-row:hover { padding-left: 16px; }
.service-row:hover::before { transform: scaleY(1); }
.service-num {
  font-family: var(--font-raleway);
  font-size: 22px;
  font-weight: 700;
  color: var(--silver-pale);
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
  text-align: right;
}
@media (min-width: 768px) { .service-num { font-size: 32px; width: 48px; } }
.service-content { flex: 1; min-width: 0; }
.service-title {
  font-family: var(--font-raleway);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
  transition: color 0.15s;
}
.service-row:hover .service-title { color: var(--navy); }
.service-desc { font-size: 14px; color: var(--ink-muted); line-height: 1.7; max-width: 800px; }
.service-arrow {
  display: none;
  color: var(--silver-light);
  font-size: 20px;
  flex-shrink: 0;
  align-self: center;
  transition: color 0.2s, transform 0.2s;
}
@media (min-width: 768px) { .service-arrow { display: block; } }
.service-row:hover .service-arrow { color: var(--navy); transform: translateX(4px); }

/* ── About split panel ── */
.about-section { background: var(--surface); padding: 80px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 5fr 7fr; } }
.about-navy {
  background: var(--navy);
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
}
@media (min-width: 640px) { .about-navy { padding: 40px 40px; } }
@media (min-width: 1024px) { .about-navy { padding: 56px; min-height: auto; } }
.about-navy .watermark {
  position: absolute;
  bottom: 16px; right: 24px;
  font-family: var(--font-syne);
  font-size: 120px;
  font-weight: 800;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
@media (min-width: 1024px) { .about-navy .watermark { font-size: 160px; } }
.about-nav-label { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--silver); margin-bottom: 32px; }
.about-quote {
  font-family: var(--font-raleway);
  font-size: clamp(16px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  font-style: italic;
}
.about-attribution { margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); }
.about-attribution p:first-child { font-size: 14px; font-weight: 600; color: var(--white); }
.about-attribution p:last-child { font-size: 12px; color: var(--silver); margin-top: 2px; }
.about-content {
  background: var(--white);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 640px) { .about-content { padding: 40px; } }
@media (min-width: 1024px) { .about-content { padding: 56px; } }
.about-content .section-label { margin-bottom: 24px; }
.about-content h2 {
  font-family: var(--font-raleway);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 24px;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.about-content p { font-size: 14px; color: var(--ink-muted); line-height: 1.8; margin-bottom: 16px; }
.about-content p:last-of-type { margin-bottom: 40px; }

/* ── Brand list (homepage) ── */
.brands-section { padding: 80px 0; background: var(--white); }
.brands-editorial { border-top: 1px solid var(--border); }
.brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.2s;
  cursor: pointer;
}
@media (min-width: 768px) { .brand-row { gap: 24px; padding: 24px 0; } }
@media (min-width: 1024px) { .brand-row { padding: 28px 0; } }
.brand-row:hover { padding-left: 8px; }
.brand-row-num {
  font-size: 14px;
  font-weight: 500;
  color: var(--silver-light);
  width: 32px;
  flex-shrink: 0;
  font-family: var(--font-raleway);
  font-variant-numeric: tabular-nums;
}
.brand-row-content { flex: 1; min-width: 0; }
.brand-row-name {
  display: block;
  font-family: var(--font-raleway);
  font-size: clamp(20px, 2.8vw, 32px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.01em;
  transition: color 0.15s;
}
.brand-row:hover .brand-row-name { color: var(--navy-mid); }
.brand-row-tag { display: block; font-size: 12px; color: var(--silver); margin-top: 2px; }
@media (min-width: 768px) { .brand-row-tag { display: none; } }
.brand-row-tagline {
  display: none;
  font-size: 14px;
  color: var(--silver);
  flex-shrink: 0;
  text-align: right;
}
@media (min-width: 768px) { .brand-row-tagline { display: block; } }
.brand-row-arrow { color: var(--silver-light); flex-shrink: 0; margin-left: 16px; transition: color 0.2s, transform 0.2s; }
.brand-row:hover .brand-row-arrow { color: var(--navy); transform: translateX(4px); }

/* ── Navy hero (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 80px 0;
  overflow: hidden;
}
@media (min-width: 768px) { .page-hero { padding: 112px 0; } }
.page-hero-label { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--silver); margin-bottom: 24px; font-family: var(--font-jakarta); }
.page-hero h1 {
  font-family: var(--font-raleway);
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.03;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.page-hero p { font-size: 16px; color: var(--silver); line-height: 1.75; max-width: 520px; }
@media (min-width: 1024px) { .page-hero p { font-size: 17px; } }

/* ── Stat strip (inner pages) ── */
.stat-strip { background: var(--white); border-bottom: 1px solid var(--border); padding: 20px 0; }
@media (min-width: 768px) { .stat-strip { padding: 28px 0; } }
.stat-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-strip-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 16px 8px 0;
}
.stat-strip-cell:not(:first-child) { padding-left: 16px; border-left: 1px solid var(--border); }
@media (min-width: 640px) { .stat-strip-cell { flex-direction: row; align-items: baseline; gap: 12px; padding: 8px 0; } }
.stat-strip-value { font-family: var(--font-raleway); font-size: clamp(20px, 2.2vw, 28px); font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.stat-strip-label { font-size: 13px; color: var(--silver); font-weight: 500; }

/* ── Brand cards (nos-marques) ── */
.brands-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) { .brands-grid { grid-template-columns: 1fr 1fr; } }

.brand-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.brand-card:hover {
  border-color: var(--navy);
  box-shadow: 0 24px 56px rgba(12,26,69,0.14);
  transform: translateY(-6px);
}
.brand-card-num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-raleway);
  font-size: 40px;
  font-weight: 800;
  color: var(--silver-pale);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
@media (min-width: 768px) { .brand-card-num { font-size: 64px; } }
.brand-card-logo { margin-bottom: 24px; height: 56px; display: flex; align-items: center; }
@media (min-width: 768px) { .brand-card-logo { height: 64px; } }
.brand-card-logo img { height: 100%; max-width: 200px; object-fit: contain; object-position: left center; }
.brand-card-logo.large { height: 80px; }
@media (min-width: 768px) { .brand-card-logo.large { height: 96px; } }
.brand-card-logo.large img { max-width: 320px; }
.brand-card-body { flex: 1; }
.brand-card-name {
  font-family: var(--font-raleway);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.2;
}
.brand-card-tagline { font-size: 12px; font-weight: 500; color: var(--silver); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.brand-card-desc { font-size: 14px; color: var(--ink-muted); line-height: 1.7; }
.brand-card-tags { margin-top: 20px; font-size: 12px; color: var(--silver); line-height: 1.6; }
.brand-card-footer { margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--border); }
.brand-card-footer a { font-size: 14px; font-weight: 600; color: var(--navy); transition: color 0.15s; font-family: var(--font-jakarta); }
.brand-card-footer a:hover { color: var(--silver); }
.brand-card-footer .coming-soon { font-size: 14px; font-weight: 600; color: var(--silver); font-style: italic; font-family: var(--font-jakarta); }

/* ── Values grid ── */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
}
@media (min-width: 640px) { .values-grid { grid-template-columns: 1fr 1fr; } }
.value-cell {
  background: var(--white);
  padding: 24px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px) { .value-cell { padding: 40px; } }
.value-num {
  position: absolute;
  top: 16px; right: 24px;
  font-family: var(--font-raleway);
  font-size: 50px;
  font-weight: 800;
  color: var(--silver-pale);
  line-height: 1;
  user-select: none;
}
@media (min-width: 640px) { .value-num { font-size: 80px; } }
.value-title { font-family: var(--font-raleway); font-size: clamp(18px, 1.6vw, 22px); font-weight: 800; color: var(--navy); margin-bottom: 12px; position: relative; }
.value-desc { font-size: 14px; color: var(--ink-muted); line-height: 1.7; max-width: 300px; position: relative; }

/* ── Story section ── */
.story-section { padding: 80px 0; background: var(--white); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) { .story-grid { grid-template-columns: 7fr 4fr; gap: 40px; } }
.story-text { display: flex; flex-direction: column; gap: 24px; }
.story-text p { font-size: 16px; color: var(--ink-muted); line-height: 1.8; }
.story-sidebar { display: flex; flex-direction: column; gap: 20px; }
@media (min-width: 1024px) { .story-sidebar { position: sticky; top: 96px; } }
.quote-card { background: var(--navy); padding: 24px; }
@media (min-width: 640px) { .quote-card { padding: 32px; } }
.quote-mark { font-family: var(--font-raleway); font-size: 40px; font-weight: 700; color: var(--silver); margin-bottom: 20px; line-height: 1; }
.quote-text { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 24px; }
.quote-attribution { padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.quote-attribution p:first-child { font-size: 12px; font-weight: 700; color: var(--white); }
.quote-attribution p:last-child { font-size: 12px; color: var(--silver); margin-top: 2px; }
.stats-card { border: 1px solid var(--border); padding: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stats-card .stat-value { font-family: var(--font-raleway); font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 2px; letter-spacing: 0; }
.stats-card .stat-label { font-size: 12px; color: var(--silver); font-weight: 500; margin-top: 0; }

/* ── CTA strip ── */
.cta-strip { background: var(--navy); padding: 64px 0; }
.cta-strip-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 640px) { .cta-strip-inner { flex-direction: row; align-items: center; justify-content: space-between; } }
.cta-strip h2 { font-family: var(--font-raleway); font-size: clamp(22px, 3vw, 36px); font-weight: 800; color: var(--white); margin-bottom: 8px; letter-spacing: -0.01em; }
.cta-strip p { font-size: 14px; color: var(--silver); }
.cta-strip-actions { display: flex; flex-direction: column; gap: 16px; flex-shrink: 0; }
@media (min-width: 640px) { .cta-strip-actions { flex-direction: row; align-items: center; } }
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: var(--white);
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-jakarta);
  border-radius: 2px;
  min-height: 48px;
  transition: background 0.15s;
  white-space: nowrap;
}
.btn-white:hover { background: var(--silver-pale); }
.link-muted {
  font-size: 14px;
  font-weight: 600;
  color: var(--silver);
  font-family: var(--font-jakarta);
  min-height: 48px;
  display: flex;
  align-items: center;
  transition: color 0.15s;
  white-space: nowrap;
}
.link-muted:hover { color: var(--white); }

/* ── Perks rows ── */
.perks-list { border-top: 1px solid var(--border); }
.perk-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: padding-left 0.3s;
  cursor: default;
}
@media (min-width: 768px) { .perk-row { gap: 32px; } }
.perk-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--navy);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s;
}
.perk-row:hover { padding-left: 16px; }
.perk-row:hover::before { transform: scaleY(1); }
.perk-num {
  font-family: var(--font-raleway);
  font-size: 32px;
  font-weight: 700;
  color: var(--silver-pale);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
  text-align: right;
}
@media (min-width: 768px) { .perk-num { width: 48px; } }
.perk-content { flex: 1; }
.perk-title { font-family: var(--font-raleway); font-size: clamp(17px, 1.5vw, 20px); font-weight: 800; color: var(--ink); margin-bottom: 8px; transition: color 0.15s; }
.perk-row:hover .perk-title { color: var(--navy); }
.perk-desc { font-size: 14px; color: var(--ink-muted); line-height: 1.7; max-width: 800px; }

/* ── Recruitment CTA card ── */
.recruit-cta {
  background: var(--navy);
  padding: 40px;
  position: relative;
  overflow: hidden;
  max-width: 576px;
  margin: 0 auto;
}
@media (min-width: 1024px) { .recruit-cta { padding: 48px; } }
.recruit-cta .watermark {
  position: absolute;
  bottom: 8px; right: 24px;
  font-family: var(--font-syne);
  font-size: 120px;
  font-weight: 800;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.recruit-cta .inner { position: relative; }
.recruit-cta .sub { font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: var(--silver); margin-bottom: 24px; font-family: var(--font-jakarta); }
.recruit-cta h2 { font-family: var(--font-raleway); font-size: clamp(22px, 2.8vw, 32px); font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 16px; }
.recruit-cta p { font-size: 14px; color: var(--silver); line-height: 1.7; margin-bottom: 32px; max-width: 400px; }
.recruit-cta .btn-mail {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  color: var(--navy);
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-jakarta);
  min-height: 48px;
  transition: background 0.15s;
}
.recruit-cta .btn-mail:hover { background: var(--silver-pale); }
.recruit-cta .btn-mail svg { width: 16px; height: 16px; flex-shrink: 0; }
.recruit-cta .btn-mail .arrow { transition: transform 0.15s; }
.recruit-cta .btn-mail:hover .arrow { transform: translateX(4px); }
.recruit-cta .status { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; gap: 8px; }
.recruit-cta .dot-green { width: 8px; height: 8px; border-radius: 50%; background: #4CAF82; flex-shrink: 0; }
.recruit-cta .status p { font-size: 12px; color: var(--silver); }
.recruit-cta .status strong { color: var(--white); font-weight: 600; }

/* ── Contact page ── */
.contact-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: end;
}
@media (min-width: 1024px) { .contact-hero-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }
.contact-cta-block { display: flex; flex-direction: column; gap: 16px; }
.contact-cta-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  padding: 20px 28px;
  transition: background 0.2s;
}
.contact-cta-link:hover { background: rgba(255,255,255,0.1); }
.contact-cta-label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--silver); margin-bottom: 4px; font-family: var(--font-jakarta); }
.contact-cta-value { font-family: var(--font-raleway); font-size: 18px; font-weight: 700; color: var(--white); }
.contact-cta-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-left: 16px;
  transition: background 0.2s, border-color 0.2s;
}
.contact-cta-link:hover .contact-cta-icon { background: var(--white); border-color: var(--white); }
.contact-cta-icon svg { width: 16px; height: 16px; color: var(--white); transition: color 0.2s; }
.contact-cta-link:hover .contact-cta-icon svg { color: var(--navy); }

.info-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}
@media (min-width: 768px) { .info-strip-grid { grid-template-columns: repeat(4, 1fr); } }
.info-cell { background: var(--white); padding: 20px 20px; }
@media (min-width: 768px) { .info-cell { padding: 24px 28px; } }
.info-cell-header { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.info-cell-header svg { width: 14px; height: 14px; color: var(--silver); flex-shrink: 0; }
.info-cell-header span { font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--silver); font-family: var(--font-jakarta); }
.info-cell a, .info-cell p { font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.4; transition: color 0.15s; }
.info-cell a:hover { color: var(--navy); }

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 1024px) { .contact-main-grid { grid-template-columns: 2fr 3fr; } }

.contact-left {
  background: var(--navy);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px) { .contact-left { padding: 32px 40px; } }
@media (min-width: 1024px) { .contact-left { min-height: 360px; padding: 40px; } }
.contact-left .watermark {
  position: absolute; bottom: 8px; right: 16px;
  font-family: var(--font-syne); font-size: 120px;
  font-weight: 800; color: rgba(255,255,255,0.03);
  line-height: 1; user-select: none; pointer-events: none;
}
.contact-left .inner { position: relative; }
.contact-left .sub { font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: var(--silver); margin-bottom: 24px; font-family: var(--font-jakarta); }
.contact-left h2 { font-family: var(--font-raleway); font-size: clamp(22px, 2.8vw, 32px); font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 16px; }
.contact-left p { font-size: 14px; color: var(--silver); line-height: 1.7; margin-bottom: 32px; max-width: 300px; }
.contact-left .btn-mail {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--white); color: var(--navy);
  padding: 14px 24px; font-size: 14px; font-weight: 600;
  font-family: var(--font-jakarta); min-height: 48px;
  transition: background 0.15s;
}
.contact-left .btn-mail:hover { background: var(--silver-pale); }
.contact-left .btn-mail svg { width: 16px; height: 16px; flex-shrink: 0; }
.contact-left .btn-mail .arrow { transition: transform 0.15s; }
.contact-left .btn-mail:hover .arrow { transform: translateX(4px); }
.contact-left .status { position: relative; margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; gap: 8px; }
.contact-left .dot-green { width: 8px; height: 8px; border-radius: 50%; background: #4CAF82; flex-shrink: 0; }
.contact-left .status p { font-size: 12px; color: var(--silver); }
.contact-left .status strong { color: var(--white); font-weight: 600; }

.contact-right { display: flex; flex-direction: column; gap: 24px; }
.address-card { background: var(--white); border: 1px solid var(--border); padding: 32px; display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 640px) { .address-card { grid-template-columns: 1fr 1fr; } }
.address-block .sub { font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: var(--silver); margin-bottom: 16px; font-family: var(--font-jakarta); }
.address-block .row { display: flex; align-items: flex-start; gap: 12px; }
.address-block .row svg { width: 16px; height: 16px; color: var(--silver); flex-shrink: 0; margin-top: 2px; }
.address-block p { font-size: 14px; }
.address-block .street { font-weight: 600; color: var(--ink); }
.address-block .city, .address-block .country { color: var(--ink-muted); }
.hours-row { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.hours-row svg { width: 16px; height: 16px; color: var(--silver); flex-shrink: 0; }
.hours-item { display: flex; align-items: center; gap: 12px; }
.hours-day { font-size: 12px; color: var(--silver); width: 96px; }
.hours-time { font-size: 14px; font-weight: 600; color: var(--ink); }
.hours-time.closed { font-weight: 400; color: var(--silver); }
.map-cta {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--navy); min-height: 200px; position: relative; overflow: hidden;
  transition: background 0.15s;
}
.map-cta:hover { background: #111f50; }
.map-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(#8A96AA 1px, transparent 1px), linear-gradient(90deg, #8A96AA 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.map-pin-icon {
  position: relative;
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  transition: background 0.15s;
}
.map-cta:hover .map-pin-icon { background: rgba(255,255,255,0.1); }
.map-pin-icon svg { width: 20px; height: 20px; color: var(--white); }
.map-address { position: relative; font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 4px; font-family: var(--font-raleway); }
.map-sub { position: relative; font-size: 12px; color: var(--silver); display: flex; align-items: center; gap: 6px; transition: color 0.15s; }
.map-cta:hover .map-sub { color: var(--white); }
.map-sub svg { width: 14px; height: 14px; transition: transform 0.15s; }
.map-cta:hover .map-sub svg { transform: translateX(4px); }

/* ── Py sections ── */
.py-16 { padding-top: 64px; padding-bottom: 64px; }
.py-20 { padding-top: 80px; padding-bottom: 80px; }
.pb-24 { padding-bottom: 96px; }
.mb-10 { margin-bottom: 40px; }
.mb-12 { margin-bottom: 48px; }
.mt-8 { margin-top: 32px; }

.bg-white { background: var(--white); }
.bg-surface { background: var(--surface); }
.bg-navy { background: var(--navy); }
.border-b { border-bottom: 1px solid var(--border); }
.border-y { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE SYSTEM
   Breakpoints : 359 | 479 | 639 | 767 | 1023  (max-width)
                 768 | 1024 | 1280               (min-width)
   ══════════════════════════════════════════════════════════════════ */

/* ── Désactiver hover sur tactile ── */
@media (hover: none) {
  .service-row:hover { padding-left: 0; }
  .service-row:hover::before { transform: scaleY(0); }
  .perk-row:hover { padding-left: 0; }
  .perk-row:hover::before { transform: scaleY(0); }
  .brand-row:hover { padding-left: 0; }
  .brand-card:hover { transform: none; box-shadow: none; border-color: var(--border); }
}

/* ── Gradient text : fallback ── */
@supports not (-webkit-background-clip: text) {
  .gradient-text { background: none; -webkit-text-fill-color: var(--navy); color: var(--navy); }
}

/* ─────────────────────────────────────────────────────────────────
   < 360px  —  Téléphones très petits
   ───────────────────────────────────────────────────────────────── */
@media (max-width: 359px) {
  .container { padding: 0 16px; }
  .nav-inner { height: 60px; }
  .mobile-menu-header { padding: 0 16px; }
  .hero-title { font-size: 24px; }
  .section-title { font-size: 24px; }
  .page-hero h1 { font-size: 26px; }
  .stat-strip-value { font-size: 16px; }
}

/* ─────────────────────────────────────────────────────────────────
   < 480px  —  Petits téléphones
   ───────────────────────────────────────────────────────────────── */
@media (max-width: 479px) {
  /* Announcement */
  #announcement { padding: 8px 44px 8px 12px; text-align: left; }
  #announcement p { font-size: 11px; line-height: 1.5; }
  #announcement .dot { display: none; }
  /* Stat strip interne : 1 colonne */
  .stat-strip-grid { grid-template-columns: 1fr; }
  .stat-strip-cell { border-left: none !important; padding: 12px 0; border-top: 1px solid var(--border); }
  .stat-strip-cell:first-child { border-top: none; }
  /* Brand cards */
  .brand-card { padding: 20px 16px; }
  .brand-card-num { font-size: 32px; }
  .brand-card-logo { height: 48px; }
  .brand-card-logo img { max-width: 160px; }
  .brand-card-logo.large { height: 64px; }
  .brand-card-logo.large img { max-width: 220px; }
  /* Contact */
  .contact-cta-value { font-size: 13px; }
  .address-card { padding: 20px; gap: 20px; }
  .info-strip-grid { grid-template-columns: 1fr; }
  .info-cell { padding: 16px 0; border-top: 1px solid var(--border); }
  .info-cell:first-child { border-top: none; }
}

/* ─────────────────────────────────────────────────────────────────
   < 640px  —  Téléphones
   ───────────────────────────────────────────────────────────────── */
@media (max-width: 639px) {
  /* Hero */
  .hero-inner { padding-top: 40px; padding-bottom: 32px; }
  .hero-body, .hero-body-2 { max-width: 100%; }
  .brands-strip { margin-top: 4px; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline { width: 100%; justify-content: center; }
  /* Stat strip */
  .stat-strip-value { font-size: 18px; }
  .stat-strip-label { font-size: 12px; }
  /* Values */
  .value-cell { padding: 24px 20px; }
  .value-num { font-size: 48px; top: 12px; right: 12px; }
  /* CTA strip : tous boutons pleine largeur */
  .cta-strip-actions .btn-white,
  .cta-strip-inner > .btn-white { width: 100%; justify-content: center; }
  /* Hero */
  .hero-ctas { margin-bottom: 32px; }
  .hero-body-2 { margin-bottom: 24px; }
  /* Contact */
  .contact-cta-value { font-size: 15px; word-break: break-all; }
  .contact-cta-link { padding: 16px 20px; }
  .contact-hero-grid { gap: 32px; }
  /* Boutons email pleine largeur sur mobile */
  .recruit-cta .btn-mail,
  .contact-left .btn-mail { display: flex; width: 100%; justify-content: center; }
  /* Recruit CTA */
  .recruit-cta { padding: 32px 24px; }
  .recruit-cta .watermark { font-size: 80px; }
  .recruit-cta h2 { font-size: clamp(20px, 5vw, 28px); }
}

/* ─────────────────────────────────────────────────────────────────
   < 768px  —  Mobile général
   ───────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  /* Padding utilitaires */
  .py-20 { padding-top: 56px; padding-bottom: 56px; }
  .py-16 { padding-top: 48px; padding-bottom: 48px; }
  .pb-24 { padding-bottom: 72px; }
  .mb-12 { margin-bottom: 32px; }
  .mb-10 { margin-bottom: 24px; }
  /* Sections */
  .brands-section { padding: 56px 0; }
  .about-section { padding: 0; }
  .cta-strip { padding: 48px 0; }
  .story-section { padding: 56px 0; }
  /* Service / Perk rows */
  .service-row { gap: 12px; padding: 20px 0; }
  .service-num { font-size: 20px; width: 24px; }
  .perk-row { gap: 16px; padding: 24px 0; }
  .perk-num { font-size: 24px; width: 32px; }
  /* Page hero */
  .page-hero { padding: 56px 0; }
  .page-hero h1 { font-size: clamp(28px, 8vw, 56px); }
  /* Map */
  .map-cta { min-height: 160px; }
  /* Footer */
  .footer-inner { padding-top: 48px; padding-bottom: 32px; }
  .footer-brand p { max-width: 100%; }
  .footer-grid {
    gap: 0;
    padding-bottom: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-brand { padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .footer-col { padding-top: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .footer-col:last-child { border-bottom: none; padding-bottom: 36px; }
}

/* ─────────────────────────────────────────────────────────────────
   < 1024px  —  Tablette et mobile
   ───────────────────────────────────────────────────────────────── */
@media (max-width: 1023px) {
  /* About panels */
  .about-navy { padding: 32px 24px; min-height: auto; }
  .about-content { padding: 32px 24px; }
  .about-navy .watermark { font-size: 80px; }
  /* Contact left */
  .contact-left { min-height: auto; padding: 32px 24px; }
  .contact-left h2 { font-size: clamp(20px, 5vw, 28px); }
  .contact-left .watermark { font-size: 80px; }
  .contact-left .status { margin-top: 32px; }
}

/* ─────────────────────────────────────────────────────────────────
   768px – 1023px  —  Tablette uniquement
   ───────────────────────────────────────────────────────────────── */
@media (min-width: 768px) and (max-width: 1023px) {
  /* Sections */
  .about-section { padding: 60px 0; }
  .brands-section { padding: 64px 0; }
  .story-section { padding: 64px 0; }
  /* Page hero moins haut qu'en desktop */
  .page-hero { padding: 80px 0; }
  /* Story : 2 colonnes dès tablette */
  .story-grid { grid-template-columns: 5fr 3fr; gap: 40px; }
  .story-sidebar { position: sticky; top: 88px; }
  /* Contact hero : 2 colonnes */
  .contact-hero-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  /* About panels un peu plus aérés */
  .about-navy { padding: 40px 32px; }
  .about-content { padding: 40px 32px; }
}

/* ─────────────────────────────────────────────────────────────────
   ≥ 1280px  —  Grands écrans
   ───────────────────────────────────────────────────────────────── */
@media (min-width: 1280px) {
  .hero-inner { padding-top: 120px; padding-bottom: 96px; }
  .page-hero { padding: 128px 0; }
  .brands-section { padding: 96px 0; }
  .story-section { padding: 96px 0; }
  .about-section { padding: 96px 0; }
  .cta-strip { padding: 80px 0; }
  .py-20 { padding-top: 96px; padding-bottom: 96px; }
  .py-16 { padding-top: 80px; padding-bottom: 80px; }
  .pb-24 { padding-bottom: 112px; }
  .footer-inner { padding-top: 80px; padding-bottom: 48px; }
  .footer-grid { grid-template-columns: 5fr 2.5fr 2.5fr; }
  .stat-strip { padding: 36px 0; }
  .brands-grid { gap: 24px; }
  .brand-card { padding: 36px; }
}
