:root {
  --bg: #f6ecd6;
  --paper: #fbf6e8;
  --paper-2: #f1e3c4;
  --ink: #1f1812;
  --ink-soft: #4a3a2a;
  --muted: #6b5644;
  --primary: #8a2a26;
  --primary-dark: #6e1f1c;
  --accent: #d09a3a;
  --accent-dark: #b8842b;
  --green: #4a5d44;
  --line: rgba(31, 24, 18, 0.14);
  --line-strong: rgba(31, 24, 18, 0.32);
  --shadow: 0 24px 60px -28px rgba(31, 24, 18, 0.35);
  --radius: 14px;
  --radius-sm: 8px;
  --container: 1140px;
  --display: "Fraunces", "Playfair Display", Georgia, serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1, h2, h3 { font-family: var(--display); font-weight: 700; letter-spacing: -0.01em; line-height: 1.1; margin: 0; }
h1 { font-size: clamp(2.4rem, 6.2vw, 4.8rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }

em { font-style: italic; color: var(--primary); }

.eyebrow,
.section-kicker {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1rem;
}

.section-sub { color: var(--ink-soft); font-size: 1.05rem; max-width: 56ch; margin: 0.8rem auto 0; }
.section-head { margin-bottom: 2.4rem; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; max-width: 56ch; }

/* ───── Buttons ───── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--paper); }
.btn-primary:hover { background: var(--primary-dark); color: var(--paper); transform: translateY(-1px); }
.btn-outline { color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }

/* ───── Header ───── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 236, 214, 0.85);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(246, 236, 214, 0.96);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  text-decoration: none;
}
.brand-mark { width: 36px; height: 36px; }
.brand-text {
  display: flex;
  flex-direction: column;
  font-family: var(--display);
  line-height: 0.92;
  letter-spacing: 0.02em;
}
.brand-line-1 { font-size: 0.85rem; font-weight: 500; color: var(--muted); letter-spacing: 0.18em; text-transform: uppercase; }
.brand-line-2 { font-size: 1.5rem; font-weight: 900; color: var(--ink); }

.primary-nav {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.primary-nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.97rem;
  position: relative;
  padding: 0.4rem 0;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.primary-nav a:hover::after { transform: scaleX(1); }
.header-cta { padding: 0.6rem 1.1rem; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 1px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  border-top: 1px solid var(--line);
  padding: 0.5rem 1.5rem 1rem;
  display: flex;
  flex-direction: column;
}
.mobile-nav a {
  color: var(--ink);
  font-weight: 500;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a:last-child { border-bottom: 0; }

/* ───── Hero ───── */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(3rem, 7vw, 5.5rem);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -10% -5% auto auto;
  width: 50%;
  height: 60%;
  background: radial-gradient(circle, rgba(208, 154, 58, 0.18), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-copy h1 { margin-bottom: 1.2rem; }
.hero-copy h1 em { font-style: italic; color: var(--primary); }
.lede { font-size: 1.18rem; color: var(--ink-soft); max-width: 46ch; margin-bottom: 2rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 2.2rem; }
.hero-meta {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 1.2rem 2rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
}
.hero-meta strong { color: var(--ink); display: block; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 0.2rem; font-weight: 700; }

.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 380px;
}
.hero-art-card {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--paper) 0%, var(--paper-2) 100%);
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  transform: rotate(-3deg);
}
.hen-illo { width: 100%; height: auto; }
.hero-stamp {
  position: absolute;
  right: -4px; bottom: 12px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  padding: 1.4rem 1rem;
  text-align: center;
  font-family: var(--display);
  width: 130px; height: 130px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transform: rotate(8deg);
  border: 4px solid var(--paper);
  box-shadow: 0 12px 28px -10px rgba(31,24,18,.45);
}
.hero-stamp span { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.hero-stamp strong { font-family: var(--display); font-size: 1.4rem; font-weight: 900; line-height: 1.1; margin: 0.15rem 0; }

/* ───── About ───── */
.about {
  padding: clamp(3rem, 7vw, 5rem) 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.about-grid .section-head { margin-bottom: 0; position: sticky; top: 100px; }
.about-body p { font-size: 1.08rem; color: var(--ink-soft); }
.about-stats {
  grid-column: 1 / -1;
  list-style: none;
  margin: 2.4rem 0 0;
  padding: 2rem 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.about-stats li { display: flex; flex-direction: column; gap: 0.2rem; }
.about-stats strong { font-family: var(--display); font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 900; color: var(--primary); line-height: 1; }
.about-stats span { font-size: 0.95rem; color: var(--muted); }

/* ───── Menu ───── */
.menu {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: var(--bg);
}
.menu-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: 1rem;
}
.menu-group h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 0.7rem;
  margin-bottom: 1.4rem;
}
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li { margin-bottom: 1.6rem; }
.menu-line { display: flex; align-items: baseline; gap: 0.6rem; margin-bottom: 0.3rem; }
.menu-name { font-family: var(--display); font-size: 1.18rem; font-weight: 600; color: var(--ink); }
.menu-dots { flex: 1; height: 0; border-bottom: 2px dotted var(--line-strong); transform: translateY(-3px); }
.menu-price {
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.menu-list p { font-size: 0.97rem; color: var(--ink-soft); margin: 0; }
.menu-foot { text-align: center; margin-top: 2.4rem; color: var(--muted); font-style: italic; }

/* ───── Store ───── */
.store {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
  margin-top: 1.5rem;
}
.store-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.store-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: 0 12px 30px -16px rgba(31, 24, 18, 0.25);
}
.store-icon {
  width: 44px; height: 44px;
  background: var(--paper-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.store-icon svg { width: 26px; height: 26px; }
.store-card h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.store-card p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }

/* ───── Visit ───── */
.visit {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: var(--ink);
  color: var(--paper);
}
.visit .section-kicker { color: var(--accent); }
.visit h2 { color: var(--paper); max-width: 22ch; }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.visit-cards { display: grid; gap: 1rem; }
.visit-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(251,246,232,0.12);
  border-radius: var(--radius);
  padding: 1.8rem;
}
.visit-card h3 { font-size: 1.3rem; margin-bottom: 1rem; color: var(--accent); }
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { text-align: left; padding: 0.45rem 0; font-weight: 500; border-bottom: 1px dotted rgba(251,246,232,0.18); }
.hours th { color: rgba(251,246,232,0.6); font-weight: 600; width: 40%; }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
.visit-card .muted { color: rgba(251,246,232,0.55); font-size: 0.9rem; margin-top: 1rem; }
.visit-card address { font-style: normal; line-height: 1.7; color: var(--paper); }
.visit-card address strong { color: var(--accent); font-family: var(--display); font-size: 1.2rem; }
.visit-card .btn-outline { color: var(--paper); border-color: var(--paper); }
.visit-card .btn-outline:hover { background: var(--paper); color: var(--ink); }
.visit-actions { margin-top: 1.4rem; }

/* ───── Contact ───── */
.contact {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: var(--bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 1rem;
}
.contact-list li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: 1px solid var(--line); }
.contact-label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.contact-value { font-size: 1.05rem; font-weight: 500; color: var(--ink); }
a.contact-value { color: var(--primary); }
a.contact-value:hover { color: var(--primary-dark); text-decoration: underline; }

/* ───── Footer ───── */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.footer-brand .brand-line-1 { color: var(--accent); }
.footer-brand .brand-line-2 { color: var(--paper); font-size: 1.6rem; }
.footer-brand p { color: rgba(251,246,232,0.6); font-size: 0.95rem; margin-top: 0.6rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1rem 1.6rem; justify-content: flex-end; }
.footer-nav a { color: var(--paper); font-weight: 500; }
.footer-nav a:hover { color: var(--accent); }
.footer-fine {
  grid-column: 1 / -1;
  margin: 1.6rem 0 0;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(251,246,232,0.14);
  color: rgba(251,246,232,0.5);
  font-size: 0.86rem;
}

/* ───── Responsive ───── */
@media (max-width: 880px) {
  .hero-grid,
  .about-grid,
  .visit-grid,
  .contact-grid,
  .menu-groups,
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .about-grid .section-head { position: static; }
  .hero-art { min-height: 320px; margin-top: 1rem; }
  .hero-art-card { max-width: 280px; }
  .hero-stamp { width: 110px; height: 110px; }
  .footer-nav { justify-content: flex-start; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .primary-nav,
  .header-cta { display: none; }
  .nav-toggle { display: block; }
  .about-stats { grid-template-columns: 1fr; gap: 1.4rem; }
  .about-stats li { flex-direction: row; align-items: baseline; gap: 1rem; }
  .about-stats strong { font-size: 2.4rem; }
}

@media (max-width: 480px) {
  .hero-stamp { width: 96px; height: 96px; padding: 1rem 0.6rem; }
  .hero-stamp strong { font-size: 1.15rem; }
  .contact-list li { grid-template-columns: 1fr; gap: 0.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
