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

:root {
  --yellow: #FFD600;
  --black: #1a1a1a;
  --cream: #F5F0E8;
  --white: #ffffff;
  --gray-100: #f4f4f4;
  --gray-300: #d4d4d4;
  --gray-500: #888888;
  --gray-700: #444444;
}

html { scroll-behavior: smooth; }

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.02em; }

/* ── LAYOUT UTILITIES ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 214, 0, 0.12);
}
.nav-inner { display: flex; align-items: center; gap: 16px; }
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--yellow);
  letter-spacing: 0.08em;
  line-height: 1;
}
.nav-tagline {
  font-size: 12px;
  color: var(--gray-500);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--yellow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -2px; right: -2px; bottom: 50%; left: -2px;
  background: var(--black);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}
.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 8vw, 128px);
  line-height: 0.9;
  color: var(--black);
  letter-spacing: -0.01em;
}
.hero-sub {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  max-width: 420px;
  font-weight: 500;
}
.hero-mug-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mug-display {
  background: var(--black);
  border-radius: 24px;
  padding: 40px 32px 28px;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.25);
}
.mug-svg-wrap {
  width: 100%;
}
.mug-svg { width: 100%; height: auto; }
.mug-label {
  margin-top: 16px;
  text-align: center;
  font-size: 11px;
  color: #888;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1160px;
  margin: 48px auto 0;
  width: 100%;
  padding-bottom: 40px;
}
.stat {
  display: flex;
  flex-direction: column;
  padding: 0 40px 0 0;
}
.stat:first-child { padding-left: 0; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--black);
  line-height: 1;
}
.stat-desc {
  font-size: 11px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.stat-div {
  width: 1px;
  height: 48px;
  background: rgba(0,0,0,0.15);
  margin-right: 40px;
}

/* ── SECTION LABELS ── */
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-500);
  margin-bottom: 48px;
}

/* ── MANIFESTO ── */
.manifesto {
  background: var(--black);
  padding: 120px 48px;
}
.manifesto-inner { max-width: 860px; margin: 0 auto; }
.manifesto-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--yellow);
  margin-bottom: 24px;
}
.manifesto-statement {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  color: var(--white);
  margin-bottom: 32px;
}
.manifesto-body {
  font-size: 17px;
  line-height: 1.7;
  color: #aaa;
  max-width: 600px;
}

/* ── COLLECTIONS ── */
.collections {
  background: #111;
  padding: 120px 48px;
}
.collections-inner { max-width: 1160px; margin: 0 auto; }
.persona-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.persona {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 20px;
  padding: 32px 28px;
}
.persona-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}
.persona-icon svg { width: 100%; height: 100%; }
.persona-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.persona-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #777;
}

/* ── HOW IT WORKS ── */
.how {
  background: var(--cream);
  padding: 120px 48px;
}
.how-inner { max-width: 1160px; margin: 0 auto; }
.how .section-label { color: #888; }
.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.step { position: relative; }
.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  color: var(--yellow);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}
.step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: var(--black);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.step-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

/* ── CLOSING ── */
.closing {
  background: var(--black);
  padding: 120px 48px;
  border-top: 1px solid #2a2a2a;
}
.closing-inner { max-width: 860px; margin: 0 auto; }
.closing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 6vw, 96px);
  line-height: 0.9;
  color: var(--yellow);
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 17px;
  color: #888;
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 56px;
}
.closing-guards {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.guard {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #666;
}
.guard-icon { width: 20px; height: 20px; flex-shrink: 0; }
.guard-icon svg { width: 100%; height: 100%; }

/* ── FOOTER ── */
.footer {
  background: var(--black);
  border-top: 1px solid #2a2a2a;
  padding: 40px 48px;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--yellow);
  display: block;
  margin-bottom: 8px;
}
.footer-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}
.footer-note {
  font-size: 12px;
  color: #444;
  line-height: 1.6;
  text-align: right;
  max-width: 280px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 32px; }
  .hero-mug-block { order: -1; }
  .mug-display { max-width: 260px; margin: 0 auto; }
  .hero-stats { flex-wrap: wrap; }
  .stat-div { display: none; }
  .stat { padding: 0 24px 24px 0; }
  .persona-grid { grid-template-columns: 1fr 1fr; }
  .step-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 100px 24px 0; }
  .manifesto, .collections, .how, .closing { padding: 80px 24px; }
  .footer { padding: 32px 24px; }
  .persona-grid { grid-template-columns: 1fr; }
  .step-grid { grid-template-columns: 1fr; }
  .closing-guards { flex-direction: column; gap: 20px; }
  .footer-inner { flex-direction: column; }
  .footer-note { text-align: left; }
}