:root {
  --cream: #F5F0E8;
  --cream-dark: #EDE8DF;
  --charcoal: #1C1B18;
  --charcoal-mid: #3A3830;
  --gold: #C4923C;
  --gold-light: #D4A84B;
  --warm-gray: #8C7B6B;
  --text-muted: #6B5E52;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'Space Mono', monospace;
}

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

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

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 8rem 6rem 6rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--cream);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196,146,60,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,146,60,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-geo {
  position: absolute;
  border: 1px solid rgba(196,146,60,0.15);
}

.hero-geo-1 {
  right: -80px;
  top: 10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border-color: rgba(196,146,60,0.12);
}

.hero-geo-2 {
  right: 5%;
  bottom: 10%;
  width: 200px;
  height: 200px;
  transform: rotate(45deg);
  background: rgba(196,146,60,0.04);
}

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

.hero-label {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.label-text {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.label-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
}

.headline-line { display: block; }

.headline-italic {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--warm-gray);
  max-width: 520px;
  font-weight: 300;
}

/* CHARACTERS */
.characters {
  padding: 8rem 6rem;
  background: var(--charcoal);
  color: var(--cream);
}

.section-header {
  margin-bottom: 4rem;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--warm-gray);
  font-size: 1rem;
  max-width: 500px;
  line-height: 1.7;
  font-weight: 300;
}

.character-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.character-card {
  background: #222019;
  padding: 0;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}

.character-card:hover { transform: translateY(-4px); }

.card-image {
  height: 260px;
  background: #1A1916;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.card-img-inner { display: flex; align-items: center; justify-content: center; }

/* Glass illustration */
.glass-illustration {
  width: 60px;
  height: 80px;
  border: 2px solid rgba(196,146,60,0.6);
  border-radius: 8px 8px 12px 12px;
  position: relative;
}
.glass-illustration::before {
  content: '';
  position: absolute;
  top: 12px;
  left: -4px;
  right: -4px;
  height: 3px;
  background: rgba(196,146,60,0.7);
  border-radius: 50%;
}

/* Cigar illustration */
.cigar-illustration {
  width: 100px;
  height: 30px;
  background: linear-gradient(90deg, #6B4E2A, #8B6340, #6B4E2A);
  border-radius: 15px;
  transform: rotate(-15deg);
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.cigar-illustration::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, rgba(255,120,60,0.8), rgba(255,80,20,0.4));
  border-radius: 50%;
}

/* Pen illustration */
.pen-illustration {
  width: 10px;
  height: 80px;
  background: linear-gradient(180deg, #1C1B18, #C4923C 20%, #1C1B18);
  border-radius: 3px 3px 8px 8px;
  transform: rotate(30deg);
  box-shadow: 2px 4px 8px rgba(0,0,0,0.3);
}

.card-body {
  padding: 2rem;
}

.card-era {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem;
}

.card-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--cream);
  line-height: 1.2;
}

.card-desc {
  font-size: 0.85rem;
  color: #7A7067;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.card-link {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.card-link:hover { color: var(--gold-light); }

/* MANIFESTO */
.manifesto {
  padding: 8rem 6rem;
  background: var(--cream);
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
}

.manifesto-quote-block {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 3rem;
  border-left: 2px solid var(--gold);
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  position: absolute;
  left: -1.5rem;
  top: -2rem;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--charcoal);
}

.manifesto-body p {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

/* HOW */
.how {
  padding: 8rem 6rem;
  background: var(--cream-dark);
}

.how-header { margin-bottom: 4rem; }

.how-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.step { padding: 0 2rem 0 0; }

.step-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(180deg, var(--gold), transparent);
  margin: 0 1rem;
  min-height: 200px;
}

.step-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* CLOSING */
.closing {
  padding: 10rem 6rem;
  background: var(--charcoal);
  text-align: center;
}

.closing-inner { max-width: 700px; margin: 0 auto; }

.closing-accent {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 3rem;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.closing-sub {
  font-size: 1rem;
  color: var(--warm-gray);
  font-weight: 300;
  line-height: 1.7;
}

/* FOOTER */
.footer {
  padding: 3rem 6rem;
  background: #111009;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.05em;
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--warm-gray);
  font-style: italic;
  margin-top: 0.25rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-link {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.7rem;
  color: #4A4239;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 6rem 2rem 4rem; }
  .characters { padding: 6rem 2rem; }
  .manifesto { padding: 6rem 2rem; }
  .how { padding: 6rem 2rem; }
  .closing { padding: 6rem 2rem; }
  .footer { padding: 3rem 2rem; }

  .character-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .how-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .step-divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    min-height: auto;
    margin: 0 auto;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links { flex-wrap: wrap; }
}