:root {
  --brown: #4a2c1d;
  --cream: #f5e6d3;
  --accent: #c97b3b;
  --muted: #8a6a52;
}

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

body {
  font-family: Georgia, 'Times New Roman', serif;
  background: var(--cream);
  color: var(--brown);
  line-height: 1.6;
  font-size: 16px;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

header {
  background: var(--brown);
  color: var(--cream);
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
}
header .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.logo { font-size: 1.8rem; font-weight: normal; letter-spacing: 1px; }
nav a { color: var(--cream); text-decoration: none; margin-left: 1.5rem; border-bottom: 1px solid transparent; transition: border 0.2s; }
nav a:hover { border-bottom-color: var(--accent); }

.hero { text-align: center; padding: 5rem 0 4rem; }
.hero h2 { font-size: 2.8rem; font-weight: normal; margin-bottom: 1rem; }
.hero p { font-size: 1.15rem; max-width: 650px; margin: 0 auto 2rem; color: var(--muted); }
.btn { display: inline-block; background: var(--accent); color: white; padding: 0.9rem 2rem; text-decoration: none; border-radius: 4px; font-size: 1.05rem; transition: background 0.2s; }
.btn:hover { background: #b66a2c; }

.beans { padding: 3rem 0; border-top: 1px solid rgba(74,44,29,0.15); }
.beans h3, .why h3 { font-size: 1.8rem; font-weight: normal; margin-bottom: 2rem; text-align: center; color: var(--accent); }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.bean { background: white; padding: 1.5rem; border-radius: 4px; box-shadow: 0 2px 12px rgba(0,0,0,0.05); transition: transform 0.2s; }
.bean:hover { transform: translateY(-3px); }
.bean h4 { font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--brown); }
.bean .origin { color: var(--muted); font-size: 0.9rem; font-style: italic; margin-bottom: 0.5rem; }
.bean .taste { color: var(--accent); margin: 0.7rem 0; }
.bean .profile { font-size: 0.85rem; color: var(--muted); margin-bottom: 1rem; border-bottom: 1px dotted var(--muted); padding-bottom: 0.7rem; }
.bean .price { font-size: 1.4rem; font-weight: bold; color: var(--brown); }
.bean .price span { font-size: 0.9rem; font-weight: normal; color: var(--muted); }

.why { padding: 3rem 0; border-top: 1px solid rgba(74,44,29,0.15); }
.why ul { max-width: 700px; margin: 0 auto; list-style: none; }
.why li { padding: 1rem 0 1rem 2rem; position: relative; border-bottom: 1px solid rgba(74,44,29,0.1); }
.why li:before { content: "☕"; position: absolute; left: 0; }
.why strong { color: var(--accent); }

footer { background: var(--brown); color: var(--cream); padding: 2rem 0; margin-top: 4rem; text-align: center; font-size: 0.9rem; }
footer a { color: var(--accent); text-decoration: none; }

@media (max-width: 600px) {
  header .container { flex-direction: column; gap: 1rem; }
  nav a { margin: 0 0.7rem; }
  .hero h2 { font-size: 2rem; }
}
