@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Inter:wght@400;500;600&display=swap');

:root {
  --forest: #23463b;
  --forest-deep: #153229;
  --ivory: #f7f4ee;
  --paper: #fcfaf6;
  --gold: #b59452;
  --ink: #202622;
  --muted: #6f7872;
  --line: rgba(35, 70, 59, 0.16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--paper);
  color: var(--forest);
  padding: 0.75rem 1rem;
  border-radius: 999px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  width: min(calc(100% - 3rem), var(--max-width));
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.55rem;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.wordmark small {
  color: var(--gold);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
}

nav {
  display: flex;
  gap: 1.7rem;
}

nav a {
  color: var(--muted);
  font-size: 0.84rem;
  text-decoration: none;
  transition: color 160ms ease;
}

nav a:hover,
nav a:focus-visible {
  color: var(--forest);
}

.hero {
  width: min(calc(100% - 3rem), var(--max-width));
  min-height: calc(100vh - 88px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: clamp(5.5rem, 10vw, 8.5rem) 0 clamp(3.5rem, 6vw, 5rem);
}

.hero-inner {
  max-width: 900px;
}

.eyebrow {
  margin: 0 0 1.3rem;
  color: var(--forest);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.62);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
}

h1 {
  max-width: 890px;
  margin-bottom: 1.6rem;
  font-size: clamp(4.7rem, 9.3vw, 9rem);
  line-height: 0.88;
  letter-spacing: -0.058em;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 2.5rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--forest);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.28rem;
  font-weight: 600;
}

.text-link--large {
  font-size: 0.95rem;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--gold);
}

.section {
  width: min(calc(100% - 3rem), var(--max-width));
  margin: 0 auto;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0 clamp(6rem, 10vw, 9rem);
}

.section-intro {
  max-width: 900px;
  margin-bottom: 4rem;
}

.section-intro h2 {
  margin-bottom: 0;
  font-size: clamp(3.2rem, 6vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.venture-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.venture-row {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition: background 180ms ease, transform 180ms ease;
}

.venture-row:hover {
  background: var(--paper);
  transform: translateY(-4px);
}

.venture-row--active {
  background: var(--paper);
}

.venture-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.venture-index {
  color: rgba(35, 70, 59, 0.35);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.status {
  color: var(--forest);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.status--quiet {
  color: var(--muted);
}

.venture-main {
  margin-top: auto;
}

.venture-main h3 {
  margin: 4.5rem 0 1rem;
  font-size: clamp(2.35rem, 3.3vw, 3.65rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.venture-main p {
  max-width: 34rem;
  margin-bottom: 0;
  color: var(--muted);
}

.venture-action {
  margin-top: 2rem;
  text-align: left;
}

.venture-action a {
  color: var(--forest);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.venture-action a:hover,
.venture-action a:focus-visible {
  color: var(--gold);
}

.philosophy {
  background: var(--forest);
  color: white;
}

.philosophy-inner {
  width: min(calc(100% - 3rem), var(--max-width));
  margin: 0 auto;
  padding: clamp(6rem, 11vw, 10rem) 0;
}

.philosophy h2 {
  max-width: 1050px;
  margin-bottom: 2.4rem;
  font-size: clamp(3.2rem, 6.3vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.philosophy-copy {
  max-width: 660px;
  margin-left: auto;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
}

.contact {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.contact .section-intro {
  margin-bottom: 0;
}

.contact-copy p {
  margin-bottom: 2rem;
  color: var(--muted);
}

.email-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--forest);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 600;
  text-decoration: none;
}

.email-link:hover,
.email-link:focus-visible {
  color: var(--gold);
}

.site-footer {
  width: min(calc(100% - 3rem), var(--max-width));
  margin: 0 auto;
  padding: 3.7rem 0 2.3rem;
  border-top: 1px solid var(--line);
}

.footer-statement {
  margin-bottom: 3.6rem;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5.9rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  color: var(--muted);
  font-size: 0.78rem;
}

:focus-visible {
  outline: 3px solid rgba(181, 148, 82, 0.7);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .venture-list {
    grid-template-columns: 1fr;
  }

  .venture-row {
    min-height: 340px;
  }

  .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header,
  .hero,
  .section,
  .philosophy-inner,
  .site-footer {
    width: min(calc(100% - 2rem), var(--max-width));
  }

  .site-header {
    min-height: 78px;
  }

  nav {
    gap: 1rem;
  }

  nav a:not(:last-child) {
    display: none;
  }

  .hero {
    min-height: calc(100vh - 78px);
    padding: 5rem 0 6rem;
  }

  h1 {
    font-size: clamp(4.2rem, 20vw, 6.6rem);
  }

  .section-intro h2,
  .philosophy h2 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .venture-row {
    padding: 1.4rem;
  }

  .venture-main h3 {
    margin-top: 3.6rem;
  }

  .footer-meta {
    flex-direction: column;
    gap: 0.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
