:root {
  --warm-white: #f7f5f0;
  --paper: rgba(255, 255, 255, 0.72);
  --charcoal: #1c1c1c;
  --soft-charcoal: #4d4a45;
  --bronze: #a8844f;
  --bronze-light: #c9ad7c;
  --line: rgba(28, 28, 28, 0.12);
  --shadow: 0 18px 50px rgba(28, 28, 28, 0.08);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(168, 132, 79, 0.10), transparent 34%),
    var(--warm-white);
  color: var(--charcoal);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}
a { color: inherit; }
.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
.background-mark {
  position: fixed;
  inset: 10% auto auto 50%;
  z-index: 0;
  width: min(1050px, 92vw);
  transform: translateX(-50%);
  opacity: 0.035;
  pointer-events: none;
  user-select: none;
}
.background-mark img {
  width: 100%;
  height: auto;
  display: block;
}
.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.site-header {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand img {
  width: min(260px, 48vw);
  height: auto;
  display: block;
}
.email-link {
  color: var(--soft-charcoal);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-bottom: 1px solid var(--bronze);
  padding-bottom: 4px;
  transition: color 160ms ease;
}
.email-link:hover,
.email-link:focus-visible {
  color: var(--bronze);
}
.hero {
  padding: clamp(28px, 5vw, 54px) 0 clamp(30px, 5vw, 56px);
  max-width: 100%;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--bronze);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.intro {
  max-width: 900px;
  margin: 22px 0 0;
  color: var(--soft-charcoal);
  font-size: clamp(1rem, 1.7vw, 1.16rem);
}
.ventures {
  padding: 0 0 90px;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.section-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}
.venture-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}
.venture-card {
  min-height: 280px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 1fr auto;
  gap: 18px 26px;
  padding: 30px;
  background: var(--paper);
  border: 1px solid rgba(168, 132, 79, 0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.venture-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 132, 79, 0.52);
  box-shadow: 0 22px 60px rgba(28, 28, 28, 0.12);
}
.venture-number {
  color: var(--bronze);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
}
.venture-type {
  margin: 0 0 8px;
  color: var(--bronze);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.venture-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}
.venture-card p:not(.venture-type) {
  margin: 16px 0 0;
  color: var(--soft-charcoal);
  max-width: 42ch;
}
.status {
  grid-column: 2;
  justify-self: start;
  align-self: end;
  color: var(--soft-charcoal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--bronze-light);
  padding-bottom: 5px;
}
.site-footer {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--soft-charcoal);
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}
.site-footer a {
  text-decoration: none;
  border-bottom: 1px solid var(--bronze);
}
@media (max-width: 980px) {
  .hero h1 { white-space: normal; }
}
@media (max-width: 800px) {
  .venture-grid { grid-template-columns: 1fr; }
  .section-heading { display: block; }
  .section-heading h2 { margin-top: 8px; }
}
@media (max-width: 620px) {
  .site-header, main, .site-footer {
    width: min(100% - 24px, 1180px);
  }
  .site-header { min-height: 86px; }
  .email-link { font-size: 0.78rem; }
  .venture-card {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 24px;
  }
  .status { grid-column: 1; }
  .site-footer { min-height: 88px; }
}
