/* ==========================================================================
   LBH HOLDING — Design System
   Charte : Or (gold) + Bleu nuit (navy) · Outfit + DM Sans
   Style : ultra moderne / futuriste · dark-first · glassmorphism
   ========================================================================== */

/* ----------  FONTS  ---------- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=DM+Sans:wght@400;500;600;700&display=swap');

/* ----------  TOKENS  ---------- */
:root {
  /* Gold palette (identique à la charte d'origine : hsl 45 93% 47%) */
  --gold:        hsl(45 93% 50%);
  --gold-light:  hsl(45 96% 62%);
  --gold-dark:   hsl(43 90% 40%);
  --gold-rgb:    240 185 20;

  /* Navy / dark scale */
  --navy-950:    hsl(222 47% 5%);
  --navy-900:    hsl(222 45% 7%);
  --navy-850:    hsl(222 42% 9%);
  --navy-800:    hsl(222 40% 12%);
  --navy-700:    hsl(220 35% 17%);
  --navy-600:    hsl(218 28% 24%);

  --bg:          var(--navy-950);
  --surface:     hsl(222 42% 8% / .7);
  --surface-solid: hsl(222 42% 9%);
  --border:      hsl(45 40% 50% / .14);
  --border-soft: hsl(210 40% 90% / .08);

  --text:        hsl(210 40% 97%);
  --text-muted:  hsl(214 22% 68%);
  --text-dim:    hsl(214 18% 52%);

  --radius:      18px;
  --radius-lg:   28px;
  --radius-sm:   12px;

  --container:   1200px;
  --ease:        cubic-bezier(.16,.84,.32,1);
  --ease-out:    cubic-bezier(.22,1,.36,1);

  --shadow-gold: 0 10px 40px -12px hsl(45 93% 45% / .45);
  --shadow-xl:   0 30px 60px -20px hsl(222 60% 2% / .8);

  --font-head:   'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body:   'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ----------  RESET  ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: -.011em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Aurora / mesh background global */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60rem 60rem at 10% -10%, hsl(45 90% 40% / .10), transparent 55%),
    radial-gradient(50rem 50rem at 100% 0%,  hsl(222 60% 30% / .22), transparent 50%),
    radial-gradient(45rem 45rem at 50% 120%, hsl(45 80% 40% / .07), transparent 55%);
  pointer-events: none;
}
/* Fine grid overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(hsl(210 40% 90% / .022) 1px, transparent 1px),
    linear-gradient(90deg, hsl(210 40% 90% / .022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 75%);
  pointer-events: none;
}

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

/* ----------  TYPOGRAPHY  ---------- */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.03em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.75rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 700; }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.85rem); font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }
p  { max-width: 68ch; }

.gold-text {
  background: linear-gradient(105deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.text-muted { color: var(--text-muted); }

/* ----------  LAYOUT  ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: clamp(28px, 3.4vw, 52px); position: relative; }
.section-sm { padding-block: clamp(18px, 2.4vw, 34px); }
a.card { cursor: pointer; }
.dev-tag { display: inline-flex; align-items: center; gap: 6px; margin-bottom: 12px; font-size: .66rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--gold); background: hsl(45 90% 50% / .1); border: 1px solid var(--border); border-radius: 100px; padding: 4px 11px; }
.dev-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 8px var(--gold); animation: pulse 1.6s ease-in-out infinite; }
.center { text-align: center; }
.maxw-3 { max-width: 760px; }
.mx-auto { margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-size: .72rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold);
  padding: 7px 15px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: hsl(45 90% 50% / .06);
  backdrop-filter: blur(8px);
}
.eyebrow::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--gold); box-shadow:0 0 10px var(--gold); }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--text-muted); line-height: 1.7; }
.divider { width: 64px; height: 3px; border-radius: 3px; background: linear-gradient(90deg,var(--gold-dark),var(--gold),var(--gold-light)); }
.divider.center { margin-inline: auto; }

/* ----------  HEADER  ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  transition: background .4s var(--ease), border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: hsl(222 47% 5% / .72);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--border-soft);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; letter-spacing: -.02em; }
.brand .logo-mark { width: 34px; height: 34px; flex: none; }
.brand span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  position: relative; padding: 9px 15px; font-size: .93rem; font-weight: 500; color: var(--text-muted);
  border-radius: 10px; transition: color .25s;
}
.nav-links a::after {
  content:''; position:absolute; left:15px; right:15px; bottom:4px; height:2px; border-radius:2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 8px; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; align-items: center; justify-content: center; color: var(--text); border: 1px solid var(--border-soft); }
.nav-toggle svg { width: 22px; height: 22px; }

.mobile-menu {
  display: none; flex-direction: column; gap: 4px; padding: 12px 24px 24px;
  background: hsl(222 47% 5% / .95); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-soft);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 13px 14px; border-radius: 12px; font-weight: 500; color: var(--text-muted); border-left: 2px solid transparent; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--gold); border-left-color: var(--gold); background: hsl(45 90% 50% / .06); }

/* ----------  BUTTONS  ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: .96rem; line-height: 1;
  padding: 15px 26px; border-radius: 100px; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .3s, background .3s, border-color .3s, color .3s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: scale(.96); }
.btn-primary {
  background: linear-gradient(100deg, var(--gold-light), var(--gold-dark));
  color: #0a0f1a; font-weight: 800; box-shadow: var(--shadow-gold);
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content:''; position:absolute; inset:0; background: linear-gradient(100deg, transparent 30%, hsl(0 0% 100% / .45), transparent 70%);
  transform: translateX(-120%); transition: transform .6s var(--ease);
}
.btn-primary:hover { box-shadow: 0 14px 44px -10px hsl(45 93% 50% / .6); transform: translateY(-2px); }
.btn-primary:hover::after { transform: translateX(120%); }
.btn-ghost {
  color: var(--text); border: 1px solid var(--border); background: hsl(210 40% 90% / .03); backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: hsl(45 90% 50% / .07); transform: translateY(-2px); }
.btn-lg { padding: 18px 34px; font-size: 1.05rem; }

/* ----------  GLASS CARD  ---------- */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
  overflow: hidden;
}
.card:hover { transform: translateY(-6px); border-color: var(--border); box-shadow: var(--shadow-xl); }
.card-glow::before {
  content:''; position:absolute; inset:0; border-radius: inherit; padding:1px;
  background: linear-gradient(140deg, hsl(45 90% 55% / .5), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .4s;
}
.card-glow:hover::before { opacity: 1; }

/* ----------  HERO  ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; padding-top: 40px; }
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .5; pointer-events: none; z-index:-1;
  animation: float 14s ease-in-out infinite;
}
.hero-orb.o1 { width: 42rem; height: 42rem; top: -12rem; right: -10rem; background: radial-gradient(circle, hsl(45 90% 45% / .35), transparent 65%); }
.hero-orb.o2 { width: 34rem; height: 34rem; bottom: -14rem; left: -8rem; background: radial-gradient(circle, hsl(222 70% 40% / .4), transparent 65%); animation-delay: -6s; }
@keyframes float { 0%,100% { transform: translate(0,0); } 50% { transform: translate(20px,-28px); } }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.65); } }

/* Status badge (projet en développement) */
.status-badge { position: absolute; bottom: 14px; right: 14px; z-index: 3; display: inline-flex; align-items: center; gap: 7px; font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #fff; background: hsl(222 47% 5% / .72); border: 1px solid var(--border); border-radius: 100px; padding: 6px 12px; backdrop-filter: blur(6px); box-shadow: 0 4px 14px -4px hsl(222 60% 2% / .6); }
.status-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold); animation: pulse 1.6s ease-in-out infinite; }

.hero h1 { margin-bottom: 26px; }
.hero .lead { margin-bottom: 38px; max-width: 640px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Floating stat chips in hero */
.hero-stats { display: flex; flex-wrap: wrap; gap: 14px 40px; margin-top: 30px; }
.hero-stat .n { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.8rem,3vw,2.6rem); }
.hero-stat .l { font-size: .82rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .12em; }

/* ----------  FEATURE / VALUE GRID  ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }

.value { padding: 34px; }
.value .ico {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 22px;
  background: linear-gradient(140deg, hsl(45 90% 50% / .18), hsl(45 90% 50% / .04));
  border: 1px solid var(--border); color: var(--gold);
  transition: background .35s, transform .35s;
}
.value .ico svg { width: 26px; height: 26px; }
.value:hover .ico { background: linear-gradient(140deg, var(--gold), var(--gold-dark)); color: hsl(222 47% 8%); transform: scale(1.06) rotate(-3deg); }
.value h3 { margin-bottom: 10px; font-size: 1.3rem; }
.value p { color: var(--text-muted); font-size: .97rem; }

/* ----------  TOOL CARDS (page Outils)  ---------- */
.tool { padding: 30px; display: flex; flex-direction: column; }
.tool-logo { width: 62px; height: 62px; border-radius: 15px; background: #fff; display: grid; place-items: center; margin-bottom: 22px; position: relative; overflow: hidden; box-shadow: 0 8px 22px -10px hsl(222 60% 2% / .7), inset 0 0 0 1px hsl(0 0% 100% / .8); }
.tool-logo img { width: 100%; height: 100%; object-fit: contain; padding: 10px; background: #fff; position: relative; z-index: 1; }
.tool-logo .fallback { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; color: var(--gold-dark); text-transform: uppercase; z-index: 0; }
.tool-logo svg { width: 30px; height: 30px; color: #0f1730; position: relative; z-index: 1; }
.tool-cat { font-size: .7rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--gold); margin-bottom: 9px; }
.tool h3 { font-size: 1.28rem; margin-bottom: 8px; }
.tool p { color: var(--text-muted); font-size: .95rem; flex: 1; }
.tool .link { margin-top: 20px; display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: var(--gold); font-size: .9rem; }
.tool .link svg { width: 16px; height: 16px; transition: transform .3s; }
.tool:hover .link svg { transform: translateX(4px); }

/* ----------  STATS BANNER  ---------- */
.stat-card { padding: 34px 28px; text-align: center; }
.stat-card .n { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.4rem,4.5vw,3.4rem); line-height: 1; margin-bottom: 10px; }
.stat-card .l { font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); }

/* ----------  PROJECT CARDS  ---------- */
.project { display: flex; flex-direction: column; }
.project .media { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.project .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.project:hover .media img { transform: scale(1.07); }
.project .media::after { content:''; position:absolute; inset:0; background: linear-gradient(to top, hsl(222 47% 5% / .85), transparent 55%); }
.project .cat {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 100px; color: var(--gold);
  background: hsl(222 47% 5% / .6); border: 1px solid var(--border); backdrop-filter: blur(6px);
}
.project .body { padding: 26px 28px 30px; flex: 1; display: flex; flex-direction: column; }
.project h3 { margin-bottom: 10px; }
.project p { color: var(--text-muted); font-size: .96rem; flex: 1; }
.project .link { margin-top: 20px; display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: var(--gold); font-size: .92rem; }
.project .link svg { width: 16px; height: 16px; transition: transform .3s; }
.project:hover .link svg { transform: translateX(4px); }
.project.soon { border-style: dashed; opacity: .78; }
.project.soon .placeholder { aspect-ratio: 16/10; display: grid; place-items: center; background: repeating-linear-gradient(45deg, hsl(222 40% 12%), hsl(222 40% 12%) 12px, hsl(222 40% 10%) 12px, hsl(222 40% 10%) 24px); color: var(--text-dim); }

/* ----------  BLOG CARDS  ---------- */
.post { display: flex; flex-direction: column; }
.post .media { aspect-ratio: 16/9; overflow: hidden; }
.post .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.post:hover .media img { transform: scale(1.06); }
.post .body { padding: 24px 26px 28px; flex:1; display:flex; flex-direction:column; }
.post .meta { display: flex; gap: 12px; align-items: center; font-size: .78rem; color: var(--text-dim); margin-bottom: 12px; }
.post .tag { color: var(--gold); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; font-size: .72rem; }
.post h3 { font-size: 1.28rem; margin-bottom: 10px; transition: color .3s; }
.post:hover h3 { color: var(--gold); }
.post p { color: var(--text-muted); font-size: .93rem; flex:1; }
.post .readmore { margin-top: 18px; font-weight: 600; color: var(--gold); font-size: .88rem; display:inline-flex; gap:7px; align-items:center; }
.post .readmore svg { width: 16px; height: 16px; flex: none; transition: transform .3s; }
.post:hover .readmore svg { transform: translateX(4px); }

/* ----------  ARTICLE (blog post)  ---------- */
.article { max-width: 760px; margin-inline: auto; }
.article-hero { padding-top: clamp(40px,7vw,80px); }
.article-cover { border-radius: var(--radius-lg); overflow: hidden; margin: 40px 0; border: 1px solid var(--border-soft); aspect-ratio: 16/8; }
.article-cover img { width:100%; height:100%; object-fit: cover; }
.prose { font-size: 1.08rem; line-height: 1.85; color: hsl(214 26% 82%); }
.prose > * { max-width: 100%; }
.prose h2 { font-size: 1.9rem; margin: 52px 0 18px; color: var(--text); }
.prose h3 { font-size: 1.4rem; margin: 36px 0 14px; color: var(--text); }
.prose p { margin-bottom: 20px; max-width: 100%; }
.prose ul, .prose ol { margin: 0 0 22px 22px; display: flex; flex-direction: column; gap: 10px; }
.prose ul li { list-style: none; position: relative; padding-left: 24px; }
.prose ul li::before { content:''; position:absolute; left:0; top:.7em; width:7px; height:7px; border-radius:2px; background: var(--gold); }
.prose ol { list-style: decimal; }
.prose ol li::marker { color: var(--gold); font-weight: 700; }
.prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: hsl(45 90% 50% / .4); }
.prose strong { color: var(--text); font-weight: 700; }
.prose blockquote {
  margin: 30px 0; padding: 20px 28px; border-left: 3px solid var(--gold);
  background: hsl(45 90% 50% / .05); border-radius: 0 12px 12px 0; font-size: 1.15rem; color: var(--text);
}
.prose blockquote p { margin: 0; }
.callout {
  margin: 30px 0; padding: 24px 28px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
}
.callout h4 { color: var(--gold); margin-bottom: 8px; }

/* ----------  CTA STRIP  ---------- */
.cta-panel {
  position: relative; overflow: hidden; text-align: center;
  padding: clamp(48px,7vw,88px) clamp(24px,5vw,72px);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--navy-850), var(--navy-900));
  border: 1px solid var(--border);
}
.cta-panel::before { content:''; position:absolute; top:-40%; left:50%; transform:translateX(-50%); width:60rem; height:40rem; background: radial-gradient(circle, hsl(45 90% 45% / .16), transparent 60%); pointer-events:none; }
.cta-panel > * { position: relative; }
.cta-panel h2 { margin-bottom: 18px; }

/* ----------  CONTACT  ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 8px; color: var(--text-muted); }
.field input, .field textarea {
  width: 100%; padding: 14px 16px; font-family: inherit; font-size: 1rem;
  background: hsl(222 40% 12% / .6); border: 1px solid var(--border-soft); border-radius: 12px; color: var(--text);
  transition: border-color .25s, box-shadow .25s;
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px hsl(45 90% 50% / .15); }
.contact-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px; border-radius: var(--radius); border: 1px solid var(--border-soft); background: var(--surface); margin-bottom: 14px; transition: border-color .3s, transform .3s; }
.contact-item:hover { border-color: var(--border); transform: translateX(4px); }
.contact-item .ico { width: 46px; height: 46px; flex:none; border-radius: 12px; display:grid; place-items:center; background: hsl(45 90% 50% / .1); color: var(--gold); border:1px solid var(--border); }
.contact-item .ico svg { width: 22px; height: 22px; }
.contact-item .t { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-dim); margin-bottom: 3px; }
.contact-item a, .contact-item span { color: var(--text); font-weight: 500; }
.form-note { font-size:.82rem; color: var(--text-dim); margin-top: 4px; }

/* ----------  FOOTER  ---------- */
.site-footer { border-top: 1px solid var(--border-soft); background: linear-gradient(180deg, transparent, hsl(222 47% 4%)); margin-top: 40px; position: relative; }
.site-footer::before { content:''; position:absolute; top:0; left:0; right:0; height:1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity:.5; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.4fr; gap: 48px; padding-block: 64px 0; }
.footer-grid p { color: var(--text-muted); font-size: .93rem; margin-top: 16px; max-width: 34ch; }
.footer-h { font-family: var(--font-head); font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--text); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { color: var(--text-muted); font-size: .93rem; transition: color .25s, padding .25s; }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.social { display: flex; gap: 10px; margin-top: 22px; }
.social a { width: 42px; height: 42px; border-radius: 12px; display:grid; place-items:center; border:1px solid var(--border-soft); color: var(--text-muted); transition: all .3s; }
.social a:hover { color: var(--gold); border-color: var(--gold); background: hsl(45 90% 50% / .08); transform: translateY(-3px); }
.social svg { width: 19px; height: 19px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; padding-block: 28px; margin-top: 56px; border-top: 1px solid var(--border-soft); font-size: .86rem; color: var(--text-dim); }
.footer-bottom a { color: var(--text-dim); } .footer-bottom a:hover { color: var(--gold); }

/* ----------  REVEAL ANIMATION  ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }

/* ----------  CURSOR GLOW (desktop)  ---------- */
.cursor-glow { position: fixed; top: 0; left: 0; width: 400px; height: 400px; border-radius: 50%; pointer-events: none; z-index: 0; transform: translate(-50%,-50%); background: radial-gradient(circle, hsl(45 90% 50% / .06), transparent 60%); transition: opacity .3s; mix-blend-mode: screen; }
@media (hover: none) { .cursor-glow { display: none; } }

/* ----------  PAGE HEADER (interior pages)  ---------- */
.page-hero { position: relative; overflow: hidden; padding-top: clamp(56px,8vw,96px); }
.page-hero .hero-orb.o1 { width: 34rem; height: 34rem; top: -14rem; right: -8rem; opacity:.4; }

/* ----------  TIMELINE  ---------- */
.timeline { position: relative; max-width: 820px; margin-inline: auto; }
.timeline::before { content:''; position:absolute; left: 15px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--gold), transparent); }
.tl-item { position: relative; padding-left: 56px; padding-bottom: 44px; }
.tl-item::before { content:''; position:absolute; left: 8px; top: 6px; width: 16px; height: 16px; border-radius: 50%; background: var(--navy-950); border: 3px solid var(--gold); box-shadow: 0 0 14px hsl(45 90% 50% / .6); }
.tl-item .yr { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--gold); margin-bottom: 6px; }
.tl-item h3 { font-size: 1.25rem; margin-bottom: 8px; }
.tl-item p { color: var(--text-muted); font-size: .96rem; }

/* ----------  SECTORS PILLS  ---------- */
.pills { display: flex; flex-wrap: wrap; gap: 12px; }
.pill { padding: 10px 20px; border-radius: 100px; border: 1px solid var(--border-soft); background: var(--surface); font-size: .92rem; font-weight: 500; color: var(--text-muted); transition: all .3s; }
.pill:hover { border-color: var(--gold); color: var(--gold); }

/* ----------  TOAST  ---------- */
.toast { position: fixed; bottom: 28px; left: 50%; transform: translate(-50%, 120%); z-index: 200; padding: 15px 24px; border-radius: 14px; background: var(--surface-solid); border: 1px solid var(--gold); color: var(--text); font-weight: 500; box-shadow: var(--shadow-xl); transition: transform .5s var(--ease); display:flex; gap:10px; align-items:center; }
.toast.show { transform: translate(-50%, 0); }
.toast svg { width: 20px; height: 20px; color: var(--gold); }

/* ----------  SKIP LINK / A11Y  ---------- */
.skip { position: absolute; left: -999px; top: 8px; z-index: 300; background: var(--gold); color: #111; padding: 10px 16px; border-radius: 8px; }
.skip:focus { left: 12px; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ----------  RESPONSIVE  ---------- */
@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 720px) {
  .nav-links, .nav .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px 32px; }
}
