:root {
  --bg: #1a1310;
  --surface: #241a15;
  --surface-2: #2e211a;
  --cream: #f5ede2;
  --muted: #c8b6a3;
  --accent: #d98b4a;
  --accent-2: #e8a765;
  --line: rgba(245, 237, 226, 0.1);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --radius: 18px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand-name {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.1;
  font-weight: 600;
}

.container { width: min(1100px, 90vw); margin: 0 auto; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-2);
  margin-bottom: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #221108; }
.btn-primary:hover { background: var(--accent-2); }
.btn-ghost { background: transparent; color: var(--cream); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent-2); color: var(--accent-2); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(26, 19, 16, 0.75);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; }
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; color: var(--cream); }
.brand-mark { font-size: 1.4rem; color: var(--accent-2); }
.brand-name { font-size: 1.25rem; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 1.75rem; }
.nav-links a { color: var(--muted); text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--cream); }
.nav-cta { color: var(--accent-2) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: 0.3s; }

/* Hero */
.hero { position: relative; overflow: hidden; padding: clamp(4rem, 12vw, 9rem) 0 clamp(3rem, 8vw, 6rem); }
.hero-inner { position: relative; z-index: 2; max-width: 760px; }
.hero h1 { font-size: clamp(2.6rem, 7vw, 5rem); font-weight: 700; margin-bottom: 1.25rem; }
.hero h1 span { color: var(--accent-2); font-style: italic; }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--muted); max-width: 560px; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 2.5rem; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: Georgia, serif; font-size: 2rem; color: var(--cream); }
.hero-stats span { color: var(--muted); font-size: 0.85rem; }
.hero-glow {
  position: absolute;
  top: -20%;
  right: -15%;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(circle, rgba(217, 139, 74, 0.35), transparent 65%);
  z-index: 1;
  pointer-events: none;
}

/* About */
.about { padding: clamp(3rem, 8vw, 6rem) 0; background: var(--surface); }
.about-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-copy h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1.25rem; }
.about-copy p { color: var(--muted); margin-bottom: 1rem; }
.about-art { display: flex; justify-content: center; }
.cup {
  position: relative;
  width: 150px;
  height: 130px;
  background: linear-gradient(160deg, var(--surface-2), #3a2a20);
  border: 3px solid var(--accent);
  border-radius: 0 0 60px 60px / 0 0 40px 40px;
  box-shadow: var(--shadow);
}
.cup::after {
  content: "";
  position: absolute;
  right: -42px;
  top: 20px;
  width: 45px;
  height: 55px;
  border: 3px solid var(--accent);
  border-left: none;
  border-radius: 0 30px 30px 0;
}
.cup::before {
  content: "";
  position: absolute;
  inset: 8px 8px auto 8px;
  height: 14px;
  background: #3a2318;
  border-radius: 50%;
}
.steam { position: absolute; top: -46px; left: 0; right: 0; display: flex; justify-content: center; gap: 18px; }
.steam span {
  width: 6px; height: 34px;
  background: linear-gradient(to top, rgba(245,237,226,0.5), transparent);
  border-radius: 6px;
  animation: rise 3s ease-in-out infinite;
}
.steam span:nth-child(2) { animation-delay: 0.6s; }
.steam span:nth-child(3) { animation-delay: 1.2s; }
@keyframes rise {
  0% { transform: translateY(6px) scaleY(0.8); opacity: 0; }
  40% { opacity: 0.9; }
  100% { transform: translateY(-14px) scaleY(1.2); opacity: 0; }
}

/* Menu */
.menu { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-head { max-width: 620px; margin-bottom: 2.5rem; }
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.menu-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.6rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.menu-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.menu-card-top { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: 0.6rem; }
.menu-card h3 { font-size: 1.25rem; }
.price { color: var(--accent-2); font-weight: 600; font-family: Georgia, serif; }
.menu-card p { color: var(--muted); font-size: 0.95rem; }

/* Visit */
.visit { padding: clamp(3rem, 8vw, 6rem) 0; background: var(--surface); }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.visit-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
}
.visit-card h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1.25rem; }
.hours-list { list-style: none; }
.hours-list li { display: flex; justify-content: space-between; padding: 0.7rem 0; border-bottom: 1px solid var(--line); color: var(--muted); }
.hours-list li:last-child { border-bottom: none; }
.hours-list span:last-child { color: var(--cream); font-weight: 500; }
.location address { font-style: normal; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.8; }

/* Contact */
.contact { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.contact-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.contact-inner h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 0.75rem; }
.contact-sub { color: var(--muted); margin-bottom: 2.5rem; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; text-align: left; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: 0.85rem; color: var(--muted); font-weight: 500; }
.field input, .field textarea {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  color: var(--cream);
  font: inherit;
  transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; }
.form-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.form-status { grid-column: 1 / -1; margin: 0; min-height: 1.2rem; color: var(--accent-2); font-weight: 500; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); padding: 2rem 0; }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; color: var(--muted); font-size: 0.9rem; }

/* Responsive */
@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-links.open { max-height: 320px; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 1rem 5vw; border-top: 1px solid var(--line); }
  .about-grid { grid-template-columns: 1fr; }
  .about-art { order: -1; }
  .visit-grid { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
}
