:root {
  --bg: #f7f4ee;
  --panel: #ffffff;
  --ink: #111827;
  --muted: #596273;
  --soft: #e9e2d7;
  --accent: #243b6b;
  --accent-2: #c7813a;
  --line: rgba(17, 24, 39, 0.12);
  --shadow: 0 24px 80px rgba(28, 38, 58, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
}
a { color: inherit; }

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
.wordmark {
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 1.05rem;
  color: var(--accent);
}
nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
nav a {
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--muted);
  font-weight: 650;
}
nav a:hover { color: var(--ink); }

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.hero {
  min-height: 74vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
  gap: 68px;
  align-items: center;
  padding: 40px 0 88px;
}
.eyebrow, .section-kicker, .card-label, .content-type, .source {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  color: var(--accent-2);
  font-weight: 800;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.7rem, 8.1vw, 7.25rem);
  line-height: 0.88;
  letter-spacing: -0.065em;
  margin-bottom: 30px;
}
.hero-line {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.65rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 760px;
  color: #202a3d;
}
.hero-actions, .contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  border: 1px solid var(--line);
}
.button.primary {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.button.secondary {
  background: rgba(255,255,255,0.68);
  color: var(--ink);
}
.hero-image-wrap {
  background: linear-gradient(135deg, #ede5d8, #ffffff);
  border-radius: 34px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.hero-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 21%;
  border-radius: 24px;
  display: block;
}

.section-block {
  padding: 88px 0;
  border-top: 1px solid var(--line);
}
.compact-block { padding-top: 82px; }
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  max-width: 890px;
  margin-bottom: 26px;
}
.section-intro {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.18rem;
}
.card-grid {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card, .spotlight-card {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 16px 40px rgba(28, 38, 58, 0.06);
}
.card h3, .spotlight-card h3 {
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  margin: 13px 0 10px;
  line-height: 1.12;
}
.card p, .spotlight-card p { color: var(--muted); margin-bottom: 0; }
.card-note { margin-top: 16px; font-weight: 750; color: #303a4c !important; }
.text-link {
  display: inline-block;
  margin-top: 22px;
  font-weight: 800;
  text-decoration: none;
  color: var(--accent);
}
.text-link:hover { text-decoration: underline; }

.about-block {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 62px;
  padding: 88px 0;
  border-top: 1px solid var(--line);
}
.about-copy p {
  font-size: 1.16rem;
  color: #303a4c;
  margin-bottom: 20px;
}
.about-copy p:last-child { margin-bottom: 0; }

.conversations-section {
  background: #101827;
  color: #fff;
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100% - 1180px) / 2));
  padding-right: max(20px, calc((100% - 1180px) / 2));
}
.conversations-section .section-intro { color: rgba(255,255,255,0.72); }
.spotlight-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 18px;
  margin-top: 36px;
}
.spotlight-card {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.16);
  color: #fff;
  min-height: 250px;
}
.spotlight-card p { color: rgba(255,255,255,0.72); }
.spotlight-card .text-link { color: #fff; }
.feature-large { grid-row: span 2; }
.clip-note {
  margin-top: 18px !important;
  font-weight: 800;
  color: rgba(255,255,255,0.9) !important;
}

.news-section { background: #f3efe7; width: 100%; max-width: none; padding-left: max(20px, calc((100% - 1180px) / 2)); padding-right: max(20px, calc((100% - 1180px) / 2)); }
.news-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}
.news-item {
  display: grid;
  grid-template-columns: 210px 1.1fr 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
}
.news-item:last-child { border-bottom: 1px solid var(--line); }
.news-item strong {
  font-size: 1.15rem;
  letter-spacing: -0.025em;
}
.news-item span:last-child { color: var(--muted); }
.news-item:hover strong { color: var(--accent); }

.ventures-section .link-stack { margin-top: 4px; }
.ventures-section .link-stack .text-link { margin-right: 16px; }
.coming-soon {
  display: inline-block;
  margin-top: 22px;
  font-weight: 800;
  color: var(--muted);
}

.impact-section {
  background: #101827;
  color: #fff;
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100% - 1180px) / 2));
  padding-right: max(20px, calc((100% - 1180px) / 2));
}
.impact-section .section-intro { color: rgba(255,255,255,0.72); }
.logo-cloud {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}
.brand-logo {
  min-height: 88px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.045);
  color: rgba(255,255,255,0.92);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.brand-logo:hover,
.brand-logo:focus-visible {
  background: rgba(255,255,255,0.085);
  border-color: rgba(255,255,255,0.28);
  transform: translateY(-2px);
  color: #fff;
}
.brand-logo:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 62px;
  padding: 92px 0 110px;
  border-top: 1px solid var(--line);
}
.contact-copy p {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 620px;
}
.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .news-item { grid-template-columns: 1fr; gap: 8px; }
  .logo-cloud { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .site-header { align-items: flex-start; }
  nav { gap: 12px 18px; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 24px; gap: 36px; }
  .hero-image-wrap { max-width: 520px; }
  .card-grid.three, .spotlight-grid { grid-template-columns: 1fr; }
  .feature-large { grid-row: auto; }
  .about-block, .contact-section { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 560px) {
  .site-header { width: min(100% - 28px, 1180px); padding: 20px 0; }
  nav { display: none; }
  .section-shell { width: min(100% - 28px, 1180px); }
  h1 { font-size: clamp(3.2rem, 17vw, 5rem); }
  .hero-line { font-size: 1.45rem; }
  .hero-actions, .contact-actions { flex-direction: column; }
  .button { width: 100%; }
  .section-block, .about-block, .contact-section { padding: 68px 0; }
  .card, .spotlight-card { padding: 24px; border-radius: 22px; }
  .logo-cloud { grid-template-columns: 1fr; }
  .brand-logo { width: 100%; justify-content: center; }
}
