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

:root {
  --navy-950: #051525;
  --navy-900: #08223a;
  --navy-800: #0d3152;
  --navy-700: #18446b;
  --gold-600: #b77d16;
  --gold-500: #c9942b;
  --gold-400: #daa942;
  --gold-200: #f1ddb0;
  --cream: #fbfaf7;
  --paper: #ffffff;
  --ink: #0a2036;
  --muted: #637080;
  --line: #e9e2d7;
  --success: #1f6b4d;
  --shadow-sm: 0 12px 35px rgba(5, 21, 37, .08);
  --shadow-md: 0 24px 70px rgba(5, 21, 37, .13);
  --shadow-lg: 0 34px 90px rgba(5, 21, 37, .2);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --container: min(1240px, calc(100% - 48px));
  --header-h: 122px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 148px; }
body {
  margin: 0;
  font-family: 'Manrope', Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--gold-200); color: var(--navy-950); }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 104px 0; position: relative; overflow: clip; }
.section-sm { padding: 70px 0; }
.section-white { background: var(--paper); }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy-950); color: #fff; }
.section-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .45;
  background-image:
    linear-gradient(rgba(201,148,43,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,148,43,.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; }

/* Sticky header */
.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  height: 3px;
  width: 0;
  z-index: 120;
  background: linear-gradient(90deg, var(--gold-500), #f4d47c);
  box-shadow: 0 0 16px rgba(201,148,43,.55);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 16px 46px rgba(5,21,37,.12); }
.topbar {
  background: var(--navy-950);
  color: rgba(255,255,255,.86);
  font-size: 12px;
  letter-spacing: .01em;
}
.topbar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.topbar-group { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.topbar a, .topbar span { display: inline-flex; align-items: center; gap: 8px; }
.topbar svg { width: 14px; height: 14px; color: var(--gold-400); flex: none; }
.topbar-badge { color: #fff; font-weight: 600; }
.topbar-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-400); box-shadow: 0 0 0 5px rgba(201,148,43,.12); }
.navbar { background: rgba(255,255,255,.97); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(8,34,58,.08); }
.navbar-inner { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 13px; min-width: 215px; }
.brand img { width: 64px; height: 64px; object-fit: contain; }
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { color: var(--navy-900); font-size: 17px; letter-spacing: .17em; }
.brand-copy small { color: var(--muted); font-size: 10px; letter-spacing: .08em; margin-top: 6px; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; padding: 0; margin: 0; }
.nav-links a { position: relative; font-size: 13px; font-weight: 700; color: var(--navy-900); padding: 14px 0; white-space: nowrap; }
.nav-links a::after { content:''; position:absolute; left:0; right:100%; bottom:7px; height:2px; background:var(--gold-500); transition:right .25s var(--ease); }
.nav-links a:hover::after, .nav-links a[aria-current='page']::after { right:0; }
.nav-actions { display:flex; align-items:center; gap:12px; }
.menu-toggle { display:none; width:46px; height:46px; border:1px solid var(--line); background:#fff; border-radius:50%; align-items:center; justify-content:center; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content:''; display:block; width:18px; height:2px; background:var(--navy-900); transition:.25s; }
.menu-toggle span { margin:4px 0; }
.menu-toggle.is-open span { opacity:0; }
.menu-toggle.is-open::before { transform:translateY(6px) rotate(45deg); }
.menu-toggle.is-open::after { transform:translateY(-6px) rotate(-45deg); }

.btn { display:inline-flex; align-items:center; justify-content:center; gap:12px; min-height:48px; padding:0 22px; border-radius:9px; border:1px solid transparent; font-size:12px; font-weight:800; letter-spacing:.02em; transition:transform .25s var(--ease), box-shadow .25s var(--ease), background .25s; }
.btn:hover { transform:translateY(-2px); }
.btn-primary { color:#fff; background:linear-gradient(135deg, var(--gold-600), var(--gold-400)); box-shadow:0 12px 30px rgba(183,125,22,.24); }
.btn-primary:hover { box-shadow:0 18px 40px rgba(183,125,22,.34); }
.btn-secondary { color:var(--navy-900); background:#fff; border-color:rgba(8,34,58,.22); }
.btn-secondary:hover { border-color:var(--gold-500); }
.btn-dark { color:#fff; background:var(--navy-900); box-shadow:0 12px 30px rgba(5,21,37,.2); }
.btn-arrow::after { content:'→'; font-size:17px; transition:transform .2s; }
.btn-arrow:hover::after { transform:translateX(4px); }

/* Editorial typography */
.eyebrow { display:flex; align-items:center; gap:12px; color:var(--gold-600); font-size:11px; font-weight:800; letter-spacing:.16em; text-transform:uppercase; margin-bottom:18px; }
.eyebrow::before { content:''; width:32px; height:1px; background:currentColor; }
.eyebrow-light { color:var(--gold-400); }
.display-title, .section-title, .page-title { font-family:'Cormorant Garamond', Georgia, serif; color:var(--navy-950); font-weight:700; letter-spacing:-.035em; line-height:.94; margin:0; }
.display-title { font-size:clamp(50px, 5.9vw, 88px); }
.page-title { font-size:clamp(48px, 6vw, 82px); }
.section-title { font-size:clamp(40px, 4.6vw, 66px); }
.display-title em, .section-title em, .page-title em { font-style:italic; color:var(--gold-600); }
.lead { font-size:clamp(17px, 1.7vw, 21px); color:var(--muted); max-width:720px; }
.prose { color:var(--muted); font-size:16px; }
.prose strong { color:var(--ink); }
.section-head { display:flex; align-items:end; justify-content:space-between; gap:40px; margin-bottom:48px; }
.section-head > div:first-child { max-width:760px; }

/* Hero */
.hero { min-height:690px; background:#fff; position:relative; overflow:hidden; }
.hero::after { content:''; position:absolute; left:43%; top:-100px; width:1px; height:900px; background:linear-gradient(transparent,var(--gold-400),transparent); transform:rotate(21deg); opacity:.7; z-index:3; pointer-events:none; }
.hero-grid { display:grid; grid-template-columns:46% 54%; min-height:690px; }
.hero-copy { padding:94px max(40px, calc((100vw - 1240px)/2)) 76px max(24px, calc((100vw - 1240px)/2)); display:flex; flex-direction:column; justify-content:center; position:relative; z-index:5; }
.hero-copy .lead { max-width:590px; margin:28px 0 30px; font-size:17px; }
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; }
.hero-points { margin-top:34px; display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:16px; }
.hero-point { display:flex; align-items:center; gap:10px; font-size:12px; color:var(--navy-900); font-weight:700; }
.hero-point-icon { width:34px; height:34px; display:grid; place-items:center; border:1px solid var(--gold-200); color:var(--gold-600); border-radius:50%; flex:none; }
.hero-point svg { width:16px; height:16px; }
.hero-media { position:relative; min-height:690px; overflow:hidden; clip-path:ellipse(92% 84% at 100% 50%); background:var(--navy-900); }
.hero-media img { width:100%; height:100%; object-fit:cover; position:absolute; inset:0; filter:saturate(.86) contrast(1.04); animation:heroZoom 14s ease-out both; }
.hero-media::after { content:''; position:absolute; inset:0; background:linear-gradient(90deg,rgba(255,255,255,.26),transparent 24%),linear-gradient(180deg,rgba(5,21,37,.04),rgba(5,21,37,.28)); }
@keyframes heroZoom { from { transform:scale(1.08); } to { transform:scale(1); } }
.hero-card { position:absolute; z-index:4; left:5%; top:50%; transform:translateY(-50%); width:min(320px, 80%); padding:26px; border-radius:18px; background:rgba(255,255,255,.94); box-shadow:var(--shadow-lg); backdrop-filter:blur(14px); }
.hero-card-item { display:grid; grid-template-columns:44px 1fr; gap:14px; padding:15px 0; border-bottom:1px solid var(--line); }
.hero-card-item:first-child { padding-top:0; }
.hero-card-item:last-child { border-bottom:0; padding-bottom:0; }
.hero-card-icon { width:42px; height:42px; border:1px solid var(--gold-200); color:var(--gold-600); border-radius:50%; display:grid; place-items:center; }
.hero-card-icon svg { width:20px; height:20px; }
.hero-card strong { display:block; color:var(--navy-900); font-size:13px; margin-bottom:4px; }
.hero-card p { margin:0; color:var(--muted); font-size:11px; line-height:1.55; }

.fact-strip { position:relative; z-index:8; margin-top:-36px; }
.fact-strip-inner { background:#fff; border:1px solid var(--line); border-radius:18px; box-shadow:var(--shadow-md); display:grid; grid-template-columns:repeat(4,1fr); padding:22px 18px; }
.fact { display:flex; align-items:center; justify-content:center; gap:15px; min-height:54px; padding:0 18px; border-right:1px solid var(--line); }
.fact:last-child { border-right:0; }
.fact-icon { color:var(--gold-600); width:30px; height:30px; }
.fact strong { display:block; color:var(--navy-900); font-size:18px; }
.fact small { display:block; color:var(--muted); font-size:11px; }

/* Cards */
.cards-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.service-card { background:#fff; border:1px solid var(--line); border-radius:18px; padding:28px; min-height:220px; position:relative; overflow:hidden; box-shadow:0 8px 28px rgba(5,21,37,.04); transition:transform .3s var(--ease), box-shadow .3s, border-color .3s; }
.service-card::after { content:''; position:absolute; inset:auto -50px -60px auto; width:130px; height:130px; border:1px solid rgba(201,148,43,.18); border-radius:50%; }
.service-card:hover { transform:translateY(-7px); box-shadow:var(--shadow-md); border-color:var(--gold-200); }
.service-icon { width:54px; height:54px; border-radius:15px; display:grid; place-items:center; background:linear-gradient(145deg,#fff6df,#fff); border:1px solid var(--gold-200); color:var(--gold-600); margin-bottom:24px; }
.service-icon svg { width:25px; height:25px; }
.service-card h3 { margin:0 0 12px; color:var(--navy-900); font-size:17px; }
.service-card p { margin:0; color:var(--muted); font-size:13px; }
.service-number { position:absolute; right:22px; top:21px; font-family:'Cormorant Garamond',serif; font-size:25px; color:rgba(183,125,22,.35); }

/* Editorial content */
.editorial-grid { display:grid; grid-template-columns:minmax(0,1.05fr) minmax(360px,.95fr); gap:80px; align-items:center; }
.editorial-media { position:relative; }
.editorial-media img { width:100%; aspect-ratio:4/3; object-fit:cover; border-radius:28px; box-shadow:var(--shadow-lg); }
.editorial-media::before { content:''; position:absolute; width:54%; height:65%; right:-20px; bottom:-24px; border:1px solid var(--gold-400); border-radius:28px; z-index:-1; }
.editorial-quote { margin:30px 0 0; padding:25px 28px; border-left:3px solid var(--gold-500); background:#fff; box-shadow:var(--shadow-sm); font-family:'Cormorant Garamond',serif; font-size:27px; line-height:1.25; color:var(--navy-900); }
.check-list { display:grid; gap:14px; list-style:none; padding:0; margin:28px 0 0; }
.check-list li { display:grid; grid-template-columns:24px 1fr; gap:12px; color:var(--muted); }
.check-list li::before { content:'✓'; width:22px; height:22px; border-radius:50%; background:var(--gold-200); color:var(--gold-600); display:grid; place-items:center; font-weight:900; font-size:12px; }

/* Comparison */
.compare-wrap { display:grid; grid-template-columns:1fr auto 1fr; gap:24px; align-items:stretch; margin-top:45px; }
.compare-card { border-radius:24px; padding:34px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.13); backdrop-filter:blur(10px); }
.compare-card.highlight { background:#fff; color:var(--ink); border-color:var(--gold-400); box-shadow:var(--shadow-lg); }
.compare-card h3 { margin:0 0 22px; font-family:'Cormorant Garamond',serif; font-size:34px; line-height:1; }
.compare-card ul { list-style:none; padding:0; margin:0; display:grid; gap:14px; }
.compare-card li { display:grid; grid-template-columns:20px 1fr; gap:10px; color:rgba(255,255,255,.72); font-size:14px; }
.compare-card.highlight li { color:var(--muted); }
.compare-card li::before { content:'—'; color:var(--gold-400); font-weight:900; }
.compare-vs { width:58px; height:58px; align-self:center; border-radius:50%; background:var(--gold-500); color:#fff; display:grid; place-items:center; font-size:11px; font-weight:800; box-shadow:0 0 0 10px rgba(201,148,43,.12); }

/* Project cards */
.project-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.project-card { position:relative; min-height:330px; border-radius:20px; overflow:hidden; box-shadow:var(--shadow-sm); transform-style:preserve-3d; }
.project-card img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
.project-card::after { content:''; position:absolute; inset:0; background:linear-gradient(180deg,transparent 35%,rgba(5,21,37,.94)); }
.project-card:hover img { transform:scale(1.06); }
.project-card-content { position:absolute; inset:auto 22px 22px; z-index:2; color:#fff; }
.project-card-content span { color:var(--gold-400); font-size:10px; text-transform:uppercase; letter-spacing:.15em; font-weight:800; }
.project-card h3 { font-family:'Cormorant Garamond',serif; font-size:30px; line-height:1; margin:8px 0 8px; }
.project-card p { margin:0; font-size:12px; color:rgba(255,255,255,.72); }
.project-card-arrow { position:absolute; right:18px; top:18px; z-index:2; width:40px; height:40px; border-radius:50%; background:rgba(255,255,255,.92); color:var(--gold-600); display:grid; place-items:center; transition:transform .3s; }
.project-card:hover .project-card-arrow { transform:rotate(45deg); }

/* Timeline */
.timeline { display:grid; grid-template-columns:repeat(5,1fr); gap:0; margin-top:52px; position:relative; }
.timeline::before { content:''; position:absolute; left:8%; right:8%; top:34px; height:1px; background:linear-gradient(90deg,transparent,var(--gold-400) 8%,var(--gold-400) 92%,transparent); }
.timeline-step { position:relative; text-align:center; padding:0 18px; }
.timeline-icon { width:68px; height:68px; margin:0 auto 18px; border-radius:50%; display:grid; place-items:center; background:#fff; color:var(--gold-600); border:1px solid var(--gold-300, #e6c679); box-shadow:0 9px 26px rgba(5,21,37,.1); position:relative; z-index:2; }
.timeline-icon svg { width:25px; height:25px; }
.timeline-step small { color:var(--gold-600); font-weight:800; }
.timeline-step h3 { font-size:14px; margin:7px 0 7px; color:var(--navy-900); }
.timeline-step p { color:var(--muted); font-size:11px; margin:0; }

/* Founder */
.founder-card { display:grid; grid-template-columns:minmax(300px,.8fr) minmax(0,1.2fr); background:var(--navy-950); border-radius:32px; overflow:hidden; color:#fff; box-shadow:var(--shadow-lg); }
.founder-image { min-height:560px; position:relative; overflow:hidden; }
.founder-image img { width:100%; height:100%; object-fit:cover; position:absolute; inset:0; }
.founder-image::after { content:''; position:absolute; inset:0; background:linear-gradient(90deg,transparent 50%,var(--navy-950)); }
.founder-copy { padding:64px 60px; align-self:center; }
.founder-copy .section-title { color:#fff; }
.founder-copy .prose { color:rgba(255,255,255,.7); }
.founder-quote { margin:28px 0; padding:24px 0 24px 27px; border-left:2px solid var(--gold-400); font-family:'Cormorant Garamond',serif; font-size:28px; color:#fff; line-height:1.25; }
.tool-tags { display:flex; gap:9px; flex-wrap:wrap; margin-top:28px; }
.tool-tag { padding:9px 13px; border:1px solid rgba(255,255,255,.17); border-radius:999px; color:rgba(255,255,255,.86); font-size:11px; }

/* Mission solid */
.solid-layout { display:grid; grid-template-columns:360px 1fr; gap:70px; align-items:start; }
.solid-intro { position:sticky; top:170px; }
.solid-intro .section-title { color:#fff; }
.solid-intro .prose { color:rgba(255,255,255,.64); }
.solid-steps { position:relative; padding-left:58px; }
.solid-steps::before { content:''; position:absolute; left:17px; top:20px; bottom:20px; width:1px; background:rgba(255,255,255,.22); }
.solid-step { position:relative; padding:0 0 64px 0; }
.solid-step:last-child { padding-bottom:0; }
.solid-dot { position:absolute; left:-58px; top:3px; width:35px; height:35px; border:5px solid var(--gold-400); background:#fff; border-radius:50%; box-shadow:0 0 0 8px rgba(201,148,43,.1); }
.solid-step small { color:var(--gold-400); font-weight:800; letter-spacing:.1em; }
.solid-step h3 { margin:9px 0 10px; font-family:'Cormorant Garamond',serif; font-size:35px; line-height:1.1; color:#fff; }
.solid-step p { margin:0; color:rgba(255,255,255,.68); }

/* FAQ */
.faq { display:grid; gap:12px; max-width:960px; margin:50px auto 0; }
.faq-item { background:#fff; border:1px solid var(--line); border-radius:15px; overflow:hidden; }
.faq-question { width:100%; border:0; background:transparent; color:var(--navy-900); padding:21px 24px; display:flex; justify-content:space-between; align-items:center; gap:20px; text-align:left; font-weight:800; }
.faq-question span:last-child { width:32px; height:32px; border-radius:50%; background:var(--cream); display:grid; place-items:center; color:var(--gold-600); transition:transform .25s; flex:none; }
.faq-item.open .faq-question span:last-child { transform:rotate(45deg); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height .35s var(--ease); }
.faq-answer-inner { padding:0 24px 23px; color:var(--muted); }

/* CTA / forms */
.cta-band { background:linear-gradient(115deg,var(--navy-950),var(--navy-800)); color:#fff; border-radius:30px; padding:48px 54px; display:flex; align-items:center; justify-content:space-between; gap:40px; position:relative; overflow:hidden; }
.cta-band::after { content:''; position:absolute; right:-100px; top:-120px; width:400px; height:400px; border:1px solid rgba(201,148,43,.3); border-radius:50%; box-shadow:0 0 0 70px rgba(201,148,43,.05),0 0 0 140px rgba(201,148,43,.03); }
.cta-band > * { position:relative; z-index:2; }
.cta-band h2 { margin:0 0 8px; font-family:'Cormorant Garamond',serif; font-size:44px; line-height:1; }
.cta-band p { margin:0; color:rgba(255,255,255,.7); }

.form-layout { display:grid; grid-template-columns:.75fr 1.25fr; gap:44px; align-items:start; }
.contact-panel { background:var(--navy-950); color:#fff; border-radius:26px; padding:38px; position:sticky; top:160px; }
.contact-panel h2 { font-family:'Cormorant Garamond',serif; font-size:40px; margin:0 0 15px; }
.contact-panel p { color:rgba(255,255,255,.67); }
.contact-list { list-style:none; padding:0; margin:30px 0 0; display:grid; gap:18px; }
.contact-list li { display:grid; grid-template-columns:38px 1fr; gap:13px; align-items:center; }
.contact-list-icon { width:38px; height:38px; border:1px solid rgba(201,148,43,.45); border-radius:50%; display:grid; place-items:center; color:var(--gold-400); }
.contact-list small { display:block; color:rgba(255,255,255,.48); }
.contact-form { background:#fff; border:1px solid var(--line); border-radius:26px; padding:40px; box-shadow:var(--shadow-sm); }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.field { display:grid; gap:8px; }
.field.full { grid-column:1/-1; }
.field label { font-size:12px; font-weight:800; color:var(--navy-900); }
.field input, .field textarea, .field select { width:100%; border:1px solid var(--line); background:#fff; border-radius:10px; padding:14px 15px; color:var(--ink); outline:none; transition:border-color .2s, box-shadow .2s; }
.field textarea { min-height:140px; resize:vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color:var(--gold-500); box-shadow:0 0 0 4px rgba(201,148,43,.1); }
.file-zone { border:1px dashed rgba(8,34,58,.28); border-radius:12px; padding:18px; background:var(--cream); display:flex; align-items:center; justify-content:space-between; gap:18px; }
.file-zone input { display:none; }
.file-zone label { display:inline-flex; align-items:center; gap:10px; cursor:pointer; color:var(--navy-900); }
.file-name { color:var(--muted); font-size:12px; text-align:right; }
.form-note { color:var(--muted); font-size:11px; margin:14px 0 20px; }
.checkbox { display:flex; gap:10px; align-items:flex-start; color:var(--muted); font-size:11px; }
.checkbox input { margin-top:3px; }

/* Inner page hero */
.page-hero { background:#fff; padding:88px 0 72px; position:relative; overflow:hidden; }
.page-hero-grid { display:grid; grid-template-columns:1fr .86fr; gap:70px; align-items:center; }
.page-hero-image { min-height:450px; border-radius:26px; overflow:hidden; position:relative; box-shadow:var(--shadow-lg); }
.page-hero-image img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.page-hero-image::after { content:''; position:absolute; inset:0; background:linear-gradient(180deg,transparent,rgba(5,21,37,.22)); }
.breadcrumbs { display:flex; gap:9px; align-items:center; color:var(--muted); font-size:11px; margin-bottom:25px; }
.breadcrumbs a { color:var(--gold-600); font-weight:700; }

/* Footer */
.site-footer { background:var(--navy-950); color:#fff; padding:66px 0 24px; }
.footer-grid { display:grid; grid-template-columns:1.3fr .8fr 1fr 1.1fr; gap:45px; }
.footer-brand { display:flex; align-items:center; gap:14px; }
.footer-brand img { width:76px; height:76px; object-fit:contain; }
.footer-brand strong { letter-spacing:.15em; }
.footer-copy { color:rgba(255,255,255,.58); font-size:12px; max-width:300px; }
.footer-title { color:var(--gold-400); text-transform:uppercase; letter-spacing:.12em; font-size:10px; font-weight:800; margin-bottom:16px; }
.footer-links { list-style:none; padding:0; margin:0; display:grid; gap:9px; }
.footer-links a { color:rgba(255,255,255,.65); font-size:12px; transition:color .2s; }
.footer-links a:hover { color:#fff; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.1); margin-top:44px; padding-top:22px; display:flex; justify-content:space-between; gap:20px; color:rgba(255,255,255,.42); font-size:10px; }
.socials { display:flex; gap:10px; margin-top:20px; }
.social { width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,.15); display:grid; place-items:center; color:var(--gold-400); }

/* Motion */
.reveal { opacity:0; transform:translateY(28px); transition:opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.visible { opacity:1; transform:none; }
.reveal-delay-1 { transition-delay:.08s; }
.reveal-delay-2 { transition-delay:.16s; }
.reveal-delay-3 { transition-delay:.24s; }

/* Responsive */
@media (max-width: 1080px) {
  :root { --container:min(100% - 36px, 1000px); }
  .topbar-group.address { display:none; }
  .nav-links { gap:18px; }
  .nav-links a { font-size:12px; }
  .hero-grid { grid-template-columns:1fr; }
  .hero-copy { padding:80px var(--container-side, 30px) 60px; width:var(--container); margin:auto; }
  .hero-media { min-height:520px; clip-path:ellipse(90% 90% at 60% 100%); }
  .hero::after { display:none; }
  .hero-card { left:auto; right:5%; }
  .editorial-grid { gap:45px; }
  .project-grid { grid-template-columns:repeat(2,1fr); }
  .solid-layout { grid-template-columns:300px 1fr; gap:45px; }
  .footer-grid { grid-template-columns:1.2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column:2/4; }
}

@media (max-width: 860px) {
  .topbar-inner { justify-content:center; }
  .topbar-group:first-child { gap:18px; justify-content:center; }
  .topbar-badge { display:none!important; }
  .navbar-inner { min-height:74px; }
  .brand img { width:52px; height:52px; }
  .brand-copy strong { font-size:15px; }
  .brand-copy small { display:none; }
  .menu-toggle { display:flex; flex-direction:column; }
  .nav-links { position:fixed; top:110px; right:18px; left:18px; background:#fff; border:1px solid var(--line); border-radius:20px; box-shadow:var(--shadow-lg); padding:24px; display:grid; gap:2px; transform:translateY(-14px); opacity:0; pointer-events:none; transition:.25s var(--ease); }
  .nav-links.open { opacity:1; transform:none; pointer-events:auto; }
  .nav-links a { padding:13px 10px; font-size:14px; }
  .nav-actions .btn { display:none; }
  .fact-strip-inner { grid-template-columns:repeat(2,1fr); }
  .fact:nth-child(2) { border-right:0; }
  .fact:nth-child(-n+2) { border-bottom:1px solid var(--line); padding-bottom:17px; margin-bottom:17px; }
  .cards-grid { grid-template-columns:repeat(2,1fr); }
  .editorial-grid, .page-hero-grid, .form-layout { grid-template-columns:1fr; }
  .editorial-grid { gap:52px; }
  .compare-wrap { grid-template-columns:1fr; }
  .compare-vs { margin:auto; }
  .timeline { grid-template-columns:1fr 1fr; gap:38px 20px; }
  .timeline::before { display:none; }
  .founder-card { grid-template-columns:1fr; }
  .founder-image { min-height:420px; }
  .founder-image::after { background:linear-gradient(180deg,transparent 60%,var(--navy-950)); }
  .solid-layout { grid-template-columns:1fr; }
  .solid-intro { position:static; }
  .contact-panel { position:static; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-grid > div:last-child { grid-column:auto; }
}

@media (max-width: 620px) {
  :root { --container:calc(100% - 28px); }
  .section { padding:74px 0; }
  .topbar { font-size:10px; }
  .topbar-group { gap:12px!important; }
  .topbar a:nth-child(3), .topbar span:nth-child(3) { display:none; }
  .brand { min-width:0; }
  .brand-copy strong { letter-spacing:.08em; }
  .display-title { font-size:49px; }
  .hero-copy { padding:65px 14px 48px; width:var(--container); }
  .hero-points { grid-template-columns:1fr; }
  .hero-media { min-height:470px; clip-path:none; }
  .hero-card { left:16px; right:16px; width:auto; top:auto; bottom:20px; transform:none; }
  .fact-strip { margin-top:18px; }
  .fact-strip-inner { grid-template-columns:1fr 1fr; padding:18px 10px; }
  .fact { padding:0 8px; gap:8px; justify-content:flex-start; }
  .fact strong { font-size:14px; }
  .fact-icon { width:23px; height:23px; }
  .section-head { display:block; }
  .section-head .btn { margin-top:22px; }
  .cards-grid, .project-grid, .form-grid { grid-template-columns:1fr; }
  .project-card { min-height:300px; }
  .timeline { grid-template-columns:1fr; }
  .timeline-step { display:grid; grid-template-columns:58px 1fr; text-align:left; gap:16px; padding:0; }
  .timeline-icon { width:58px; height:58px; grid-row:1/4; }
  .timeline-step h3, .timeline-step p { margin-left:0; }
  .founder-copy { padding:42px 25px; }
  .solid-steps { padding-left:52px; }
  .cta-band { padding:36px 26px; display:block; }
  .cta-band .btn { margin-top:24px; }
  .contact-form { padding:26px 18px; }
  .file-zone { display:grid; }
  .file-name { text-align:left; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-bottom { display:block; }
  .footer-bottom > * + * { margin-top:10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior:auto!important; animation:none!important; transition-duration:.01ms!important; }
  .reveal { opacity:1; transform:none; }
}

/* Inline icon sizing */
.fact > svg { width:30px; height:30px; color:var(--gold-600); flex:none; }
.contact-list-icon svg { width:17px; height:17px; }
.file-zone label svg { width:20px; height:20px; color:var(--gold-600); }
.social svg { width:16px; height:16px; }


/* Rich project knowledge pages */
.project-grid-five { grid-template-columns:repeat(5, minmax(0,1fr)); }
.project-grid-five .project-card { min-height:350px; }
.project-grid-five .project-card h3 { font-size:27px; }

.detail-meta { padding:0 0 34px; }
.detail-meta-grid {
  margin-top:-28px;
  position:relative;
  z-index:8;
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  box-shadow:var(--shadow-md);
  overflow:hidden;
}
.detail-meta-card { padding:25px 26px; border-right:1px solid var(--line); min-height:150px; }
.detail-meta-card:last-child { border-right:0; }
.detail-meta-card > span {
  display:block;
  color:var(--gold-600);
  font-size:10px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  margin-bottom:9px;
}
.detail-meta-card strong { display:block; color:var(--navy-900); font-size:15px; line-height:1.35; }
.detail-meta-card p { color:var(--muted); font-size:11px; line-height:1.55; margin:8px 0 0; }

.update-stamp {
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--muted);
  font-size:11px;
  margin:20px 0 0;
}
.update-stamp::before {
  content:'';
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--success);
  box-shadow:0 0 0 5px rgba(31,107,77,.1);
}

.info-card-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.info-card {
  position:relative;
  min-height:230px;
  padding:31px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  box-shadow:0 10px 30px rgba(5,21,37,.04);
  overflow:hidden;
  transition:transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.info-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-md); border-color:var(--gold-200); }
.info-card::after {
  content:'';
  position:absolute;
  right:-48px;
  bottom:-55px;
  width:125px;
  height:125px;
  border:1px solid rgba(201,148,43,.15);
  border-radius:50%;
}
.info-card-index {
  display:block;
  color:rgba(183,125,22,.45);
  font-family:'Cormorant Garamond',serif;
  font-size:26px;
  font-weight:700;
  margin-bottom:24px;
}
.info-card h3 { color:var(--navy-900); font-size:17px; margin:0 0 11px; }
.info-card p { color:var(--muted); font-size:13px; margin:0; }

.regulation-section { overflow:visible; }
.regulation-layout { display:grid; grid-template-columns:minmax(300px,.8fr) minmax(0,1.2fr); gap:72px; align-items:start; }
.regulation-intro { position:sticky; top:165px; }
.regulation-intro .section-title { font-size:clamp(42px,4.6vw,62px); }
.regulation-intro > p { color:rgba(255,255,255,.68); font-size:15px; }
.legal-notice {
  margin-top:28px;
  padding:19px 21px;
  border:1px solid rgba(218,169,66,.32);
  border-radius:14px;
  background:rgba(255,255,255,.05);
  color:rgba(255,255,255,.72);
  font-size:11px;
  line-height:1.65;
}
.regulation-list {
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:14px;
  counter-reset:rule;
}
.regulation-list li {
  counter-increment:rule;
  display:grid;
  grid-template-columns:58px 1fr;
  column-gap:19px;
  row-gap:4px;
  align-items:start;
  padding:25px 27px;
  border:1px solid rgba(255,255,255,.13);
  background:rgba(255,255,255,.055);
  border-radius:18px;
  backdrop-filter:blur(8px);
}
.regulation-list li::before {
  content:counter(rule, decimal-leading-zero);
  grid-row:1/3;
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border:1px solid rgba(218,169,66,.5);
  border-radius:50%;
  color:var(--gold-400);
  font-size:11px;
  font-weight:800;
}
.regulation-list strong { color:#fff; font-size:15px; }
.regulation-list span { color:rgba(255,255,255,.67); font-size:12px; line-height:1.65; }

.process-grid { display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); gap:14px; }
.process-card {
  min-height:220px;
  padding:25px 22px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  position:relative;
}
.process-card > span {
  display:grid;
  width:42px;
  height:42px;
  place-items:center;
  border-radius:50%;
  background:var(--navy-950);
  color:var(--gold-400);
  font-size:10px;
  font-weight:800;
  margin-bottom:22px;
}
.process-card h3 { color:var(--navy-900); font-size:15px; margin:0 0 10px; }
.process-card p { color:var(--muted); font-size:11px; margin:0; }

.source-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.source-card {
  min-height:245px;
  padding:29px;
  border:1px solid var(--line);
  border-radius:19px;
  background:#fff;
  box-shadow:0 8px 28px rgba(5,21,37,.04);
  display:flex;
  flex-direction:column;
  transition:transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.source-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:var(--gold-300, #e6c679); }
.source-domain {
  align-self:flex-start;
  padding:6px 10px;
  border-radius:999px;
  background:var(--navy-950);
  color:#fff;
  font-size:9px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.source-card h3 { font-family:'Cormorant Garamond',serif; color:var(--navy-900); font-size:27px; line-height:1.05; margin:20px 0 12px; }
.source-card p { color:var(--muted); font-size:12px; margin:0 0 23px; }
.source-link { color:var(--gold-600); font-size:11px; font-weight:800; margin-top:auto; }

.knowledge-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:17px; }
.knowledge-card {
  padding:27px;
  border-radius:18px;
  border:1px solid var(--line);
  background:linear-gradient(145deg,#fff,var(--cream));
}
.knowledge-card > span { color:var(--gold-600); font-family:'Cormorant Garamond',serif; font-size:27px; }
.knowledge-card h3 { color:var(--navy-900); font-size:16px; margin:16px 0 10px; }
.knowledge-card p { color:var(--muted); font-size:12px; margin:0; }
.regulation-disclaimer {
  margin:24px 0 0;
  padding:16px 18px;
  border-left:3px solid var(--gold-500);
  color:var(--muted);
  background:var(--cream);
  font-size:11px;
}

@media (max-width: 1180px) {
  .project-grid-five { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .process-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
}
@media (max-width: 860px) {
  .project-grid-five { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .detail-meta-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .detail-meta-card:nth-child(2) { border-right:0; }
  .detail-meta-card:nth-child(-n+2) { border-bottom:1px solid var(--line); }
  .regulation-layout { grid-template-columns:1fr; gap:44px; }
  .regulation-intro { position:static; }
  .info-card-grid, .source-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .process-grid, .knowledge-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width: 620px) {
  .project-grid-five,
  .detail-meta-grid,
  .info-card-grid,
  .source-grid,
  .process-grid,
  .knowledge-grid { grid-template-columns:1fr; }
  .detail-meta { padding-bottom:20px; }
  .detail-meta-grid { margin-top:0; }
  .detail-meta-card { border-right:0; border-bottom:1px solid var(--line); }
  .detail-meta-card:last-child { border-bottom:0; }
  .regulation-list li { grid-template-columns:47px 1fr; padding:20px 18px; column-gap:13px; }
  .regulation-list li::before { width:40px; height:40px; }
  .process-card { min-height:0; display:grid; grid-template-columns:45px 1fr; gap:15px; }
  .process-card > span { margin:0; }
  .source-card { min-height:0; }
}

/* =========================================================
   AJUSTEMENT FINAL DU LOGO DANS LE HEADER
   À conserver tout en bas du fichier CSS.
   ========================================================= */

html {
  scroll-padding-top: 158px;
}

.navbar-inner {
  min-height: 102px;
}

/* Bloc marque : logo + nom de l'entreprise */
.brand {
  min-width: 260px;
  gap: 17px;
  align-items: center;
}

/* Logo plus grand, légèrement remonté et mieux mis en valeur */
.brand img {
  width: 84px;
  height: 84px;
  flex: 0 0 84px;
  object-fit: contain;
  object-position: center;
  transform: translateY(-5px) scale(1.06);
  transform-origin: center;
  filter: drop-shadow(0 5px 10px rgba(5, 21, 37, 0.10));
}

/* Texte placé à côté du logo */
.brand-copy {
  align-content: center;
  transform: translateY(-2px);
}

.brand-copy strong {
  font-size: 19px;
  line-height: 1.1;
  letter-spacing: 0.18em;
}

.brand-copy small {
  margin-top: 7px;
  font-size: 10.5px;
  line-height: 1.25;
  letter-spacing: 0.09em;
}

/* Ordinateurs de largeur moyenne */
@media (max-width: 1080px) {
  html {
    scroll-padding-top: 148px;
  }

  .navbar-inner {
    min-height: 92px;
  }

  .brand {
    min-width: 225px;
    gap: 14px;
  }

  .brand img {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
    transform: translateY(-4px) scale(1.05);
  }

  .brand-copy strong {
    font-size: 17px;
    letter-spacing: 0.14em;
  }

  .brand-copy small {
    font-size: 9.5px;
  }
}

/* Tablettes et menu mobile */
@media (max-width: 860px) {
  html {
    scroll-padding-top: 132px;
  }

  .navbar-inner {
    min-height: 82px;
  }

  .brand {
    min-width: 0;
    gap: 12px;
  }

  .brand img {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
    transform: translateY(-3px) scale(1.04);
  }

  .brand-copy {
    transform: none;
  }

  .brand-copy strong {
    font-size: 15px;
    letter-spacing: 0.10em;
  }

  .brand-copy small {
    display: none;
  }

  .nav-links {
    top: 126px;
  }
}

/* Téléphones */
@media (max-width: 620px) {
  html {
    scroll-padding-top: 122px;
  }

  .navbar-inner {
    min-height: 76px;
  }

  .brand {
    gap: 9px;
  }

  .brand img {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
    transform: translateY(-2px) scale(1.03);
  }

  .brand-copy strong {
    font-size: 13px;
    letter-spacing: 0.07em;
  }

  .nav-links {
    top: 118px;
  }
}

/* =========================================================
   FORMULAIRE RGPD, LOGO OFFICIEL ET PAGES DE POLITIQUES
   ========================================================= */

/* Checkbox RGPD : empêche le champ de prendre toute la largeur */
.checkbox.privacy-checkbox {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 13px;
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  color: var(--navy-900);
  font-size: 12px;
  line-height: 1.6;
}

.checkbox.privacy-checkbox input[type="checkbox"] {
  appearance: auto;
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin: 2px 0 0;
  padding: 0;
  border: 0;
  border-radius: 4px;
  accent-color: var(--gold-600);
  box-shadow: none;
}

.checkbox.privacy-checkbox a {
  color: var(--gold-600);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rgpd-form-info {
  margin: 14px 0 0;
  padding: 16px 18px;
  border-left: 3px solid var(--gold-500);
  background: #fffaf0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.rgpd-form-info a {
  color: var(--gold-600);
  font-weight: 800;
}

/* Le nouveau logo est plus vertical : réglage précis du header */
.brand img {
  object-fit: contain;
  object-position: center;
}

.footer-brand {
  align-items: center;
}

.footer-brand img {
  width: 84px;
  height: 84px;
  padding: 5px;
  border-radius: 16px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 30px rgba(0,0,0,.14);
}

/* Pages juridiques et politiques */
.policy-hero {
  padding-bottom: 58px;
}

.policy-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.policy-nav {
  position: sticky;
  top: 166px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.policy-nav strong {
  display: block;
  color: var(--navy-900);
  font-size: 13px;
  margin-bottom: 15px;
}

.policy-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 4px;
}

.policy-nav a {
  display: block;
  padding: 10px 11px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 12px;
  transition: background .2s, color .2s;
}

.policy-nav a:hover {
  color: var(--navy-900);
  background: var(--cream);
}

.policy-content {
  max-width: 860px;
}

.policy-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 42px;
}

.policy-summary-card {
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}

.policy-summary-card span {
  display: block;
  color: var(--gold-600);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.policy-summary-card strong {
  color: var(--navy-900);
  font-size: 13px;
  line-height: 1.45;
}

.policy-section {
  padding: 0 0 38px;
  margin: 0 0 38px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 170px;
}

.policy-section:last-child {
  border-bottom: 0;
}

.policy-section h2 {
  margin: 0 0 15px;
  color: var(--navy-950);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(31px, 3vw, 42px);
  line-height: 1.05;
}

.policy-section h3 {
  margin: 24px 0 10px;
  color: var(--navy-900);
  font-size: 16px;
}

.policy-section p,
.policy-section li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.policy-section ul {
  padding-left: 20px;
}

.policy-section a {
  color: var(--gold-600);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 12px;
}

.policy-table th,
.policy-table td {
  padding: 14px 15px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.policy-table th {
  color: var(--navy-900);
  background: var(--cream);
}

.policy-table td {
  color: var(--muted);
  background: #fff;
}

.policy-callout {
  margin: 22px 0;
  padding: 20px 22px;
  border-left: 3px solid var(--gold-500);
  border-radius: 0 12px 12px 0;
  background: #fff8e8;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.policy-date {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 11px;
}

.policy-date::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(31,107,77,.1);
}

.footer-legal-links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px 13px;
}

.footer-legal-links a {
  color: rgba(255,255,255,.55);
}

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

@media (max-width: 860px) {
  .policy-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .policy-nav {
    position: static;
  }

  .policy-summary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .policy-table,
  .policy-table tbody,
  .policy-table tr,
  .policy-table th,
  .policy-table td {
    display: block;
    width: 100%;
  }

  .policy-table thead {
    display: none;
  }

  .policy-table tr {
    margin-bottom: 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
  }

  .policy-table td {
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .policy-table td:last-child {
    border-bottom: 0;
  }

  .footer-legal-links {
    justify-content: flex-start;
    margin-top: 12px;
  }
}

