:root {
  --ink: #14181f;
  --paper: #faf7f1;
  --cream: #f1ece2;
  --accent: #7a4e2d;
  --accent-dark: #5f3a20;
  --muted: #6e7178;
  --rule: rgba(20, 24, 31, 0.08);
  --card: rgba(255, 255, 255, 0.7);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  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='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
}

a {
  color: inherit;
}

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

.font-display {
  font-family: "Fraunces", serif;
}

.site-shell {
  position: relative;
  z-index: 2;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background-color 0.25s ease, backdrop-filter 0.25s ease, border-color 0.25s ease;
}

.site-nav.scrolled {
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--rule);
}

.nav-link {
  position: relative;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(20, 24, 31, 0.76);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-link[aria-current="page"] {
  color: var(--ink);
}

.hero-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(241, 236, 226, 0.88)),
    var(--cream);
  border: 1px solid rgba(122, 78, 45, 0.12);
  box-shadow: 0 25px 80px rgba(20, 24, 31, 0.08);
}

.section-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.lede {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.8;
  color: rgba(20, 24, 31, 0.84);
}

.card-surface {
  background: var(--card);
  border: 1px solid rgba(20, 24, 31, 0.08);
  box-shadow: 0 18px 45px rgba(20, 24, 31, 0.05);
}

.venture-card,
.essay-card,
.fact-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(20, 24, 31, 0.08);
  box-shadow: 0 14px 40px rgba(20, 24, 31, 0.05);
}

.venture-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(20, 24, 31, 0.08);
}

.venture-card,
.button-primary,
.button-secondary,
.mobile-panel {
  transition: all 0.2s ease;
}

.button-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  padding: 0.95rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 24, 31, 0.12);
  padding: 0.95rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.62);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.92);
}

.quote-block {
  border-left: 2px solid rgba(122, 78, 45, 0.25);
  padding-left: 1.25rem;
}

.longform p {
  margin: 0 0 1.35rem;
  font-size: 1.06rem;
  line-height: 1.9;
  color: rgba(20, 24, 31, 0.86);
}

.longform h2 {
  margin: 0 0 1rem;
  font-family: "Fraunces", serif;
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.longform a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.logo-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.5rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(122, 78, 45, 0.1);
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.meta-list dt {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.meta-list dd {
  margin: 0.3rem 0 1rem;
  font-size: 0.98rem;
  line-height: 1.65;
}

.footer-link {
  color: rgba(20, 24, 31, 0.72);
  text-decoration: none;
}

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

.page-title {
  font-size: clamp(2.9rem, 8vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.mobile-panel[hidden] {
  display: none;
}

@media (max-width: 767px) {
  .page-title {
    font-size: 2.9rem;
  }
}
