/* ============================================================
   BLOOMETE EVENTS — Stylesheet
   Polices : Gotham Medium (local) + Cormorant Garamond (Google)
   ============================================================ */

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

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Medium.otf') format('opentype'),
       url('../fonts/Gotham-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ── VARIABLES ── */
:root {
  --green1: #AAC0AC;
  --green2: #5F7A7F;
  --green2-dark: #4a6166;
  --cream: #FDF8F4;
  --cream2: #F5F0EA;
  --black: #000000;
  --ink: #1a1a18;
  --muted: #6b6b65;
  --border: rgba(0,0,0,0.1);
  --nav-height: 72px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Gotham', 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── TYPOGRAPHY SCALE ── */
.display {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1.0;
}

.label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green2);
}

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 0.5px solid transparent;
}

.nav.scrolled {
  background: rgba(253, 248, 244, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}

.nav-logo {
  height: 28px;
  width: auto;
  display: block;
}

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

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--green2); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  border: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.nav-cta:hover {
  background: var(--green2);
  border-color: var(--green2);
  color: #fff;
}

/* ── HAMBURGER (mobile) ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE NAV OVERLAY ── */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  transition: color 0.2s;
}

.nav-mobile a:hover { color: var(--green2); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.35s; }
.reveal-delay-4 { transition-delay: 0.5s; }
.reveal-delay-5 { transition-delay: 0.65s; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.btn-dark {
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
}

.btn-dark:hover {
  background: var(--green2);
  border-color: var(--green2);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-outline:hover {
  background: var(--green2);
  border-color: var(--green2);
  color: #fff;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* ── HERO ── */
.hero {
  height: 100vh;
  min-height: 640px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-left {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 72px 80px;
}

.hero-left .label {
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease 0.2s forwards;
}

.hero-left h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 4.8vw, 76px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.05;
  word-break: break-word;
  hyphens: auto;
  color: var(--ink);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease 0.35s forwards;
}

.hero-left p {
  font-size: 16px;
  color: var(--muted);
  max-width: 420px;
  line-height: 1.75;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease 0.5s forwards;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease 0.65s forwards;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 0.5px solid var(--border);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease 0.8s forwards;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}

.hero-stat-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* Hero right */
.hero-right {
  background: var(--green1);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 64px 56px;
  overflow: hidden;
}

.hero-right-photo {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.92;
}

/* Gradient overlay pour lisibilité du texte bas */
.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 45%);
  pointer-events: none;
  z-index: 1;
}

.hero-right-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
  z-index: 1;
}

.hero-right-content {
  position: relative;
  z-index: 3;
}

.hero-right-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-style: italic;
  font-weight: 300;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 0;
  max-width: 380px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.hero-right-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-right-stat {
  color: rgba(255,255,255,0.9);
}

.hero-right-stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  font-weight: 300;
  line-height: 1;
}

.hero-right-stat-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* Hero clients list */
.hero-clients {
  margin-top: 8px;
}

.hero-clients-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: block;
  margin-bottom: 12px;
}

.hero-clients-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-clients-list span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #fff;
  padding: 6px 16px;
  border: 0.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,0.06);
}

/* ── TICKER ── */
.ticker {
  background: var(--black);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 0;
  animation: ticker 28s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding: 0 32px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.ticker-dot {
  width: 3px;
  height: 3px;
  background: var(--green1);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── SECTIONS COMMUNES ── */
.section {
  padding: 112px 72px;
}

.section-header {
  margin-bottom: 64px;
}

.section-header .label {
  display: block;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.05;
  color: var(--ink);
}

/* ── NOTRE APPROCHE ── */
.approche {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.approche-left h2 {
  font-family: var(--font-display);
  font-size: clamp(44px, 4.5vw, 68px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  color: var(--ink);
}

.approche-left h2 em {
  color: var(--green2);
  font-style: italic;
}

.approche-right p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 24px;
}

.approche-right p strong { color: var(--ink); }

.capitalcom-badge {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding: 24px 28px;
  border: 0.5px solid var(--border);
  background: var(--cream2);
}

.capitalcom-badge-name {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.capitalcom-badge-desc {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.capitalcom-divider {
  width: 0.5px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── PRESTATIONS ── */
.prestations {
  background: var(--cream2);
}

.prestations-list {
  list-style: none;
  border-top: 0.5px solid var(--border);
}

.prestation-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 0.5px solid var(--border);
  cursor: default;
  transition: padding-left 0.2s, background 0.2s;
  position: relative;
}

.prestation-item:hover {
  padding-left: 16px;
  background: var(--cream);
}

.prestation-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  font-weight: 300;
  color: var(--green1);
  line-height: 1;
}

.prestation-body { flex: 1; }

.prestation-name {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.prestation-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.prestation-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green2);
  border: 0.5px solid var(--green1);
  padding: 6px 14px;
  white-space: nowrap;
}

/* ── ANGLE RH ── */
.angle-rh {
  background: var(--green2);
  padding: 112px 72px;
}

.angle-rh-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 400px;
}

.angle-rh-left {
  padding-right: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.angle-rh-left .label { color: rgba(255,255,255,0.5); }

.angle-rh-left h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  line-height: 1.1;
  margin: 16px 0 24px;
}

.angle-rh-left p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 32px;
}

.angle-rh-left a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 0.5px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

.angle-rh-left a:hover { border-color: #fff; }

.angle-rh-right {
  background: var(--green2-dark);
  padding: 56px 56px 56px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 36px;
}

.rh-pilier {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.rh-pilier-num {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--green1);
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.rh-pilier-name {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
}

.rh-pilier-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ── PORTFOLIO ── */
.portfolio {
  background: var(--cream);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  background: var(--green1);
  cursor: pointer;
}

.portfolio-card:first-child {
  grid-row: 1 / 3;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
  min-height: 300px;
}

.portfolio-card:first-child img {
  min-height: 600px;
}

.portfolio-card:hover img {
  transform: scale(1.02);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.portfolio-client {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
}

.portfolio-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
}

/* ── CAPITALCOM EVENTS ── */
.capitalcom-section {
  background: var(--cream2);
}

.capitalcom-inner {
  border: 0.5px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.capitalcom-text {
  padding: 56px 56px 56px 56px;
  border-right: 0.5px solid var(--border);
}

.capitalcom-text .label { display: block; margin-bottom: 16px; }

.capitalcom-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 20px;
}

.capitalcom-text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

.capitalcom-facts {
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 36px;
}

.capitalcom-fact-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}

.capitalcom-fact-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.5;
}

/* ── FOOTER ── */
.footer {
  background: var(--ink);
  padding: 64px 72px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  border-top: 0.5px solid rgba(255,255,255,0.05);
}

.footer-logo {
  height: 24px;
  width: auto;
  margin-bottom: 20px;
  opacity: 0.9;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}

.footer-contact a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.footer-contact a:hover { color: #fff; }

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

.footer-symbol {
  height: 64px;
  width: auto;
  opacity: 0.3;
  margin-bottom: 16px;
  margin-left: auto;
}

.footer-legal {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
}

/* ── PAGE INTERIEURE : hero secondaire ── */
.page-hero {
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 80px;
  padding-left: 72px;
  padding-right: 72px;
  background: var(--cream);
  border-bottom: 0.5px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  position: relative;
  overflow: hidden;
}

.page-hero .label { display: block; margin-bottom: 16px; grid-column: 1; }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 80px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.0;
  color: var(--ink);
  max-width: 700px;
  grid-column: 1;
}

.page-hero p {
  font-size: 17px;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.75;
  margin-top: 24px;
  grid-column: 1;
}

.page-hero-deco {
  grid-column: 2;
  grid-row: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.page-hero-deco .deco-num {
  font-family: var(--font-display);
  font-size: clamp(360px, 38vw, 580px);
  font-style: italic;
  font-weight: 300;
  color: var(--green1);
  opacity: 0.1;
  line-height: 0.75;
  user-select: none;
}

.page-hero-deco .deco-line {
  position: absolute;
  left: 0;
  top: -40px;
  width: 1px;
  height: calc(100% + 80px);
  background: linear-gradient(to bottom, transparent, var(--green1) 30%, var(--green1) 70%, transparent);
  opacity: 0.15;
}

.page-hero-deco .deco-circle {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 0.5px solid var(--green1);
  opacity: 0.08;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* ── PAGE À PROPOS ── */
.apropos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.apropos-intro p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 24px;
}

.apropos-intro p strong { color: var(--ink); }

.apropos-intro p:first-child {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
}

.fondatrice-card {
  background: var(--cream2);
  border: 0.5px solid var(--border);
  padding: 40px;
  position: sticky;
  top: calc(var(--nav-height) + 32px);
}

.fondatrice-photo {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center top;
  margin-bottom: 24px;
}

.fondatrice-photo + .fondatrice-initial { display: none; }

.fondatrice-initial {
  width: 64px;
  height: 64px;
  background: var(--green1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  color: #fff;
  margin-bottom: 24px;
}

.fondatrice-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}

.fondatrice-role {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green2);
  margin-bottom: 24px;
}

.fondatrice-quote {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.5;
  border-left: 3px solid var(--green1);
  padding-left: 20px;
  margin-bottom: 24px;
}

.fondatrice-bio {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

.valeurs {
  background: var(--cream2);
  padding: 112px 72px;
}

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

.valeur-item {
  background: var(--cream);
  border: 0.5px solid var(--border);
  padding: 36px 32px;
}

.valeur-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-style: italic;
  color: var(--green1);
  line-height: 1;
  margin-bottom: 16px;
}

.valeur-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}

.valeur-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── PAGE RÉALISATIONS ── */
.realisations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.realisation-card {
  position: relative;
  overflow: hidden;
  background: var(--green1);
  cursor: pointer;
  aspect-ratio: 4/3;
}

.realisation-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.realisation-card:hover img {
  transform: scale(1.04);
}

.realisation-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.realisation-client {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}

.realisation-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: #fff;
}

.realisation-tag {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green1);
  border: 0.5px solid var(--green1);
  padding: 4px 10px;
  width: fit-content;
  margin-top: 8px;
}

/* Placeholder pour carte sans photo */
.realisation-card.placeholder {
  background: var(--green2);
}

.realisation-card.placeholder-dark {
  background: var(--ink);
}

/* ── PAGE CONTACT ── */
.contact-page {
  background: var(--black);
  min-height: 100vh;
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  padding: 0 72px;
}

.contact-info .label { color: rgba(255,255,255,0.4); }

.contact-info h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  line-height: 1.05;
  margin: 16px 0 24px;
}

.contact-info p {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.contact-detail strong {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green2);
  margin-bottom: 4px;
}

.contact-form {
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.08);
  padding: 48px;
}

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

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.12);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green1);
}

.form-group select option { background: #111; color: #fff; }

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  padding: 18px;
  background: #fff;
  color: var(--black);
  border: none;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}

.form-submit:hover {
  background: var(--green1);
  color: #fff;
}

.contact-symbol {
  display: block;
  margin: 64px auto 0;
  height: 80px;
  width: auto;
  opacity: 0.15;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  :root { --nav-height: 64px; }

  .nav { padding: 0 28px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; height: auto; }
  .hero-left { padding: 120px 28px 64px; align-items: center; text-align: center; }
  .hero-left p { max-width: 100%; }
  .hero-stats { flex-direction: column; gap: 20px; align-items: center; text-align: center; border-top: none; padding-top: 0; }
  .hero-right { min-height: 400px; padding: 48px 28px; }

  .section { padding: 80px 28px; }
  .page-hero { padding: 120px 28px 64px; grid-template-columns: 1fr; }
  .page-hero-deco { display: none; }

  .approche { grid-template-columns: 1fr; gap: 40px; }
  .angle-rh { padding: 80px 28px; }
  .angle-rh-grid { grid-template-columns: 1fr; }
  .angle-rh-left { padding-right: 0; padding-bottom: 48px; }
  .angle-rh-right { padding: 40px 28px; }

  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card:first-child { grid-row: auto; }
  .portfolio-card img, .portfolio-card:first-child img { min-height: 280px; }

  .capitalcom-inner { grid-template-columns: 1fr; }
  .capitalcom-text { border-right: none; border-bottom: 0.5px solid var(--border); padding: 40px 28px; }
  .capitalcom-facts { padding: 40px 28px; flex-direction: row; flex-wrap: wrap; gap: 24px; }

  .footer { padding: 48px 28px; grid-template-columns: 1fr; }
  .footer-right { text-align: left; }
  .footer-symbol { margin-left: 0; }

  .apropos-grid { grid-template-columns: 1fr; gap: 48px; }
  .fondatrice-card { position: relative; top: 0; }

  .valeurs-grid { grid-template-columns: 1fr; }

  .realisations-grid { grid-template-columns: 1fr 1fr; }

  .contact-grid { grid-template-columns: 1fr; padding: 0 28px; gap: 48px; }
  .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-left { padding: 100px 20px 48px; }
  .section { padding: 64px 20px; }
  .page-hero { padding: 100px 20px 48px; }
  .angle-rh { padding: 64px 20px; }
  .footer { padding: 40px 20px; }

  .hero-stats { flex-direction: column; gap: 20px; align-items: center; text-align: center; }
  .hero-right-stats { flex-direction: column; gap: 16px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }

  .realisations-grid { grid-template-columns: 1fr; }
  .contact-grid { padding: 0 20px; }
  .contact-form { padding: 24px 16px; }
  .nav { padding: 0 20px; }

  .prestations { padding: 64px 20px; }
  .prestation-item { grid-template-columns: 48px 1fr; }
  .prestation-tag { display: none; }
  .capitalcom-facts { flex-direction: column; gap: 24px; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-left .label,
  .hero-left h1,
  .hero-left p,
  .hero-ctas,
  .hero-stats {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .ticker-track { animation: none; }
}
