/* =========================================================
   Report In Pub — Shared Stylesheet
   ========================================================= */

:root {
  --red: #EB0027;
  --red-dark: #b2001d;
  --ink: #171717;
  --ink-soft: #2c2c2c;
  --paper: #faf7f2;
  --paper-2: #f1ece3;
  --white: #ffffff;
  --rule: #e3ddd2;
  --muted: #6b6b6b;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --container: 1200px;
  --radius: 12px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 50px rgba(0,0,0,.16);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: transform .1s, background .15s, color .15s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover { background: var(--paper-2); color: var(--ink); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--rule);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav-logo img { height: 52px; width: auto; }
.nav-links { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav-links a {
  color: var(--ink); font-weight: 600; font-size: .95rem;
  letter-spacing: .02em; text-transform: uppercase;
  padding: 8px 0; border-bottom: 2px solid transparent;
}
.nav-links a:hover, .nav-links a.active { color: var(--red); border-bottom-color: var(--red); }
.nav-cta { margin-left: 16px; }

.nav-toggle { display: none; background: none; border: 0; padding: 8px; }
.nav-toggle span {
  display: block; width: 26px; height: 3px;
  background: var(--ink); margin: 5px 0;
  border-radius: 2px;
}
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--white); border-bottom: 1px solid var(--rule);
    padding: 8px 0; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; border-top: 1px solid var(--rule); }
  .nav-links li:first-child { border-top: 0; }
  .nav-links a { display: block; padding: 16px 24px; }
  .nav-cta { margin: 12px 24px; display: inline-block; }
}

.hero {
  position: relative; min-height: 78vh; color: var(--white);
  display: flex; align-items: center; overflow: hidden; background: var(--ink);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.75));
  z-index: 2;
}
.hero img.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.hero-inner { position: relative; z-index: 3; padding: 100px 0; }
.hero .eyebrow {
  display: inline-block; background: var(--red); color: var(--white);
  padding: 6px 14px; border-radius: 999px;
  font-size: .85rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 20px;
}
.hero h1 { color: var(--white); max-width: 18ch; margin-bottom: .25em; }
.hero p.lead { font-size: 1.2rem; max-width: 52ch; margin-bottom: 2em; opacity: .92; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.page-header { background: var(--ink); color: var(--white); padding: 70px 0 60px; text-align: center; }
.page-header h1 { color: var(--white); margin-bottom: 10px; }
.page-header p { max-width: 60ch; margin: 0 auto; opacity: .85; font-size: 1.05rem; }
.page-header .crumb {
  color: var(--red); font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; font-size: .85rem;
  margin-bottom: 14px; display: inline-block;
}

section { padding: 80px 0; }
.section-intro { text-align: center; max-width: 64ch; margin: 0 auto 54px; }
.section-intro .tag {
  color: var(--red); font-weight: 800; letter-spacing: .2em;
  text-transform: uppercase; font-size: .85rem;
  display: inline-block; margin-bottom: 12px;
}
.section-alt { background: var(--white); }
.section-dark { background: var(--ink); color: var(--white); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }

.info-bar {
  background: var(--red); color: var(--white);
  padding: 14px 0; text-align: center;
  font-weight: 600; font-size: .95rem;
}
.info-bar a { color: var(--white); border-bottom: 1px dotted rgba(255,255,255,.6); }
.info-bar span + span { margin-left: 24px; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 860px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card img { width: 100%; height: 260px; object-fit: cover; }
.feature-card .body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { color: var(--ink-soft); flex: 1; }
.feature-card .more {
  margin-top: 14px; font-weight: 700; color: var(--red);
  text-transform: uppercase; letter-spacing: .08em; font-size: .85rem;
}

.menu-section { margin-bottom: 64px; }
.menu-section h2 { text-align: center; font-style: italic; margin-bottom: .3em; }
.menu-section .section-note {
  text-align: center; font-style: italic; color: var(--muted);
  margin-bottom: 36px; font-size: .98rem;
}
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 60px; }
@media (max-width: 720px) { .menu-grid { grid-template-columns: 1fr; gap: 10px 0; } }
.menu-item { padding: 14px 0; border-bottom: 1px dotted var(--rule); }
.menu-item .head { display: flex; gap: 12px; align-items: baseline; }
.menu-item .name { font-weight: 700; font-size: 1.08rem; flex: 1; }
.menu-item .dots { flex: 1; border-bottom: 2px dotted var(--rule); height: .8em; margin: 0 8px; }
.menu-item .price { font-weight: 700; color: var(--red); white-space: nowrap; }
.menu-item .desc { color: var(--ink-soft); font-size: .95rem; margin: 4px 0 0; line-height: 1.45; }
.disclaimer {
  text-align: center; font-size: .85rem; color: var(--muted);
  font-style: italic; margin-top: 36px; line-height: 1.5;
}

.specials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 20px; }
@media (max-width: 860px) { .specials-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .specials-grid { grid-template-columns: 1fr; } }
.special-card {
  background: var(--white); border: 2px solid var(--ink);
  border-radius: var(--radius); padding: 20px; text-align: center;
}
.special-card h4 {
  font-family: var(--font-display); font-size: 1.25rem; font-style: italic;
  margin: 0 0 8px; color: var(--red); text-transform: lowercase;
}
.special-card p { margin: 0; font-size: .95rem; }

.location-hours { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 860px) { .location-hours { grid-template-columns: 1fr; } }
.hours-table { width: 100%; border-collapse: collapse; font-size: 1.05rem; }
.hours-table th, .hours-table td { padding: 10px 0; text-align: left; border-bottom: 1px solid var(--rule); }
.hours-table td.val { text-align: right; font-weight: 600; }

.form-card { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .95rem; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--rule); border-radius: 8px;
  font: inherit; color: var(--ink); background: var(--paper);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--red); background: var(--white);
}
.form-field textarea { resize: vertical; min-height: 120px; }

.calendar-embed {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--rule);
}
.calendar-embed iframe { display: block; width: 100%; min-height: 620px; border: 0; }

.site-footer { background: var(--ink); color: #cfcfcf; padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  color: var(--white); font-family: var(--font-body);
  font-weight: 700; font-size: .9rem; letter-spacing: .15em;
  text-transform: uppercase; margin-bottom: 14px;
}
.site-footer a { color: #cfcfcf; }
.site-footer a:hover { color: var(--white); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { padding: 4px 0; }
.site-footer .brand-mark img {
  height: 56px; background: var(--white);
  padding: 10px 14px; border-radius: 8px; margin-bottom: 14px;
}
.site-footer .socials { display: flex; gap: 10px; margin-top: 12px; }
.site-footer .socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: #2a2a2a; transition: background .15s;
}
.site-footer .socials a:hover { background: var(--red); }
.site-footer .socials svg { width: 18px; height: 18px; fill: #cfcfcf; }
.site-footer .socials a:hover svg { fill: var(--white); }
.legal {
  border-top: 1px solid #2a2a2a; margin-top: 40px; padding-top: 20px;
  font-size: .85rem; display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; color: #9a9a9a;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 24px; }
.mt-4 { margin-top: 48px; }
.mb-4 { margin-bottom: 48px; }
