/* ============================================================
   Fides Entrepreneurship — Polsia Light Redesign
   Clean, minimal, generous whitespace, restrained palette
   ============================================================ */

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

:root {
  --bg: #ffffff;
  --bg-subtle: #f8f7f5;
  --surface: #f0efe9;
  --fg: #111111;
  --fg-muted: #6b6b6b;
  --fg-faint: #999999;
  --accent: #1a1a2e;
  --accent-gold: #b89a5a;
  --border: #e4e2dc;
  --border-light: #eeecea;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ─────────────────────────────────────────── */

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
}

a { color: inherit; text-decoration: none; }

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

/* ── Nav ─────────────────────────────────────────────────── */

.site-nav {
  padding: 1.75rem 5rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-left { display: flex; align-items: baseline; gap: 0.6rem; }
.nav-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.72rem;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-right { display: flex; align-items: center; gap: 2.5rem; }
.nav-link {
  font-size: 0.85rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--fg); }
.nav-cta {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--bg);
  background: var(--accent);
  padding: 0.45rem 1.25rem;
  border-radius: 2px;
  letter-spacing: 0.04em;
  transition: background 0.15s;
}
.nav-cta:hover { background: #2a2a4a; }

/* ── Hero ─────────────────────────────────────────────────── */

.hero {
  padding: 5rem 5rem 5rem;
  border-bottom: 1px solid var(--border-light);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  color: var(--fg);
  margin-bottom: 2rem;
  line-height: 1.05;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 46ch;
  line-height: 1.75;
  margin-bottom: 3rem;
}
.hero-cta {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--bg);
  background: var(--accent);
  padding: 0.85rem 2rem;
  border-radius: 2px;
  letter-spacing: 0.04em;
  transition: background 0.15s;
}
.hero-cta:hover { background: #2a2a4a; }

.hero-image-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 3px;
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Mission / What is Fides ──────────────────────────────── */

.mission {
  padding: 7rem 5rem;
  background: var(--bg-subtle);
}
.mission-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.mission-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}
.mission-headline {
  font-size: clamp(2rem, 3vw, 3rem);
  font-style: italic;
  color: var(--fg);
  margin-bottom: 1.75rem;
  line-height: 1.2;
}
.mission-body p {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.mission-image-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 3px;
}
.mission-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Events / What's Coming ──────────────────────────────── */

.events {
  padding: 7rem 5rem;
  border-bottom: 1px solid var(--border-light);
}
.events-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 3rem;
  display: block;
}
.events-headline {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: var(--fg);
  margin-bottom: 4rem;
  max-width: 50ch;
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.event-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.event-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.event-card:hover .event-card-img img { transform: scale(1.03); }
.event-card-body { padding: 1.75rem; }
.event-date {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
}
.event-card h3 {
  font-size: 1.2rem;
  color: var(--fg);
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.event-card p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.7;
}
/* event-card is now an <a> tag — reset link decoration, keep block layout */
a.event-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
a.event-card:hover { text-decoration: none; }

/* Luma calendar CTA beneath the event grid */
.events-luma-cta {
  margin-top: 3rem;
  text-align: center;
}
.events-luma-link {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.75rem 2rem;
  border-radius: 2px;
  letter-spacing: 0.04em;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}
.events-luma-link:hover {
  background: var(--accent);
  color: var(--bg);
}

/* ── Founding Membership ────────────────────────────────── */

.membership {
  padding: 7rem 5rem;
  background: var(--accent);
  color: #ffffff;
}
.membership-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.membership-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}
.membership-headline {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: #ffffff;
  margin-bottom: 1.75rem;
}
.membership-body p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.membership-body ul {
  list-style: none;
  margin: 1.5rem 0 2rem;
}
.membership-body ul li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  padding: 0.5rem 0;
  padding-left: 1.25rem;
  position: relative;
}
.membership-body ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
}
.membership-cta {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  background: #ffffff;
  padding: 0.85rem 2.5rem;
  border-radius: 2px;
  letter-spacing: 0.04em;
  transition: opacity 0.15s;
}
.membership-cta:hover { opacity: 0.9; }
.membership-price-block {
  text-align: center;
}
.price-tag {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.price-period {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
.price-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 28ch;
  margin: 0 auto 2rem;
}
.spots-badge {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  border: 1px solid rgba(184,154,90,0.4);
  padding: 0.35rem 1rem;
  border-radius: 20px;
}
.fiscal-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 1rem;
  line-height: 1.6;
}

/* ── Closing ──────────────────────────────────────────────── */

.closing {
  padding: 7rem 5rem;
  text-align: center;
}
.closing-inner { max-width: 600px; margin: 0 auto; }
.closing-headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--fg);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.closing-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 3rem;
}
.closing-rule {
  width: 40px;
  height: 1px;
  background: var(--accent-gold);
  margin: 0 auto 2rem;
}
.closing-sub {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

/* ── Footer ─────────────────────────────────────────────── */

.site-footer {
  padding: 3rem 5rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand { display: flex; align-items: baseline; gap: 0.5rem; }
.footer-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fg);
}
.footer-sub {
  font-size: 0.72rem;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
}
.footer-tagline {
  font-size: 0.82rem;
  color: var(--fg-faint);
  font-style: italic;
}

/* ── Responsive ─────────────────────────────────────────── */

@media (max-width: 900px) {
  .site-nav { padding: 1.25rem 2rem; }
  .nav-right .nav-link { display: none; }
  .hero { padding: 4rem 2rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-image-wrap { order: -1; aspect-ratio: 16/9; }
  .mission { padding: 5rem 2rem; }
  .mission-inner { grid-template-columns: 1fr; gap: 3rem; }
  .mission-image-wrap { order: -1; aspect-ratio: 16/9; }
  .events { padding: 5rem 2rem; }
  .events-grid { grid-template-columns: 1fr; }
  .membership { padding: 5rem 2rem; }
  .membership-inner { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .price-tag { font-size: 4rem; }
  .closing { padding: 5rem 2rem; }
  .site-footer { padding: 2.5rem 2rem; }
  .footer-inner { flex-direction: column; gap: 0.75rem; text-align: center; }
}