:root {
  --pine: #2D4A3E;
  --pine-light: #3A5F50;
  --earth: #8B7355;
  --earth-light: #A89070;
  --cream: #FAF7F2;
  --warm-white: #FEFCF9;
  --stone: #D4C5B2;
  --stone-light: #E8DFD2;
  --bark: #5C4A3A;
  --sky: #7BA7BC;
  --text: #3A3A3A;
  --text-muted: #666;
  --text-light: #555;
  --card-bg: white;
  --footer-bg: var(--bark);
  --hero-btn-bg: white;
  --hero-btn-text: #2D4A3E;
}
html.dark {
  --pine: #4A7A68;
  --pine-light: #5A9078;
  --earth: #B89A78;
  --earth-light: #C8AA88;
  --cream: #1A1A1A;
  --warm-white: #121212;
  --stone: #3A3530;
  --stone-light: #2A2520;
  --bark: #E8DFD2;
  --sky: #7BA7BC;
  --text: #E0DCD6;
  --text-muted: #A09890;
  --text-light: #B8B0A8;
  --card-bg: #1E1C1A;
  --footer-bg: #1A1816;
  --hero-btn-bg: #E8DFD2;
  --hero-btn-text: #1A2E26;
}
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--warm-white); }
h1, h2, h3 { font-family: 'Libre Baskerville', Georgia, serif; }
.hero-bg {
  background: linear-gradient(160deg, var(--pine) 0%, var(--pine-light) 40%, var(--earth) 100%);
  position: relative;
  overflow: hidden;
}
.hero-bg::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 150'%3E%3Cpath fill='%23FAF7F2' opacity='0.3' d='M0,150 L0,90 L120,50 L240,75 L360,30 L480,60 L600,15 L720,45 L840,20 L960,55 L1080,10 L1200,40 L1320,25 L1440,50 L1440,150 Z'/%3E%3Cpath fill='%23FAF7F2' opacity='0.5' d='M0,150 L0,100 L180,70 L300,90 L420,55 L540,80 L720,40 L900,65 L1020,45 L1140,70 L1300,50 L1440,65 L1440,150 Z'/%3E%3Cpath fill='%23FAF7F2' d='M0,150 L0,110 L100,95 L250,105 L400,85 L550,100 L700,80 L850,95 L1000,75 L1150,90 L1300,80 L1440,90 L1440,150 Z'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: cover;
}
html.dark .hero-bg::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 150'%3E%3Cpath fill='%23121212' opacity='0.3' d='M0,150 L0,90 L120,50 L240,75 L360,30 L480,60 L600,15 L720,45 L840,20 L960,55 L1080,10 L1200,40 L1320,25 L1440,50 L1440,150 Z'/%3E%3Cpath fill='%23121212' opacity='0.5' d='M0,150 L0,100 L180,70 L300,90 L420,55 L540,80 L720,40 L900,65 L1020,45 L1140,70 L1300,50 L1440,65 L1440,150 Z'/%3E%3Cpath fill='%23121212' d='M0,150 L0,110 L100,95 L250,105 L400,85 L550,100 L700,80 L850,95 L1000,75 L1150,90 L1300,80 L1440,90 L1440,150 Z'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: cover;
}
.service-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid var(--stone-light);
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.btn-primary {
  background: var(--pine);
  color: white;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  letter-spacing: 0.01em;
}
.btn-primary:hover { background: var(--pine-light); }
.btn-outline {
  border: 2px solid var(--pine);
  color: var(--pine);
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--pine); color: white; }
.mountain-divider {
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23E8DFD2' d='M0,60 L200,20 L400,45 L600,10 L800,35 L1000,5 L1200,30 L1440,15 L1440,60 L0,60 Z' opacity='0.5'/%3E%3Cpath fill='%23D4C5B2' d='M0,60 L300,30 L500,50 L700,25 L900,40 L1100,20 L1300,38 L1440,28 L1440,60 L0,60 Z' opacity='0.3'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: cover;
}
.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border: 1px solid var(--stone-light);
  margin-bottom: 1rem;
}
html.dark .service-card { box-shadow: 0 1px 3px rgba(0,0,0,0.2), 0 4px 12px rgba(0,0,0,0.15); }
html.dark .service-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.25); }
.icon-box i { color: var(--pine); }
.info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--stone-light);
  margin-bottom: 0.5rem;
}
.info-icon i { color: var(--bark); }
.prose { max-width: 65ch; }
.prose p { margin-bottom: 1rem; line-height: 1.7; color: var(--text-light); }
.prose h2 { margin-top: 2rem; margin-bottom: 1rem; color: var(--bark); }
.prose h3 { margin-top: 1.5rem; margin-bottom: 0.75rem; color: var(--bark); }
.prose ul, .prose ol { margin-bottom: 1rem; padding-left: 1.5rem; color: var(--text-light); }
.prose li { margin-bottom: 0.5rem; line-height: 1.7; }
html.dark .hero-bg {
  background: linear-gradient(160deg, #1A2E26 0%, #243828 40%, #3A2E20 100%);
}
html.dark input, html.dark textarea {
  background: var(--cream) !important;
  border-color: var(--stone) !important;
  color: var(--text) !important;
}
html.dark input::placeholder, html.dark textarea::placeholder {
  color: var(--text-muted);
}
/* Theme toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--stone-light);
  border-radius: 8px;
  padding: 2px;
}
.theme-toggle button {
  padding: 6px;
  border-radius: 6px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}
.theme-toggle button.active {
  background: var(--card-bg);
  color: var(--bark);
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.light-hide { display: none; }
.dark-hide { display: block; }
html.dark .light-hide { display: block; }
html.dark .dark-hide { display: none; }
.faq-toggle[aria-expanded="true"] + div { display: block !important; }
.faq-toggle[aria-expanded="true"] i[data-lucide="chevron-down"] { transform: rotate(180deg); }
@media (max-width: 768px) {
  .hero-bg { padding: 3rem 1rem 5rem; }
}
