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

:root {
  --ink: #0F0A04;
  --ink2: #1A1008;
  --mid: #3D2B0F;
  --cream: #F9F5EE;
  --cream2: #F2EAD8;
  --gold: #C9A84C;
  --gold2: #E8C96A;
  --white: #fff;
  --green: #2D7A3A;
  --muted: rgba(255, 255, 255, .68);
  --muted2: rgba(255, 255, 255, .48);
  --border: rgba(255, 255, 255, .09);
  --border2: rgba(255, 255, 255, .05);
  --black: #080705;
  --deep: #0D0B07;
  --surface: #121009;
  --surface-2: #18150E;
  --surface-3: #1E1B12;
  --gold: #C9A84C;
  --gold-lt: #E0C06A;
  --gold-dim: rgba(201, 168, 76, 0.12);
  --gold-bd: rgba(201, 168, 76, 0.18);
  --gold-bd2: rgba(201, 168, 76, 0.35);
  --cream: #F0EAE0;
  --mid: #B0A898;
  --dim: #6A6258;
  --faint: #3A3530;

  --italic: 'EB Garamond', Georgia, serif;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --nav: 76px;
  --w: 1240px;

  --radius: 20px;
  --shadow: 0 24px 80px rgba(0, 0, 0, .5);

  --sans: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
}

a {
  color: inherit;
  text-decoration: none
}

img {
  max-width: 100%;
  display: block
}

@media(prefers-reduced-motion:reduce) {
  * {
    transition: none !important;
    animation: none !important
  }
}

/* ---------- GENERAL CLASSES ----------------*/
.text-gold {
  color: var(--gold);
}

.text-muted {
  color: var(--muted);
}

.text-cream {
  color: var(--cream);
}

.text-white {
  color: var(--white);
}

.text-black {
  color: var(--black);
}

.text-deep {
  color: var(--deep);
}

.text-surface {
  color: var(--surface);
}

.text-surface-2 {
  color: var(--surface-2);
}

.text-surface-3 {
  color: var(--surface-3);
}

.text-gold-lt {
  color: var(--gold-lt);
}

.text-gold-dim {
  color: var(--gold-dim);
}

.text-gold-bd {
  color: var(--gold-bd);
}

.text-gold-bd2 {
  color: var(--gold-bd2);
}

.text-cream {
  color: var(--cream);
}

.text-mid {
  color: var(--mid);
}

.text-dim {
  color: var(--dim);
}

.text-faint {
  color: var(--faint);
}
 

/* ── LAYOUT ─────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px
}

.section {
  padding: 80px 0
}

.section-tight {
  padding: 52px 0
}

.section-hero {
  padding: 108px 0 72px
}

/* ── NAVBAR COMPONENT ────────────────────────── */
[x-data="navbar"] {
  position: sticky;
  top: 0;
  z-index: 100;
  display: block;
  /* Ensure it takes full width */
}

.nav {
  background: rgba(15, 10, 4, .88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--white)
}

.brand-mark {
  width: auto;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  height: 32px;
  width: auto;
  display: block;
}

.brand-text {
  font-size: 14px;
  font-weight: 600 !important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px
}

.nav-link {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--white);
  padding: 9px 10px;
  border-radius: 10px;
  transition: color .15s, background .15s;
  font-weight: 600
}

.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, .06)
}

.nav-link.active {
  color: var(--gold)
}

/* dropdown */
.drop {
  position: relative
}

.drop-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer
}

.caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(255, 255, 255, .55);
  transition: transform .2s;
  margin-top: 1px
}

.drop.open .caret {
  transform: rotate(180deg)
}

.drop-panel {
  position: absolute;
  left: 0;
  top: 50px;
  min-width: 340px;
  background: rgba(10, 6, 3, .97);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 18px;
  overflow: hidden;
  display: none;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .65);
  padding: 6px
}

.drop-panel a {
  display: block;
  padding: 11px 14px;
  font-size: 11px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
  border-radius: 12px;
  transition: background .12s, color .12s
}

.drop-panel a:hover {
  background: rgba(255, 255, 255, .07);
  color: #fff
}

.drop.open .drop-panel {
  display: block
}

/* mobile */
.mobile-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  cursor: pointer
}

.mobile-btn span,
.mobile-btn span::before,
.mobile-btn span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, .78);
  border-radius: 2px;
  position: relative
}

.mobile-btn span::before,
.mobile-btn span::after {
  content: "";
  position: absolute;
  left: 0
}

.mobile-btn span::before {
  top: -6px
}

.mobile-btn span::after {
  top: 6px
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, .68);
  display: none
}

.mobile-drawer.open {
  display: block
}

.drawer-panel {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(400px, 100%);
  background: rgba(12, 7, 3, .98);
  border-left: 1px solid rgba(255, 255, 255, .08);
  padding: 22px;
  overflow: auto
}

.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px
}

.drawer-close {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  cursor: pointer;
  color: rgba(255, 255, 255, .8);
  font-size: 18px
}

.drawer-group {
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 12px;
  display: grid;
  gap: 6px
}

.drawer-link {
  display: block;
  padding: 13px 12px;
  border-radius: 14px;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .07);
  transition: background .12s, color .12s;
  font-weight: 600;
}

.drawer-link:hover {
  background: rgba(255, 255, 255, .06);
  color: #fff
}

.drawer-sub {
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 2px
}

.drawer-sub a {
  display: block;
  padding: 11px 14px;
  font-size: 11px;
  letter-spacing: .09em;
  color: rgba(255, 255, 255, .65);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: background .12s
}

.drawer-sub a:last-child {
  border-bottom: none
}

.drawer-sub a:hover {
  background: rgba(255, 255, 255, .06);
  color: #fff
}

/* animations */
@keyframes drawerSlideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.drawer-item-anim {
  opacity: 0;
}

.mobile-drawer.open .drawer-item-anim {
  animation: drawerSlideIn 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* ── TYPOGRAPHY ──────────────────────────────── */
.kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500
}

.kicker::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 168, 76, 0))
}

.kicker.no-line::before {
  display: none
}

.h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -.01em;
  font-weight: 500;
  margin: 0
}

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

.h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -.01em;
  font-weight: 500;
  margin: 0
}

.h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400
}

.h3 {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.15;
  font-weight: 500;
  margin: 0
}

.label {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, .55)
}

/* ------ TYPOGRAPHY -------- */
.common-section-title {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold); 
  margin-bottom: 18px;
} 

.p {
  color: var(--muted);
  line-height: 1.2;
  margin: 0;
  font-size: 15px
}

.p strong {
  color: var(--white);
  font-weight: 600;
}

.p ul {
  margin: 16px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.p ul li {
  display: flex;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.p ul li::before {
  content: "•";
  color: var(--gold);
  flex-shrink: 0;
  font-weight: bold;
}

.p-lg {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  font-size: 17px
}

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 600;
  cursor: pointer;
  transition: transform .15s, filter .15s, background .15s, border-color .15s;
  user-select: none
}

.btn-primary {
  background: linear-gradient(180deg, rgba(201, 168, 76, .95), rgba(180, 148, 50, .85));
  color: #140d06;
  border-color: rgba(201, 168, 76, .6);
  box-shadow: 0 8px 28px rgba(201, 168, 76, .22)
}

.btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(201, 168, 76, .3)
}

.btn-ghost {
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .86)
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .09);
  transform: translateY(-1px)
}

/* ── CARDS ───────────────────────────────────── */
.card {
  border: 1px solid rgba(255, 255, 255, .09);
  background: rgba(255, 255, 255, .04);
  border-radius: var(--radius)
}

.card-gold {
  border: 1px solid rgba(201, 168, 76, .22);
  background: rgba(201, 168, 76, .05);
  border-radius: var(--radius)
}

/* ── DIVIDERS ────────────────────────────────── */
.hr-gold {
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 168, 76, 0), rgba(201, 168, 76, .5), rgba(201, 168, 76, 0))
}

.hr {
  height: 1px;
  background: rgba(255, 255, 255, .08)
}

/* ── GRID ────────────────────────────────────── */
.grid {
  display: grid;
  gap: 14px
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr))
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr))
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr))
}

/* ── HERO ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1400px 700px at 15% 10%, rgba(201, 168, 76, .09), rgba(201, 168, 76, 0) 55%),
    radial-gradient(900px 600px at 85% 30%, rgba(255, 255, 255, .06), rgba(255, 255, 255, 0) 60%),
    linear-gradient(180deg, rgba(0, 0, 0, .1) 0%, rgba(0, 0, 0, .55) 100%);
  background-color: var(--ink)
}

.hero-img-placeholder {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 60% 40%, rgba(201, 168, 76, .06), transparent 65%),
    url('../assets/hero.svg') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .45) 0%, rgba(0, 0, 0, .72) 70%, rgba(0, 0, 0, .85) 100%);
  z-index: 2;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px
}

/* image-ready slot — drop actual img tag inside this */
.img-slot {
  border-radius: 16px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px) 0 0/28px 28px,
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px) 0 0/28px 28px,
    linear-gradient(180deg, rgba(201, 168, 76, .06), rgba(0, 0, 0, .18));
  border: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: flex-end;
  position: relative
}

.img-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.img-slot-label {
  position: relative;
  z-index: 2;
  padding: 14px 16px;
  background: linear-gradient(0deg, rgba(0, 0, 0, .98) 0%, rgba(0, 0, 0, .8) 50%, #0000000f 100%);
  width: 100%;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
}

/* ── CREDENTIALS ─────────────────────────────── */
.cred-card {
  padding: 26px 28px
}

.cred-title {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px
}

.cred-headline {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.1;
  font-weight: 500;
  margin: 0 0 10px
}

.cred-body {
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
  margin: 0
}

.badge-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(45, 122, 58, .18)
}

.dot-gold {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, .18)
}

/* ── STATS BAR ───────────────────────────────── */
.stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(5, minmax(0, 1fr))
}

.stat {
  padding: 18px 16px
}

.stat-val {
  font-family: var(--sans);
  font-size: clamp(25px, 3vw, 32px);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px
}

.stat-label {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  line-height: 1.4
}

/* ── MILESTONES ──────────────────────────────── */
.milestone-row {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.milestone-row:last-child {
  border-bottom: none
}

.milestone-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  flex-shrink: 0;
  margin-right: 14px
}

.milestone-label {
  font-weight: 600;
  font-size: 14px;
  flex: 1
}

.milestone-state {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase
}

/* ── COMPONENT CARDS ─────────────────────────── */
.comp-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr))
}

.comp-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .09);
  background: rgba(255, 255, 255, .04);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
}

.comp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, .5)
}

.comp-thumb {
  height: 260px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px) 0 0/26px 26px,
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px) 0 0/26px 26px,
    radial-gradient(500px 300px at 50% 40%, rgba(201, 168, 76, .15), rgba(201, 168, 76, 0) 65%),
    linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .01));
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.comp-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.comp-body {
  padding: 20px;
  width: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, .98) 0%, rgba(0, 0, 0, .8) 50%, #0000000f 100%);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
  position: relative;
  z-index: 2;
}

.comp-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
}

.comp-stat {
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .04em;
  line-height: 1.4
}

.comp-thesis {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, .07)
}

/* ── THREE THESES ────────────────────────────── */
.thesis-card {
  padding: 24px 26px
}

.thesis-label {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px
}

.thesis-body {
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px
}

/* ── INVESTMENT ──────────────────────────────── */
.date-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.date-row:last-child {
  border-bottom: none
}

.date-label {
  font-size: 16px;
  color: var(--muted)
}

.date-val {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--gold)
}

/* ── ENGAGE FORM ─────────────────────────────── */
.form-field {
  width: 100%;
  display: block;
  margin-bottom: 12px
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  color: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
  transition: border-color .15s
}

.form-input:focus {
  border-color: rgba(201, 168, 76, .5)
}

.form-input::placeholder {
  color: rgba(255, 255, 255, .35)
}

textarea.form-input {
  resize: vertical;
  min-height: 110px
}

/* ── PAGE HEADER ─────────────────────────────── */
.page-header {
  padding: 80px 0 56px;
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

/* ── FOOTER ──────────────────────────────────── */
.footer {
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .38);
  font-size: 12px;
  letter-spacing: .06em
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap
}

/* ── RESPONSIVE ──────────────────────────────── */
@media(max-width:980px) {
  .stats {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .comp-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
}

@media(max-width:740px) {
  .nav-links {
    display: none
  }

  .mobile-btn {
    display: inline-flex
  }

  .hero {
    min-height: 60vh;
    padding: 45px 0 26px;
    align-items: flex-start;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, .68) 100%)
  }

  .section {
    padding: 60px 0
  }

  .section-tight {
    padding: 42px 0
  }

  .page-header {
    padding: 60px 0 42px
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr
  }

  .comp-grid {
    grid-template-columns: 1fr
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .h1 {
    font-size: clamp(36px, 10vw, 52px)
  }
}

@media(max-width:460px) {
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions {
    flex-direction: column
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center
  }
}

/* ── GALLERY & LIGHTBOX ──────────────────────── */
.gallery-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
  border-radius: 16px;
  background: var(--ink2);
  border: 1px solid rgba(255, 255, 255, .08);
}

.gallery-wrapper {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  height: 100%;
  min-height: inherit;
}

.gallery-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Premium filter for golden blueprint effect - brand matched */
  /*filter: invert(0.92) sepia(0.6) saturate(1.8) hue-rotate(10deg) brightness(1.1) contrast(1.1);*/
  transition: filter 0.4s ease, transform 0.6s ease;
}

.gallery-slide:hover img {
  /*filter: invert(0.92) sepia(0.6) saturate(2.2) hue-rotate(10deg) brightness(1.2) contrast(1.2);*/
  transform: scale(1.02);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 10, 4, 0.6);
  backdrop-filter: blur(8px);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-size: 25px;
  font-weight: 900;
}

.gallery-nav:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.05);
}

.gallery-nav-prev {
  left: 10px;
}

.gallery-nav-next {
  right: 10px;
}

.gallery-dots {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  border-radius: 20px;
}

.gallery-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.gallery-dot.active {
  background: var(--gold);
  transform: scale(1.4);
  box-shadow: 0 0 10px var(--gold);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5, 3, 1, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(15px);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 32px;
  cursor: pointer;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  width: min(1200px, 92vw);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lightbox-img {
  width: 100%;
  height: auto;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 12px;
  /*filter: invert(0.92) sepia(0.6) saturate(1.8) hue-rotate(10deg) brightness(1.1) contrast(1.1);*/
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
  text-align: center;
  padding: 0 40px;
}

.inverted-img {
  filter: invert(1) sepia(0.6) saturate(1.8) hue-rotate(10deg) brightness(1.1) contrast(1.1);
  object-fit: cover;
}

.blue-tint {
  filter: grayscale(1) sepia(1) hue-rotate(190deg) saturate(1.8) brightness(1.1) contrast(0.8);
  object-fit: cover;
}

@media (max-width: 740px) {
  .gallery-nav {
    display: none;
  }

  .lightbox-close {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .hero-video {
    display: none;
  }
}

/* ── VIDEO MODAL ────────────────────────────── */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(8, 7, 5, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(20px);
  padding: 20px;
}

.video-modal-content {
  width: min(1280px, 100%);
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.video-modal-video {
  width: 100%;
  height: 100%;
  display: block;
}

.video-modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3100;
  transition: background 0.2s;
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 740px) {
  .video-modal-close {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }
}

/* ── TIMELINE ──────────────────────────────── */
.timeline {
  position: relative;
  padding-left: 32px;
  margin-top: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(201, 168, 76, 0.1) 100%);
}

.timeline-item {
  position: relative;
  margin-bottom: 52px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -32px;
  top: 8px;
  width: 15px;
  height: 15px;
  background: var(--ink);
  border: 2px solid var(--gold);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 4px var(--ink);
}

.timeline-content {
  display: grid;
  gap: 16px;
}

.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 14px;
}

.timeline-phase-wrap {
  display: flex;
  flex-direction: column;
}

.timeline-phase {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
}

.timeline-subtitle {
  font-family: var(--serif);
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--white);
  font-weight: 500;
  line-height: 1.2;
}

.timeline-meta {
  text-align: right;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.timeline-title {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  max-width: 400px;
}

.timeline-capital {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  margin-top: 6px;
}

.timeline-body {
  padding-top: 4px;
}

.timeline-list-header {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 12px;
  font-weight: 500;
}

.timeline-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.timeline-list li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  display: flex;
  gap: 12px;
}

.timeline-list li::before {
  content: "•";
  color: var(--gold);
  font-weight: bold;
}

.timeline-outcome {
  margin-top: 24px;
  padding: 16px 20px;
  background: rgba(201, 168, 76, 0.05);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--cream);
}

.timeline-outcome strong {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.1em;
  margin-right: 10px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .timeline-header {
    flex-direction: column;
    gap: 12px;
  }
  .timeline-meta {
    text-align: left;
  }
  .timeline {
    padding-left: 28px;
  }
}

/* ── ADDITIONAL MOBILE UTILITIES ───────────────── */
@media (max-width: 768px) {
  .btn-group-mobile {
    flex-direction: column !important;
    width: 100%;
  }
  .btn-group-mobile a.btn, 
  .btn-group-mobile div {
    width: 100%;
    margin-bottom: 0px;
    box-sizing: border-box;
    text-align: center;
  }
  .grid-mobile-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .people-img-container {
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .people-img-container picture {
    display: contents;
  }
  .people-img-container img {
    position: relative !important;
    height: auto !important;
    width: 100% !important;
    object-fit: contain !important;
  }
  .footer-inner {
    flex-direction: column !important;
    justify-content: center !important;
    text-align: center;
  }
  .footer-inner .brand {
    justify-content: center;
  }
}