/* ==========================================================================
   Crispy Slice Pizza & Wings - Woodstock
   Single stylesheet. No frameworks, no build step.
   ========================================================================== */

:root {
  --blue:        #3853a4;
  --blue-dark:   #252362;
  --blue-darker: #1a1a4a;
  --red:         #d62828;
  --red-dark:    #a81d1d;
  --gold:        #f4a300;
  --ink:         #1c1c22;
  --body:        #4a4a55;
  --muted:       #767683;
  --line:        #e3e3ea;
  --cream:       #faf7f2;
  --white:       #ffffff;

  --radius:   14px;
  --radius-s: 9px;
  --shadow:    0 2px 8px rgba(28,28,34,.07);
  --shadow-lg: 0 12px 32px rgba(28,28,34,.13);
  --wrap: 1140px;

  --sans: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 .5em;
  font-weight: 800;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1rem; }

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

img { max-width: 100%; height: auto; display: block; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 20px;
}

.section { padding-block: clamp(48px, 7vw, 84px); }
.section--cream { background: var(--cream); }
.section--blue  { background: var(--blue-dark); color: rgba(255,255,255,.82); }
.section--blue h2, .section--blue h3 { color: #fff; }

.section-head { text-align: center; max-width: 680px; margin: 0 auto clamp(28px, 4vw, 48px); }
.section-head p { color: var(--muted); font-size: 1.05rem; margin: 0; }
.section--blue .section-head p { color: rgba(255,255,255,.75); }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .6rem;
}
.section--blue .eyebrow { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 13px 26px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  text-align: center;
  transition: background-color .16s ease, color .16s ease, border-color .16s ease, transform .16s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-dark); color: #fff; }
.btn--blue { background: var(--blue); color: #fff; }
.btn--blue:hover { background: var(--blue-dark); color: #fff; }
.btn--ghost { border-color: currentColor; color: #fff; background: transparent; }
.btn--ghost:hover { background: #fff; color: var(--blue-dark); border-color: #fff; }
.btn--outline { border-color: var(--blue); color: var(--blue); background: transparent; }
.btn--outline:hover { background: var(--blue); color: #fff; }
.btn--block { display: flex; width: 100%; }
.btn--sm { padding: 10px 20px; font-size: .92rem; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--blue-darker);
  color: rgba(255,255,255,.9);
  font-size: .88rem;
}
.topbar .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px 20px;
  padding-block: 9px;
}
.topbar a { color: #fff; font-weight: 600; }
.topbar__items { display: flex; flex-wrap: wrap; gap: 6px 20px; align-items: center; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--blue);
  box-shadow: var(--shadow);
}
.site-header .wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 10px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand:hover { text-decoration: none; }
.brand img { height: 54px; width: auto; }
.brand__text { color: #fff; line-height: 1.15; }
.brand__name { display: block; font-weight: 800; font-size: 1.02rem; letter-spacing: -.01em; }
.brand__loc {
  display: block;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: var(--radius-s);
  color: #fff;
  padding: 9px 13px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav a {
  display: block;
  padding: 10px 15px;
  color: rgba(255,255,255,.92);
  font-weight: 600;
  font-size: .97rem;
  border-radius: var(--radius-s);
}
.nav a:hover { background: rgba(255,255,255,.14); color: #fff; text-decoration: none; }
.nav a.is-active { background: rgba(0,0,0,.22); color: #fff; }
.nav .nav__cta { margin-left: 8px; }
.nav .nav__cta a { background: var(--red); color: #fff; border-radius: 999px; padding: 11px 22px; }
.nav .nav__cta a:hover { background: var(--red-dark); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  background: var(--blue-dark) center/cover no-repeat;
  text-align: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,74,.78), rgba(26,26,74,.88));
}
.hero .wrap {
  position: relative;
  padding-block: clamp(64px, 11vw, 120px);
}
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero__lede {
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  color: rgba(255,255,255,.88);
  max-width: 640px;
  margin: 0 auto 1.8rem;
}
.hero__badge {
  display: inline-block;
  background: var(--gold);
  color: var(--blue-darker);
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- Page banner (inner pages) ---------- */
.page-banner {
  background: var(--blue-dark);
  color: #fff;
  text-align: center;
  padding-block: clamp(40px, 6vw, 66px);
}
.page-banner h1 { color: #fff; margin-bottom: .25em; }
.page-banner p { color: rgba(255,255,255,.78); margin: 0; }

/* ---------- Deals ---------- */
.deals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
  align-items: stretch;
}
.deal {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}
.deal:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.deal__media { position: relative; aspect-ratio: 4 / 3; background: var(--cream); }
.deal__media img { width: 100%; height: 100%; object-fit: cover; }
.deal__media img.is-bottom { object-position: bottom; }
.deal__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 999px;
}
.deal__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.deal__body h3 { margin-bottom: .35rem; }
.deal__desc { color: var(--muted); font-size: .97rem; flex: 1; margin-bottom: 1rem; }
.deal__price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 1.1rem;
}
.deal__unit { font-size: .92rem; font-weight: 600; color: var(--muted); letter-spacing: 0; }

/* ---------- Catering / email callout ---------- */
.callout {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 6px solid var(--gold);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 44px);
  box-shadow: var(--shadow);
}
.callout h2 { margin-bottom: .4em; }
.callout p:last-of-type { margin-bottom: 0; }
.callout__box {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 26px 24px;
  text-align: center;
}
.callout__label {
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: .5rem;
}
.email-link {
  display: block;
  font-size: clamp(.98rem, 2.1vw, 1.16rem);
  font-weight: 800;
  color: var(--blue-dark);
  word-break: break-word;
  margin-bottom: 1rem;
}

/* ---------- Feature grid ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 26px;
}
.feature { text-align: center; padding: 8px; }
.feature__icon { font-size: 2.2rem; line-height: 1; margin-bottom: .7rem; }
.feature h3 { margin-bottom: .3rem; font-size: 1.1rem; }
.feature p { font-size: .95rem; color: var(--muted); margin: 0; }
.section--blue .feature p { color: rgba(255,255,255,.72); }

/* ---------- Category tiles ---------- */
.cats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.cat {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}
.cat:hover { text-decoration: none; }
.cat img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.cat:hover img { transform: scale(1.06); }
.cat span {
  position: absolute;
  inset: auto 0 0 0;
  padding: 30px 16px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,.82));
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  text-align: center;
}

/* ---------- Info cards (hours / address) ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
}
.card h3 { margin-bottom: .8rem; }
.card p:last-child { margin-bottom: 0; }

.hours { list-style: none; margin: 0; padding: 0; }
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: .97rem;
}
.hours li:last-child { border-bottom: 0; }
.hours strong { color: var(--ink); font-weight: 700; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
.about-grid img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 34px;
}
.stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat b {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: .3rem;
}
.stat span { font-size: .88rem; color: var(--muted); font-weight: 600; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .88rem; font-weight: 700; color: var(--ink); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-s);
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(56,83,164,.15);
}
.form-note { font-size: .88rem; color: var(--muted); margin-top: 12px; }
.form-msg { margin-top: 14px; font-weight: 700; font-size: .95rem; }
.form-msg--ok  { color: #1a7f3c; }
.form-msg--err { color: var(--red); }

.map-frame {
  border: 0;
  width: 100%;
  height: 380px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}

/* ---------- Menu page ---------- */
.menu-status {
  text-align: center;
  padding: 44px 20px;
  background: var(--cream);
  border-radius: var(--radius);
  color: var(--muted);
}
.menu-out { overflow-x: auto; }
.menu-out table { width: 100%; border-collapse: collapse; }
.menu-out td, .menu-out th { padding: 9px 10px; border-bottom: 1px solid var(--line); text-align: left; }

/* ---------- Footer ---------- */
.site-footer { background: var(--blue-darker); color: rgba(255,255,255,.7); padding-block: 52px 0; }
.site-footer h4 { color: #fff; font-size: 1rem; font-weight: 800; margin-bottom: 1rem; }
.site-footer a { color: rgba(255,255,255,.82); }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: .55rem; font-size: .95rem; }
.footer-grid p { font-size: .95rem; }
.site-footer__logo { height: 58px; width: auto; margin-bottom: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  padding-block: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: space-between;
  font-size: .87rem;
}

/* ---------- Sticky mobile call bar ---------- */
.callbar { display: none; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .callout, .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 780px) {
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    background: var(--blue);
    border-top: 1px solid rgba(255,255,255,.16);
    box-shadow: var(--shadow-lg);
    padding: 10px 20px 18px;
  }
  .nav.is-open { display: block; }
  .nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav a { padding: 13px 14px; }
  .nav .nav__cta { margin: 8px 0 0; }
  .nav .nav__cta a { text-align: center; }
}

@media (max-width: 620px) {
  body { font-size: 16px; padding-bottom: 68px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand img { height: 46px; }
  .topbar { font-size: .82rem; }
  .topbar .wrap { justify-content: center; text-align: center; }
  .hero__actions .btn { flex: 1 1 100%; }

  .callbar {
    display: flex;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 60;
    background: var(--blue-darker);
    padding: 9px 10px;
    gap: 9px;
    box-shadow: 0 -3px 14px rgba(0,0,0,.22);
  }
  .callbar .btn { flex: 1; padding: 12px 8px; font-size: .93rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
  .deal:hover, .btn:hover { transform: none; }
}
