/* palette: hunter-sand */
:root {
  --primary-color: #1A3D1A;
  --secondary-color: #2A5C2A;
  --accent-color: #C8A060;
  --background-color: #F0FAF4;
  --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: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
  --radius-xl: 0px;
  --main-font: 'Oswald', sans-serif;
  --alt-font: 'DM Sans', sans-serif;
}

/* Base Styles */
* {
  box-sizing: border-box;
}
body {
  font-family: var(--alt-font);
  background-color: var(--background-color);
  color: var(--text-color);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.bg-primary {
  background: #1A3D1A;
}

/* Typography scale */
h1 {
  font-family: var(--main-font);
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 700;
  color: var(--primary-color);
}
h2 {
  font-family: var(--main-font);
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 700;
  color: var(--primary-color);
}
h3 {
  font-family: var(--main-font);
  font-size: clamp(18px, 2.8vw, 28px);
  font-weight: 600;
  color: var(--primary-color);
}
p {
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.7;
}

/* Mobile-First Section Paddings & Layout */
section {
  padding: 48px 16px;
  margin: 0;
}
@media (min-width: 1024px) {
  section {
    padding: 96px 24px;
  }
}

/* NEO-BRUTAL preset requirements */
section {
  padding: 40px 16px;
  margin: 0;
}
@media(min-width:1024px) {
  section {
    padding: 48px 24px;
  }
}
.card, .btn {
  border: 3px solid var(--primary-color);
  box-shadow: 6px 6px 0 var(--primary-color);
  border-radius: 0;
}
.btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--primary-color);
}
h1, h2, h3 {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.0;
}
section + section {
  border-top: 4px solid var(--primary-color);
}

/* Header & Mobile Navigation */
header {
  background-color: #fff;
  border-bottom: 4px solid var(--primary-color);
  position: relative;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--background-color);
  border-top: 4px solid var(--primary-color);
  border-bottom: 4px solid var(--primary-color);
  z-index: 999;
  padding: 16px;
}
.site-nav ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.site-nav a {
  font-family: var(--main-font);
  text-transform: uppercase;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 1.1rem;
}
.site-nav a:hover {
  color: var(--accent-color);
}

/* Burger Button */
.burger-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}
.burger-btn .bar {
  height: 3px;
  width: 100%;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

#menu-toggle:checked ~ .site-nav {
  display: block;
}
#menu-toggle:checked ~ .burger-btn .bar:first-child {
  transform: translateY(9px) rotate(45deg);
}
#menu-toggle:checked ~ .burger-btn .bar:nth-child(2) {
  opacity: 0;
}
#menu-toggle:checked ~ .burger-btn .bar:last-child {
  transform: translateY(-9px) rotate(-45deg);
}

@media (min-width: 768px) {
  .burger-btn {
    display: none;
  }
  .site-nav {
    display: flex !important;
    position: static;
    border: none;
    background: transparent;
    padding: 0;
  }
  .site-nav ul {
    flex-direction: row;
    gap: 24px;
  }
}

/* Hero Section (noise-mesh) */
.hero {
  min-height: 83vh;
  background: var(--background-color);
  background-image: 
    radial-gradient(at 0% 0%, rgba(200, 160, 96, 0.4) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(42, 92, 42, 0.4) 0px, transparent 50%),
    radial-gradient(at 50% 100%, rgba(26, 61, 26, 0.5) 0px, transparent 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-kicker {
  font-family: var(--main-font);
  text-transform: uppercase;
  color: var(--accent-color);
  font-weight: 700;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 12px;
}
.hero h1 {
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
}
.hero-subtitle {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-color);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: var(--main-font);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  min-height: 44px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-primary {
  background-color: var(--primary-color);
  color: white !important;
}
.btn-outline {
  background-color: transparent;
  color: var(--primary-color) !important;
}

/* Section Kickers & Headers */
.section-kicker {
  font-family: var(--main-font);
  text-transform: uppercase;
  color: var(--accent-color);
  font-weight: 700;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 8px;
}
.section-desc {
  max-width: 600px;
  margin: 12px auto 0;
  color: var(--text-color);
}

/* Step Numbers & Fact Indexes */
.step-num {
  font-family: var(--main-font);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--accent-color);
  line-height: 0.8;
  display: block;
}
.fact-index {
  font-family: var(--main-font);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--accent-color);
  line-height: 0.8;
  opacity: 0.7;
}

/* Labels for Myth/Fact */
.label-myth {
  background-color: rgba(239, 68, 68, 0.15);
  color: #B91C1C;
  border: 2px solid #B91C1C;
  padding: 4px 10px;
  font-family: var(--main-font);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.label-fact {
  background-color: rgba(34, 197, 94, 0.15);
  color: #15803D;
  border: 2px solid #15803D;
  padding: 4px 10px;
  font-family: var(--main-font);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.myth-box {
  border-bottom: 2px dashed var(--border-color);
}

/* Check Icons */
.check-icon {
  background-color: var(--primary-color);
  color: white;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

/* Quote Section */
.quote-symbol {
  font-family: var(--main-font);
  font-size: 6rem;
  line-height: 0.8;
  color: var(--accent-color);
  opacity: 0.5;
  display: block;
}

/* Contact Info Icons */
.contact-icon {
  font-size: 1.5rem;
  line-height: 1;
}

/* Footer styling */
footer {
  background-color: var(--primary-color);
  border-top: 4px solid var(--primary-color);
  color: white;
}
footer img[alt="logo"] {
  filter: brightness(0) invert(1);
}

/* @property Chrome 115+ Animations (Stats, Scroll, Reveal) */
@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%;
}

/* Image styling */
img {
  max-width: 100%;
  height: auto;
}