/* Vilna Gaon SRL — Static Site Stylesheet */

:root {
  --red: #cd2653;
  --dark: #111111;
  --mid: #444444;
  --muted: #777777;
  --light: #f5f5f5;
  --border: #e0e0e0;
  --white: #ffffff;
  --max: 1100px;
  --font: system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}

/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
h3 { font-size: 1.15rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p { margin-bottom: 1rem; color: var(--mid); }
p:last-child { margin-bottom: 0; }
strong { color: var(--dark); }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }
hr { border: none; border-top: 1px solid var(--border); margin: 2.5rem 0; }
ul, ol { padding-left: 1.5rem; color: var(--mid); }
li { margin-bottom: 0.4rem; }

/* ── LAYOUT ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 40px;
  width: auto;
  display: block;
}
.nav-logo span { color: var(--red); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: #a81f42 !important; text-decoration: none !important; }

/* ── HERO ── */
.hero {
  padding: 80px 0 64px;
  background: var(--white);
}
.hero-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 20px;
}
.hero h1 { max-width: 700px; margin-bottom: 20px; }
.hero-lead { font-size: 1.2rem; max-width: 640px; margin-bottom: 36px; color: var(--mid); }
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: #a81f42; text-decoration: none; color: var(--white); }
.btn-outline { border: 2px solid var(--dark); color: var(--dark); }
.btn-outline:hover { background: var(--dark); color: var(--white); text-decoration: none; }

/* ── SECTIONS ── */
section { padding: 64px 0; }
.section-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 8px;
}
.section-title { margin-bottom: 16px; }
.section-lead { font-size: 1.05rem; max-width: 640px; margin-bottom: 40px; }
.bg-light { background: var(--light); }

/* ── STAT BAR ── */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 48px;
}
.stat-item {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number { font-size: 2rem; font-weight: 800; color: var(--dark); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 0.8rem; color: var(--muted); }

/* ── PORTFOLIO GRID ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.portfolio-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  border-top: 3px solid var(--red);
}
.portfolio-card h3 { margin-bottom: 4px; }
.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.badge-equity { background: var(--red); color: var(--white); }
.badge-partnership { background: var(--dark); color: var(--white); }
.badge-platform { background: var(--mid); color: var(--white); }
.card-meta { font-size: 0.8rem; color: var(--muted); margin-bottom: 10px; }
.card-body { font-size: 0.9rem; }
.card-link { font-size: 0.85rem; margin-top: 12px; display: block; }

/* ── THREE-COL ── */
.three-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.feature-card { padding: 28px; background: var(--white); border: 1px solid var(--border); border-radius: 8px; }
.feature-card h3 { margin-bottom: 10px; }

/* ── AGENT GROUPS ── */
.agent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.agent-group {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}
.agent-group-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 12px;
}
.agent-list { list-style: none; padding: 0; }
.agent-list li { font-size: 0.9rem; padding: 6px 0; border-bottom: 1px solid var(--border); color: var(--mid); }
.agent-list li:last-child { border-bottom: none; }
.agent-list strong { color: var(--dark); }

/* ── TABLE ── */
table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 0.9rem; }
th { text-align: left; padding: 10px 14px; background: var(--light); font-weight: 700; border-bottom: 2px solid var(--border); }
td { padding: 10px 14px; border-bottom: 1px solid var(--border); color: var(--mid); }
tr:last-child td { border-bottom: none; }

/* ── PHASE CARDS ── */
.phase-list { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.phase-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 28px; }
.phase-number { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--red); font-weight: 700; margin-bottom: 6px; }
.phase-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.phase-card h4 { margin: 16px 0 6px; color: var(--dark); }

/* ── SELL PAGE ── */
.sell-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.sell-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 24px; }
.sell-card h3 { margin-bottom: 8px; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: #aaa;
  padding: 48px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand { font-size: 1rem; font-weight: 800; color: var(--white); letter-spacing: -0.02em; margin-bottom: 10px; }
.footer-desc { font-size: 0.85rem; line-height: 1.6; }
.footer-col h4 { color: var(--white); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: #aaa; font-size: 0.85rem; text-decoration: none; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}
.footer-bottom a { color: #aaa; }

/* ── BREADCRUMB ── */
.breadcrumb { font-size: 0.8rem; color: var(--muted); padding: 16px 0; }
.breadcrumb a { color: var(--muted); }
.breadcrumb span { margin: 0 6px; }

/* ── PAGE HEADER ── */
.page-header { padding: 56px 0 40px; border-bottom: 1px solid var(--border); margin-bottom: 56px; }
.page-header h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 12px; }
.page-header p { font-size: 1.05rem; max-width: 640px; }

/* ── INLINE CALLOUT ── */
.callout {
  background: var(--light);
  border-left: 4px solid var(--red);
  padding: 20px 24px;
  border-radius: 0 6px 6px 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--dark);
}

/* ── CTA BLOCK ── */
.cta-block {
  background: var(--dark);
  color: var(--white);
  padding: 56px 0;
  text-align: center;
}
.cta-block h2 { color: var(--white); margin-bottom: 12px; }
.cta-block p { color: #ccc; margin-bottom: 28px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .nav-links { display: none; }
  .hero { padding: 48px 0 40px; }
  section { padding: 40px 0; }
}
