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

/* ============================================================
   Variables
============================================================ */
:root {
  --bg-main:          #050505;
  --bg-section:       #0b0b0d;
  --bg-card:          #111114;
  --bg-card-soft:     #151518;
  --text-main:        #ffffff;
  --text-muted:       rgba(255, 255, 255, 0.72);
  --text-soft:        rgba(255, 255, 255, 0.44);
  --border-soft:      rgba(255, 255, 255, 0.1);
  --border-hover:     rgba(229, 57, 53, 0.55);
  --accent:           #E53935;
  --accent-hover:     #B71C1C;
  --radius-card:      22px;
  --radius-button:    999px;
  --container-width:  1180px;
  --ease-out:         cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out:      cubic-bezier(0.77, 0, 0.175, 1);
}

/* ============================================================
   Base
============================================================ */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

p {
  color: var(--text-muted);
  line-height: 1.7;
}

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

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

/* ============================================================
   Layout
============================================================ */
.container {
  width: min(100% - 40px, var(--container-width));
  margin-inline: auto;
}

.section {
  padding: 100px 0;
}

/* ============================================================
   Eyebrow
============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Hero eyebrow gets a pill border treatment */
.hero .eyebrow {
  display: inline-flex;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 6px 16px 6px 12px;
  gap: 8px;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero .eyebrow::before {
  background: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   Header
============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background 240ms ease;
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(229, 57, 53, 0.5) 20%, rgba(229, 57, 53, 0.8) 50%, rgba(229, 57, 53, 0.5) 80%, transparent 100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  transition: opacity 150ms ease;
}

.logo:hover {
  opacity: 0.85;
}

.logo-img {
  display: block;
  height: 52px;
  width: auto;
}

.logo-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.logo-text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-main);
  white-space: nowrap;
}

.logo-text strong {
  font-weight: 800;
}

/* Desktop Nav */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-desktop a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 150ms ease;
}

.nav-desktop a:hover {
  color: var(--text-main);
}

.nav-desktop .btn {
  margin-left: 8px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  cursor: pointer;
  padding: 0 9px;
  transition: border-color 150ms ease;
}

.hamburger:hover {
  border-color: var(--accent);
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: transform 200ms var(--ease-out), opacity 200ms ease;
}

/* Hamburger open state */
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px 20px;
  border-top: 1px solid var(--border-soft);
}

.nav-mobile[hidden] {
  display: none;
}

.nav-mobile:not([hidden]) {
  animation: navSlideDown 220ms var(--ease-out) both;
}

@keyframes navSlideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-mobile a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-soft);
  transition: color 180ms ease;
}

.nav-mobile a:last-child {
  border-bottom: none;
  margin-top: 8px;
  text-align: center;
}

.nav-mobile a:hover {
  color: var(--text-main);
}

/* ============================================================
   Buttons
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: var(--radius-button);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms var(--ease-out);
}

.btn:active {
  transform: scale(0.96);
}

.btn-primary {
  background: linear-gradient(180deg, #f05250 0%, #e53935 45%, #c62828 100%);
  color: #fff;
  border-color: rgba(229, 57, 53, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 4px 20px rgba(229, 57, 53, 0.38),
    0 1px 3px rgba(0, 0, 0, 0.45);
}

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    background: linear-gradient(180deg, #e53935 0%, #c62828 45%, #b71c1c 100%);
    border-color: var(--accent-hover);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.14),
      0 6px 28px rgba(229, 57, 53, 0.55),
      0 2px 6px rgba(0, 0, 0, 0.5);
  }
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

@media (hover: hover) and (pointer: fine) {
  .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(229, 57, 53, 0.65);
    box-shadow: 0 0 22px rgba(229, 57, 53, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }
}

.btn-sm {
  min-height: 40px;
  padding: 0 18px;
  font-size: 0.95rem;
}

/* ============================================================
   Hero
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;

  background-color: #1e0908;
  background-image: url('../images/magill-bbq-chickens-hero.webp');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.12) 55%, rgba(0, 0, 0, 0.22) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.62) 100%);
  z-index: 0;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  pointer-events: none;
  background: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 56px 0;
}

/* Staggered hero entrance */
.hero .eyebrow {
  animation: heroFadeUp 0.6s var(--ease-out) 0.08s both;
}

.hero-title {
  font-size: clamp(2.8rem, 6.5vw, 5.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  padding-bottom: 0.08em;
  color: #ffffff;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #ffffff;
  background-clip: unset;
  text-shadow: 0 6px 28px rgba(0, 0, 0, 0.55);
  animation: heroFadeUp 0.7s var(--ease-out) 0.2s both;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.65;
  animation: heroFadeUp 0.65s var(--ease-out) 0.36s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: heroFadeUp 0.6s var(--ease-out) 0.52s both;
}

.hero-actions .btn {
  min-height: 54px;
  padding: 0 32px;
  font-size: 0.95rem;
}

.hero-actions .btn-primary {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 0 28px rgba(229, 57, 53, 0.4),
    0 6px 20px rgba(229, 57, 53, 0.28),
    0 2px 6px rgba(0, 0, 0, 0.5);
}

@media (hover: hover) and (pointer: fine) {
  .hero-actions .btn-primary:hover {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.16),
      0 0 40px rgba(229, 57, 53, 0.52),
      0 8px 28px rgba(229, 57, 53, 0.36),
      0 2px 8px rgba(0, 0, 0, 0.6);
  }
}

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

/* ============================================================
   Cards
============================================================ */
.card {
  background: linear-gradient(180deg, #1e1c28 0%, #141319 55%, #0f0e13 100%);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow:
    inset 0 1px 0 rgba(229, 57, 53, 0.32),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4),
    0 2px 6px rgba(0, 0, 0, 0.55),
    0 16px 48px rgba(0, 0, 0, 0.55),
    0 48px 96px rgba(0, 0, 0, 0.32);
  transition:
    transform 240ms var(--ease-out),
    border-color 240ms ease,
    box-shadow 240ms ease,
    background 240ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .card:hover {
    transform: translateY(-10px);
    background: linear-gradient(180deg, #252334 0%, #1a1920 55%, #121118 100%);
    border-color: rgba(229, 57, 53, 0.6);
    box-shadow:
      inset 0 1px 0 rgba(229, 57, 53, 0.55),
      inset 0 -1px 0 rgba(0, 0, 0, 0.45),
      0 4px 10px rgba(0, 0, 0, 0.65),
      0 20px 56px rgba(0, 0, 0, 0.7),
      0 0 0 1px rgba(229, 57, 53, 0.2),
      0 0 70px rgba(229, 57, 53, 0.14),
      0 48px 96px rgba(0, 0, 0, 0.38);
  }
}

/* ============================================================
   Grids
============================================================ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

/* ============================================================
   Section headings
============================================================ */
.section-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text-main);
  margin-bottom: 16px;
  text-shadow: 0 0 100px rgba(229, 57, 53, 0.18);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 52px;
}

/* ============================================================
   Menu Section
============================================================ */
.menu-section {
  position: relative;
  background: linear-gradient(180deg, #070709 0%, #0e0d14 6%, #0e0d14 94%, #070709 100%);
  overflow: hidden;
}

.menu-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 900px;
  height: 900px;
  background: radial-gradient(ellipse, rgba(229, 57, 53, 0.11) 0%, transparent 58%);
  pointer-events: none;
  z-index: 0;
}

.menu-section .container {
  position: relative;
  z-index: 1;
}

.grid-menu {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.menu-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.menu-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.menu-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(229, 57, 53, 0.18) 0%, rgba(229, 57, 53, 0.06) 100%);
  border: 1px solid rgba(229, 57, 53, 0.28);
  border-radius: 16px;
  font-size: 1.65rem;
  line-height: 1;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(229, 57, 53, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.badge-popular {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  background: rgba(229, 57, 53, 0.14);
  color: #ff8a82;
  border: 1px solid rgba(229, 57, 53, 0.4);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 11px;
  margin-top: 4px;
  box-shadow: 0 0 18px rgba(229, 57, 53, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-shadow: 0 0 10px rgba(229, 57, 53, 0.55);
}

.menu-card-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.menu-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Popular cards get a red-tinted top edge */
.menu-card:has(.badge-popular) {
  border-top-color: rgba(229, 57, 53, 0.52);
}

@media (hover: hover) and (pointer: fine) {
  .menu-card:hover .menu-icon {
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.3) 0%, rgba(229, 57, 53, 0.1) 100%);
    border-color: rgba(229, 57, 53, 0.5);
    box-shadow: 0 6px 28px rgba(229, 57, 53, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
}

/* ============================================================
   What's Hot Section
============================================================ */
.whats-hot-section {
  position: relative;
  background: linear-gradient(180deg, #050505 0%, #07070a 5%, #07070a 95%, #050505 100%);
  overflow: hidden;
}

.whats-hot-section::before {
  content: '';
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(229, 57, 53, 0.10) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.whats-hot-section .container {
  position: relative;
  z-index: 1;
}

.whats-hot-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.whats-hot-img-wrap {
  width: 100%;
  height: 260px;
  flex-shrink: 0;
  overflow: hidden;
}

.whats-hot-img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.whats-hot-card-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 32px 32px;
  flex: 1;
}

.whats-hot-card-body .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* ============================================================
   Why Choose Us Section
============================================================ */
.why-section {
  position: relative;
  background: linear-gradient(180deg, #050505 0%, #07070a 5%, #07070a 95%, #050505 100%);
  overflow: hidden;
}

.why-section::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(229, 57, 53, 0.11) 0%, transparent 62%);
  pointer-events: none;
  z-index: 0;
}

.why-section .container {
  position: relative;
  z-index: 1;
}

.why-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, rgba(229, 57, 53, 0.18) 0%, rgba(229, 57, 53, 0.05) 100%);
  border: 1px solid rgba(229, 57, 53, 0.28);
  border-radius: 20px;
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
  box-shadow: 0 4px 22px rgba(229, 57, 53, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.why-card-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.why-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (hover: hover) and (pointer: fine) {
  .why-card:hover .why-icon {
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.32) 0%, rgba(229, 57, 53, 0.1) 100%);
    border-color: rgba(229, 57, 53, 0.52);
    box-shadow: 0 6px 30px rgba(229, 57, 53, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
}

/* ============================================================
   About Section
============================================================ */
.about-section {
  background: linear-gradient(180deg, #070709 0%, #0e0d14 6%, #0e0d14 94%, #070709 100%);
}

.about-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-text p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.about-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.5;
}

.about-checklist li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 0.88rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* About food image card */
.about-img-card {
  padding: 0;
  overflow: hidden;
  min-height: 420px;
}

.about-img-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

/* ============================================================
   Contact Section
============================================================ */
.contact-section {
  position: relative;
  background: linear-gradient(180deg, #050505 0%, #07070a 5%, #07070a 95%, #050505 100%);
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(229, 57, 53, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

.contact-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

/* Contact details card */
.contact-card {
  display: flex;
  flex-direction: column;
}

.contact-card-heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 24px;
}

.contact-rows {
  list-style: none;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.contact-rows li {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-rows li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.contact-row-label {
  font-weight: 700;
  color: var(--accent);
  min-width: 68px;
  flex-shrink: 0;
}

.contact-row-value {
  color: var(--text-muted);
}

.contact-cta {
  margin-top: 28px;
  align-self: flex-start;
}

/* Google Maps embed card */
.contact-map-card {
  padding: 0;
  overflow: hidden;
  min-height: 380px;
}

.contact-map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

/* ============================================================
   Footer
============================================================ */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, #0d0c10 0%, #080608 50%, #050405 100%);
  padding: 72px 0 0;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(229, 57, 53, 0.45) 20%, rgba(229, 57, 53, 0.9) 50%, rgba(229, 57, 53, 0.45) 80%, transparent 100%);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0;
  padding-bottom: 56px;
}

.footer-brand {
  padding-right: 48px;
}

.footer-nav {
  padding: 0 32px;
  border-left: 1px solid var(--border-soft);
}

.footer-contact {
  padding: 0 0 0 32px;
  border-left: 1px solid var(--border-soft);
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 58px;
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.72;
  max-width: 300px;
}

.footer-col-heading {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(229, 57, 53, 0.7);
  margin-bottom: 16px;
}

.footer-nav ul,
.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  position: relative;
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 150ms ease;
}

.footer-nav a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 200ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .footer-nav a:hover {
    color: var(--text-main);
  }

  .footer-nav a:hover::after {
    width: 100%;
  }
}

.footer-contact li {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-bottom {
  position: relative;
  padding: 22px 0;
  text-align: center;
}

.footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(229, 57, 53, 0.22) 20%,
    rgba(255, 255, 255, 0.1) 40%,
    rgba(255, 255, 255, 0.1) 60%,
    rgba(229, 57, 53, 0.22) 80%,
    transparent 100%
  );
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-soft);
}

/* ============================================================
   Order Section
============================================================ */
.order-section {
  position: relative;
  background: linear-gradient(180deg, #070709 0%, #0e0d14 6%, #0e0d14 94%, #070709 100%);
  text-align: center;
  overflow: hidden;
}

.order-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(229, 57, 53, 0.16) 0%, transparent 65%);
  pointer-events: none;
}

.order-section .container {
  position: relative;
  z-index: 1;
}

.order-section .section-sub {
  margin-inline: auto;
}

.order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.seo-note {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 700px;
  margin-top: 40px;
}

.order-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 24px;
}

.order-note a {
  color: var(--accent);
  transition: color 150ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .order-note a:hover {
    color: var(--text-main);
  }
}

.btn-order {
  min-height: 54px;
  padding: 0 36px;
  font-size: 0.95rem;
}

/* ============================================================
   Responsive
============================================================ */
@media (min-width: 769px) {
  .nav-mobile {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .logo-img {
    height: 42px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-content {
    text-align: center;
    padding: 60px 0 80px;
  }

  .hero-title {
    line-height: 1.05;
  }

  .hero-sub {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 340px;
  }

  .section {
    padding: 68px 0;
  }

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

  .whats-hot-img-wrap {
    height: 220px;
  }

  .about-cols,
  .contact-cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .footer-logo-img {
    height: 46px;
  }

  .footer-nav,
  .footer-contact {
    border-left: none;
    padding-left: 0;
    padding-right: 0;
  }

  .about-img-card {
    min-height: 280px;
  }

  .about-img-card img {
    min-height: 280px;
  }

  .contact-map-card {
    min-height: 260px;
  }

  .contact-map-card iframe {
    min-height: 260px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.75) 100%);
  }

  .order-actions .btn {
    width: 100%;
    max-width: 340px;
  }
}

@media (max-width: 680px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .logo-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 560px) {
  .grid-menu {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero .eyebrow,
  .hero-title,
  .hero-sub,
  .hero-actions {
    animation: none;
  }

  .card {
    transition: border-color 200ms ease, background 200ms ease;
  }

  .card:hover {
    transform: none;
  }

  .nav-mobile:not([hidden]) {
    animation: none;
  }

  .hamburger span {
    transition: none;
  }
}
