
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
  background: #fff;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; border-radius: 8px; }
button, input, textarea, select { font: inherit; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #000;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.logo img { width: 64px; height: 64px; object-fit: contain; border-radius: 50%; }
.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.site-nav a {
  color: #fff;
  font-weight: 700;
  font-size: 0.98rem;
}
.site-nav a:hover, .site-nav a.is-active { color: #c0151a; }
.site-nav select {
  background: #fff;
  color: #000;
  border: 0;
  border-radius: 6px;
  padding: 7px 10px;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle .bar {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  border-radius: 999px;
}

.hero {
  min-height: 62vh;
  padding: 88px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
}
.hero-short { min-height: 40vh; }
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.52), rgba(0,0,0,0.58));
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}
.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1.1;
}
.hero p {
  margin: 0 auto 28px;
  max-width: 760px;
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.cta-row.center { justify-content: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 0;
  border-radius: 8px;
  background: #c0151a;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.btn:hover { background: #a70f14; }
.btn-secondary {
  background: #242424;
}
.btn-secondary:hover {
  background: #111;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 20px;
}
.section.narrow { max-width: 760px; text-align: center; }
.section h2 {
  margin: 0 0 18px;
  color: #c0151a;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}
.section-intro, .section-note { max-width: 800px; }
.section-note { margin-top: 18px; font-style: italic; }

.offerings {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.offerings.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.offer-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}
.offer-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 0;
}
.offer-card .content { padding: 18px; }
.offer-card h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
  color: #c0151a;
}
.offer-card p { margin: 0; }

.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 34px;
  align-items: center;
}
.split.reverse { grid-template-columns: 1fr 1.1fr; }
.split.reverse .split-media { order: 1; }
.split.reverse .split-text { order: 2; }
.split-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.contact-list p { margin: 0 0 18px; }
.map-wrap { margin-top: 28px; border-radius: 14px; overflow: hidden; box-shadow: 0 4px 18px rgba(0,0,0,0.08); }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.faq-item {
  padding: 20px;
  border-radius: 14px;
  background: #faf7f7;
  border: 1px solid rgba(192,21,26,0.08);
}
.faq-item h3 { margin: 0 0 10px; font-size: 1.08rem; }
.faq-item p { margin: 0; }

.booking-section { max-width: 980px; }
.booking-copy { max-width: 760px; margin-bottom: 24px; }
.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 24px;
  background: #faf7f7;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.06);
}
.booking-form label { display: block; }
.booking-form span { display: block; margin-bottom: 8px; font-weight: 700; }
.booking-form input, .booking-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #d4d4d4;
  background: #fff;
}
.booking-form .full { grid-column: 1 / -1; }
.booking-feedback {
  margin: 0;
  color: #b00020;
  font-weight: 700;
}
.booking-fallback { margin-top: 18px; }

.contact-banner {
  padding: 56px 20px;
  background: #121212;
  color: #fff;
  text-align: center;
}

.site-footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 24px 20px;
}

@media (max-width: 980px) {
  .offerings { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-media, .split.reverse .split-text { order: initial; }
  .split-media img { height: 320px; }
}
@media (max-width: 760px) {
  .header-inner { flex-wrap: wrap; }
  .nav-toggle { display: inline-block; }
  .site-nav {
    width: 100%;
    display: none;
    margin-left: 0;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 6px;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a, .site-nav select { width: 100%; }
  .site-nav select { max-width: 110px; }
  .offerings, .offerings.two, .faq-grid, .booking-form { grid-template-columns: 1fr; }
  .hero { min-height: 54vh; padding: 76px 18px; }
  .split-media img { height: 260px; }
}

/* Catering page */
.catering-page .intro-panel {
  max-width: 920px;
  margin: 0 auto 34px;
  text-align: center;
}
.catering-page .intro-panel h2 {
  color: #c0151a;
  margin-bottom: 12px;
}
.catering-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 30px 0 42px;
}
.catering-form-box {
  max-width: 840px;
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  padding: 28px;
}
.reservation-form {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}
.reservation-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.reservation-form .field {
  display: grid;
  gap: 8px;
}
.reservation-form label {
  font-weight: 700;
}
.reservation-form input,
.reservation-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #d4d4d4;
  background: #fff;
}
.reservation-form input:focus,
.reservation-form textarea:focus {
  outline: none;
  border-color: #c0151a;
  box-shadow: 0 0 0 3px rgba(192,21,26,0.12);
}
@media (max-width: 980px) {
  .catering-cards { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .reservation-form .form-row { grid-template-columns: 1fr; }
}


/* Content refinements: menu jump, booking notes, catering clarity */
.menu-jump {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 24px auto 32px;
}
.menu-jump a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-weight: 700;
  transition: transform .15s ease, background .15s ease;
}
.menu-jump a:hover {
  background: #c0151a;
  transform: translateY(-1px);
}
.booking-note {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-left: 4px solid #c0151a;
  background: rgba(192,21,26,0.08);
  font-weight: 700;
  border-radius: 8px;
}
.catering-guidelines {
  margin: 10px 0 36px;
}
.catering-guidelines h2 {
  text-align: center;
  color: #c0151a;
  margin-bottom: 20px;
}
.catering-guideline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.catering-guideline-grid .compact-card {
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.07);
}
.catering-guideline-grid .compact-card h3 {
  margin-top: 0;
  color: #111;
}
@media (max-width: 900px) {
  .catering-guideline-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .menu-jump {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .menu-jump a {
    white-space: nowrap;
  }
}


/* === Premium visual redesign layer === */
:root {
  --vp-black: #080808;
  --vp-red: #c0151a;
  --vp-red-dark: #8f0f13;
  --vp-cream: #fff8ef;
  --vp-warm: #f6eee4;
  --vp-ink: #171414;
  --vp-muted: #6d625c;
  --vp-line: rgba(0,0,0,.09);
  --vp-shadow: 0 18px 45px rgba(0,0,0,.12);
}

body {
  background: linear-gradient(180deg, #fffaf5 0%, #ffffff 34%, #fff8ef 100%);
}

.site-header {
  box-shadow: 0 6px 22px rgba(0,0,0,.18);
}

.hero-premium {
  min-height: 72vh;
  background-position: center;
}
.hero-premium::before {
  background:
    radial-gradient(circle at 20% 30%, rgba(192,21,26,.34), transparent 36%),
    linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.54), rgba(0,0,0,.25));
}
.hero-premium .hero-content {
  text-align: left;
  margin-right: auto;
  max-width: 780px;
}
.hero-premium h1 {
  letter-spacing: -0.045em;
}
.hero-premium p {
  margin-left: 0;
}
.hero-premium .cta-row {
  justify-content: flex-start;
}

.section-muted {
  background: var(--vp-cream);
}

.eyebrow {
  display: inline-flex;
  color: var(--vp-red);
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .78rem;
  margin-bottom: 10px;
}

.signature-section {
  max-width: 1180px;
  margin: -52px auto 0;
  position: relative;
  z-index: 5;
  padding: 0 20px 54px;
}
.signature-copy {
  background: var(--vp-black);
  color: #fff;
  border-radius: 24px 24px 0 0;
  padding: 34px clamp(22px, 4vw, 54px);
  box-shadow: var(--vp-shadow);
}
.signature-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -.04em;
}
.signature-copy p {
  color: rgba(255,255,255,.80);
  max-width: 840px;
  margin: 0;
  font-size: 1.05rem;
}
.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 0;
  background: #fff;
  border-radius: 0 0 24px 24px;
  overflow: hidden;
  box-shadow: var(--vp-shadow);
}
.reason-card {
  display: grid;
  grid-template-rows: 210px auto;
  min-height: 100%;
  border-right: 1px solid var(--vp-line);
}
.reason-card:last-child {
  border-right: 0;
}
.reason-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 0;
}
.reason-card div {
  padding: 24px;
}
.reason-card h3 {
  margin: 0 0 8px;
  color: var(--vp-ink);
  font-size: 1.2rem;
}
.reason-card p {
  margin: 0;
  color: var(--vp-muted);
}
.reason-card-dark {
  background: #111;
  color: #fff;
}
.reason-card-dark h3 {
  color: #fff;
}
.reason-card-dark p {
  color: rgba(255,255,255,.76);
}

.offer-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,.09);
  border: 1px solid rgba(0,0,0,.06);
}
.offer-card img {
  border-radius: 0;
  height: 230px;
  width: 100%;
  object-fit: cover;
}
.offer-card .content {
  padding: 22px;
}
.offer-card h3 {
  color: var(--vp-ink);
  margin-top: 0;
}
.offer-card p {
  color: var(--vp-muted);
}

/* Menu redesign */
.menu-page-redesign {
  padding-top: 42px;
}
.menu-page .menu-intro {
  background: var(--vp-black);
  color: #fff;
  border-radius: 24px;
  padding: clamp(26px, 4vw, 46px);
  box-shadow: var(--vp-shadow);
}
.menu-page .menu-intro p {
  max-width: 900px;
  margin: 0 auto;
  color: rgba(255,255,255,.84);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.menu-visual-panel {
  max-width: 1120px;
  margin: 26px auto 30px;
  display: grid;
  grid-template-columns: .88fr 1.55fr;
  gap: 22px;
  align-items: stretch;
}
.menu-visual-copy {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--vp-line);
  box-shadow: 0 10px 28px rgba(0,0,0,.07);
}
.menu-visual-copy p {
  margin: 0;
  color: var(--vp-muted);
  font-size: 1.02rem;
}
.menu-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.menu-feature-grid article {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--vp-line);
  box-shadow: 0 10px 28px rgba(0,0,0,.07);
}
.menu-feature-grid img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 0;
}
.menu-feature-grid h3 {
  margin: 16px 16px 6px;
  font-size: 1.02rem;
}
.menu-feature-grid p {
  margin: 0 16px 18px;
  color: var(--vp-muted);
  font-size: .92rem;
  line-height: 1.45;
}

.menu-jump {
  position: sticky;
  top: 86px;
  z-index: 20;
  background: rgba(255,248,239,.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 999px;
  padding: 10px;
  box-shadow: 0 10px 28px rgba(0,0,0,.07);
}
.menu-jump a {
  background: #fff;
  color: var(--vp-ink);
  border: 1px solid rgba(0,0,0,.08);
}
.menu-jump a:hover {
  color: #fff;
  background: var(--vp-red);
}

.menu-section {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--vp-shadow);
}
.menu-section > h2 {
  background: var(--vp-black);
  color: #fff !important;
  margin: -28px -28px 0 !important;
  padding: 30px 30px 8px;
}
.menu-section > .section-note,
.menu-section > .pizza-note {
  background: var(--vp-black);
  color: rgba(255,255,255,.72) !important;
  margin: 0 -28px 24px !important;
  padding: 0 30px 26px;
}
.menu-image-row,
.menu-banner {
  margin-bottom: 22px;
}
.menu-image-row img,
.menu-banner img {
  border-radius: 18px;
  height: 230px;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
}
.menu-item {
  padding: 16px 0;
  border-top: 1px solid rgba(0,0,0,.08);
}
.menu-item h3 {
  font-size: 1.08rem;
  letter-spacing: -.01em;
}
.menu-item p {
  color: var(--vp-muted);
}
.prices {
  min-width: 112px;
}
.price,
.price-single,
.price-inline,
.xl {
  border-radius: 12px;
  padding: 7px 10px;
}
.price,
.price-single,
.price-inline {
  background: #f5f0ea;
}
.xl {
  background: rgba(192,21,26,.10);
  color: var(--vp-red);
}

/* Catering redesign */
.catering-page .intro-panel {
  background: var(--vp-black);
  color: #fff;
  border-radius: 24px;
  padding: clamp(26px, 4vw, 48px);
  box-shadow: var(--vp-shadow);
}
.catering-page .intro-panel h2 {
  color: #fff !important;
  margin-top: 0;
}
.catering-page .intro-panel p {
  color: rgba(255,255,255,.82);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.catering-audience {
  margin: 30px 0 34px;
}
.catering-audience h2 {
  text-align: center;
  color: var(--vp-red);
  margin-bottom: 18px;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.audience-grid article {
  background: #fff;
  border: 1px solid var(--vp-line);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(0,0,0,.07);
}
.audience-grid span {
  display: inline-flex;
  color: var(--vp-red);
  font-weight: 900;
  margin-bottom: 14px;
}
.audience-grid h3 {
  margin: 0 0 8px;
}
.audience-grid p {
  margin: 0;
  color: var(--vp-muted);
}
.catering-cards {
  margin-top: 12px;
}

/* Booking and contact refinements */
.booking-section,
.catering-form-box {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--vp-shadow);
  border: 1px solid var(--vp-line);
}
.booking-note {
  background: #fff4f2;
  border-left: 5px solid var(--vp-red);
}

/* Locale */
.split {
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,.07);
}
.split-media img {
  border-radius: 0;
}

/* Responsive redesign */
@media (max-width: 980px) {
  .hero-premium .hero-content {
    text-align: center;
    margin: 0 auto;
  }
  .hero-premium p {
    margin-left: auto;
  }
  .hero-premium .cta-row {
    justify-content: center;
  }
  .reason-grid,
  .menu-visual-panel,
  .audience-grid {
    grid-template-columns: 1fr;
  }
  .reason-card {
    grid-template-rows: 240px auto;
    border-right: 0;
    border-bottom: 1px solid var(--vp-line);
  }
  .reason-card:last-child {
    border-bottom: 0;
  }
  .menu-feature-grid {
    grid-template-columns: 1fr;
  }
  .menu-feature-grid img {
    height: 220px;
  }
}
@media (max-width: 760px) {
  .signature-section {
    margin-top: -26px;
    padding-left: 14px;
    padding-right: 14px;
  }
  .signature-copy,
  .menu-page .menu-intro,
  .catering-page .intro-panel {
    border-radius: 18px;
  }
  .reason-grid {
    border-radius: 0 0 18px 18px;
  }
  .menu-jump {
    top: 72px;
    border-radius: 18px;
  }
  .menu-section > h2 {
    margin: -22px -22px 0 !important;
    padding: 24px 22px 8px;
  }
  .menu-section > .section-note,
  .menu-section > .pizza-note {
    margin: 0 -22px 22px !important;
    padding: 0 22px 22px;
  }
  .menu-item {
    grid-template-columns: 1fr;
  }
  .prices {
    text-align: left;
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
  }
}


/* Catering content upgrade and correct sauce imagery */
.catering-strong-panel {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  align-items: stretch;
  margin: 30px 0 34px;
}
.catering-strong-copy {
  background: #111;
  color: #fff;
  border-radius: 24px;
  padding: clamp(28px, 4vw, 46px);
  box-shadow: 0 18px 45px rgba(0,0,0,.14);
}
.catering-strong-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.06;
  letter-spacing: -.04em;
}
.catering-strong-copy p {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 1.04rem;
}
.catering-strong-photo {
  min-height: 320px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,.14);
}
.catering-strong-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
@media (max-width: 900px) {
  .catering-strong-panel {
    grid-template-columns: 1fr;
  }
  .catering-strong-photo {
    min-height: 240px;
  }
}


/* Home catering panel fix */
.home-catering-panel {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 20px;
}
.home-catering-card {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: stretch;
  background: #111;
  color: #fff;
  border-radius: 28px;
  padding: clamp(24px, 4vw, 44px);
  box-shadow: 0 20px 52px rgba(0,0,0,.18);
  overflow: hidden;
}
.home-catering-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.home-catering-copy h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: -.045em;
}
.home-catering-copy p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
  max-width: 680px;
}
.home-catering-actions {
  margin-top: 28px;
  gap: 14px;
}
.home-catering-actions .btn-secondary {
  background: #fff;
  color: #111;
}
.home-catering-actions .btn-secondary:hover {
  background: #f2e9df;
}
.home-catering-photo {
  min-height: 340px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0,0,0,.28);
}
.home-catering-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
@media (max-width: 900px) {
  .home-catering-card {
    grid-template-columns: 1fr;
  }
  .home-catering-photo {
    min-height: 260px;
  }
}
@media (max-width: 620px) {
  .home-catering-panel {
    padding: 42px 14px;
  }
  .home-catering-card {
    padding: 22px;
    border-radius: 22px;
  }
  .home-catering-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .home-catering-actions .btn {
    width: 100%;
  }
}
