:root {
  --bg: #0c0f0a;
  --bg-warm: #131710;
  --fg: #f0ece2;
  --fg-muted: #a8a393;
  --accent: #d4a24e;
  --accent-glow: #e8b85a;
  --green: #5b8c5a;
  --green-soft: #3d5c3c;
  --region-bay: #e07b4c;
  --region-valley: #c9a84c;
  --region-coast: #4c8ca0;
  --region-shasta: #8b6bb0;
  --region-tahoe: #5ba0c9;
  --family: #5b8c5a;
  --adult: #c97a4c;
  --radius: 12px;
  --radius-lg: 20px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 80px 24px 40px;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.topo-lines {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(212,162,78,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 30% 70%, rgba(91,140,90,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 70% 30%, rgba(76,140,160,0.04) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-tag {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 32px;
}

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.hero h1 .accent {
  color: var(--accent);
  font-style: italic;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

.hero-btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: #0c0f0a;
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s;
}

.hero-btn-primary:hover {
  background: var(--accent-glow);
  transform: translateY(-2px);
}

.hero-btn-secondary {
  display: inline-block;
  padding: 14px 24px;
  background: transparent;
  color: var(--fg);
  text-decoration: none;
  border: 1px solid rgba(240, 236, 226, 0.2);
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.92rem;
  transition: border-color 0.2s, color 0.2s;
}

.hero-btn-secondary:hover {
  border-color: rgba(240, 236, 226, 0.5);
  color: var(--fg);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--fg-muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  opacity: 0.6;
  animation: pulse-down 2s ease-in-out infinite;
}

@keyframes pulse-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== REGIONS ===== */
.regions {
  padding: 120px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.regions-header {
  margin-bottom: 64px;
}

.regions-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 16px;
}

.regions-header p {
  color: var(--fg-muted);
  font-size: 1.15rem;
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.region-card {
  background: var(--bg-warm);
  border: 1px solid rgba(240,236,226,0.06);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: border-color 0.3s, transform 0.3s;
}

.region-card:hover {
  transform: translateY(-4px);
}

.region-bay:hover { border-color: var(--region-bay); }
.region-valley:hover { border-color: var(--region-valley); }
.region-coast:hover { border-color: var(--region-coast); }
.region-shasta:hover { border-color: var(--region-shasta); }
.region-tahoe:hover { border-color: var(--region-tahoe); }

.region-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.region-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.region-card p {
  color: var(--fg-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.region-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.region-card-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
  opacity: 0;
  transition: opacity 0.2s;
}

.region-card:hover .region-card-link {
  opacity: 1;
}

/* ===== FEATURES ===== */
.features {
  padding: 100px 24px;
  background: var(--bg-warm);
  border-top: 1px solid rgba(240,236,226,0.04);
  border-bottom: 1px solid rgba(240,236,226,0.04);
}

.features-inner {
  max-width: 900px;
  margin: 0 auto;
}

.feature-block {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 48px 0;
  border-bottom: 1px solid rgba(240,236,226,0.06);
}

.feature-block:last-child {
  border-bottom: none;
}

.feature-number {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  flex-shrink: 0;
  width: 80px;
}

.feature-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-content p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===== CATEGORIES ===== */
.categories {
  padding: 100px 24px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.categories-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 48px;
}

.cat-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.cat-tag {
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.tag-family {
  background: rgba(91,140,90,0.15);
  color: #8dcc8c;
  border: 1px solid rgba(91,140,90,0.25);
}

.tag-adult {
  background: rgba(201,122,76,0.15);
  color: #e8a878;
  border: 1px solid rgba(201,122,76,0.25);
}

.cat-legend {
  display: flex;
  justify-content: center;
  gap: 32px;
  color: var(--fg-muted);
  font-size: 0.85rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-family { background: var(--family); }
.dot-adult { background: var(--adult); }

/* ===== CLOSING ===== */
.closing {
  padding: 120px 24px;
  text-align: center;
  background: 
    radial-gradient(ellipse 70% 50% at 50% 80%, rgba(212,162,78,0.08) 0%, transparent 70%);
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 24px;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.closing-vision {
  color: var(--accent) !important;
  font-weight: 600;
  font-size: 1.2rem !important;
  margin-top: 32px;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 48px 24px;
  border-top: 1px solid rgba(240,236,226,0.06);
  text-align: center;
}

.footer-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--fg);
}

.footer-tagline {
  color: var(--fg-muted);
  font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { padding: 60px 20px 40px; min-height: 90vh; }
  .hero-tag { font-size: 0.7rem; }
  .regions { padding: 80px 20px; }
  .regions-grid { grid-template-columns: 1fr; gap: 16px; }
  .region-card { padding: 28px 24px; }
  .features { padding: 60px 20px; }
  .feature-block { flex-direction: column; gap: 12px; padding: 32px 0; }
  .feature-number { font-size: 2rem; width: auto; }
  .categories { padding: 60px 20px; }
  .cat-tags { gap: 8px; }
  .cat-tag { padding: 8px 14px; font-size: 0.8rem; }
  .cat-legend { flex-direction: column; align-items: center; gap: 12px; }
  .closing { padding: 80px 20px; }
  .hero-scroll-hint { display: none; }
}