:root {
  --cream: #EFE7D4;
  --cream-deep: #E6DCC3;
  --ink: #111111;
  --ink-soft: #1a1a1a;
  --accent: #D7321E;
  --paper-shadow: rgba(40, 20, 0, 0.08);
}

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

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Jost', system-ui, sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.grain::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.09;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.08 0 0 0 0 0.05 0 0 0 0.9 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ============ TYPE ============ */
.display {
  font-family: 'Oswald', 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 0.88;
  text-transform: uppercase;
}
.display--cond {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.thin {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* ============ ZIGZAG BORDER ============ */
.zigzag {
  --h: 36px;
  --step: 24px;
  --color: var(--ink);
  height: var(--h);
  width: 100%;
  background:
    linear-gradient(135deg, var(--color) 25%, transparent 25.5%) 0 0 / var(--step) var(--h),
    linear-gradient(225deg, var(--color) 25%, transparent 25.5%) 0 0 / var(--step) var(--h);
  background-color: transparent;
}
.zigzag--top {
  background:
    linear-gradient(45deg, var(--cream) 50%, transparent 50%) 0 0 / var(--step) var(--h),
    linear-gradient(-45deg, var(--cream) 50%, transparent 50%) 0 0 / var(--step) var(--h);
  background-color: var(--color);
}
.zigzag--bottom {
  background:
    linear-gradient(45deg, var(--cream) 50%, transparent 50%) 0 0 / var(--step) var(--h),
    linear-gradient(-45deg, var(--cream) 50%, transparent 50%) 0 0 / var(--step) var(--h);
  background-color: var(--color);
}

/* ============ MARQUEE ============ */
.marquee {
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
  padding: 14px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.marquee__track {
  display: inline-flex;
  gap: 40px;
  white-space: nowrap;
  animation: slide 152s linear infinite;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 20px;
  text-transform: uppercase;
}
.marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 40px;
}
.marquee__track span::after {
  content: "★";
  font-size: 14px;
  color: var(--accent);
}
@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ LAYOUT ============ */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 40px 0 0;
  margin-bottom: 0;
}
@media (max-width: 820px) {
  .hero { padding-bottom: 32px; }
}
.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 24px 96px;
  text-align: center;
  gap: 36px;
}
.hero__byline {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: clamp(14px, 1.4vw, 17px);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
}
.hero__logo {
  width: clamp(200px, 36vw, 420px);
  height: auto;
}

.hero__tagline {
  max-width: 620px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.hero__tagline strong {
  font-weight: 700;
  color: var(--accent);
}

.hero__status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 14px;
  border: 2px solid var(--ink);
  background: var(--cream);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 14px;
}
.hero__status .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #29a35b;
  box-shadow: 0 0 0 0 rgba(41, 163, 91, 0.7);
  animation: pulse 2s infinite;
}
.hero__status.closed .dot {
  background: #aaaaaa;
  animation: none;
}
.hero__status .meta {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  opacity: 0.7;
  padding-left: 8px;
  margin-left: 6px;
  border-left: 1px solid rgba(0,0,0,0.25);
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(41, 163, 91, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(41, 163, 91, 0); }
  100% { box-shadow: 0 0 0 0 rgba(41, 163, 91, 0); }
}

/* ============ SECTION SHELL ============ */
section.block {
  padding: 96px 0;
  position: relative;
}
section.block.dark {
  background: var(--ink);
  color: var(--cream);
}
.eyebrow {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 13px;
  opacity: 0.7;
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 2px solid currentColor;
  margin-bottom: 32px;
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.9;
  letter-spacing: 0.005em;
  margin: 0 0 16px;
}
.section-title .accent { color: var(--accent); }
.section-lede {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  max-width: 600px;
  opacity: 0.85;
}

/* ============ MENU ============ */
.menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 16px;
  border-top: 2px dashed currentColor;
}
.menu__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 16px;
  padding: 28px 28px;
  border-bottom: 2px dashed currentColor;
  border-right: 2px dashed currentColor;
}
.menu__item:nth-child(2n) { border-right: none; }
.menu__item .num {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--accent);
  min-width: 36px;
}
.menu__item .body h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: 0.02em;
  margin: 0 0 4px;
  line-height: 1;
}
.menu__item .body p {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 14.5px;
  margin: 0;
  opacity: 0.75;
  line-height: 1.5;
}
.menu__item .price {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.menu__item .price .dollar {
  font-size: 0.6em;
  vertical-align: 0.3em;
  margin-right: 1px;
  opacity: 0.7;
}

/* ============ CONTACT BUTTONS ============ */
.contact-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}
.contact-btn,
button.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: 2px solid var(--cream);
  color: var(--cream);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
button.contact-btn { background: transparent; cursor: pointer; }
.contact-btn:hover {
  background: var(--cream);
  color: var(--ink);
}
.contact-details {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--cream);
  opacity: 0.9;
  margin-top: 24px;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ============ ORDER / CONTACT ============ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 48px;
}
.contact__card {
  padding: 48px 36px;
  border: 2px solid var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  color: var(--cream);
  transition: background 0.2s;
  text-decoration: none;
}
.contact__card + .contact__card { border-left: none; }
.contact__card--phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 48px 36px;
}
.contact__phone-icons {
  display: flex;
  gap: 32px;
  align-items: center;
}
.contact__icon-link {
  display: grid;
  place-items: center;
  color: var(--cream);
  transition: color 0.2s;
}
.contact__icon-link:hover { color: var(--accent); }
.contact__icon-link svg { stroke: currentColor; stroke-width: 2.2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.contact__phone-numbers {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.contact__card:not(.contact__card--phone):hover {
  background: var(--cream);
  color: var(--ink);
}
.contact__card:not(.contact__card--phone):hover .contact__icon svg { stroke: var(--ink); }
.contact__card--phone:hover {
  background: var(--cream);
  color: var(--ink);
}
.contact__card--phone:hover .contact__icon-link { color: var(--ink); }
.contact__card--phone:hover .contact__icon-link:hover { color: var(--accent); }
.contact__icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
}
.contact__icon svg { stroke: currentColor; stroke-width: 2.2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.contact__card .label {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.7;
}
.contact__card .number {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.8vw, 26px);
  letter-spacing: 0.02em;
  line-height: 1;
}
.contact__card .sub {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 14px;
  opacity: 0.65;
  letter-spacing: 0.02em;
}

.signature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 80px;
  color: var(--cream);
}
.about__sig {
  align-items: flex-start;
  margin-top: 0;
  margin-bottom: 28px;
}
.signature .name {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: 0.02em;
}
.role {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* ============ ABOUT ============ */
.aboutrow {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.aboutrow .big-quote {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(42px, 5.5vw, 78px);
  line-height: 0.92;
  letter-spacing: 0.005em;
  margin: 0;
}
.aboutrow .big-quote em {
  font-style: normal;
  color: var(--accent);
}
.aboutrow .body p {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 18px;
}

.stamps {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.stamp {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 10px;
  line-height: 1.1;
  letter-spacing: 0.08em;
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 50%;
  transform: rotate(-6deg);
  padding: 4px;
  background: var(--cream-deep);
}
.stamp:nth-child(2) { transform: rotate(4deg); }
.stamp:nth-child(3) { transform: rotate(-2deg); }
.stamp:nth-child(4) { transform: rotate(7deg); }

/* ============ NEWSLETTER ============ */
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-input {
  flex: 1;
  padding: 14px 18px;
  font-family: 'Jost', sans-serif;
  font-size: 20px;
  font-weight: 300;
  border: 2px solid var(--cream);
  border-right: none;
  background: transparent;
  color: var(--cream);
  outline: none;
}
.newsletter-input::placeholder { color: var(--cream); opacity: 0.45; }
.newsletter-btn {
  padding: 14px 24px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--cream);
  color: var(--ink);
  border: 2px solid var(--cream);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.newsletter-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--cream);
}

.newsletter-msg {
  margin-top: 20px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: var(--cream);
  opacity: 0.95;
  min-height: 24px;
}

/* ============ MENU PHOTO HEADER ============ */
section.block.menu-section { padding-top: 0; }
.menu-photo-header {
  position: relative;
  height: clamp(300px, 42vw, 580px);
  overflow: hidden;
}
.menu-photo-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}
.menu-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 80px 0 44px;
  background: linear-gradient(to top, rgba(17,17,17,0.72) 0%, transparent 100%);
  color: var(--cream);
}
.menu-photo-overlay .eyebrow { color: var(--cream); border-color: rgba(239,231,212,0.5); }
.menu-photo-overlay .section-title { color: var(--cream); margin-bottom: 0; }

/* ============ SOCIAL CTA ============ */
.social-cta {
  margin-top: 48px;
}
.social-cta__divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  color: var(--cream);
  opacity: 0.5;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.social-cta__divider::before,
.social-cta__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: currentColor;
}
.social-cta__cards {
  display: flex;
  gap: 12px;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
}
.social-cta__card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: 2px solid var(--cream);
  color: var(--cream);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.social-cta__card:hover {
  background: var(--cream);
  color: var(--ink);
}
.social-cta__name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.social-cta__handle {
  display: none;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 13px;
  opacity: 0.65;
}

/* ============ FOOTER ============ */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: 48px 0 40px;
  text-align: center;
}
footer .site-logo {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: 0.12em;
}
footer .fine {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  opacity: 0.6;
  margin-top: 10px;
}
footer .social-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
}
footer .social-links a {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 13px;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.2s;
}
footer .social-links a:hover { opacity: 1; }

/* ============ RESPONSIVE ============ */
@media (max-width: 820px) {
  .menu { grid-template-columns: 1fr; }
  .menu__item { border-right: none !important; }
  .contact { grid-template-columns: 1fr; }
  .contact__card + .contact__card { border-left: 2px solid var(--cream); border-top: none; }
  .contact__sublink + .contact__sublink { border-top: 2px solid var(--cream); border-left: none; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-right: 2px solid var(--ink); border-bottom: none; }
  .aboutrow { grid-template-columns: 1fr; gap: 40px; }
  .wrap { padding: 0 20px; }
  section.block { padding: 64px 0; }
}
