/* 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: 6px; --radius-md: 12px; --radius-lg: 20px; --radius-xl: 32px;
  --main-font: 'Cormorant Garamond', serif;
  --alt-font: 'Open Sans', sans-serif;
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--alt-font);
  background-color: var(--background-color);
  color: var(--text-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--main-font);
  color: var(--primary-color);
}

/* Header & Navigation */
header {
  background: white;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}

.logo img {
  height: 40px;
  width: auto;
}

.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;
}

.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  z-index: 999;
  box-shadow: var(--shadow-md);
  padding: 16px;
}

.site-nav ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}

.site-nav a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 600;
  transition: color 0.3s;
}

.site-nav a:hover {
  color: var(--accent-color);
}

#menu-toggle:checked ~ .site-nav {
  display: block;
}

#menu-toggle:checked ~ .burger-btn .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

#menu-toggle:checked ~ .burger-btn .bar:nth-child(2) {
  opacity: 0;
}

#menu-toggle:checked ~ .burger-btn .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* HERO: Bento Grid */
.hero-bento-section {
  padding: 48px 16px;
  background: linear-gradient(180deg, white 0%, var(--background-color) 100%);
}

.hero-bento-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.bento-cell {
  border-radius: var(--radius-lg);
  padding: 24px;
  background: white;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-main {
  background: var(--primary-color);
  color: white;
}

.bento-main .hero-title {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: white;
  margin-bottom: 16px;
}

.bento-main .hero-subtitle {
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.bento-image {
  background-size: cover;
  background-position: center;
  min-height: 240px;
}

.bento-stat-1 { background-color: var(--secondary-color); color: white; }
.bento-stat-2 { background-color: var(--accent-color); color: white; }
.bento-stat-3 { background-color: #2E4F2E; color: white; }

.bento-stat-num {
  font-family: var(--main-font);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 8px;
}

.bento-stat-text {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
}

/* Buttons */
.btn {
  display: inline-block;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  min-height: 44px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--accent-color);
  color: white;
}

.btn-primary:hover {
  background-color: #b38e50;
}

.btn-outline-white {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Sections & Typography Scale */
h2.section-title {
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 12px;
}

p.section-desc {
  font-size: clamp(14px, 1.6vw, 17px);
  max-width: 700px;
  margin: 0 auto;
  color: #666;
}

.kicker {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-color);
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

/* CSS Tabs */
.tab-label {
  font-family: var(--main-font);
  font-size: 20px;
  color: #666;
}

.tab-content {
  display: none;
}

.tab-illustration img {
  object-fit: cover;
  width: 100%;
  border-radius: var(--radius-lg);
}

/* Icon Grid */
.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--background-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

/* Quiz Section */
.quiz-option {
  display: block;
  padding: 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
}

.quiz-option:hover {
  background: var(--background-color);
}

.quiz-answer {
  display: none;
  padding: 16px;
  background: rgba(200, 160, 96, 0.1);
  border-left: 4px solid var(--accent-color);
  border-radius: var(--radius-sm);
  margin-top: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.6;
}

#q1a:checked ~ .answer-q1a,
#q1b:checked ~ .answer-q1b,
#q2a:checked ~ .answer-q2a,
#q2b:checked ~ .answer-q2b {
  display: block;
}

input[type="radio"]:checked + .quiz-option {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* How It Works Timeline */
.step-num {
  font-family: var(--main-font);
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 12px;
}

/* Testimonials */
.stars {
  color: var(--accent-color);
  font-size: 20px;
}

/* FAQ */
.faq-card h4 {
  font-family: var(--alt-font);
}

/* Footer */
footer {
  background: var(--primary-color);
  color: white;
}

footer img {
  filter: brightness(0) invert(1);
  height: 40px;
  width: auto;
}

footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: var(--accent-color);
}

/* 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%;
}

/* Mobile-First Layout Adjustments (min-width: 768px) */
@media (min-width: 768px) {
  .site-nav {
    display: flex !important;
    position: static;
    box-shadow: none;
    background: transparent;
    padding: 0;
  }

  .site-nav ul {
    flex-direction: row;
    gap: 24px;
  }

  .burger-btn {
    display: none;
  }
}

/* Desktop Layout Adjustments (min-width: 1024px) */
@media (min-width: 1024px) {
  .hero-bento-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .bento-main {
    grid-column: span 2;
  }

  .bento-image {
    grid-column: span 1;
  }
}

/* MINIMAL-LIGHT PRESET STYLING - COPIED LITERALLY */
section{padding:96px 16px} @media(min-width:1024px){section{padding:120px 24px}} body{font-weight:300;line-height:1.9} .card{border:none;box-shadow:0 4px 24px rgba(0,0,0,0.07);border-radius:16px} .btn{border-radius:999px;padding:14px 36px} section+section{border:none}