/* ================================================================
   CABINET AXIS RECOUVREMENT — style.css  v2
   Direction : Cabinet juridique de prestige — Editorial · Luxe · Sobre
   Typographie : Cormorant Garamond (display) + DM Sans (texte)
   ================================================================ */

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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --navy:       #1e3a5f;
  --navy-deep:  #111f33;
  --navy-mid:   #2c4f7a;
  --blue:       #4a6fa5;
  --gold:       #b8933a;
  --gold-light: #d4aa55;
  --gold-pale:  rgba(184,147,58,.08);
  --ivory:      #faf8f4;
  --stone:      #f0ece4;
  --white:      #ffffff;
  --ink:        #1a1a1a;
  --ink-soft:   #3d3d3d;
  --muted:      #6b6b6b;
  --muted-lt:   #9a9a9a;
  --rule:       rgba(30,58,95,.1);
  --rule-gold:  rgba(184,147,58,.22);

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans:  'DM Sans', system-ui, sans-serif;

  --s-sm: 0 2px 12px rgba(30,58,95,.07);
  --s-md: 0 8px 32px rgba(30,58,95,.1);
  --s-lg: 0 20px 60px rgba(30,58,95,.14);
  --s-xl: 0 32px 96px rgba(20,30,50,.2);

  --t:    .22s ease;
  --tm:   .4s ease;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
}
img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ── Container ─────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 24px; } }

/* ── Top Bar ───────────────────────────────────────────────────── */
.top-bar { background: var(--navy-deep); padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.top-bar-content { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left, .top-bar-right { display: flex; gap: 28px; }
.top-bar-left span, .top-bar-right span {
  font-size: .73rem; font-weight: 400; letter-spacing: .07em;
  color: rgba(255,255,255,.48); display: flex; align-items: center; gap: 7px;
}

/* ── Header ────────────────────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow var(--tm);
}
.header.scrolled { box-shadow: var(--s-md); }
.header-content { display: flex; align-items: center; justify-content: space-between; height: 80px; gap: 40px; }
.logo { height: 50px; width: auto; object-fit: contain; }

.nav { display: flex; align-items: center; }
.nav-link {
  font-size: .75rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); padding: 10px 16px; position: relative; transition: color var(--t);
}
.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 16px; right: 16px;
  height: 1px; background: var(--gold); transform: scaleX(0); transition: transform var(--t);
}
.nav-link:hover, .nav-link.active { color: var(--navy); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.btn-header {
  font-size: .71rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--white); background: var(--navy); padding: 11px 24px;
  border: 1px solid var(--navy); margin-left: 16px; white-space: nowrap;
  transition: background var(--t), transform var(--t);
}
.btn-header:hover { background: var(--navy-mid); transform: translateY(-1px); }

.menu-toggle { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 22px; height: 1.5px; background: var(--navy); transition: transform var(--t), opacity var(--t); }
.menu-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 1024px) {
  .menu-toggle { display: flex; }
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; background: var(--white);
    border-top: 1px solid var(--rule); border-bottom: 2px solid var(--navy);
    padding: 20px 40px 28px; box-shadow: var(--s-lg); gap: 0;
  }
  .nav.open { display: flex; }
  .nav-link { padding: 12px 0; font-size: .85rem; width: 100%; }
  .nav-link::after { left: 0; right: auto; width: 24px; }
  .btn-header { margin: 16px 0 0; padding: 14px 28px; }
}

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: .73rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  cursor: pointer; transition: all var(--t); border: 1px solid transparent; white-space: nowrap;
}
.btn-primary { background: var(--navy); color: var(--white); border-color: var(--navy); padding: 16px 36px; }
.btn-primary:hover { background: var(--navy-mid); border-color: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--s-md); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); padding: 16px 36px; }
.btn-outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.75); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--navy); border-color: var(--white); padding: 14px 28px; }
.btn-white:hover { background: var(--ivory); transform: translateY(-2px); box-shadow: var(--s-sm); }
.btn-lg { padding: 18px 44px; }
.btn-block { width: 100%; justify-content: center; }

/* ── Section Utilities ─────────────────────────────────────────── */
.section-intro { text-align: center; margin-bottom: 72px; }
.section-label {
  display: inline-block; font-size: .67rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.section-title {
  font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600; color: var(--navy); line-height: 1.1;
}
.section-separator {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin: 20px auto 24px;
}
.section-separator::before, .section-separator::after {
  content: ''; width: 40px; height: 1px; background: var(--rule-gold);
}
.section-separator i { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); display: block; }
.section-subtitle { max-width: 560px; margin: 0 auto; color: var(--muted); font-size: .93rem; line-height: 1.85; font-weight: 300; }

/* ── Hero ──────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; padding: 100px 0 80px;
  background: var(--navy-deep);
}
/* Architectural grid */
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 80px 80px;
}
/* Accent column right */
.hero::after {
  content: ''; position: absolute; top: 0; right: 0;
  width: 38%; height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(184,147,58,.03) 60%, rgba(184,147,58,.07) 100%);
  border-left: 1px solid rgba(184,147,58,.1);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 20% 50%, rgba(44,79,122,.38) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 80%, rgba(17,31,51,.55) 0%, transparent 70%);
}
/* Decorative numeral */
.hero-decor {
  position: absolute; right: 4%; top: 50%; transform: translateY(-50%);
  font-family: var(--serif); font-size: 28vw; font-weight: 700;
  color: rgba(255,255,255,.018); line-height: 1; user-select: none;
  letter-spacing: -.05em; z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }

.hero-overline { display: flex; align-items: center; gap: 14px; margin-bottom: 32px; }
.hero-overline-rule { width: 36px; height: 1px; background: var(--gold); flex-shrink: 0; }
.hero-overline-text { font-size: .67rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-light); }

.hero-title {
  font-family: var(--serif); font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 600; color: var(--white); line-height: 1.05;
  margin-bottom: 28px; letter-spacing: -.01em;
}
.hero-title em { font-style: italic; font-weight: 400; color: var(--gold-light); }

.hero-subtitle {
  font-size: .97rem; font-weight: 300; color: rgba(255,255,255,.62);
  max-width: 520px; margin-bottom: 44px; line-height: 1.88;
  border-left: 2px solid rgba(184,147,58,.38); padding-left: 20px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }

/* Stats bar */
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-stat {
  padding: 22px 26px; border-right: 1px solid rgba(255,255,255,.06);
  transition: background var(--t);
}
.hero-stat:last-child { border-right: none; }
.hero-stat:hover { background: rgba(255,255,255,.05); }
.stat-icon { font-size: 1rem; margin-bottom: 8px; opacity: .5; }
.stat-number {
  font-family: var(--serif); font-size: 2.1rem; font-weight: 600;
  color: var(--white); line-height: 1; margin-bottom: 5px;
}
.stat-label { font-size: .65rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.38); line-height: 1.45; }

.hero-scroll {
  position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,.28); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
  animation: scrollFade 2.5s ease-in-out infinite;
}
.scroll-arrow { width: 14px; height: 14px; border-right: 1px solid rgba(255,255,255,.28); border-bottom: 1px solid rgba(255,255,255,.28); transform: rotate(45deg); }
@keyframes scrollFade {
  0%, 100% { opacity: .4; transform: translateX(-50%) translateY(0); }
  50%       { opacity: .85; transform: translateX(-50%) translateY(8px); }
}

@media (max-width: 900px) { .hero-stats { grid-template-columns: 1fr 1fr; } .hero-decor { display: none; } }
@media (max-width: 560px) { .hero-stats { grid-template-columns: 1fr 1fr; } .hero-buttons { flex-direction: column; } .hero-scroll { display: none; } .hero-title { font-size: 2.4rem; } }

/* ── Cabinet ───────────────────────────────────────────────────── */
.cabinet { padding: 110px 0; background: var(--white); position: relative; }
.cabinet::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 80px; background: linear-gradient(to bottom, var(--gold), transparent);
}
.cabinet-content { display: grid; grid-template-columns: 1fr 300px; gap: 88px; align-items: center; }
.cabinet-text h3 { font-family: var(--serif); font-size: 1.9rem; font-weight: 600; color: var(--navy); margin-bottom: 24px; line-height: 1.25; }
.cabinet-text p { color: var(--muted); margin-bottom: 20px; line-height: 1.88; font-weight: 300; font-size: .93rem; }
.cabinet-text p strong { color: var(--ink-soft); font-weight: 500; }

.cabinet-values { margin-top: 36px; padding-top: 36px; border-top: 1px solid var(--rule); }
.value-item { display: flex; align-items: flex-start; gap: 18px; padding: 17px 0; border-bottom: 1px solid var(--rule); }
.value-item:last-child { border-bottom: none; }
.value-icon { font-size: 1rem; opacity: .6; flex-shrink: 0; margin-top: 2px; }
.value-content h4 { font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); margin-bottom: 3px; }
.value-content p { font-size: .85rem; color: var(--muted); margin: 0; line-height: 1.5; font-weight: 300; }

.cabinet-image { position: relative; display: flex; flex-direction: column; align-items: center; }
.cabinet-image-frame {
  position: relative; width: 100%; padding: 32px;
  /*border: 1px solid var(--rule-gold); background: var(--ivory);*/
  display: flex; align-items: center; justify-content: center;
}
.cabinet-image-frame::before, .cabinet-image-frame::after {
  content: ''; position: absolute; width: 20px; height: 20px; border-color: var(--gold); border-style: solid;
}
.cabinet-image-frame::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.cabinet-image-frame::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
.cabinet-image-frame img { width: 100%; max-width: 220px; filter: drop-shadow(0 12px 40px rgba(30,58,95,.18)); }
.image-badge { margin-top: 24px; text-align: center; padding: 20px 32px; background: var(--navy); color: var(--white); width: 100%; }
.badge-number { font-family: var(--serif); font-size: 2.4rem; font-weight: 600; color: var(--gold-light); line-height: 1; display: block; }
.badge-text { font-size: .66rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-top: 6px; }

@media (max-width: 960px) { .cabinet-content { grid-template-columns: 1fr; } .cabinet-image { max-width: 280px; margin: 0 auto; order: -1; } }

/* ── Chiffres ──────────────────────────────────────────────────── */
.chiffres { background: var(--navy); }
.chiffres-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.chiffre-item {
  padding: 60px 40px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
  position: relative; transition: background var(--t);
}
.chiffre-item::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 24px; background: rgba(184,147,58,.35);
}
.chiffre-item:last-child { border-right: none; }
.chiffre-item:hover { background: rgba(255,255,255,.04); }
.chiffre-number { font-family: var(--serif); font-size: 3.2rem; font-weight: 600; color: var(--gold-light); line-height: 1; margin-bottom: 12px; letter-spacing: -.02em; }
.chiffre-label { font-size: .7rem; font-weight: 500; color: rgba(255,255,255,.38); text-transform: uppercase; letter-spacing: .1em; line-height: 1.6; }

@media (max-width: 768px) { .chiffres-grid { grid-template-columns: 1fr 1fr; } .chiffre-item { border-bottom: 1px solid rgba(255,255,255,.06); } .chiffre-number { font-size: 2.4rem; } }
@media (max-width: 480px) { .chiffres-grid { grid-template-columns: 1fr; } }

/* ── Expertises ────────────────────────────────────────────────── */
.expertises { padding: 110px 0; background: var(--ivory); }
.expertises-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.expertise-card {
  background: var(--white); padding: 36px 32px 32px;
  display: flex; flex-direction: column; position: relative; overflow: hidden;
  transition: background var(--t);
}
.expertise-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0; background: var(--gold); transition: height var(--tm);
}
.expertise-card:hover { background: var(--ivory); }
.expertise-card:hover::before { height: 100%; }
.expertise-icon { font-size: 1.3rem; margin-bottom: 14px; opacity: .5; }
.expertise-header { margin-bottom: 16px; }
.expertise-header h3 { font-family: var(--serif); font-size: 1.22rem; font-weight: 600; color: var(--navy); line-height: 1.2; }
.expertise-desc { font-size: .87rem; font-weight: 300; color: var(--muted); margin-bottom: 20px; line-height: 1.82; flex-grow: 1; }
.expertise-list { display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; padding-top: 18px; border-top: 1px solid var(--rule); }
.expertise-list li { font-size: .81rem; color: var(--ink-soft); padding-left: 14px; position: relative; line-height: 1.45; }
.expertise-list li::before { content: ''; position: absolute; left: 0; top: 9px; width: 4px; height: 1px; background: var(--gold); }
.expertise-cta { margin-top: auto; }
.link-arrow { font-size: .69rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--navy); display: inline-flex; align-items: center; gap: 8px; transition: gap var(--t), color var(--t); }
.link-arrow:hover { color: var(--gold); gap: 14px; }

@media (max-width: 960px) { .expertises-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .expertises-grid { grid-template-columns: 1fr; } }

/* ── Processus ─────────────────────────────────────────────────── */
.processus { padding: 110px 0; background: var(--white); }
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute; left: 20px; top: 10px; bottom: 10px;
  width: 1px; background: linear-gradient(to bottom, var(--navy) 0%, var(--gold) 50%, transparent 100%);
}
.timeline-item { display: flex; gap: 48px; position: relative; }
.timeline-item + .timeline-item { border-top: 1px solid var(--rule); }
.timeline-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--navy);
  flex-shrink: 0; margin-top: 28px; position: relative; z-index: 1; margin-left: 15px;
  transition: background var(--t), border-color var(--t);
}
.timeline-item:hover .timeline-dot { background: var(--gold); border-color: var(--gold); }
.timeline-content { flex: 1; padding: 28px 0; }
.timeline-header { display: flex; align-items: baseline; gap: 16px; margin-bottom: 12px; }
.timeline-number { font-family: var(--serif); font-size: .88rem; font-weight: 600; color: var(--gold); letter-spacing: .08em; min-width: 24px; }
.timeline-header h3 { font-family: var(--serif); font-size: 1.18rem; font-weight: 600; color: var(--navy); line-height: 1.25; }
.timeline-body > p { font-size: .87rem; font-weight: 300; color: var(--muted); margin-bottom: 16px; line-height: 1.82; }
.timeline-list { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 32px; margin-bottom: 16px; }
.timeline-list li { font-size: .8rem; color: var(--ink-soft); padding-left: 14px; position: relative; line-height: 1.45; }
.timeline-list li::before { content: ''; position: absolute; left: 0; top: 9px; width: 4px; height: 1px; background: var(--navy); opacity: .3; }
.timeline-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .65rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--rule-gold); padding: 4px 12px;
  background: var(--gold-pale);
}
.timeline-tag::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

@media (max-width: 600px) {
  .timeline::before { display: none; } .timeline-item { gap: 20px; }
  .timeline-dot { display: none; } .timeline-list { grid-template-columns: 1fr; }
}

/* ── Garanties ─────────────────────────────────────────────────── */
.garanties { padding: 110px 0; background: var(--navy-deep); position: relative; overflow: hidden; }
.garanties::before {
  content: ''; position: absolute; right: -100px; top: 50%; transform: translateY(-50%);
  width: 500px; height: 500px; border-radius: 50%; border: 80px solid rgba(184,147,58,.035);
}
.garanties .section-title { color: var(--white); }
.garanties .section-subtitle { color: rgba(255,255,255,.42); }
.garanties-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.05); }
.garantie-card { background: rgba(255,255,255,.02); padding: 40px 32px; transition: background var(--t); position: relative; }
.garantie-card:hover { background: rgba(255,255,255,.06); }
.garantie-card::after {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0;
  transition: opacity var(--tm);
}
.garantie-card:hover::after { opacity: 1; }
.garantie-icon { font-size: 1.2rem; margin-bottom: 18px; display: block; opacity: .45; }
.garantie-card h3 { font-family: var(--serif); font-size: 1.08rem; font-weight: 600; color: var(--white); margin-bottom: 12px; line-height: 1.25; }
.garantie-card p { font-size: .85rem; font-weight: 300; color: rgba(255,255,255,.42); line-height: 1.78; }

@media (max-width: 900px) { .garanties-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .garanties-grid { grid-template-columns: 1fr; } }

/* ── FAQ ───────────────────────────────────────────────────────── */
.faq { padding: 110px 0; background: var(--white); }
.faq-container { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item:first-child { border-top: 1px solid var(--rule); }
.faq-question { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 22px 0; cursor: pointer; }
.faq-question h3 { font-family: var(--serif); font-size: 1.05rem; font-weight: 500; color: var(--ink-soft); line-height: 1.4; transition: color var(--t); }
.faq-item.open .faq-question h3, .faq-question:hover h3 { color: var(--navy); }
.faq-icon {
  width: 24px; height: 24px; border: 1px solid var(--rule); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 300; color: var(--muted); flex-shrink: 0; line-height: 1;
  transition: all var(--t);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--navy); border-color: var(--navy); color: var(--white); }
.faq-answer { display: none; padding: 0 0 22px; }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { font-size: .88rem; font-weight: 300; color: var(--muted); line-height: 1.88; max-width: 640px; }
.faq-answer p strong { color: var(--ink-soft); font-weight: 500; }

/* ── Contact ───────────────────────────────────────────────────── */
.contact { padding: 110px 0; background: var(--ivory); position: relative; }
.contact::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info .section-label { display: block; margin-bottom: 12px; }
.contact-info h2 { font-family: var(--serif); font-size: 2.6rem; font-weight: 600; color: var(--navy); line-height: 1.1; margin-bottom: 20px; }
.contact-intro { font-size: .9rem; font-weight: 300; color: var(--muted); line-height: 1.88; margin-bottom: 44px; }
.contact-details { margin-bottom: 44px; }
.contact-detail-item { display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--rule); align-items: flex-start; }
.contact-detail-item:first-child { border-top: 1px solid var(--rule); }
.detail-icon { font-size: .95rem; flex-shrink: 0; margin-top: 2px; opacity: .45; }
.detail-content strong { display: block; font-size: .66rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.detail-content p { color: var(--ink-soft); font-size: .88rem; margin-bottom: 2px; }
.detail-note { font-size: .77rem; color: var(--muted-lt); }
.contact-cta-box { background: var(--navy); padding: 28px 32px; }
.contact-cta-box h4 { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.contact-cta-box p { font-size: .84rem; font-weight: 300; color: rgba(255,255,255,.52); margin-bottom: 20px; line-height: 1.65; }

/* Form */
.contact-form-wrapper { background: var(--white); border: 1px solid var(--rule); box-shadow: var(--s-xl); position: relative; }
.contact-form-wrapper::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--navy), var(--gold)); }
.contact-form { padding: 44px 40px; }
.form-header { margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--rule); }
.form-header h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.form-header p { font-size: .79rem; font-weight: 300; color: var(--muted-lt); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .67rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; font-family: var(--sans); font-size: .88rem; font-weight: 300;
  color: var(--ink); background: var(--ivory); border: 1px solid var(--rule);
  border-bottom: 1px solid rgba(30,58,95,.18); padding: 12px 16px;
  outline: none; -webkit-appearance: none; border-radius: 0;
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--navy); background: var(--white); box-shadow: 0 2px 0 var(--navy); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted-lt); font-weight: 300; }
.form-group textarea { resize: vertical; }
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b6b6b' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.form-footer { margin-top: 8px; }
.form-note { text-align: center; margin-top: 14px; color: var(--muted-lt); font-size: .77rem; font-weight: 300; line-height: 1.6; }
.form-message { margin-top: 16px; padding: 12px 16px; font-size: .84rem; display: none; border-left: 3px solid; }
.form-message.success { display: block; background: #f0faf4; color: #1d5c35; border-color: #4caf6e; }
.form-message.error   { display: block; background: #fdf0f0; color: #8b1a1a; border-color: #d45050; }

@media (max-width: 960px) { .contact-wrapper { grid-template-columns: 1fr; gap: 48px; } .contact-info { order: 2; } .contact-form-wrapper { order: 1; } }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } .contact-form { padding: 28px 20px; } }

/* ── Footer ────────────────────────────────────────────────────── */
.footer { background: var(--navy-deep); }
.footer-main {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 56px; padding: 72px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.footer-logo { height: 42px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: .65; margin-bottom: 20px; }
.footer-about p { font-size: .84rem; font-weight: 300; color: rgba(255,255,255,.38); line-height: 1.82; max-width: 240px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.13);
  display: flex; align-items: center; justify-content: center;
  font-size: .77rem; font-weight: 600; color: rgba(255,255,255,.45);
  transition: all var(--t);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold-light); }
.footer-col h4 {
  font-size: .65rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.32); margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a { font-size: .83rem; font-weight: 300; color: rgba(255,255,255,.42); transition: color var(--t); display: block; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact li span:first-child { font-size: .88rem; opacity: .32; flex-shrink: 0; margin-top: 1px; }
.footer-contact li a, .footer-contact li span:last-child { font-size: .83rem; font-weight: 300; color: rgba(255,255,255,.42); line-height: 1.52; transition: color var(--t); }
.footer-contact li a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; gap: 16px; flex-wrap: wrap; }
.footer-bottom-left p { font-size: .76rem; font-weight: 300; color: rgba(255,255,255,.22); }
.footer-bottom-right { display: flex; gap: 28px; }
.footer-bottom-right a { font-size: .71rem; color: rgba(255,255,255,.22); letter-spacing: .04em; transition: color var(--t); }
.footer-bottom-right a:hover { color: rgba(255,255,255,.52); }

@media (max-width: 960px) { .footer-main { grid-template-columns: 1fr 1fr; } .footer-about { grid-column: 1 / -1; } }
@media (max-width: 560px) { .footer-main { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } .footer-bottom-right { gap: 16px; flex-wrap: wrap; justify-content: center; } }

/* ── AOS Reveal ────────────────────────────────────────────────── */
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
[data-aos].aos-animate { opacity: 1; transform: none; }
[data-aos][data-aos-delay="100"] { transition-delay: .1s; }
[data-aos][data-aos-delay="200"] { transition-delay: .2s; }
[data-aos][data-aos-delay="300"] { transition-delay: .3s; }
[data-aos][data-aos-delay="400"] { transition-delay: .4s; }
[data-aos][data-aos-delay="500"] { transition-delay: .5s; }

/* ── Print ─────────────────────────────────────────────────────── */
@media print {
  .top-bar, .header, .hero-scroll, .menu-toggle, .footer-social { display: none; }
  .hero { min-height: auto; padding: 40px 0; }
  * { box-shadow: none !important; }
}
