/* NovusMarg — professional corporate system
   Cool navy / platinum / gold (aligned with logo) */

:root {
  --ink: #0a121c;
  --navy: #132338;
  --navy-deep: #07111f;
  --navy-mid: #0f1c2e;
  --navy-soft: #1a2f47;
  --steel: #4a5d73;
  --paper: #f4f6f9;
  --paper-raised: #ffffff;
  --gold: #b8974e;
  --gold-deep: #94763a;
  --gold-light: #d4bc7a;
  --brick: #8c3f36;
  --brick-bg: #f7eeeb;
  --sage: #3f5c4c;
  --muted: #5f6f80;
  --line: rgba(7, 17, 31, 0.1);
  --line-soft: rgba(7, 17, 31, 0.06);
  --glass: rgba(7, 17, 31, 0.55);
  --shadow: 0 20px 50px rgba(7, 17, 31, 0.14);
  --max: 1180px;
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "IBM Plex Sans", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

::selection {
  background: var(--gold);
  color: var(--navy-deep);
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.015em;
  color: var(--navy-deep);
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-solid,
.site-header.is-scrolled {
  background: rgba(244, 246, 249, 0.94);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(7, 17, 31, 0.06);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 0;
  position: relative;
  height: 46px;
  width: 220px;
}

.brand-logo {
  height: 46px;
  width: auto;
  max-width: 220px;
  display: block;
  background: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* Dark header (over video): white wordmark. Light header: navy wordmark. */
.brand-logo-light {
  opacity: 1;
  visibility: visible;
}

.brand-logo-dark {
  opacity: 0;
  visibility: hidden;
}

.site-header.is-solid .brand-logo-light,
.site-header.is-scrolled .brand-logo-light,
body.has-solid-header .brand-logo-light {
  opacity: 0;
  visibility: hidden;
}

.site-header.is-solid .brand-logo-dark,
.site-header.is-scrolled .brand-logo-dark,
body.has-solid-header .brand-logo-dark {
  opacity: 1;
  visibility: visible;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-header.is-solid .nav-links a,
.site-header.is-scrolled .nav-links a {
  color: var(--navy);
}

.nav-links a:hover,
.nav-links a.active {
  border-bottom-color: var(--gold);
}

.site-header.is-solid .nav-links a.active,
.site-header.is-scrolled .nav-links a.active {
  color: var(--navy-deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  background: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--navy-deep);
  color: #fff;
}

.btn-primary:hover {
  background: var(--gold-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--navy-deep);
  border-color: rgba(7, 17, 31, 0.28);
}

.btn-ghost:hover {
  background: var(--navy-deep);
  color: #fff;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn-gold:hover {
  background: var(--gold-light);
}

.nav-cta {
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 2;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: background 0.2s ease;
}

.site-header.is-solid .menu-toggle span,
.site-header.is-scrolled .menu-toggle span {
  background: var(--navy-deep);
}

/* ---------- Hero media slider ---------- */
.hero-slider {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  overflow: hidden;
  background: var(--navy-deep);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s var(--ease);
  overflow: hidden;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-slide video,
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 8s linear;
}

.hero-slide.is-active video,
.hero-slide.is-active img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(105deg, rgba(7, 17, 31, 0.88) 0%, rgba(7, 17, 31, 0.62) 48%, rgba(7, 17, 31, 0.35) 100%),
    linear-gradient(to top, rgba(7, 17, 31, 0.75) 0%, transparent 42%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 120px 0 48px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: end;
}

.hero-kicker {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-kicker .rule {
  width: 32px;
  height: 1px;
  background: var(--gold-light);
}

.hero-slider h1 {
  color: #fff;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.06;
  max-width: 15ch;
}

.hero-slider h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 46ch;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-slider .btn-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.hero-slider .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.hero-panel {
  background: rgba(15, 28, 46, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  padding: 28px 26px;
  position: relative;
}

.hero-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
}

.hero-stat {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hero-stat:first-child {
  padding-top: 0;
}

.hero-stat .num {
  font-family: var(--serif);
  font-size: 28px;
  color: #fff;
  font-weight: 500;
}

.hero-stat .lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 2px;
}

.hero-strip {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 17, 31, 0.45);
  backdrop-filter: blur(10px);
  padding: 18px 0;
}

.hero-strip .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}

.hero-strip-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 4px 16px 4px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.hero-strip-item b {
  color: #fff;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
}

.slider-nav {
  position: absolute;
  right: 32px;
  bottom: 120px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 28px;
  height: 3px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.25s ease, width 0.25s var(--ease);
}

.slider-dot.is-active {
  background: var(--gold);
  width: 40px;
}

.slider-caption {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

/* ---------- Page hero ---------- */
.page-hero {
  position: relative;
  color: #fff;
  padding: 140px 0 72px;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy-deep);
}

.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 18s ease-in-out infinite alternate;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, rgba(7, 17, 31, 0.92) 0%, rgba(7, 17, 31, 0.7) 55%, rgba(7, 17, 31, 0.55) 100%);
}

@keyframes kenBurns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  max-width: 18ch;
}

.page-hero p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  max-width: 52ch;
  line-height: 1.6;
}

.page-hero .eyebrow {
  color: var(--gold-light);
}

/* ---------- Deadline ---------- */
.deadline {
  background: var(--brick-bg);
  border-top: 1px solid rgba(140, 63, 54, 0.15);
  border-bottom: 1px solid rgba(140, 63, 54, 0.15);
}

.deadline .wrap {
  display: flex;
  gap: 26px;
  align-items: center;
  padding: 22px 32px;
  flex-wrap: wrap;
}

.deadline-date {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--brick);
  white-space: nowrap;
}

.deadline-text {
  font-size: 15px;
  color: #5a2f28;
  max-width: 64ch;
  flex: 1;
}

.deadline-text strong {
  color: var(--brick);
}

.deadline .btn-ghost {
  border-color: var(--brick);
  color: var(--brick);
}

.deadline .btn-ghost:hover {
  background: var(--brick);
  color: #fff;
}

/* ---------- Sections ---------- */
.section {
  padding: 96px 0;
}

.section-raised {
  background: var(--paper-raised);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  margin-bottom: 48px;
  align-items: end;
}

.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
}

.section-head p {
  color: var(--navy);
  font-size: 16.5px;
  line-height: 1.65;
}

.divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* Media split */
.media-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  background: var(--navy-mid);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.media-frame:hover img {
  transform: scale(1.04);
}

.media-frame .media-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(7, 17, 31, 0.85);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 12px;
}

/* Image carousel */
.carousel {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.7s var(--ease);
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 21 / 9;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-slide .cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 32px;
  background: linear-gradient(transparent, rgba(7, 17, 31, 0.85));
  color: #fff;
}

.carousel-slide .cap h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 4px;
}

.carousel-slide .cap p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.carousel-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

.carousel-btns {
  display: flex;
  gap: 8px;
}

.carousel-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--paper-raised);
  color: var(--navy-deep);
  cursor: pointer;
  font-size: 18px;
  transition: background 0.2s ease, color 0.2s ease;
}

.carousel-btn:hover {
  background: var(--navy-deep);
  color: #fff;
}

/* Why grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.why-card {
  background: var(--paper);
  padding: 30px 26px;
  transition: background 0.25s ease;
}

.why-card:hover {
  background: var(--paper-raised);
}

.why-card .why-num {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--gold-deep);
  margin-bottom: 14px;
}

.why-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14.5px;
  color: var(--navy);
  line-height: 1.6;
}

/* Tiers */
.tiers {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 0.9fr;
  gap: 24px;
}

.tier-card {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  padding: 34px 30px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.tier-card.featured {
  border-color: var(--navy-deep);
  background: var(--navy-deep);
  color: #fff;
}

.tier-card .amount {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--navy-deep);
}

.tier-card.featured .amount {
  color: #fff;
}

.tier-card .tier-label {
  font-size: 14px;
  margin-top: 6px;
  color: var(--navy);
}

.tier-card.featured .tier-label {
  color: rgba(255, 255, 255, 0.7);
}

.tier-card ul {
  margin: 20px 0 0;
  padding-left: 18px;
  font-size: 14.5px;
  color: var(--navy);
  line-height: 1.7;
  list-style: disc;
}

.tier-card.featured ul {
  color: rgba(255, 255, 255, 0.8);
}

.tier-card ul li::marker {
  color: var(--gold);
}

/* Timeline */
.step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.step:last-child {
  border-bottom: 1px solid var(--line);
}

.step-num {
  font-family: var(--serif);
  font-size: 34px;
  color: var(--gold-deep);
  font-weight: 500;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.step p {
  color: var(--navy);
  font-size: 15px;
  max-width: 64ch;
}

/* Funds */
.funds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.fund-card {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  padding: 26px;
  transition: border-color 0.25s ease, transform 0.25s var(--ease);
}

.fund-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.fund-card h4 {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--navy-deep);
}

.fund-card p {
  font-size: 14px;
  color: var(--navy);
  line-height: 1.6;
}

/* Diligence */
.dil-list {
  border-top: 1px solid var(--line);
}

.dil-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.dil-row h4 {
  font-size: 16px;
  color: var(--gold-deep);
  font-weight: 600;
  font-family: var(--sans);
}

.dil-row p {
  font-size: 15px;
  color: var(--navy);
}

/* Opportunities */
.opps {
  background: var(--navy-deep);
  color: #fff;
}

.opps .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

.opps .section-head h2 {
  color: #fff;
}

.opp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.opp-card {
  background: var(--navy-soft);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
}

.opp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.opp-photo {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.opp-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.opp-card:hover .opp-photo img {
  transform: scale(1.06);
}

.opp-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.opp-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 12px;
}

.opp-card h3 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 6px;
}

.opp-loc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  margin-bottom: 18px;
}

.opp-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
}

.opp-stats .n {
  font-family: var(--serif);
  font-size: 21px;
  color: #fff;
  font-weight: 600;
}

.opp-stats .l {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.opp-card .desc {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  flex-grow: 1;
}

.opp-foot {
  margin-top: 18px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 14px;
}

.opp-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.opp-actions .btn {
  font-size: 14px;
  padding: 10px 16px;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.about-copy p {
  font-size: 16.5px;
  color: var(--navy);
  line-height: 1.75;
  margin-bottom: 18px;
}

.mv-card {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  padding: 30px;
  margin-bottom: 20px;
  transition: border-color 0.25s ease;
}

.mv-card:hover {
  border-color: var(--gold);
}

.mv-card h4 {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--gold-deep);
  margin-bottom: 12px;
  font-family: var(--sans);
  font-weight: 600;
}

.mv-card p {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--navy-deep);
  line-height: 1.5;
}

/* Contact */
.contact {
  background: var(--paper-raised);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-copy h2 {
  font-size: clamp(28px, 3.4vw, 38px);
  margin-bottom: 18px;
}

.contact-copy p {
  font-size: 16px;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 14px;
}

.contact-copy ul {
  padding-left: 18px;
  margin: 22px 0 0;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.9;
  list-style: disc;
}

.contact-copy ul li::marker {
  color: var(--gold-deep);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.field input,
.field select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  border-radius: 2px;
}

.field input:focus,
.field select:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

form .btn-primary {
  margin-top: 6px;
  justify-content: center;
  width: 100%;
}

.form-note {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
}

.form-confirm {
  display: none;
  background: #edf3ee;
  border: 1px solid #c8dacb;
  color: var(--sage);
  padding: 16px 18px;
  font-size: 14.5px;
  border-radius: 2px;
}

/* ---------- Associate Investor / PDF ---------- */
.doc-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.doc-block {
  border: 1px solid var(--line);
  background: var(--paper-raised);
  box-shadow: var(--shadow);
}

.doc-meta {
  padding: 28px 30px 22px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: start;
}

.doc-meta .opp-tag {
  margin-bottom: 10px;
}

.doc-meta h2 {
  font-size: 28px;
  margin-bottom: 6px;
}

.doc-meta .loc {
  color: var(--navy);
  font-size: 14.5px;
  margin-bottom: 12px;
}

.doc-meta .blurb {
  color: var(--navy);
  font-size: 15px;
  line-height: 1.65;
  max-width: 58ch;
}

.doc-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  min-width: 180px;
}

.doc-viewer {
  background: #e6eaf0;
  padding: 12px;
}

.doc-viewer iframe {
  width: 100%;
  height: 720px;
  border: 1px solid var(--line);
  background: #fff;
}

.doc-note {
  padding: 14px 30px 18px;
  font-size: 12.5px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  line-height: 1.6;
}

/* Teasers */
.teaser-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.teaser-row a {
  display: block;
  padding: 0;
  text-decoration: none;
  border-right: 1px solid var(--line);
  overflow: hidden;
  background: var(--paper-raised);
  transition: background 0.2s ease;
}

.teaser-row a:last-child {
  border-right: none;
}

.teaser-photo {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.teaser-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.teaser-row a:hover .teaser-photo img {
  transform: scale(1.05);
}

.teaser-copy {
  padding: 24px;
}

.teaser-row .t-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold-deep);
  margin-bottom: 8px;
}

.teaser-row h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.teaser-row p {
  font-size: 14.5px;
  color: var(--navy);
  line-height: 1.55;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.62);
  padding: 60px 0 30px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.foot-brand {
  margin-bottom: 14px;
}

.foot-brand-logo {
  height: 52px;
  width: auto;
  display: block;
  background: transparent;
  padding: 0;
  border-radius: 0;
  /* Footer is dark — use light logo */
  content: none;
}

.foot-grid > div > p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 42ch;
}

.foot-col h5 {
  font-size: 13px;
  color: #fff;
  font-weight: 600;
  margin: 0 0 14px;
}

.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.foot-col a {
  text-decoration: none;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
  transition: color 0.2s ease;
}

.foot-col a:hover {
  color: var(--gold);
}

.foot-legal {
  padding-top: 26px;
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.4);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 26px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.35);
  flex-wrap: wrap;
  gap: 10px;
}

/* Inner pages: solid header by default */
body.has-solid-header .site-header {
  background: rgba(244, 246, 249, 0.96);
  border-bottom-color: var(--line);
}

body.has-solid-header .nav-links a {
  color: var(--navy);
}

body.has-solid-header .menu-toggle span {
  background: var(--navy-deep);
}

/* Responsive */
@media (max-width: 1100px) {
  .nav-links {
    gap: 16px;
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 980px) {
  .hero-content,
  .media-split,
  .tiers,
  .opp-grid,
  .about-grid,
  .contact-grid,
  .section-head,
  .teaser-row {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .funds-grid {
    grid-template-columns: 1fr 1fr;
  }

  .foot-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .doc-meta {
    grid-template-columns: 1fr;
  }

  .doc-links {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .doc-viewer iframe {
    height: 520px;
  }

  .slider-nav {
    position: relative;
    right: auto;
    bottom: auto;
    align-items: flex-start;
    padding: 8px 32px 18px;
    z-index: 3;
  }

  .carousel-slide {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 720px) {
  .wrap {
    padding: 0 20px;
  }

  .brand {
    height: 40px;
    width: 180px;
  }

  .brand-logo {
    height: 40px;
  }

  .nav {
    padding: 14px 20px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 18px 24px 24px;
    gap: 14px;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links a {
    color: var(--navy) !important;
  }

  .nav-links.is-open {
    display: flex;
  }

  .why-grid,
  .funds-grid {
    grid-template-columns: 1fr;
  }

  .dil-row,
  .form-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .step {
    grid-template-columns: 44px 1fr;
    gap: 16px;
  }

  .hero-panel {
    margin-top: 8px;
  }

  .hero-strip {
    padding: 14px 0;
  }

  .hero-strip .wrap {
    gap: 6px 0;
  }

  .hero-strip-item {
    width: 100%;
    padding: 4px 0;
    font-size: 13px;
  }

  .slider-nav {
    padding: 4px 20px 14px;
  }

  .slider-caption {
    font-size: 11px;
  }

  .deadline .wrap {
    padding: 22px 20px;
  }

  .doc-viewer iframe {
    height: 420px;
  }

  .hero-content {
    padding-top: 110px;
    padding-bottom: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
