@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
  --magenta: #E8005A;
  --obsidian: #0D0D0D;
  --white: #FFFFFF;
  --parchment: #F5F0E8;
  --wine: #3D0B1E;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--obsidian);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 4rem;
  background: var(--obsidian);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: var(--white);
  text-decoration: none;
}
.nav-logo .un { color: var(--magenta); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--magenta); }

.btn-nav {
  background: var(--magenta) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.5rem !important;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}
.btn-nav:hover { background: var(--wine) !important; color: var(--white) !important; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--magenta);
  color: var(--white);
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--magenta);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--wine); border-color: var(--wine); transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--magenta);
  border: 2px solid var(--magenta);
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--magenta); color: var(--white); }

.btn-outline-white {
  display: inline-block;
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 0.875rem 2.25rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-outline-white:hover { background: var(--white); color: var(--obsidian); }

/* ── SECTION BASE ── */
.section { padding: 7rem 4rem; }
.section-narrow { padding: 7rem 4rem; max-width: 860px; margin: 0 auto; }
.section-wide { padding: 7rem 4rem; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 1rem;
  display: block;
}

h1, h2, h3 { font-family: var(--font-display); line-height: 1; }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.section-heading-white { color: var(--white); }

.section-body {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--obsidian);
  max-width: 660px;
}

.section-body-white {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.75);
  max-width: 660px;
}

p + p { margin-top: 1.25rem; }

/* ── MAGENTA BAR ── */
.magenta-bar {
  background: var(--magenta);
  padding: 3.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.magenta-bar-text {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  color: var(--white);
  line-height: 1.1;
  flex: 1;
}

/* ── PAGE HEADER (interior pages) ── */
.page-header {
  padding: 10rem 4rem 6rem;
  background: var(--obsidian);
}
.page-header-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 1rem;
  display: block;
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.page-header-sub {
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
}

/* ── FOOTER ── */
footer {
  background: var(--obsidian);
  padding: 5rem 4rem 2.5rem;
  color: var(--white);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}
.footer-brand-name .un { color: var(--magenta); }
.footer-brand-sub {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-nav a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--magenta); }
.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.15em;
  align-self: flex-end;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ── DIVIDERS ── */
.divider { border: none; border-top: 1px solid rgba(0,0,0,0.1); }
.divider-white { border: none; border-top: 1px solid rgba(255,255,255,0.1); }
