/* ============================================================
   THE WOMAN IN THE ARENA — v3 Stylesheet
   Bold · Graphic · White · Purple
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800;900&family=Cormorant:ital,wght@0,400;0,600;1,400;1,600;1,700&family=DM+Sans:wght@300;400;500&display=swap');

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

:root {
  --bg:         #FFFFFF;
  --bg-soft:    #F7F6F4;
  --ink:        #141412;
  --accent:     #7A28C0;
  --muted:      #888480;
  --rule:       #E4E0D8;

  --condensed:  'Barlow Condensed', Impact, sans-serif;
  --serif:      'Cormorant', Georgia, serif;
  --sans:       'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: color 0.2s; }
p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

.container       { max-width: 860px;  margin: 0 auto; padding: 0 2rem; }
.container--wide { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  padding: 1rem 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--condensed);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav__logo span { color: var(--accent); }

.nav__links { display: flex; gap: 2.5rem; list-style: none; }
.nav__links a {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav__links a:hover,
.nav__links a.active { color: var(--ink); }

.nav__toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.nav__toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--ink); transition: all 0.3s;
}

@media (max-width: 640px) {
  .nav__toggle { display: flex; }
  .nav__links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--rule);
    flex-direction: column; align-items: center;
    padding: 2rem 0; gap: 1.8rem;
  }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 1rem; }
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  padding: 4.5rem 0 0;
  overflow: hidden;
}

.hero__eyebrow {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
  display: block;
}

/* Three-line stacked type treatment */
.hero__the {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: clamp(2.2rem, 6.5vw, 5.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  display: block;
  line-height: 1;
  margin-bottom: 0.1em;
}

.hero__woman {
  font-family: var(--condensed);
  font-weight: 900;
  font-size: clamp(6rem, 22vw, 17rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
}

.hero__rest {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: clamp(2.2rem, 6.5vw, 5.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  display: block;
  line-height: 1;
  margin-top: 0.15em;
}

.hero__divider {
  margin: 3rem 0 0;
  border: none;
  border-top: 1px solid var(--rule);
}

/* ── Quote Section ───────────────────────────────────────── */
.quote-section {
  background: var(--ink);
  padding: 5rem 0 5rem;
  position: relative;
}

.quote__label {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  display: block;
}

/* Opening quotation mark as large graphic element */
.quote__open {
  font-family: var(--serif);
  font-size: clamp(6rem, 14vw, 11rem);
  line-height: 0.7;
  color: var(--accent);
  display: block;
  margin-bottom: -0.5rem;
  opacity: 0.85;
  font-style: normal;
}

.quote__text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.55rem, 3.2vw, 2.6rem);
  line-height: 1.65;
  color: #E8E0D4;
  margin-bottom: 1.5rem;
}

.quote__text em {
  font-style: normal;
  color: #fff;
  font-weight: 600;
}

/* "woman" highlight inside quote */
.hw {
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
}
.quote__text .hw {
  color: #C99EE8;
  font-weight: 600;
}

/* Closing quotation mark */
.quote__close {
  font-family: var(--serif);
  font-size: clamp(6rem, 14vw, 11rem);
  line-height: 0.5;
  color: var(--accent);
  display: block;
  text-align: right;
  margin-top: -1rem;
  opacity: 0.85;
  font-style: normal;
}

.quote__source {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #555;
  border-top: 1px solid #2A2A28;
  padding-top: 1.5rem;
  margin-top: 2rem;
}
.quote__source::before {
  content: '';
  display: inline-block;
  width: 2rem; height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── About Section ───────────────────────────────────────── */
.about-section {
  padding: 6rem 0;
}

.section-tag {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: block;
}

.about-section h2 {
  font-family: var(--condensed);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 2rem;
  max-width: 700px;
}

.about-section p {
  font-size: 1rem;
  color: #3A3832;
  max-width: 600px;
  line-height: 1.8;
}

.about-section .btn { margin-top: 2.5rem; display: inline-block; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  font-family: var(--condensed);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--ink);
  color: var(--bg);
  border: 2px solid var(--ink);
  cursor: pointer;
  transition: all 0.2s;
}
.btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn--outline { background: transparent; color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--bg); }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--rule);
  padding: 2rem 0;
}
.footer__inner {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer__logo {
  font-family: var(--condensed);
  font-weight: 800; font-size: 0.85rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink);
}
.footer__links { display: flex; gap: 2rem; list-style: none; }
.footer__links a {
  font-family: var(--condensed); font-weight: 700;
  font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
}
.footer__links a:hover { color: var(--ink); }
.footer__copy {
  font-size: 0.75rem; color: var(--muted);
  width: 100%; text-align: center;
  margin-top: 0.3rem; letter-spacing: 0.04em;
}

/* ── Manifesto Page ──────────────────────────────────────── */
.manifesto-hero {
  padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 5rem;
}
.manifesto-hero h1 {
  font-family: var(--condensed);
  font-weight: 900;
  font-size: clamp(3.5rem, 10vw, 8rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 0.9;
  margin-bottom: 1.5rem;
}
.manifesto-hero .lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.6;
}
.manifesto-body { padding-bottom: 7rem; }
.manifesto-body p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #333;
  margin-bottom: 1.8rem;
  max-width: 660px;
}
.manifesto-closing {
  font-family: var(--condensed);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid var(--ink);
  line-height: 1.3;
}
.manifesto-closing span { color: var(--accent); }

/* ── Imprint Page ────────────────────────────────────────── */
.page-hero {
  padding: 5rem 0 3rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 3rem;
}
.page-hero h1 {
  font-family: var(--condensed);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 5rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 0.95;
  margin-bottom: 0.8rem;
}
.page-content { padding-bottom: 6rem; }
.page-content h2 {
  font-family: var(--condensed);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 2.5rem 0 0.6rem;
}
.page-content p,
.page-content address {
  font-size: 0.95rem;
  color: #444;
  font-style: normal;
  line-height: 1.8;
}
