/* ============================================================
   BurgerCraft — Hambúrgueres Artesanais
   Premium CSS Stylesheet - Responsive, High-Performance
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Oswald:wght@400;500;700&display=swap');

/* --- DESIGN TOKENS --- */
:root {
  --clr-bg: #0a0a0a;
  --clr-bg-alt: #121212;
  --clr-primary: #e35100;
  --clr-primary-hover: #c83b00;
  --clr-secondary: #ffba08;
  --clr-text: #f5f5f5;
  --clr-text-muted: #a0a0a0;
  --clr-white: #ffffff;
  --clr-card-bg: #161616;
  --clr-card-border: rgba(227, 81, 0, 0.1);
  --clr-overlay: rgba(10, 10, 10, 0.85);

  /* Typography */
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.5rem;
  --sp-lg: 2.5rem;
  --sp-xl: 4rem;
  --sp-2xl: 6rem;

  /* Border Radius */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-pill: 9999px;

  /* Shadows & Glows */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.7);
  --glow-orange: 0 0 20px rgba(232, 93, 4, 0.3);
  --glow-orange-lg: 0 0 40px rgba(232, 93, 4, 0.5);
  --glow-gold: 0 0 15px rgba(255, 186, 8, 0.25);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 0.2s;
  --dur-med: 0.35s;
  --dur-slow: 0.6s;
  
  --nav-h: 80px;
}

/* --- RESET & BASIC STYLES --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h, 80px);
  font-size: 16px;
}

body {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

ul, ol {
  list-style: none;
}

address {
  font-style: normal;
}

/* --- REUSABLE COMPONENTS & LAYOUT --- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.75rem 1.75rem;
  border-radius: var(--r-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
}

.btn--primary {
  background-color: var(--clr-primary);
  color: var(--clr-white);
}

.btn--primary:hover {
  background-color: var(--clr-primary-hover);
  box-shadow: var(--glow-orange);
  transform: translateY(-2px);
}

.btn--ghost {
  background-color: transparent;
  border-color: var(--clr-text);
  color: var(--clr-text);
}

.btn--ghost:hover {
  background-color: var(--clr-text);
  color: var(--clr-bg);
  transform: translateY(-2px);
}

.btn--outline {
  background-color: transparent;
  border-color: var(--clr-primary);
  color: var(--clr-primary);
}

.btn--outline:hover {
  background-color: var(--clr-primary);
  color: var(--clr-white);
  box-shadow: var(--glow-orange);
  transform: translateY(-2px);
}

.btn--menu {
  background-color: transparent;
  border-color: var(--clr-secondary);
  color: var(--clr-secondary);
  width: 100%;
  padding: 0.5rem 1rem;
}

.btn--menu:hover {
  background-color: var(--clr-secondary);
  color: var(--clr-bg);
  box-shadow: var(--glow-gold);
}

.btn--large {
  padding: 1rem 2.25rem;
  font-size: 1.1rem;
}

.btn--glow {
  box-shadow: var(--glow-orange);
  animation: pulse-glow 2s infinite alternate;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 15px rgba(232, 93, 4, 0.3); }
  100% { box-shadow: 0 0 30px rgba(232, 93, 4, 0.7); }
}

/* Sections */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--sp-xl);
}

.section-eyebrow {
  color: var(--clr-primary);
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--clr-text-muted);
}

/* Diagonal Section Dividers */
.hero__diagonal {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: var(--clr-bg-alt);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
  z-index: 2;
}

.section-diagonal {
  position: absolute;
  width: 100%;
  height: 80px;
  z-index: 2;
  pointer-events: none;
}

.section-diagonal--down {
  bottom: -40px;
  left: 0;
  background-color: var(--clr-bg-alt);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.section-diagonal--up {
  bottom: -40px;
  left: 0;
  background-color: var(--clr-bg);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  background-color: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: all var(--dur-fast) var(--ease);
}

.navbar--scrolled {
  height: 70px;
  background-color: rgba(10, 10, 10, 0.95);
  box-shadow: 0 5px 20px rgba(0,0,0,0.8);
}

.navbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar__logo {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--clr-text);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.navbar__logo-icon {
  color: var(--clr-primary);
  filter: drop-shadow(0 0 5px var(--clr-primary));
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar__link {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1rem;
  color: var(--clr-text-muted);
  transition: color var(--dur-fast) var(--ease);
  position: relative;
  padding: 0.5rem 0;
}

.navbar__link:hover {
  color: var(--clr-text);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--clr-primary);
  transition: width var(--dur-fast) var(--ease);
}

.navbar__link:hover::after {
  width: 100%;
}

.navbar__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
}

.hamburger__bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--clr-text);
  border-radius: var(--r-pill);
  transition: all var(--dur-fast) var(--ease);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 100%;
  width: 100%;
  height: calc(100vh - var(--nav-h));
  background-color: var(--clr-bg);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: left var(--dur-med) var(--ease);
}

.mobile-menu.open {
  left: 0;
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-menu__link {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.mobile-menu__cta {
  font-size: 1.2rem;
  padding: 0.75rem 2rem;
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--nav-h) + 2rem);
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 70% 30%, rgba(232, 93, 4, 0.15) 0%, rgba(10, 10, 10, 0) 60%), var(--clr-bg);
  padding-bottom: 5rem;
}

.hero__bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 10% 90%, rgba(255, 186, 8, 0.05) 0%, rgba(10, 10, 10, 0) 50%);
  pointer-events: none;
}

.hero__content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 5;
}

.hero__eyebrow {
  color: var(--clr-secondary);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.hero__headline {
  font-family: var(--font-head);
  font-size: 4.5rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.hero__headline--accent {
  color: var(--clr-primary);
  text-shadow: 0 0 20px rgba(232, 93, 4, 0.4);
}

.hero__subheadline {
  font-size: 1.125rem;
  color: var(--clr-text-muted);
  max-width: 500px;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero__stat {
  display: flex;
  flex-direction: column;
}

.hero__stat-number {
  font-family: var(--font-head);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
}

.hero__image-wrap {
  position: relative;
}

.hero__image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background-color: var(--clr-primary);
  filter: blur(80px);
  opacity: 0.25;
  pointer-events: none;
  z-index: 1;
}

.hero__image {
  position: relative;
  z-index: 2;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md), 0 0 30px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- FEATURES --- */
.features {
  position: relative;
  background-color: var(--clr-bg-alt);
  padding: var(--sp-2xl) 0 calc(var(--sp-2xl) + 40px);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background-color: var(--clr-card-bg);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--r-md);
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--dur-med) var(--ease);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(232, 93, 4, 0.3);
  box-shadow: var(--shadow-md), var(--glow-orange);
}

.feature-card__icon-wrap {
  margin-bottom: 2rem;
}

.feature-card__icon {
  width: 64px;
  height: 64px;
}

.feature-card__title {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.feature-card__desc {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.feature-card__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--clr-primary);
  background-color: rgba(232, 93, 4, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: var(--r-pill);
}

.feature-card--highlight {
  border-color: rgba(255, 186, 8, 0.2);
}

.feature-card--highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--clr-secondary);
}

.feature-card--highlight .feature-card__badge {
  color: var(--clr-secondary);
  background-color: rgba(255, 186, 8, 0.1);
}

/* --- ABOUT --- */
.about {
  position: relative;
  padding: var(--sp-2xl) 0 calc(var(--sp-2xl) + 40px);
  background: radial-gradient(circle at 10% 50%, rgba(255, 186, 8, 0.05) 0%, rgba(10, 10, 10, 0) 50%), var(--clr-bg);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 4rem;
}

.about__image-col {
  position: relative;
}

.about__image-frame {
  position: relative;
  padding: 10px;
  background-color: var(--clr-card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
}

.about__image {
  border-radius: var(--r-sm);
}

.about__image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--clr-primary);
  color: var(--clr-white);
  padding: 1.25rem 1.75rem;
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-md), var(--glow-orange);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.about__badge-year {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.about__badge-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.about__text-col .section-title {
  margin-bottom: 1.5rem;
}

.about__body {
  color: var(--clr-text-muted);
  margin-bottom: 1.5rem;
}

.about__pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.about__pillar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.about__pillar-icon {
  font-size: 1.25rem;
}

/* --- MENU --- */
.menu {
  position: relative;
  background-color: var(--clr-bg-alt);
  padding: var(--sp-2xl) 0 calc(var(--sp-2xl) + 40px);
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.menu-card {
  background-color: var(--clr-card-bg);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all var(--dur-med) var(--ease);
}

.menu-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 93, 4, 0.25);
  box-shadow: var(--shadow-md);
}

.menu-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.menu-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}

.menu-card:hover .menu-card__image {
  transform: scale(1.05);
}

.menu-card__tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--clr-secondary);
  color: var(--clr-bg);
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--r-sm);
  letter-spacing: 0.05em;
  z-index: 5;
}

.menu-card__tag--fire {
  background-color: var(--clr-primary);
  color: var(--clr-white);
  box-shadow: var(--glow-orange);
}

.menu-card__tag--green {
  background-color: #38b000;
  color: var(--clr-white);
}

.menu-card__body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.menu-card__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
  gap: 1rem;
}

.menu-card__name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.menu-card__price {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-secondary);
}

.menu-card__desc {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.menu-card--featured {
  border-color: rgba(232, 93, 4, 0.4);
  box-shadow: 0 10px 30px rgba(232, 93, 4, 0.1);
  transform: scale(1.02);
}

.menu-card--featured:hover {
  transform: scale(1.02) translateY(-6px);
  box-shadow: 0 15px 40px rgba(232, 93, 4, 0.15), var(--glow-orange);
}

.menu__cta-row {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.menu__cta-text {
  font-size: 1.125rem;
  font-weight: 500;
}

/* --- TESTIMONIALS --- */
.testimonials {
  position: relative;
  padding: var(--sp-2xl) 0 calc(var(--sp-2xl) + 40px);
  background-color: var(--clr-bg);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--clr-bg-alt);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--r-md);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.testimonial-card__stars {
  color: var(--clr-secondary);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.testimonial-card__quote {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--r-pill);
  background-color: var(--clr-primary);
  color: var(--clr-white);
  font-family: var(--font-head);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-card__name {
  display: block;
  font-weight: 600;
  color: var(--clr-white);
  font-size: 1rem;
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}

.testimonial-card--highlight {
  border-color: rgba(232, 93, 4, 0.2);
  background-color: var(--clr-card-bg);
}

.testimonial-card--highlight .testimonial-card__avatar {
  background-color: var(--clr-secondary);
  color: var(--clr-bg);
}

/* --- CTA BANNER --- */
.cta-banner {
  position: relative;
  padding: var(--sp-2xl) 0;
  text-align: center;
  background-color: var(--clr-bg-alt);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(232, 93, 4, 0.15) 0%, rgba(10, 10, 10, 0) 70%);
  pointer-events: none;
}

.cta-banner__embers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.ember {
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--clr-primary);
  border-radius: var(--r-pill);
  opacity: 0.4;
  animation: ember-float 4s infinite ease-in-out;
}

.ember--1 { left: 10%; bottom: 10%; animation-delay: 0s; width: 4px; height: 4px; }
.ember--2 { left: 25%; bottom: -10px; animation-delay: 1.5s; }
.ember--3 { right: 30%; bottom: 20%; animation-delay: 0.8s; width: 5px; height: 5px; }
.ember--4 { right: 12%; bottom: -5px; animation-delay: 2.2s; }
.ember--5 { left: 45%; bottom: 5%; animation-delay: 3s; width: 3px; height: 3px; }

@keyframes ember-float {
  0% { transform: translateY(0) scale(1) rotate(0); opacity: 0; }
  20% { opacity: 0.6; }
  100% { transform: translateY(-120px) scale(0.5) rotate(180deg); opacity: 0; }
}

.cta-banner__inner {
  position: relative;
  z-index: 5;
  max-width: 800px;
}

.cta-banner__badge {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--clr-secondary);
  margin-bottom: 1.5rem;
}

.cta-banner__title {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.cta-banner__title--accent {
  color: var(--clr-primary);
  text-shadow: 0 0 20px rgba(232, 93, 4, 0.3);
}

.cta-banner__subtitle {
  font-size: 1.125rem;
  color: var(--clr-text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner__coupon {
  display: inline-flex;
  align-items: stretch;
  background-color: var(--clr-bg);
  border: 2px dashed rgba(232, 93, 4, 0.4);
  padding: 4px;
  border-radius: var(--r-sm);
  margin-bottom: 3.5rem;
}

.cta-banner__coupon-code {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.5rem 2rem;
  color: var(--clr-white);
  display: flex;
  align-items: center;
}

.cta-banner__copy-btn {
  background-color: var(--clr-primary);
  color: var(--clr-white);
  border: none;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color var(--dur-fast) var(--ease);
}

.cta-banner__copy-btn:hover {
  background-color: var(--clr-primary-hover);
}

.cta-banner__copy-btn.copied {
  background-color: #38b000;
}

.cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.cta-banner__fine {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}

/* --- FOOTER --- */
.footer {
  background-color: #050505;
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.02);
  color: var(--clr-text-muted);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer__logo {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--clr-text);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.footer__logo span {
  color: var(--clr-primary);
}

.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  width: 44px;
  height: 44px;
  background-color: var(--clr-bg-alt);
  color: var(--clr-text-muted);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-fast) var(--ease);
}

.footer__social-link:hover {
  background-color: var(--clr-primary);
  color: var(--clr-white);
  transform: translateY(-3px);
}

.footer__nav-title {
  font-family: var(--font-head);
  color: var(--clr-white);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__link {
  font-size: 0.9rem;
  transition: color var(--dur-fast) var(--ease);
}

.footer__link:hover {
  color: var(--clr-white);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__address {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.footer__hours {
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

.footer__hours p {
  margin-bottom: 0.25rem;
}

.footer__hours strong {
  color: var(--clr-white);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__link--small {
  font-size: 0.85rem;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  :root {
    --nav-h: 70px;
  }
  
  .hero__headline {
    font-size: 3.5rem;
  }
  
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4rem;
  }
  
  .hero__text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero__subheadline {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero__image-wrap {
    max-width: 500px;
    margin: 0 auto;
  }

  .features__grid, .menu__grid, .testimonials__grid, .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  
  .about__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about__image-col {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .about__grid {
    text-align: center;
  }
  
  .about__pillars {
    justify-items: center;
  }
  
  .menu-card--featured {
    transform: none;
  }
  
  .menu-card--featured:hover {
    transform: translateY(-6px);
  }
  
  .footer__grid {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .feature-card { padding: 1.25rem; }
  .menu-card__body { padding: 1.25rem; }
  .testimonial-card { padding: 1.25rem; }

  .features__grid, .menu__grid, .testimonials__grid, .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .navbar__links {
    display: none;
  }
  
  .navbar__hamburger {
    display: flex;
  }
  
  .hero__headline {
    font-size: 3rem;
  }
  
  .hero__actions {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  
  .hero__actions .btn {
    width: 100%;
  }
  
  .cta-banner__title {
    font-size: 2.5rem;
  }
  
  .cta-banner__actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cta-banner__actions .btn {
    width: 100%;
  }
  
  .cta-banner__coupon {
    flex-direction: column;
  }
  
  .cta-banner__coupon-code {
    justify-content: center;
    border-bottom: 2px dashed rgba(232, 93, 4, 0.4);
    padding: 1rem;
  }
  
  .cta-banner__copy-btn {
    padding: 1rem;
    justify-content: center;
  }
  
  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
