:root {
  --red: #e63027;
  --red-dk: #c4261e;
  --yellow: #f5a623;
  --navy: #0d1b2a;
  --grey: #f6f6f4;
  --border: #ebebeb;
  --text: #111111;
  --muted: #888;
  --white: #ffffff;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.5;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem;
}

.logo {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--text);
  text-decoration: none;
}
.logo span { color: var(--red); }

.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--red);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  transition: background 0.2s, transform 0.18s;
}
.nav-btn:hover { background: var(--red-dk); transform: translateY(-1px); }
.nav-btn svg { stroke: #fff; flex-shrink: 0; }

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100dvh - 65px);
}

.hero-left {
  padding: 5rem 3.5rem 5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.6rem;
  opacity: 0;
  animation: slideUp 0.7s 0.1s ease forwards;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff4f3;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  width: fit-content;
  border: 1px solid rgba(230, 48, 39, 0.15);
}
.hero-pill svg { stroke: var(--red); }

h1 {
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -0.03em;
  color: var(--text);
}
h1 em {
  font-style: italic;
  color: var(--red);
}

.hero-desc {
  font-size: 0.98rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  max-width: 380px;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  box-shadow: 0 8px 28px rgba(230, 48, 39, 0.3);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-red svg { stroke: #fff; }
.btn-red:hover {
  background: var(--red-dk);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(230, 48, 39, 0.4);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 400;
}
.hero-note svg { stroke: var(--muted); }

/* ── HERO IMAGE MOSAIC ── */
.hero-right {
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 1s 0.25s ease forwards;
}

.mosaic {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 1fr 1fr;
  height: 100%;
  gap: 6px;
}

.m-img {
  overflow: hidden;
  position: relative;
  background: var(--grey);
}
.m-img:first-child { grid-row: 1 / 3; }

.m-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 6s ease, object-position 0.3s ease;
  aspect-ratio: 4/3;
}
.m-img:hover img { transform: scale(1.06); }
.mosaic .m-img:first-child img { object-position: center center; }
.mosaic .m-img:nth-child(2) img { object-position: center top; }
.mosaic .m-img:nth-child(3) img { object-position: center bottom; }

/* floating card */
.float-card {
  position: absolute;
  bottom: 1.4rem;
  left: 1.4rem;
  background: var(--white);
  border-radius: 14px;
  padding: 0.85rem 1.2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
}
.fc-icon {
  width: 42px;
  height: 42px;
  background: #fff4f3;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fc-icon svg { stroke: var(--red); }
.fc-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.fc-text span {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 400;
}

/* ── MARQUEE STRIP ── */
.strip {
  background: var(--red);
  padding: 0.8rem 0;
  overflow: hidden;
  position: relative;
}
.strip-track {
  display: flex;
  gap: 0;
  animation: marquee 20s linear infinite;
  width: max-content;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 2.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.strip-item svg { stroke: rgba(255, 255, 255, 0.7); flex-shrink: 0; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── FEATURES ── */
.features {
  background: var(--grey);
  padding: 5rem 3rem;
}
.section-head {
  text-align: center;
  margin-bottom: 3rem;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}
.section-eyebrow svg { stroke: var(--red); }
.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feat-card {
  background: var(--white);
  border-radius: 18px;
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  border: 1px solid var(--border);
  transition: transform 0.22s, box-shadow 0.22s;
}
.feat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}
.feat-icon {
  width: 48px;
  height: 48px;
  background: #fff4f3;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feat-icon svg { stroke: var(--red); }
.feat-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}
.feat-card p {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

/* ── MENU GALLERY ── */
.menu {
  padding: 5rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 14px;
}

.g-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: var(--grey);
}
.g-item:first-child { grid-row: 1 / 3; }

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 4s ease, object-position 0.25s ease;
  aspect-ratio: 4/3;
}
.g-item:hover img { transform: scale(1.04); }
.gallery-grid .g-item:nth-child(1) img { object-position: center center; }
.gallery-grid .g-item:nth-child(2) img { object-position: center top; }
.gallery-grid .g-item:nth-child(3) img { object-position: center; }
.gallery-grid .g-item:nth-child(4) img { object-position: center bottom; }
.gallery-grid .g-item:nth-child(5) img { object-position: center center; }

.g-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.2rem 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
  color: #fff;
}
.g-label strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
}
.g-label span {
  font-size: 0.72rem;
  opacity: 0.75;
  font-weight: 300;
}

/* ── ORDER CTA ── */
.cta {
  background: var(--navy);
  padding: 6rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(230, 48, 39, 0.12), transparent 70%);
}
.cta > * { position: relative; z-index: 1; }

.cta-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.cta-label svg { stroke: rgba(255, 255, 255, 0.45); }

.cta h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.1;
}
.cta h2 span { color: var(--yellow); }

.cta p {
  font-size: 0.97rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  max-width: 380px;
  line-height: 1.7;
}

.btn-yellow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--yellow);
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  padding: 1rem 2.8rem;
  border-radius: 50px;
  box-shadow: 0 10px 36px rgba(245, 166, 35, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-yellow svg { stroke: var(--navy); }
.btn-yellow:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 46px rgba(245, 166, 35, 0.5);
}

.cta-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
}
.cta-meta svg { stroke: rgba(255, 255, 255, 0.25); }

/* ── FOOTER ── */
footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer-main {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.f-logo {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text);
}
.f-logo span { color: var(--red); }

.f-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.f-right a {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.f-right a svg { stroke: var(--muted); transition: stroke 0.2s; }
.f-right a:hover { color: var(--red); }
.f-right a:hover svg { stroke: var(--red); }

.f-partners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.partner-text {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.partner-img {
  height: 35px;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.partner-img:hover { opacity: 1; }

.f-copy {
  font-size: 0.75rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  width: 100%;
  text-align: center;
}

/* ── ANIMATIONS ── */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0.9rem 1.5rem; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 4rem 1.5rem 3rem; text-align: center; align-items: center; }
  .hero-desc { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-right { min-height: 350px; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px;
  }
  .g-item:first-child { grid-row: auto; }
}

@media (max-width: 600px) {
  .hero-left { padding: 3rem 1.2rem 2.5rem; }
  h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-btns { flex-direction: column; align-items: stretch; width: 100%; }
  .btn-red, .btn-yellow { justify-content: center; width: 100%; }
  .cards-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 250px);
  }
  .cta { padding: 4rem 1.2rem; }
  .f-partners { gap: 1.5rem; }
}
