@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Syne:wght@600;700;800&display=swap");

:root {
  --ink: #12100e;
  --cream-cup: #f2ebe3;
  --foam: #faf7f2;
  --roast: #5c3a28;
  --espresso: #2a1810;
  --amber: #c47a3a;
  --muted: #6e6358;
  --line: #e0d5c8;
  --max: 1100px;
  --display: "Syne", "Arial Narrow", sans-serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    linear-gradient(180deg, #faf7f2 0%, #f0e8dc 50%, #ebe2d6 100%);
  line-height: 1.65;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--amber); }
.wrap { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,247,242,0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.95rem 0;
}
.brand { display: flex; align-items: baseline; gap: 0.55rem; }
.brand-name {
  font-family: var(--display);
  font-size: 1.7rem; font-weight: 800; letter-spacing: -0.03em;
  text-transform: uppercase;
}
.brand-tag {
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}
.menu-toggle {
  display: none; background: transparent; border: 1px solid var(--ink);
  padding: 0.45rem 0.8rem; font-family: var(--sans); font-size: 0.8rem;
  letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer;
}
.nav-main { display: flex; flex-wrap: wrap; gap: 1.15rem; font-size: 0.9rem; font-weight: 500; }
.nav-main a[aria-current="page"] {
  color: var(--roast); border-bottom: 2px solid var(--amber); padding-bottom: 2px;
}

.hero {
  position: relative; min-height: min(82vh, 640px);
  background-size: cover; background-position: center;
  display: flex; align-items: center; color: #fff;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(18,16,14,0.88) 0%, rgba(18,16,14,0.45) 50%, rgba(18,16,14,0.2) 100%);
}
.hero-inner {
  position: relative; z-index: 1; padding: 4rem 0;
  width: min(100% - 2.5rem, var(--max)); margin-inline: auto;
}
.hero-kicker {
  font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 0.9rem; font-weight: 600;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 800;
  line-height: 0.98; letter-spacing: -0.03em;
  max-width: 11ch; margin: 0 0 1.1rem; text-transform: uppercase;
}
.hero p { max-width: 36ch; margin: 0 0 1.6rem; opacity: 0.9; font-weight: 300; font-size: 1.05rem; }

.btn {
  display: inline-block; padding: 0.85rem 1.5rem;
  background: var(--amber); color: #fff; border: none;
  font-family: var(--sans); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn:hover { background: var(--roast); color: #fff; transform: translateY(-1px); }
.btn-ghost {
  background: transparent; border: 1px solid rgba(255,255,255,0.7); color: #fff; margin-left: 0.5rem;
}
.btn-ghost:hover { background: #fff; color: var(--ink); }

.marquee {
  background: var(--espresso); color: var(--cream-cup);
  overflow: hidden; white-space: nowrap; padding: 0.75rem 0; font-size: 0.85rem;
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
}
.marquee span { display: inline-block; padding: 0 2rem; }

.section { padding: 4.25rem 0; }
.section h2 {
  font-family: var(--display); font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700; margin: 0 0 0.75rem; letter-spacing: -0.02em; text-transform: uppercase;
}
.lead { color: var(--muted); max-width: 52ch; margin-bottom: 1.6rem; }
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center;
}
.split img { width: 100%; aspect-ratio: 5/4; object-fit: cover; }

.menu-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
.menu-item {
  display: flex; justify-content: space-between; gap: 1rem; align-items: baseline;
  padding: 1rem 0; border-bottom: 1px solid var(--line);
}
.menu-item h3 { font-size: 1.05rem; margin: 0 0 0.2rem; font-weight: 600; }
.menu-item p { margin: 0; color: var(--muted); font-size: 0.88rem; }
.menu-item .price {
  font-family: var(--display); font-weight: 700; white-space: nowrap; color: var(--roast);
}

.card-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem;
}
.info-card {
  background: #fff; border: 1px solid var(--line); padding: 0; overflow: hidden;
}
.info-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.info-card .body { padding: 1.15rem 1.2rem 1.35rem; }
.info-card h3 {
  font-family: var(--display); font-size: 1.05rem; margin: 0 0 0.4rem;
  text-transform: uppercase; letter-spacing: -0.01em;
}
.info-card p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.page-hero {
  background: var(--espresso); color: var(--foam); padding: 3rem 0 2.5rem;
}
.page-hero h1 {
  font-family: var(--display); font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 0 0.5rem; font-weight: 800; text-transform: uppercase; letter-spacing: -0.02em;
}
.page-hero p { margin: 0; opacity: 0.8; max-width: 48ch; }

.hours-panel {
  background: #fff; border: 1px solid var(--line); padding: 1.25rem 1.4rem;
}
.hours-panel h3 {
  font-family: var(--display); margin: 0 0 0.85rem; font-weight: 700;
  text-transform: uppercase; font-size: 1rem;
}
.hours-panel ul { list-style: none; padding: 0; margin: 0; }
.hours-panel li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.35rem 0; border-bottom: 1px solid var(--line); font-size: 0.92rem;
}
.hours-panel li:last-child { border-bottom: 0; }

.contact-bits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.contact-bits h4 {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 0.35rem;
}
.contact-bits p { margin: 0; }

.contact-band { background: var(--ink); color: var(--foam); padding: 3.5rem 0; }
.contact-band h2 {
  font-family: var(--display); margin: 0 0 0.4rem; font-weight: 700;
  text-transform: uppercase;
}
.contact-band .sub { color: rgba(250,247,242,0.65); margin: 0 0 1.5rem; }
.contact-form { display: grid; gap: 0.75rem; max-width: 480px; }
.contact-form label { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 0.7rem 0.85rem; border: 1px solid rgba(250,247,242,0.3);
  background: rgba(255,255,255,0.06); color: #fff; font-family: var(--sans); font-size: 1rem;
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form .btn { justify-self: start; margin-top: 0.35rem; }
.form-success {
  display: none; margin-top: 1rem; padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3);
}
.form-success.show { display: block; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.site-footer {
  background: var(--espresso); color: var(--cream-cup);
  padding: 2.25rem 0; font-size: 0.9rem;
}
.site-footer a:hover { color: var(--amber); }
.foot-grid { display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.foot-links { display: flex; flex-wrap: wrap; gap: 1rem; }

.legal { padding: 3rem 0 4rem; max-width: 760px; }
.legal h1 { font-family: var(--display); font-weight: 800; margin-top: 0; text-transform: uppercase; }
.legal h2 { font-family: var(--display); font-size: 1.15rem; margin-top: 2rem; font-weight: 700; text-transform: uppercase; }
.legal h3 { font-size: 1.05rem; margin-top: 1.25rem; }
.legal ul { padding-left: 1.2rem; }

.cookie-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; max-width: 520px;
  background: var(--ink); color: var(--foam); padding: 1.15rem 1.25rem;
  z-index: 100; display: none; box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.cookie-banner.show { display: block; }
.cookie-banner a { text-decoration: underline; }
.cookie-banner p { margin: 0 0 0.9rem; font-size: 0.9rem; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-actions button {
  border: 1px solid rgba(255,255,255,0.4); background: transparent; color: #fff;
  padding: 0.45rem 0.85rem; font-family: var(--sans); font-size: 0.8rem; cursor: pointer;
}
.cookie-actions .accept { background: var(--amber); border-color: var(--amber); }
.cookie-settings-panel {
  display: none; margin-top: 0.85rem; padding-top: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.cookie-settings-panel.open { display: grid; gap: 0.45rem; }
.cookie-settings-panel label { font-size: 0.88rem; }
.cookie-save { color: #fff !important; border: 1px solid #fff; background: transparent; padding: 0.45rem 0.85rem; }

@media (max-width: 860px) {
  .split, .menu-grid, .card-row, .gallery, .contact-bits { grid-template-columns: 1fr; }
  .btn-ghost { margin-left: 0; margin-top: 0.5rem; display: inline-block; }
  .menu-toggle { display: inline-block; }
  .header-inner { position: relative; flex-wrap: wrap; }
  .nav-main {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--foam); border-bottom: 1px solid var(--line);
    flex-direction: column; padding: 1rem 1.25rem 1.25rem; gap: 0.85rem;
  }
  .nav-main.open { display: flex; }
  .brand { flex-direction: column; gap: 0.15rem; }
}
