/* ═══════════════════════════════════════════════
   DFPP.IO — Design System
   Cormorant Garamond (display) + Outfit (body)
   Investor / partner brand hub
═══════════════════════════════════════════════ */

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

/* ── Tokens ── */
:root {
  --bg:          #0A0A0F;
  --bg-card:     #0F0F18;
  --bg-elevated: #14141F;
  --border:      rgba(255, 255, 255, 0.06);
  --border-md:   rgba(255, 255, 255, 0.10);
  --text:        #F0EFE9;
  --muted:       #7A8499;
  --muted-light: #9AABBF;
  --gold:        #F59E0B;
  --gold-dim:    rgba(245, 158, 11, 0.12);
  --gold-glow:   rgba(245, 158, 11, 0.06);
  --radius:      14px;
  --radius-sm:   8px;
  --max-w:       1140px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Base ── */
html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Grain overlay — film texture using SVG turbulence */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 9999;
}

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

/* ── Shared Utilities ── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.08;
  color: var(--text);
  margin-top: 14px;
}

/* ═══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 44px;
  border-bottom: 1px solid transparent;
  transition:
    padding 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: background;
}

.nav.scrolled {
  padding: 16px 44px;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text);
  text-decoration: none;
  position: relative;
  z-index: 101;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--muted);
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  color: var(--text);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link--cta {
  background: var(--gold-dim);
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: var(--radius-sm);
  padding: 8px 20px;
  color: var(--gold);
}

.nav-link--cta::after { display: none; }

.nav-link--cta:hover {
  color: var(--gold);
  background: rgba(245, 158, 11, 0.18);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  position: relative;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 44px;
}

/* Atmospheric glow */
.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 12% 45%, rgba(245, 158, 11, 0.09) 0%, transparent 65%),
    radial-gradient(ellipse 45% 40% at 88% 15%, rgba(245, 158, 11, 0.04) 0%, transparent 55%),
    radial-gradient(ellipse 30% 60% at 75% 85%, rgba(245, 158, 11, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding-top: 100px;
}

/* Staggered hero load animations */
.hero-eyebrow,
.hero-line,
.hero-sub,
.hero-cta {
  opacity: 0;
  transform: translateY(28px);
}

body.loaded .hero-eyebrow {
  animation: heroReveal 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}
body.loaded .hl-1 {
  animation: heroReveal 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.28s forwards;
}
body.loaded .hl-2 {
  animation: heroReveal 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.44s forwards;
}
body.loaded .hl-3 {
  animation: heroReveal 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.58s forwards;
}
body.loaded .hero-sub {
  animation: heroReveal 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.78s forwards;
}
body.loaded .hero-cta {
  animation: heroReveal 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.94s forwards;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  margin-bottom: 28px;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(54px, 7.5vw, 96px);
  font-weight: 600;
  line-height: 1.05;
  display: flex;
  flex-direction: column;
  margin-bottom: 36px;
  max-width: 820px;
}

.hero-line {
  display: block;
}

/* Middle line — italic gold — the editorial accent */
.hl-2 {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--muted-light);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 48px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--border-md);
  border-radius: var(--radius-sm);
  padding: 13px 26px;
  transition: border-color 0.25s, background 0.25s, gap 0.25s;
}

.hero-cta:hover {
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(245, 158, 11, 0.05);
  gap: 14px;
}

.cta-arrow {
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-cta:hover .cta-arrow {
  transform: translateY(3px);
}

/* Scroll indicator — animated drip line */
.scroll-indicator {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  overflow: hidden;
  opacity: 0;
}

body.loaded .scroll-indicator {
  animation: fadeIn 0.6s ease 1.8s forwards;
}

.scroll-bar {
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDrip 2.2s cubic-bezier(0.4, 0, 0.2, 1) 2s infinite;
}

@keyframes scrollDrip {
  0%   { transform: translateY(-100%); opacity: 1; }
  70%  { opacity: 0.7; }
  100% { transform: translateY(110%); opacity: 0; }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* ═══════════════════════════════════════════════
   STATS STRIP
═══════════════════════════════════════════════ */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0 44px;
}

.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}

.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 44px 20px;
  text-align: center;
  gap: 8px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.01em;
}

.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.stat-sep {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 28px 0;
}

/* ═══════════════════════════════════════════════
   DIVISIONS
═══════════════════════════════════════════════ */
.divisions {
  padding: 120px 44px;
}

.divisions-header {
  max-width: var(--max-w);
  margin: 0 auto 64px;
}

.divisions-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
  transition:
    border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Watermark division number */
.card::after {
  content: attr(data-division);
  position: absolute;
  bottom: -16px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 130px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.022);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
}

/* Gold top-edge glow on hover */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.card:not(.card-dim):hover {
  border-color: rgba(245, 158, 11, 0.18);
  transform: translateY(-5px);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(245, 158, 11, 0.06) inset;
}

.card:not(.card-dim):hover::before {
  opacity: 1;
}

.card-dim {
  opacity: 0.55;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.card-status {
  font-size: 10.5px;
  font-weight: 500;
  padding: 3px 11px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}

.status-live {
  background: rgba(16, 185, 129, 0.10);
  color: #34D399;
  border: 1px solid rgba(52, 211, 153, 0.18);
}

.status-soon {
  background: rgba(245, 158, 11, 0.09);
  color: var(--gold);
  border: 1px solid rgba(245, 158, 11, 0.18);
}

.card-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.15;
}

.card-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted-light);
  line-height: 1.75;
  flex: 1;
}

.card-products {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.product-tag {
  font-size: 11px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3px 10px;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.product-tag.coming {
  color: rgba(148, 163, 184, 0.4);
  border-color: rgba(255, 255, 255, 0.025);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  margin-top: 6px;
  transition: gap 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-link:hover {
  gap: 10px;
}

.card-link-dim {
  font-size: 13px;
  color: rgba(148, 163, 184, 0.35);
  margin-top: 6px;
}

/* ═══════════════════════════════════════════════
   APPROACH
═══════════════════════════════════════════════ */
.approach {
  padding: 120px 44px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(245, 158, 11, 0.025) 0%, transparent 70%),
    var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.approach-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.approach-header {
  margin-bottom: 80px;
}

.approach-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}

.step {
  position: relative;
  padding-top: 8px;
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 88px;
  font-weight: 700;
  color: rgba(245, 158, 11, 0.10);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  transition: color 0.4s;
}

.step:hover .step-num {
  color: rgba(245, 158, 11, 0.18);
}

.step-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}

.step-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted-light);
  line-height: 1.8;
  max-width: 340px;
}

/* ═══════════════════════════════════════════════
   FOUNDER
═══════════════════════════════════════════════ */
.founder {
  padding: 120px 44px;
}

.founder-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}

/* Photo column */
.founder-photo-col {
  max-width: 420px;
}

.founder-photo-wrap {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  position: relative;
}

.founder-photo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(245, 158, 11, 0.08) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(20%);
  transition: filter 0.4s;
}

.founder-img:hover {
  filter: grayscale(0%);
}

/* Fallback when photo is missing */
.photo-missing {
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-missing::after {
  content: 'BJ';
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.25;
  position: relative;
  z-index: 2;
}

.photo-missing .founder-img {
  display: none;
}

/* Content */
.founder-content {
  max-width: 580px;
}

.founder-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.8vw, 30px);
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  line-height: 1.5;
  margin: 20px 0 32px;
  padding-left: 24px;
  border-left: 2px solid rgba(245, 158, 11, 0.4);
}

.founder-meta {
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.founder-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.founder-title {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
.contact {
  padding: 120px 44px;
  border-top: 1px solid var(--border);
}

.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 72px;
}

.contact-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 600;
  line-height: 1.07;
  color: var(--text);
  margin-top: 14px;
  margin-bottom: 20px;
}

.contact-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted-light);
  line-height: 1.8;
  max-width: 400px;
}

.contact-direct {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.contact-direct-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.contact-direct-email {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-direct-email:hover {
  color: var(--gold);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.form-group label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  outline: none;
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(122, 132, 153, 0.55);
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237A8499' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-group select option {
  background: #14141F;
  color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(245, 158, 11, 0.45);
  background: var(--bg-elevated);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.65;
}

.form-btn {
  align-self: flex-start;
  background: var(--gold);
  color: #08080D;
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 34px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.form-btn:hover {
  background: #FBBF24;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.form-btn:active {
  transform: translateY(0);
}

.hidden-field {
  display: none;
}

.hidden {
  display: none !important;
}

.form-success {
  background: var(--bg-card);
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
}

.success-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.success-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding: 44px 44px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.footer-wordmark {
  font-size: 18px;
  color: var(--text);
  letter-spacing: 0.05em;
}

.footer-nav {
  display: flex;
  gap: 28px;
}

.footer-nav-link {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav-link:hover {
  color: var(--text);
}

.footer-right {
  text-align: right;
}

.footer-email {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 6px;
  transition: color 0.2s;
}

.footer-email:hover {
  color: var(--text);
}

.footer-legal {
  font-size: 12px;
  color: rgba(122, 132, 153, 0.5);
}

/* ═══════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0ms);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */

/* Tablet / Mid */
@media (min-width: 680px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .approach-steps {
    grid-template-columns: 1fr 1fr;
  }

  .stats-inner {
    flex-wrap: wrap;
  }
}

/* Desktop */
@media (min-width: 900px) {
  .divisions-inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .approach-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .founder-inner {
    grid-template-columns: 380px 1fr;
    gap: 88px;
  }

  .contact-inner {
    grid-template-columns: 1fr 1fr;
    gap: 88px;
    align-items: start;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .nav {
    padding: 20px 24px;
  }

  .nav.scrolled {
    padding: 14px 24px;
  }

  /* Hamburger visible */
  .nav-toggle {
    display: flex;
  }

  /* Full-screen overlay menu */
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 44px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 90;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav-links .nav-link {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.01em;
  }

  .nav-links .nav-link::after {
    display: none;
  }

  .nav-links .nav-link--cta {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 600;
    color: var(--gold);
    background: none;
    border: none;
    padding: 0;
    border-radius: 0;
  }

  .hero {
    padding: 0 24px;
  }

  .hero-inner {
    padding-top: 120px;
  }

  .hero-heading {
    font-size: clamp(48px, 13vw, 68px);
  }

  .stats {
    padding: 0 24px;
  }

  .stats-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .stat-sep {
    display: none;
  }

  .stat {
    padding: 32px 12px;
    border-bottom: 1px solid var(--border);
  }

  .stat:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .divisions,
  .approach,
  .founder,
  .contact,
  .footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .divisions,
  .approach,
  .founder,
  .contact {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .footer {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .footer-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    text-align: left;
  }

  .approach-header {
    margin-bottom: 56px;
  }

  .step-desc {
    max-width: none;
  }

  .founder-photo-col {
    max-width: 100%;
  }
}

/* Large screens */
@media (min-width: 1280px) {
  .hero-heading {
    font-size: 100px;
  }
}
