/* PebbleShed — Brand Stylesheet */
/* Palette: Sagebrush #4A6741, Sprout #E9EDC6, Suede #D4A373, Cream #FDFBF7 */

:root {
  --sagebrush: #4A6741;
  --sprout: #E9EDC6;
  --suede: #D4A373;
  --cream: #FDFBF7;
  --dark: #1a2e16;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --pebble: 32px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'DM Serif Display', serif; }

/* === NAV === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(253,251,247,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(74,103,65,0.08);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'DM Serif Display', serif;
  font-size: 20px; color: var(--sagebrush);
  text-decoration: none;
}
.nav-logo {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(233,237,198,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: 0 0 16px rgba(233,237,198,0.6);
}
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 14px; font-weight: 600; color: var(--gray-600);
  text-decoration: none; letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--sagebrush); }

/* === HERO === */
.hero {
  position: relative; overflow: hidden;
  padding: 160px 32px 100px;
  text-align: center;
  background: linear-gradient(180deg, var(--sagebrush) 0%, #3a5433 100%);
}
.hero-glow {
  position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(233,237,198,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; max-width: 700px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  background: rgba(233,237,198,0.15); color: var(--sprout);
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 20px; border-radius: 100px;
  border: 1px solid rgba(233,237,198,0.2);
  margin-bottom: 32px;
}
.hero h1 {
  font-size: 56px; color: var(--cream);
  line-height: 1.1; margin-bottom: 24px;
}
.text-sprout { color: var(--sprout); }
.hero-sub {
  font-size: 18px; color: rgba(233,237,198,0.7);
  line-height: 1.7; max-width: 540px; margin: 0 auto 40px;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center;
  padding: 14px 28px; border-radius: 100px;
  font-size: 15px; font-weight: 700;
  text-decoration: none; transition: all 0.25s;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--sprout); color: var(--sagebrush);
  box-shadow: 0 4px 20px rgba(233,237,198,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(233,237,198,0.4);
}
.btn-secondary {
  background: transparent; color: var(--sprout);
  border-color: rgba(233,237,198,0.3);
}
.btn-secondary:hover {
  background: rgba(233,237,198,0.1);
  border-color: rgba(233,237,198,0.5);
}

/* === FEATURES === */
.features { padding: 100px 32px; }
.features-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: white; padding: 36px 28px;
  border-radius: var(--pebble);
  border: 1px solid rgba(74,103,65,0.06);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.25s, box-shadow 0.25s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.feature-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 20px; color: var(--sagebrush);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px; color: var(--gray-600);
  line-height: 1.7;
}

/* === CTA === */
.cta-section {
  text-align: center;
  padding: 80px 32px;
  background: linear-gradient(180deg, transparent 0%, rgba(233,237,198,0.2) 100%);
}
.cta-section h2 {
  font-size: 36px; color: var(--sagebrush);
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 16px; color: var(--gray-600);
  max-width: 500px; margin: 0 auto 32px;
  line-height: 1.7;
}

/* === FOOTER === */
.footer {
  background: var(--sagebrush);
  padding: 48px 32px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  text-align: center;
}
.footer-brand {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'DM Serif Display', serif;
  font-size: 18px; color: var(--cream);
  margin-bottom: 20px;
}
.footer-logo { font-size: 20px; }
.footer-links {
  display: flex; gap: 24px; justify-content: center;
  margin-bottom: 24px;
}
.footer-links a {
  font-size: 13px; font-weight: 600; color: var(--sprout);
  text-decoration: none; opacity: 0.7;
  transition: opacity 0.2s;
}
.footer-links a:hover { opacity: 1; }
.footer-copy {
  font-size: 12px; color: rgba(233,237,198,0.4);
}

/* === LEGAL PAGES === */
.legal-page {
  max-width: 720px; margin: 0 auto;
  padding: 120px 32px 80px;
}
.legal-page h1 {
  font-size: 36px; color: var(--sagebrush);
  margin-bottom: 8px;
}
.legal-meta {
  font-size: 13px; color: var(--gray-400);
  margin-bottom: 40px; font-weight: 600;
}
.legal-page h2 {
  font-size: 22px; color: var(--sagebrush);
  margin: 40px 0 16px;
}
.legal-page p, .legal-page li {
  font-size: 15px; color: var(--gray-600);
  line-height: 1.8; margin-bottom: 16px;
}
.legal-page ul {
  padding-left: 24px; margin-bottom: 16px;
}
.legal-page a { color: var(--sagebrush); font-weight: 600; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero h1 { font-size: 36px; }
  .hero-sub { font-size: 15px; }
  .features-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero { padding: 140px 24px 80px; }
  .features { padding: 60px 24px; }
  .legal-page { padding: 100px 24px 60px; }
}
