/* ============================================
   FRANK HAWKINS — Miami Vice meets Picasso
   Soft pastels · Bold geometry · Cubist energy
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap');

:root {
  /* Miami Vice Pastels — soft touch */
  --peach: #f7c5a8;
  --coral: #e8927c;
  --coral-deep: #d4735d;
  --mint: #a8e6cf;
  --mint-deep: #6bc5a0;
  --sky: #a8d8ea;
  --sky-deep: #5fb3d4;
  --lavender: #c3b1e1;
  --lavender-deep: #9b7fd4;
  --blush: #f5c6d0;
  --sand: #f5e6d3;
  --cream: #fdf6f0;
  --white: #ffffff;
  --ink: #1a1a2e;
  --ink-light: #2d2d44;
  --ink-muted: #4a4a6a;
  --ink-faint: #8888a8;

  /* Typography */
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;
}

/* ── Reset ────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ── Noise texture overlay ────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Utility ──────────────────────────── */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ── HEADER ───────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
.site-header.scrolled {
  background: rgba(253, 246, 240, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(26,26,46,0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.site-logo img {
  height: 48px;
  width: auto;
  transition: transform 0.3s;
}
.site-logo:hover img {
  transform: rotate(-5deg) scale(1.05);
}
.site-logo span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--ink);
}

/* Desktop Nav */
.nav-desktop {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
.nav-desktop > li {
  position: relative;
}
.nav-desktop > li > a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.5rem 0.85rem;
  border-radius: 100px;
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;
}
.nav-desktop > li > a:hover,
.nav-desktop > li > a.active {
  background: var(--peach);
  color: var(--ink);
}
/* Dropdown */
.nav-desktop li ul {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(26,26,46,0.12);
  padding: 0.75rem;
  min-width: 220px;
  transition: all 0.3s;
  z-index: 100;
}
.nav-desktop li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-desktop li ul a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.82rem;
  border-radius: 8px;
  transition: background 0.2s;
}
.nav-desktop li ul a:hover {
  background: var(--sand);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  position: absolute;
  left: 6px;
  transition: all 0.3s;
}
.nav-toggle span:nth-child(1) { top: 10px; }
.nav-toggle span:nth-child(2) { top: 17px; }
.nav-toggle span:nth-child(3) { top: 24px; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg); top: 17px; }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg); top: 17px; }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(253,246,240,0.97);
  backdrop-filter: blur(24px);
  z-index: 999;
  padding: 6rem 2rem 2rem;
  overflow-y: auto;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.05em;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(26,26,46,0.06);
}
.nav-mobile .sub-link {
  font-size: 1.2rem;
  padding-left: 1.5rem;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink-muted);
}

/* ── HERO SECTION ─────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, var(--sky) 0%, var(--mint) 35%, var(--peach) 70%, var(--blush) 100%);
}
/* Cubist geometric shapes */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 60vw;
  height: 60vw;
  background: linear-gradient(135deg, var(--lavender) 0%, transparent 60%);
  border-radius: 0 0 0 40%;
  transform: rotate(-12deg);
  opacity: 0.4;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -8%;
  width: 45vw;
  height: 45vw;
  background: var(--coral);
  opacity: 0.15;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morph 15s ease-in-out infinite;
}
@keyframes morph {
  0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  padding: var(--space-2xl) 0 var(--space-xl);
}
.hero-text {
  max-width: 600px;
}
.hero-tagline {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--ink-muted);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-tagline::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--coral);
}
.hero-name {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: var(--space-md);
}
.hero-name em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  display: block;
  font-size: 0.4em;
  line-height: 1.4;
  color: var(--ink-light);
  letter-spacing: -0.01em;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--ink-muted);
  max-width: 420px;
  line-height: 1.8;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: var(--space-md);
  padding: 1rem 2rem;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.15em;
  border-radius: 100px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26,26,46,0.2);
}
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-image img {
  position: relative;
  z-index: 2;
  max-height: 70vh;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(26,26,46,0.15));
}
/* Picasso-style frame behind hero image */
.hero-image::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 85%;
  height: 85%;
  border: 3px solid var(--coral);
  border-radius: 24px;
  transform: rotate(4deg);
  z-index: 1;
}
.hero-image::after {
  content: '';
  position: absolute;
  bottom: 5%;
  left: 8%;
  width: 70%;
  height: 70%;
  background: var(--lavender);
  opacity: 0.3;
  border-radius: 20px;
  transform: rotate(-6deg);
  z-index: 0;
}

/* ── SECTION STYLES ───────────────────── */
section {
  padding: var(--space-xl) 0;
  position: relative;
}

.section-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--coral-deep);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--coral);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: var(--space-md);
}
.section-title .accent {
  color: var(--coral-deep);
}
.section-title .outline {
  -webkit-text-stroke: 2px var(--ink);
  color: transparent;
}

/* ── VENTURES GRID (Homepage) ─────────── */
.ventures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-lg);
}
.venture-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  padding: 2rem;
  transition: transform 0.4s, box-shadow 0.4s;
  border: 1px solid rgba(26,26,46,0.04);
}
.venture-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(26,26,46,0.1);
}
.venture-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.venture-card:nth-child(1)::before { background: var(--sky-deep); }
.venture-card:nth-child(2)::before { background: var(--coral); }
.venture-card:nth-child(3)::before { background: var(--mint-deep); }
.venture-card:nth-child(4)::before { background: var(--lavender-deep); }
.venture-card:nth-child(5)::before { background: var(--peach); }
.venture-card:nth-child(6)::before { background: var(--blush); }

.venture-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(26,26,46,0.06);
  margin-bottom: 0.5rem;
}
.venture-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.venture-card p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.7;
}
.venture-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--coral-deep);
  transition: gap 0.3s;
}
.venture-card:hover .card-link {
  gap: 0.85rem;
}

/* Stat strip */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: var(--space-xl) 0;
  padding: var(--space-lg) 0;
  border-top: 1px solid rgba(26,26,46,0.06);
  border-bottom: 1px solid rgba(26,26,46,0.06);
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--ink);
}
.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-faint);
  margin-top: 0.5rem;
}

/* ── ABOUT / BIO SECTION ──────────────── */
.bio-section {
  background: var(--white);
}
.bio-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.bio-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
.bio-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}
.bio-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.15), transparent 40%);
}
.bio-text h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 0.03em;
  margin-bottom: var(--space-md);
}
.bio-text p {
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.8;
}
.bio-text p:first-of-type {
  font-size: 1.1rem;
  color: var(--ink-light);
  font-weight: 400;
}

/* ── PAGE BANNER ──────────────────────── */
.page-banner {
  padding: calc(var(--space-2xl) + 80px) 0 var(--space-xl);
  position: relative;
  overflow: hidden;
}
.page-banner.teal {
  background: linear-gradient(155deg, var(--sky) 0%, var(--mint) 100%);
}
.page-banner.coral {
  background: linear-gradient(155deg, var(--peach) 0%, var(--coral) 100%);
}
.page-banner.lavender {
  background: linear-gradient(155deg, var(--lavender) 0%, var(--blush) 100%);
}
.page-banner.mint {
  background: linear-gradient(155deg, var(--mint) 0%, var(--sky) 100%);
}
.page-banner.sand {
  background: linear-gradient(155deg, var(--sand) 0%, var(--peach) 100%);
}
.page-banner::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.page-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--ink);
  position: relative;
}
.page-banner .subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-muted);
  margin-top: var(--space-sm);
  max-width: 500px;
}

/* ── PAGE CONTENT ─────────────────────── */
.page-content {
  padding: var(--space-xl) 0;
}
.page-content .content-wrap {
  max-width: 800px;
}
.page-content h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.03em;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--ink);
}
.page-content h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: var(--space-md) 0 var(--space-xs);
  color: var(--ink-light);
}
.page-content h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: var(--space-md) 0 var(--space-xs);
  color: var(--coral-deep);
}
.page-content p {
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
  line-height: 1.85;
}
.page-content p:first-child {
  font-size: 1.15rem;
  color: var(--ink-light);
  line-height: 1.8;
}
.page-content blockquote {
  border-left: 4px solid var(--coral);
  padding: 1rem 1.5rem;
  margin: var(--space-md) 0;
  background: rgba(232, 146, 124, 0.06);
  border-radius: 0 12px 12px 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink-light);
}

/* Image gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  margin: var(--space-md) 0;
}
.gallery-grid img {
  border-radius: 12px;
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-grid img:hover {
  transform: scale(1.03);
}

/* Stats table */
.stats-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-md) 0;
  font-size: 0.9rem;
}
.stats-table th {
  text-align: left;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--cream);
}
.stats-table th:first-child { border-radius: 8px 0 0 0; }
.stats-table th:last-child { border-radius: 0 8px 0 0; }
.stats-table td {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid rgba(26,26,46,0.06);
  color: var(--ink-muted);
}
.stats-table tr:hover td {
  background: var(--sand);
}

/* Development list */
.dev-list {
  margin: var(--space-md) 0;
}
.dev-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(26,26,46,0.06);
  font-size: 0.95rem;
}
.dev-item span:first-child {
  font-weight: 600;
  color: var(--ink);
}
.dev-item span:nth-child(2) {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--coral-deep);
}
.dev-item span:last-child {
  color: var(--ink-faint);
}

/* ── FOOTER ───────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: var(--space-xl) 0 var(--space-md);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}
.footer-brand {
  max-width: 320px;
}
.footer-brand img {
  height: 48px;
  margin-bottom: var(--space-sm);
  filter: brightness(0) invert(1);
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-sm);
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  padding: 0.25rem 0;
  transition: color 0.3s;
}
.footer-col a:hover {
  color: var(--peach);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}
.social-links {
  display: flex;
  gap: 1rem;
}
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.social-links a:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}

/* ── CUBIST DECORATIVE ELEMENTS ───────── */
.geo-accent {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.geo-accent.circle {
  border-radius: 50%;
  border: 2px solid var(--coral);
  opacity: 0.15;
}
.geo-accent.triangle {
  width: 0; height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 70px solid var(--lavender);
  opacity: 0.12;
}
.geo-accent.slash {
  width: 3px;
  height: 120px;
  background: var(--mint);
  transform: rotate(-25deg);
  opacity: 0.2;
}

/* ── ANIMATIONS ────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-tagline { animation: slideRight 0.8s ease-out 0.2s both; }
.hero-name { animation: fadeUp 0.8s ease-out 0.4s both; }
.hero-desc { animation: fadeUp 0.8s ease-out 0.6s both; }
.hero-cta { animation: fadeUp 0.8s ease-out 0.8s both; }
.hero-image { animation: fadeIn 1s ease-out 0.6s both; }

.page-banner .section-label { animation: slideRight 0.6s ease-out 0.1s both; }
.page-banner h1 { animation: fadeUp 0.7s ease-out 0.2s both; }
.page-banner .subtitle { animation: fadeUp 0.7s ease-out 0.35s both; }

/* Scroll reveal utility — toggled via JS IntersectionObserver */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── BACK TO TOP ──────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  border: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, background 0.3s;
  z-index: 100;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--coral-deep);
}

/* ── RESPONSIVE ───────────────────────── */
@media (max-width: 980px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-text { max-width: 100%; }
  .hero-tagline { justify-content: center; }
  .hero-desc { margin: 0 auto; }
  .hero-cta { margin: var(--space-md) auto 0; }
  .hero-image { margin-top: var(--space-md); }
  .hero-image::before, .hero-image::after { display: none; }
  .ventures-grid { grid-template-columns: 1fr 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .bio-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .dev-item { grid-template-columns: 1fr; gap: 0.25rem; }
}
@media (max-width: 600px) {
  .ventures-grid { grid-template-columns: 1fr; }
  .page-banner h1 { font-size: 3rem; }
  .section-title { font-size: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}


/* ── CLEANED STRUCTURE ADDITIONS ───────────────── */
.page-shell {
  background: var(--cream);
}
.jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: var(--space-lg);
}
.jump-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(26,26,46,0.08);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}
.jump-nav a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(26,26,46,0.08);
  background: var(--sand);
}
.anchor-section {
  scroll-margin-top: 120px;
  padding: 0 0 var(--space-xl);
}
.anchor-section + .anchor-section {
  border-top: 1px solid rgba(26,26,46,0.06);
  padding-top: var(--space-xl);
}
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: var(--space-md);
}
.story-card {
  background: var(--white);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid rgba(26,26,46,0.06);
  box-shadow: 0 14px 40px rgba(26,26,46,0.04);
}
.story-card h3 {
  margin-top: 0;
}
.story-card p {
  margin-bottom: 0;
}
.info-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: var(--space-md);
  border: 1px solid rgba(26,26,46,0.06);
}
.info-card p:last-child {
  margin-bottom: 0;
}
.media-short img {
  aspect-ratio: 4/4.2;
}
.footer-grid-clean {
  grid-template-columns: 2fr 1fr 1fr;
}
.center-jump {
  justify-content: center;
}
@media (max-width: 1100px) {
  .nav-desktop {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
}
@media (max-width: 900px) {
  .story-grid,
  .footer-grid-clean {
    grid-template-columns: 1fr;
  }
}
