/* =========================================================
   Florida Hot Grill, demo site
   Aesthetic: Roodepoort street-grill, hot & bold.
   Palette: deep red + flame orange on warm cream + charcoal.
   Type: Anton (display, signage) / DM Sans (body) / Caveat (handwritten badge).
   ========================================================= */

:root {
  --red: #D3331F;
  --red-deep: #9F1B0A;
  --orange: #F26B1A;
  --orange-soft: #FFB347;
  --cream: #F5E9D4;
  --cream-warm: #F1DCBA;
  --char: #1A1410;
  --char-soft: #2B201A;
  --white: #FFFFFF;
  --line: rgba(26, 20, 16, 0.12);
  --shadow-card: 0 18px 38px -22px rgba(26, 20, 16, 0.45);
  --shadow-lift: 0 26px 50px -22px rgba(26, 20, 16, 0.55);

  --ff-display: 'Anton', 'Impact', 'Arial Narrow Bold', sans-serif;
  --ff-body: 'DM Sans', system-ui, sans-serif;
  --ff-hand: 'Caveat', 'Brush Script MT', cursive;

  --container: 1180px;
  --gutter: clamp(1rem, 3vw, 2rem);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--char);
  font-family: var(--ff-body);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--char); color: var(--white);
  padding: .75rem 1rem; font-weight: 700; z-index: 999;
}
.skip-link:focus { left: 1rem; top: 1rem; }

::selection { background: var(--red); color: var(--cream); }

/* ---------- shared bits ---------- */
.eyebrow {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange-soft);
  margin: 0 0 1rem;
  display: inline-flex; align-items: center; gap: .65rem;
}
.eyebrow--dark { color: var(--red); }
.eyebrow__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(242, 107, 26, 0.25);
}

.section-title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: .92;
  letter-spacing: .005em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
  color: var(--char);
}
.section-title--accent {
  color: var(--red);
  font-style: italic;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .9rem 1.4rem;
  border-radius: 999px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn--lg { padding: 1.05rem 1.7rem; font-size: 1rem; }

.btn--primary {
  background: var(--red);
  color: var(--cream);
  box-shadow: 0 16px 30px -16px rgba(211, 51, 31, 0.7);
}
.btn--primary:hover {
  background: #B82815;
  transform: translateY(-2px);
  box-shadow: 0 22px 38px -18px rgba(211, 51, 31, 0.8);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 233, 212, 0.55);
}
.btn--ghost:hover {
  background: rgba(245, 233, 212, 0.12);
  border-color: var(--cream);
  transform: translateY(-2px);
}
.btn--ghost.btn--on-dark { color: var(--cream); }

.btn:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

/* ---------- top nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex; align-items: center; gap: clamp(1rem, 3vw, 2rem);
  padding: .85rem clamp(1rem, 3vw, 2rem);
  background: rgba(26, 20, 16, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--cream);
  border-bottom: 1px solid rgba(245, 233, 212, 0.08);
}
.nav__brand {
  display: flex; align-items: center; gap: .65rem;
  flex: 1 1 auto; min-width: 0;
}
.nav__mark {
  display: inline-grid; place-items: center;
  width: 38px; height: 38px;
  background: var(--red);
  color: var(--cream);
  font-family: var(--ff-display);
  font-size: 1rem;
  letter-spacing: .05em;
  border-radius: 8px;
  transform: rotate(-3deg);
  box-shadow: 0 0 0 2px var(--cream), 0 0 0 4px var(--red);
}
.nav__wordmark {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.nav__links {
  display: none;
  gap: 1.6rem;
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav__links a {
  position: relative;
  padding: .35rem 0;
  color: var(--cream-warm);
  transition: color .15s ease;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--orange);
  transition: right .25s ease;
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { right: 0; }

.nav__cta {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--red);
  color: var(--cream);
  padding: .55rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .18s ease, transform .18s ease;
}
.nav__cta:hover { background: #B82815; transform: translateY(-1px); }
.nav__cta-icon { display: inline-grid; place-items: center; }

@media (min-width: 720px) {
  .nav__links { display: inline-flex; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: clamp(620px, 92svh, 880px);
  overflow: hidden;
  color: var(--cream);
  isolation: isolate;
}
.hero__media {
  position: absolute; inset: 0;
  background-image: url('../images/chicken-pieces.jpg');
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.04);
  animation: heroFloat 14s ease-in-out infinite alternate;
}
@keyframes heroFloat {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to   { transform: scale(1.08) translate3d(0, -1.2%, 0); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 80% 10%, rgba(242,107,26,.55), transparent 60%),
    linear-gradient(180deg, rgba(26,20,16,.45) 0%, rgba(211,51,31,.55) 55%, rgba(26,20,16,.92) 100%);
  mix-blend-mode: multiply;
}
.hero__grain {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    radial-gradient(rgba(0,0,0,0.18) 1px, transparent 1px);
  background-size: 3px 3px, 4px 4px;
  background-position: 0 0, 1px 1px;
  opacity: .35;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(5rem, 11vw, 7.5rem) var(--gutter) clamp(5rem, 9vw, 7rem);
  display: flex; flex-direction: column; gap: 1.25rem;
  animation: heroIn .7s ease-out both;
}
.hero__content .eyebrow { color: var(--orange-soft); }

.hero__title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(4.2rem, 14vw, 11rem);
  line-height: .85;
  letter-spacing: .005em;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 8px 30px rgba(0,0,0,.45);
}
.hero__title-line { display: block; }
.hero__title-line--accent {
  color: var(--orange);
  font-style: italic;
  text-shadow: 0 8px 30px rgba(242,107,26,.45);
}

.hero__tag {
  max-width: 38ch;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.45;
  color: rgba(245,233,212,.92);
  margin: .25rem 0 1rem;
}

.hero__cta {
  display: flex; flex-wrap: wrap; gap: .75rem;
}

.hero__strip {
  list-style: none; padding: 0; margin: 1.5rem 0 0;
  display: grid; gap: .75rem 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 760px;
  border-top: 1px solid rgba(245,233,212,.18);
  padding-top: 1.5rem;
  font-size: .92rem;
  color: rgba(245,233,212,.85);
}
.hero__strip li {
  display: flex; align-items: baseline; gap: .65rem;
  font-weight: 500;
}
.hero__strip span {
  font-family: var(--ff-display);
  color: var(--orange);
  font-size: 1.1rem;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

/* hero marquee strip at bottom */
.hero__marquee {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 3;
  background: var(--red);
  color: var(--cream);
  overflow: hidden;
  border-top: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  font-family: var(--ff-display);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.marquee__track {
  display: inline-flex; gap: 1.25rem;
  white-space: nowrap;
  padding: .65rem 0;
  animation: marquee 28s linear infinite;
}
.marquee__track .dot { color: var(--orange-soft); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- signature combo ---------- */
.combo {
  background: var(--cream);
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) var(--gutter);
  overflow: hidden;
}
.combo::before {
  content: ""; position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle at center, rgba(242,107,26,.18), transparent 70%);
  pointer-events: none;
}
.combo__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 880px) {
  .combo__inner { grid-template-columns: 1fr 1fr; }
}
.combo__lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.55;
  max-width: 46ch;
  color: var(--char-soft);
  margin: 0 0 1.5rem;
}
.combo__list {
  list-style: none; padding: 0; margin: 0 0 1.75rem;
  display: grid; gap: .55rem;
}
.combo__list li {
  position: relative; padding-left: 1.5rem;
  font-weight: 500;
}
.combo__list li::before {
  content: "";
  position: absolute; left: 0; top: .55rem;
  width: 10px; height: 10px;
  background: var(--orange);
  transform: rotate(45deg);
  box-shadow: 0 0 0 2px rgba(242,107,26,.25);
}
.combo__cta {
  display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
}
.combo__price {
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--char-soft);
}
.combo__price strong {
  font-family: var(--ff-display);
  color: var(--red);
  font-size: 1.45rem;
  margin-left: .25rem;
  letter-spacing: .02em;
}

/* combo image with offset frame */
.combo__figure {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  max-width: 480px;
  justify-self: center;
  width: 100%;
}
.combo__img {
  position: absolute; inset: 0;
  background-image: url('../images/chicken-chips-combo.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  box-shadow: var(--shadow-lift);
  z-index: 2;
  filter: saturate(1.08);
}
.combo__frame {
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 3px solid var(--red);
  border-radius: 6px;
  z-index: 1;
}
.combo__badge {
  position: absolute;
  top: -22px; left: -14px;
  z-index: 3;
  font-family: var(--ff-hand);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--cream);
  background: var(--red);
  padding: .35rem 1.1rem .55rem;
  border-radius: 999px;
  transform: rotate(-7deg);
  box-shadow: 0 12px 24px -10px rgba(211,51,31,.6);
}

/* ---------- menu ---------- */
.menu {
  background: var(--cream-warm);
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) var(--gutter);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.menu::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0;
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--red) 0 16px, var(--orange) 16px 32px);
}
.menu__head {
  max-width: var(--container);
  margin: 0 auto 2.5rem;
}
.menu__note {
  max-width: 50ch;
  margin: 1rem 0 0;
  font-size: .95rem;
  color: var(--char-soft);
}
.menu__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: clamp(1rem, 2vw, 1.4rem);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .menu__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .menu__grid { grid-template-columns: repeat(3, 1fr); }
  .card--feature { grid-column: span 2; grid-row: span 1; }
  .card--feature .card__media { aspect-ratio: 16 / 9; }
}

.card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
  opacity: 0;
  transform: translateY(20px);
}
.card.is-in {
  opacity: 1;
  transform: none;
  transition: opacity .55s ease, transform .55s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.card__media {
  aspect-ratio: 4 / 3;
  background-image: var(--card-img);
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform .5s ease;
}
.card:hover .card__media { transform: scale(1.04); }
.card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(26,20,16,.25) 100%);
  pointer-events: none;
}

.card__body {
  padding: 1.1rem 1.2rem 1.3rem;
  display: flex; flex-direction: column; gap: .45rem;
  flex: 1;
}
.card__tag {
  align-self: flex-start;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(211,51,31,.1);
  padding: .25rem .6rem;
  border-radius: 999px;
  margin-bottom: .15rem;
}
.card__tag--hot {
  background: var(--red);
  color: var(--cream);
}
.card__name {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  letter-spacing: .01em;
  text-transform: uppercase;
  margin: 0;
  color: var(--char);
  line-height: 1;
}
.card--feature .card__name {
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
}
.card__desc {
  font-size: .95rem;
  color: var(--char-soft);
  margin: 0;
  line-height: 1.45;
}
.card__price {
  margin-top: auto;
  font-family: var(--ff-display);
  font-size: 1.3rem;
  color: var(--red);
  letter-spacing: .03em;
}
.card__sub {
  font-size: .8rem;
  color: var(--char-soft);
  margin: -.2rem 0 0;
  font-style: italic;
  opacity: .7;
}
.card--text .card__body {
  padding: 1.6rem 1.4rem;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(242,107,26,.1), transparent 60%),
    var(--white);
  flex: 1;
  min-height: 240px;
}

/* ---------- find us ---------- */
.find-us {
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) var(--gutter);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.find-us__media {
  position: absolute; inset: 0;
  background-image: url('../images/saucy-chips.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  filter: saturate(1.05);
  z-index: -2;
}
.find-us__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 60% at 20% 30%, rgba(242,107,26,.55), transparent 70%),
    linear-gradient(180deg, rgba(26,20,16,.78), rgba(159,27,10,.85));
  z-index: -1;
}
.find-us__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid; gap: clamp(2rem, 4vw, 3rem);
  grid-template-columns: 1fr;
  align-items: stretch;
}
@media (min-width: 980px) {
  .find-us__inner { grid-template-columns: 1.05fr 1fr; }
}
.find-us__card {
  background: rgba(26,20,16,.55);
  border: 1px solid rgba(245,233,212,.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: clamp(1.6rem, 3vw, 2.4rem);
}
.find-us__card .eyebrow { color: var(--orange-soft); }
.find-us__card .section-title { color: var(--cream); }
.find-us__details {
  margin: 1.5rem 0 1.75rem;
  display: grid; gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}
.find-us__details dt {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange-soft);
  font-weight: 700;
  margin: 0 0 .35rem;
}
.find-us__details dd {
  margin: 0;
  font-size: .98rem;
  line-height: 1.4;
}
.find-us__details a { text-decoration: underline; text-underline-offset: .25em; }
.placeholder-flag {
  font-style: italic;
  color: rgba(255,179,71,.7);
  font-weight: 500;
  letter-spacing: 0;
}
.find-us__cta {
  display: flex; gap: .75rem; flex-wrap: wrap;
}
.find-us__map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(245,233,212,.18);
  background: var(--char);
  min-height: 360px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.6);
}
.find-us__map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: saturate(.9);
}

/* ---------- footer ---------- */
.footer {
  background: var(--char);
  color: var(--cream);
  padding: clamp(3rem, 6vw, 4.5rem) var(--gutter) 2rem;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0;
  height: 5px;
  background: repeating-linear-gradient(90deg, var(--red) 0 12px, var(--orange) 12px 24px);
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 2.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .footer__inner { grid-template-columns: 1.4fr repeat(3, 1fr); }
}
.footer__wordmark {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: .9;
  margin: 0 0 .6rem;
  text-transform: uppercase;
}
.footer__wordmark span { color: var(--orange); font-style: italic; }
.footer__tag {
  margin: 0;
  color: rgba(245,233,212,.7);
  max-width: 26ch;
  font-size: .95rem;
}
.footer__col h4 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 .75rem;
  color: var(--orange-soft);
}
.footer__col h4 small {
  font-family: var(--ff-body);
  font-size: .7rem;
  color: rgba(255,179,71,.55);
  font-weight: 500;
  font-style: italic;
}
.footer__col ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: .4rem;
  font-size: .95rem;
  color: rgba(245,233,212,.85);
}
.footer__col a:hover { color: var(--orange); }
.footer__legal {
  max-width: var(--container);
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245,233,212,.1);
  font-size: .82rem;
  color: rgba(245,233,212,.5);
  letter-spacing: .04em;
}
.footer__legal a { color: var(--orange-soft); }
.footer__legal a:hover { color: var(--orange); }
.footer__legal-sep { margin: 0 .5rem; opacity: .5; }

/* ---------- floating WhatsApp ---------- */
.float-wa {
  position: fixed;
  right: clamp(.9rem, 3vw, 1.5rem);
  bottom: clamp(.9rem, 3vw, 1.5rem);
  z-index: 60;
  display: inline-grid; place-items: center;
  width: 56px; height: 56px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 16px 30px -10px rgba(37,211,102,.55), 0 0 0 0 rgba(37,211,102,.45);
  animation: waPulse 2.4s ease-out infinite;
  transition: transform .2s ease;
}
.float-wa:hover { transform: translateY(-3px) scale(1.04); }
@keyframes waPulse {
  0%   { box-shadow: 0 16px 30px -10px rgba(37,211,102,.55), 0 0 0 0 rgba(37,211,102,.45); }
  70%  { box-shadow: 0 16px 30px -10px rgba(37,211,102,.55), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 16px 30px -10px rgba(37,211,102,.55), 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- motion preference ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
