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

:root {
  --black: #0d0d0d;
  --dark: #141414;
  --off-white: #f0ece3;
  --cream: #d9d0bf;
  --red: #e8291c;
  --grey: #2a2a2a;
  --mid: #888;
}

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

body {
  background: var(--black);
  color: var(--off-white);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
.font-display { font-family: 'Bebas Neue', sans-serif; }
.font-body { font-family: 'Barlow Condensed', sans-serif; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,41,28,0.2);
}
.nav-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  color: var(--off-white);
}
.nav-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--red);
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 100px 60px 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(232,41,28,0.08) 0%, transparent 70%),
    linear-gradient(180deg, var(--black) 0%, #111 100%);
  z-index: 0;
}
.hero-bg-text {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(8rem, 18vw, 20rem);
  color: rgba(240,236,227,0.03);
  letter-spacing: 0.05em;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 24px;
  border-left: 2px solid var(--red);
  padding-left: 14px;
}
.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 12vw, 11rem);
  line-height: 0.9;
  color: var(--off-white);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.hero-headline span { display: block; }
.hero-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 480px;
}
.hero-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--mid);
  text-transform: uppercase;
}
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 60px;
}
.logo-mark img {
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(232,41,28,0.3)); }
  50% { filter: drop-shadow(0 0 60px rgba(232,41,28,0.6)); }
}

/* ── MANIFESTO ── */
.manifesto {
  background: var(--dark);
  border-top: 1px solid rgba(240,236,227,0.08);
  border-bottom: 1px solid rgba(240,236,227,0.08);
  padding: 100px 60px;
}
.manifesto-inner { max-width: 900px; margin: 0 auto; }
.manifesto-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  color: var(--red);
  margin-bottom: 40px;
}
.manifesto-body p {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--off-white);
  line-height: 1.55;
  margin-bottom: 24px;
}
.manifesto-body p:first-child {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--cream);
  letter-spacing: 0.01em;
}
.manifesto-rule {
  width: 80px;
  height: 2px;
  background: var(--red);
  margin-top: 48px;
}

/* ── MARKS ── */
.marks {
  padding: 100px 60px;
  background: var(--black);
}
.marks-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  color: var(--mid);
  margin-bottom: 60px;
  text-align: center;
}
.marks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.mark-card {
  background: var(--dark);
  border: 1px solid rgba(240,236,227,0.06);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: border-color 0.3s ease;
}
.mark-card:hover { border-color: var(--red); }
.mark-card:hover .mark-symbol svg rect,
.mark-card:hover .mark-symbol svg circle,
.mark-card:hover .mark-symbol svg path { stroke: #ff3d30; }
.mark-card:hover .mark-name { color: var(--off-white); }
.mark-symbol { margin-bottom: 28px; }
.mark-symbol svg { width: 56px; height: 56px; }
.mark-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--cream);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}
.mark-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 0.8rem;
  color: var(--mid);
  line-height: 1.5;
}

/* ── CLOSING ── */
.closing {
  padding: 120px 60px;
  background: var(--dark);
  border-top: 1px solid rgba(232,41,28,0.15);
  text-align: center;
}
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-quote {
  margin-bottom: 60px;
}
.quote-mark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 8rem;
  color: var(--red);
  opacity: 0.4;
  display: block;
  line-height: 0.5;
  margin-bottom: 20px;
}
.closing-quote p {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  color: var(--off-white);
  line-height: 1.3;
  letter-spacing: 0.02em;
}
.closing-tag {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.closing-tag span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--mid);
  text-transform: uppercase;
  border-left: 1px solid rgba(240,236,227,0.2);
  padding-left: 16px;
}
.closing-tag span:first-child { border-left: none; padding-left: 0; }

/* ── FOOTER ── */
.footer {
  padding: 60px;
  background: var(--black);
  border-top: 1px solid rgba(240,236,227,0.08);
  text-align: center;
}
.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  color: var(--off-white);
  margin-bottom: 8px;
}
.footer-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--mid);
  text-transform: uppercase;
  margin-bottom: 32px;
}
.footer-rule {
  width: 40px;
  height: 1px;
  background: var(--red);
  margin: 0 auto 32px;
}
.footer-note {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: rgba(240,236,227,0.2);
  text-transform: uppercase;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 100px 32px 60px; }
  .hero-visual { display: none; }
  .marks-grid { grid-template-columns: repeat(2, 1fr); }
  .manifesto, .marks, .closing, .footer { padding: 72px 32px; }
  .nav { padding: 14px 24px; }
}
@media (max-width: 480px) {
  .marks-grid { grid-template-columns: 1fr; }
  .closing-tag { flex-direction: column; gap: 16px; }
  .closing-tag span { border-left: none; padding-left: 0; border-top: 1px solid rgba(240,236,227,0.2); padding-top: 12px; }
  .closing-tag span:first-child { border-top: none; padding-top: 0; }
}