/* =========================================================
   CSS BLOCK 00 — ROOT VARIABLES
   ========================================================= */

:root {
  --red: #c60000;
  --red2: #8c0000;
  --gold: #f6b800;
  --cream: #fff7e8;
  --ink: #17100f;
  --muted: #6f5c58;
  --surface: #fff;
  --bg: #fff9f1;
  --line: rgba(50, 20, 18, .12);
  --shadow: 0 24px 70px rgba(35, 8, 6, .14);
  --radius: 26px;
  --shell: min(1380px, calc(100% - 30px));
}

/* =========================================================
   CSS BLOCK 01 — RESET / GLOBAL
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

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

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

.shell {
  width: var(--shell);
  margin: auto;
}

.section {
  padding: clamp(72px, 9vw, 128px) 0;
}

.eyebrow,
.kicker {
  color: var(--red);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-title {
  margin: .2em 0;
  font-size: clamp(2.5rem, 6vw, 5.6rem);
  line-height: .94;
  letter-spacing: -.055em;
}

.section-lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

/* =========================================================
   CSS BLOCK 02 — BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: .25s;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red2));
  box-shadow: 0 16px 34px rgba(198, 0, 0, .26);
}

.btn--gold {
  color: #221500;
  background: linear-gradient(135deg, #ffd54a, var(--gold));
}

.btn--outline {
  border: 1px solid currentColor;
}

/* =========================================================
   CSS BLOCK 03 — STICKY NAVIGATION
   ========================================================= */

.site-nav {
  position: fixed;
  top: 14px;
  right: 14px;
  left: 14px;
  z-index: 100;
  opacity: 0;
  transform: translateY(-130%);
  transition: .3s;
}

.site-nav.is-visible {
  opacity: 1;
  transform: none;
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  background: rgba(255, 250, 243, .78);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.site-nav img {
  height: 42px;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 800;
}

/* =========================================================
   CSS BLOCK 04 — HERO
   ========================================================= */

.hero {
  position: relative;
  min-height: calc(100svh + 50px);
  overflow: hidden;
  color: #fff;
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(
      90deg,
      rgba(10, 2, 2, .84),
      rgba(10, 2, 2, .35) 55%,
      rgba(10, 2, 2, .15)
    );
}

.hero__logo {
  position: absolute;
  top: 24px;
  left: max(20px, calc((100vw - 1380px) / 2));
  z-index: 2;
  height: 100px;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100svh + 50px);
  padding-top: 100px;
  transform: translateY(-28px);
}

.hero h1 {
  max-width: 970px;
  margin: 0;
  color: #fff;
  font-size: clamp(3.1rem, 7vw, 7rem);
  line-height: .9;
  letter-spacing: -.06em;
  text-shadow: 0 5px 25px rgba(0, 0, 0, .55);
}

.hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, .9);
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.trust-card {
  padding: 18px 20px;
  background: rgba(15, 4, 4, .5);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 22px;
  backdrop-filter: blur(14px);
}

.trust-card .stars {
  color: var(--gold);
  font-size: 1.55rem;
  letter-spacing: .18em;
}

.trust-card strong {
  display: block;
  font-size: 1.05rem;
}

.trust-card p {
  margin: .35rem 0 0;
  font-size: .9rem;
}

/* =========================================================
   CSS BLOCK 05 — SIGNATURE EXPERIENCE
   ========================================================= */

.experience-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 18px;
}

.experience-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.experience-card:nth-child(1) {
  grid-column: span 7;
  grid-row: span 2;
}

.experience-card:nth-child(2) {
  grid-column: span 5;
}

.experience-card:nth-child(3) {
  grid-column: span 5;
}

.experience-card:nth-child(4) {
  grid-column: span 12;
}

.experience-card img,
.experience-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .78));
}

.experience-card__copy {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  z-index: 2;
  color: #fff;
}

.experience-card__copy h3 {
  margin: 0;
  font-size: 1.5rem;
}

/* =========================================================
   CSS BLOCK 06 — SMART MENU
   ========================================================= */

.menu-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.filter-btn,
.order-tab {
  padding: 12px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.filter-btn.is-active,
.order-tab.is-active {
  color: #fff;
  background: var(--red);
}

.smart-menu {
  display: grid;
  gap: 16px;
}

.menu-category {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(30, 10, 8, .08);
}

.menu-category summary {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 16px;
  list-style: none;
  cursor: pointer;
}

.menu-category summary img {
  width: 130px;
  height: 92px;
  object-fit: cover;
  border-radius: 18px;
}

.menu-category summary strong {
  display: block;
  font-size: 1.25rem;
}

.menu-category summary small {
  color: var(--muted);
}

.menu-category summary b {
  color: var(--red);
  font-size: 2rem;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 0 18px 18px;
}

.menu-item {
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.menu-item > img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.menu-item__copy {
  padding: 20px;
}

.menu-item__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.menu-item h3 {
  margin: 0;
  font-size: 1.35rem;
}

.menu-item p {
  color: var(--muted);
}

.mini-cta {
  color: var(--red);
  font-weight: 900;
}

/* =========================================================
   CSS BLOCK 07 — ORDERING TABS AND EMBEDS
   ========================================================= */

.order-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0;
}

.order-panel {
  display: none;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 28px;
  padding: 28px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.order-panel.is-active {
  display: grid;
}

.order-panel h3 {
  margin: .2em 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: .98;
}

.embed-shell {
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 24px;
  color: #fff;
  background: linear-gradient(145deg, #2a0909, #110404);
  border-radius: 22px;
}

.embed-shell iframe {
  width: 100%;
  height: 430px;
  border: 0;
}

.embed-placeholder {
  max-width: 420px;
  text-align: center;
}

.embed-placeholder code {
  color: var(--gold);
}

/* =========================================================
   CSS BLOCK 08 — REWARDS
   ========================================================= */

.rewards {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.rewards video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rewards::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(
      135deg,
      rgba(133, 0, 0, .94),
      rgba(198, 0, 0, .66)
    );
}

.rewards__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 36px;
}

.rewards-card {
  padding: 26px;
  color: var(--ink);
  background: rgba(255, 255, 255, .95);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.rewards-card img {
  width: 100%;
  border-radius: 22px;
}

.reward-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.reward-perks div {
  padding: 16px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
}

/* =========================================================
   CSS BLOCK 09 — DEALS / EVENTS / CATERING
   ========================================================= */

.deals-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 18px;
}

.deal-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.deal-card:first-child {
  grid-row: span 2;
}

/*
   Images and the new promotional video share the same
   dimensions without affecting images in other sections.
*/

.deal-card img,
.deal-card > video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
}

.deal-card:first-child img,
.deal-card:first-child > video {
  height: 100%;
  min-height: 520px;
}

.deal-card__copy {
  padding: 20px;
}

.deal-card h3 {
  margin: 0;
  font-size: 1.4rem;
}

.catering-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  padding: 28px;
  color: #fff;
  background: linear-gradient(135deg, #1a0808, #420606);
  border-radius: 26px;
}

/* =========================================================
   CSS BLOCK 10 — REVIEWS AND GALLERY
   ========================================================= */

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.review-card img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
}

.review-card blockquote {
  margin: .4rem 0 1rem;
  font-size: 1.05rem;
}

.stars {
  color: var(--gold);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 22px;
}

/* =========================================================
   CSS BLOCK 11 — FOOTER
   ========================================================= */

.footer {
  padding: 70px 0 110px;
  color: #fff;
  background: #140606;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
}

.footer img {
  height: 72px;
}

.footer h3 {
  color: var(--gold);
}

.footer ul {
  padding: 0;
  list-style: none;
}

.footer li {
  margin: .6rem 0;
  color: rgba(255, 255, 255, .78);
}

/* =========================================================
   CSS BLOCK 12 — MOBILE ACTION BAR
   ========================================================= */

.mobile-actions {
  position: fixed;
  right: 10px;
  bottom: 10px;
  left: 10px;
  z-index: 90;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 9px;
  background: rgba(22, 6, 6, .78);
  border-radius: 20px;
  backdrop-filter: blur(16px);
}

.mobile-actions a {
  display: grid;
  place-items: center;
  min-height: 52px;
  color: #fff;
  border-radius: 15px;
  font-weight: 900;
  transition: .25s;
}

.mobile-actions a:nth-child(1) {
  background: linear-gradient(135deg, #d90000, #8d0000);
}

.mobile-actions a:nth-child(2) {
  color: #211500;
  background: linear-gradient(135deg, #ffd54a, #f6b800);
}

.mobile-actions a:nth-child(3) {
  background: linear-gradient(135deg, #34201c, #130806);
}

.mobile-actions a:nth-child(4) {
  color: #8b0000;
  background: linear-gradient(135deg, #fff6df, #f7dca7);
}

.mobile-actions a:hover {
  filter: brightness(1.06);
  transform: translateY(-3px);
}

/* =========================================================
   CSS BLOCK 13 — TABLET
   ========================================================= */

@media (max-width: 900px) {
  .site-nav__links {
    display: none;
  }

  .trust-row {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .experience-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .experience-card,
  .experience-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    height: 300px;
  }

  .menu-items {
    grid-template-columns: 1fr;
  }

  .order-panel,
  .rewards__inner {
    grid-template-columns: 1fr;
  }

  .deals-grid {
    grid-template-columns: 1fr;
  }

  .deal-card:first-child {
    grid-row: auto;
  }

  /*
     Responsive dimensions cover both normal deal images
     and the featured pancakes video.
  */

  .deal-card:first-child img,
  .deal-card:first-child > video,
  .deal-card img,
  .deal-card > video {
    height: 260px;
    min-height: 0;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================================================
   CSS BLOCK 14 — MOBILE
   ========================================================= */

@media (max-width: 600px) {
  .hero__content {
    justify-content: flex-start;
    padding-top: 150px;
    transform: none;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .trust-row {
    display: flex;
    overflow-x: auto;
  }

  .trust-card {
    min-width: 82vw;
  }

  .menu-category summary {
    grid-template-columns: 90px 1fr auto;
  }

  .menu-category summary img {
    width: 90px;
    height: 76px;
  }

  .menu-item > img {
    height: 230px;
  }

  .reward-perks {
    grid-template-columns: 1fr;
  }

  .review-card {
    grid-template-columns: 80px 1fr;
  }

  .review-card img {
    width: 80px;
    height: 80px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .catering-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}
