/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #0B0B0C;
  color: #F2EEE6;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ===== TOKENS ===== */
:root {
  --ink: #0B0B0C;
  --ink-2: #131316;
  --ivory: #F2EEE6;
  --ivory-soft: #E8E2D6;
  --muted: #8A857B;
  --brass: #B89968;
  --brass-soft: #D4B98A;
  --midnight: #0E1A2B;
  --hairline: rgba(242, 238, 230, 0.12);
  --hairline-strong: rgba(242, 238, 230, 0.24);
  --serif: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-2: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ===== TYPE ===== */
.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; }
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
}
.eyebrow-muted { color: var(--muted); }
.numeral {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brass);
  font-size: 13px;
  letter-spacing: 0.1em;
}

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 56px;
  background: rgba(11, 11, 12, 0.7);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: padding 0.5s var(--ease), background 0.5s var(--ease), border-color 0.5s var(--ease);
}
.nav.scrolled {
  padding: 18px 56px;
  background: rgba(11, 11, 12, 0.92);
  border-bottom-color: var(--hairline);
}
.nav-mark {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--ivory);
}
.nav-mark span { color: var(--brass-soft); font-style: italic; }
.nav-links {
  display: flex; gap: 40px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
}
.nav-links button, .nav-links a {
  position: relative; padding: 8px 0;
  font-weight: 400;
  transition: opacity 0.3s var(--ease);
  opacity: 0.7;
}
.nav-links button:hover, .nav-links button.active, .nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-links button.active::after, .nav-links a.active::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  padding: 0 56px;
  overflow: hidden;
}
.hero-grain {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 60% at 80% 30%, rgba(184, 153, 104, 0.08), transparent 60%),
    radial-gradient(60% 50% at 10% 80%, rgba(14, 26, 43, 0.4), transparent 60%);
  pointer-events: none;
}
.hero-meta {
  position: absolute; left: 56px; bottom: 40px;
  display: flex; gap: 32px; align-items: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 10px; }
.hero-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--brass); }
.hero-scroll {
  position: absolute; right: 56px; bottom: 40px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  font-size: 10px; letter-spacing: 0.3em; color: var(--muted);
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--brass), transparent);
  position: relative; overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute; left: 0; top: 0;
  width: 100%; height: 50%;
  background: var(--ivory);
  animation: scrollPulse 2.4s var(--ease) infinite;
}
@keyframes scrollPulse {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

.hero-left {
  position: relative;
  z-index: 2;
  padding: 140px 0 120px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 36px;
}
.hero-eyebrow .line { width: 40px; height: 1px; background: var(--brass); }
.hero-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 8.5vw, 132px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ivory);
  animation: pageIn 1.1s var(--ease) both;
}
.hero-name .stack { display: block; }
.hero-name .italic { font-style: italic; color: var(--brass-soft); }
.hero-rule {
  width: 80px; height: 1px;
  background: var(--brass);
  margin: 48px 0 32px;
}
.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 26px);
  font-style: italic;
  color: var(--ivory-soft);
  letter-spacing: 0.02em;
  max-width: 540px;
}
.hero-tagline .sep { color: var(--brass); margin: 0 14px; font-style: normal; }
.hero-roles {
  margin-top: 28px;
  display: flex; flex-wrap: wrap; gap: 8px 28px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-roles span { position: relative; }
.hero-roles span + span::before {
  content: '·';
  position: absolute; left: -16px;
  color: var(--brass);
}

.hero-right {
  position: relative;
  z-index: 2;
  height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 80px 0;
}
.portrait-frame {
  position: relative;
  width: 100%; max-width: 480px;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #1a1a1f, #0d0d10);
  border: 1px solid var(--hairline);
  overflow: hidden;
}
.portrait-image {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 38%;
  image-rendering: auto;
  image-rendering: high-quality;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.portrait-frame::before {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid var(--hairline-strong);
  z-index: 3;
  pointer-events: none;
}
.portrait-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.05);
}
.portrait-placeholder {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(184, 153, 104, 0.05) 0%, transparent 40%, rgba(14, 26, 43, 0.4) 100%),
    repeating-linear-gradient(45deg, #1a1a1d 0 2px, #131316 2px 14px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.portrait-placeholder svg { opacity: 0.4; }
.portrait-tag {
  position: absolute;
  top: 24px; left: 24px;
  z-index: 3;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--ivory);
  z-index: 4;
  display: flex; align-items: center; gap: 8px;
}
.portrait-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brass); }
.portrait-coords {
  position: absolute;
  bottom: 24px; right: 24px;
  z-index: 3;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ivory);
  z-index: 4;
  text-align: right;
  line-height: 1.6;
}
.portrait-coords .small { color: #000; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; }

/* ===== INTRO STRIP ===== */
.intro-strip {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 60px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 48px;
  background: var(--ink-2);
}
.intro-stat .num {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  color: var(--ivory);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.intro-stat .num .plus { color: var(--brass); font-style: italic; }
.intro-stat .num .suffix {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--brass-soft);
  letter-spacing: 0;
  margin-left: 10px;
  vertical-align: middle;
}
.intro-stat .label {
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 200px;
}

/* ===== SECTION SHELL ===== */
section.page {
  position: relative;
  padding: 160px 56px;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 100px;
  align-items: end;
}
.section-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brass);
  font-size: 14px;
  letter-spacing: 0.18em;
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px;
}
.section-num .line { width: 56px; height: 1px; background: var(--brass); }
.section-title {
  font-family: var(--serif);
  font-size: clamp(56px, 7vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ivory);
  font-weight: 400;
}
.section-title .italic { font-style: italic; color: var(--brass-soft); }

/* ===== ABOUT ===== */
.about-body {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.about-photo {
  position: sticky; top: 120px;
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
}
.about-photo .frame {
  position: relative;
  width: 100%; height: 100%;
}
.about-photo .placeholder {
  position: absolute; inset: 0;
  background:
    linear-gradient(160deg, rgba(184, 153, 104, 0.06), transparent 50%),
    repeating-linear-gradient(45deg, #1a1a1d 0 2px, #131316 2px 14px);
  border: 1px solid var(--hairline);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--muted);
}
.about-photo .caption {
  position: absolute;
  bottom: 18px; left: 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ivory);
  z-index: 2;
  display: flex; gap: 10px; align-items: center;
}
.about-photo .caption .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--brass);
}
.about-photo .portrait-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 54% 18%;
  display: block;
}

.about-text {
  display: flex; flex-direction: column; gap: 36px;
}
.about-lede {
  font-family: var(--serif);
  font-size: clamp(28px, 2.5vw, 38px);
  line-height: 1.25;
  color: var(--ivory);
  letter-spacing: -0.01em;
  font-weight: 400;
}
.about-lede .italic { font-style: italic; color: var(--brass-soft); }
.about-text p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ivory-soft);
  font-weight: 300;
  max-width: 620px;
}
.about-text p .accent {
  color: var(--brass-soft);
  font-style: italic;
  font-family: var(--serif);
  font-size: 1.35em;
  letter-spacing: -0.005em;
  line-height: 1;
}

.pull-quote {
  margin: 40px 0;
  padding: 40px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.2;
  color: var(--ivory);
  letter-spacing: -0.01em;
  max-width: 700px;
}
.pull-quote::before {
  content: '"';
  display: block;
  font-size: 80px;
  line-height: 0.4;
  color: var(--brass);
  margin-bottom: 32px;
}
.pull-quote .attr {
  display: block;
  margin-top: 28px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.pull-quote--bare::before { display: none; }

.pull-statement {
  margin: 48px 0;
  padding: 44px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.2;
  color: var(--ivory);
  letter-spacing: -0.01em;
  max-width: 760px;
  text-wrap: pretty;
}

.about-pillars {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(242, 238, 230, 0.22);
  border-bottom: 1px solid rgba(242, 238, 230, 0.22);
}
.pillar {
  background: var(--ink);
  padding: 36px 32px;
  border-right: 1px solid rgba(242, 238, 230, 0.22);
}
.pillar:last-child {
  border-right: none;
}
.pillar .num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brass);
  font-size: 13px;
  letter-spacing: 0.1em;
}
.pillar h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  margin: 14px 0 10px;
  color: var(--ivory);
}
.pillar p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== VENTURES — INTRO (section 1) ===== */
.vintro {
  margin: 72px 0 0;
  padding-bottom: 96px;
  border-bottom: 1px solid var(--hairline);
}
.vintro-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--hairline);
}
.vintro-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--brass);
}
.vintro-count {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
.vintro-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(52px, 8vw, 120px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--ivory);
  margin-bottom: 64px;
}
.vintro-title .italic {
  font-style: italic;
  color: var(--brass-soft);
}
.vintro-lead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1080px;
  margin-left: auto;
}
.vintro-lead p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(19px, 1.5vw, 23px);
  line-height: 1.55;
  color: var(--ivory-soft);
  letter-spacing: -0.005em;
  text-wrap: pretty;
}
.vintro-lead .accent {
  color: var(--brass-soft);
  font-style: italic;
}

/* ===== VENTURES — INDEX (section 2) ===== */
/* ===== VENTURES — THE COMPANIES (3D card table) ===== */
.vtable {
  margin: 72px 0 56px;
}
.vtable-head {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 64px;
}
.vtable-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--brass);
  white-space: nowrap;
}
.vtable-rule {
  flex: 1;
  height: 1px;
  background: var(--hairline);
}
.vtable-hint {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.vtable-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.vtable-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 22px 20px 20px;
  border: 1px solid rgba(242, 238, 230, 0.14);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 24px 40px -28px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(242, 238, 230, 0.06);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
  cursor: pointer;
  text-decoration: none;
}
.vtable-card::after {
  /* table sheen */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(242, 238, 230, 0.08), transparent 40%);
  pointer-events: none;
}
.vtable-card:hover {
  transform: translateY(-8px);
  border-color: rgba(184, 153, 104, 0.5);
  box-shadow:
    0 40px 60px -30px rgba(0, 0, 0, 0.85),
    inset 0 1px 0 rgba(242, 238, 230, 0.1);
}

.vtc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.vtc-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--brass-soft);
}
.vtc-role {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(242, 238, 230, 0.6);
}
.vtc-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 84px;
  margin: 14px 0 16px;
  position: relative;
  z-index: 2;
}
.vtc-logo img {
  display: block;
}
.vtc-meta {
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
  margin-top: auto;
}
.vtc-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ivory);
  margin-bottom: 7px;
}
.vtc-name .italic {
  font-style: italic;
  color: var(--brass-soft);
}
.vtc-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(242, 238, 230, 0.7);
  letter-spacing: -0.005em;
  text-wrap: pretty;
}
.vtc-stats {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding-top: 16px;
  border-top: 1px solid rgba(242, 238, 230, 0.16);
  position: relative;
  z-index: 2;
}
.vtc-stat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.vtc-stat-label {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242, 238, 230, 0.5);
  white-space: nowrap;
}
.vtc-stat-val {
  font-family: var(--serif);
  font-size: 13px;
  line-height: 1.15;
  color: var(--ivory);
  letter-spacing: -0.005em;
  text-align: right;
}
.vtc-stat-val .accent { color: var(--brass-soft); font-style: italic; }
.vtc-cta {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass-soft);
  position: relative;
  z-index: 2;
  opacity: 0.7;
  transition: opacity 0.5s var(--ease), gap 0.5s var(--ease);
}
.vtable-card:hover .vtc-cta { opacity: 1; gap: 16px; }
.vtc-arrow { font-size: 14px; }

/* per-brand card surfaces (override the venture-visual gradients for cards) */
.vtable-card.visual-jtg {
  background: linear-gradient(150deg, #1a1612 0%, #0d0c0b 60%), radial-gradient(60% 50% at 50% 38%, rgba(184, 153, 104, 0.16), transparent 70%);
}
.vtable-card.visual-genosis {
  background: linear-gradient(150deg, #0a1024 0%, #04060e 60%), radial-gradient(60% 50% at 50% 38%, rgba(56, 130, 255, 0.22), transparent 70%);
}
.vtable-card.visual-genosis .vtc-num,
.vtable-card.visual-genosis .vtc-cta { color: #8fc4ff; }
.vtable-card.visual-genosis:hover { border-color: rgba(111, 182, 255, 0.5); }
.vtable-card.visual-galifi {
  background: linear-gradient(150deg, #0e1c30 0%, #0a1320 60%), radial-gradient(60% 50% at 50% 38%, rgba(184, 153, 104, 0.14), transparent 70%);
}
.vtable-card.visual-avanti {
  background: linear-gradient(150deg, #1d1b16 0%, #0e0d0b 60%), radial-gradient(60% 50% at 50% 38%, rgba(212, 185, 138, 0.2), transparent 70%);
}

@media (max-width: 980px) {
  .vintro { padding-bottom: 56px; margin-top: 32px; }
  .vintro-top { flex-direction: column; align-items: flex-start; gap: 8px; }
  .vintro-title { font-size: 48px; margin-bottom: 40px; }
  .vintro-lead { grid-template-columns: 1fr; gap: 24px; }
  .vtable {
    margin-top: 40px;
  }
  .vtable-head { margin-bottom: 40px; flex-wrap: wrap; }
  .vtable-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .vtable-card {
    transform: none;
  }
  .vtable-card:hover { transform: translateY(-6px); }
  .vtc-name { font-size: 22px; }
}
@media (max-width: 620px) {
  .vtable-grid { grid-template-columns: 1fr; }
}

/* ===== VENTURES ===== */
.ventures-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 100px;
  align-items: end;
}
.ventures-intro p {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.5;
  font-style: italic;
  color: var(--ivory-soft);
  max-width: 560px;
}

.venture {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  padding: 100px 0;
  border-top: 1px solid var(--hairline);
  position: relative;
}
.venture:last-child { border-bottom: 1px solid var(--hairline); }
.venture.reverse { grid-template-columns: 1.2fr 1fr; }
.venture.reverse .venture-visual { order: 2; }
.venture.reverse .venture-content { order: 1; }

.venture-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--hairline);
}
.venture-visual .bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform 1.4s var(--ease);
}
.venture:hover .venture-visual .bg { transform: scale(1.04); }
.venture-visual img {
  max-width: 70%; max-height: 50%;
  object-fit: contain;
}
.venture-visual .index {
  position: absolute;
  top: 20px; left: 20px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--ivory);
  z-index: 2;
  display: flex; gap: 10px; align-items: center;
}
.venture-visual .index .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--brass);
}
.venture-visual .meta {
  position: absolute;
  bottom: 20px; right: 20px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--ivory);
  text-align: right;
  z-index: 2;
}

/* visuals: themed backgrounds for each venture */
.visual-jtg {
  background:
    radial-gradient(60% 50% at 50% 50%, rgba(184, 153, 104, 0.12), transparent 70%),
    linear-gradient(135deg, #0E0E10, #1a1612);
}
.visual-genosis {
  background:
    radial-gradient(70% 60% at 50% 50%, rgba(56, 130, 255, 0.18), transparent 70%),
    linear-gradient(135deg, #04060e, #0a0f22);
}
.visual-galifi {
  background:
    radial-gradient(60% 50% at 50% 50%, rgba(184, 153, 104, 0.10), transparent 70%),
    linear-gradient(135deg, #0a1424, #0E1A2B);
}
.visual-avanti {
  background:
    radial-gradient(60% 50% at 50% 50%, rgba(232, 226, 214, 0.6), transparent 70%),
    linear-gradient(135deg, #d6cdb9, #b8a583);
}

.venture-content { padding: 20px 0; }
.venture-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
}
.venture-eyebrow .num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brass);
  font-size: 14px;
}
.venture-eyebrow .role {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
.venture-name {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ivory);
  font-weight: 400;
  margin-bottom: 28px;
}
.venture-name .italic { font-style: italic; color: var(--brass-soft); }
.venture-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--brass-soft);
  margin-bottom: 24px;
}
.venture-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ivory-soft);
  font-weight: 300;
  max-width: 580px;
  margin-bottom: 32px;
}
.venture-tags {
  display: flex; flex-wrap: wrap; gap: 8px 12px;
  margin-bottom: 32px;
}
.venture-tags .tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-soft);
  padding: 8px 14px;
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
}
.venture-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
}
.venture-stats .item .label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.venture-stats .item .val {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ivory);
  letter-spacing: -0.01em;
}
.venture-stats .item .val .accent { color: var(--brass); font-style: italic; }

/* ===== CONTACT ===== */
.contact-section {
  background: var(--ink);
  border-top: 1px solid var(--hairline);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-form {
  display: flex; flex-direction: column; gap: 28px;
}
.contact-field { position: relative; }
.contact-field label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 12px;
}
.contact-field label .num {
  font-family: var(--serif); font-style: italic; color: var(--brass); font-size: 13px;
  letter-spacing: 0.05em;
}
.contact-field input,
.contact-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hairline-strong);
  padding: 14px 0;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ivory);
  outline: none;
  transition: border-color 0.3s var(--ease);
  resize: none;
}
.contact-field input::placeholder,
.contact-field textarea::placeholder { color: var(--muted); font-style: italic; opacity: 0.6; }
.contact-field input:focus,
.contact-field textarea:focus { border-bottom-color: var(--brass); }
.contact-submit {
  align-self: flex-start;
  margin-top: 20px;
  padding: 18px 36px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ivory);
  border: 1px solid var(--ivory);
  background: transparent;
  transition: all 0.4s var(--ease);
  position: relative; overflow: hidden;
}
.contact-submit::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--ivory);
  transform: translateY(101%);
  transition: transform 0.4s var(--ease);
  z-index: 0;
}
.contact-submit span { position: relative; z-index: 1; transition: color 0.4s var(--ease); }
.contact-submit:hover::before { transform: translateY(0); }
.contact-submit:hover span { color: var(--ink); }
.contact-submit.sent { border-color: var(--brass); color: var(--brass); }
.contact-submit.sent::before { background: transparent; }
.contact-submit:disabled { opacity: 0.55; cursor: progress; }
.contact-error {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: #d98b7a;
  max-width: 440px;
}

.contact-side {
  display: flex; flex-direction: column; gap: 48px;
  padding-top: 8px;
}
.contact-card .label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.contact-card .value {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--ivory);
  letter-spacing: -0.005em;
}
.contact-card .value.italic { font-style: italic; color: var(--brass-soft); }
.contact-card .value a {
  position: relative;
  background: linear-gradient(currentColor, currentColor) bottom left / 0 1px no-repeat;
  transition: background-size 0.4s var(--ease);
}
.contact-card .value a:hover { background-size: 100% 1px; }

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--hairline);
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  gap: 24px;
}
.footer-mark {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--ivory);
  text-transform: none;
  letter-spacing: 0.02em;
}
.footer-mark span { color: var(--brass-soft); font-style: italic; }
.footer-social {
  display: flex; gap: 32px; justify-content: center;
}
.footer-social a {
  position: relative;
  transition: color 0.3s var(--ease);
}
.footer-social a:hover { color: var(--brass-soft); }
.footer-copyright { text-align: right; }
.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
}
.footer-legal a {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s var(--ease);
}
.footer-legal a:hover { color: var(--brass-soft); }

/* ===== LEGAL / PROSE PAGES ===== */
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 0 40px;
}
.legal-updated {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 56px;
}
.legal-intro {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  font-style: italic;
  line-height: 1.5;
  color: var(--ivory-soft);
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--hairline);
}
.legal-block { margin-bottom: 40px; }
.legal-block h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -0.01em;
  color: var(--ivory);
  margin-bottom: 16px;
}
.legal-block p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ivory-soft);
  font-weight: 300;
  max-width: 720px;
}
.legal-block p a {
  color: var(--brass-soft);
  background: linear-gradient(currentColor, currentColor) bottom left / 0 1px no-repeat;
  transition: background-size 0.4s var(--ease);
}
.legal-block p a:hover { background-size: 100% 1px; }
@media (max-width: 980px) {
  .legal { padding-left: 0; padding-right: 0; }
}

/* ===== REVEAL ANIMS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-fast { transition-duration: 0.7s; }
.reveal-slow { transition-duration: 1.4s; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* word-reveal headlines */
.word-reveal { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.12em; line-height: 1.05; }
.word-reveal .inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.2s var(--ease);
}
.in .word-reveal .inner { transform: translateY(0); }
.word-reveal.d1 .inner { transition-delay: 0.06s; }
.word-reveal.d2 .inner { transition-delay: 0.14s; }
.word-reveal.d3 .inner { transition-delay: 0.22s; }
.word-reveal.d4 .inner { transition-delay: 0.30s; }
.word-reveal.d5 .inner { transition-delay: 0.38s; }

/* ===== PRELOADER ===== */
.preloader {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 32px;
  transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}
.preloader.gone { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader.gone .preloader-bar,
.preloader.gone .preloader-mark { display: none; }
.preloader-mark {
  font-family: var(--serif);
  font-size: 48px;
  color: var(--ivory);
  letter-spacing: -0.01em;
  display: flex; gap: 12px;
}
.preloader-mark span { display: inline-block; opacity: 0; transform: translateY(20px); animation: pre-up 0.8s var(--ease) forwards; }
.preloader-mark span:nth-child(1) { animation-delay: 0.1s; }
.preloader-mark span:nth-child(2) { animation-delay: 0.18s; color: var(--brass-soft); font-style: italic; }
@keyframes pre-up { to { opacity: 1; transform: translateY(0); } }
.preloader-bar {
  width: 220px; height: 1px;
  background: var(--hairline-strong);
  position: relative; overflow: hidden;
}
.preloader-bar::after {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 0%;
  background: var(--brass);
  animation: pre-fill 1.6s var(--ease) 0.2s forwards;
}
@keyframes pre-fill { to { width: 100%; } }

/* ===== PAGE TRANSITION ===== */
.page-transition {
  position: fixed; inset: 0;
  z-index: 90;
  pointer-events: none;
  background: var(--ink);
  transform: translateY(100%);
  transition: transform 0.55s var(--ease-2);
}
.page-transition.covering {
  transform: translateY(0);
  transition: transform 0.55s var(--ease-2);
}
.page-wrap {
  opacity: 1;
  transition: opacity 0.5s var(--ease);
}
.page-wrap.fading { opacity: 0; }

/* spacer above non-home pages so content sits below fixed nav */
.page-wrap.page-about,
.page-wrap.page-ventures,
.page-wrap.page-contact {
  padding-top: 96px;
}

/* page-enter animation — softens the arrival */
.page-wrap > section.page,
.page-wrap > section.hero {
  animation: pageIn 0.9s var(--ease) both;
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== HOME PREVIEW SECTIONS ===== */
.home-preview {
  padding: 140px 56px 80px;
  border-top: 1px solid var(--hairline);
}
.home-preview + .home-preview { padding-top: 60px; border-top: none; }
.home-preview-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}
.home-preview-row.reverse { grid-template-columns: 1.3fr 1fr; }
.home-preview-row.reverse .preview-visual { order: 2; }
.home-preview-row.reverse .preview-content { order: 1; }
.preview-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--hairline);
  background:
    linear-gradient(160deg, rgba(184, 153, 104, 0.06), transparent 50%),
    repeating-linear-gradient(45deg, #1a1a1d 0 2px, #131316 2px 14px);
  display: flex; align-items: center; justify-content: center;
}
.preview-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  z-index: 1;
}
.preview-visual.about-vis {
  background:
    linear-gradient(135deg, rgba(184, 153, 104, 0.08), transparent 50%),
    repeating-linear-gradient(45deg, #1a1a1d 0 2px, #131316 2px 14px);
}
.preview-visual.ventures-vis {
  background:
    radial-gradient(60% 50% at 50% 50%, rgba(184, 153, 104, 0.08), transparent 70%),
    linear-gradient(135deg, #0a1424, #0E1A2B);
  flex-direction: column;
  padding: 14%;
  gap: 16px;
}
.ventures-vis .grid-logos {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  width: 100%; height: 100%;
}
.ventures-vis .grid-logos .cell {
  border: 1px solid var(--hairline);
  display: flex; align-items: center; justify-content: center;
  padding: 16%;
  background: rgba(11, 11, 12, 0.4);
  font-family: var(--serif); font-style: italic;
  font-size: 22px; color: var(--brass-soft);
  text-align: center; line-height: 1.1;
}
.preview-visual.contact-vis {
  background:
    radial-gradient(60% 50% at 30% 30%, rgba(184, 153, 104, 0.10), transparent 70%),
    linear-gradient(135deg, #0E1A2B, #0a0f1a);
}
.preview-visual .index {
  position: absolute; top: 20px; left: 20px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.24em; color: var(--ivory);
  z-index: 2;
  display: flex; gap: 10px; align-items: center;
}
.preview-visual .index .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brass); }
.preview-visual .placeholder-text {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.22em; color: var(--muted);
  text-align: center; line-height: 1.8;
}
.preview-visual .big-numeral {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(120px, 15vw, 220px);
  color: var(--brass);
  line-height: 0.8; letter-spacing: -0.02em;
  opacity: 0.85;
}
.preview-visual .glyph-text {
  font-family: var(--serif);
  font-size: clamp(40px, 4vw, 56px);
  color: var(--ivory);
  letter-spacing: -0.01em;
  text-align: center;
  line-height: 1.1;
  padding: 0 14%;
}
.preview-visual .glyph-text .italic { font-style: italic; color: var(--brass-soft); }

.preview-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
}
.preview-eyebrow .num {
  font-family: var(--serif); font-style: italic;
  color: var(--brass); font-size: 14px;
}
.preview-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ivory);
  margin-bottom: 28px;
}
.preview-title .italic { font-style: italic; color: var(--brass-soft); }
.preview-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ivory-soft);
  font-weight: 300;
  max-width: 540px;
  margin-bottom: 36px;
}
.preview-cta {
  display: inline-flex; align-items: center; gap: 18px;
  padding: 16px 28px 16px 32px;
  border: 1px solid var(--hairline-strong);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ivory);
  cursor: pointer;
  transition: all 0.4s var(--ease);
  position: relative;
  background: transparent;
}
.preview-cta:hover {
  border-color: var(--brass);
  color: var(--brass-soft);
  padding-left: 36px;
  padding-right: 24px;
}
.preview-cta .arrow {
  display: inline-block;
  transition: transform 0.4s var(--ease);
}
.preview-cta:hover .arrow { transform: translateX(6px); }

/* Home — manifesto strip */
.manifesto {
  padding: 140px 56px;
  border-top: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.manifesto-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brass);
  font-size: 14px;
  letter-spacing: 0.18em;
  display: flex; align-items: center; gap: 14px;
}
.manifesto-eyebrow .line { width: 56px; height: 1px; background: var(--brass); }
.manifesto-text {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ivory);
  font-weight: 400;
}
.manifesto-text .italic { font-style: italic; color: var(--brass-soft); }
.manifesto-text .accent { color: var(--brass); font-style: italic; }

/* Home — capabilities grid */
.capabilities {
  padding: 100px 56px 0;
}
.capabilities-head {
  display: block;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 80px;
}
.capabilities-head h3 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ivory);
  font-weight: 400;
}
.capabilities-head h3 .italic { font-style: italic; color: var(--brass-soft); }
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.capability {
  background: var(--ink);
  padding: 36px 28px 40px;
}
.capability .num {
  font-family: var(--serif); font-style: italic;
  color: var(--brass); font-size: 13px;
  letter-spacing: 0.1em; margin-bottom: 18px;
}
.capability h5 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--ivory);
  margin-bottom: 12px;
  line-height: 1.1;
}
.capability p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

/* Home — final CTA band */
.cta-band {
  padding: 60px 56px 100px;
  border-top: 1px solid var(--hairline);
  background:
    radial-gradient(60% 80% at 50% 100%, rgba(184, 153, 104, 0.06), transparent 70%),
    var(--ink);
  text-align: center;
}
.cta-band .eyebrow { margin-bottom: 28px; }
.cta-band h3 {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 96px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ivory);
  margin-bottom: 28px;
  font-weight: 400;
}
.cta-band h3 .italic { font-style: italic; color: var(--brass-soft); }
.cta-band p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ivory-soft);
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.5;
}
.cta-band-actions {
  display: inline-flex;
  gap: 18px;
}

@media (max-width: 980px) {
  .home-preview { padding: 80px 28px 40px; }
  .home-preview-row, .home-preview-row.reverse { grid-template-columns: 1fr; gap: 40px; }
  .home-preview-row.reverse .preview-visual { order: 1; }
  .home-preview-row.reverse .preview-content { order: 2; }
  .manifesto { padding: 80px 28px; grid-template-columns: 1fr; gap: 32px; }
  .capabilities { padding: 60px 28px 80px; }
  .capabilities-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .capabilities-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 80px 28px; }
  .cta-band-actions { flex-direction: column; gap: 12px; }
}

/* ===== MARQUEE ===== */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--ink);
  padding: 28px 0;
}
.marquee-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}
.marquee-item {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--ivory-soft);
  display: flex; align-items: center; gap: 64px;
}
.marquee-item .dot { color: var(--brass); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .nav, .hero, section.page, .footer, .intro-strip { padding-left: 28px; padding-right: 28px; }
  .nav { padding-top: 20px; padding-bottom: 20px; }
  .nav-links { gap: 20px; font-size: 10px; }
  .nav-links button, .nav-links a { padding: 4px 0; }
  .hero { grid-template-columns: 1fr; padding-top: 110px; padding-bottom: 60px; }
  .hero-left { padding: 0 0 40px; }
  .hero-right { height: 60vh; }
  .hero-meta, .hero-scroll { display: none; }
  .intro-strip { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 60px; }
  .about-body { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { position: static; max-width: 360px; }
  .about-pillars { grid-template-columns: 1fr; }
  .ventures-intro { grid-template-columns: 1fr; gap: 32px; }
  .venture, .venture.reverse { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
  .venture.reverse .venture-visual { order: 1; }
  .venture.reverse .venture-content { order: 2; }
  .venture-stats { grid-template-columns: 1fr; gap: 16px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer { grid-template-columns: 1fr; text-align: center; gap: 18px; }
  .footer-copyright { text-align: center; }
  .footer-social { justify-content: center; }
}
