/* ============================================================
   CITY WINGS — mycitywings.com
   Dark, bold, red-accent theme
   ============================================================ */

:root {
  --bg: #0d0d0d;
  --bg-2: #121212;
  --card: #1a1a1a;
  --card-hover: #202020;
  --line: rgba(255, 255, 255, 0.08);
  --red: #e02b20;
  --red-dark: #b71f16;
  --amber: #f5a442;
  --white: #ffffff;
  --muted: #a3a3a3;
  --muted-2: #737373;
  --radius: 16px;
  --nav-h: 72px;
  --font: "DM Sans", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

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

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2d2d2d; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

/* ============================================================
   Page load overlay
   ============================================================ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.page-loader img {
  width: 90px;
  height: 90px;
  animation: loaderPulse 1.2s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.75; }
}

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(13, 13, 13, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, height 0.35s ease;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  border-bottom-color: var(--line);
  height: 64px;
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  position: relative;
  display: block;
  width: 68px;
  height: 100%;
  flex-shrink: 0;
}
.nav-logo img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #fff;
  padding: 2px;
  transition: transform 0.4s var(--ease-out);
}
.nav-logo:hover img { transform: translateY(-50%) rotate(-8deg) scale(1.06); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.active { color: var(--red); }

.nav-cta { flex-shrink: 0; }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 24px rgba(224, 43, 32, 0.25);
}
.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(224, 43, 32, 0.35);
}
.btn-red::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn-red:hover::before { left: 130%; }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-3px);
}
.btn svg { transition: transform 0.3s ease; }
.btn:hover svg { transform: translateX(4px); }

.btn-sm { padding: 10px 20px; font-size: 14px; }

/* ============================================================
   Hero (Home)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  animation: kenburns 18s ease-in-out infinite alternate;
  filter: brightness(0.55);
}
@keyframes kenburns {
  from { transform: scale(1) translateX(0); }
  to { transform: scale(1.12) translateX(-2%); }
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 13, 13, 0.95) 0%, rgba(13, 13, 13, 0.75) 40%, rgba(13, 13, 13, 0.25) 100%),
    linear-gradient(to top, var(--bg) 0%, transparent 25%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 0 100px;
}
.hero h1 {
  font-size: clamp(52px, 9vw, 112px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero h1 .line {
  display: block;
  overflow: hidden;
}
.hero h1 .line span {
  display: inline-block;
  transform: translateY(110%);
  animation: lineUp 0.9s var(--ease-out) forwards;
}
.hero h1 .line:nth-child(2) span { animation-delay: 0.12s; }
.hero h1 .line:nth-child(3) span { animation-delay: 0.24s; }
@keyframes lineUp { to { transform: translateY(0); } }
.hero h1 .accent { color: var(--red); }

.hero p {
  font-size: clamp(17px, 2vw, 21px);
  color: #d4d4d4;
  max-width: 520px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.45s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.6s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  opacity: 0;
  animation: fadeUp 1s ease 1.2s forwards;
}
.hero-scroll::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--red);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ============================================================
   Marquee ribbon
   ============================================================ */
.marquee {
  background: var(--red);
  overflow: hidden;
  padding: 14px 0;
  transform: rotate(-1.2deg) scale(1.02);
  margin: -18px 0 0;
  position: relative;
  z-index: 3;
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee span {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 48px;
}
.marquee span::after { content: "★"; font-size: 12px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   Stats strip
   ============================================================ */
.stats {
  padding: 90px 0 70px;
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item svg {
  width: 34px;
  height: 34px;
  color: var(--red);
  margin-bottom: 14px;
}
.stat-value {
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-label {
  color: var(--muted);
  font-size: 15px;
  margin-top: 8px;
}

/* ============================================================
   Section headers
   ============================================================ */
.section { padding: 110px 0; }
.section-head { margin-bottom: 56px; }
.eyebrow {
  display: inline-block;
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}

/* ============================================================
   Favorites cards (Home)
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.food-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s ease, border-color 0.45s ease;
}
.food-card:hover {
  transform: translateY(-10px);
  border-color: rgba(224, 43, 32, 0.45);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55);
}
.food-card-img {
  height: 230px;
  overflow: hidden;
}
.food-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out), filter 0.7s ease;
  filter: brightness(0.9);
}
.food-card:hover .food-card-img img {
  transform: scale(1.09);
  filter: brightness(1);
}
.food-card-body { padding: 26px; }
.food-card-body h3 {
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 8px;
}
.food-card-body p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 22px;
  min-height: 48px;
}
.food-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price {
  color: var(--amber);
  font-size: 22px;
  font-weight: 800;
}
.add-link {
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease, color 0.3s ease;
}
.add-link:hover { gap: 11px; color: #ff5348; }

/* ============================================================
   Quote band
   ============================================================ */
.quote-band {
  position: relative;
  padding: 150px 0;
  overflow: hidden;
}
.quote-band .quote-bg {
  position: absolute;
  inset: -15% 0;
  z-index: 0;
  will-change: transform;
}
.quote-band .quote-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.28);
}
.quote-band blockquote {
  position: relative;
  z-index: 1;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
  letter-spacing: -0.01em;
}
.quote-band blockquote em {
  font-style: normal;
  color: var(--red);
}

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  padding: 110px 0;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 80% at 50% 120%, rgba(224, 43, 32, 0.22), transparent);
}
.cta-band h2 {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.cta-band p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 36px;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 0;
  background: var(--bg-2);
}
.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 48px;
}
.footer-brand img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
  margin-bottom: 16px;
}
.footer-brand p {
  color: var(--muted);
  font-size: 15px;
  max-width: 260px;
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--muted);
  font-size: 15px;
  transition: color 0.25s ease;
}
.footer-links a:hover { color: var(--red); }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-4px);
}
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  text-align: center;
  color: var(--muted-2);
  font-size: 14px;
}

/* ============================================================
   Page hero (Menu / About / Contact)
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-h) + 90px) 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 50% -10%, rgba(224, 43, 32, 0.16), transparent);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(48px, 9vw, 96px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  position: relative;
}
.page-hero h1 .line { display: block; overflow: hidden; }
.page-hero h1 .line span {
  display: inline-block;
  transform: translateY(110%);
  animation: lineUp 0.9s var(--ease-out) forwards;
}
.page-hero .sub {
  margin-top: 22px;
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 15px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.35s forwards;
}
.page-hero .bar {
  width: 96px;
  height: 6px;
  background: var(--red);
  margin: 34px auto 0;
  border-radius: 3px;
  transform: scaleX(0);
  animation: barIn 0.8s var(--ease-out) 0.5s forwards;
}
@keyframes barIn { to { transform: scaleX(1); } }

/* ============================================================
   Menu page
   ============================================================ */
.filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 56px;
}
.filter-btn {
  padding: 11px 26px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.filter-btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}
.filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 8px 22px rgba(224, 43, 32, 0.3);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.menu-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  transition: transform 0.4s var(--ease-out), border-color 0.4s ease, box-shadow 0.4s ease, opacity 0.35s ease;
}
.menu-card:hover {
  transform: translateY(-6px);
  border-color: rgba(224, 43, 32, 0.45);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}
.menu-card.hide { display: none; }
.menu-card.appear { animation: cardIn 0.45s var(--ease-out); }
@keyframes cardIn {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.menu-card-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.menu-card h3 { font-size: 20px; font-weight: 800; }
.menu-card .price { font-size: 19px; white-space: nowrap; }
.menu-card .desc {
  color: var(--muted);
  font-size: 15px;
  margin-top: 6px;
}
.menu-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  padding: 6px 12px;
  border-radius: 6px;
}
.plus-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.plus-btn:hover {
  background: var(--red);
  transform: rotate(90deg) scale(1.08);
}

.allergen {
  margin-top: 70px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--amber);
  border-radius: 12px;
  padding: 24px 28px;
  color: var(--muted);
  font-size: 14.5px;
}
.allergen svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--amber);
  margin-top: 2px;
}
.allergen strong { color: #fff; }

/* ============================================================
   About page
   ============================================================ */
.story {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.story h2 {
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.story h2 em { font-style: normal; color: var(--red); }
.story p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: transform 0.4s var(--ease-out), border-color 0.4s ease;
}
.value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(224, 43, 32, 0.45);
}
.value-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(224, 43, 32, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.4s var(--ease-out), background 0.4s ease;
}
.value-card:hover .value-icon {
  transform: rotate(-8deg) scale(1.1);
  background: var(--red);
}
.value-icon svg { width: 28px; height: 28px; color: var(--red); transition: color 0.4s ease; }
.value-card:hover .value-icon svg { color: #fff; }
.value-card h3 { font-size: 21px; font-weight: 800; margin-bottom: 12px; }
.value-card p { color: var(--muted); font-size: 15px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.4s var(--ease-out), border-color 0.4s ease;
}
.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(224, 43, 32, 0.45);
}
.avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--red), #7f1a13);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 900;
  transition: transform 0.4s var(--ease-out);
}
.team-card:hover .avatar { transform: scale(1.1) rotate(6deg); }
.team-card h3 { font-size: 20px; font-weight: 800; }
.team-card .role {
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 6px 0 16px;
}
.team-card .say { color: var(--muted); font-size: 15px; font-style: italic; }

.milestones {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 44px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: clamp(18px, 2.6vw, 26px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.milestones .dot { color: var(--red); }

/* ============================================================
   Contact page
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.info-cards { display: grid; gap: 20px; }
.info-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform 0.35s var(--ease-out), border-color 0.35s ease;
}
.info-card:hover {
  transform: translateX(6px);
  border-color: rgba(224, 43, 32, 0.45);
}
.info-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(224, 43, 32, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-icon svg { width: 22px; height: 22px; color: var(--red); }
.info-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 4px; }
.info-card p, .info-card a {
  color: var(--muted);
  font-size: 15px;
  transition: color 0.25s ease;
}
.info-card a:hover { color: var(--red); }

.badge-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
  flex-wrap: wrap;
}
.badge {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  transition: all 0.3s ease;
}
.badge:hover { border-color: var(--red); transform: translateY(-2px); }

.contact-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-form h2 {
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.contact-form .form-sub {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 30px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 8px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(224, 43, 32, 0.18);
}
.form-note {
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--muted-2);
}
.form-success {
  display: none;
  margin-top: 18px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #4ade80;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14.5px;
}
.form-success.show { display: block; animation: cardIn 0.4s var(--ease-out); }

.map-placeholder {
  margin-top: 90px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--muted);
  background:
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(224, 43, 32, 0.07), transparent);
}
.map-placeholder svg { width: 40px; height: 40px; color: var(--red); }

.hours-table { width: 100%; margin-top: 6px; }
.hours-table td {
  padding: 3px 0;
  font-size: 15px;
  color: var(--muted);
}
.hours-table td:last-child { text-align: right; color: #fff; font-weight: 600; }

.open-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
}
.open-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 50% { opacity: 0.35; } }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-left.visible, .reveal-right.visible { transform: translateX(0); }
[data-delay="1"] { transition-delay: 0.12s; }
[data-delay="2"] { transition-delay: 0.24s; }
[data-delay="3"] { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .cards-grid, .values-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .story { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  /* backdrop-filter would make .nav the containing block for the
     fixed fullscreen menu, so drop it on mobile */
  .nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(10, 10, 10, 0.95);
  }
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 34px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 105;
  }
  .nav-links.open { opacity: 1; visibility: visible; }
  .nav-links a { font-size: 26px; font-weight: 800; }
  .nav-cta { display: none; }
  .nav { padding-inline: 0; }

  .section { padding: 72px 0; }
  .cards-grid, .values-grid, .team-grid, .menu-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 22px; }
  .footer-grid { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .quote-band { padding: 100px 0; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: clamp(30px, 9.6vw, 52px); }
  .page-hero h1 { font-size: clamp(36px, 10.5vw, 60px); }
}
