:root {
  --red: #ce1126;
  --red-dark: #a70d1f;
  --ink: #171717;
  --muted: #66635f;
  --line: rgba(23, 23, 23, .12);
  --paper: #fff;
  --soft: #f8f7f5;
  --max: 1180px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); line-height: 1.65; }
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(100%, 780px); }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 999; background: #fff; padding: 10px 14px; }
.skip-link:focus { top: 16px; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.9); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(0,0,0,.05); }
.header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand img { width: 190px; max-height: 54px; object-fit: contain; }
.primary-nav { display: flex; align-items: center; gap: 26px; }
.primary-nav a { text-decoration: none; font-size: .9rem; letter-spacing: .04em; }
.primary-nav a:hover { color: var(--red); }
.menu-toggle { display: none; border: 1px solid var(--line); background: #fff; padding: 9px 12px; }

.home-hero, .page-hero { background-image: linear-gradient(rgba(255,255,255,.1), rgba(255,255,255,.1)), var(--hero-image); background-size: cover; background-position: center; }
.home-hero { min-height: calc(100vh - 84px); display: grid; place-items: center; text-align: center; padding: 90px 0; }
.hero-content { max-width: 860px; }
.hero-logo { width: min(500px, 82vw); margin: 0 auto 34px; }
.eyebrow { margin: 0 0 16px; color: var(--red); font-size: .76rem; text-transform: uppercase; letter-spacing: .22em; font-weight: 700; }
h1, h2, h3 { line-height: 1.08; margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 500; }
.home-hero h1 { font-size: clamp(2.6rem, 6vw, 5.8rem); max-width: 900px; margin: 0 auto 24px; }
.lead { max-width: 700px; margin: 0 auto 34px; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.3rem); }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 24px; background: var(--red); color: #fff; border: 1px solid var(--red); text-decoration: none; font-weight: 700; letter-spacing: .03em; transition: .2s ease; }
.button:hover { background: var(--red-dark); transform: translateY(-2px); }
.section { padding: clamp(84px, 11vw, 150px) 0; }
.section-copy { background: var(--soft); }
.section h2 { font-size: clamp(2.2rem, 5vw, 4.8rem); margin-bottom: 24px; }
.section-copy p:not(.eyebrow), .prose { font-size: 1.16rem; color: var(--muted); }
.venture-section { background: #fff; }
.section-heading { margin-bottom: 36px; }
.venture-card { display: flex; justify-content: space-between; gap: 40px; align-items: end; min-height: 320px; padding: clamp(34px, 6vw, 72px); border: 1px solid var(--line); text-decoration: none; background: linear-gradient(135deg, #fff 0%, #faf6f5 100%); transition: .25s ease; }
.venture-card:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(74,15,23,.10); border-color: rgba(206,17,38,.3); }
.venture-card h3 { max-width: 720px; font-size: clamp(2rem, 4vw, 4.2rem); font-family: var(--serif); font-weight: 500; }
.venture-kicker { color: var(--red); text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; font-weight: 700; }
.page-hero { min-height: 54vh; display: grid; align-items: end; padding: 100px 0 70px; }
.page-hero h1 { font-size: clamp(3.5rem, 9vw, 7rem); margin-bottom: 0; }
.prose h2 { color: var(--ink); margin-top: 70px; font-size: clamp(2rem, 4vw, 3.5rem); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { color: var(--ink); font-size: 2rem; }
.content-card { border: 1px solid var(--line); padding: 38px; background: #fff; }
.text-link, .contact-email a { color: var(--red); font-weight: 700; text-decoration: none; }
.contact-email { font-size: clamp(1.6rem, 4vw, 3rem); }
.site-footer { border-top: 1px solid var(--line); padding: 54px 0 24px; background: #fff; }
.footer-inner { display: flex; justify-content: space-between; gap: 40px; }
.footer-inner p { color: var(--muted); margin: 6px 0 0; }
.footer-links { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.footer-links a { text-decoration: none; }
.copyright { margin-top: 42px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: .85rem; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 820px) {
  .header-inner { min-height: 72px; }
  .brand img { width: 150px; }
  .menu-toggle { display: inline-flex; }
  .primary-nav { position: absolute; top: 72px; left: 20px; right: 20px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; background: #fff; border: 1px solid var(--line); box-shadow: 0 20px 50px rgba(0,0,0,.08); }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 12px; }
  .home-hero { min-height: auto; padding: 90px 0; }
  .venture-card, .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* REV001 — Executive Hero */
.site-header {
  transition: background-color .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.97);
  border-bottom-color: rgba(23,23,23,.08);
  box-shadow: 0 10px 34px rgba(31,20,21,.06);
}
.header-inner { min-height: 96px; transition: min-height .28s ease; }
.site-header.is-scrolled .header-inner { min-height: 82px; }
.brand img { width: 270px; height: auto; transition: width .28s ease; }
.site-header.is-scrolled .brand img { width: 235px; }
.primary-nav a { position: relative; padding: 8px 0; transition: color .22s ease; }
.primary-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--red);
  transition: right .22s ease;
}
.primary-nav a:hover::after,
.primary-nav a.is-active::after { right: 0; }
.primary-nav a.is-active { color: var(--red); }

.home-hero {
  min-height: calc(100svh - 96px);
  padding: clamp(110px, 14vh, 170px) 0 clamp(105px, 13vh, 155px);
  background-image: linear-gradient(rgba(255,255,255,.26), rgba(255,255,255,.20)), var(--hero-image);
}
.hero-content { max-width: 980px; }
.hero-logo {
  width: min(760px, 92vw);
  height: auto;
  margin: 0 auto 58px;
}
.home-hero .eyebrow {
  margin-bottom: 30px;
  color: rgba(167,13,31,.84);
  letter-spacing: .32em;
}
.home-hero h1 {
  max-width: 940px;
  margin-bottom: 30px;
  font-size: clamp(2.75rem, 5.8vw, 5.65rem);
  font-weight: 400;
  line-height: 1.04;
}
.home-hero .lead { margin-bottom: 44px; }
.hero-actions { display: flex; justify-content: center; align-items: center; gap: 14px; flex-wrap: wrap; }
.button-secondary { background: rgba(255,255,255,.76); color: var(--ink); border-color: rgba(23,23,23,.22); }
.button-secondary:hover { background: #fff; color: var(--red); border-color: var(--red); }

.hero-reveal { opacity: 0; animation: heroFade .8s ease forwards; }
.hero-reveal-logo { animation-delay: .08s; }
.hero-reveal-eyebrow { animation-delay: .20s; }
.hero-reveal-title { animation-delay: .32s; }
.hero-reveal-copy { animation-delay: .44s; }
.hero-reveal-actions { animation-delay: .56s; }
@keyframes heroFade { from { opacity: 0; } to { opacity: 1; } }

@media (max-width: 820px) {
  .header-inner, .site-header.is-scrolled .header-inner { min-height: 78px; }
  .brand img, .site-header.is-scrolled .brand img { width: 205px; }
  .primary-nav { top: 78px; }
  .home-hero { min-height: auto; padding: 92px 0 104px; }
  .hero-logo { width: min(610px, 94vw); margin-bottom: 44px; }
  .home-hero .eyebrow { letter-spacing: .23em; margin-bottom: 24px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: min(100%, 300px); }
}

@media (max-width: 480px) {
  .container { width: min(calc(100% - 30px), var(--max)); }
  .brand img, .site-header.is-scrolled .brand img { width: 180px; }
  .hero-logo { width: min(430px, 96vw); margin-bottom: 36px; }
  .home-hero { padding: 76px 0 88px; }
  .home-hero h1 { font-size: clamp(2.35rem, 12vw, 3.3rem); }
}


/* REV002 — Who We Are */
.who-we-are {
  padding: clamp(108px, 12vw, 168px) 0;
  background: #fff;
}
.who-we-are-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: clamp(64px, 9vw, 132px);
  align-items: start;
}
.who-we-are-heading {
  max-width: 610px;
}
.who-we-are .eyebrow {
  margin-bottom: 24px;
}
.who-we-are h2 {
  margin: 0;
  max-width: 610px;
  font-size: clamp(3rem, 5.4vw, 5.35rem);
  line-height: 1.01;
  letter-spacing: -.025em;
}
.who-we-are-copy {
  max-width: 610px;
  padding-top: 48px;
  border-left: 1px solid var(--line);
  padding-left: clamp(34px, 4.5vw, 68px);
}
.section-copy.who-we-are .who-we-are-copy p {
  margin: 0;
  max-width: 580px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.4vw, 1.28rem);
  line-height: 1.9;
}
.section-copy.who-we-are .who-we-are-copy .who-closing {
  margin-top: 44px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
  line-height: 1.38;
  font-style: italic;
}

@media (max-width: 820px) {
  .who-we-are { padding: 96px 0 104px; }
  .who-we-are-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .who-we-are-heading,
  .who-we-are-copy { max-width: 680px; }
  .who-we-are-copy {
    padding: 0;
    border-left: 0;
  }
}

@media (max-width: 480px) {
  .who-we-are { padding: 78px 0 88px; }
  .who-we-are-grid { gap: 38px; }
  .who-we-are .eyebrow { margin-bottom: 18px; }
  .who-we-are h2 {
    max-width: 340px;
    font-size: clamp(2.65rem, 13vw, 3.6rem);
  }
  .section-copy.who-we-are .who-we-are-copy p {
    font-size: 1.06rem;
    line-height: 1.82;
  }
  .section-copy.who-we-are .who-we-are-copy .who-closing {
    margin-top: 34px;
    padding-top: 28px;
    font-size: 1.5rem;
  }
}
