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

:root {
  --cream: #FFF9F2;
  --cream-dark: #F3E6D6;
  --gold: #C9920A;
  --gold-light: #E8B84A;
  --brown: #5C3A21;
  --chocolate: #2A1810;
  --white: #FFFFFF;
  --text: #2A1810;
  --text-light: #5C4636;
  --muted: #8B7355;
  --shadow: 0 8px 32px rgba(42, 24, 16, 0.1);
  --radius: 16px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--chocolate);
}
a { text-decoration: none; color: inherit; transition: 0.2s ease; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 249, 242, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(92, 58, 33, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brown);
}
.logo-img { width: 32px; height: 32px; border-radius: 6px; }
.logo-text span { color: var(--gold); font-weight: 400; }
.logo-sub {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: -2px;
}
.nav { display: flex; align-items: center; gap: 20px; }
.nav a { font-size: 0.9rem; font-weight: 500; color: var(--text-light); }
.nav a:hover { color: var(--brown); }
.btn-nav {
  background: var(--brown) !important;
  color: #fff !important;
  padding: 9px 16px !important;
  border-radius: 50px;
  font-weight: 600 !important;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--brown);
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: 0.2s ease;
}
.btn-primary {
  background: linear-gradient(135deg, #D4A017, #B8860B);
  color: var(--chocolate);
  box-shadow: 0 4px 18px rgba(184, 134, 11, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(184, 134, 11, 0.45);
}
.btn-secondary {
  background: transparent;
  color: var(--brown);
  border: 2px solid var(--brown);
}
.btn-secondary:hover { background: var(--brown); color: #fff; }
.btn-lg { padding: 17px 34px; font-size: 1.08rem; }
.btn-white {
  background: #fff;
  color: var(--chocolate);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.btn-white:hover { transform: translateY(-2px); }

/* Hero */
.hero {
  padding: 120px 0 80px;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(201,146,10,0.14) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(232,160,120,0.1) 0%, transparent 45%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  text-align: center;
}
.hero-tag {
  display: inline-block;
  background: rgba(201,146,10,0.16);
  color: var(--brown);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  margin-bottom: 18px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 span { color: var(--gold); }
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 32px;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Sections */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-badge {
  display: inline-block;
  background: rgba(201,146,10,0.16);
  color: var(--brown);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  margin-bottom: 12px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

/* Why */
.section-why { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid rgba(92,58,33,0.07);
  transition: 0.2s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(201,146,10,0.25);
}
.why-icon { font-size: 2rem; margin-bottom: 12px; }
.why-card h3 {
  font-size: 1.15rem;
  color: var(--brown);
  margin-bottom: 8px;
}
.why-card p { font-size: 0.95rem; color: var(--text-light); }

/* Channels */
.section-channels {
  background: linear-gradient(165deg, #3D2A1A 0%, #1F120C 100%);
  color: #fff;
}
.section-channels .section-badge {
  background: rgba(255,255,255,0.12);
  color: var(--gold-light);
}
.section-channels .section-header h2,
.section-channels .section-desc { color: #fff; }
.section-channels .section-desc { opacity: 0.8; }

.channels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 800px;
  margin: 0 auto;
}
.channel-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 32px 28px;
  text-align: center;
}
.channel-card:hover { background: rgba(255,255,255,0.12); }
.channel-icon { font-size: 2.5rem; margin-bottom: 14px; }
.channel-card h3 { color: #fff; font-size: 1.3rem; margin-bottom: 10px; }
.channel-card p { color: rgba(255,255,255,0.75); font-size: 0.98rem; }

/* Proof / fame */
.section-proof { background: var(--cream); }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.proof-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border-radius: 14px;
  padding: 22px 20px;
  border: 1px solid rgba(92,58,33,0.07);
  box-shadow: 0 2px 12px rgba(42,24,16,0.05);
}
.proof-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(201,146,10,0.15);
  color: var(--brown);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.proof-item h3 {
  font-size: 1.05rem;
  color: var(--brown);
  margin-bottom: 4px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}
.proof-item p { font-size: 0.92rem; color: var(--text-light); margin: 0; }

/* Benefits list */
.section-benefits { background: var(--white); }
.benefits-list {
  max-width: 640px;
  margin: 0 auto;
  list-style: none;
}
.benefits-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(92,58,33,0.08);
  font-size: 1.02rem;
  color: var(--text-light);
}
.benefits-list li:last-child { border-bottom: none; }
.benefits-list .check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(47,107,47,0.12);
  color: #2F6B2F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.benefits-list strong { color: var(--brown); }

/* CTA final */
.section-cta {
  background: linear-gradient(160deg, var(--brown) 0%, var(--chocolate) 100%);
  text-align: center;
  padding: 90px 0;
}
.section-cta h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 14px;
}
.section-cta p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 28px;
}
.cta-note {
  margin-top: 20px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
}

/* Footer */
.footer {
  background: var(--chocolate);
  color: rgba(255,255,255,0.75);
  padding: 40px 0 24px;
  text-align: center;
}
.footer a { color: var(--gold-light); font-weight: 500; }
.footer a:hover { text-decoration: underline; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 16px 0;
  font-size: 0.9rem;
}
.footer-copy { font-size: 0.82rem; opacity: 0.55; margin-top: 16px; }

@media (max-width: 800px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--cream);
    padding: 20px;
    gap: 12px;
    box-shadow: var(--shadow);
  }
  .menu-toggle { display: block; }
  .why-grid { grid-template-columns: 1fr; }
  .channels-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 300px; }
}
