/*-----------------------------------*\
  Smokys Grill House — Brand Style Sheet
\*-----------------------------------*/

:root {
  /* Smokys Brand Colors — Teal + White */
  --teal:           hsl(174, 72%, 25%);   /* primary brand teal  */
  --teal-dark:      hsl(174, 72%, 17%);   /* dark hover / deep   */
  --teal-mid:       hsl(174, 55%, 38%);   /* secondary accent    */
  --teal-light:     hsl(174, 60%, 65%);   /* glow / highlight    */
  --deep-teal:      hsl(174, 70%, 8%);    /* near-black sections */
  --teal-charcoal:  hsl(174, 55%, 12%);   /* dark charcoal teal  */
  --teal-cream:     hsl(174, 28%, 96%);   /* lightest background */
  --teal-cream-2:   hsl(174, 18%, 93%);   /* second light bg     */
  --teal-20:        hsla(174, 72%, 25%, 0.2);
  --white:          hsl(0, 0%, 100%);
  --black:          hsl(0, 0%, 0%);
  --text-light:     hsl(174, 10%, 58%);
  --text-mid:       hsl(174, 10%, 38%);
  --gainsboro:      hsl(0, 0%, 87%);
  --cultured:       hsl(174, 15%, 92%);
  --black-95:       hsla(0, 0%, 0%, 0.95);

  /* Typography */
  --ff-heading: 'Oswald', sans-serif;
  --ff-body:    'Roboto', sans-serif;
  --ff-script:  'Shadows Into Light', cursive;

  --fs-1: 3.6rem;
  --fs-2: 2.4rem;
  --fs-3: 1.8rem;
  --fs-4: 1.4rem;
  --fs-5: 1.2rem;

  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;

  /* Spacing */
  --section-padding: 50px;

  /* Shadows */
  --shadow-1:    0 4px 20px hsla(174, 72%, 10%, 0.15);
  --shadow-2:    0 2px 8px  hsla(174, 72%, 10%, 0.12);
  --shadow-teal: 0 8px 30px hsla(174, 72%, 25%, 0.35);

  /* Transitions */
  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --transition-3: 0.7s cubic-bezier(0.16, 1, 0.3, 1);

  /* Clip paths */
  --clip-path-1: polygon(0 40%, 100% 0%, 100% 100%, 0 100%);
  --clip-path-2: polygon(0 0%, 100% 0%, 100% 100%, 0 100%);

  /* Z-Index Layer System */
  --z-notifications:  9999;  /* Toasts, alerts, ephemeral messages */
  --z-loading:        1000;  /* Loading screens, full-screen overlays */
  --z-progress:       999;   /* Progress bars, fixed indicators */
  --z-modal:          500;   /* Modals, dropdowns, overlays */
  --z-overlay:        400;   /* Semi-transparent overlays */
  --z-fixed-header:   400;   /* Fixed navigation, header */
  --z-dropdown:       350;   /* Dropdown menus */
  --z-sticky:         100;   /* Sticky elements */
  --z-content:        10;    /* Main page content */
  --z-background:     5;     /* Background layers, pseudo-elements */
  --z-deep:           0;     /* Base backgrounds */
  --z-hidden:         -1;    /* Hidden or beneath elements */
}

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

li { list-style: none; }

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

a,
img,
svg,
span,
input,
select,
button,
textarea,
ion-icon { display: block; }

img { height: auto; }

input,
select,
button,
textarea { background: none; border: none; font: inherit; }

input,
select,
textarea { width: 100%; }

button { cursor: pointer; }

ion-icon { pointer-events: none; }

address { font-style: normal; }

html {
  font-family: var(--ff-body);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--teal-cream);
  color: var(--text-mid);
  font-size: 1.6rem;
  line-height: 1.6;
  overflow-x: hidden;
}

body.active { overflow: hidden; }

:focus-visible { outline-offset: 4px; }

::selection {
  background-color: var(--teal);
  color: var(--white);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background-color: var(--cultured); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--teal-dark), var(--teal));
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--teal-mid); }

/*-----------------------------------*\
  LOGO IMAGE  (transparent PNG)
\*-----------------------------------*/

.logo { display: block; line-height: 0; }

/* ── header logo ── */
.logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 6px hsla(0, 0%, 0%, 0.25));
  animation: hero-logo-float 4s ease-in-out infinite;
}

.logo-img:is(:hover, :focus) {
  filter: drop-shadow(0 4px 14px hsla(174, 72%, 10%, 0.4));
  animation-play-state: paused;
}

/* ── footer logo ── */
.footer-logo-img {
  height: 100px;
  filter: drop-shadow(0 4px 12px hsla(0, 0%, 0%, 0.2));
}

@keyframes hero-logo-float {
  0%, 100% { transform: translateY(0);    }
  50%       { transform: translateY(-10px); }
}

/* ── loading screen logo ── */
.loader-logo-img {
  width: min(260px, 72vw);
  height: auto;
  /* teal glow on deep-teal bg — logo star and hat pop nicely */
  filter: drop-shadow(0 0 40px hsla(174, 80%, 60%, 0.7))
          drop-shadow(0 0 80px hsla(174, 72%, 30%, 0.4));
  animation: loader-logo-pulse 1.4s ease-in-out infinite alternate;
}

/*-----------------------------------*\
  LOADING SCREEN
\*-----------------------------------*/
.loading-screen {
  position: fixed;
  inset: 0;
  background-color: var(--deep-teal);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: var(--z-loading);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

@keyframes loader-logo-pulse {
  0%   { transform: scale(1);    opacity: 0.88; }
  100% { transform: scale(1.05); opacity: 1;    }
}

.loader-bar-wrap {
  width: 200px;
  height: 3px;
  background-color: var(--teal-charcoal);
  border-radius: 3px;
  margin-inline: auto;
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--teal-dark), var(--teal), var(--teal-light));
  border-radius: 3px;
  animation: load-bar 0.9s ease forwards;
}

@keyframes load-bar {
  to { width: 100%; }
}

/*-----------------------------------*\
  SCROLL PROGRESS BAR
\*-----------------------------------*/
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--teal-dark), var(--teal), var(--teal-light));
  z-index: var(--z-progress);
  transition: width 0.1s linear;
}

/*-----------------------------------*\
  REUSED STYLES
\*-----------------------------------*/
.container { padding-inline: 15px; }

.h1, .h2, .h3, .h4 {
  font-family: var(--ff-heading);
  color: var(--deep-teal);
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.h1, .h2 { font-size: var(--fs-1); }
.h2, .h3, .h4 { font-weight: var(--fw-600); }
.h3 { font-size: var(--fs-2); }
.h4 { font-size: var(--fs-3); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--teal);
  color: var(--white);
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  font-weight: var(--fw-500);
  letter-spacing: 1px;
  text-transform: uppercase;
  height: 48px;
  padding-inline: 32px;
  border-radius: 2px;
  transition: var(--transition-1);
  white-space: nowrap;
}

.btn:is(:hover, :focus) {
  background-color: var(--teal-dark);
  box-shadow: var(--shadow-teal);
}

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

.btn-outline {
  background-color: transparent;
  border: 2px solid rgba(255,255,255,0.75);
  color: var(--white);
}

.btn-outline:is(:hover, :focus) {
  background-color: var(--white);
  color: var(--teal);
  border-color: var(--white);
  box-shadow: none;
}

.btn-lg { height: 56px; padding-inline: 44px; font-size: 1.7rem; }

.btn-hover {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-hover::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 20px;
  width: 1px;
  height: 1px;
  transform: translate(-50%, 51%) scale(var(--scale, 1));
  border-radius: 50%;
  background-color: var(--deep-teal);
  z-index: var(--z-hidden);
  transition: var(--transition-2);
}

.btn-hover:is(:hover, :focus)::after { --scale: 500; }

.btn-portal {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
  gap: 6px;
}

.btn-portal ion-icon { font-size: 1.6rem; }

.btn-portal:is(:hover, :focus) {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--teal);
  box-shadow: none;
}

.section { padding-block: var(--section-padding); }

.section.white { background-color: var(--teal-cream); }

.section-divider { position: relative; }

.section-divider::before,
.section-divider::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15px;
  background-repeat: repeat no-repeat;
  background-position: bottom;
}

.section-divider.white::after { background-image: url("../images/shape-white.png"); }
.section-divider.gray::after  { background-image: url("../images/shape-grey.png"); }

.section.gray { background-color: var(--teal-cream-2); }

.w-100 { width: 100%; }

.has-scrollbar {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: inline mandatory;
  padding-block-end: 40px;
}

.has-scrollbar::-webkit-scrollbar { height: 10px; }
.has-scrollbar::-webkit-scrollbar-button { width: calc(25% - 40px); }
.has-scrollbar::-webkit-scrollbar-track {
  outline: 2px solid var(--teal);
  border-radius: 50px;
}
.has-scrollbar::-webkit-scrollbar-thumb {
  border: 3px solid var(--cultured);
  border-radius: 50px;
  background-color: var(--teal);
}

.section-title > .span {
  display: inline;
  color: var(--teal);
}

.abs-img {
  position: absolute;
  transform: scale(1);
}

.scale-up-anim { animation: scaleUp 1.2s linear infinite alternate; }

@keyframes scaleUp {
  0%   { transform: scale(1);    }
  100% { transform: scale(1.06); }
}

.section-subtitle {
  color: var(--teal);
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  margin-block-end: 8px;
}

.badge {
  position: absolute;
  background: var(--teal);
  color: var(--white);
  font-family: var(--ff-heading);
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
  padding: 3px 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.rating-wrapper {
  display: flex;
  gap: 4px;
  color: var(--teal);
}

/*-----------------------------------*\
  SCROLL REVEAL ANIMATIONS
\*-----------------------------------*/
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/*-----------------------------------*\
  HEADER
\*-----------------------------------*/
.header-btn-group .btn { display: none; }

/* Portal button always visible — icon-only on small screens */
.header-btn-group .btn-portal {
  display: inline-flex;
  padding-inline: 11px;
  font-size: 1.3rem;
  border-color: rgba(255, 255, 255, 0.6);
}

.portal-text { display: none; }

.header {
  --color: var(--white);
  --btn-color: hsla(0, 0%, 100%, 0.88);

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 20px;
  border-block-end: 1px solid var(--teal-20);
  z-index: var(--z-fixed-header);
}

.header.active {
  --color: var(--white);
  --btn-color: var(--white);

  position: fixed;
  top: -86px;
  background-color: var(--teal);
  box-shadow: 0 4px 24px hsla(174, 72%, 10%, 0.3);
  animation: slideIn 0.5s ease-out forwards;
}

@keyframes slideIn {
  0%   { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

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

.logo {
  color: var(--color);
  font-family: var(--ff-heading);
  font-size: 3rem;
  font-weight: var(--fw-700);
  letter-spacing: -1px;
  transition: var(--transition-1);
}

.logo .span {
  display: inline;
  color: var(--teal-light);
}

.header-btn-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-btn {
  color: var(--btn-color);
  font-size: 20px;
  transition: var(--transition-1);
}

.search-btn:is(:hover, :focus) { color: var(--teal-light); }

.nav-toggle-btn {
  display: grid;
  gap: 4px;
}

.line {
  width: 10px;
  height: 3px;
  background-color: var(--btn-color);
  border-radius: 5px;
  transition: var(--transition-1);
}

.line.middle { width: 20px; }
.line.bottom { margin-left: auto; }

.nav-toggle-btn.active .line.top    { transform: translate(1px, 3px) rotate(45deg); }
.nav-toggle-btn.active .line.middle { transform: rotate(-45deg); }
.nav-toggle-btn.active .line.bottom { transform: translate(-1px, -3px) rotate(45deg); }

.navbar {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 30px);
  background-color: var(--teal);
  padding-inline: 20px;
  box-shadow: var(--shadow-teal);
  height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: var(--transition-2);
}

.navbar.active {
  height: 270px;
  visibility: visible;
}

.navbar-list { margin-block: 10px; }

.nav-item:not(:last-child) { border-block-end: 1px solid hsla(0, 0%, 100%, 0.12); }

.navbar-link {
  color: var(--white);
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  font-weight: var(--fw-500);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 11px 15px;
  transition: var(--transition-1);
}

.navbar-link:is(:hover, :focus) { color: var(--teal-light); }

/*-----------------------------------*\
  SEARCH BOX
\*-----------------------------------*/
.search-container {
  position: fixed;
  top: -60%;
  left: 0;
  width: 100%;
  height: 110%;
  background-color: var(--black-95);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: 15px;
  z-index: var(--z-modal);
  visibility: hidden;
  opacity: 0;
  transition: var(--transition-2);
}

.search-container.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(50%);
}

.search-box {
  position: relative;
  width: 100%;
  max-width: 550px;
}

.search-input {
  color: var(--gainsboro);
  font-size: 2.4rem;
  border-bottom: 2px solid var(--teal);
  padding: 15px 15px;
  padding-inline-end: 70px;
  background: transparent;
}

.search-input::placeholder { color: hsl(174, 10%, 45%); }
.search-input::-webkit-search-cancel-button { display: none; }

.search-submit {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  color: var(--teal-light);
  font-size: 3rem;
  transition: var(--transition-1);
}

.search-submit:is(:hover, :focus) { color: var(--gainsboro); }

.search-close-btn {
  position: absolute;
  inset: 0;
  z-index: var(--z-hidden);
  cursor: url("../images/close.png"), auto;
}

/*-----------------------------------*\
  HERO
\*-----------------------------------*/
.hero {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-block: 120px 60px;
  text-align: center;
  overflow: hidden;
}

#smoke-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: var(--z-background);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    hsla(174, 72%, 8%, 0.82) 0%,
    hsla(174, 72%, 20%, 0.55) 100%
  );
  z-index: var(--z-background);
}

.hero .container {
  position: relative;
  z-index: var(--z-content);
}

.hero-banner { display: none; }

.hero-subtitle {
  color: var(--teal-light);
  font-family: var(--ff-script);
  font-size: 2rem;
  letter-spacing: 1px;
  margin-block-end: 15px;
}

.hero-title {
  color: var(--white);
  font-family: var(--ff-heading);
  font-size: 3.8rem;
  font-weight: var(--fw-700);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-inline: auto;
}

.hero-title .span {
  display: inline;
  color: var(--teal-light);
}

.hero-text {
  color: hsla(0, 0%, 100%, 0.85);
  margin-block: 16px 24px;
  max-width: 44ch;
  margin-inline: auto;
  font-size: 1.5rem;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-block-end: 32px;
}

.hero .btn { margin-inline: 0; }
.hero .btn-primary:is(:hover, :focus) { background-color: var(--teal-dark); }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: hsla(0, 0%, 100%, 0.8);
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-badge-item ion-icon {
  color: var(--teal-light);
  font-size: 1.8rem;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: var(--z-content);
}

.scroll-label {
  color: hsla(0, 0%, 100%, 0.5);
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--teal-light), transparent);
  animation: scroll-pulse 1.5s ease infinite;
}

@keyframes scroll-pulse {
  0%   { opacity: 1;   transform: scaleY(1);   }
  100% { opacity: 0.3; transform: scaleY(0.5); }
}

/*-----------------------------------*\
  STATS
\*-----------------------------------*/
.stats-section {
  background-color: var(--teal);
  padding-block: 60px;
}

.stats-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 20px;
}

.stats-item {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid hsla(0, 0%, 100%, 0.2);
  border-radius: 4px;
  transition: var(--transition-1);
  background: hsla(0, 0%, 100%, 0.06);
}

.stats-item:is(:hover) {
  border-color: hsla(0, 0%, 100%, 0.55);
  background: hsla(0, 0%, 100%, 0.12);
}

.stats-icon {
  font-size: 3rem;
  color: var(--white);
  margin-block-end: 12px;
  opacity: 0.85;
}

.stats-data {
  font-family: var(--ff-heading);
  font-size: 3.6rem;
  font-weight: var(--fw-700);
  color: var(--white);
  line-height: 1;
  margin-block-end: 8px;
}

.stats-label {
  color: hsla(0, 0%, 100%, 0.7);
  font-size: 1.3rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/*-----------------------------------*\
  PROMO
\*-----------------------------------*/
.promo { background-color: var(--teal-cream); }

.promo .section-title {
  text-align: center;
  margin-block: 8px 40px;
}

.promo-card {
  position: relative;
  background-color: var(--white);
  text-align: center;
  padding: 40px 28px;
  box-shadow: var(--shadow-2);
  z-index: var(--z-background);
  border-bottom: 3px solid transparent;
  transition: var(--transition-2);
}

.promo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--teal), var(--teal-dark));
  clip-path: var(--clip-path-1);
  transform: scaleY(0.3);
  transform-origin: bottom;
  z-index: var(--z-hidden);
  transition: var(--transition-2);
}

.promo-card:hover::after {
  clip-path: var(--clip-path-2);
  transform: scaleY(1);
}

.promo-card:hover { border-bottom-color: var(--teal); }

.promo-card .card-icon svg { margin-inline: auto; }
.promo-card:hover .card-icon path { fill: var(--white); }
.promo-card:hover :is(.card-title, .card-text) { color: var(--white); }

.promo-card .card-title {
  font-size: var(--fs-3);
  margin-block: 15px 8px;
  transition: var(--transition-1);
}

.promo-card .card-text {
  font-size: 1.4rem;
  margin-block-end: 15px;
  transition: var(--transition-1);
}

.promo-card .card-banner {
  max-width: max-content;
  margin-inline: auto;
  aspect-ratio: 1 / 1;
}

.promo-item {
  min-width: 100%;
  scroll-snap-align: start;
}

/*-----------------------------------*\
  ABOUT
\*-----------------------------------*/
.about { background-color: var(--teal-cream-2); text-align: center; }

.about-banner {
  position: relative;
  aspect-ratio: 1 / 0.9;
  margin-block-end: 20px;
}

.about-img { max-width: max-content; margin-inline: auto; }

.about-banner .abs-img { top: 0; left: 40px; }

.about .section-subtitle { text-align: left; }

.about .section-title {
  max-width: 15ch;
  margin-block: 8px 15px;
  margin-inline: auto;
}

.about-list { margin-block: 20px 30px; }

.about-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-block-end: 12px;
}

.about-item ion-icon {
  background-color: var(--teal);
  color: var(--white);
  font-size: 1.2rem;
  padding: 4px;
  border-radius: 50%;
  flex-shrink: 0;
}

.about-item .span {
  color: var(--deep-teal);
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  font-weight: var(--fw-500);
}

.about .btn { margin-inline: auto; }

/*-----------------------------------*\
  FOOD MENU
\*-----------------------------------*/
.food-menu {
  background-color: var(--teal-cream);
  text-align: center;
}

.food-menu .section-title { margin-block: 8px 15px; }
.food-menu .section-text {
  max-width: 44ch;
  margin-inline: auto;
  margin-block-end: 30px;
}

.fiter-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-block-end: 40px;
}

.filter-btn {
  background-color: var(--white);
  color: var(--deep-teal);
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  font-weight: var(--fw-500);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 22px;
  border: 2px solid var(--cultured);
  transition: var(--transition-1);
  border-radius: 2px;
}

.filter-btn:is(:hover, :focus) {
  border-color: var(--teal);
  color: var(--teal);
}

.filter-btn.active {
  background-color: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.food-menu-list {
  display: grid;
  gap: 30px;
}

.menu-item { transition: opacity 0.3s ease, transform 0.3s ease; }
.menu-item.hidden { display: none; }
.menu-item.fade-in { animation: fadeInItem 0.4s ease forwards; }

@keyframes fadeInItem {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}

.food-menu-card {
  background-color: var(--white);
  padding: 36px 30px;
  box-shadow: var(--shadow-2);
  transition: var(--transition-2);
  border-bottom: 3px solid transparent;
}

.food-menu-card:is(:hover) {
  box-shadow: var(--shadow-1);
  border-bottom-color: var(--teal);
  transform: translateY(-4px);
}

.food-menu-card:focus-within { outline: 1px auto -webkit-focus-ring-color; }

.food-menu-card .card-banner {
  position: relative;
  padding-block-start: 30px;
  max-width: max-content;
  aspect-ratio: 1 / 1;
  margin-inline: auto;
}

.food-menu-card .badge { top: 0; left: 0; }

.food-menu-btn {
  position: absolute;
  top: calc(50% + 15px);
  left: 50%;
  transform: translate(-50%, 0);
  min-width: max-content;
  background-color: var(--teal-mid);
  width: 65%;
  height: 40px;
  padding-inline: 20px;
  opacity: 0;
  transition: var(--transition-2);
}

.food-menu-btn:is(:hover, :focus) { background-color: var(--teal); }

.food-menu-card:is(:hover, :focus-within) .food-menu-btn {
  transform: translate(-50%, -50%);
  opacity: 1;
}

.food-menu-card .wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-block: 20px 10px;
}

.food-menu-card .category {
  font-family: var(--ff-heading);
  font-weight: var(--fw-500);
  font-size: 1.3rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--teal);
}

.food-menu-card .rating-wrapper { font-size: 1.3rem; }

.food-menu-card .card-title {
  font-size: var(--fs-3);
  margin-block-end: 10px;
  text-align: left;
}

.food-menu-card .price-wrapper {
  display: flex;
  justify-content: flex-start;
  gap: 6px;
  font-family: var(--ff-heading);
  font-weight: var(--fw-600);
}

.food-menu-card .price-text {
  color: var(--teal-mid);
  text-transform: uppercase;
  font-size: 1.4rem;
}

.food-menu-card .price { color: var(--teal); font-size: 1.8rem; }
.food-menu-card .del  { color: var(--text-light); }

/*-----------------------------------*\
  CTA
\*-----------------------------------*/
.cta {
  background-color: var(--teal);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  z-index: var(--z-background);
}

.cta .container { position: relative; z-index: var(--z-background); }

.cta::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15px;
  background-image: url("../images/shape-grey.png");
  background-repeat: repeat;
}

.cta .section-subtitle { color: var(--teal-light); }

.cta .section-title {
  color: var(--white);
  line-height: 1.3;
  max-width: 18ch;
  margin-inline: auto;
}

.cta .section-text {
  color: hsla(0, 0%, 100%, 0.8);
  margin-block: 20px 25px;
}

.cta .btn { margin-inline: auto; }

.cta-banner {
  position: relative;
  aspect-ratio: 1 / 0.9;
}

.cta-img { transform: scale(1.3) translateY(60px); }

.cta-banner .abs-img { top: 50px; left: 10px; }

/*-----------------------------------*\
  FRANCHISE SECTION
\*-----------------------------------*/
.franchise-section {
  background-color: var(--teal);
  position: relative;
  overflow: hidden;
}

.franchise-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, hsla(0, 0%, 100%, 0.08), transparent 70%);
  pointer-events: none;
}

.franchise-section .section-subtitle { color: var(--teal-light); }

.franchise-section .section-title {
  color: var(--white);
  text-align: center;
  margin-block: 8px 0;
}

.franchise-section .section-text { color: hsla(0, 0%, 100%, 0.7); }

.franchise-list {
  display: grid;
  gap: 24px;
  margin-block-end: 60px;
}

.franchise-card {
  background: hsla(0, 0%, 100%, 0.06);
  border: 1px solid hsla(0, 0%, 100%, 0.2);
  border-radius: 4px;
  padding: 36px 30px;
  text-align: center;
  transition: var(--transition-2);
}

.franchise-card:is(:hover) {
  background: hsla(0, 0%, 100%, 0.14);
  border-color: hsla(0, 0%, 100%, 0.55);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px hsla(174, 72%, 8%, 0.25);
}

.franchise-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: hsla(0, 0%, 100%, 0.15);
  border: 2px solid hsla(0, 0%, 100%, 0.35);
  border-radius: 50%;
  font-size: 3rem;
  color: var(--white);
  margin-block-end: 20px;
}

.franchise-card .h3 {
  color: var(--white);
  font-size: var(--fs-3);
  margin-block-end: 12px;
}

.franchise-card p {
  color: hsla(0, 0%, 100%, 0.7);
  font-size: 1.5rem;
  line-height: 1.7;
}

/* Process Steps */
.process-section { margin-block-end: 50px; }

.process-title {
  color: var(--white);
  font-size: var(--fs-2);
  text-align: center;
  margin-block-end: 40px;
}

.process-list {
  display: grid;
  gap: 24px;
  list-style: none;
}

.process-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: hsla(0, 0%, 100%, 0.06);
  border: 1px solid hsla(0, 0%, 100%, 0.14);
  border-radius: 4px;
  padding: 20px 16px;
  transition: var(--transition-1);
}

.process-step:is(:hover) {
  background: hsla(0, 0%, 100%, 0.12);
  border-color: hsla(0, 0%, 100%, 0.4);
}

.step-number {
  font-family: var(--ff-heading);
  font-size: 3rem;
  font-weight: var(--fw-700);
  color: var(--white);
  line-height: 1;
  min-width: 50px;
  opacity: 0.4;
}

.step-title {
  font-family: var(--ff-heading);
  font-size: 1.8rem;
  font-weight: var(--fw-600);
  color: var(--white);
  margin-block-end: 6px;
}

.step-text {
  color: hsla(0, 0%, 100%, 0.6);
  font-size: 1.45rem;
}

.franchise-cta {
  text-align: center;
}

.franchise-cta .btn { background-color: var(--white); color: var(--teal); }
.franchise-cta .btn:is(:hover, :focus) { background-color: var(--teal-cream); box-shadow: var(--shadow-teal); }

.franchise-cta .btn-hover::after { background-color: var(--teal-cream); }

.franchise-invest-text {
  margin-block-start: 16px;
  color: hsla(0, 0%, 100%, 0.45);
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

/*-----------------------------------*\
  DELIVERY
\*-----------------------------------*/
.delivery { background-color: var(--teal-cream-2); }

.delivery-content { margin-block-end: 40px; }

.delivery .section-subtitle { text-align: left; }

.delivery .section-title {
  max-width: 17ch;
  line-height: 1.4;
}

.delivery .section-text { margin-block: 15px 25px; }

.delivery-banner {
  position: relative;
  aspect-ratio: 1 / 0.86;
}

.delivery-img {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(0);
  transition: var(--transition-2);
}

/*-----------------------------------*\
  TESTIMONIALS / CAROUSEL
\*-----------------------------------*/
.testi { background-color: var(--teal-cream); text-align: center; }

.carousel {
  position: relative;
  max-width: 700px;
  margin-inline: auto;
}

.carousel-track { position: relative; min-height: 300px; }

.carousel-slide {
  position: absolute;
  inset: 0;
  background-color: var(--white);
  padding: 36px;
  box-shadow: var(--shadow-2);
  text-align: left;
  opacity: 0;
  transform: translateX(30px);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
  border-bottom: 3px solid transparent;
}

.carousel-slide.active-slide {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  border-bottom-color: var(--teal);
  position: relative;
}

.testi-card .profile-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-block-end: 20px;
}

.testi-card .avatar {
  min-width: 70px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--teal);
}

.testi-card .avatar img { width: 100%; height: 100%; object-fit: cover; }

.testi-card .testi-name {
  color: var(--deep-teal);
  margin-block-end: 4px;
  font-size: var(--fs-3);
}

.testi-card .testi-title {
  font-size: 1.3rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testi-card .testi-text {
  color: var(--text-mid);
  font-size: 1.6rem;
  line-height: 1.7;
  font-style: italic;
  border-left: 3px solid var(--teal);
  padding-left: 16px;
  margin-block-end: 20px;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-block-start: 24px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--gainsboro);
  border: 2px solid transparent;
  transition: var(--transition-1);
}

.carousel-dot.active {
  background-color: var(--teal);
  transform: scale(1.3);
}

/*-----------------------------------*\
  BANNER
\*-----------------------------------*/
.banner { background-color: var(--teal-cream-2); color: var(--white); }

.banner-list { display: grid; gap: 10px; }

.banner-lg { height: 430px; }
.banner-sm { height: 200px; }
.banner-md { height: 240px; }

.banner-card {
  position: relative;
  height: 100%;
  box-shadow: var(--shadow-2);
  overflow: hidden;
}

.banner-card .banner-img {
  background-color: var(--gainsboro);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: var(--transition-2);
}

.banner-card:is(:hover, :focus-within) .banner-img { transform: scale(1.06); }

.banner-item-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  right: 20px;
  max-height: calc(100% - 30px);
}

.banner-md .banner-item-content { left: 50%; }

.banner-subtitle,
.banner-title {
  font-family: var(--ff-heading);
  font-weight: var(--fw-700);
  line-height: 1.15;
}

.banner-lg .banner-subtitle {
  font-size: var(--fs-2);
  color: var(--teal-light);
  margin-block-end: 8px;
}

.banner-lg .banner-title { font-size: 3rem; max-width: 14ch; }

:is(.banner-md, .banner-sm) .banner-title { font-size: var(--fs-2); max-width: 10ch; }

.banner-card .banner-text { margin-block: 8px 14px; font-size: 1.4rem; }

.banner-card .btn { background-color: var(--teal); height: 40px; padding-inline: 24px; }

.banner-card .btn:is(:hover, :focus) { background-color: var(--teal-dark); }

/*-----------------------------------*\
  BLOG
\*-----------------------------------*/
.blog { background-color: var(--teal-cream); text-align: center; }

.blog .section-title { margin-block: 8px 0; }

.blog-list { display: grid; gap: 30px; }

.blog-card {
  background-color: var(--white);
  text-align: left;
  box-shadow: var(--shadow-2);
  border-bottom: 3px solid transparent;
  transition: var(--transition-2);
}

.blog-card:is(:hover) {
  border-bottom-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: var(--shadow-1);
}

.blog-card .card-banner {
  position: relative;
  aspect-ratio: 1 / 0.65;
  background-color: var(--gainsboro);
  overflow: hidden;
}

.blog-card .card-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-2);
}

.blog-card:is(:hover) .card-banner img { transform: scale(1.04); }

.blog-card .badge {
  top: 16px;
  right: 16px;
  font-family: var(--ff-heading);
  text-transform: uppercase;
  background-color: var(--teal);
  padding: 4px 14px;
}

.blog-card .card-content { padding: 28px; }

.blog-card .card-meta-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin-block-end: 12px;
}

.blog-card .card-meta-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-card .card-meta-link ion-icon {
  color: var(--teal);
  font-size: 1.4rem;
}

.blog-card :is(.meta-info, .btn-link) {
  color: var(--deep-teal);
  font-family: var(--ff-heading);
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
  transition: var(--transition-1);
}

.blog-card .card-meta-link:is(:hover, :focus) .meta-info { color: var(--teal); }

.blog-card .card-title {
  font-size: var(--fs-3);
  margin-block-end: 10px;
  transition: var(--transition-1);
  color: var(--deep-teal);
  font-family: var(--ff-heading);
}

.blog-card .card-title:is(:hover, :focus) { color: var(--teal); }

.blog-card .card-text { margin-block-end: 18px; font-size: 1.45rem; }

.blog-card .btn-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
}

.blog-card .btn-link ion-icon { font-size: 1.4rem; }

.blog-card .btn-link:is(:hover, :focus) { gap: 12px; }

/*-----------------------------------*\
  FOOTER
\*-----------------------------------*/
.footer { overflow: hidden; background-color: var(--teal-cream); }

.footer-top {
  position: relative;
  padding-block: 60px;
  background-color: var(--teal-cream);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  border-block-end: 2px solid hsla(174, 20%, 50%, 0.15);
}

.footer-top::after {
  content: url(../images/delivery-boy.svg);
  position: absolute;
  bottom: -11px;
  left: -160px;
  width: 160px;
  animation: running-cycle 20s linear infinite;
}

@keyframes running-cycle {
  0%   { left: -160px; }
  100% { left: 100%; }
}

.footer-top .container { display: grid; gap: 30px; }

.footer .logo { color: var(--deep-teal); font-size: 3.2rem; }

.footer-text { margin-block: 15px 25px; font-size: 1.45rem; }

.social-list { display: flex; gap: 6px; }

.social-link {
  background-color: var(--teal);
  color: var(--white);
  font-size: 1.5rem;
  padding: 10px;
  transition: var(--transition-1);
  border-radius: 2px;
}

.social-link:is(:hover, :focus) { background-color: var(--deep-teal); }

.footer-list-title {
  position: relative;
  max-width: max-content;
  color: var(--deep-teal);
  font-family: var(--ff-heading);
  font-size: var(--fs-3);
  font-weight: var(--fw-600);
  letter-spacing: -0.5px;
  margin-block-end: 20px;
}

.footer-list-title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% + 15px);
  background-color: var(--teal);
  width: 35px;
  height: 3px;
}

.footer-list > li:not(:last-child) { margin-block-end: 12px; }

.footer-list address { max-width: 22ch; }

.open-status {
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
}

.open-status.open   { background: hsla(174, 60%, 50%, 0.15); color: var(--teal); }
.open-status.closed { background: hsla(0, 60%, 50%, 0.12); color: hsl(0, 50%, 48%); }

.footer-form {
  background-color: var(--white);
  padding: 30px;
  border: 1px solid var(--cultured);
  box-shadow: var(--shadow-2);
}

.input-wrapper { display: grid; gap: 10px; margin-block-end: 10px; }

.input-field {
  color: var(--text-mid);
  font-size: var(--fs-4);
  border: 1px solid var(--cultured);
  padding: 9px 14px;
  transition: var(--transition-1);
}

.input-field:focus {
  border-color: var(--teal);
  outline: none;
}

.input-field::placeholder { color: var(--text-light); }
.input-field::-webkit-calendar-picker-indicator { opacity: 0.4; }

textarea.input-field {
  min-height: 50px;
  max-height: 150px;
  height: 90px;
  resize: vertical;
  margin-block-end: 10px;
}

.footer-form .btn { height: 44px; padding-inline: 28px; width: 100%; justify-content: center; }
.footer-form .btn:is(:hover, :focus) { background-color: var(--deep-teal); }

.footer-bottom {
  padding-block: 20px;
  text-align: center;
  background-color: var(--deep-teal);
}

.footer-bottom .copyright-text { color: hsla(174, 30%, 80%, 0.6); }

.copyright-link { display: inline-block; color: var(--teal-light); }
.copyright-link:is(:hover, :focus) { text-decoration: underline; }

/*-----------------------------------*\
  TOAST
\*-----------------------------------*/
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background-color: var(--deep-teal);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 4px;
  border-left: 4px solid var(--teal-light);
  box-shadow: var(--shadow-teal);
  z-index: var(--z-notifications);
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  white-space: normal;
  max-width: calc(100vw - 40px);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast ion-icon {
  color: var(--teal-light);
  font-size: 2.2rem;
  flex-shrink: 0;
}

/*-----------------------------------*\
  BACK TO TOP
\*-----------------------------------*/
.back-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: var(--white);
  padding: 14px;
  border-radius: 50%;
  box-shadow: var(--shadow-teal);
  z-index: var(--z-sticky);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-1);
  font-size: 1.8rem;
}

.back-top-btn.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-8px);
}

.back-top-btn:is(:hover, :focus) {
  background: var(--deep-teal);
  box-shadow: var(--shadow-1);
}

/*-----------------------------------*\
  MEDIA QUERIES
\*-----------------------------------*/

/* > 480px */
@media (min-width: 480px) {
  .header-btn-group .btn {
    display: inline-flex;
    background-color: var(--teal);
  }

  .header-btn-group .btn-portal {
    background-color: transparent;
    padding-inline: 20px;
    font-size: 1.5rem;
  }

  .portal-text { display: inline; }

  .hero-title { font-size: 5.6rem; }
}

/* > 550px */
@media (min-width: 550px) {
  .container {
    max-width: 550px;
    width: 100%;
    margin-inline: auto;
  }

  .has-scrollbar > li { min-width: calc(50% - 5px); }

  .footer-top .container { grid-template-columns: 1fr 1fr; }
}

/* > 768px */
@media (min-width: 768px) {
  .container { max-width: 720px; }

  /* HERO */
  .hero {
    text-align: left;
    overflow: hidden;
    z-index: 1;
    min-height: 620px;
    display: grid;
    align-items: center;
  }

  .hero-content > :is(*, .hero-btns, .hero-badges) { margin-inline: 0; }

  .hero-title { font-size: 6.5rem; margin-inline: 0; }
  .hero-text  { margin-inline: 0; }
  .hero-btns { justify-content: flex-start; }
  .hero-badges { justify-content: flex-start; }

  .hero-banner {
    display: block;
    position: absolute;
    top: calc(50% + 86px);
    transform: translateY(-50%);
    right: 50px;
    max-width: 40%;
    aspect-ratio: 1 / 0.9;
  }

  .hero-img { position: absolute; bottom: 0; }

  .hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -2px;
    width: 100%;
    height: 100%;
    background-image: url("../images/hero-bg-shape.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
    pointer-events: none;
    z-index: -1;
  }

  /* ABOUT */
  .about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .about { text-align: left; }
  .about .section-title { margin-block-start: 0; margin-inline: 0; }
  .about :is(.section-title, .btn) { margin-inline: 0; }
  .about-item { justify-content: flex-start; }
  .about-banner { margin-block-end: 0; }

  /* FOOD MENU */
  .food-menu-list { grid-template-columns: 1fr 1fr; }
  .food-menu-card :is(.wrapper, .price-wrapper) { justify-content: flex-start; }

  /* CTA */
  .cta .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
  }
  .cta { text-align: left; }
  .cta :is(.section-title, .btn) { margin-inline: 0; }
  .cta-img { transform: scale(1.3) translate(90px, 20px); }

  /* FRANCHISE */
  .franchise-list { grid-template-columns: repeat(3, 1fr); }
  .process-list { grid-template-columns: 1fr 1fr; }
  .process-step { gap: 24px; padding: 24px 28px; }

  /* STATS */
  .stats-list { grid-template-columns: repeat(4, 1fr); }

  /* DELIVERY */
  .delivery .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
  }
  .delivery-img { transform: translateX(-80px); }

  /* BANNER */
  .banner-list { grid-template-columns: repeat(4, 1fr); }
  .banner-lg { grid-column: 1 / 3; grid-row: 1 / 3; }
  .banner-md { grid-column: 3 / 5; grid-row: 2 / 3; height: 220px; }

  /* BLOG */
  .blog-list { grid-template-columns: 1fr 1fr; }
  .blog-card { height: 100%; }

  /* FOOTER */
  .input-wrapper { grid-template-columns: 1fr 1fr; }
}

/* > 992px */
@media (min-width: 992px) {
  :root { --section-padding: 110px; }

  .container { max-width: 960px; }
  .has-scrollbar > li { min-width: calc(33.33% - 6.66px); }
  .footer-top { padding-block: 120px; }

  /* HEADER */
  .nav-toggle-btn { display: none; }
  .header .container { gap: 20px; }

  .navbar,
  .navbar.active {
    all: unset;
    margin-inline-start: auto;
  }

  .navbar-list { margin-block: 0; display: flex; gap: 4px; }
  .nav-item:not(:last-child) { border-block-end: none; }
  .navbar-link { color: var(--btn-color); }

  /* HERO */
  .hero { min-height: 700px; }
  .hero-title { font-size: 8rem; letter-spacing: -3px; }

  .hero-banner {
    max-width: 45%;
    top: auto;
    bottom: 0;
    transform: translateY(0);
  }

  .hero-img-bg { transform: scale(1.4) translate(20px, -20px); }

  /* FOOD MENU */
  .food-menu-list { grid-template-columns: repeat(3, 1fr); }
  .food-menu-card { height: 100%; }

  /* CTA */
  .cta-img { transform: scale(1.4) translate(20px, 40px); }
  .cta-banner .abs-img { left: -50px; }
  :is(.cta, .delivery) .section-title { line-height: 1.2; }

  /* FRANCHISE */
  .process-list { grid-template-columns: repeat(4, 1fr); }

  /* BANNER */
  .banner-lg .banner-title { font-size: 3.6rem; letter-spacing: -1px; }
  :is(.banner-md, .banner-sm) .banner-title,
  .banner-lg .banner-subtitle { font-size: 3rem; }

  /* BLOG */
  .blog-list { grid-template-columns: repeat(3, 1fr); }

  /* FOOTER */
  .footer-top .container { grid-template-columns: 1fr 1fr 1fr 1.6fr; }
  .footer-form { margin-block-start: -170px; }
  .back-top-btn { bottom: 25px; right: 30px; }
}

/* > 1200px */
@media (min-width: 1200px) {
  .container { max-width: 1200px; }
  .hero { min-height: 800px; }
  .promo .promo-item { min-width: calc(20% - 8px); }
  .about .container { gap: 70px; }
  .cta { --section-padding: 70px; }
  .footer-top .container { grid-template-columns: 1.4fr 1fr 1fr 1.6fr; }
  .banner-md .banner-item-content { left: 55%; }
}

/* ≤ 480px — small phones */
@media (max-width: 480px) {
  /* Container edges */
  .container { padding-inline: 18px; }

  /* Carousel */
  .carousel-slide { padding: 24px 18px; }
  .carousel-track { min-height: 320px; }

  /* Hero */
  .hero { padding-block: 100px 50px; }
  .hero-title { font-size: 3.2rem; }
  .hero-text { font-size: 1.4rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 280px; }

  /* Stats */
  .stats-item { padding: 24px 12px; }
  .stats-data { font-size: 2.8rem; }

  /* Food menu */
  .food-menu-card { padding: 28px 20px; }

  /* Promo cards */
  .promo-card { padding: 32px 20px; }

  /* Franchise */
  .franchise-card { padding: 28px 20px; }
  .process-step { padding: 18px 14px; gap: 12px; }
  .step-number { font-size: 2.4rem; min-width: 40px; }

  /* Blog */
  .blog-card .card-content { padding: 20px; }

  /* Section headings breathe better */
  .section-title { font-size: 2.8rem; }

  /* Footer */
  .footer-top { padding-block: 40px; }
  .footer-form { padding: 24px 18px; }

  /* Testimonial */
  .testi-card .testi-text { font-size: 1.45rem; }

  .toast { padding: 12px 16px; font-size: 1.4rem; }

  /* Header btn gap tighter on small screens */
  .header-btn-group { gap: 12px; }
}
