/* ============================================================
   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.56);
  --border-soft:      rgba(255, 255, 255, 0.08);
  --border-hover:     rgba(229, 57, 53, 0.45);
  --accent:           #E53935;
  --accent-hover:     #B71C1C;
  --shadow-soft:      0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-card:      22px;
  --radius-button:    999px;
  --container-width:  1180px;
}

/* ============================================================
   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 {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
}

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

.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 180ms ease;
}

.logo:hover {
  opacity: 0.85;
}

.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: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 180ms 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 180ms ease;
}

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

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: transform 240ms ease, opacity 240ms 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 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 180ms ease, border-color 180ms ease, color 180ms ease, transform 120ms ease;
}

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

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-color: var(--border-soft);
}

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

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

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

  /* Gradient background — replace with hero image when available */
  background:
    linear-gradient(135deg, #1a0a00 0%, #0d0d0d 50%, #1a0500 100%);

  /* Uncomment when hero image is ready:
  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.9) 0%, rgba(0, 0, 0, 0.55) 60%, rgba(0, 0, 0, 0.75) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 0;
}

/* Subtle warm glow accent */
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 300px;
  background: radial-gradient(ellipse, rgba(229, 57, 53, 0.12), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

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

.hero-title {
  font-size: clamp(2.8rem, 6.5vw, 5.6rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--text-main);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

/* ============================================================
   Cards
============================================================ */
.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
}

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

.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;
}

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

/* ============================================================
   Menu Section
============================================================ */
.menu-section {
  background: var(--bg-section);
}

.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 {
  font-size: 2rem;
  line-height: 1;
}

.badge-popular {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  background: rgba(229, 57, 53, 0.12);
  color: var(--accent);
  border: 1px solid rgba(229, 57, 53, 0.28);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  margin-top: 4px;
}

.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;
}

/* ============================================================
   Why Choose Us Section
============================================================ */
.why-section {
  background: var(--bg-main);
}

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

.why-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.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;
}

/* ============================================================
   About Section
============================================================ */
.about-section {
  background: var(--bg-section);
}

.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-img-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 340px;
  border-style: dashed;
  text-align: center;
}

.about-img-emoji {
  font-size: 3.8rem;
  line-height: 1;
}

.about-img-label {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-muted);
}

.about-img-note {
  font-size: 0.78rem;
  color: var(--text-soft);
  line-height: 1.55;
  max-width: 200px;
}

/* ============================================================
   Contact Section
============================================================ */
.contact-section {
  background: var(--bg-main);
}

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

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

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

.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 var(--border-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-rows li:first-child {
  border-top: 1px solid var(--border-soft);
}

.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;
}

/* Map placeholder card */
.contact-map-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 320px;
  border-style: dashed;
  text-align: center;
}

.contact-map-emoji {
  font-size: 3.4rem;
  line-height: 1;
}

.contact-map-heading {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-muted);
}

.contact-map-note {
  font-size: 0.78rem;
  color: var(--text-soft);
  line-height: 1.55;
  max-width: 210px;
}

/* ============================================================
   Footer
============================================================ */
.site-footer {
  background: var(--bg-section);
  border-top: 1px solid var(--border-soft);
  padding: 64px 0 0;
}

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

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

.footer-desc {
  font-size: 0.88rem;
  color: var(--text-soft);
  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: var(--text-soft);
  margin-bottom: 16px;
}

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

.footer-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 180ms ease;
}

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

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

.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding: 20px 0;
  text-align: center;
}

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

/* ============================================================
   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;
  }

  .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;
  }

  .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;
  }
}

@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;
  }

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