/* LAVITT Park venture page — matches LAVITT_Park_Venture_Page.html mockup */

.lavitt-page *,
.lavitt-page *::before,
.lavitt-page *::after {
  box-sizing: border-box;
}

.lavitt-page {
  --navy: #1A2B4A;
  --navy-mid: #2E4A7A;
  --navy-dark: #0F1E35;
  --navy-foot: #0C1724;
  --gold: #C9942A;
  --gold-light: rgba(201, 148, 42, 0.10);
  --gold-mid: rgba(201, 148, 42, 0.22);
  --white: #FFFFFF;
  --off-white: #F7F8FA;
  --border: #E2E6ED;
  --text: #1A2B4A;
  --text-muted: #5A6A82;
  --text-light: #8A9AB4;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  scroll-behavior: smooth;
  color: var(--text);
}

.lavitt-page img {
  max-width: 100%;
  display: block;
}

.lavitt-page a {
  text-decoration: none;
  color: inherit;
}

.lavitt-page .container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.lavitt-page .eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.lavitt-page .eyebrow-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.lavitt-page .eyebrow span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.lavitt-page .section-title {
  font-size: 28px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.25;
}

.lavitt-page .section-sub {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 36px;
}

.lavitt-page .btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.25s;
  border: none;
}

.lavitt-page .btn-primary:hover {
  background: #b07d1e;
}

.lavitt-page .btn-outline-light {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  transition: border-color 0.25s, background 0.25s;
}

.lavitt-page .btn-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.07);
}

/* Breadcrumb */
.lavitt-page .lavitt-breadcrumb {
  background: var(--navy-dark);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lavitt-page .lavitt-breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lavitt-page .lavitt-breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.lavitt-page .lavitt-breadcrumb a:hover {
  color: var(--gold);
}

.lavitt-page .lavitt-breadcrumb span {
  color: rgba(255, 255, 255, 0.25);
  font-size: 12px;
}

.lavitt-page .lavitt-breadcrumb .current {
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
}

/* Hero */
.lavitt-page .venture-hero {
  background: var(--navy);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}

.lavitt-page .venture-hero::before {
  content: '';
  position: absolute;
  right: 60px;
  top: -40px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(201, 148, 42, 0.10);
  pointer-events: none;
}

.lavitt-page .venture-hero::after {
  content: '';
  position: absolute;
  right: 140px;
  top: 40px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(201, 148, 42, 0.06);
  pointer-events: none;
}

.lavitt-page .hero-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.lavitt-page .hero-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201, 148, 42, 0.18);
  border: 1px solid rgba(201, 148, 42, 0.35);
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.lavitt-page .hero-status::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: lavitt-pulse 2.5s ease-in-out infinite;
}

@keyframes lavitt-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.lavitt-page .hero-breadcrumb {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lavitt-page .hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
}

.lavitt-page .hero-breadcrumb a:hover {
  color: var(--gold);
}

.lavitt-page .hero-h1 {
  font-size: 36px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}

.lavitt-page .hero-abbr {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.lavitt-page .hero-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 32px;
}

.lavitt-page .hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.lavitt-page .facts-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-md);
  padding: 24px;
}

.lavitt-page .facts-card h4 {
  color: var(--gold);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.lavitt-page .fact-row {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.lavitt-page .fact-row:last-child {
  border-bottom: none;
}

.lavitt-page .fact-label {
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.lavitt-page .fact-value {
  color: var(--white);
  font-size: 13px;
  line-height: 1.4;
}

/* Stat strip */
.lavitt-page .stat-strip {
  background: var(--navy-dark);
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lavitt-page .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.lavitt-page .stat-item {
  background: var(--navy-dark);
  text-align: center;
  padding: 28px 20px;
}

.lavitt-page .stat-number {
  font-size: 32px;
  font-weight: 600;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.lavitt-page .stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
}

/* Body layout */
.lavitt-page .venture-body {
  padding: 64px 0;
}

.lavitt-page .body-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
}

.lavitt-page .lavitt-sidebar {
  align-self: start;
}

.lavitt-page .sidebar-nav-rail {
  position: sticky;
  top: 88px;
  z-index: 25;
}

.lavitt-page .sidebar-nav h5 {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.lavitt-page .sidebar-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 2px solid var(--border);
}

.lavitt-page .sidebar-nav-list li {
  margin: 0;
  padding: 0;
}

.lavitt-page .sidebar-nav a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  padding: 7px 0 7px 12px;
  margin-left: -2px;
  border-left: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease, padding-left 0.3s ease;
}

.lavitt-page .sidebar-nav a:hover,
.lavitt-page .sidebar-nav a.is-active {
  color: var(--navy);
  border-left-color: var(--gold);
}

.lavitt-page .sidebar-nav a.is-active {
  font-weight: 500;
  padding-left: 14px;
  border-left-width: 3px;
}

.lavitt-page .sidebar-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 32px;
}

.lavitt-page .sidebar-card h5 {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.lavitt-page .sidebar-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Content */
.lavitt-page .content-section {
  margin-bottom: 56px;
}

.lavitt-page .content-section:last-child {
  margin-bottom: 0;
}

.lavitt-page .section-label {
  font-size: 10px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.lavitt-page .content-h2 {
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}

.lavitt-page .content-p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.lavitt-page .content-p:last-child {
  margin-bottom: 0;
}

.lavitt-page .phase-list {
  list-style: none;
}

.lavitt-page .phase-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.lavitt-page .phase-dot {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}

.lavitt-page .phase-item p.phase-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.lavitt-page .phase-item p.phase-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.lavitt-page .opp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 24px;
}

.lavitt-page .opp-cell {
  background: var(--white);
  padding: 20px;
}

.lavitt-page .opp-cell:nth-child(odd) {
  background: var(--off-white);
}

.lavitt-page .opp-icon {
  width: 32px;
  height: 32px;
  background: var(--gold-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.lavitt-page .opp-icon i {
  color: var(--gold);
  font-size: 16px;
}

.lavitt-page .opp-cell h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.lavitt-page .opp-cell p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

.lavitt-page .driver-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.lavitt-page .driver-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.lavitt-page .driver-card-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.lavitt-page .driver-card-icon i {
  color: var(--gold);
  font-size: 20px;
}

.lavitt-page .driver-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.lavitt-page .driver-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

.lavitt-page .driver-stat {
  display: inline-block;
  background: var(--gold-light);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 12px;
  border: 1px solid var(--gold-mid);
}

.lavitt-page .zones-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}

.lavitt-page .zone-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
}

.lavitt-page .zone-card.active {
  border-color: rgba(201, 148, 42, 0.4);
}

.lavitt-page .zone-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}

.lavitt-page .zone-badge.active-badge {
  background: rgba(201, 148, 42, 0.12);
  color: var(--gold);
  border: 1px solid rgba(201, 148, 42, 0.3);
}

.lavitt-page .zone-badge.pipeline-badge {
  background: rgba(90, 106, 130, 0.10);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.lavitt-page .zone-icon {
  width: 44px;
  height: 44px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.lavitt-page .zone-icon i {
  font-size: 22px;
  color: var(--navy-mid);
}

.lavitt-page .zone-card.active .zone-icon {
  background: var(--gold-light);
}

.lavitt-page .zone-card.active .zone-icon i {
  color: var(--gold);
}

.lavitt-page .zone-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.lavitt-page .zone-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

.lavitt-page .revenue-list {
  list-style: none;
  margin-top: 20px;
}

.lavitt-page .revenue-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.lavitt-page .revenue-item:last-child {
  border-bottom: none;
}

.lavitt-page .revenue-num {
  width: 28px;
  height: 28px;
  background: var(--navy);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.lavitt-page .revenue-item h5 {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}

.lavitt-page .revenue-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.lavitt-page .status-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-top: 20px;
}

.lavitt-page .status-table th {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 16px;
  text-align: left;
}

.lavitt-page .status-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.lavitt-page .status-table tr:nth-child(even) td {
  background: var(--off-white);
}

.lavitt-page .status-table td:first-child {
  font-weight: 600;
  color: var(--navy);
  width: 28%;
}

.lavitt-page .status-table td:last-child {
  color: var(--text-muted);
}

.lavitt-page .status-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 2px 9px;
  border-radius: 20px;
}

.lavitt-page .pill-active {
  background: rgba(34, 197, 94, 0.10);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.lavitt-page .pill-progress {
  background: rgba(201, 148, 42, 0.12);
  color: var(--gold);
  border: 1px solid rgba(201, 148, 42, 0.3);
}

.lavitt-page .pill-pipeline {
  background: rgba(90, 106, 130, 0.10);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.lavitt-page .related-section {
  background: var(--off-white);
  padding: 64px 0;
}

.lavitt-page .related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.lavitt-page .related-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.35s ease;
}

.lavitt-page .related-card:hover {
  box-shadow: 0 4px 20px rgba(26, 43, 74, 0.08);
  border-color: rgba(201, 148, 42, 0.3);
}

.lavitt-page .related-card-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.lavitt-page .related-card-icon i {
  color: var(--gold);
  font-size: 18px;
}

.lavitt-page .related-card h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.lavitt-page .related-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

.lavitt-page .related-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--gold);
  font-weight: 500;
  margin-top: 12px;
}

.lavitt-page .cta-banner {
  background: var(--navy-mid);
  padding: 64px 0;
  text-align: center;
}

.lavitt-page .cta-banner h2 {
  font-size: 28px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}

.lavitt-page .cta-banner p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 460px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.lavitt-page .cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll reveals: arifund-motion.css (site-wide) */

@media (max-width: 960px) {
  .lavitt-page .hero-layout { grid-template-columns: 1fr; }
  .lavitt-page .facts-card { display: none; }
  .lavitt-page .body-layout { grid-template-columns: 1fr; }
  .lavitt-page .sidebar-nav-rail { display: none; }
  .lavitt-page .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .lavitt-page .opp-grid { grid-template-columns: 1fr; }
  .lavitt-page .driver-cards { grid-template-columns: 1fr; }
  .lavitt-page .zones-grid { grid-template-columns: 1fr; }
  .lavitt-page .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .lavitt-page .container { padding: 0 20px; }
  .lavitt-page .hero-h1 { font-size: 26px; }
  .lavitt-page .stats-grid { grid-template-columns: 1fr 1fr; }
  .lavitt-page .related-grid { grid-template-columns: 1fr; }
}

/* Full-width page below site header */
body.lavitt-layout .arifund-site-header + main,
body.lavitt-layout main {
  padding: 0;
  max-width: none;
}

body.lavitt-layout .lavitt-page {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.65;
}
