:root {
  --crimson: #bf1e2e;        /* brand red, sampled from the AJK logo */
  --crimson-dark: #8f1622;   /* hover / headings */
  --crimson-bright: #d8202f; /* top bar */
  --brand-light: #f2626e;    /* lifted brand red, readable on the dark footer */
  --ink: #141414;            /* brand black, matches the logo lockup */
  --muted: #6b6b6b;
  --bg: #ffffff;
  --soft: #f6f4f4;           /* neutral light section background */
  --max-w: 1180px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }

/* Visually hidden but available to screen readers / search engines. */
.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;
}

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin: 0;
}

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

/* === TOP BAR / HEADER === */
.topbar {
  background: var(--crimson-bright);
  color: #fff;
}
.topbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.main-nav {
  display: flex;
  gap: 26px;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.main-nav a { color: #fff; transition: opacity .15s; }
.main-nav a:hover, .main-nav a.active { opacity: .75; text-decoration: underline; }

/* Order Now button in the top bar */
.btn-order {
  display: inline-block;
  background: #111;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 6px;
  white-space: nowrap;
  transition: background .15s, transform .15s;
}
.btn-order:hover { background: var(--crimson-dark); }
.btn-order:active { transform: translateY(1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 38px;
  padding: 0;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 6px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  margin: 0 auto;
  background: #fff;
  border-radius: 2px;
}

/* === LOGO BANNER === */
.logo-banner {
  text-align: center;
  padding: 26px 24px 8px;
}
.wordmark { display: inline-block; line-height: 1; }
.wordmark-logo {
  display: block;
  width: clamp(230px, 34vw, 400px);
  height: auto;
  margin: 0 auto;
}
.wordmark-tag {
  display: block;
  margin-top: 12px;
  font-weight: 600;
  font-size: clamp(12px, 1.6vw, 15px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  background: var(--crimson);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 8px;
  transition: background .15s, transform .15s;
}
.btn:hover { background: var(--crimson-dark); }
.btn:active { transform: translateY(1px); }
.btn-ghost {
  background: transparent;
  color: #fff;
  /* Inset shadow rather than a border: a real border adds 4px to the box and
     left this button standing 58px tall next to a 54px solid one. */
  box-shadow: inset 0 0 0 2px #fff;
}
.btn-ghost:hover { background: #fff; color: var(--crimson-dark); }
.btn-center { display: block; width: fit-content; margin: 30px auto 0; }
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 30px 0 0;
}
.btn-row.center { justify-content: center; }

/* === HERO === */
.hero {
  position: relative;
  max-width: var(--max-w);
  margin: 18px auto 0;
  padding: 0 24px;
}
.hero-inner {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: center;
}
.hero-inner img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12,12,12,.82) 0%, rgba(12,12,12,.55) 45%, rgba(12,12,12,.15) 100%);
  z-index: 1;
}
.hero-text {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 48px clamp(24px, 5vw, 64px);
  max-width: 620px;
}
.hero-eyebrow {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  color: var(--brand-light);
  margin-bottom: 14px;
}
.hero-text h1 {
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.02;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.hero-text p {
  font-size: clamp(16px, 2vw, 19px);
  color: #ece9e9;
  margin: 0 0 8px;
  max-width: 48ch;
}

/* === SECTIONS === */
.section { padding: 70px 0; }
.section-soft { background: var(--soft); }

.section-head { text-align: center; margin-bottom: 44px; }
.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  text-transform: uppercase;
}
.section-head h2::after {
  content: "";
  display: block;
  width: 70px; height: 4px;
  background: var(--crimson);
  margin: 14px auto 0;
  border-radius: 2px;
}
.section-head p { color: var(--muted); margin-top: 12px; }

/* === ABOUT === */
.about {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 70px 24px;
}
.about h1, .about h2 {
  font-size: clamp(30px, 4vw, 44px);
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--ink);
}
.about h1::after, .about h2::after {
  content: "";
  display: block;
  width: 70px; height: 4px;
  background: var(--crimson);
  margin-top: 12px;
  border-radius: 2px;
}
.about p { margin: 0 0 16px; color: #333; }
.about-photo img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 50px -22px rgba(0,0,0,0.45);
  object-fit: cover;
}
.about.about-centered {
  display: block;
  max-width: 820px;
  text-align: center;
  padding-top: 50px;
  padding-bottom: 70px;
}
.about.about-centered h1::after, .about.about-centered h2::after { margin-left: auto; margin-right: auto; }
.about.about-centered p { text-align: left; }

/* === HIGHLIGHT CARDS (What Makes Us Special) === */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.highlight-card {
  background: #fff;
  border: 1px solid #e7e5e5;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 40px -28px rgba(0,0,0,.35);
}
.highlight-card img { width: 100%; height: 210px; object-fit: cover; }
.highlight-card .body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.highlight-card h3 {
  font-size: 21px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--crimson-dark);
}
.highlight-card p { margin: 0 0 18px; color: #444; }
.highlight-card .card-link {
  margin-top: auto;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 14px;
  color: var(--crimson);
}
.highlight-card .card-link:hover { color: var(--crimson-dark); text-decoration: underline; }

/* === INFO GRID (hours / location / order) === */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.info-card {
  background: #fff;
  border: 1px solid #e7e5e5;
  border-radius: 16px;
  padding: 36px 30px;
  text-align: center;
}
.info-card .icon {
  width: 54px; height: 54px;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  background: var(--soft);
  border-radius: 999px;
  color: var(--crimson);
}
.info-card .icon svg { width: 26px; height: 26px; fill: currentColor; }
.info-card h3 { font-size: 20px; text-transform: uppercase; margin-bottom: 14px; }
.info-card p { margin: 4px 0; color: #444; }
.info-card a { color: var(--crimson); font-weight: 700; }

/* === MENU PAGE === */
.menu-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 60px 24px;
}
.menu-wrap h1 {
  font-size: clamp(34px, 5vw, 52px);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.menu-wrap h1::after {
  content: "";
  display: block;
  width: 70px; height: 4px;
  background: var(--crimson);
  margin-top: 14px;
  border-radius: 2px;
}
.menu-lead {
  font-size: 20px;
  color: var(--crimson);
  font-weight: 600;
  margin: 0 0 10px;
}
.menu-sub { color: var(--muted); margin: 0 0 18px; }
.menu-cta { margin: 22px 0 36px; }
.menu-cat { margin-bottom: 48px; }
.menu-cat h2 {
  font-size: clamp(24px, 3.4vw, 34px);
  text-transform: uppercase;
  color: var(--crimson-dark);
  border-bottom: 3px solid var(--crimson-bright);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.menu-cat .cat-note { color: var(--muted); margin: 0 0 18px; font-size: 15px; }
.menu-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed #e2dfdf;
}
.menu-item .mi-main { flex: 1; }
.menu-item .name { font-weight: 700; }
.menu-item .desc { color: var(--muted); font-size: 14.5px; margin-top: 2px; }
.menu-item .price { font-weight: 800; color: var(--crimson-dark); white-space: nowrap; }
.menu-item .oos {
  display: inline-block;
  margin-left: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--muted);
  border-radius: 4px;
  padding: 2px 7px;
  vertical-align: middle;
}
.menu-disclaimer { color: var(--muted); font-size: 13.5px; margin-top: 30px; }

/* === FOOTER === */
.site-footer {
  background: #141414;
  color: #e8e6e6;
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.footer-col h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 16px;
  color: var(--brand-light);
}
.footer-col p { margin: 6px 0; font-size: 15px; color: #cecbcb; }
.footer-col a { color: #cecbcb; }
.footer-logo { display: block; width: 210px; max-width: 70%; height: auto; margin: 0 0 18px; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-bottom {
  text-align: center;
  padding: 26px 24px;
  margin-top: 46px;
  border-top: 1px solid #2c2c2c;
  font-size: 13px;
  color: #999696;
}

/* === FOOD CAROUSEL (auto-scroll strip) === */
.food-strip {
  overflow: hidden;
  padding: 10px 0 4px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.food-strip-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: foodScroll 50s linear infinite;
}
.food-strip:hover .food-strip-track { animation-play-state: paused; }
.food-strip figure {
  flex: 0 0 auto;
  width: clamp(220px, 24vw, 320px);
  margin: 0;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 30px -18px rgba(0,0,0,.45);
}
.food-strip img { width: 100%; height: 240px; object-fit: cover; display: block; }
.food-strip figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.78));
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 34px 14px 14px;
}
@keyframes foodScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .food-strip-track { animation: none; }
}

/* === CONTACT === */
.page-body { max-width: 900px; margin: 0 auto; padding: 60px 24px; }
.page-body h1 {
  font-size: clamp(34px, 5vw, 52px);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.page-body h1::after {
  content: "";
  display: block;
  width: 70px; height: 4px;
  background: var(--crimson);
  margin: 14px 0 0;
  border-radius: 2px;
}
.page-body h2 { font-size: 26px; text-transform: uppercase; margin: 40px 0 12px; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 40px;
  margin: 36px 0 10px;
}
.contact-grid strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 13px;
  color: var(--crimson);
  margin-bottom: 6px;
}
.contact-grid a { color: var(--ink); font-size: 18px; font-weight: 600; }
.contact-grid a:hover { color: var(--crimson); }
.map-embed {
  margin-top: 36px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 40px -28px rgba(0,0,0,.4);
}
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }
.form-embed {
  margin-top: 30px;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 40px -28px rgba(0,0,0,.4);
}
.form-embed iframe { display: block; width: 100%; border: 0; }

/* === SCROLL REVEALS === */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* === RESPONSIVE === */
@media (max-width: 860px) {
  .hero-inner { min-height: 420px; }
  .hero-inner::after {
    background: linear-gradient(180deg, rgba(12,12,12,.45) 0%, rgba(12,12,12,.78) 100%);
  }
  .about { grid-template-columns: 1fr; gap: 30px; }
  .about-photo { order: -1; }
  .highlight-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .food-strip img { height: 190px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-logo { margin-left: auto; margin-right: auto; }
  .topbar-inner { flex-wrap: wrap; }
  .nav-toggle { display: flex; }
  .main-nav {
    display: none; width: 100%; flex-direction: column;
    align-items: center; gap: 12px; padding-top: 10px;
  }
  .main-nav.open { display: flex; }
  .btn-order { order: 3; }
  .section { padding: 50px 0; }

  /* Touch targets. These links sit at ~21px tall by default, which is a small
     target on a phone, and the phone numbers are the main call to action on a
     pickup-and-delivery site. Pad them out toward the 44px guideline. */
  .nav-toggle { height: 44px; }
  .contact-grid a[href^="tel:"],
  .menu-disclaimer a,
  .info-card a,
  .footer-col a,
  .highlight-card .card-link {
    display: inline-block;
    padding: 10px 0;
  }
  .footer-col p { margin: 2px 0; }
  /* Hero buttons read as one ragged row when they wrap; stack them full width. */
  .hero-text .btn-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-text .btn-row .btn { text-align: center; }
}

/* === BRAND INTRO LOADER =====================================================
   Injected by js/intro.js as the first node in <body>, so it paints before the
   page content. The exit is a CSS animation rather than a scripted teardown:
   once the overlay is on screen nothing else has to run for it to clear, so a
   later script error can never leave a visitor staring at a black screen.
   No JS at all means no overlay, which is also fine.
   ========================================================================== */
/* Timeline, roughly 4.6s end to end. Every stage uses the same slow expo-out
   curve so the whole sequence reads as one unhurried movement:
     0.25s  logo resolves out of a blur and settles down from 1.06 scale
     0.40s  brand-red glow blooms behind it
     1.20s  hairline rule draws outward from the centre
     1.65s  tagline fades up while its letter-spacing opens out
     3.10s  everything holds still
     3.70s  overlay releases with a slow fade and a slight push forward
   Tune by shifting the animation-delay values; they are all absolute. */
/* Paints the brand black from the very first frame. js/intro.js is an external
   file, so there is a gap between the stylesheet painting the (white) page and
   the script arriving to append the overlay; that gap is what flashes. The
   inline snippet in each page's <head> sets .intro-pending before first paint,
   and this layer clears itself on exactly the same timeline as the overlay
   above it, so a script failure cannot leave the screen black either. */
html.intro-pending::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: var(--ink);
  animation: loaderOut .9s cubic-bezier(.6, 0, .3, 1) 3.7s forwards;
}
.brand-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
  animation: loaderOut .9s cubic-bezier(.6, 0, .3, 1) 3.7s forwards;
}
/* Soft brand-red bloom behind the lockup, for depth against the flat black. */
.brand-loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 58% 46% at 50% 50%, rgba(191, 30, 46, .16), transparent 70%);
  opacity: 0;
  animation: loaderGlow 2.2s cubic-bezier(.16, 1, .3, 1) .4s forwards;
}
.brand-loader-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  animation: loaderInnerOut .9s cubic-bezier(.6, 0, .3, 1) 3.7s forwards;
}
.brand-loader-logo {
  display: block;
  width: clamp(240px, 48vw, 470px);
  height: auto;
  margin: 0 auto;
  opacity: 0;
  transform: scale(1.06);
  filter: blur(10px);
  animation: loaderLogo 1.6s cubic-bezier(.16, 1, .3, 1) .25s forwards;
}
.brand-loader-rule {
  display: block;
  width: clamp(110px, 20vw, 180px);
  height: 2px;
  margin: 30px auto 0;
  border-radius: 2px;
  background: var(--crimson);
  transform: scaleX(0); /* origin is the centre, so it opens both ways */
  animation: loaderRule 1.1s cubic-bezier(.16, 1, .3, 1) 1.2s forwards;
}
.brand-loader-tag {
  display: block;
  margin-top: 24px;
  font-weight: 600;
  font-size: clamp(11px, 1.5vw, 13px);
  text-transform: uppercase;
  color: #d6d2d2;
  /* text-indent tracks letter-spacing through the animation so the line stays
     optically centred while the tracking opens out. */
  letter-spacing: .16em;
  text-indent: .16em;
  opacity: 0;
  animation: loaderTag 1.5s cubic-bezier(.16, 1, .3, 1) 1.65s forwards;
}
@keyframes loaderLogo {
  from { opacity: 0; transform: scale(1.06); filter: blur(10px); }
  to   { opacity: 1; transform: scale(1);    filter: blur(0); }
}
@keyframes loaderGlow {
  to { opacity: 1; }
}
@keyframes loaderRule {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes loaderTag {
  from { opacity: 0; letter-spacing: .16em; text-indent: .16em; }
  to   { opacity: .82; letter-spacing: .55em; text-indent: .55em; }
}
@keyframes loaderInnerOut {
  to { opacity: 0; transform: scale(1.045); }
}
@keyframes loaderOut {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}
@media (prefers-reduced-motion: reduce) {
  .brand-loader { display: none; }
}
