/* New York Style Pizza & Restaurant — neighborhood shop, not a landing page */

:root {
  --paper: #f4ead6;
  --paper-2: #ebe0c8;
  --paper-3: #e0d2b4;
  --ink: #1a120e;
  --ink-soft: #3f342c;
  --muted: #6a5c50;
  --red: #8c1c1c;
  --red-deep: #681414;
  --red-soft: #c45a4a;
  --rule: #c9b89a;
  --cream: #fff8ea;
  --focus: #1a120e;
  --shadow: 0 1px 0 rgba(26, 18, 14, 0.06);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 106.25%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background:
    radial-gradient(ellipse at 0% 0%, rgba(140, 28, 28, 0.045), transparent 42%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 27px,
      rgba(26, 18, 14, 0.015) 28px
    ),
    var(--paper);
  font-family: "Source Serif 4", "Iowan Old Style", Palatino, "Palatino Linotype", Georgia, serif;
  line-height: 1.55;
}

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

a {
  color: var(--red);
  text-underline-offset: 0.16em;
}

a:hover {
  color: var(--red-deep);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 0.75rem;
  top: -3.5rem;
  z-index: 20;
  padding: 0.55rem 0.8rem;
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
}

.skip:focus {
  top: 0.75rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(244, 234, 214, 0.94);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  max-width: 58rem;
  margin: 0 auto;
  padding: 0.85rem 1.1rem 0.95rem;
}

.brand {
  min-width: min(100%, 16rem);
  text-decoration: none;
  color: inherit;
}

.brand:hover {
  color: inherit;
}

.brand-mark {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.brand-mark svg {
  flex: 0 0 auto;
  width: 2.35rem;
  height: 2.35rem;
  margin-top: 0.12rem;
}

.brand-name {
  font-family: Fraunces, "Source Serif 4", Georgia, serif;
  font-size: 1.18rem;
  font-weight: 650;
  font-variation-settings: "SOFT" 30, "WONK" 1;
  line-height: 1.15;
  letter-spacing: -0.015em;
  max-width: 14.5ch;
}

.brand-place {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--ink);
  font-family: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.nav a:hover {
  background: var(--paper-2);
  color: var(--ink);
}

.nav a[aria-current="page"] {
  background: var(--cream);
  border-color: var(--rule);
}

.nav .call {
  background: var(--red);
  color: var(--cream);
}

.nav .call:hover {
  background: var(--red-deep);
  color: var(--cream);
}

main {
  flex: 1;
  width: 100%;
  max-width: 58rem;
  margin: 0 auto;
  padding: 1.6rem 1.1rem 3.25rem;
}

.hero {
  padding: 0.4rem 0 1.6rem;
  border-bottom: 1px solid var(--rule);
}

.kicker {
  margin: 0 0 0.65rem;
  color: var(--red);
  font-family: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 0.7rem;
  font-family: Fraunces, "Source Serif 4", Georgia, serif;
  font-size: clamp(2rem, 6vw, 3.15rem);
  font-weight: 650;
  font-variation-settings: "SOFT" 40, "WONK" 1;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.lede,
.hero-line {
  margin: 0 0 1.25rem;
  max-width: 34rem;
  color: var(--ink-soft);
  font-size: 1.2rem;
  line-height: 1.4;
}

.actions-spaced {
  margin-top: 1.15rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.55rem 1.1rem;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  font-family: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 650;
  text-decoration: none;
}

.btn:hover {
  background: var(--paper-2);
  color: var(--ink);
}

.btn-primary {
  background: var(--red);
  border-color: var(--red-deep);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--red-deep);
  color: var(--cream);
}

.prose {
  max-width: 38rem;
}

.prose p,
.stack p {
  margin: 1.05rem 0 0;
  font-size: 1.05rem;
}

.proof {
  margin: 1.5rem 0 0;
  padding: 0.95rem 1rem;
  border-left: 4px solid var(--red);
  background: var(--cream);
}

.proof p {
  margin: 0;
}

.hours-note {
  margin: 1.35rem 0 0;
  padding: 0.85rem 1rem;
  border: 1px dashed var(--rule);
  background: var(--paper-2);
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.hours-note strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--ink);
  font-family: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-intro {
  max-width: 40rem;
  margin-bottom: 1.75rem;
}

.menu-grid {
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 700px) {
  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.menu-section {
  padding: 1rem 1.05rem 1.1rem;
  border: 1px solid var(--rule);
  background: var(--cream);
}

.menu-section h2 {
  margin: 0 0 0.55rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--rule);
  font-family: Fraunces, Georgia, serif;
  font-size: 1.28rem;
  font-weight: 650;
}

.menu-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-section li {
  padding: 0.32rem 0;
  border-bottom: 1px dotted var(--paper-3);
  font-size: 1.02rem;
}

.menu-section li:last-child {
  border-bottom: 0;
}

.page-cta {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
}

.map-wrap {
  margin: 1.25rem 0 1.5rem;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--paper-2);
  aspect-ratio: 16 / 11;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.phone-xl {
  margin: 0.35rem 0 1.15rem;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.7rem, 5vw, 2.35rem);
  font-weight: 650;
  letter-spacing: -0.02em;
}

.phone-xl a {
  color: inherit;
  text-decoration: none;
}

.phone-xl a:hover {
  color: var(--red);
}

.order-apps {
  margin-top: 1.6rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
}

.large-order {
  margin-top: 1.5rem;
  font-size: 1.08rem;
}

.site-footer {
  margin-top: auto;
  background: #221814;
  color: #efe4d2;
}

.footer-inner {
  max-width: 58rem;
  margin: 0 auto;
  padding: 1.6rem 1.1rem 1.8rem;
}

.site-footer a {
  color: #f3c9b8;
}

.site-footer a:hover {
  color: #fff8ea;
}

.footer-name {
  margin: 0 0 0.45rem;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.15rem;
  font-weight: 650;
}

.footer-inner p {
  margin: 0.3rem 0 0;
  max-width: 36rem;
}

.footer-hours {
  margin-top: 0.85rem;
  color: #d8cbb6;
  font-size: 0.95rem;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid #4a3a32;
  color: #c9b8a4;
  font-family: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  font-size: 0.92rem;
}

@media (min-width: 720px) {
  .header-inner,
  main,
  .footer-inner {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }

  .brand-name {
    font-size: 1.28rem;
    max-width: none;
  }
}
