:root {
  --cream: #FBF5EA;
  --cream-dark: #F0E8D8;
  --amber: #C4713A;
  --amber-light: #E8A96A;
  --teal: #1A535C;
  --teal-light: #2D6A6A;
  --charcoal: #2D2926;
  --warm-gray: #6B5E56;
  --white: #FFFFFF;
}

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

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
}

/* NAV */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid rgba(196, 113, 58, 0.2);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.nav-logo-mark {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
}
.nav-tagline {
  font-size: 13px;
  color: var(--warm-gray);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--warm-gray);
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-link:hover {
  color: var(--charcoal);
}
.nav-buy-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: var(--amber);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 100px;
  transition: background 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}
.nav-buy-btn:hover {
  background: #b5632f;
  transform: translateY(-1px);
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 40px 90px;
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.hero-blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #F5C87A, transparent 70%);
  top: -150px;
  right: -100px;
}
.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #C4713A, transparent 70%);
  bottom: -100px;
  left: 10%;
  opacity: 0.15;
}
.hero-blob-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #1A535C, transparent 70%);
  top: 20%;
  left: 40%;
  opacity: 0.1;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 19px;
  color: var(--warm-gray);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: var(--cream);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #6EE7B7;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-cta-group {
  margin-bottom: 32px;
}
.hero-buy-btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--amber);
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 100px;
  box-shadow: 0 4px 24px rgba(196, 113, 58, 0.3);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.hero-buy-btn:hover {
  background: #b5632f;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(196, 113, 58, 0.4);
}

/* SECTION LABEL */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

/* CHARACTERS */
.characters {
  padding: 80px 40px;
  background: var(--cream-dark);
}
.characters-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.characters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.char-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(196, 113, 58, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.char-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(196, 113, 58, 0.12);
}
.char-orb {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-bottom: 16px;
}
.char-card-dudu .char-orb { background: linear-gradient(135deg, #F5C87A, #C4713A); }
.char-card-fofefa .char-orb { background: linear-gradient(135deg, #7FB3D5, #1A535C); }
.char-card-poro .char-orb { background: linear-gradient(135deg, #B5D99C, #4A7C59); }
.char-card-bunny .char-orb { background: linear-gradient(135deg, #D4A0E8, #8B5E9A); }
.char-card-voldemar .char-orb { background: linear-gradient(135deg, #E8B87A, #8B6914); }
.char-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.char-desc {
  font-size: 13px;
  color: var(--warm-gray);
  line-height: 1.5;
}

/* FEATURES */
.features {
  padding: 90px 40px;
  background: var(--cream);
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.features-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
  margin: 16px 0 56px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.feat-card {
  background: var(--cream-dark);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(196, 113, 58, 0.1);
}
.feat-card-values {
  grid-column: span 2;
}
.feat-icon {
  margin-bottom: 20px;
}
.feat-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--charcoal);
}
.feat-body {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* WORLD */
.world {
  padding: 90px 40px;
  background: var(--teal);
  color: var(--cream);
}
.world-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.world-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin: 16px 0 28px;
  color: var(--cream);
}
.world-body {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(251, 245, 234, 0.8);
  margin-bottom: 20px;
}
.world-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--amber-light);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: rgba(251, 245, 234, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* CLOSING */
.closing {
  padding: 100px 40px;
  background: var(--cream);
  text-align: center;
}
.closing-inner {
  max-width: 720px;
  margin: 0 auto;
}
.closing-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.5;
  margin-bottom: 16px;
}
.closing-attr {
  font-size: 13px;
  color: var(--warm-gray);
  margin-bottom: 48px;
}
.closing-stripe {
  width: 60px;
  height: 4px;
  background: var(--amber);
  margin: 0 auto 48px;
  border-radius: 2px;
}
.closing-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 17px;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* FOOTER */
.footer {
  padding: 48px 40px;
  border-top: 1px solid rgba(196, 113, 58, 0.15);
  background: var(--cream-dark);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.footer-logo-mark {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--amber);
}
.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--charcoal);
}
.footer-desc {
  font-size: 14px;
  color: var(--warm-gray);
  margin-bottom: 6px;
}
.footer-small {
  font-size: 12px;
  color: rgba(107, 94, 86, 0.6);
}

/* MOBILE */
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav-tagline { display: none; }
  .hero { padding: 60px 20px 60px; min-height: auto; }
  .hero-headline { font-size: 40px; }
  .hero-sub { font-size: 16px; }
  .characters { padding: 60px 20px; }
  .features { padding: 60px 20px; }
  .features-heading { font-size: 32px; }
  .feat-card-values { grid-column: span 1; }
  .world { padding: 60px 20px; }
  .world-inner { grid-template-columns: 1fr; gap: 48px; }
  .world-stats { grid-template-columns: 1fr 1fr; }
  .closing { padding: 60px 20px; }
  .characters-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .characters-grid { grid-template-columns: 1fr; }
  .stat-num { font-size: 40px; }
}