/* ============================================================
   Brew & Bean — static site stylesheet
   ============================================================ */

:root {
  --espresso: #2b1d16;
  --roast: #5a3a22;
  --caramel: #c98a4b;
  --cream: #f4ede0;
  --latte: #e8dcc8;
  --ink: #241a12;
  --muted: #7a6a58;
  --line: #d9c9ae;
  --font-sans: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-serif: "Georgia", "Times New Roman", serif;
}

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

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Navigation ---------- */
.nav {
  background: var(--espresso);
  color: var(--cream);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav .brand {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav .brand span { color: var(--caramel); }

.nav .links a {
  color: var(--latte);
  text-decoration: none;
  margin-left: 24px;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav .links a:hover,
.nav .links a.active { color: var(--caramel); }

/* ---------- Layout ---------- */
.wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 40px 64px;
}

/* ---------- Hero ---------- */
.hero {
  text-align: center;
  padding: 40px 0 24px;
}

.hero .kicker {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--caramel);
  font-weight: 700;
  margin-bottom: 12px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: 52px;
  line-height: 1.1;
  color: var(--espresso);
  margin-bottom: 16px;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
}

.hero img {
  width: 100%;
  max-width: 720px;
  border-radius: 14px;
  margin-top: 32px;
  box-shadow: 0 18px 40px rgba(43, 29, 22, 0.18);
}

/* ---------- Sections ---------- */
h2 {
  font-family: var(--font-serif);
  font-size: 30px;
  color: var(--espresso);
  margin: 48px 0 16px;
}

.lead { font-size: 17px; color: var(--muted); margin-bottom: 24px; }

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

.card {
  background: var(--latte);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
}

.card h3 {
  font-size: 18px;
  color: var(--espresso);
  margin-bottom: 8px;
}

.card .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 8px;
}

.card p { font-size: 14px; color: var(--muted); }

/* ---------- About page ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 8px;
}

.about-grid img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(43, 29, 22, 0.18);
}

.about-grid p { margin-bottom: 14px; }

.values {
  list-style: none;
  margin-top: 8px;
}

.values li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.values li strong { color: var(--caramel); }

/* ---------- Footer ---------- */
.footer {
  margin-top: 56px;
  padding: 24px 40px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 640px) {
  .wrap { padding: 32px 20px 48px; }
  .nav { padding: 14px 20px; flex-direction: column; gap: 10px; }
  .nav .links a { margin: 0 12px; }
  .hero h1 { font-size: 38px; }
  .about-grid { grid-template-columns: 1fr; }
}
