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

:root {
  --navy: #0a0f1e;
  --navy-mid: #111829;
  --navy-light: #1a2540;
  --gold: #c9a96e;
  --gold-light: #e2c99a;
  --white: #f5f3ef;
  --grey: #8a9ab5;
  --border: rgba(201,169,110,0.18);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  font-weight: 300;
}

/* ── NOISE TEXTURE OVERLAY ── */
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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), backdrop-filter var(--transition);
}

nav.scrolled {
  background: rgba(10,15,30,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.nav-logo .logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1;
}

.nav-logo .logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 3px;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--grey);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 8px 20px;
  font-size: 0.7rem !important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition) !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

.nav-cta::after { display: none !important; }

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

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: all var(--transition);
}

/* ── GOLD DIVIDER ── */
.gold-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 1rem auto 1.5rem;
}

.gold-line.left { margin-left: 0; }

/* ── LABEL ── */
.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 5% 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(201,169,110,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(26,37,64,0.8) 0%, transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, #0d1628 50%, #0a1420 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}

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

.hero-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--grey);
  max-width: 520px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 32px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  transition: all var(--transition);
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(201,169,110,0.3);
}

.btn-secondary {
  color: var(--white);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}

.btn-secondary:hover { color: var(--gold); }

.btn-secondary .arrow {
  width: 30px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width var(--transition);
}

.btn-secondary:hover .arrow { width: 45px; }

.btn-secondary .arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 6px; height: 6px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}

.hero-stats {
  position: absolute;
  bottom: 60px;
  right: 5%;
  display: flex;
  gap: 3rem;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}

.stat-item { text-align: right; }

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 4px;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: pulse 2s infinite;
}

.scroll-indicator span {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ── SECTIONS ── */
section { padding: 100px 5%; }

.section-intro {
  max-width: 650px;
  margin-bottom: 4rem;
}

.section-intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  margin-top: 0.8rem;
}

.section-intro p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--grey);
  margin-top: 1rem;
}

/* ── SPECIALITES GRID ── */
.specialites-section { background: var(--navy-mid); }

.specialites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.specialite-card {
  background: var(--navy-mid);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
  cursor: default;
}

.specialite-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.specialite-card:hover { background: var(--navy-light); }
.specialite-card:hover::before { opacity: 1; }

.card-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: rgba(201,169,110,0.15);
  line-height: 1;
  margin-bottom: 1rem;
  font-weight: 300;
}

.card-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 1.2rem;
  opacity: 0.7;
}

.specialite-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}

.specialite-card p {
  font-size: 0.82rem;
  line-height: 1.8;
  color: var(--grey);
}

.card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1.2rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-10px);
  transition: all var(--transition);
  text-decoration: none;
}

.specialite-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── APPROCHE ── */
.approche-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.approche-visual {
  position: relative;
  height: 500px;
}

.approche-box {
  position: absolute;
  border: 1px solid var(--border);
  background: var(--navy-mid);
}

.approche-box-main {
  inset: 0 20px 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.approche-box-accent {
  width: 160px;
  height: 160px;
  bottom: 0;
  right: 0;
  background: var(--gold);
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.approche-box-accent .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--navy);
  font-weight: 300;
  line-height: 1;
}

.approche-box-accent .lbl {
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--navy);
  text-align: center;
  padding: 0 10px;
}

.brain-svg {
  opacity: 0.15;
  width: 70%;
}

.approche-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}

.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.step:last-child { border-bottom: none; padding-bottom: 0; }

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  min-width: 40px;
  font-weight: 300;
}

.step h4 {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.step p {
  font-size: 0.82rem;
  line-height: 1.8;
  color: var(--grey);
}

/* ── TEMOIGNAGES ── */
.temoignages-section { background: var(--navy-mid); }

.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.temoignage-card {
  border: 1px solid var(--border);
  padding: 2rem;
  position: relative;
  transition: border-color var(--transition);
}

.temoignage-card:hover { border-color: rgba(201,169,110,0.4); }

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.15;
  line-height: 0.6;
  margin-bottom: 1rem;
}

.temoignage-card p {
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--grey);
  font-style: italic;
}

.temoignage-author {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--white);
  font-style: normal;
}

.temoignage-author span {
  color: var(--gold);
  display: block;
  margin-top: 2px;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  max-width: 500px;
}

/* ── FOOTER ── */
footer {
  background: #070b16;
  padding: 60px 5% 30px;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand .logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--white);
}

.footer-brand .logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
  display: block;
}

.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.8;
  color: var(--grey);
  margin-top: 1rem;
  max-width: 280px;
}

.footer-col h5 {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul a {
  text-decoration: none;
  color: var(--grey);
  font-size: 0.82rem;
  transition: color var(--transition);
}

.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.72rem;
  color: rgba(138,154,181,0.5);
}

/* ── PAGE HERO ── */
.page-hero {
  padding: 160px 5% 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 100% at 80% 50%, rgba(201,169,110,0.05), transparent 70%),
              linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
}

.page-hero-content { position: relative; z-index: 2; }

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-top: 1rem;
  max-width: 700px;
}

.page-hero p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--grey);
  max-width: 550px;
  margin-top: 1.2rem;
}

/* ── SERVICES PAGE ── */
.service-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.service-item:first-child { padding-top: 0; }

.service-meta { position: sticky; top: 100px; }

.service-meta .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: rgba(201,169,110,0.12);
  line-height: 1;
  font-weight: 300;
}

.service-meta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-top: -1rem;
  line-height: 1.3;
}

.service-meta .tag {
  display: inline-block;
  margin-top: 1rem;
  padding: 4px 12px;
  border: 1px solid var(--border);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.service-detail h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gold-light);
  margin: 1.5rem 0 0.5rem;
}

.service-detail h4:first-child { margin-top: 0; }

.service-detail p {
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--grey);
}

.service-detail ul {
  list-style: none;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.service-detail ul li {
  font-size: 0.85rem;
  color: var(--grey);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.7;
}

.service-detail ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

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

.apropos-portrait {
  position: sticky;
  top: 100px;
}

.portrait-frame {
  position: relative;
  padding-bottom: 120%;
  overflow: hidden;
  background: var(--navy-light);
  border: 1px solid var(--border);
}

.portrait-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.portrait-initials {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: rgba(201,169,110,0.2);
  font-weight: 300;
  line-height: 1;
}

.portrait-name-placeholder {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey);
}

.portrait-badge {
  position: absolute;
  bottom: -1px;
  right: -1px;
  background: var(--gold);
  padding: 12px 16px;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 500;
}

.apropos-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.apropos-text p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--grey);
  margin-top: 1.2rem;
}

.credentials {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.credential-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.2rem;
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}

.credential-item:hover { border-color: rgba(201,169,110,0.3); }

.credential-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold);
  min-width: 50px;
  font-weight: 300;
}

.credential-info h5 {
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 3px;
}

.credential-info p {
  font-size: 0.78rem;
  color: var(--grey);
  margin-top: 0;
}

.memberships {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.memberships h4 {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.memberships ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.memberships ul li {
  font-size: 0.82rem;
  color: var(--grey);
  padding-left: 1rem;
  position: relative;
}

.memberships ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ── CONTACT PAGE ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  padding: 80px 5%;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.contact-info p {
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--grey);
  margin-top: 1rem;
}

.contact-details {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.detail-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.detail-text h5 {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.detail-text p {
  font-size: 0.85rem;
  color: var(--grey);
  margin-top: 0;
}

.contact-form {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  padding: 3rem;
}

.contact-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

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

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--navy);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 12px 14px;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  outline: none;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201,169,110,0.4);
}

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

.form-group select option { background: var(--navy); }

.urgence-note {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  border-left: 2px solid var(--gold);
  background: rgba(201,169,110,0.05);
  font-size: 0.78rem;
  color: var(--grey);
  line-height: 1.7;
}

.urgence-note strong { color: var(--gold); font-weight: 500; }

/* ── HORAIRES ── */
.horaires-section {
  padding: 60px 5%;
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
}

.horaires-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 2rem;
  max-width: 700px;
}

.horaire-cell {
  background: var(--navy-mid);
  padding: 1.2rem;
  font-size: 0.82rem;
}

.horaire-cell.day {
  color: var(--grey);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.horaire-cell.time { color: var(--white); }
.horaire-cell.fermé { color: rgba(138,154,181,0.3); font-style: italic; }

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

@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── MOBILE MENU ── */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 80px; left: 0; right: 0;
    background: rgba(10,15,30,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-110%);
    opacity: 0;
    transition: all var(--transition);
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open { transform: translateY(0); opacity: 1; }

  .specialites-grid { grid-template-columns: 1fr; }
  .temoignages-grid { grid-template-columns: 1fr; }
  .approche-section { grid-template-columns: 1fr; }
  .approche-visual { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cta-band { flex-direction: column; }
  .hero-stats { position: static; margin-top: 3rem; justify-content: flex-start; }
  .contact-layout { grid-template-columns: 1fr; }
  .service-item { grid-template-columns: 1fr; }
  .apropos-grid { grid-template-columns: 1fr; }
  .horaires-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
