:root {
  --cream: #f7f0e6;
  --cream-soft: #efe4d3;
  --espresso: #2c1d15;
  --coffee: #4a2f22;
  --ember: #c1541e;
  --ember-soft: #d97740;
  --caramel: #b98a4b;
  --ink: #33251d;
  --muted: #7a675a;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; line-height: 1.1; letter-spacing: -0.01em; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ember);
  margin-bottom: 0.9rem;
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--ember);
  color: #fff;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 22px -12px rgba(193, 84, 30, 0.7);
}
.btn:hover { background: #a8461630; background: #a44614; transform: translateY(-2px); box-shadow: 0 12px 26px -12px rgba(193, 84, 30, 0.8); }
.btn-ghost { background: transparent; color: var(--coffee); border: 1.5px solid rgba(74, 47, 34, 0.25); box-shadow: none; }
.btn-ghost:hover { background: rgba(74, 47, 34, 0.06); border-color: var(--coffee); }
.btn-small { padding: 0.55rem 1.15rem; font-size: 0.85rem; }
.btn-light { background: var(--cream); color: var(--espresso); }
.btn-light:hover { background: #fff; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 240, 230, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(74, 47, 34, 0.08);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--espresso);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.brand-mark { color: var(--ember); transform: rotate(-15deg); display: inline-block; }
.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a { text-decoration: none; color: var(--coffee); font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--ember); }
.nav-links a.btn:hover { color: #fff; }

/* Hero */
.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}
.hero h1 { font-size: clamp(2.8rem, 6vw, 4.6rem); color: var(--espresso); margin-bottom: 1.4rem; }
.hero h1 em { color: var(--ember); font-style: italic; }
.lede { font-size: 1.15rem; color: var(--muted); max-width: 30rem; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.8rem; }
.hero-facts { display: flex; gap: 2.5rem; }
.hero-facts strong { font-family: 'Fraunces', serif; font-size: 1.7rem; color: var(--coffee); display: block; }
.hero-facts span { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* Hero art — the cup */
.hero-art { display: flex; justify-content: center; align-items: center; }
.cup {
  position: relative;
  width: 220px;
  height: 190px;
  background: linear-gradient(160deg, #5a3a29, #3a251b);
  border-radius: 18px 18px 90px 90px / 18px 18px 60px 60px;
  box-shadow: 0 30px 60px -20px rgba(44, 29, 21, 0.55), inset 0 8px 0 rgba(255,255,255,0.06);
}
.cup::before {
  content: "";
  position: absolute;
  top: 14px; left: 14px; right: 14px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, #7a4c33, #4a2f22);
  box-shadow: inset 0 4px 10px rgba(0,0,0,0.4);
}
.cup::after {
  content: "";
  position: absolute;
  right: -46px; top: 48px;
  width: 60px; height: 74px;
  border: 14px solid #4a2f22;
  border-radius: 40%;
  border-left-color: transparent;
}
.steam { position: absolute; top: -46px; left: 0; right: 0; display: flex; justify-content: center; gap: 22px; }
.steam span {
  width: 7px; height: 44px;
  background: linear-gradient(to top, rgba(185,138,75,0.5), transparent);
  border-radius: 999px;
  animation: rise 3.5s ease-in-out infinite;
}
.steam span:nth-child(2) { animation-delay: 0.9s; height: 56px; }
.steam span:nth-child(3) { animation-delay: 1.7s; }
@keyframes rise {
  0% { opacity: 0; transform: translateY(10px) scaleY(0.6); }
  40% { opacity: 0.9; }
  100% { opacity: 0; transform: translateY(-24px) scaleY(1.15); }
}

/* Marquee strip */
.strip {
  background: var(--espresso);
  color: var(--cream-soft);
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.4rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.strip span:nth-child(even) { color: var(--ember-soft); }

/* Menu */
.section-head { text-align: center; max-width: 40rem; margin: 0 auto 3rem; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--espresso); }
.section-sub { color: var(--muted); margin-top: 0.8rem; }
.menu { max-width: 1120px; margin: 0 auto; padding: 5rem 1.5rem; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.menu-card {
  background: #fff;
  border: 1px solid rgba(74, 47, 34, 0.08);
  border-radius: 16px;
  padding: 1.6rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -22px rgba(44, 29, 21, 0.4); border-color: rgba(193,84,30,0.3); }
.menu-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: 0.6rem; }
.menu-row h3 { font-size: 1.2rem; color: var(--coffee); }
.price { font-family: 'Fraunces', serif; font-weight: 600; color: var(--ember); font-size: 1.1rem; white-space: nowrap; }
.menu-card p { color: var(--muted); font-size: 0.95rem; }

/* Split section */
.split {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.5rem;
}
.hours-card, .find-card { border-radius: 20px; padding: 2.6rem; }
.hours-card { background: var(--cream-soft); }
.hours-card h2, .find-card h2 { font-size: 1.9rem; color: var(--espresso); margin-bottom: 1.5rem; }
.hours-list { list-style: none; margin-bottom: 1.5rem; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(74, 47, 34, 0.12);
  font-size: 1rem;
}
.hours-list li span:first-child { color: var(--coffee); font-weight: 500; }
.hours-list li span:last-child { color: var(--muted); }
.hours-note { color: var(--muted); font-size: 0.9rem; font-style: italic; }
.find-card { background: var(--coffee); color: var(--cream-soft); }
.find-card h2 { color: var(--cream); }
.find-card .eyebrow { color: var(--ember-soft); }
.find-blurb { color: rgba(247, 240, 230, 0.82); margin-bottom: 1.5rem; }
.address { font-style: normal; color: var(--cream); font-weight: 500; margin-bottom: 1.8rem; line-height: 1.7; }

/* CTA */
.cta {
  background: var(--espresso);
  color: var(--cream);
  text-align: center;
  padding: 5rem 1.5rem;
}
.cta h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1rem; }
.cta h2, .cta { }
.cta p { color: rgba(247, 240, 230, 0.75); margin-bottom: 2rem; font-size: 1.1rem; }

/* Footer */
.footer { background: #241812; color: var(--cream-soft); padding: 3rem 1.5rem; }
.footer-inner { max-width: 1120px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; gap: 0.6rem; align-items: center; }
.footer .brand { color: var(--cream); }
.footer p { font-size: 0.9rem; color: rgba(247, 240, 230, 0.6); }
.copyright { font-size: 0.8rem; }

@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; padding-top: 3rem; }
  .hero-art { order: -1; }
  .split { grid-template-columns: 1fr; }
  .nav-links a:not(.btn) { display: none; }
  .hero-facts { gap: 1.6rem; }
}
