:root {
  --espresso: #2c1a10;
  --roast: #4a2f1c;
  --coffee: #8a5a35;
  --coffee-deep: #5c3a22;
  --cream: #f3e9d8;
  --cream-deep: #e8c98a;
  --ink: #33241a;
  --muted: #7a6a5a;
  --bg: #faf6ef;
  --card: #ffffff;
  --line: #ece2d2;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(44, 26, 16, .08);
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { line-height: 1.2; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem clamp(1rem, 4vw, 3rem);
  background: rgba(44, 26, 16, .92);
  backdrop-filter: blur(8px);
  color: var(--cream);
}
.brand { display: flex; align-items: center; gap: .6rem; }
.brand-mark { width: 40px; height: 40px; flex: none; }
.brand-name { font-weight: 800; font-size: 1.25rem; letter-spacing: .02em; }
.site-nav { display: flex; align-items: center; gap: 1.4rem; font-size: .95rem; }
.site-nav a:not(.btn) { opacity: .85; transition: opacity .15s; }
.site-nav a:not(.btn):hover { opacity: 1; }

.btn {
  display: inline-block;
  padding: .7rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-coffee {
  background: linear-gradient(135deg, var(--coffee), var(--coffee-deep));
  color: var(--cream);
  box-shadow: 0 6px 18px rgba(90, 58, 34, .35);
}
.btn-ghost { background: transparent; color: var(--cream); border: 1.5px solid rgba(243,233,216,.4); }

.hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2.5rem;
  align-items: center;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem);
  background: radial-gradient(1200px 600px at 85% -10%, #6a4528 0%, var(--espresso) 55%);
  color: var(--cream);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--cream-deep);
  margin-bottom: .7rem;
}
.hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 800; }
.hero h1 span { color: var(--cream-deep); }
.hero-sub { margin: 1rem 0 1.6rem; font-size: 1.08rem; opacity: .88; max-width: 34em; }
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; }
.hero-badges { list-style: none; display: flex; gap: 1.2rem; flex-wrap: wrap; margin-top: 1.8rem; font-size: .9rem; opacity: .92; }
.hero-art svg { width: 100%; height: auto; }

.menu { padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem); }
.section-head { max-width: 42em; margin-bottom: 2.4rem; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--espresso); margin-bottom: .5rem; }
.section-head p:not(.eyebrow) { color: var(--muted); }
.section-head.light h2 { color: var(--cream); }
.section-head.light p:not(.eyebrow) { color: rgba(243,233,216,.75); }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.4rem;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem 1.5rem;
  box-shadow: var(--shadow);
  transition: transform .18s, box-shadow .18s;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(44,26,16,.14); }
.card-art {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  margin-bottom: .6rem;
}
.art-brown { background: #efe2d3; }
.art-cream { background: #f6eddc; }
.art-pink { background: #fae4e0; }
.art-mint { background: #e2f0e7; }
.art-gold { background: #f7ecd1; }
.art-blue { background: #e3ecf7; }
.art-teal { background: #ddf0ee; }
.art-red { background: #fbe4de; }
.art-lavender { background: #eae4f3; }
.card h3 { font-size: 1.12rem; color: var(--espresso); }
.card p { font-size: .93rem; color: var(--muted); flex: 1; }
.price { font-weight: 800; color: var(--coffee-deep); font-size: 1.05rem; }

.coffee {
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem);
  background: linear-gradient(160deg, var(--espresso) 0%, var(--roast) 60%, #6a4528 100%);
  color: var(--cream);
}
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
  margin: 2.2rem 0;
}
.stat {
  background: rgba(243,233,216,.06);
  border: 1px solid rgba(243,233,216,.12);
  border-radius: var(--radius);
  padding: 1.5rem 1.2rem;
  text-align: center;
}
.stat strong { display: block; font-size: 1.9rem; color: var(--cream-deep); }
.stat span { font-size: .9rem; opacity: .8; }
.benefit-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
  margin-top: 1rem;
}
.benefit-list li {
  display: flex;
  gap: .9rem;
  background: rgba(243,233,216,.05);
  border: 1px solid rgba(243,233,216,.1);
  border-radius: var(--radius);
  padding: 1.3rem;
}
.benefit-list li > span { font-size: 1.7rem; }
.benefit-list h4 { font-size: 1.05rem; margin-bottom: .25rem; }
.benefit-list p { font-size: .9rem; opacity: .8; }

.location { padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem); }
.loc-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.8rem;
  align-items: stretch;
}
.loc-info { display: flex; flex-direction: column; gap: 1rem; }
.loc-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  box-shadow: var(--shadow);
}
.loc-card h3 { color: var(--espresso); margin-bottom: .4rem; }
.loc-card h4 { color: var(--espresso); margin-bottom: .4rem; }
.loc-card a { color: var(--coffee-deep); font-weight: 600; }
.loc-address { margin-bottom: .4rem; }
.loc-info .btn { align-self: flex-start; }
.loc-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  min-height: 380px;
}
.loc-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

.contact {
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem);
  background: linear-gradient(160deg, #6a4528 0%, var(--roast) 60%, var(--espresso) 100%);
  color: var(--cream);
}
.contact-form {
  max-width: 640px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.field { display: flex; flex-direction: column; gap: .4rem; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: .9rem; font-weight: 600; }
.field input, .field select, .field textarea {
  padding: .75rem .9rem;
  border-radius: 12px;
  border: 1.5px solid rgba(243,233,216,.25);
  background: rgba(243,233,216,.08);
  color: var(--cream);
  font: inherit;
  outline: none;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(243,233,216,.5); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--cream-deep); }
.field select option { color: var(--ink); }
.form-note { text-align: center; font-weight: 600; min-height: 1.4em; }
.form-note.ok { color: #7fdca0; }
.form-note.err { color: #ffb4a2; }

.site-footer {
  background: #1e120a;
  color: rgba(243,233,216,.75);
  padding: 2.5rem clamp(1rem, 4vw, 3rem) 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
}
.site-footer .brand { color: var(--cream); }
.footer-brand p { margin-top: .8rem; font-size: .9rem; opacity: .8; }
.footer-links { display: flex; gap: 3rem; }
.footer-links h5 { color: var(--cream-deep); margin-bottom: .6rem; font-size: .9rem; }
.footer-links a { display: block; font-size: .92rem; padding: .18rem 0; opacity: .85; }
.footer-links a:hover { opacity: 1; }
.footer-legal {
  grid-column: 1 / -1;
  text-align: center;
  font-size: .82rem;
  opacity: .55;
  border-top: 1px solid rgba(243,233,216,.1);
  padding-top: 1.2rem;
}

@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; }
  .hero-art { max-width: 460px; margin: 0 auto; }
  .site-nav a:not(.btn) { display: none; }
  .loc-wrap { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-legal { grid-column: 1; }
  .contact-form { grid-template-columns: 1fr; }
}
