:root {
  --paper: #f3eadc;
  --paper-2: #fff8ee;
  --sand: #e7dccb;
  --ink: #1a1714;
  --ink-2: #26211c;
  --ink-3: #312b24;
  --text: #1a1714;
  --text-soft: #5c5348;
  --cream: #f6efe4;
  --rust: #c45c32;
  --rust-2: #e07a4c;
  --gold: #b8894a;
  --line: rgba(26, 23, 20, 0.12);
  --line-light: rgba(246, 239, 228, 0.16);
  --shadow: 0 28px 70px rgba(26, 23, 20, 0.14);
  --radius: 28px;
  --nav-h: 82px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-sans: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --display: "SOFT" 46, "WONK" 1, "opsz" 144;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--text);
  line-height: 1.7;
  cursor: none;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: none;
}

button {
  font: inherit;
  cursor: none;
  border: 0;
  background: none;
  color: inherit;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rust);
  pointer-events: none;
  z-index: 200;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease), height 0.25s var(--ease);
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1px solid var(--rust);
  border-radius: 50%;
  pointer-events: none;
  z-index: 199;
  transform: translate(-50%, -50%);
  opacity: 0.55;
}

body.hovering .cursor {
  width: 18px;
  height: 18px;
}

body.hovering .cursor-ring {
  width: 52px;
  height: 52px;
  opacity: 0.25;
}

@media (hover: none), (pointer: coarse) {
  .cursor,
  .cursor-ring {
    display: none;
  }
  body,
  a,
  button {
    cursor: auto;
  }
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--rust), var(--gold));
  z-index: 120;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--ink);
  color: var(--cream);
  display: grid;
  place-items: center;
  transition: transform 1s var(--ease), opacity 0.8s ease;
}

.loader.hide {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.loader-mark {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 500;
  font-variation-settings: var(--display);
  overflow: hidden;
}

.loader-mark span {
  display: inline-block;
  animation: rise 0.9s var(--ease) both;
}

.loader-bar {
  width: 180px;
  height: 2px;
  margin: 22px auto 0;
  background: rgba(246, 239, 228, 0.15);
  overflow: hidden;
}

.loader-bar i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--rust-2);
  animation: load 1.4s var(--ease) forwards;
}

@keyframes rise {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes load {
  to { width: 100%; }
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5.5vw;
  background: #f3eadc;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(26, 23, 20, 0.06);
}

.logo {
  display: flex;
  align-items: center;
  z-index: 2;
}

.logo-img {
  height: 46px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--rust);
  transition: width 0.35s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--rust);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 0.72rem 1.15rem;
  background: var(--ink);
  color: var(--cream) !important;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--rust) !important;
  color: #fff !important;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 120;
  cursor: pointer;
}

.burger span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1.5px;
  background: currentColor;
  transition: 0.3s var(--ease);
}

.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 20px; }
.burger span:nth-child(3) { top: 25px; }

body.menu-open .burger span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 2.5rem) 5.5vw 5rem;
  overflow: hidden;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  animation: ken 22s ease-in-out infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(243, 234, 220, 0.94) 0%, rgba(243, 234, 220, 0.78) 38%, rgba(26, 23, 20, 0.18) 68%, rgba(26, 23, 20, 0.42) 100%),
    linear-gradient(180deg, rgba(26, 23, 20, 0.12) 0%, transparent 22%, rgba(26, 23, 20, 0.35) 100%);
}

.hero-word {
  position: absolute;
  left: -2vw;
  bottom: -0.18em;
  z-index: 1;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(5.5rem, 16vw, 14rem);
  line-height: 0.75;
  letter-spacing: -0.05em;
  font-variation-settings: var(--display);
  color: transparent;
  -webkit-text-stroke: 1px rgba(26, 23, 20, 0.14);
  pointer-events: none;
  user-select: none;
}

.hero-card {
  position: relative;
  z-index: 2;
  width: min(560px, 100%);
  padding: 2.4rem 2.2rem 2.2rem;
  background: rgba(255, 248, 238, 0.88);
  border: 1px solid rgba(26, 23, 20, 0.08);
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(26, 23, 20, 0.16);
  backdrop-filter: blur(16px);
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.4rem;
}

.hero-chips span {
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  background: rgba(196, 92, 50, 0.1);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
}

.hero-stat {
  position: absolute;
  right: 5.5vw;
  bottom: 2.4rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 1.15rem;
  background: rgba(26, 23, 20, 0.72);
  color: var(--cream);
  border-radius: 18px;
  backdrop-filter: blur(10px);
}

.hero-stat strong {
  font-family: var(--font-serif);
  font-size: 2rem;
  line-height: 1;
  color: #f0b090;
}

.hero-stat span {
  font-size: 0.88rem;
  font-weight: 500;
}

.kicker {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1.3rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--rust);
}

.hero h1 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.7rem, 5.2vw, 5.2rem);
  line-height: 1;
  letter-spacing: -0.03em;
  font-variation-settings: var(--display);
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--rust);
  background: linear-gradient(180deg, transparent 64%, rgba(196, 92, 50, 0.2) 64%);
}

.hero-lead {
  max-width: 34rem;
  margin-top: 1.6rem;
  color: var(--text-soft);
  font-size: 1.12rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  margin-top: 2.2rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: 0.35s var(--ease);
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--rust);
}

.btn-ghost {
  border: 1.5px solid var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
}

.on-dark .btn-ghost {
  border-color: var(--cream);
  color: var(--cream);
}

.on-dark .btn-ghost:hover {
  background: var(--cream);
  color: var(--ink);
}

.on-dark .btn-primary {
  background: var(--rust);
  color: #fff;
}

@keyframes ken {
  from { transform: scale(1.04); }
  to { transform: scale(1.14) translate(-1.5%, -1%); }
}

.marquee {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding: 1.15rem 0;
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: slide 28s linear infinite;
}

.marquee-track span {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-style: italic;
  font-variation-settings: var(--display);
  white-space: nowrap;
}

.marquee-track b {
  color: var(--rust-2);
  font-weight: 600;
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

@keyframes slide {
  to { transform: translateX(-50%); }
}

.section,
.page-hero {
  scroll-margin-top: calc(var(--nav-h) + 12px);
}

.section {
  padding: 8rem 6vw;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4vw;
  margin-bottom: 4.2rem;
  align-items: end;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 4.9rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  font-weight: 500;
  font-variation-settings: var(--display);
}

.section-copy {
  color: var(--text-soft);
  font-size: 1.12rem;
  line-height: 1.75;
  max-width: 38rem;
}

.on-dark {
  background: var(--ink);
  color: var(--cream);
}

.on-dark .section-copy,
.on-dark .c-item p,
.on-dark .hero-lead {
  color: rgba(246, 239, 228, 0.72);
}

.sand {
  background: var(--sand);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  align-items: stretch;
}

.pillar {
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 2rem 1.6rem 1.7rem;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.45s var(--ease);
  box-shadow: var(--shadow);
}

.pillar:nth-child(1) {
  border-radius: 36px 8px 36px 8px;
  background: var(--ink);
  color: var(--cream);
  transform: translateY(28px);
}

.pillar:nth-child(1) p { color: rgba(246, 239, 228, 0.7); }
.pillar:nth-child(1) .pillar-num { color: var(--rust-2); }

.pillar:nth-child(2) {
  border-radius: 8px 36px 8px 36px;
  background: #fff8ee;
}

.pillar:nth-child(3) {
  border-radius: 36px 36px 8px 8px;
  background: #f0d3c4;
  transform: translateY(28px);
}

.pillar:hover {
  transform: translateY(-6px);
}

.pillar-num {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--rust);
  letter-spacing: 0.14em;
}

.pillar h3 {
  font-family: var(--font-serif);
  font-size: 2.35rem;
  font-variation-settings: var(--display);
  font-weight: 500;
  margin: 1.3rem 0 0.7rem;
}

.pillar p { color: var(--text-soft); }

.cs {
  display: grid;
  gap: 0.9rem;
}

.c-item {
  display: grid;
  grid-template-columns: 90px 200px 1fr;
  gap: 1.6rem;
  align-items: center;
  padding: 1.5rem 1.6rem;
  border-radius: 18px;
  background: var(--ink-2);
  transition: 0.4s var(--ease);
}

.c-item:nth-child(even) {
  background: var(--ink-3);
  margin-left: 4vw;
}

.c-item:hover {
  transform: translateX(8px);
  background: #3a3128;
}

.c-index {
  font-family: var(--font-serif);
  font-size: 2.7rem;
  color: var(--rust-2);
  font-style: italic;
  font-variation-settings: var(--display);
}

.c-item h3 {
  font-family: var(--font-serif);
  font-size: 2.15rem;
  font-weight: 500;
  font-variation-settings: var(--display);
}

.c-item small {
  display: block;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.7rem;
  margin-bottom: 0.4rem;
}

.ventures-sec {
  background:
    radial-gradient(ellipse at 90% 10%, rgba(196, 92, 50, 0.08), transparent 42%),
    var(--paper);
}

.ventures {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr auto;
  gap: 1rem;
}

.venture {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  isolation: isolate;
  color: var(--cream);
  border-radius: 24px;
  display: block;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.venture.featured {
  grid-row: span 2;
  min-height: 640px;
  border-radius: 32px 12px 32px 12px;
}

.venture.wide {
  grid-column: 1 / -1;
  min-height: 260px;
  border-radius: 16px 32px 16px 32px;
}

.venture:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(26, 23, 20, 0.18);
}

.venture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.venture:hover img { transform: scale(1.08); }

.venture::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 23, 20, 0.1) 10%, rgba(26, 23, 20, 0.82) 100%);
  transition: 0.4s var(--ease);
}

.venture:hover::after {
  background: linear-gradient(180deg, rgba(26, 23, 20, 0.2) 0%, rgba(26, 23, 20, 0.88) 100%);
}

.venture-top {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  right: 1.2rem;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.v-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  color: #f0b090;
}

.v-status {
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 248, 238, 0.16);
  border: 1px solid rgba(255, 248, 238, 0.22);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.venture-body {
  position: absolute;
  inset: auto 0 0;
  padding: 1.6rem 1.5rem 1.5rem;
  z-index: 1;
}

.venture-body small {
  display: block;
  color: #f0b090;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.venture-body h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 2.2vw, 2.3rem);
  font-variation-settings: var(--display);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 0.5rem;
}

.venture-body p {
  color: rgba(246, 239, 228, 0.82);
  max-width: 34rem;
}

.venture-body em {
  display: inline-block;
  margin-top: 0.9rem;
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.35s var(--ease);
}

.venture:hover em {
  opacity: 1;
  transform: none;
}

.journal-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 1.1rem;
}

.journal-grid.four {
  grid-template-columns: 1fr 1fr;
}

.journal-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: 0.45s var(--ease);
  color: var(--ink);
}

.journal-card:first-child {
  border-radius: 8px 40px 8px 40px;
}

.journal-card:nth-child(2) {
  border-radius: 40px 8px 40px 8px;
}

.journal-card:nth-child(3),
.journal-card:nth-child(4) {
  border-radius: 28px;
}

.journal-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.journal-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.journal-card .meta {
  padding: 1.4rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.journal-card time,
.journal-card .tag {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rust);
}

.journal-card h3 {
  font-family: var(--font-serif);
  font-variation-settings: var(--display);
  font-size: 1.65rem;
  line-height: 1.15;
  font-weight: 500;
}

.journal-card p {
  color: var(--text-soft);
  flex: 1;
}

.more {
  margin-top: 0.3rem;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
}

.connect {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 560px;
}

.connect-copy {
  background: var(--ink);
  color: var(--cream);
  padding: 6rem 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}

.connect-copy .section-copy {
  color: rgba(246, 239, 228, 0.72);
  margin-top: 1.2rem;
}

.form {
  background: var(--paper);
  padding: 6rem 6vw 6rem 5vw;
  display: grid;
  gap: 1rem;
  align-content: center;
}

.form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-soft);
}

.form input,
.form textarea {
  width: 100%;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  color: var(--ink);
  font: inherit;
  outline: none;
  cursor: none;
}

.form input:focus,
.form textarea:focus {
  border-color: var(--rust);
}

.form textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  min-height: 1.2rem;
  font-size: 0.9rem;
  color: var(--rust);
}

.footer {
  padding: 3rem 6vw 2.2rem;
  background: var(--ink);
  color: rgba(246, 239, 228, 0.65);
}

.footer-word {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 12vw, 11rem);
  line-height: 0.8;
  letter-spacing: -0.05em;
  font-variation-settings: var(--display);
  color: transparent;
  -webkit-text-stroke: 1px rgba(246, 239, 228, 0.22);
  text-align: center;
  margin-bottom: 2.2rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.page-hero {
  padding: calc(var(--nav-h) + 5rem) 6vw 3rem;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(196, 92, 50, 0.12), transparent 46%),
    var(--paper);
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: -0.035em;
  font-variation-settings: var(--display);
  max-width: 14ch;
}

.article {
  padding: 0 6vw 7rem;
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.article-cover {
  width: min(1100px, 88vw);
  margin: 0 auto 3rem;
  height: min(58vh, 520px);
  border-radius: 18px 64px 18px 64px;
  overflow: hidden;
}

.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-meta {
  color: var(--rust);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.article h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.08;
  font-weight: 500;
  font-variation-settings: var(--display);
  margin-bottom: 1.6rem;
}

.article .lede {
  font-size: 1.28rem;
  line-height: 1.65;
  color: var(--text-soft);
  margin-bottom: 2rem;
}

.prose p {
  color: var(--text-soft);
  font-size: 1.12rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.prose h2 {
  font-family: var(--font-serif);
  font-size: 2.15rem;
  font-weight: 500;
  font-variation-settings: var(--display);
  color: var(--ink);
  margin: 2.4rem 0 0.9rem;
}

.prose .consider {
  margin-top: 2.4rem;
  padding: 1.4rem 1.5rem;
  border-left: 3px solid var(--rust);
  background: #f0d3c4;
  color: var(--ink);
  border-radius: 0 16px 16px 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

[data-reveal].in {
  opacity: 1;
  transform: none;
}

[data-reveal="left"] { transform: translateX(-36px); }
[data-reveal="right"] { transform: translateX(36px); }

@media (max-width: 980px) {
  .logo-img { height: 36px; }
  .logo { z-index: 120; }
  .burger { display: block; }
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100dvh;
    z-index: 110;
    background: #f3eadc;
    color: var(--ink);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.8rem;
    padding: calc(var(--nav-h) + 1rem) 8vw 3rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: 0.35s var(--ease);
  }
  body.menu-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .nav-links a {
    font-size: 1.45rem;
    padding: 0.35rem 0;
  }
  .nav-cta {
    margin-top: 0.6rem;
    padding: 0.9rem 1.4rem !important;
    font-size: 1rem !important;
  }
  .hero,
  .section-head,
  .pillars,
  .ventures,
  .journal-grid,
  .connect,
  .c-item {
    grid-template-columns: 1fr;
  }
  .hero {
    align-items: flex-end;
    padding: calc(var(--nav-h) + 1.6rem) 6vw 1.6rem;
  }
  .hero-card { width: 100%; padding: 1.6rem 1.3rem; }
  .hero-word { display: none; }
  .hero-stat { display: none; }
  .pillar:nth-child(1),
  .pillar:nth-child(3),
  .c-item:nth-child(even) {
    transform: none;
    margin-left: 0;
  }
  .ventures { grid-template-columns: 1fr; grid-template-rows: auto; }
  .venture,
  .venture.featured,
  .venture.wide {
    grid-row: auto;
    grid-column: auto;
    min-height: 340px;
    border-radius: 22px;
  }
  .venture-body em { opacity: 1; transform: none; }
  .connect-copy {
    clip-path: none;
    padding: 4rem 6vw 2rem;
  }
  .form { padding: 2rem 6vw 4rem; }
  .section { padding: 5.2rem 6vw; }
}
