/* palette: mahogany-amber */
:root {
  --primary-color: #4A1C10;
  --secondary-color: #6B2A18;
  --accent-color: #D4900A;
  --background-color: #FDF0EC;
  --dark-color: #111111;
  --text-color: #333333;
  --border-color: rgba(0,0,0,0.12);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.16);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --main-font: 'Lora', serif;
  --alt-font: 'Poppins', sans-serif;
}

/* Base Reset & Mobile-First Setup */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--alt-font);
  background-color: var(--background-color);
  color: var(--text-color);
  font-size: clamp(14px, 1.6vw, 17px);
  overflow-x: hidden;
}

h1, h2, h3, h4, .font-serif {
  font-family: var(--main-font);
}

h1 {
  font-size: clamp(32px, 6vw, 64px);
  line-height: 1.15;
}

h2 {
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1.25;
  color: var(--primary-color);
}

h3 {
  font-size: clamp(18px, 2.8vw, 28px);
  color: var(--secondary-color);
}

p {
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* SOFT-ORGANIC Preset Rules (Copied Literally & Expanded) */
section {
  padding: 56px 16px;
  margin: 0;
}

@media(min-width: 1024px) {
  section {
    padding: 72px 24px;
  }
}

body {
  line-height: 1.85;
}

.card {
  border-radius: 24px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05), 0 10px 40px rgba(0,0,0,0.08);
  background-color: #ffffff;
  transition: transform 0.25s, box-shadow 0.25s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.08), 0 16px 48px rgba(0,0,0,0.12);
}

.btn {
  border-radius: 9999px;
  padding: 14px 32px;
  font-weight: 600;
  text-align: center;
  display: inline-block;
  min-height: 44px;
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-filled {
  background-color: var(--accent-color);
  color: #ffffff !important;
}

.btn-outline {
  border: 2px solid var(--primary-color);
  color: var(--primary-color) !important;
}

.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
}

/* Header & Mobile Navigation (CSS-Only Burger) */
header {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  z-index: 1000;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
}

header .logo img {
  height: 40px;
  width: auto;
}

.burger-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 1010;
}

.burger-btn .bar {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #ffffff;
  box-shadow: var(--shadow-md);
  padding: 24px;
  z-index: 999;
}

.site-nav ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}

.site-nav a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.site-nav a:hover {
  color: var(--accent-color);
}

#menu-toggle:checked ~ .site-nav {
  display: block;
}

#menu-toggle:checked ~ .burger-btn .bar:first-child {
  transform: translateY(8.5px) rotate(45deg);
}

#menu-toggle:checked ~ .burger-btn .bar:nth-child(2) {
  opacity: 0;
}

#menu-toggle:checked ~ .burger-btn .bar:last-child {
  transform: translateY(-8.5px) rotate(-45deg);
}

@media (min-width: 768px) {
  .burger-btn {
    display: none;
  }
  .site-nav {
    display: flex !important;
    position: static;
    box-shadow: none;
    padding: 0;
  }
  .site-nav ul {
    flex-direction: row;
    gap: 24px;
  }
}

/* Hero Section (oversized-word variant) */
.hero-section {
  min-height: 87vh;
  background-color: var(--background-color);
  padding: 80px 16px;
}

.oversized-bg-word {
  font-size: clamp(5rem, 18vw, 15rem);
  opacity: 0.04;
  font-weight: 900;
  position: absolute;
  z-index: 0;
  white-space: nowrap;
  overflow: hidden;
  user-select: none;
  pointer-events: none;
  font-family: var(--main-font);
  color: var(--primary-color);
}

.hero-title {
  color: var(--primary-color);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  max-width: 650px;
  color: var(--text-color);
  font-size: clamp(16px, 2vw, 20px);
}

/* Scroll-Reveal Animation */
@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  animation: reveal-up linear both;
  animation-timeline: view();
  animation-range: entry 0% entry 30%;
}

/* Section 1: Expert Quote */
.expert-quote-section {
  min-height: 320px;
  background-image: url('./img/bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #ffffff;
}

.bg-overlay {
  background-color: rgba(74, 28, 16, 0.85); /* primary-color with opacity */
}

.quote-icon {
  font-size: 6rem;
  color: var(--accent-color);
  line-height: 1;
  display: block;
  opacity: 0.6;
}

.expert-quote-text {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  max-width: 820px;
}

/* Section 2: Numbered Facts */
.numbered-facts-section {
  min-height: 440px;
  background-color: #ffffff;
}

.fact-card {
  border-top: 4px solid var(--accent-color);
  min-height: 260px;
}

.fact-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--accent-color);
  opacity: 0.25;
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}

/* Section 3: Myth vs Fact */
.myth-fact-section {
  min-height: 440px;
  background-color: var(--background-color);
}

.myth-box {
  background-color: rgba(239, 68, 68, 0.08);
  border-left: 4px solid #ef4444;
  border-radius: 8px;
}

.fact-box {
  background-color: rgba(34, 197, 94, 0.08);
  border-left: 4px solid #22c55e;
  border-radius: 8px;
}

.status-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
}

.status-myth {
  background-color: #ef4444;
  color: #ffffff;
}

.status-fact {
  background-color: #22c55e;
  color: #ffffff;
}

/* Section 4: Feature Spotlight */
.spotlight-section {
  min-height: 600px;
  background-color: #ffffff;
}

.spotlight-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-height: 480px;
  width: 100%;
  object-fit: cover;
}

.icon-check {
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Section 5: Checklist */
.checklist-section {
  min-height: 360px;
  background-color: var(--background-color);
}

.checklist-item {
  background-color: #ffffff;
}

/* Section 6: Contact & FAQ */
.contact-faq-section {
  background-color: #ffffff;
  border-top: 1px solid var(--border-color);
}

.contact-block form input,
.contact-block form textarea {
  border-color: var(--border-color);
  font-family: var(--alt-font);
  outline: none;
  transition: border-color 0.2s;
}

.contact-block form input:focus,
.contact-block form textarea:focus {
  border-color: var(--accent-color);
}

.faq-item {
  border-left: 4px solid var(--primary-color);
}

/* Footer styling */
footer {
  background-color: var(--primary-color);
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer a {
  color: #ffffff;
  opacity: 0.8;
  text-decoration: none;
  transition: opacity 0.2s;
}

footer a:hover {
  opacity: 1;
}

footer img {
  filter: brightness(0) invert(1);
  height: 35px;
  width: auto;
}

/* Responsive Grid and Layout Updates */
@media (min-width: 768px) {
  .grid-cols-1 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .grid-cols-1 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}