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

:root {
  --navy:  #0a1628;
  --deep:  #060e1c;
  --ocean: #0d3b6e;
  --sky:   #b8d4e8;
  --bone:  #f5f0e8;
  --white: #ffffff;
  --gold:  #c9a84c;
  --fd: 'Cormorant Garamond', Georgia, serif;
  --fm: 'DM Mono', 'Courier New', monospace;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--fd);
  background: var(--navy);
  color: var(--bone);
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   VIDEO WATERMARK
   Fixed behind all content, visible on
   every section as you scroll
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#video-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
/* Fallback background shown when video can't play (iPhone local file) */
body {
  background: 
    radial-gradient(ellipse 80% 60% at 65% 35%, rgba(13,59,110,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 70%, rgba(13,40,80,0.2) 0%, transparent 60%),
    #0a1628;
}
#video-bg video {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  object-fit: cover;
  opacity: 0.09;
  mix-blend-mode: screen;
  filter: saturate(0) brightness(1.8) contrast(1.1);
  /* iOS Safari requires these for autoplay */
  -webkit-playsinline: 1;
}
/* Fallback: if video doesn't play on iOS, show subtle gradient instead */
@supports (-webkit-touch-callout: none) {
  #video-bg video {
    opacity: 0.06;
  }
}
/* Vignette keeps text legible at edges */
#video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 100% at 55% 45%,
      transparent 0%,
      rgba(10,22,40,0.55) 60%,
      rgba(6,14,28,0.9) 100%);
}

/* All page content sits above the fixed video */
#page {
  position: relative;
  z-index: 1;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAV
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 4rem;
  background: rgba(6,14,28,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(245,240,232,0.05);
}
.nav-logo img { height: 52px; width: auto; display: block; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: var(--fm);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.45);
  text-decoration: none;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--gold); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTIONS — transparent backgrounds so
   the fixed video shows through everything
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.sec { padding: 7rem 4rem; position: relative; }
.sec--tint  { background: rgba(13,40,80,0.18); }
.sec--deep  { background: rgba(4,10,20,0.45); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TYPOGRAPHY
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.eyebrow {
  font-family: var(--fm);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.4rem;
}
h1 {
  font-family: var(--fd);
  font-size: clamp(3.2rem, 6.5vw, 6rem);
  font-weight: 300;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 2rem;
}
h1 em { font-style: italic; color: var(--sky); }
h2 {
  font-family: var(--fd);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  max-width: 720px;
  margin-bottom: 2rem;
}
h2 em { font-style: italic; color: var(--sky); }
h3 {
  font-family: var(--fd);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
p.body {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(245,240,232,0.6);
  max-width: 640px;
}
p.body + p.body { margin-top: 1.2rem; }
p.body strong { color: var(--bone); font-weight: 400; }
.wide { max-width: 800px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BUTTONS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.btn-row { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 3rem; }
.btn {
  font-family: var(--fm);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.4rem;
  transition: all 0.28s;
  display: inline-block;
  cursor: pointer;
  border: none;
}
.btn-gold { background: var(--gold); color: var(--navy); font-weight: 400; }
.btn-gold:hover { background: var(--white); transform: translateY(-2px); }
.btn-ghost { border: 1px solid rgba(245,240,232,0.25); color: var(--bone); background: transparent; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#hero {
  min-height: 100vh;
  min-height: -webkit-fill-available;
  display: flex;
  align-items: center;
  padding: 0 4rem;
}
.hero-inner { max-width: 860px; padding-top: 5rem; }
.hero-inner .eyebrow { opacity:0; animation: up .7s ease forwards .15s; }
.hero-inner h1        { opacity:0; animation: up .8s ease forwards .35s; }
.hero-inner .sub      { opacity:0; animation: up .8s ease forwards .55s; }
.hero-inner .btn-row  { opacity:0; animation: up .8s ease forwards .75s; }
.sub {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.78;
  color: rgba(245,240,232,0.58);
  max-width: 580px;
}
.scroll-hint {
  position: absolute;
  bottom: 3rem; left: 4rem;
  display: flex; align-items: center; gap: 1.1rem;
  opacity: 0; animation: up 1s ease forwards 1.1s;
}
.scroll-hint span {
  font-family: var(--fm);
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.25);
}
.scroll-line {
  width: 48px; height: 1px;
  background: rgba(201,168,76,0.25);
  overflow: hidden; position: relative;
}
.scroll-line::after {
  content:''; position: absolute;
  left:-100%; top:0; width:100%; height:100%;
  background: var(--gold);
  animation: pulse 2.4s ease-in-out infinite 1.5s;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   THIN DIVIDER BAR
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.bar {
  padding: 1rem 4rem;
  border-top: 1px solid rgba(245,240,232,0.07);
  border-bottom: 1px solid rgba(245,240,232,0.07);
}
.bar span {
  font-family: var(--fm);
  font-size: 0.53rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.18);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PILLARS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: rgba(245,240,232,0.06);
  margin-top: 3rem;
}
.pillar {
  padding: 3rem 2.5rem;
  background: rgba(10,22,40,0.8);
  position: relative;
  transition: background 0.35s;
  overflow: hidden;
}
.pillar::before {
  content:'';
  position: absolute;
  top:0; left:0; right:0; height:2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.pillar:hover { background: rgba(13,40,80,0.65); }
.pillar:hover::before { transform: scaleX(1); }

.pillar img { display: block; margin-bottom: 1.5rem; }
.pillar-logo-wrap {
  height: 56px;
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.pillar-logo-wrap img { margin-bottom: 0; }
.pillar-cat {
  font-family: var(--fm);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  margin-bottom: 1rem;
}
.pillar-desc {
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245,240,232,0.48);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   QUOTE BAND
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.quote-band {
  padding: 5.5rem 4rem;
  background: rgba(13,59,110,0.22);
  border-top: 1px solid rgba(245,240,232,0.07);
  border-bottom: 1px solid rgba(245,240,232,0.07);
  text-align: center;
}
.quote-band blockquote {
  font-family: var(--fd);
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.52;
  color: rgba(245,240,232,0.72);
  max-width: 880px;
  margin: 0 auto;
}
.quote-band blockquote::before { content:'\201C'; color:var(--gold); }
.quote-band blockquote::after  { content:'\201D'; color:var(--gold); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TWO COL
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TIMELINE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.timeline { margin-top: 5rem; }
.t-label {
  font-family: var(--fm);
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: block;
}
.t-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2.5rem;
  padding: 2.2rem 0;
  border-top: 1px solid rgba(245,240,232,0.07);
  align-items: start;
}
.t-item:last-child { border-bottom: 1px solid rgba(245,240,232,0.07); }
.t-era {
  font-family: var(--fm);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  line-height: 1.5;
  padding-top: 0.2rem;
}
.t-era em {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  color: rgba(245,240,232,0.38);
  margin-top: 0.3rem;
  letter-spacing: 0.06em;
}
.t-body { font-size: 0.98rem; font-weight: 300; line-height: 1.78; color: rgba(245,240,232,0.52); }
.t-body strong { color: var(--bone); font-weight: 400; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRODUCT LOGO HEADER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.prod-head {
  margin-bottom: 2.4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(245,240,232,0.07);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONDITIONS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.conditions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(245,240,232,0.06);
  margin: 2.5rem 0;
}
.cond {
  padding: 1.4rem 2rem;
  background: rgba(10,22,40,0.8);
  border-left: 2px solid rgba(201,168,76,0.15);
  font-size: 0.98rem;
  font-weight: 300;
  color: rgba(245,240,232,0.52);
  transition: all 0.28s;
}
.cond:hover { border-left-color: var(--gold); color: var(--bone); background: rgba(13,40,80,0.5); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LEADERSHIP
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.leader-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2.5rem 0;
}
.leader-card {
  padding: 2.4rem;
  border: 1px solid rgba(245,240,232,0.08);
  background: rgba(10,22,40,0.5);
  transition: border-color 0.3s;
}
.leader-card:hover { border-color: rgba(201,168,76,0.35); }
.l-role {
  font-family: var(--fm);
  font-size: 0.53rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.l-name { font-size: 1.7rem; font-weight: 300; color: var(--white); margin-bottom: 0.2rem; }
.l-title { font-size: 0.85rem; color: rgba(245,240,232,0.35); margin-bottom: 1.3rem; }
.l-bio { font-size: 0.95rem; font-weight: 300; line-height: 1.78; color: rgba(245,240,232,0.5); margin-bottom: 1.2rem; }
.l-link {
  font-family: var(--fm);
  font-size: 0.53rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,0.28);
  padding-bottom: 0.15rem;
  transition: border-color 0.25s;
}
.l-link:hover { border-color: var(--gold); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ADVISORY BOARD
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.advisory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(245,240,232,0.06);
  margin-top: 2.5rem;
}
.advisor {
  background: rgba(10,22,40,0.8);
  transition: background 0.28s;
  overflow: hidden;
}
.advisor:hover { background: rgba(13,40,80,0.6); }
.advisor-photo {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(100%) brightness(0.85) contrast(1.1);
  transition: filter 0.5s ease;
}
.advisor:hover .advisor-photo {
  filter: grayscale(0%) brightness(1) contrast(1.05);
}
.advisor-info { padding: 1.4rem 1.6rem 1.6rem; }
.a-name { font-size: 1.05rem; font-weight: 400; color: var(--white); line-height: 1.3; margin-bottom: 0.25rem; }
.a-cred { font-family: var(--fm); font-size: 0.5rem; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 0.35rem; }
.a-loc  { font-size: 0.82rem; color: rgba(245,240,232,0.32); margin-bottom: 0.7rem; }
.a-link { font-family: var(--fm); font-size: 0.48rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(245,240,232,0.28); text-decoration: none; transition: color 0.25s; }
.a-link:hover { color: var(--gold); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACT
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.contact-cols {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: rgba(245,240,232,0.06);
  margin: 2.5rem 0 3.5rem;
}
.contact-col {
  padding: 2.2rem 2rem;
  background: rgba(10,22,40,0.8);
}
.c-type {
  font-family: var(--fm);
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.c-desc { font-size: 0.95rem; font-weight: 300; color: rgba(245,240,232,0.48); line-height: 1.65; }

/* FORM */
.contact-form { max-width: 700px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
.form-row.full { grid-template-columns: 1fr; }
.form-field { display: flex; flex-direction: column; gap: 0.45rem; }
.form-field label { font-family: var(--fm); font-size: 0.52rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(245,240,232,0.35); }
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,240,232,0.1);
  padding: 0.8rem 1.1rem;
  color: var(--bone);
  font-family: var(--fd);
  font-size: 16px; /* Prevents iOS auto-zoom on focus */
  font-weight: 300;
  outline: none;
  appearance: none;
  border-radius: 0;
  transition: border-color 0.25s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: rgba(201,168,76,0.6); }
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field select option { background: #0a1628; }
.form-submit { margin-top: 1.8rem; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
footer {
  padding: 2.5rem 4rem;
  border-top: 1px solid rgba(245,240,232,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  background: rgba(4,10,20,0.6);
}
.foot-logo img { height: 52px; width: auto; opacity: 0.75; }
.foot-legal {
  font-family: var(--fm);
  font-size: 0.5rem;
  letter-spacing: 0.08em;
  color: rgba(245,240,232,0.2);
  text-align: right;
  line-height: 1.9;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   DISCLAIMER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.disclaimer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245,240,232,0.06);
  font-family: var(--fm);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: rgba(245,240,232,0.25);
  line-height: 1.85;
  max-width: 680px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SCROLL REVEAL
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.r {
  opacity: 1;
  transform: none;
}
/* Only animate if JS has confirmed the browser can handle it */
.js-reveal .r {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.js-reveal .r.on { opacity: 1; transform: none; }
.js-reveal .d1 { transition-delay: .1s; }
.js-reveal .d2 { transition-delay: .2s; }
.js-reveal .d3 { transition-delay: .3s; }
@media (max-width: 960px) {
  .js-reveal .d1, .js-reveal .d2, .js-reveal .d3 { transition-delay: 0s; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ANIMATIONS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@keyframes up    { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:none; } }
@keyframes pulse { 0% { left:-100%; } 100% { left:100%; } }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 960px) {
  /* Kill transition delays on mobile — content should appear faster */
  .d1, .d2, .d3 { transition-delay: 0s !important; }
  .r { transition-duration: 0.4s; }
  nav { padding: 1rem 1.5rem; flex-wrap: wrap; gap: 0.5rem; }
  .nav-links { gap: 0.8rem; flex-wrap: wrap; }
  .nav-links a { font-size: 0.52rem; }
  #hero, .sec { padding-left: 1.5rem; padding-right: 1.5rem; }
  .bar { padding-left: 1.5rem; padding-right: 1.5rem; }
  .pillars { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .conditions { grid-template-columns: 1fr; }
  .leader-grid { grid-template-columns: 1fr; }
  .advisory-grid { grid-template-columns: 1fr 1fr; }
  .contact-cols { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; }
  .foot-legal { text-align: center; }
}

/* ── LEADER PHOTO ── */
.leader-card { overflow: hidden; }
.leader-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center top;
  display: block;
  margin-bottom: 1.8rem;
  filter: grayscale(20%) contrast(1.05);
  transition: filter 0.4s;
}
.leader-card:hover .leader-photo {
  filter: grayscale(0%) contrast(1.05);
}



/* ── PRODUCT IMAGERY GALLERY ── */
.render-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(245,240,232,0.06);
  margin-top: 3rem;
}

.render-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: zoom-in;
  background: #060e1c;
}

.render-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.88) saturate(0.9);
}

.render-card:hover img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1.1);
}

.render-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6,14,28,0.7) 100%);
  pointer-events: none;
  transition: opacity 0.4s;
}

.render-card:hover::after {
  opacity: 0;
}

/* Lightbox */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(6,14,28,0.96);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  backdrop-filter: blur(8px);
}

#lightbox.open { display: flex; }

#lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 0 80px rgba(0,0,0,0.8);
}

#lightbox-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-family: var(--fm);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  cursor: pointer;
  transition: color 0.25s;
  background: none;
  border: none;
  padding: 0.5rem 1rem;
}

#lightbox-close:hover { color: var(--gold); }

@media (max-width: 960px) {
  .render-gallery { grid-template-columns: repeat(2, 1fr); }
}


/* ── IFU BUTTON ── */
.btn-ifu {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--fm);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2rem;
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold);
  background: rgba(201,168,76,0.06);
  transition: all 0.28s;
  margin-top: 2.2rem;
  cursor: pointer;
}
.btn-ifu:hover {
  background: rgba(201,168,76,0.12);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.btn-ifu svg {
  width: 14px; height: 14px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}


/* ── NEWS & PUBLICATIONS ── */
#news .news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(245,240,232,0.06);
  margin-top: 3rem;
}

.news-card {
  background: rgba(6,14,28,0.7);
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.3s;
  position: relative;
}

.news-card:hover {
  background: rgba(13,30,60,0.9);
}

.news-card::after {
  content: '↗';
  position: absolute;
  top: 1.8rem;
  right: 1.8rem;
  font-size: 0.9rem;
  color: rgba(201,168,76,0.3);
  transition: color 0.3s, transform 0.3s;
}

.news-card:hover::after {
  color: var(--gold);
  transform: translate(2px, -2px);
}

.news-pub {
  font-family: var(--fm);
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.news-tag {
  display: inline-block;
  font-family: var(--fm);
  font-size: 0.48rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(201,168,76,0.25);
  color: rgba(201,168,76,0.6);
  margin-bottom: 0.2rem;
  align-self: flex-start;
}

.news-title {
  font-family: var(--fd);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--bone);
  flex-grow: 1;
}

.news-date {
  font-family: var(--fm);
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.3);
  margin-top: auto;
}

/* Featured card — spans full width on first item */
.news-card.featured {
  grid-column: span 2;
  background: rgba(8,20,45,0.8);
}

.news-card.featured .news-title {
  font-size: 1.4rem;
}

@media (max-width: 960px) {
  #news .news-grid { grid-template-columns: 1fr; }
  .news-card.featured { grid-column: span 1; }
  .news-card.featured .news-title { font-size: 1.1rem; }
}


/* ── LINKEDIN BUTTON ── */
.btn-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  background: #2d3f52;
  color: #fff;
  font-family: var(--fd);
  font-size: 1rem;
  font-weight: 400;
  padding: 0.85rem 1.6rem 0.85rem 1.1rem;
  border-radius: 4px;
  transition: background 0.25s, transform 0.2s;
  margin-top: 0;
  background: transparent;
}
.btn-linkedin:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}
.btn-linkedin .li-icon {
  width: 38px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn-linkedin .li-icon svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}


/* ── COOKIE CONSENT BANNER ── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(6, 14, 28, 0.97);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 1.4rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  backdrop-filter: blur(10px);
  transform: translateY(100%);
  transition: transform 0.5s ease;
}
#cookie-banner.visible {
  transform: translateY(0);
}
.cookie-text {
  font-family: var(--fm);
  font-size: 0.55rem;
  letter-spacing: 0.06em;
  color: rgba(245,240,232,0.55);
  line-height: 1.8;
  max-width: 680px;
}
.cookie-text a {
  color: var(--gold);
  text-decoration: none;
}
.cookie-text a:hover {
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 0.8rem;
  flex-shrink: 0;
  align-items: center;
}
.cookie-accept {
  font-family: var(--fm);
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.75rem 1.8rem;
  background: var(--gold);
  color: var(--navy);
  border: none;
  cursor: pointer;
  transition: opacity 0.25s;
}
.cookie-accept:hover { opacity: 0.85; }
.cookie-decline {
  font-family: var(--fm);
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.75rem 1.4rem;
  background: transparent;
  color: rgba(245,240,232,0.35);
  border: 1px solid rgba(245,240,232,0.12);
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s;
}
.cookie-decline:hover {
  color: rgba(245,240,232,0.6);
  border-color: rgba(245,240,232,0.3);
}
@media (max-width: 960px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.4rem 1.5rem;
  }
  .cookie-actions { width: 100%; }
  .cookie-accept, .cookie-decline { flex: 1; text-align: center; }
}