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

/* ── TOKENS ── */
:root {
  --pitch:    #0a1a0d;
  --pitch-2:  #0f2413;
  --pitch-3:  #152e18;
  --lime:     #C8E63A;
  --lime-dim: #a0b82e;
  --white:    #f0f0e8;
  --muted:    #6b7c6e;
  --accent:   #C8E63A; /* overridden per-page */
}

body {
  background: var(--pitch);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 26, 13, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 230, 58, 0.1);
  padding: 0 48px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--lime);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-links::-webkit-scrollbar { display: none; }

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 2px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--white); background: rgba(200,230,58,0.07); }
.nav-links a.active { color: var(--accent); background: rgba(200,230,58,0.07); }

/* ── SECTION HERO ── */
.section-hero {
  padding: 72px 48px 60px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}

.section-hero::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 65%);
  opacity: 0.07;
  pointer-events: none;
}

.section-hero-inner { max-width: 820px; position: relative; z-index: 1; }

.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 10vw, 110px);
  line-height: 0.9;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}

.section-title span { color: var(--accent); }

.section-intro {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: #b0c4b3;
  max-width: 620px;
}

/* ── CARDS SECTION ── */
.cards-section {
  padding: 56px 48px 80px;
  flex: 1;
}

.cards-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: var(--pitch-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.card-photo-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--pitch-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
}

.card-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.card-tag {
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.45rem;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: 0.04em;
}

.card-text {
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.7;
  color: #9fb8a2;
  flex: 1;
}

/* ── PASSION GRID (index.html) ── */
.passions {
  padding: 64px 48px 80px;
}

.passions-header {
  max-width: 1100px;
  margin: 0 auto 36px;
}

.passions-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 10px;
  display: block;
}

.passions-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  color: var(--white);
  letter-spacing: 0.02em;
}

.passion-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.passion-card {
  background: var(--pitch-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-top: 3px solid var(--card-accent, var(--lime));
  border-radius: 2px;
  padding: 26px 22px 22px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.18s ease, background 0.18s ease;
}

.passion-card:hover {
  transform: translateY(-5px);
  background: var(--pitch-3);
}

.passion-icon { font-size: 1.9rem; line-height: 1; }

.passion-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  color: var(--white);
}

.passion-desc {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--muted);
  flex: 1;
}

.passion-arrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--card-accent, var(--lime));
  margin-top: 4px;
}

/* ── FOOTER ── */
.footer-wrap {
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.1em;
  color: var(--lime);
}

.footer-links {
  display: flex;
  gap: 22px;
  list-style: none;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.18s;
}

.footer-links a:hover { color: var(--lime); }

.footer-copy { color: var(--muted); font-size: 0.72rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .cards-inner,
  .passion-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav { padding: 0 20px; }

  .section-hero,
  .cards-section,
  .passions { padding-left: 20px; padding-right: 20px; }

  .section-hero { padding-top: 48px; padding-bottom: 40px; }

  .cards-inner,
  .passion-grid { grid-template-columns: 1fr; }

  .footer { flex-direction: column; align-items: center; text-align: center; padding: 24px 20px; }
}
