/* ===== Reset & base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --red: #c8102e;
  --red-dark: #8f0b21;
  --black: #171412;
  --charcoal: #201c1a;
  --cream: #fff8ee;
  --gold: #f4b03e;
  --gray: #6b6560;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(0,0,0,.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--black);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  letter-spacing: .03em;
}

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

a { color: inherit; text-decoration: none; }

.section-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem;
}

.eyebrow, .banner-eyebrow {
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 2.2rem;
  margin-bottom: .5rem;
}

.btn {
  display: inline-block;
  padding: .85rem 1.9rem;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .85rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline {
  border-color: var(--black);
  color: var(--black);
  background: transparent;
}
.btn-outline:hover { background: var(--black); color: #fff; transform: translateY(-2px); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  color: #fff;
}
.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: .9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; }
.logo-img { height: 54px; width: auto; display: block; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.main-nav a {
  font-weight: 600;
  font-size: .92rem;
  color: #f2ece2;
  transition: color .15s ease;
}
.main-nav a:hover { color: var(--gold); }
.nav-order-btn {
  background: var(--red);
  color: #fff !important;
  padding: .55rem 1.2rem;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .04em;
}
.nav-order-btn:hover { background: var(--red-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  display: block;
}

/* ===== Banner (4-image collage background) ===== */
.banner {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 3.5rem 1.5rem;
  text-align: center;
  background-color: var(--black);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image:
    linear-gradient(rgba(10, 8, 7, .45), rgba(10, 8, 7, .45)),
    url("../images/banner.png");
}
.banner-heading {
  max-width: 950px;
  margin: 0 auto;
}
.banner-eyebrow { color: var(--gold); }
.banner h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: #fff;
  line-height: .95;
  text-shadow: 0 4px 18px rgba(0,0,0,.45);
}
.banner-sub {
  margin: 1rem 0 1.6rem;
  font-size: 1.1rem;
  color: #f2ece2;
  text-shadow: 0 2px 10px rgba(0,0,0,.45);
}

/* ===== Map + Facebook ===== */
.map-strip {
  line-height: 0;
  background: #ddd;
}
.map-strip-inner {
  display: flex;
  flex-wrap: wrap;
}
.map-strip iframe { display: block; }
.map-embed {
  flex: 1 1 420px;
  width: 100%;
}
.fb-embed {
  flex: 0 0 380px;
  width: 380px;
  max-width: 100%;
  background: #fff;
}

/* ===== Leave a review ===== */
.review-cta { background: var(--black); color: #fff; }
.review-cta-inner { text-align: center; padding: 3.25rem 1.5rem; }
.review-cta-title {
  font-family: 'Bebas Neue', Impact, sans-serif;
  letter-spacing: .03em;
  font-weight: 400;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: .75rem;
}
.review-cta-sub {
  color: #e8e0d4;
  font-size: 1rem;
  margin-bottom: 1.75rem;
}
.review-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.review-cta-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .15s ease, background .15s ease;
}
.review-cta-btn:hover { background: var(--red-dark); transform: translateY(-2px); }

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-copy h2 { font-size: 2.4rem; margin-bottom: 1rem; }
.about-copy p { color: var(--gray); margin-bottom: 1.6rem; }
.about-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-gallery img {
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: var(--shadow);
}

/* ===== Promise strip ===== */
.promise {
  background: var(--red);
  color: #fff;
}
.promise-inner {
  text-align: center;
  max-width: 820px;
}
.promise-icon-img {
  width: 150px;
  height: auto;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.25));
}
.promise h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0;
  line-height: 1.5;
}

/* ===== Crowd Pleasers / Catering ===== */
.catering { background: var(--black); color: #fff; }
.crowd-title {
  text-align: center;
  color: var(--gold);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  margin-bottom: 2.75rem;
}
.crowd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.crowd-card { text-align: center; }
.crowd-card h3 {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  font-size: 1.05rem;
  color: #f2ece2;
  margin-bottom: 1.3rem;
}
.crowd-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1.3rem;
  box-shadow: var(--shadow);
}
.crowd-card p {
  color: #cfc7ba;
  font-size: .95rem;
  max-width: 420px;
  margin: 0 auto 1.5rem;
}
.btn-light {
  background: #fff;
  color: var(--black);
}
.btn-light:hover { background: var(--gold); transform: translateY(-2px); }

/* ===== Testimonials ===== */
.testimonials h2 { font-size: 2.2rem; margin-bottom: 2rem; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
}
.stars { color: var(--gold); letter-spacing: .1em; margin-bottom: .75rem; }
.testimonial p { color: var(--gray); font-size: .93rem; margin-bottom: 1rem; }
.testimonial cite { font-style: normal; font-weight: 700; }
.review-link {
  display: inline-block;
  margin-top: 1.8rem;
  font-weight: 700;
  color: var(--red);
}

/* ===== FAQ / Accordion ===== */
.faq { background: #fff; }
.faq h2 { font-size: 2rem; margin-bottom: 1.5rem; }
.faq-subheading { margin-top: 3rem; }

.accordion {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.accordion-item {
  background: var(--red);
  border: 1px solid var(--red-dark);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(23, 20, 18, .1);
  transition: box-shadow .2s ease;
}
.accordion-item:hover { box-shadow: 0 6px 18px rgba(23, 20, 18, .2); }
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: none;
  border: none;
  text-align: left;
  padding: 1.2rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  cursor: pointer;
  color: #fff;
  transition: background .15s ease;
}
.accordion-trigger:hover { background: rgba(255, 255, 255, .08); }
.accordion-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.accordion-icon::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  top: 40%;
  left: 50%;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  border-radius: 2px;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: transform .25s ease, top .25s ease;
}
.accordion-trigger[aria-expanded="true"] .accordion-icon::before {
  top: 55%;
  transform: translate(-50%, -50%) rotate(225deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.accordion-panel p {
  color: rgba(255, 255, 255, .88);
  padding: 0 1.5rem 1.3rem;
  max-width: 780px;
}
.accordion-panel p a {
  color: var(--gold);
  font-weight: 600;
}
.accordion-panel p a:hover { text-decoration: underline; }

/* ===== Contact ===== */
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 3rem;
}
.contact-info h2 { font-size: 2.2rem; margin-bottom: 1rem; }
.contact-info > p { color: var(--gray); margin-bottom: 1.5rem; }
.tags { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.5rem; font-size: .93rem; }
.contact-details { list-style: none; margin-bottom: 1.5rem; }
.contact-details li { margin-bottom: .4rem; font-weight: 600; }
.contact-details a:hover { color: var(--red); }
.hours-table { border-collapse: collapse; font-size: .93rem; }
.hours-table th, .hours-table td { text-align: left; padding: .3rem 1rem .3rem 0; }
.hours-table th { color: var(--gray); font-weight: 600; }

.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 { margin-bottom: 1.2rem; font-family: 'Inter', sans-serif; font-size: 1.1rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray);
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.contact-form input, .contact-form textarea {
  font-family: inherit;
  font-size: .95rem;
  padding: .65rem .8rem;
  border: 1px solid #ddd3c2;
  border-radius: 6px;
  color: var(--black);
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: 2px solid var(--red);
  outline-offset: 1px;
}
.contact-form button { margin-top: .3rem; }
.form-status { font-size: .88rem; font-weight: 600; color: var(--red); min-height: 1.2em; }

/* ===== Footer ===== */
.site-footer { background: var(--black); color: #cfc7ba; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
}
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; }
.footer-logo-img { height: 70px; width: auto; }
.footer-inner p { margin-top: .5rem; font-size: .88rem; }
.footer-nav { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer-nav a { font-size: .88rem; }
.footer-nav a:hover { color: var(--gold); }
.copyright {
  text-align: center;
  font-size: .8rem;
  padding: 1.2rem 1.5rem 0;
}
.site-credit {
  text-align: center;
  font-size: .78rem;
  color: #9a9188;
  padding: .4rem 1.5rem 1.2rem;
  border-top: 1px solid #332c26;
  margin-top: .6rem;
}
.site-credit a { color: var(--gold); font-weight: 600; }
.site-credit a:hover { text-decoration: underline; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .crowd-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .map-embed { flex: 1 1 100%; }
  .fb-embed { flex: 1 1 100%; width: 100%; margin: 0 auto; }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem 1.5rem;
    gap: 1rem;
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .banner { min-height: 480px; }
}

@media (max-width: 520px) {
  .section-inner { padding: 3rem 1.25rem; }
  .banner { min-height: 420px; padding: 2.5rem 1.25rem; }
}
