:root {
  --primary-color: #8B6914;
  --secondary-color: #6A4E0E;
  --accent-color: #C49A2A;
  --light-color: #FAF5E8;
  --dark-color: #1C1508;
  --gradient-primary: linear-gradient(135deg, #8B6914 0%, #C49A2A 100%);
  --hover-color: #725510;
  --background-color: #FDFCF7;
  --text-color: #2A1F08;
  --border-color: rgba(139, 105, 20, 0.18);
  --divider-color: rgba(106, 78, 14, 0.15);
  --shadow-color: rgba(139, 105, 20, 0.11);
  --highlight-color: #C04040;
  --main-font: 'Libre Baskerville', serif;
  --alt-font: 'Mulish', sans-serif;
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  background: white;
  border-radius: 6px;
  border: 1px solid var(--border-color);
}
.hamburger .line {
  width: 24px;
  height: 2px;
  background: var(--primary-color);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 1px;
}
#menu-toggle { display: none; }
#menu-toggle:checked ~ .mobile-nav { max-height: 350px; opacity: 1; }
.mobile-nav {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: white;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  border-bottom: 2px solid var(--border-color);
  z-index: 1000;
}
.mobile-nav ul { padding: 2rem; margin: 0; list-style: none; }
.mobile-nav li { margin: 0.8rem 0; }
.mobile-nav a {
  display: block;
  padding: 1rem 0;
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid transparent;
}
.mobile-nav a:hover {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

/* Feature Cards — split: icon left + vertical divider */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.6rem;
  margin: 2.5rem 0;
}

.feature-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 3px 16px var(--shadow-color);
  transition: all 0.32s ease;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.feature-card:hover {
  box-shadow: 0 12px 36px var(--shadow-color);
  transform: scale(1.02);
  border-color: var(--accent-color);
}

.feature-icon-col {
  background: var(--light-color);
  width: 76px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border-right: 2px solid var(--border-color);
  transition: all 0.32s ease;
  padding: 1.4rem 0;
}

.feature-card:hover .feature-icon-col {
  background: var(--gradient-primary);
  border-right-color: transparent;
}

.feature-card:hover .feature-icon-col .feature-icon {
  filter: grayscale(1) brightness(10);
}

.feature-icon {
  transition: all 0.32s ease;
  display: block;
}

.feature-text-col {
  padding: 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  flex: 1;
}

.feature-text-col h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--main-font);
  margin: 0;
}

.feature-text-col p {
  font-size: 0.92rem;
  color: var(--text-color);
  line-height: 1.6;
  margin: 0;
}

/* Myth vs Fact Block */
.myth-block {
  width: 100%;
  background: var(--dark-color);
  padding: 4.5rem 0;
  color: white;
}

.myth-block h2 {
  color: white;
  text-align: center;
  margin-bottom: 0.7rem;
}

.myth-block .subtitle {
  color: rgba(255,255,255,0.65);
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1rem;
}

.myth-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.myth-card {
  border-radius: 12px;
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  position: relative;
  overflow: hidden;
}

.myth-card.is-myth {
  background: rgba(192, 64, 64, 0.15);
  border: 1px solid rgba(192, 64, 64, 0.35);
}

.myth-card.is-fact {
  background: rgba(139, 105, 20, 0.18);
  border: 1px solid rgba(196, 154, 42, 0.4);
}

.myth-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  align-self: flex-start;
}

.myth-badge.badge-myth {
  background: rgba(192, 64, 64, 0.3);
  color: #FF9090;
}

.myth-badge.badge-fact {
  background: rgba(196, 154, 42, 0.3);
  color: #F5CC6A;
}

.myth-card .myth-text {
  font-size: 0.96rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  font-weight: 600;
}

.myth-card .myth-explain {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.55;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.2rem;
  margin: 2.5rem 0;
}

.testimonial {
  background: white;
  border-radius: 14px;
  padding: 2rem 1.8rem;
  box-shadow: 0 4px 18px var(--shadow-color);
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px var(--shadow-color);
  border-color: var(--accent-color);
}

.testimonial::after {
  content: '❝';
  position: absolute;
  bottom: 14px;
  right: 18px;
  font-size: 3.5rem;
  color: var(--primary-color);
  opacity: 0.08;
  line-height: 1;
}

/* FAQ */
.faq-item {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin: 1.2rem 0;
  padding: 2rem;
  box-shadow: 0 3px 14px var(--shadow-color);
  transition: all 0.3s ease;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.faq-item:hover {
  border-color: var(--accent-color);
  box-shadow: 0 6px 22px var(--shadow-color);
}

.faq-bullet {
  width: 32px;
  height: 32px;
  background: var(--gradient-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.faq-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.7rem;
  font-family: var(--main-font);
}

.faq-content p {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* Forms */
input, textarea {
  transition: all 0.3s ease;
  font-family: var(--alt-font);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.1rem;
  background-color: white;
  color: var(--text-color);
  font-size: 1rem;
  width: 100%;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(139, 105, 20, 0.1);
}

/* Button */
button, .btn {
  transition: all 0.3s ease;
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 1.2rem 2.6rem;
  border-radius: 8px;
  font-weight: 700;
  font-family: var(--alt-font);
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 3px 14px rgba(139, 105, 20, 0.3);
}
button:hover, .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(139, 105, 20, 0.45);
}

/* Typography */
html { scroll-behavior: smooth; }
body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background: var(--background-color);
  line-height: 1.7;
  overflow-x: hidden;
}
* { box-sizing: border-box; }

.container {
  max-width: 1150px;
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem;
}

h1, h2, h3 {
  font-family: var(--main-font);
  font-weight: 700;
  color: var(--primary-color);
}

/* Header & Footer */
header {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  padding: 1.2rem 0;
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 18px var(--shadow-color);
}
footer {
  background: var(--dark-color);
  color: var(--light-color);
  padding: 3.5rem 0 1.5rem;
}

/* Pattern BG */
.pattern-bg {
  background-image:
    radial-gradient(circle at 15% 85%, rgba(139, 105, 20, 0.07) 0%, transparent 40%),
    radial-gradient(circle at 85% 15%, rgba(196, 154, 42, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(139, 105, 20, 0.04) 0%, transparent 60%);
}

/* Contact */
.contact-inner { width: 80%; margin: 0 auto; }

/* Responsive */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .navigation { display: none; }
  .mobile-nav { display: block; }
  .hero h1 { font-size: 2.2rem; line-height: 1.2; padding: 0 1rem; }
  .container { padding: 0 1rem; max-width: 100vw; }
  .features-grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .myth-grid { grid-template-columns: 1fr; }
  .contact-inner { width: 100%; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; padding: 0 0.5rem; }
  .hero p { font-size: 1rem; padding: 0 0.5rem; }
  .container { padding: 0 0.5rem; }
  .feature-icon-col { width: 60px; font-size: 1.6rem; }
  .faq-item { flex-direction: column; gap: 0.8rem; }
  input, textarea { font-size: 16px; padding: 1rem; }
  .btn { padding: 1rem 2rem; font-size: 0.95rem; }
}