/* Base */
:root {
  --primary: #da7756;
  --primary-dark: #c06548;
  --bg: #f2ede3;
  --ink: #1a1714;
  --muted: #7a736a;
  --white: #fff;
  --card-bg: #ede8de;
  --section-alt: #f9f7f2;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography */
h1, h2, h3 {
  font-weight: 800;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.eyebrow {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.lead {
  font-size: 1.25rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--primary-dark);
}

/* Navigation */
.nav {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
}

.nav a {
  margin-left: 2rem;
  font-weight: 500;
}

/* Hero */
.hero {
  padding: 6rem 0;
  text-align: center;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
}

.btn-ghost {
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-ghost:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-secondary {
  background: rgba(0, 0, 0, 0.05);
  color: var(--ink);
  border: 1px solid transparent;
}
.btn-secondary:hover {
  background: rgba(0, 0, 0, 0.08);
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--section-alt);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 1rem;
  border-left: 4px solid var(--primary);
}

/* Events */
.events {
  list-style: none;
}

.events li {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.events li:last-child {
  border-bottom: none;
}

.ev-date {
  font-weight: 600;
  color: var(--primary);
  min-width: 5rem;
}

/* Events placeholder */
.events-placeholder {
  background-color: var(--section-alt);
  border: 2px dashed var(--muted);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  color: var(--muted);
  margin: 2rem 0;
}
.events-placeholder h3 {
  margin-bottom: 0.5rem;
}
.caption {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Join */
.join {
  text-align: center;
}

.muted {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Footer */
.footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(0,0,0,0.05);
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  .nav-inner {
    flex-direction: column;
    gap: 1rem;
  }
  .nav a {
    margin: 0 1rem;
  }
  .cta-row {
    flex-direction: column;
    align-items: center;
  }
  .events li {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
