:root {
  --coffee-dark: #3b2415;
  --coffee-medium: #6f4e37;
  --coffee-light: #c8a27a;
  --cream: #fdf6ec;
  --text: #2b1d13;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

.hero {
  background: linear-gradient(135deg, var(--coffee-dark), var(--coffee-medium));
  color: var(--cream);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.brand {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  margin-left: 1.5rem;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--coffee-light);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
  text-align: center;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.15rem;
  opacity: 0.95;
}

.section {
  max-width: 900px;
  margin: 0 auto;
  padding: 3.5rem 2rem;
}

.section.alt {
  max-width: 100%;
  background: #f1e4d3;
}

.section.alt > * {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section h2 {
  color: var(--coffee-dark);
  border-bottom: 3px solid var(--coffee-light);
  display: inline-block;
  padding-bottom: 0.25rem;
  margin-bottom: 1.5rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(59, 36, 21, 0.12);
}

.card h3 {
  margin-top: 0;
  color: var(--coffee-medium);
}

.footer {
  text-align: center;
  padding: 2rem;
  background: var(--coffee-dark);
  color: var(--coffee-light);
  font-size: 0.9rem;
}
