/* ============================================================
   KBR CRISPY CHICKEN — COMPLETE HOME PAGE STYLES
   Compatible with latest index.html and main.js

   Updates:
   - Navbar logo removed
   - Navigation aligned professionally
   - Hero description removed
   - Hero logo moved slightly toward the right
   - Hero logo blends with the red website background
   - Premium logo aura and floating animation
   - Text-only KBR Standard cards
   - Desktop, tablet and mobile responsive
   ============================================================ */


/* ============================================================
   1. DESIGN SYSTEM
   ============================================================ */

:root {
  --red-950: #260102;
  --red-925: #310203;
  --red-900: #3d0304;
  --red-850: #4c0406;
  --red-800: #5d0508;
  --red-750: #70070a;
  --red-700: #85090d;
  --red-650: #980c11;
  --red-600: #ad1016;
  --red-550: #c5161d;
  --red-500: #d71920;

  --yellow-500: #f2c94c;
  --yellow-450: #f4cf59;
  --yellow-400: #f6d568;
  --yellow-300: #f9df8a;
  --yellow-200: #fceab0;
  --yellow-100: #fff4cf;

  --white: #ffffff;
  --cream: #fff8f1;

  --text-primary: rgba(255, 255, 255, 0.96);
  --text-secondary: rgba(255, 255, 255, 0.75);
  --text-muted: rgba(255, 255, 255, 0.58);
  --text-faint: rgba(255, 255, 255, 0.38);

  --border-white: rgba(255, 255, 255, 0.1);
  --border-white-strong: rgba(255, 255, 255, 0.18);
  --border-yellow: rgba(242, 201, 76, 0.3);
  --border-yellow-strong: rgba(242, 201, 76, 0.55);

  --surface-white: rgba(255, 255, 255, 0.055);
  --surface-white-hover: rgba(255, 255, 255, 0.085);
  --surface-yellow: rgba(242, 201, 76, 0.065);
  --surface-yellow-hover: rgba(242, 201, 76, 0.13);

  --zomato-start: #b91f2c;
  --zomato-end: #e23744;
  --swiggy-start: #db6107;
  --swiggy-end: #fc8019;

  --font-heading: "Outfit", sans-serif;
  --font-body: "DM Sans", sans-serif;

  --container-width: 1240px;
  --header-height: 76px;
  --news-height: 38px;
  --top-offset: calc(var(--header-height) + var(--news-height));

  --section-space: 4.4rem;
  --section-space-tablet: 3.6rem;
  --section-space-mobile: 2.8rem;

  --radius-xs: 6px;
  --radius-sm: 9px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --radius-2xl: 38px;

  --shadow-small: 0 12px 32px rgba(15, 0, 1, 0.24);
  --shadow-medium: 0 24px 64px rgba(12, 0, 1, 0.35);
  --shadow-large: 0 38px 100px rgba(10, 0, 1, 0.5);
  --shadow-yellow: 0 16px 44px rgba(242, 201, 76, 0.12);

  --transition-fast: 180ms ease;
  --transition-base: 320ms ease;
  --transition-smooth: 650ms cubic-bezier(0.22, 1, 0.36, 1);
}


/* ============================================================
   2. RESET
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--top-offset) + 8px);
  font-size: 16px;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--red-950);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

main {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

iframe {
  display: block;
  width: 100%;
  border: 0;
}

ul,
ol {
  list-style: none;
}

::selection {
  background: var(--yellow-500);
  color: var(--red-950);
}

:focus-visible {
  outline: 2px solid var(--yellow-500);
  outline-offset: 4px;
  border-radius: 5px;
}


/* ============================================================
   3. GLOBAL LAYOUT
   ============================================================ */

.container {
  width: min(calc(100% - 3rem), var(--container-width));
  margin-inline: auto;
}

.section {
  position: relative;
  overflow: hidden;
  padding-block: var(--section-space);
}

.section-background-number {
  position: absolute;
  top: 0;
  right: 3%;
  z-index: 0;
  color: rgba(242, 201, 76, 0.026);
  font-family: var(--font-heading);
  font-size: clamp(8rem, 17vw, 15rem);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.section-header {
  position: relative;
  z-index: 2;
  width: min(100%, 730px);
  margin: 0 auto 2.55rem;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 0.72rem;
  color: var(--yellow-400);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker::before,
.section-kicker::after {
  content: "";
  width: 23px;
  height: 1px;
  background: var(--yellow-500);
  opacity: 0.62;
}

.section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.8vw, 4.35rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
}

.section-title-left {
  align-items: flex-start;
  text-align: left;
}

.section-title-main,
.section-title-accent {
  display: block;
}

.section-title-main {
  color: var(--white);
}

.section-title-accent {
  color: var(--yellow-500);
}

.section-description {
  width: min(100%, 620px);
  margin: 0.95rem auto 0;
  color: var(--text-muted);
  font-size: 0.91rem;
  line-height: 1.8;
}

.section-action {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}


/* ============================================================
   4. PRELOADER
   ============================================================ */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(242, 201, 76, 0.09),
      transparent 30%
    ),
    radial-gradient(
      circle at 50% 42%,
      rgba(215, 25, 32, 0.22),
      transparent 44%
    ),
    var(--red-950);
  transition:
    opacity 450ms ease,
    visibility 450ms ease;
}

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

.preloader-inner {
  display: flex;
  width: min(220px, 64vw);
  flex-direction: column;
  align-items: center;
}

.preloader-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter:
    drop-shadow(0 18px 32px rgba(0, 0, 0, 0.4))
    drop-shadow(0 0 16px rgba(242, 201, 76, 0.1));
  animation: preloader-logo 1.35s ease-in-out infinite alternate;
}

.preloader-text {
  margin-top: 0.75rem;
  color: var(--yellow-300);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.preloader-line {
  width: 100%;
  height: 3px;
  margin-top: 1.1rem;
  overflow: hidden;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.09);
}

.preloader-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    var(--yellow-500),
    transparent
  );
  transform: translateX(-100%);
  animation: preloader-line 1.15s ease-in-out infinite;
}

@keyframes preloader-logo {
  from {
    opacity: 0.76;
    transform: scale(0.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes preloader-line {
  to {
    transform: translateX(100%);
  }
}


/* ============================================================
   5. HEADER
   ============================================================ */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: linear-gradient(
    to bottom,
    rgba(28, 0, 1, 0.92),
    rgba(28, 0, 1, 0.34)
  );
  transition:
    background var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.site-header.scrolled {
  border-color: rgba(242, 201, 76, 0.1);
  background: rgba(38, 1, 2, 0.96);
  box-shadow: 0 10px 34px rgba(10, 0, 0, 0.34);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-container {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.nav-brand-space {
  width: 30px;
  height: 1px;
}

.desktop-navigation {
  display: flex;
  margin-left: auto;
  align-items: center;
  justify-content: flex-end;
  gap: 0.15rem;
}

.nav-link {
  position: relative;
  padding: 0.72rem 0.88rem;
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 0.88rem;
  bottom: 0.42rem;
  left: 0.88rem;
  height: 2px;
  border-radius: 10px;
  background: var(--yellow-500);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--yellow-300);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}


/* ============================================================
   6. NEWS BAR
   ============================================================ */

.news-bar {
  position: fixed;
  top: var(--header-height);
  right: 0;
  left: 0;
  z-index: 990;
  display: grid;
  height: var(--news-height);
  grid-template-columns: auto minmax(0, 1fr);
  overflow: hidden;
  border-top: 1px solid rgba(242, 201, 76, 0.07);
  border-bottom: 1px solid rgba(242, 201, 76, 0.13);
  background: var(--red-950);
  box-shadow: 0 8px 24px rgba(15, 0, 1, 0.2);
}

.news-bar-label {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 145px;
  align-items: center;
  justify-content: center;
  padding-inline: 1.15rem;
  background: var(--yellow-500);
  color: var(--red-950);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-bar-label::after {
  content: "";
  position: absolute;
  top: 0;
  right: -15px;
  border-top: calc(var(--news-height) / 2) solid transparent;
  border-bottom: calc(var(--news-height) / 2) solid transparent;
  border-left: 15px solid var(--yellow-500);
}

.news-bar-window {
  min-width: 0;
  overflow: hidden;
}

.news-ticker {
  display: flex;
  width: max-content;
  min-width: 100%;
  height: 100%;
  align-items: center;
  padding-left: 1.65rem;
  animation: news-scroll 32s linear infinite;
  will-change: transform;
}

.news-bar:hover .news-ticker {
  animation-play-state: paused;
}

.news-ticker-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 1.45rem;
  padding-right: 2rem;
}

.news-ticker-item {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.65rem;
  white-space: nowrap;
}

.news-type {
  padding: 0.18rem 0.42rem;
  border: 1px solid var(--border-yellow);
  border-radius: 100px;
  background: var(--surface-yellow);
  color: var(--yellow-400);
  font-size: 0.47rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-title {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.67rem;
  font-weight: 500;
}

.news-date {
  color: var(--text-faint);
  font-size: 0.58rem;
}

.news-divider {
  width: 4px;
  height: 4px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--yellow-500);
}

@keyframes news-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


/* ============================================================
   7. MOBILE NAVIGATION
   ============================================================ */

.nav-hamburger {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(242, 201, 76, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 4px;
  border-radius: 10px;
  background: var(--yellow-300);
  transition:
    transform var(--transition-base),
    opacity var(--transition-base);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1090;
  visibility: hidden;
  background: rgba(18, 0, 1, 0.74);
  opacity: 0;
  backdrop-filter: blur(5px);
  transition:
    opacity var(--transition-base),
    visibility var(--transition-base);
}

.nav-overlay.open {
  visibility: visible;
  opacity: 1;
}

.mobile-navigation {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1100;
  width: min(85vw, 350px);
  height: 100dvh;
  padding: 1.1rem 1.25rem 2rem;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(242, 201, 76, 0.09),
      transparent 30%
    ),
    var(--red-950);
  box-shadow: -24px 0 70px rgba(0, 0, 0, 0.48);
  transform: translateX(105%);
  transition: transform var(--transition-smooth);
}

.mobile-navigation.open {
  transform: translateX(0);
}

.mobile-navigation-header {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-yellow);
}

.mobile-navigation-brand {
  display: flex;
  align-items: center;
}

.mobile-navigation-brand span {
  color: var(--yellow-400);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.mobile-menu-close {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(242, 201, 76, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.mobile-menu-close span {
  position: absolute;
  top: 20px;
  left: 10px;
  width: 22px;
  height: 2px;
  background: var(--yellow-300);
}

.mobile-menu-close span:first-child {
  transform: rotate(45deg);
}

.mobile-menu-close span:last-child {
  transform: rotate(-45deg);
}

.mobile-navigation-links {
  display: flex;
  flex-direction: column;
  padding-top: 1rem;
}

.nav-mobile-link {
  padding: 0.88rem 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--font-heading);
  font-size: 1.16rem;
  font-weight: 500;
  transition:
    color var(--transition-fast),
    padding-left var(--transition-fast);
}

.nav-mobile-link:hover,
.nav-mobile-link.active {
  padding-left: 0.65rem;
  color: var(--yellow-500);
}


/* ============================================================
   8. HERO
   ============================================================ */

.hero-section {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding-top: var(--top-offset);
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(242, 201, 76, 0.1),
      transparent 25%
    ),
    radial-gradient(
      circle at 86% 28%,
      rgba(215, 25, 32, 0.28),
      transparent 38%
    ),
    radial-gradient(
      circle at 12% 78%,
      rgba(171, 14, 20, 0.22),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      var(--red-950) 0%,
      var(--red-800) 54%,
      var(--red-650) 100%
    );
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.021) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.021) 1px,
      transparent 1px
    );
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 94%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(46px);
  pointer-events: none;
}

.hero-glow-one {
  top: 15%;
  right: 7%;
  width: 300px;
  height: 300px;
  background: rgba(242, 201, 76, 0.08);
}

.hero-glow-two {
  bottom: 8%;
  left: 3%;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.03);
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100svh - var(--top-offset));
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-block: 1.5rem 3rem;
}

.hero-content {
  max-width: 600px;
}


/* ============================================================
   8.1 HERO LOGO — BLENDED AND ANIMATED
   ============================================================ */

.hero-brand-mark {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0.35rem;
  padding-left: clamp(1.4rem, 5vw, 4.5rem);
}

/* ===== HERO LOGO REMOVED (per request: no logo in hero, mobile + desktop) ===== */
.hero-brand-mark {
  display: none !important;
}

.hero-logo-stage {
  position: relative;
  display: grid;
  width: clamp(190px, 18vw, 255px);
  height: clamp(155px, 15vw, 215px);
  place-items: center;
  isolation: isolate;
  animation: hero-logo-float 5s ease-in-out infinite;
}
/* ===== HERO LOGO FIX ===== */

.hero-logo-stage{
  width:clamp(260px,24vw,340px) !important;
  height:clamp(210px,20vw,280px) !important;
}

@media (max-width:768px){

  .hero-logo-stage{
    width:220px !important;
    height:180px !important;
  }
}
@media (max-width:768px){

  .hero-logo-stage{
    width:220px !important;
    height:180px !important;
  }
}

.hero-logo-stage::before {
  content: "";
  position: absolute;
  inset: 12% 5%;
  z-index: -3;
  border-radius: 46% 54% 55% 45% / 48% 44% 56% 52%;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(242, 201, 76, 0.14),
      rgba(215, 25, 32, 0.09) 46%,
      transparent 72%
    );
  filter: blur(23px);
  opacity: 0.88;
  animation: hero-logo-background-pulse 4.8s ease-in-out infinite;
}
/* ===== HERO ALIGNMENT FIX ===== */

.hero-container{
  align-items:center !important;
  gap:1.2rem !important;
}

.hero-content{
  justify-content:center !important;
}

.hero-brand-mark{
  margin-bottom:0 !important;
}

.hero-left-feature-image{
  margin-top:8px !important;
  margin-bottom:10px !important;
}

@media (max-width:768px){

  .hero-container{
    gap:.8rem !important;
  }

  .hero-left-feature-image{
    width:200px !important;
    margin:6px auto 10px !important;
  }
}

.hero-logo-stage::after {
  content: "";
  position: absolute;
  inset: 3%;
  z-index: -2;
  border: 1px solid rgba(242, 201, 76, 0.12);
  border-radius: 50%;
  opacity: 0.7;
  transform: scale(0.82);
  animation: hero-logo-ring 4.6s ease-out infinite;
}

.hero-logo-aura {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  pointer-events: none;
}

.hero-logo-aura-one {
  width: 78%;
  height: 78%;
  background:
    radial-gradient(
      circle,
      rgba(242, 201, 76, 0.12),
      rgba(242, 201, 76, 0.035) 46%,
      transparent 72%
    );
  filter: blur(16px);
  animation: hero-aura-one 5.5s ease-in-out infinite;
}

.hero-logo-aura-two {
  width: 112%;
  height: 112%;
  border: 1px solid rgba(242, 201, 76, 0.08);
  background:
    conic-gradient(
      from 30deg,
      transparent,
      rgba(242, 201, 76, 0.08),
      transparent 35%,
      rgba(255, 255, 255, 0.03),
      transparent 70%
    );
  filter: blur(1px);
  opacity: 0.7;
  animation: hero-aura-rotate 16s linear infinite;
}

.hero-logo-frame {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.hero-logo-frame::before {
  content: "";
  position: absolute;
  inset: 18%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(94, 5, 8, 0.52);
  filter: blur(25px);
}

.hero-brand-mark img {
  position: relative;
  z-index: 2;
  width: 92%;
  height: 92%;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: normal;
  filter:
    drop-shadow(0 24px 36px rgba(0, 0, 0, 0.38))
    drop-shadow(0 0 22px rgba(242, 201, 76, 0.16));
  transform-origin: center;
  animation: hero-logo-breathe 4.8s ease-in-out infinite;
}

@keyframes hero-logo-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(5px, -8px, 0);
  }
}

@keyframes hero-logo-breathe {
  0%,
  100% {
    transform: scale(0.98);
    filter:
      drop-shadow(0 24px 36px rgba(0, 0, 0, 0.38))
      drop-shadow(0 0 18px rgba(242, 201, 76, 0.11));
  }

  50% {
    transform: scale(1.025);
    filter:
      drop-shadow(0 26px 42px rgba(0, 0, 0, 0.42))
      drop-shadow(0 0 30px rgba(242, 201, 76, 0.2));
  }
}

@keyframes hero-logo-background-pulse {
  0%,
  100% {
    opacity: 0.65;
    transform: scale(0.92);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes hero-logo-ring {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }

  28% {
    opacity: 0.52;
  }

  100% {
    opacity: 0;
    transform: scale(1.12);
  }
}

@keyframes hero-aura-one {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.92);
  }

  50% {
    opacity: 0.92;
    transform: scale(1.08);
  }
}

@keyframes hero-aura-rotate {
  to {
    transform: rotate(360deg);
  }
}


/* ============================================================
   8.2 HERO TYPOGRAPHY AND BUTTONS
   ============================================================ */

.hero-eyebrow {
  margin-bottom: 0.72rem;
  color: var(--yellow-300);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-title {
  display: flex;
  flex-direction: column;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(3.55rem, 6.5vw, 6.2rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.hero-title-main,
.hero-title-highlight {
  display: block;
}

.hero-title-main {
  color: var(--white);
}

.hero-title-highlight {
  margin-top: 0.08em;
  color: var(--yellow-500);
  font-weight: 500;
}

.hero-typed-wrap {
  min-height: 1.65rem;
  margin-top: 1.05rem;
  color: var(--yellow-200);
  font-size: clamp(0.92rem, 1.5vw, 1.08rem);
  font-weight: 500;
}

.typed-cursor {
  color: var(--yellow-500);
}

/* ===== HERO ACTIONS — single row of 3 buttons (matches reference) ===== */
.hero-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 640px;
  gap: 0.6rem;
  margin-top: 1.45rem;
  align-items: stretch;
}

.hero-order-buttons {
  display: contents;
}

.platform-order-button {
  position: relative;
  display: flex;
  min-height: 58px;
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 11px;
  color: var(--white);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.23);
  transition:
    transform var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    filter var(--transition-base);
}

.platform-order-button::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -35%;
  width: 34%;
  height: 300%;
  background: rgba(255, 255, 255, 0.16);
  transform: rotate(18deg);
  transition: left 700ms ease;
}

.platform-order-button:hover::before {
  left: 125%;
}

.platform-order-button:hover {
  border-color: rgba(242, 201, 76, 0.46);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
  filter: brightness(1.04);
}

.zomato-order-button {
  background: linear-gradient(
    135deg,
    var(--zomato-start),
    var(--zomato-end)
  );
}

.swiggy-order-button {
  background: linear-gradient(
    135deg,
    var(--swiggy-start),
    var(--swiggy-end)
  );
}

.platform-button-small {
  font-size: 0.57rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  opacity: 0.84;
  text-transform: uppercase;
}

.platform-order-button strong {
  font-size: 1rem;
  font-weight: 700;
}

.hero-store-button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 0.6rem;
  border: 1px solid var(--border-yellow);
  border-radius: 11px;
  background: var(--surface-yellow);
  color: var(--yellow-200);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  transition:
    background var(--transition-base),
    border-color var(--transition-base),
    color var(--transition-base),
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.hero-store-button:hover {
  border-color: var(--yellow-500);
  background: var(--surface-yellow-hover);
  color: var(--white);
  box-shadow: var(--shadow-yellow);
  transform: translateY(-2px);
}

.hero-quality-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-quality-line span {
  position: relative;
}

.hero-quality-line span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.68rem;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--yellow-500);
  transform: translateY(-50%);
}


/* ============================================================
   8.3 HERO CAROUSEL
   ============================================================ */

.hero-media {
  position: relative;
  min-width: 0;
  padding-bottom: 2rem;
}

.hero-media-frame {
  position: relative;
}

.hero-slides {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  border: 1px solid rgba(242, 201, 76, 0.25);
  border-radius: var(--radius-xl);
  background: var(--red-850);
  box-shadow: var(--shadow-large);
}

.hero-slide {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 850ms ease,
    visibility 850ms ease;
}

.hero-slide.active {
  visibility: visible;
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28, 0, 1, 0.78),
    transparent 54%
  );
}

.hero-image-border {
  position: absolute;
  inset: 0;
  z-index: 4;
  border-radius: var(--radius-xl);
  box-shadow:
    inset 0 0 0 1px rgba(242, 201, 76, 0.07),
    inset 0 -90px 110px rgba(0, 0, 0, 0.21);
  pointer-events: none;
}

.hero-slide-info {
  position: absolute;
  z-index: 5;
  right: 1.2rem;
  bottom: 1.15rem;
  left: 1.2rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.hero-slide-info span {
  padding: 0.3rem 0.62rem;
  border: 1px solid var(--border-yellow);
  border-radius: 100px;
  background: rgba(38, 1, 2, 0.76);
  color: var(--yellow-300);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hero-slide-info strong {
  max-width: 62%;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.1;
  text-align: right;
}

.hero-image-label {
  position: absolute;
  top: 1rem;
  right: -0.5rem;
  z-index: 6;
  padding: 0.43rem 0.75rem;
  border: 1px solid var(--border-yellow);
  border-radius: 6px 0 0 6px;
  background: rgba(61, 3, 4, 0.92);
  color: var(--yellow-500);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(10px);
}

.hero-dots {
  position: absolute;
  bottom: 0.4rem;
  left: 50%;
  display: flex;
  gap: 0.42rem;
  transform: translateX(-50%);
}

.hero-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  transition:
    width var(--transition-base),
    border-radius var(--transition-base),
    background var(--transition-base);
}

.hero-dot.active {
  width: 25px;
  border-radius: 20px;
  background: var(--yellow-500);
}


/* ============================================================
   9. STATISTICS
   ============================================================ */

.stats-section {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(242, 201, 76, 0.08);
  border-bottom: 1px solid rgba(242, 201, 76, 0.08);
  background: linear-gradient(
    180deg,
    var(--red-950),
    var(--red-925)
  );
}

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

.stat-card {
  position: relative;
  min-width: 0;
  padding: 1.7rem 1rem;
  text-align: center;
}

.stat-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 44%;
  background: rgba(242, 201, 76, 0.16);
  transform: translateY(-50%);
}

.stat-value {
  display: block;
  color: var(--yellow-500);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.05rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-label {
  display: block;
  max-width: 155px;
  margin: 0.45rem auto 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1.45;
  text-transform: uppercase;
}


/* ============================================================
   10. KBR STANDARD — TEXT-ONLY PREMIUM CARDS
   ============================================================ */

.promise-section {
  background:
    radial-gradient(
      circle at 88% 8%,
      rgba(242, 201, 76, 0.08),
      transparent 27%
    ),
    linear-gradient(
      180deg,
      var(--red-850),
      var(--red-900)
    );
}

.promise-section-shell {
  position: relative;
  z-index: 2;
}

.promise-section-header {
  width: min(100%, 850px);
  margin: 0 auto 2.2rem;
  text-align: center;
}

.promise-kicker {
  justify-content: center;
}

.promise-main-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.98;
  text-align: center;
}

.promise-main-title-line,
.promise-main-title-highlight {
  display: block;
}

.promise-main-title-highlight {
  margin-top: 0.1em;
  color: var(--yellow-500);
  font-weight: 500;
}

.promise-main-description {
  width: min(100%, 690px);
  margin: 1rem auto 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.85;
  text-align: center;
}

.promise-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.promise-card-image,
.promise-card-overlay {
  display: none;
}

.promise-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 295px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--border-white);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(242, 201, 76, 0.075),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.076),
      rgba(255, 255, 255, 0.018)
    );
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(12px);
  transition:
    transform var(--transition-smooth),
    border-color var(--transition-smooth),
    box-shadow var(--transition-smooth),
    background var(--transition-smooth);
}

.promise-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 145px;
  height: 145px;
  border: 1px solid rgba(242, 201, 76, 0.11);
  border-radius: 50%;
}

.promise-card::after {
  content: "";
  position: absolute;
  right: 1.3rem;
  bottom: 0;
  left: 1.3rem;
  height: 2px;
  border-radius: 20px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--yellow-500),
    transparent
  );
  opacity: 0.55;
}

.promise-card:hover {
  border-color: var(--border-yellow);
  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(242, 201, 76, 0.11),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      rgba(242, 201, 76, 0.07),
      rgba(255, 255, 255, 0.028)
    );
  box-shadow:
    var(--shadow-medium),
    var(--shadow-yellow);
  transform: translateY(-7px);
}

.promise-card-featured {
  border-color: rgba(242, 201, 76, 0.24);
}

.promise-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 295px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.55rem;
}

.promise-card-top {
  position: absolute;
  top: 1.35rem;
  right: 1.35rem;
  left: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.promise-card-number {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-yellow);
  border-radius: 50%;
  background: var(--surface-yellow);
  color: var(--yellow-500);
  font-size: 0.68rem;
  font-weight: 700;
}

.promise-card-label {
  overflow: hidden;
  padding: 0.3rem 0.55rem;
  border: 1px solid rgba(242, 201, 76, 0.2);
  border-radius: 100px;
  background: rgba(38, 1, 2, 0.38);
  color: var(--yellow-300);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.promise-card h3 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.promise-card p {
  margin-top: 0.7rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  line-height: 1.72;
}

.promise-card:last-child {
  grid-column: auto;
  min-height: 295px;
}

.promise-card:last-child .promise-card-content {
  min-height: 295px;
}

.promise-card:last-child h3,
.promise-card:last-child p {
  max-width: none;
}


/* ============================================================
   11. STORY
   ============================================================ */

.story-section {
  background:
    radial-gradient(
      circle at 10% 48%,
      rgba(242, 201, 76, 0.055),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      var(--red-950),
      var(--red-850)
    );
}

.story-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.story-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  border: 1px solid var(--border-yellow);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-large);
}

.story-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 900ms ease;
}

.story-image:hover img {
  transform: scale(1.04);
}

.story-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28, 0, 1, 0.82),
    transparent 60%
  );
}

.story-image-caption {
  position: absolute;
  z-index: 2;
  right: 1.3rem;
  bottom: 1.25rem;
  left: 1.3rem;
}

.story-image-caption strong {
  display: block;
  color: var(--yellow-500);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
}

.story-image-caption span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
}

.story-content p {
  margin-top: 0.95rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.85;
}

.story-secondary-text {
  color: rgba(255, 255, 255, 0.46) !important;
}

.premium-text-link {
  position: relative;
  display: inline-flex;
  margin-top: 1.35rem;
  padding-bottom: 0.25rem;
  color: var(--yellow-500);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.premium-text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--yellow-500);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.premium-text-link:hover {
  color: var(--yellow-200);
}

.premium-text-link:hover::after {
  transform: scaleX(0.45);
}


/* ============================================================
   12. MENU CARDS
   ============================================================ */

.menu-section {
  background:
    radial-gradient(
      circle at 88% 18%,
      rgba(242, 201, 76, 0.065),
      transparent 26%
    ),
    linear-gradient(
      180deg,
      var(--red-800),
      var(--red-900)
    );
}

.home-menu-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.menu-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border-white);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.022)
  );
  box-shadow: var(--shadow-small);
  transition:
    transform var(--transition-smooth),
    border-color var(--transition-smooth),
    box-shadow var(--transition-smooth),
    background var(--transition-smooth);
}

.menu-card:hover {
  border-color: var(--border-yellow);
  background: linear-gradient(
    145deg,
    rgba(242, 201, 76, 0.07),
    rgba(255, 255, 255, 0.03)
  );
  box-shadow:
    var(--shadow-medium),
    var(--shadow-yellow);
  transform: translateY(-7px);
}

.menu-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  background: var(--red-850);
}

.menu-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 800ms ease;
}

.menu-card:hover .menu-card-img {
  transform: scale(1.06);
}

.menu-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(31, 0, 1, 0.75),
    transparent 62%
  );
}

.menu-card-badge {
  position: absolute;
  top: 0.78rem;
  left: 0.78rem;
  max-width: calc(100% - 3.5rem);
  overflow: hidden;
  padding: 0.3rem 0.58rem;
  border: 1px solid var(--border-yellow);
  border-radius: 100px;
  background: rgba(38, 1, 2, 0.82);
  color: var(--yellow-500);
  font-size: 0.53rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.menu-card-veg {
  position: absolute;
  top: 0.78rem;
  right: 0.78rem;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.94);
}

.menu-card-veg::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.menu-card-veg.veg {
  border: 1px solid #1c9b49;
}

.menu-card-veg.veg::after {
  background: #1c9b49;
}

.menu-card-veg.nonveg {
  border: 1px solid #b62b2b;
}

.menu-card-veg.nonveg::after {
  border-radius: 1px;
  background: #b62b2b;
  transform: rotate(45deg);
}

.menu-card-content {
  padding: 1.2rem 1.15rem 1.35rem;
}

.menu-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.menu-card-category {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-card-price {
  flex-shrink: 0;
  color: var(--yellow-500);
  font-family: var(--font-heading);
  font-size: 1.52rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.menu-card-price sup {
  margin-right: 1px;
  font-family: var(--font-body);
  font-size: 0.6rem;
  vertical-align: super;
}

.menu-card-name {
  margin-top: 0.72rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  font-weight: 600;
  letter-spacing: -0.028em;
  line-height: 1.12;
}

.menu-card-desc {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 0.65rem;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.8rem;
  line-height: 1.72;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}


/* ============================================================
   13. COMMON BUTTONS
   ============================================================ */

.premium-outline-button,
.franchise-button,
.franchise-brochure-button,
.contact-button,
.contact-call-button {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  border-radius: 9px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform var(--transition-base),
    background var(--transition-base),
    color var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.premium-outline-button,
.franchise-button,
.contact-button {
  border: 1px solid var(--border-yellow);
  background: var(--surface-yellow);
  color: var(--yellow-200);
}

.premium-outline-button:hover,
.franchise-button:hover,
.contact-button:hover {
  border-color: var(--yellow-500);
  background: var(--surface-yellow-hover);
  color: var(--white);
  box-shadow: var(--shadow-yellow);
  transform: translateY(-2px);
}

.franchise-brochure-button,
.contact-call-button {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.055);
  color: var(--white);
}

.franchise-brochure-button:hover,
.contact-call-button:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: var(--shadow-small);
  transform: translateY(-2px);
}


/* ============================================================
   14. GALLERY
   ============================================================ */

.gallery-section {
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(242, 201, 76, 0.055),
      transparent 25%
    ),
    linear-gradient(
      180deg,
      var(--red-950),
      var(--red-800)
    );
}

.gallery-swiper {
  position: relative;
  z-index: 2;
  padding: 0.45rem 0 2.8rem;
  overflow: visible;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(242, 201, 76, 0.17);
  border-radius: var(--radius-lg);
  background: var(--red-850);
  box-shadow: var(--shadow-small);
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 850ms ease;
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(35, 0, 1, 0.48),
    transparent 60%
  );
  opacity: 0.72;
  transition: opacity var(--transition-base);
}

.gallery-card:hover {
  border-color: var(--border-yellow);
  box-shadow: var(--shadow-yellow);
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-card:hover .gallery-card-overlay {
  opacity: 0.32;
}


/* ============================================================
   15. SWIPER
   ============================================================ */

.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  width: 7px !important;
  height: 7px !important;
  background: rgba(255, 255, 255, 0.36) !important;
  opacity: 1 !important;
  transition:
    width var(--transition-base),
    border-radius var(--transition-base),
    background var(--transition-base);
}

.swiper-pagination-bullet-active {
  width: 24px !important;
  border-radius: 20px !important;
  background: var(--yellow-500) !important;
}


/* ============================================================
   16. HEAD OFFICE
   ============================================================ */

.head-office-section {
  background:
    radial-gradient(
      circle at 90% 60%,
      rgba(242, 201, 76, 0.055),
      transparent 26%
    ),
    linear-gradient(
      180deg,
      var(--red-850),
      var(--red-950)
    );
}

.head-office-layout {
  position: relative;
  z-index: 2;
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  border: 1px solid var(--border-yellow);
  border-radius: var(--radius-xl);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.075),
    rgba(255, 255, 255, 0.022)
  );
  box-shadow: var(--shadow-medium);
}

.head-office-map {
  min-height: 410px;
  background: var(--red-850);
}

.head-office-map iframe {
  height: 100%;
  min-height: 410px;
  filter: saturate(0.75) contrast(1.05);
}

.head-office-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.7rem, 4vw, 3.2rem);
}

.office-label {
  color: var(--yellow-300);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.head-office-details h3 {
  margin-top: 0.42rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.office-information {
  margin-top: 1.4rem;
}

.office-information-row {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 1rem;
  padding-block: 0.82rem;
  border-bottom: 1px solid rgba(242, 201, 76, 0.1);
}

.office-information-row:last-child {
  border-bottom: 0;
}

.office-information-label {
  color: var(--yellow-300);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.office-information-row p,
.office-information-row a {
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.78rem;
  line-height: 1.6;
}

.office-information-row a:hover {
  color: var(--yellow-500);
}

.head-office-action {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-top: 1.8rem;
}


/* ============================================================
   17. OUTLETS
   ============================================================ */

.outlet-preview-section {
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(242, 201, 76, 0.055),
      transparent 25%
    ),
    linear-gradient(
      180deg,
      var(--red-800),
      var(--red-950)
    );
}

.outlet-preview-swiper {
  position: relative;
  z-index: 2;
  padding: 0.4rem 0 3rem;
}

.outlet-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--border-white);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.075),
    rgba(255, 255, 255, 0.022)
  );
  box-shadow: var(--shadow-small);
  transition:
    transform var(--transition-smooth),
    border-color var(--transition-smooth),
    box-shadow var(--transition-smooth);
}

.outlet-card:hover {
  border-color: var(--border-yellow);
  box-shadow:
    var(--shadow-medium),
    var(--shadow-yellow);
  transform: translateY(-6px);
}

.outlet-card-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.outlet-card-img {
  height: 100%;
  object-fit: cover;
  transition: transform 800ms ease;
}

.outlet-card:hover .outlet-card-img {
  transform: scale(1.05);
}

.outlet-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30, 0, 1, 0.75),
    transparent 65%
  );
}

.outlet-card-flagship {
  position: absolute;
  bottom: 0.72rem;
  left: 0.72rem;
  padding: 0.26rem 0.52rem;
  border: 1px solid var(--border-yellow);
  border-radius: 100px;
  background: rgba(38, 1, 2, 0.82);
  color: var(--yellow-500);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.outlet-card-body {
  padding: 1.1rem;
}

.outlet-card-area {
  color: var(--yellow-300);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.outlet-card-name {
  margin-top: 0.38rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.38rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.outlet-card-address {
  margin-top: 0.62rem;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.73rem;
  line-height: 1.68;
}

.outlet-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 0.95rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(242, 201, 76, 0.1);
}

.outlet-card-meta a,
.outlet-card-meta span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.65rem;
  font-weight: 500;
}

.outlet-card-meta a:hover {
  color: var(--yellow-500);
}

.outlet-card-actions {
  margin-top: 0.95rem;
}

.outlet-card-actions .btn {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 0.95rem;
  border: 1px solid var(--border-yellow);
  border-radius: 8px;
  background: var(--surface-yellow);
  color: var(--yellow-200);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background var(--transition-base),
    border-color var(--transition-base),
    color var(--transition-base),
    transform var(--transition-base);
}

.outlet-card-actions .btn:hover {
  border-color: var(--yellow-500);
  background: var(--surface-yellow-hover);
  color: var(--white);
  transform: translateY(-1px);
}


/* ============================================================
   18. TESTIMONIALS
   ============================================================ */

.testimonials-section {
  background:
    radial-gradient(
      circle at 82% 12%,
      rgba(242, 201, 76, 0.055),
      transparent 25%
    ),
    linear-gradient(
      180deg,
      var(--red-950),
      var(--red-800)
    );
}

.testimonials-swiper {
  position: relative;
  z-index: 2;
  padding: 0.5rem 0 3rem;
}

.testimonial-card {
  position: relative;
  display: flex;
  min-height: 280px;
  height: 100%;
  flex-direction: column;
  padding: 1.55rem;
  border: 1px solid var(--border-white);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.075),
    rgba(255, 255, 255, 0.022)
  );
  box-shadow: var(--shadow-small);
  transition:
    transform var(--transition-smooth),
    border-color var(--transition-smooth),
    box-shadow var(--transition-smooth);
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 0.5rem;
  right: 0.95rem;
  color: rgba(242, 201, 76, 0.08);
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
}

.testimonial-card:hover {
  border-color: var(--border-yellow);
  box-shadow:
    var(--shadow-medium),
    var(--shadow-yellow);
  transform: translateY(-5px);
}

.testimonial-stars {
  position: relative;
  z-index: 1;
  color: var(--yellow-500);
  font-size: 0.69rem;
  letter-spacing: 0.11em;
}

.testimonial-message {
  position: relative;
  z-index: 1;
  flex: 1;
  margin-top: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.48;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  margin-top: 1.3rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(242, 201, 76, 0.1);
}

.testimonial-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  place-items: center;
  border: 1px solid var(--border-yellow);
  border-radius: 50%;
  background: var(--surface-yellow);
  color: var(--yellow-500);
  font-size: 0.66rem;
  font-weight: 700;
}

.testimonial-name {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
}

.testimonial-category {
  margin-top: 0.1rem;
  color: var(--yellow-300);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


/* ============================================================
   19. FRANCHISE
   ============================================================ */

.franchise-section {
  background:
    radial-gradient(
      circle at 88% 30%,
      rgba(242, 201, 76, 0.08),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      var(--red-800),
      var(--red-900)
    );
}

.franchise-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border: 1px solid var(--border-yellow);
  border-radius: var(--radius-xl);
  background: var(--red-900);
  box-shadow: var(--shadow-large);
}

.franchise-card-background {
  position: absolute;
  inset: 0;
}

.franchise-card-background img {
  height: 100%;
  object-fit: cover;
}

.franchise-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(28, 0, 1, 0.98) 0%,
      rgba(28, 0, 1, 0.91) 48%,
      rgba(28, 0, 1, 0.55) 76%,
      rgba(28, 0, 1, 0.42) 100%
    );
}

.franchise-card-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      rgba(242, 201, 76, 0.022) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(242, 201, 76, 0.022) 1px,
      transparent 1px
    );
  background-size: 38px 38px;
  pointer-events: none;
}

.franchise-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 560px;
  max-width: 780px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
}

.franchise-content h2 {
  display: flex;
  flex-direction: column;
  margin-top: 0.2rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 4.8vw, 4.35rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.franchise-title-main,
.franchise-title-highlight {
  display: block;
}

.franchise-title-highlight {
  margin-top: 0.12em;
  color: var(--yellow-500);
  font-weight: 500;
}

.franchise-return-line {
  margin-top: 1rem;
  color: var(--yellow-200);
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.franchise-price-label {
  margin-top: 1.4rem;
  color: var(--yellow-300);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.franchise-price {
  display: block;
  margin-top: 0.18rem;
  color: var(--yellow-500);
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.franchise-summary {
  max-width: 620px;
  margin-top: 0.82rem;
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.75;
}

.franchise-disclaimer {
  max-width: 660px;
  margin-top: 0.68rem;
  color: var(--text-faint);
  font-size: 0.63rem;
  line-height: 1.62;
}

.franchise-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.55rem;
}


/* ============================================================
   20. CONTACT
   ============================================================ */

.contact-section {
  background:
    radial-gradient(
      circle at 12% 70%,
      rgba(242, 201, 76, 0.055),
      transparent 25%
    ),
    linear-gradient(
      180deg,
      var(--red-950),
      var(--red-850)
    );
}

.contact-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.9rem, 4vw, 3.2rem);
  border: 1px solid var(--border-yellow);
  border-radius: var(--radius-xl);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.075),
    rgba(255, 255, 255, 0.022)
  );
  box-shadow: var(--shadow-medium);
}

.contact-card-pattern {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 88% 50%,
    rgba(242, 201, 76, 0.075),
    transparent 30%
  );
  pointer-events: none;
}

.contact-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.contact-content h2 {
  margin-top: 0.2rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4.6vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
}

.contact-content > p {
  max-width: 600px;
  margin-top: 0.82rem;
  color: var(--text-muted);
  font-size: 0.83rem;
  line-height: 1.75;
}

.contact-direct-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2.6rem;
  margin-top: 1.3rem;
}

.contact-detail {
  display: flex;
  flex-direction: column;
}

.contact-detail span {
  color: var(--yellow-300);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-detail a {
  margin-top: 0.22rem;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
}

.contact-detail a:hover {
  color: var(--yellow-500);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}


/* ============================================================
   21. FOOTER
   ============================================================ */

.site-footer {
  padding-top: 3.7rem;
  background:
    radial-gradient(
      circle at 12% 10%,
      rgba(242, 201, 76, 0.045),
      transparent 23%
    ),
    var(--red-950);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.8fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding-bottom: 2.8rem;
}

.footer-logo img {
  width: 96px;
  height: 84px;
  object-fit: contain;
}

.footer-brand > p {
  max-width: 330px;
  margin-top: 0.95rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.74rem;
  line-height: 1.72;
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.1rem;
  margin-top: 1.15rem;
}

.footer-social-links a {
  color: var(--yellow-300);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition-fast);
}

.footer-social-links a:hover {
  color: var(--yellow-500);
}

.footer-share-link {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  cursor: pointer;
}

.footer-share-icon {
  flex: 0 0 auto;
  transition: transform var(--transition-fast);
}

.footer-share-link:hover .footer-share-icon {
  transform: rotate(-12deg) scale(1.08);
}

@media (max-width: 768px) {
  .footer-social-links a {
    font-size: 0.66rem;
  }

  .footer-share-link {
    gap: 0.28rem;
  }
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.52rem;
}

.footer-column h3 {
  margin-bottom: 0.34rem;
  color: var(--yellow-500);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
}

.footer-column a,
.footer-column p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.69rem;
  line-height: 1.58;
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--yellow-300);
}

.footer-contact-column p {
  max-width: 230px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.15rem;
  border-top: 1px solid rgba(242, 201, 76, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.6rem;
}


/* ============================================================
   22. LOADING AND PERFORMANCE
   ============================================================ */

img {
  background: rgba(255, 255, 255, 0.025);
}

.hero-brand-mark img,
.preloader-logo,
.footer-logo img {
  background: transparent;
}

img[src=""],
img:not([src]) {
  visibility: hidden;
}

.menu-card,
.promise-card,
.outlet-card,
.testimonial-card {
  content-visibility: auto;
  contain-intrinsic-size: 300px;
}

/* .gallery-card is intentionally excluded from content-visibility:auto —
   it lives inside a Swiper slide that is moved with CSS transforms, and
   content-visibility skipping paint/layout on those transformed-offscreen
   slides was causing the gallery carousel to glitch/blank during transitions. */
.gallery-card {
  will-change: transform;
}


/* ============================================================
   23. TABLET
   ============================================================ */

@media (max-width: 1024px) {
  :root {
    --section-space: var(--section-space-tablet);
  }

  .container {
    width: min(calc(100% - 2rem), var(--container-width));
  }

  .hero-container {
    gap: 2rem;
  }

  .hero-brand-mark {
    padding-left: clamp(0.8rem, 3vw, 2.2rem);
  }

  .hero-logo-stage {
    width: clamp(170px, 19vw, 215px);
    height: clamp(145px, 16vw, 185px);
  }

  .promise-card-content {
    padding: 1.3rem;
  }

  .promise-card-top {
    top: 1.15rem;
    right: 1.15rem;
    left: 1.15rem;
  }

  .story-layout {
    gap: 2.5rem;
  }

  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-contact-column {
    grid-column: 1 / -1;
  }
}


/* ============================================================
   24. MOBILE
   ============================================================ */

@media (max-width: 768px) {
  :root {
    --header-height: 68px;
    --news-height: 34px;
    --section-space: var(--section-space-mobile);
  }

  .container {
    width: min(calc(100% - 1.35rem), var(--container-width));
  }

  .nav-brand-space {
    display: block;
    width: 1px;
  }

  /* ===== MOBILE NAV: show all menu items in the bar, no hamburger ===== */
  .nav-brand-cluster {
    display: none;
  }

  .nav-container {
    justify-content: flex-start;
  }

  .desktop-navigation {
    display: flex;
    overflow-x: auto;
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
    gap: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .desktop-navigation::-webkit-scrollbar {
    display: none;
  }

  .nav-link {
    padding: 0.72rem 0.6rem;
    font-size: 0.64rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }

  .nav-hamburger {
    display: none;
  }

  .nav-overlay,
  .mobile-navigation {
    display: none !important;
  }

  .news-bar {
    grid-template-columns: 90px minmax(0, 1fr);
  }

  .news-bar-label {
    min-width: 90px;
    padding-inline: 0.4rem;
    font-size: 0.46rem;
    letter-spacing: 0.06em;
  }

  .news-bar-label::after {
    right: -11px;
    border-top-width: calc(var(--news-height) / 2);
    border-bottom-width: calc(var(--news-height) / 2);
    border-left-width: 11px;
  }

  .news-ticker {
    padding-left: 1rem;
  }

  .news-ticker-group {
    gap: 0.9rem;
  }

  .news-ticker-item {
    gap: 0.42rem;
  }

  .news-type {
    padding: 0.13rem 0.3rem;
    font-size: 0.36rem;
  }

  .news-title {
    font-size: 0.52rem;
  }

  .news-date {
    font-size: 0.43rem;
  }

  .section-background-number {
    top: 0.5rem;
    right: 1%;
    font-size: 7rem;
  }

  .section-header {
    margin-bottom: 1.75rem;
  }

  .section-kicker {
    margin-bottom: 0.5rem;
    font-size: 0.53rem;
  }

  .section-kicker::before,
  .section-kicker::after {
    width: 17px;
  }

  .section-title {
    font-size: clamp(1.95rem, 9vw, 2.85rem);
  }

  .section-description {
    margin-top: 0.72rem;
    font-size: 0.73rem;
    line-height: 1.68;
  }


  /* Hero remains left and right */

  .hero-section {
    min-height: auto;
  }

  .hero-container {
    min-height: auto;
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
    gap: 0.68rem;
    padding-block: 0.9rem 2.2rem;
  }

  .hero-content {
    min-width: 0;
  }

  .hero-brand-mark {
    margin-bottom: 0.05rem;
    padding-left: clamp(0.8rem, 6vw, 2rem);
  }

  .hero-logo-stage {
    width: clamp(105px, 31vw, 142px);
    height: clamp(88px, 26vw, 120px);
  }

  .hero-logo-stage::before {
    filter: blur(15px);
  }

  .hero-logo-aura-one {
    filter: blur(11px);
  }

  .hero-eyebrow {
    margin-bottom: 0.42rem;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .hero-title {
    font-size: clamp(1.75rem, 9.2vw, 2.7rem);
    line-height: 0.98;
  }

  .hero-typed-wrap {
    min-height: 1.1rem;
    margin-top: 0.56rem;
    font-size: 0.72rem;
  }

  .hero-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.4rem;
    margin-top: 0.75rem;
  }

  .platform-order-button {
    min-height: 52px;
    padding: 0.42rem 0.4rem;
    border-radius: 9px;
  }

  .platform-button-small {
    font-size: 0.5rem;
    letter-spacing: 0.03em;
  }

  .platform-order-button strong {
    font-size: 0.78rem;
  }

  .hero-store-button {
    min-height: 52px;
    padding: 0.42rem 0.35rem;
    border-radius: 9px;
    font-size: 0.56rem;
    letter-spacing: 0.03em;
  }

  .hero-quality-line {
    display: none;
  }

  .hero-media {
    min-width: 0;
    padding-bottom: 1.1rem;
  }

  .hero-slides {
    aspect-ratio: 5 / 4;
    border-radius: 16px;
  }

  .hero-image-border {
    border-radius: 16px;
  }

  .hero-slide-info {
    right: 0.55rem;
    bottom: 0.55rem;
    left: 0.55rem;
    gap: 0.3rem;
  }

  .hero-slide-info span {
    padding: 0.18rem 0.32rem;
    font-size: 0.35rem;
  }

  .hero-slide-info strong {
    max-width: 58%;
    font-size: 0.65rem;
  }

  .hero-image-label {
    top: 0.55rem;
    right: -0.3rem;
    padding: 0.3rem 0.5rem;
    font-size: 0.35rem;
  }

  .hero-dots {
    bottom: 0.2rem;
  }

  .hero-dot {
    width: 5px;
    height: 5px;
  }

  .hero-dot.active {
    width: 16px;
  }


  /* Statistics */

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

  .stat-card {
    padding: 1.1rem 0.25rem;
  }

  .stat-value {
    font-size: clamp(1.2rem, 6vw, 1.75rem);
  }

  .stat-label {
    max-width: 90px;
    margin-top: 0.32rem;
    font-size: 0.56rem;
    letter-spacing: 0.02em;
    line-height: 1.32;
  }


  /* Promise / "Our Standard" cards — stacked, content-sized (no empty space), bigger type */

  .promise-section-header {
    margin-bottom: 1.3rem;
  }

  .promise-main-title {
    font-size: clamp(1.8rem, 9vw, 2.75rem);
  }

  .promise-main-description {
    margin-top: 0.72rem;
    font-size: 0.78rem;
    line-height: 1.65;
  }

  .promise-cards-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.8rem;
  }

  .promise-card,
  .promise-card:last-child {
    min-height: 0;
    border-radius: 16px;
  }

  .promise-card-content,
  .promise-card:last-child .promise-card-content {
    min-height: 0;
    justify-content: flex-start;
    padding: 1.1rem 1.15rem 1.25rem;
  }

  .promise-card-top {
    position: static;
    margin-bottom: 0.65rem;
  }

  .promise-card-number {
    width: 36px;
    height: 36px;
    font-size: 0.7rem;
  }

  .promise-card-label {
    max-width: calc(100% - 46px);
    padding: 0.3rem 0.55rem;
    font-size: 0.58rem;
    letter-spacing: 0.05em;
  }

  .promise-card h3 {
    font-size: 1.2rem;
    line-height: 1.2;
  }

  .promise-card p {
    display: block;
    overflow: visible;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    line-height: 1.6;
  }


  /* Story */

  .story-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0.8rem;
  }

  .story-image {
    aspect-ratio: 4 / 5;
    border-radius: 16px;
  }

  .story-image-caption {
    right: 0.62rem;
    bottom: 0.62rem;
    left: 0.62rem;
  }

  .story-image-caption strong {
    font-size: 0.78rem;
  }

  .story-image-caption span {
    display: none;
  }

  .story-content .section-kicker {
    font-size: 0.43rem;
  }

  .story-content .section-kicker::before,
  .story-content .section-kicker::after {
    display: none;
  }

  .story-content .section-title {
    font-size: clamp(1.3rem, 7vw, 2rem);
  }

  .story-content p {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 0.52rem;
    font-size: 0.55rem;
    line-height: 1.52;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  .story-secondary-text {
    display: none !important;
  }

  .premium-text-link {
    margin-top: 0.7rem;
    font-size: 0.45rem;
    letter-spacing: 0.06em;
  }


  /* Menu remains 3 columns */

  .home-menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.42rem;
  }

  .menu-card {
    border-radius: 11px;
  }

  .menu-card-img-wrap {
    aspect-ratio: 5 / 4;
  }

  .menu-card-badge {
    top: 0.34rem;
    left: 0.34rem;
    max-width: calc(100% - 0.68rem);
    padding: 0.15rem 0.28rem;
    font-size: 0.31rem;
    letter-spacing: 0.02em;
  }

  .menu-card-veg {
    top: 0.34rem;
    right: 0.34rem;
    width: 14px;
    height: 14px;
  }

  .menu-card-veg::after {
    width: 4px;
    height: 4px;
  }

  .menu-card-content {
    padding: 0.62rem 0.5rem 0.7rem;
  }

  .menu-card-topline {
    gap: 0.2rem;
  }

  .menu-card-category {
    font-size: 0.34rem;
    letter-spacing: 0.02em;
  }

  .menu-card-price {
    font-size: 0.84rem;
  }

  .menu-card-price sup {
    font-size: 0.34rem;
  }

  .menu-card-name {
    display: -webkit-box;
    overflow: hidden;
    min-height: 1.72rem;
    margin-top: 0.4rem;
    font-size: 0.75rem;
    line-height: 1.12;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .menu-card-desc {
    display: none;
  }

  .section-action {
    margin-top: 1.35rem;
  }

  .premium-outline-button,
  .franchise-button,
  .franchise-brochure-button,
  .contact-button,
  .contact-call-button {
    min-height: 41px;
    padding: 0.62rem 0.95rem;
    font-size: 0.53rem;
  }


  /* Gallery */

  .gallery-swiper {
    padding-bottom: 2.35rem;
  }

  .gallery-card {
    border-radius: 14px;
  }


  /* Head office */

  .head-office-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    border-radius: 16px;
  }

  .head-office-map,
  .head-office-map iframe {
    min-height: 270px;
  }

  .head-office-details {
    padding: 0.95rem;
  }

  .office-label {
    font-size: 0.39rem;
  }

  .head-office-details h3 {
    font-size: 1.18rem;
  }

  .office-information {
    margin-top: 0.75rem;
  }

  .office-information-row {
    grid-template-columns: 60px 1fr;
    gap: 0.42rem;
    padding-block: 0.45rem;
  }

  .office-information-label {
    font-size: 0.37rem;
  }

  .office-information-row p,
  .office-information-row a {
    font-size: 0.47rem;
    line-height: 1.4;
  }

  .head-office-action {
    margin-top: 1.2rem;
  }


  /* Outlets */

  .outlet-card {
    border-radius: 15px;
  }

  .outlet-card-body {
    padding: 0.88rem;
  }

  .outlet-card-name {
    font-size: 1.12rem;
  }


  /* Testimonials */

  .testimonial-card {
    min-height: 238px;
    padding: 1.15rem;
    border-radius: 15px;
  }

  .testimonial-card::before {
    font-size: 5rem;
  }

  .testimonial-message {
    font-size: 0.92rem;
  }


  /* Franchise */

  .franchise-card {
    min-height: 470px;
    border-radius: 16px;
  }

  .franchise-card-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(28, 0, 1, 0.97) 0%,
        rgba(28, 0, 1, 0.9) 62%,
        rgba(28, 0, 1, 0.58) 100%
      );
  }

  .franchise-content {
    min-height: 470px;
    max-width: 74%;
    padding: 1.25rem;
  }

  .franchise-content h2 {
    font-size: clamp(1.55rem, 7.8vw, 2.3rem);
  }

  .franchise-return-line {
    margin-top: 0.7rem;
    font-size: 0.49rem;
    line-height: 1.45;
  }

  .franchise-price-label {
    margin-top: 0.9rem;
    font-size: 0.45rem;
  }

  .franchise-price {
    font-size: clamp(1.75rem, 8.5vw, 2.55rem);
  }

  .franchise-summary {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 0.52rem;
    font-size: 0.56rem;
    line-height: 1.5;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .franchise-disclaimer {
    font-size: 0.43rem;
    line-height: 1.45;
  }

  .franchise-actions {
    gap: 0.5rem;
    margin-top: 1rem;
  }


  /* Contact */

  .contact-card {
    padding: 1.2rem;
    border-radius: 16px;
  }

  .contact-content h2 {
    font-size: clamp(1.5rem, 7.8vw, 2.25rem);
  }

  .contact-content > p {
    font-size: 0.57rem;
    line-height: 1.5;
  }

  .contact-direct-details {
    gap: 0.7rem 0.95rem;
    margin-top: 0.75rem;
  }

  .contact-detail span {
    font-size: 0.37rem;
  }

  .contact-detail a {
    font-size: 0.49rem;
  }

  .contact-actions {
    gap: 0.5rem;
    margin-top: 1rem;
  }


  /* Footer */

  .site-footer {
    padding-top: 2.8rem;
  }

  .footer-main {
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 1.25rem;
    padding-bottom: 2rem;
  }

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

  .footer-logo img {
    width: 80px;
    height: 68px;
  }

  .footer-brand > p {
    max-width: 100%;
    font-size: 0.65rem;
  }

  .footer-column h3 {
    font-size: 0.88rem;
  }

  .footer-column a,
  .footer-column p {
    font-size: 0.57rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.32rem;
  }
}


/* ============================================================
   25. SMALL MOBILE
   ============================================================ */

@media (max-width: 480px) {
  .container {
    width: min(calc(100% - 1rem), var(--container-width));
  }

  .hero-container {
    gap: 0.48rem;
  }

  .hero-brand-mark {
    padding-left: clamp(0.75rem, 7vw, 1.7rem);
  }

  .hero-logo-stage {
    width: clamp(95px, 30vw, 125px);
    height: clamp(80px, 25vw, 105px);
  }

  .hero-title {
    font-size: clamp(1.55rem, 9vw, 2.2rem);
  }

  .platform-order-button {
    min-height: 48px;
  }

  .platform-button-small {
    font-size: 0.46rem;
  }

  .platform-order-button strong {
    font-size: 0.72rem;
  }

  .hero-store-button {
    min-height: 48px;
    font-size: 0.52rem;
  }

  .stat-card {
    padding-inline: 0.1rem;
  }

  .stat-value {
    font-size: 1.15rem;
  }

  .stat-label {
    font-size: 0.5rem;
  }

  .promise-main-title {
    font-size: 1.75rem;
  }

  .promise-cards-grid {
    gap: 0.65rem;
  }

  .promise-card,
  .promise-card:last-child,
  .promise-card-content,
  .promise-card:last-child .promise-card-content {
    min-height: 0;
  }

  .promise-card-content {
    padding: 0.9rem 0.95rem 1.05rem;
  }

  .promise-card-top {
    position: static;
    margin-bottom: 0.5rem;
  }

  .promise-card-number {
    width: 32px;
    height: 32px;
    font-size: 0.6rem;
  }

  .promise-card-label {
    max-width: calc(100% - 40px);
    padding: 0.24rem 0.42rem;
    font-size: 0.52rem;
  }

  .promise-card h3 {
    font-size: 1.05rem;
  }

  .promise-card p {
    font-size: 0.74rem;
    line-height: 1.55;
  }

  .menu-card-content {
    padding: 0.5rem 0.42rem 0.58rem;
  }

  .menu-card-name {
    font-size: 0.66rem;
  }

  .menu-card-price {
    font-size: 0.74rem;
  }

  .head-office-map,
  .head-office-map iframe {
    min-height: 232px;
  }

  .head-office-details {
    padding: 0.72rem;
  }

  .office-information-row {
    grid-template-columns: 48px 1fr;
  }

  .franchise-card {
    min-height: 430px;
  }

  .franchise-content {
    min-height: 430px;
    max-width: 80%;
    padding: 0.95rem;
  }

  .franchise-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* ============================================================
   26. VERY SMALL MOBILE
   ============================================================ */

@media (max-width: 360px) {
  .hero-eyebrow {
    display: none;
  }

  .hero-brand-mark {
    padding-left: 0.65rem;
  }

  .hero-logo-stage {
    width: 88px;
    height: 75px;
  }

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

  .hero-typed-wrap {
    font-size: 0.49rem;
  }

  .platform-order-button {
    padding-inline: 0.28rem;
  }

  .home-menu-grid {
    gap: 0.28rem;
  }

  .menu-card-category {
    display: none;
  }

  .menu-card-name {
    font-size: 0.58rem;
  }

  .promise-main-title {
    font-size: 1.55rem;
  }

  .promise-card h3 {
    font-size: 0.61rem;
  }

  .promise-card p {
    line-clamp: 4;
    -webkit-line-clamp: 4;
  }

  .story-content .section-title {
    font-size: 1.18rem;
  }

  .franchise-content {
    max-width: 86%;
  }

  .franchise-actions,
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .franchise-button,
  .franchise-brochure-button,
  .contact-button,
  .contact-call-button {
    width: 100%;
  }
}


/* ============================================================
   27. TOUCH DEVICES
   ============================================================ */

@media (hover: none) {
  .promise-card:hover,
  .menu-card:hover,
  .gallery-card:hover,
  .outlet-card:hover,
  .testimonial-card:hover {
    transform: none;
  }

  .story-image:hover img,
  .menu-card:hover .menu-card-img,
  .gallery-card:hover img,
  .outlet-card:hover .outlet-card-img {
    transform: none;
  }
}


/* ============================================================
   28. REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .news-ticker {
    animation: none;
    transform: none;
  }

  .hero-logo-stage,
  .hero-brand-mark img,
  .hero-logo-aura,
  .hero-logo-stage::before,
  .hero-logo-stage::after {
    animation: none !important;
  }
}

/* add */

/* ============================================================
   GLOBAL KBR THEME FIX
   Common background + WhatsApp floating icon for all pages
   ============================================================ */

:root {
  --kbr-page-bg:
    radial-gradient(circle at 84% 18%, rgba(242, 201, 76, 0.10), transparent 28%),
    radial-gradient(circle at 8% 86%, rgba(215, 25, 32, 0.18), transparent 34%),
    linear-gradient(135deg, var(--red-950), var(--red-850), var(--red-700));

  --kbr-section-bg:
    radial-gradient(circle at 88% 16%, rgba(242, 201, 76, 0.045), transparent 28%),
    linear-gradient(180deg, var(--red-875), var(--red-850));

  --kbr-section-bg-dark:
    radial-gradient(circle at 12% 18%, rgba(242, 201, 76, 0.045), transparent 30%),
    linear-gradient(180deg, var(--red-950), var(--red-875));
}

/* Common page background sync */
body {
  background: var(--red-950);
}

.about-page,
.gallery-page,
.locations-page,
.location-page,
.contact-page,
.menu-page,
.franchise-page {
  background: var(--red-950);
}

/* Reusable synced section backgrounds */
.kbr-bg-main {
  background: var(--kbr-page-bg);
}

.kbr-bg-section {
  background: var(--kbr-section-bg);
}

.kbr-bg-dark {
  background: var(--kbr-section-bg-dark);
}

/* ============================================================
   GLOBAL WHATSAPP FLOATING ICON
   Use same design on all pages
   ============================================================ */

.global-whatsapp-floating,
.franchise-whatsapp-floating,
.whatsapp-floating {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;

  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;

  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #1fbf5b);
  color: #ffffff;

  box-shadow:
    0 14px 35px rgba(0, 0, 0, 0.38),
    0 0 25px rgba(37, 211, 102, 0.35);

  animation: kbrWhatsappFloat 4s ease-in-out infinite;
  transition:
    transform 250ms ease,
    box-shadow 250ms ease;
}

.global-whatsapp-floating::after,
.franchise-whatsapp-floating::after,
.whatsapp-floating::after {
  content: "";
  position: absolute;
  inset: 0;

  border: 2px solid rgba(37, 211, 102, 0.5);
  border-radius: 50%;

  animation: kbrWhatsappPulse 2.2s infinite;
  pointer-events: none;
}

.global-whatsapp-floating:hover,
.franchise-whatsapp-floating:hover,
.whatsapp-floating:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.44),
    0 0 40px rgba(37, 211, 102, 0.5);
}

.global-whatsapp-floating svg,
.franchise-whatsapp-floating svg,
.whatsapp-floating svg,
.whatsapp-floating-icon {
  position: relative;
  z-index: 2;
  width: 36px;
  height: 36px;
}

/* Hide text inside icon-only button */
.global-whatsapp-floating span,
.franchise-whatsapp-floating span,
.whatsapp-floating span:not(.whatsapp-floating-ring) {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* Animations */
@keyframes kbrWhatsappFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes kbrWhatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.75;
  }

  100% {
    transform: scale(1.65);
    opacity: 0;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .global-whatsapp-floating,
  .franchise-whatsapp-floating,
  .whatsapp-floating {
    width: 58px;
    height: 58px;
    right: 14px;
    bottom: 14px;
  }

  .global-whatsapp-floating svg,
  .franchise-whatsapp-floating svg,
  .whatsapp-floating svg,
  .whatsapp-floating-icon {
    width: 29px;
    height: 29px;
  }
}

@media (max-width: 480px) {
  .global-whatsapp-floating,
  .franchise-whatsapp-floating,
  .whatsapp-floating {
    width: 54px;
    height: 54px;
    right: 12px;
    bottom: 12px;
  }

  .global-whatsapp-floating svg,
  .franchise-whatsapp-floating svg,
  .whatsapp-floating svg,
  .whatsapp-floating-icon {
    width: 27px;
    height: 27px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .global-whatsapp-floating,
  .global-whatsapp-floating::after,
  .franchise-whatsapp-floating,
  .franchise-whatsapp-floating::after,
  .whatsapp-floating,
  .whatsapp-floating::after {
    animation: none !important;
  }
}

/* ==========================================================
   HERO FINAL LOGO + NEWS FIX
   Paste at bottom of styles.css
   ========================================================== */

/* ---------- DESKTOP ---------- */
@media (min-width: 992px) {

  /* Better left content alignment */
  .hero-content {
    justify-content: center;
    align-items: flex-start;
  }

  .hero-brand-mark {
    width: 100%;
    margin-bottom: 0.75rem !important;
  }

  /* Logo balanced with content */
  .hero-logo-stage {
    width: clamp(340px, 22vw, 420px) !important;
    margin-bottom: 1rem !important;
  }

  .hero-logo-frame,
  .hero-logo-frame img,
  #hero-logo {
    display: block;
    width: 100%;
    height: auto;
  }

  /* Content starts aligned under logo */
  .hero-typed-wrap {
    margin-top: 0 !important;
    margin-bottom: 1rem !important;
    max-width: 560px;
  }

  .hero-actions {
    margin-top: 0.75rem !important;
  }
}

/* ---------- MOBILE & TABLET ---------- */
@media (max-width: 991px) {

  /* Logo larger */
  .hero-logo-stage {
    width: 280px !important;
    margin: 0 auto 1rem auto !important;
  }

  .hero-brand-mark {
    margin-bottom: 0.75rem !important;
  }
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {

  /* Medium logo */
  .hero-logo-stage {
    width: 260px !important;
  }

  /* News bar slightly bigger */
  .news-bar {
    min-height: 32px !important;
  }

  .news-bar-label,
  .news-ticker,
  .news-title,
  .news-date,
  .news-type {
    font-size: 1rem !important;
    font-weight: 400;
  }
}

/* ---------- SMALL MOBILE ---------- */
@media (max-width: 480px) {

  .hero-logo-stage {
    width: 240px !important;
  }

  .news-bar-label,
  .news-ticker,
  .news-title,
  .news-date,
  .news-type {
    font-size: 0.95rem !important;
  }
}/* ==========================================
   REMOVE HERO TITLE COMPLETELY
   ========================================== */

.hero-title,
.hero-title *,
.hero-highlight {
    display: none !important;
}

.hero-content h1 {
    display: none !important;
}
/* ==========================================================
   NEWS BAR PREMIUM SIZE - DESKTOP + MOBILE
   ========================================================== */

/* Desktop */
@media (min-width: 992px) {

  .news-bar {
    min-height: 42px !important;
  }

  .news-bar-label {
    font-size: 1.0rem !important;
    font-weight: 500;
  }

  .news-ticker,
  .news-title,
  .news-date,
  .news-type {
    font-size: 1.1rem !important;
    font-weight: 600;
    line-height: 1.4;
  }
}

/* Tablet */
@media (max-width: 991px) {

  .news-bar {
    min-height: 54px !important;
  }

  .news-bar-label,
  .news-ticker,
  .news-title,
  .news-date,
  .news-type {
    font-size: 1rem !important;
    font-weight: 600;
  }
}

/* Mobile */
@media (max-width: 768px) {

  .news-bar {
    min-height: 42px !important;
  }

  .news-bar-label,
  .news-ticker,
  .news-title,
  .news-date,
  .news-type {
    font-size: 0.85rem !important;
    font-weight: 600;
  }
}

/* Small Mobile */
@media (max-width: 480px) {

  .news-bar-label,
  .news-ticker,
  .news-title,
  .news-date,
  .news-type {
    font-size: 0.95rem !important;
  }
}

/* ==========================================================
   FINAL RESPONSIVE IMAGE + INDEX BRAND FIXES
   Image request guide:
   - Navbar logo: 140x110 px transparent WebP/PNG.
   - Navbar mini images: 96x96 px square WebP/PNG.
   - Home hero left feature: 640x640 px square WebP/PNG.
   - Hero carousel slides: 2000x1500 px WebP/PNG.
   - Home menu/gallery cards: 2000x1500 px WebP/PNG.
   ========================================================== */

/* =====================================
   NAVBAR BRAND - CLEAN PREMIUM
   ===================================== */

.nav-brand-cluster{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.nav-brand-mini-images{
  display:flex;
  align-items:center;
  gap:14px;
}

.nav-brand-mini-images img{
  display:block;
  height:72px;
  width:auto;
  object-fit:contain;
}

.made-in-india-text{
  color:#f2c94c;
  font-size:13px;
  font-weight:700;
  letter-spacing:1.5px;
  text-transform:uppercase;
  white-space:nowrap;
  line-height:1;
}

/* Tablet */
@media (max-width:968px){

  .nav-brand-mini-images{
    gap:10px;
  }

  .nav-brand-mini-images img{
    height:56px;
  }

  .made-in-india-text{
    font-size:11px;
    letter-spacing:1px;
  }
}

/* Mobile */
@media (max-width:480px){

  .nav-brand-mini-images img{
    height:46px;
  }

  .made-in-india-text{
    font-size:9px;
    letter-spacing:0.8px;
  }
}
/* ===== HERO QUICK FIX ===== */

.hero-container{
  gap: clamp(1rem, 2vw, 2rem) !important;
}

.hero-brand-mark{
  margin-bottom: -8px !important;
  padding-left: 0 !important;
}

.hero-logo-stage{
  width: clamp(230px, 22vw, 310px) !important;
  height: clamp(190px, 18vw, 260px) !important;
}

.hero-left-feature-image{
  width: min(100%, 320px) !important;
  margin: 0.2rem 0 0.5rem !important;
  border-radius: 18px !important;
}

.hero-left-feature-image img{
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

.hero-content{
  max-width: 650px !important;
}

/* Mobile */

@media (max-width:768px){

  .hero-container{
    gap: 0.8rem !important;
  }

  .hero-logo-stage{
    width: 180px !important;
    height: 150px !important;
  }

  .hero-left-feature-image{
    width: 180px !important;
    margin-bottom: 0.4rem !important;
  }
}

/* ==========================================================
   FINAL NAVBAR BRAND IMAGE SLOT
   ========================================================== */

.nav-brand-cluster {
  flex: 0 0 auto;
  min-width: 0;
}

.nav-brand-mini-images {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: clamp(0.45rem, 1.3vw, 0.9rem);
}

.nav-brand-mini-images .navbar-kpc-logo,
.nav-brand-mini-images > img:first-child {
  width: auto;
  height: clamp(48px, 5.4vw, 74px);
  max-width: min(34vw, 155px);
  object-fit: contain;
}

.nav-brand-mini-images .made-in-india-image {
  width: auto;
  height: clamp(26px, 3vw, 44px);
  max-width: min(28vw, 130px);
  object-fit: contain;
}

.nav-brand-mini-images .made-in-india-text {
  display: none !important;
}

@media (max-width: 768px) {
  .nav-container {
    gap: 0.8rem;
  }

  .nav-brand-mini-images .navbar-kpc-logo,
  .nav-brand-mini-images > img:first-child {
    height: 46px;
    max-width: 122px;
  }

  .nav-brand-mini-images .made-in-india-image {
    height: 30px;
    max-width: 96px;
  }
}

@media (max-width: 380px) {
  .nav-brand-mini-images {
    gap: 0.35rem;
  }

  .nav-brand-mini-images .navbar-kpc-logo,
  .nav-brand-mini-images > img:first-child {
    height: 40px;
    max-width: 104px;
  }

  .nav-brand-mini-images .made-in-india-image {
    height: 26px;
    max-width: 80px;
  }
}

/* ==========================================================
   FINAL 2000x1500 IMAGE FIT + NAV LOGO BALANCE
   ========================================================== */

.hero-slides,
.menu-card-img-wrap {
  aspect-ratio: 4 / 3 !important;
}

.gallery-card {
  aspect-ratio: 16 / 9 !important;
}

.hero-slide img,
.menu-card-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  background: rgba(76, 4, 6, 0.72);
}

.hero-media {
  width: min(100%, 650px);
  justify-self: end;
}

.hero-media-frame {
  width: 100%;
}

.hero-slides {
  width: 100%;
  max-height: min(68vh, 488px);
}

.nav-brand-mini-images .made-in-india-image {
  height: clamp(34px, 4.2vw, 56px) !important;
  max-width: min(32vw, 170px) !important;
}

.nav-brand-mini-images .navbar-kpc-logo,
.nav-brand-mini-images > img:first-child {
  height: clamp(46px, 5vw, 68px) !important;
  max-width: min(32vw, 145px) !important;
}

@media (max-width: 768px) {
  .hero-media {
    width: 100%;
    max-width: 520px;
    justify-self: center;
  }

  .hero-slides {
    max-height: none;
  }

  .nav-brand-mini-images {
    gap: 0.5rem !important;
  }

  .nav-brand-mini-images .navbar-kpc-logo,
  .nav-brand-mini-images > img:first-child {
    height: 42px !important;
    max-width: 104px !important;
  }

  .nav-brand-mini-images .made-in-india-image {
    height: 34px !important;
    max-width: 104px !important;
  }
}

@media (max-width: 380px) {
  .nav-brand-mini-images .navbar-kpc-logo,
  .nav-brand-mini-images > img:first-child {
    height: 38px !important;
    max-width: 92px !important;
  }

  .nav-brand-mini-images .made-in-india-image {
    height: 30px !important;
    max-width: 88px !important;
  }
}

/* =====================================
   HOME PAGE MENU IMAGE PREMIUM FIX
   ===================================== */

.home-menu-card-image,
.home-menu-card img,
.home-menu-image,
.home-menu-grid img{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    object-position:center center !important;
    display:block !important;
    background:none !important;
}

.home-menu-card-image-wrap,
.home-menu-image-wrap{
    overflow:hidden !important;
    aspect-ratio:4/3 !important;
    background:transparent !important;
}

.home-menu-card,
.home-menu-grid .menu-card{
    overflow:hidden !important;
    border-radius:20px !important;
}

.home-menu-grid img:hover{
    transform:scale(1.05);
    transition:transform .5s ease;
}

/* ============================================================
   FINAL HEADER SYSTEM (consolidated fix)
   Replaces the previously duplicated/conflicting rules for
   .top-header-banner, .site-header, .news-bar and the mobile
   menu. Single source of truth — do not add further overrides
   below this block; edit these values instead.
   ============================================================ */

:root {
  /* Desktop banner art is 2600x473 (ratio 5.499/1) -- too wide to show
     uncropped in a slim header bar without the bar becoming huge, so
     the bar stays compact (110-150px) and the image is center-cropped
     (object-fit: cover, below) to fill it edge-to-edge with no gaps
     on either side. Height still eases up slightly on wider screens
     via clamp(), capping at 150px in step with the 1400px content
     cap on .top-header-banner picture below. */
  --header-banner-height: clamp(110px, calc(100vw / 9.3), 150px);
  --header-banner-height-tablet: 110px;
  --header-banner-height-mobile: 104px;
  --header-height: 76px;
  --news-height: 38px;
  --top-offset: calc(var(--header-banner-height) + var(--header-height) + var(--news-height));
}

/* Pages without a news bar (everything except the home page) */
body.about-page,
body.menu-page,
body.gallery-page,
body.locations-page,
body.franchise-page,
body.contact-page {
  --news-height: 0px;
}

/* ---------- Top header banner ---------- */
.top-header-banner {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1210;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: var(--header-banner-height);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -40%, rgba(242, 201, 76, 0.12), transparent 40%),
    linear-gradient(180deg, #2b0103 0%, #3a0203 45%, #450406 100%);
  border-bottom: 1px solid rgba(242, 201, 76, 0.15);
  box-shadow:
    inset 0 -1px 0 rgba(255, 255, 255, 0.05),
    0 12px 30px rgba(0, 0, 0, 0.35);
}

.top-header-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 10%,
    rgba(255, 255, 255, 0.05) 48%,
    transparent 85%
  );
  pointer-events: none;
}

.top-header-banner::after {
  content: "";
  position: absolute;
  top: -130px;
  left: 50%;
  width: 700px;
  height: 260px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 201, 76, 0.1), transparent 70%);
  filter: blur(38px);
  pointer-events: none;
}

.top-header-banner img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  padding: 2px 24px 10px;
  background: transparent;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}

/* ---------- Site header / navbar ---------- */
.site-header {
  position: fixed;
  top: var(--header-banner-height);
  right: 0;
  left: 0;
  z-index: 1200;
  height: var(--header-height);
  background: linear-gradient(180deg, rgba(38, 1, 2, 0.94), rgba(22, 0, 1, 0.97));
  border-top: 1px solid rgba(242, 201, 76, 0.08);
  border-bottom: 1px solid transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: background var(--transition-base), border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.site-header.scrolled {
  border-bottom-color: rgba(242, 201, 76, 0.1);
  background: rgba(38, 1, 2, 0.98);
  box-shadow: 0 10px 34px rgba(10, 0, 0, 0.34);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-container {
  display: flex;
  height: 100%;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

/* Navbar brand (logo + Made in India mark) */
.nav-brand-cluster {
  display: flex;
  flex: 0 0 auto;
  min-width: 0;
  align-items: center;
  text-decoration: none;
}

.nav-brand-mini-images {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: clamp(0.45rem, 1.3vw, 0.9rem);
}

.nav-brand-mini-images .navbar-kpc-logo,
.nav-brand-mini-images > img:first-child {
  width: auto;
  height: clamp(46px, 5vw, 68px);
  max-width: min(32vw, 145px);
  object-fit: contain;
}

.nav-brand-mini-images .made-in-india-image {
  width: auto;
  height: clamp(26px, 3vw, 44px);
  max-width: min(28vw, 130px);
  object-fit: contain;
}

.nav-brand-mini-images .made-in-india-text {
  display: none;
}

.desktop-navigation {
  display: flex;
  margin-left: auto;
  align-items: center;
  justify-content: flex-end;
  gap: 0.15rem;
}

/* ---------- News bar ---------- */
.news-bar {
  position: fixed;
  top: calc(var(--header-banner-height) + var(--header-height));
  right: 0;
  left: 0;
  z-index: 1190;
  height: var(--news-height);
  min-height: var(--news-height);
}

/* ---------- Mobile navigation / overlay ---------- */
.nav-overlay {
  z-index: 1290;
}

.mobile-navigation {
  top: calc(var(--header-banner-height) + var(--header-height));
  z-index: 1300;
  width: min(82vw, 320px);
  height: calc(100svh - var(--header-banner-height) - var(--header-height));
  max-height: calc(100svh - var(--header-banner-height) - var(--header-height));
}

/* ---------- Page content offset ---------- */
.hero-section {
  padding-top: calc(var(--top-offset) + 0.5rem);
}

.about-page .about-hero,
.menu-page .menu-page-hero,
.gallery-page .gallery-hero,
.locations-page .locations-hero,
.franchise-page .franchise-hero,
.contact-page .contact-hero {
  padding-top: calc(var(--top-offset) + 0.35rem);
}

html {
  scroll-padding-top: var(--top-offset);
}

/* ---------- Tablet ----------
   No longer needs its own override: the base clamp() above already
   scales the banner height with viewport width, so tablet widths
   fall naturally within the 110px-150px range. ---------- */

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
  :root {
    /* Mobile banner art is 1200x320 (ratio 3.75/1); same fluid
       approach as desktop keeps it edge-to-edge at every phone width. */
    --header-banner-height: clamp(88px, calc(100vw / 3.75), 128px);
    --header-height: 62px;
    --news-height: 34px;
  }

  .nav-container {
    justify-content: flex-start;
    gap: 0.55rem;
  }

  .nav-brand-cluster {
    display: none;
  }

  .desktop-navigation {
    display: flex;
    overflow-x: auto;
    width: 100%;
    justify-content: flex-start;
    gap: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .desktop-navigation::-webkit-scrollbar {
    display: none;
  }

  .nav-link {
    padding: 0.65rem 0.55rem;
    font-size: 0.62rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  .nav-hamburger {
    display: none;
  }

  .nav-overlay,
  .mobile-navigation {
    display: none !important;
  }

  .nav-brand-mini-images {
    gap: 0.5rem;
  }

  .nav-brand-mini-images .navbar-kpc-logo,
  .nav-brand-mini-images > img:first-child {
    height: 44px;
    max-width: 110px;
  }

  .nav-brand-mini-images .made-in-india-image {
    height: 30px;
    max-width: 96px;
  }

  .news-bar {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .news-bar-label {
    min-width: 82px;
    padding-inline: 0.42rem;
    font-size: 0.62rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  .news-ticker {
    padding-left: 0.95rem;
  }

  .news-ticker-group {
    gap: 0.85rem;
    padding-right: 1.25rem;
  }

  .news-ticker-item {
    gap: 0.38rem;
  }

  .news-title,
  .news-date,
  .news-type {
    font-size: 0.68rem;
    line-height: 1.2;
  }

  .mobile-navigation {
    width: min(84vw, 280px);
  }

  .top-header-banner img {
    padding: 2px 6px 3px;
  }
}

/* ---------- Small mobile ---------- */
@media (max-width: 480px) {
  .nav-brand-mini-images {
    gap: 0.32rem;
  }

  .nav-brand-mini-images .navbar-kpc-logo,
  .nav-brand-mini-images > img:first-child {
    height: 38px;
    max-width: 92px;
  }

  .nav-brand-mini-images .made-in-india-image {
    height: 26px;
    max-width: 80px;
  }

  .news-bar {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .news-bar-label {
    min-width: 76px;
    font-size: 0.56rem;
  }

  .news-title,
  .news-date,
  .news-type {
    font-size: 0.62rem;
  }
}
/* Hide KPC logo + Made in India mark in navbar */
.nav-brand-cluster {
  display: none;
}

/* ---------- Compact navbar (fits text) ---------- */
:root {
  --header-height: 52px;
}

.nav-link {
  padding: 0.55rem 0.85rem;
}

/* ============================================================
   HERO RIGHT IMAGE — CORRECT ASPECT RATIO (1920x1005 ratio ≈ 1.91:1)
   Overrides the earlier 4/3 aspect-ratio forced on .hero-slides
   ============================================================ */

#hero-carousel .hero-slides {
  aspect-ratio: 1920 / 1005 !important;
  width: 100%;
  max-height: none !important;
}

#hero-carousel .hero-slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}

/* Laptop (your current image size ~1565x819) */
@media (max-width: 1440px) {
  #hero-carousel .hero-slides {
    aspect-ratio: 1565 / 819 !important;
  }
}

/* Tablet (~1280x670) */
@media (max-width: 1024px) {
  #hero-carousel .hero-slides {
    aspect-ratio: 1280 / 670 !important;
  }
}

/* Mobile (~768x402) */
@media (max-width: 768px) {
  #hero-carousel .hero-slides {
    aspect-ratio: 768 / 402 !important;
    border-radius: 16px;
  }
}

/* Mobile High-DPI (~1080x565) — same ratio as mobile,
   this just ensures crisp rendering, no layout change needed */
@media (max-width: 768px) and (min-resolution: 2dppx) {
  #hero-carousel .hero-slides {
    aspect-ratio: 1080 / 565 !important;
  }
}

/* ===== HIDE HERO DOTS ===== */
#hero-dots {
  display: none !important;
}

/* ===== Remove black shade from Hero image ===== */

.hero-image-overlay {
    display: none !important;
    background: transparent !important;
}

.hero-image-border {
    box-shadow: inset 0 0 0 1px rgba(242, 201, 76, 0.08) !important;
}

/* Optional: if any slide has a gradient */
.hero-slide::after,
.hero-slide::before {
    display: none !important;
}

/* ============================================================
   HERO — STACKED TOP (image) / BOTTOM (content)
   Same structure on mobile AND desktop, no left/right split.
   ============================================================ */

.hero-container {
  display: flex !important;
  flex-direction: column !important;
  min-height: auto !important;
  gap: 0.9rem !important;
  align-items: stretch !important;
  padding-block: 1.25rem 2rem !important;
}

.hero-media {
  order: -1;
  width: 100% !important;
  max-width: 100% !important;
  justify-self: unset !important;
  padding-bottom: 0 !important;
  margin: 0 !important;
}

.hero-content {
  order: 2;
  max-width: 100% !important;
  width: 100%;
}

.hero-media-frame {
  width: 100%;
}

/* Bigger, fuller hero image — full section width on every breakpoint */
#hero-carousel .hero-slides {
  width: 100% !important;
  aspect-ratio: 4 / 3 !important;
  max-height: min(62vh, 620px) !important;
}

@media (max-width: 768px) {
  #hero-carousel .hero-slides {
    aspect-ratio: 5 / 4 !important;
    max-height: none !important;
    border-radius: 16px;
  }

  .hero-container {
    gap: 0.65rem !important;
    padding-block: 0.85rem 1.6rem !important;
  }
}

@media (max-width: 768px) and (min-resolution: 2dppx) {
  #hero-carousel .hero-slides {
    aspect-ratio: 5 / 4 !important;
  }
}

.hero-dots {
  bottom: 0.55rem;
}


/* ============================================================
   "PARTNER WITH KBR CRISPY CHICKEN" (franchise) — fix odd
   half-empty mobile layout + too-small text
   ============================================================ */

@media (max-width: 768px) {
  .franchise-card-overlay {
    background: linear-gradient(
      180deg,
      rgba(28, 0, 1, 0.72) 0%,
      rgba(28, 0, 1, 0.93) 45%,
      rgba(28, 0, 1, 0.97) 100%
    ) !important;
  }

  .franchise-content {
    max-width: 100% !important;
    padding: 1.5rem 1.25rem !important;
  }

  .franchise-content h2 {
    font-size: clamp(1.7rem, 8.2vw, 2.35rem) !important;
  }

  .franchise-return-line {
    font-size: 0.74rem !important;
    line-height: 1.5 !important;
  }

  .franchise-price-label {
    font-size: 0.7rem !important;
  }

  .franchise-price {
    font-size: clamp(2.05rem, 9vw, 2.6rem) !important;
  }

  .franchise-summary {
    -webkit-line-clamp: 4 !important;
    line-clamp: 4 !important;
    font-size: 0.82rem !important;
    line-height: 1.62 !important;
  }

  .franchise-disclaimer {
    font-size: 0.64rem !important;
    line-height: 1.55 !important;
  }
}

@media (max-width: 480px) {
  .franchise-content {
    max-width: 100% !important;
  }
}

/* ============================================================
   KBR CRISPY CHICKEN — COMPLETE HOME PAGE STYLES
   Compatible with latest index.html and main.js

   Updates:
   - Navbar logo removed
   - Navigation aligned professionally
   - Hero description removed
   - Hero logo moved slightly toward the right
   - Hero logo blends with the red website background
   - Premium logo aura and floating animation
   - Text-only KBR Standard cards
   - Desktop, tablet and mobile responsive
   ============================================================ */


/* ============================================================
   1. DESIGN SYSTEM
   ============================================================ */

:root {
  --red-950: #260102;
  --red-925: #310203;
  --red-900: #3d0304;
  --red-850: #4c0406;
  --red-800: #5d0508;
  --red-750: #70070a;
  --red-700: #85090d;
  --red-650: #980c11;
  --red-600: #ad1016;
  --red-550: #c5161d;
  --red-500: #d71920;

  --yellow-500: #f2c94c;
  --yellow-450: #f4cf59;
  --yellow-400: #f6d568;
  --yellow-300: #f9df8a;
  --yellow-200: #fceab0;
  --yellow-100: #fff4cf;

  --white: #ffffff;
  --cream: #fff8f1;

  --text-primary: rgba(255, 255, 255, 0.96);
  --text-secondary: rgba(255, 255, 255, 0.75);
  --text-muted: rgba(255, 255, 255, 0.58);
  --text-faint: rgba(255, 255, 255, 0.38);

  --border-white: rgba(255, 255, 255, 0.1);
  --border-white-strong: rgba(255, 255, 255, 0.18);
  --border-yellow: rgba(242, 201, 76, 0.3);
  --border-yellow-strong: rgba(242, 201, 76, 0.55);

  --surface-white: rgba(255, 255, 255, 0.055);
  --surface-white-hover: rgba(255, 255, 255, 0.085);
  --surface-yellow: rgba(242, 201, 76, 0.065);
  --surface-yellow-hover: rgba(242, 201, 76, 0.13);

  --zomato-start: #b91f2c;
  --zomato-end: #e23744;
  --swiggy-start: #db6107;
  --swiggy-end: #fc8019;

  --font-heading: "Outfit", sans-serif;
  --font-body: "DM Sans", sans-serif;

  --container-width: 1240px;
  --header-height: 76px;
  --news-height: 38px;
  --top-offset: calc(var(--header-height) + var(--news-height));

  --section-space: 4.4rem;
  --section-space-tablet: 3.6rem;
  --section-space-mobile: 2.8rem;

  --radius-xs: 6px;
  --radius-sm: 9px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --radius-2xl: 38px;

  --shadow-small: 0 12px 32px rgba(15, 0, 1, 0.24);
  --shadow-medium: 0 24px 64px rgba(12, 0, 1, 0.35);
  --shadow-large: 0 38px 100px rgba(10, 0, 1, 0.5);
  --shadow-yellow: 0 16px 44px rgba(242, 201, 76, 0.12);

  --transition-fast: 180ms ease;
  --transition-base: 320ms ease;
  --transition-smooth: 650ms cubic-bezier(0.22, 1, 0.36, 1);
}


/* ============================================================
   2. RESET
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--top-offset) + 8px);
  font-size: 16px;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--red-950);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

main {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

iframe {
  display: block;
  width: 100%;
  border: 0;
}

ul,
ol {
  list-style: none;
}

::selection {
  background: var(--yellow-500);
  color: var(--red-950);
}

:focus-visible {
  outline: 2px solid var(--yellow-500);
  outline-offset: 4px;
  border-radius: 5px;
}


/* ============================================================
   3. GLOBAL LAYOUT
   ============================================================ */

.container {
  width: min(calc(100% - 3rem), var(--container-width));
  margin-inline: auto;
}

.section {
  position: relative;
  overflow: hidden;
  padding-block: var(--section-space);
}

.section-background-number {
  position: absolute;
  top: 0;
  right: 3%;
  z-index: 0;
  color: rgba(242, 201, 76, 0.026);
  font-family: var(--font-heading);
  font-size: clamp(8rem, 17vw, 15rem);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.section-header {
  position: relative;
  z-index: 2;
  width: min(100%, 730px);
  margin: 0 auto 2.55rem;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 0.72rem;
  color: var(--yellow-400);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker::before,
.section-kicker::after {
  content: "";
  width: 23px;
  height: 1px;
  background: var(--yellow-500);
  opacity: 0.62;
}

.section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.8vw, 4.35rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
}

.section-title-left {
  align-items: flex-start;
  text-align: left;
}

.section-title-main,
.section-title-accent {
  display: block;
}

.section-title-main {
  color: var(--white);
}

.section-title-accent {
  color: var(--yellow-500);
}

.section-description {
  width: min(100%, 620px);
  margin: 0.95rem auto 0;
  color: var(--text-muted);
  font-size: 0.91rem;
  line-height: 1.8;
}

.section-action {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}


/* ============================================================
   4. PRELOADER
   ============================================================ */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(242, 201, 76, 0.09),
      transparent 30%
    ),
    radial-gradient(
      circle at 50% 42%,
      rgba(215, 25, 32, 0.22),
      transparent 44%
    ),
    var(--red-950);
  transition:
    opacity 450ms ease,
    visibility 450ms ease;
}

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

.preloader-inner {
  display: flex;
  width: min(220px, 64vw);
  flex-direction: column;
  align-items: center;
}

.preloader-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter:
    drop-shadow(0 18px 32px rgba(0, 0, 0, 0.4))
    drop-shadow(0 0 16px rgba(242, 201, 76, 0.1));
  animation: preloader-logo 1.35s ease-in-out infinite alternate;
}

.preloader-text {
  margin-top: 0.75rem;
  color: var(--yellow-300);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.preloader-line {
  width: 100%;
  height: 3px;
  margin-top: 1.1rem;
  overflow: hidden;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.09);
}

.preloader-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    var(--yellow-500),
    transparent
  );
  transform: translateX(-100%);
  animation: preloader-line 1.15s ease-in-out infinite;
}

@keyframes preloader-logo {
  from {
    opacity: 0.76;
    transform: scale(0.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes preloader-line {
  to {
    transform: translateX(100%);
  }
}


/* ============================================================
   5. HEADER
   ============================================================ */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: linear-gradient(
    to bottom,
    rgba(28, 0, 1, 0.92),
    rgba(28, 0, 1, 0.34)
  );
  transition:
    background var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.site-header.scrolled {
  border-color: rgba(242, 201, 76, 0.1);
  background: rgba(38, 1, 2, 0.96);
  box-shadow: 0 10px 34px rgba(10, 0, 0, 0.34);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-container {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.nav-brand-space {
  width: 30px;
  height: 1px;
}

.desktop-navigation {
  display: flex;
  margin-left: auto;
  align-items: center;
  justify-content: flex-end;
  gap: 0.15rem;
}

.nav-link {
  position: relative;
  padding: 0.72rem 0.88rem;
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 0.88rem;
  bottom: 0.42rem;
  left: 0.88rem;
  height: 2px;
  border-radius: 10px;
  background: var(--yellow-500);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--yellow-300);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}


/* ============================================================
   6. NEWS BAR
   ============================================================ */

.news-bar {
  position: fixed;
  top: var(--header-height);
  right: 0;
  left: 0;
  z-index: 990;
  display: grid;
  height: var(--news-height);
  grid-template-columns: auto minmax(0, 1fr);
  overflow: hidden;
  border-top: 1px solid rgba(242, 201, 76, 0.07);
  border-bottom: 1px solid rgba(242, 201, 76, 0.13);
  background: var(--red-950);
  box-shadow: 0 8px 24px rgba(15, 0, 1, 0.2);
}

.news-bar-label {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 145px;
  align-items: center;
  justify-content: center;
  padding-inline: 1.15rem;
  background: var(--yellow-500);
  color: var(--red-950);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-bar-label::after {
  content: "";
  position: absolute;
  top: 0;
  right: -15px;
  border-top: calc(var(--news-height) / 2) solid transparent;
  border-bottom: calc(var(--news-height) / 2) solid transparent;
  border-left: 15px solid var(--yellow-500);
}

.news-bar-window {
  min-width: 0;
  overflow: hidden;
}

.news-ticker {
  display: flex;
  width: max-content;
  min-width: 100%;
  height: 100%;
  align-items: center;
  padding-left: 1.65rem;
  animation: news-scroll 32s linear infinite;
  will-change: transform;
}

.news-bar:hover .news-ticker {
  animation-play-state: paused;
}

.news-ticker-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 1.45rem;
  padding-right: 2rem;
}

.news-ticker-item {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.65rem;
  white-space: nowrap;
}

.news-type {
  padding: 0.18rem 0.42rem;
  border: 1px solid var(--border-yellow);
  border-radius: 100px;
  background: var(--surface-yellow);
  color: var(--yellow-400);
  font-size: 0.47rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-title {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.67rem;
  font-weight: 500;
}

.news-date {
  color: var(--text-faint);
  font-size: 0.58rem;
}

.news-divider {
  width: 4px;
  height: 4px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--yellow-500);
}

@keyframes news-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


/* ============================================================
   7. MOBILE NAVIGATION
   ============================================================ */

.nav-hamburger {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(242, 201, 76, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 4px;
  border-radius: 10px;
  background: var(--yellow-300);
  transition:
    transform var(--transition-base),
    opacity var(--transition-base);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1090;
  visibility: hidden;
  background: rgba(18, 0, 1, 0.74);
  opacity: 0;
  backdrop-filter: blur(5px);
  transition:
    opacity var(--transition-base),
    visibility var(--transition-base);
}

.nav-overlay.open {
  visibility: visible;
  opacity: 1;
}

.mobile-navigation {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1100;
  width: min(85vw, 350px);
  height: 100dvh;
  padding: 1.1rem 1.25rem 2rem;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(242, 201, 76, 0.09),
      transparent 30%
    ),
    var(--red-950);
  box-shadow: -24px 0 70px rgba(0, 0, 0, 0.48);
  transform: translateX(105%);
  transition: transform var(--transition-smooth);
}

.mobile-navigation.open {
  transform: translateX(0);
}

.mobile-navigation-header {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-yellow);
}

.mobile-navigation-brand {
  display: flex;
  align-items: center;
}

.mobile-navigation-brand span {
  color: var(--yellow-400);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.mobile-menu-close {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(242, 201, 76, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.mobile-menu-close span {
  position: absolute;
  top: 20px;
  left: 10px;
  width: 22px;
  height: 2px;
  background: var(--yellow-300);
}

.mobile-menu-close span:first-child {
  transform: rotate(45deg);
}

.mobile-menu-close span:last-child {
  transform: rotate(-45deg);
}

.mobile-navigation-links {
  display: flex;
  flex-direction: column;
  padding-top: 1rem;
}

.nav-mobile-link {
  padding: 0.88rem 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--font-heading);
  font-size: 1.16rem;
  font-weight: 500;
  transition:
    color var(--transition-fast),
    padding-left var(--transition-fast);
}

.nav-mobile-link:hover,
.nav-mobile-link.active {
  padding-left: 0.65rem;
  color: var(--yellow-500);
}


/* ============================================================
   8. HERO
   ============================================================ */

.hero-section {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding-top: var(--top-offset);
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(242, 201, 76, 0.1),
      transparent 25%
    ),
    radial-gradient(
      circle at 86% 28%,
      rgba(215, 25, 32, 0.28),
      transparent 38%
    ),
    radial-gradient(
      circle at 12% 78%,
      rgba(171, 14, 20, 0.22),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      var(--red-950) 0%,
      var(--red-800) 54%,
      var(--red-650) 100%
    );
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.021) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.021) 1px,
      transparent 1px
    );
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 94%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(46px);
  pointer-events: none;
}

.hero-glow-one {
  top: 15%;
  right: 7%;
  width: 300px;
  height: 300px;
  background: rgba(242, 201, 76, 0.08);
}

.hero-glow-two {
  bottom: 8%;
  left: 3%;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.03);
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100svh - var(--top-offset));
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-block: 1.5rem 3rem;
}

.hero-content {
  max-width: 600px;
}


/* ============================================================
   8.1 HERO LOGO — BLENDED AND ANIMATED
   ============================================================ */

.hero-brand-mark {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0.35rem;
  padding-left: clamp(1.4rem, 5vw, 4.5rem);
}

/* ===== HERO LOGO REMOVED (per request: no logo in hero, mobile + desktop) ===== */
.hero-brand-mark {
  display: none !important;
}

.hero-logo-stage {
  position: relative;
  display: grid;
  width: clamp(190px, 18vw, 255px);
  height: clamp(155px, 15vw, 215px);
  place-items: center;
  isolation: isolate;
  animation: hero-logo-float 5s ease-in-out infinite;
}
/* ===== HERO LOGO FIX ===== */

.hero-logo-stage{
  width:clamp(260px,24vw,340px) !important;
  height:clamp(210px,20vw,280px) !important;
}

@media (max-width:768px){

  .hero-logo-stage{
    width:220px !important;
    height:180px !important;
  }
}
@media (max-width:768px){

  .hero-logo-stage{
    width:220px !important;
    height:180px !important;
  }
}

.hero-logo-stage::before {
  content: "";
  position: absolute;
  inset: 12% 5%;
  z-index: -3;
  border-radius: 46% 54% 55% 45% / 48% 44% 56% 52%;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(242, 201, 76, 0.14),
      rgba(215, 25, 32, 0.09) 46%,
      transparent 72%
    );
  filter: blur(23px);
  opacity: 0.88;
  animation: hero-logo-background-pulse 4.8s ease-in-out infinite;
}
/* ===== HERO ALIGNMENT FIX ===== */

.hero-container{
  align-items:center !important;
  gap:1.2rem !important;
}

.hero-content{
  justify-content:center !important;
}

.hero-brand-mark{
  margin-bottom:0 !important;
}

.hero-left-feature-image{
  margin-top:8px !important;
  margin-bottom:10px !important;
}

@media (max-width:768px){

  .hero-container{
    gap:.8rem !important;
  }

  .hero-left-feature-image{
    width:200px !important;
    margin:6px auto 10px !important;
  }
}

.hero-logo-stage::after {
  content: "";
  position: absolute;
  inset: 3%;
  z-index: -2;
  border: 1px solid rgba(242, 201, 76, 0.12);
  border-radius: 50%;
  opacity: 0.7;
  transform: scale(0.82);
  animation: hero-logo-ring 4.6s ease-out infinite;
}

.hero-logo-aura {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  pointer-events: none;
}

.hero-logo-aura-one {
  width: 78%;
  height: 78%;
  background:
    radial-gradient(
      circle,
      rgba(242, 201, 76, 0.12),
      rgba(242, 201, 76, 0.035) 46%,
      transparent 72%
    );
  filter: blur(16px);
  animation: hero-aura-one 5.5s ease-in-out infinite;
}

.hero-logo-aura-two {
  width: 112%;
  height: 112%;
  border: 1px solid rgba(242, 201, 76, 0.08);
  background:
    conic-gradient(
      from 30deg,
      transparent,
      rgba(242, 201, 76, 0.08),
      transparent 35%,
      rgba(255, 255, 255, 0.03),
      transparent 70%
    );
  filter: blur(1px);
  opacity: 0.7;
  animation: hero-aura-rotate 16s linear infinite;
}

.hero-logo-frame {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.hero-logo-frame::before {
  content: "";
  position: absolute;
  inset: 18%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(94, 5, 8, 0.52);
  filter: blur(25px);
}

.hero-brand-mark img {
  position: relative;
  z-index: 2;
  width: 92%;
  height: 92%;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: normal;
  filter:
    drop-shadow(0 24px 36px rgba(0, 0, 0, 0.38))
    drop-shadow(0 0 22px rgba(242, 201, 76, 0.16));
  transform-origin: center;
  animation: hero-logo-breathe 4.8s ease-in-out infinite;
}

@keyframes hero-logo-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(5px, -8px, 0);
  }
}

@keyframes hero-logo-breathe {
  0%,
  100% {
    transform: scale(0.98);
    filter:
      drop-shadow(0 24px 36px rgba(0, 0, 0, 0.38))
      drop-shadow(0 0 18px rgba(242, 201, 76, 0.11));
  }

  50% {
    transform: scale(1.025);
    filter:
      drop-shadow(0 26px 42px rgba(0, 0, 0, 0.42))
      drop-shadow(0 0 30px rgba(242, 201, 76, 0.2));
  }
}

@keyframes hero-logo-background-pulse {
  0%,
  100% {
    opacity: 0.65;
    transform: scale(0.92);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes hero-logo-ring {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }

  28% {
    opacity: 0.52;
  }

  100% {
    opacity: 0;
    transform: scale(1.12);
  }
}

@keyframes hero-aura-one {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.92);
  }

  50% {
    opacity: 0.92;
    transform: scale(1.08);
  }
}

@keyframes hero-aura-rotate {
  to {
    transform: rotate(360deg);
  }
}


/* ============================================================
   8.2 HERO TYPOGRAPHY AND BUTTONS
   ============================================================ */

.hero-eyebrow {
  margin-bottom: 0.72rem;
  color: var(--yellow-300);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-title {
  display: flex;
  flex-direction: column;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(3.55rem, 6.5vw, 6.2rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.hero-title-main,
.hero-title-highlight {
  display: block;
}

.hero-title-main {
  color: var(--white);
}

.hero-title-highlight {
  margin-top: 0.08em;
  color: var(--yellow-500);
  font-weight: 500;
}

.hero-typed-wrap {
  min-height: 1.65rem;
  margin-top: 1.05rem;
  color: var(--yellow-200);
  font-size: clamp(0.92rem, 1.5vw, 1.08rem);
  font-weight: 500;
}

.typed-cursor {
  color: var(--yellow-500);
}

/* ===== HERO ACTIONS — single row of 3 buttons (matches reference) ===== */
.hero-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 640px;
  gap: 0.6rem;
  margin-top: 1.45rem;
  align-items: stretch;
}

.hero-order-buttons {
  display: contents;
}

.platform-order-button {
  position: relative;
  display: flex;
  min-height: 58px;
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 11px;
  color: var(--white);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.23);
  transition:
    transform var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    filter var(--transition-base);
}

.platform-order-button::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -35%;
  width: 34%;
  height: 300%;
  background: rgba(255, 255, 255, 0.16);
  transform: rotate(18deg);
  transition: left 700ms ease;
}

.platform-order-button:hover::before {
  left: 125%;
}

.platform-order-button:hover {
  border-color: rgba(242, 201, 76, 0.46);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
  filter: brightness(1.04);
}

.zomato-order-button {
  background: linear-gradient(
    135deg,
    var(--zomato-start),
    var(--zomato-end)
  );
}

.swiggy-order-button {
  background: linear-gradient(
    135deg,
    var(--swiggy-start),
    var(--swiggy-end)
  );
}

.platform-button-small {
  font-size: 0.57rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  opacity: 0.84;
  text-transform: uppercase;
}

.platform-order-button strong {
  font-size: 1rem;
  font-weight: 700;
}

.hero-store-button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 0.6rem;
  border: 1px solid var(--border-yellow);
  border-radius: 11px;
  background: var(--surface-yellow);
  color: var(--yellow-200);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  transition:
    background var(--transition-base),
    border-color var(--transition-base),
    color var(--transition-base),
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.hero-store-button:hover {
  border-color: var(--yellow-500);
  background: var(--surface-yellow-hover);
  color: var(--white);
  box-shadow: var(--shadow-yellow);
  transform: translateY(-2px);
}

.hero-quality-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-quality-line span {
  position: relative;
}

.hero-quality-line span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.68rem;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--yellow-500);
  transform: translateY(-50%);
}


/* ============================================================
   8.3 HERO CAROUSEL
   ============================================================ */

.hero-media {
  position: relative;
  min-width: 0;
  padding-bottom: 2rem;
}

.hero-media-frame {
  position: relative;
}

.hero-slides {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  border: 1px solid rgba(242, 201, 76, 0.25);
  border-radius: var(--radius-xl);
  background: var(--red-850);
  box-shadow: var(--shadow-large);
}

.hero-slide {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 850ms ease,
    visibility 850ms ease;
}

.hero-slide.active {
  visibility: visible;
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28, 0, 1, 0.78),
    transparent 54%
  );
}

.hero-image-border {
  position: absolute;
  inset: 0;
  z-index: 4;
  border-radius: var(--radius-xl);
  box-shadow:
    inset 0 0 0 1px rgba(242, 201, 76, 0.07),
    inset 0 -90px 110px rgba(0, 0, 0, 0.21);
  pointer-events: none;
}

.hero-slide-info {
  position: absolute;
  z-index: 5;
  right: 1.2rem;
  bottom: 1.15rem;
  left: 1.2rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.hero-slide-info span {
  padding: 0.3rem 0.62rem;
  border: 1px solid var(--border-yellow);
  border-radius: 100px;
  background: rgba(38, 1, 2, 0.76);
  color: var(--yellow-300);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hero-slide-info strong {
  max-width: 62%;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.1;
  text-align: right;
}

.hero-image-label {
  position: absolute;
  top: 1rem;
  right: -0.5rem;
  z-index: 6;
  padding: 0.43rem 0.75rem;
  border: 1px solid var(--border-yellow);
  border-radius: 6px 0 0 6px;
  background: rgba(61, 3, 4, 0.92);
  color: var(--yellow-500);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(10px);
}

.hero-dots {
  position: absolute;
  bottom: 0.4rem;
  left: 50%;
  display: flex;
  gap: 0.42rem;
  transform: translateX(-50%);
}

.hero-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  transition:
    width var(--transition-base),
    border-radius var(--transition-base),
    background var(--transition-base);
}

.hero-dot.active {
  width: 25px;
  border-radius: 20px;
  background: var(--yellow-500);
}


/* ============================================================
   9. STATISTICS
   ============================================================ */

.stats-section {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(242, 201, 76, 0.08);
  border-bottom: 1px solid rgba(242, 201, 76, 0.08);
  background: linear-gradient(
    180deg,
    var(--red-950),
    var(--red-925)
  );
}

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

.stat-card {
  position: relative;
  min-width: 0;
  padding: 1.7rem 1rem;
  text-align: center;
}

.stat-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 44%;
  background: rgba(242, 201, 76, 0.16);
  transform: translateY(-50%);
}

.stat-value {
  display: block;
  color: var(--yellow-500);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.05rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-label {
  display: block;
  max-width: 155px;
  margin: 0.45rem auto 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1.45;
  text-transform: uppercase;
}


/* ============================================================
   10. KBR STANDARD — TEXT-ONLY PREMIUM CARDS
   ============================================================ */

.promise-section {
  background:
    radial-gradient(
      circle at 88% 8%,
      rgba(242, 201, 76, 0.08),
      transparent 27%
    ),
    linear-gradient(
      180deg,
      var(--red-850),
      var(--red-900)
    );
}

.promise-section-shell {
  position: relative;
  z-index: 2;
}

.promise-section-header {
  width: min(100%, 850px);
  margin: 0 auto 2.2rem;
  text-align: center;
}

.promise-kicker {
  justify-content: center;
}

.promise-main-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.98;
  text-align: center;
}

.promise-main-title-line,
.promise-main-title-highlight {
  display: block;
}

.promise-main-title-highlight {
  margin-top: 0.1em;
  color: var(--yellow-500);
  font-weight: 500;
}

.promise-main-description {
  width: min(100%, 690px);
  margin: 1rem auto 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.85;
  text-align: center;
}

.promise-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.promise-card-image,
.promise-card-overlay {
  display: none;
}

.promise-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 295px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--border-white);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(242, 201, 76, 0.075),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.076),
      rgba(255, 255, 255, 0.018)
    );
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(12px);
  transition:
    transform var(--transition-smooth),
    border-color var(--transition-smooth),
    box-shadow var(--transition-smooth),
    background var(--transition-smooth);
}

.promise-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 145px;
  height: 145px;
  border: 1px solid rgba(242, 201, 76, 0.11);
  border-radius: 50%;
}

.promise-card::after {
  content: "";
  position: absolute;
  right: 1.3rem;
  bottom: 0;
  left: 1.3rem;
  height: 2px;
  border-radius: 20px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--yellow-500),
    transparent
  );
  opacity: 0.55;
}

.promise-card:hover {
  border-color: var(--border-yellow);
  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(242, 201, 76, 0.11),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      rgba(242, 201, 76, 0.07),
      rgba(255, 255, 255, 0.028)
    );
  box-shadow:
    var(--shadow-medium),
    var(--shadow-yellow);
  transform: translateY(-7px);
}

.promise-card-featured {
  border-color: rgba(242, 201, 76, 0.24);
}

.promise-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 295px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.55rem;
}

.promise-card-top {
  position: absolute;
  top: 1.35rem;
  right: 1.35rem;
  left: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.promise-card-number {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-yellow);
  border-radius: 50%;
  background: var(--surface-yellow);
  color: var(--yellow-500);
  font-size: 0.68rem;
  font-weight: 700;
}

.promise-card-label {
  overflow: hidden;
  padding: 0.3rem 0.55rem;
  border: 1px solid rgba(242, 201, 76, 0.2);
  border-radius: 100px;
  background: rgba(38, 1, 2, 0.38);
  color: var(--yellow-300);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.promise-card h3 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.promise-card p {
  margin-top: 0.7rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  line-height: 1.72;
}

.promise-card:last-child {
  grid-column: auto;
  min-height: 295px;
}

.promise-card:last-child .promise-card-content {
  min-height: 295px;
}

.promise-card:last-child h3,
.promise-card:last-child p {
  max-width: none;
}


/* ============================================================
   11. STORY
   ============================================================ */

.story-section {
  background:
    radial-gradient(
      circle at 10% 48%,
      rgba(242, 201, 76, 0.055),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      var(--red-950),
      var(--red-850)
    );
}

.story-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.story-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  border: 1px solid var(--border-yellow);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-large);
}

.story-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 900ms ease;
}

.story-image:hover img {
  transform: scale(1.04);
}

.story-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28, 0, 1, 0.82),
    transparent 60%
  );
}

.story-image-caption {
  position: absolute;
  z-index: 2;
  right: 1.3rem;
  bottom: 1.25rem;
  left: 1.3rem;
}

.story-image-caption strong {
  display: block;
  color: var(--yellow-500);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
}

.story-image-caption span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
}

.story-content p {
  margin-top: 0.95rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.85;
}

.story-secondary-text {
  color: rgba(255, 255, 255, 0.46) !important;
}

.premium-text-link {
  position: relative;
  display: inline-flex;
  margin-top: 1.35rem;
  padding-bottom: 0.25rem;
  color: var(--yellow-500);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.premium-text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--yellow-500);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.premium-text-link:hover {
  color: var(--yellow-200);
}

.premium-text-link:hover::after {
  transform: scaleX(0.45);
}


/* ============================================================
   12. MENU CARDS
   ============================================================ */

.menu-section {
  background:
    radial-gradient(
      circle at 88% 18%,
      rgba(242, 201, 76, 0.065),
      transparent 26%
    ),
    linear-gradient(
      180deg,
      var(--red-800),
      var(--red-900)
    );
}

.home-menu-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.menu-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border-white);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.022)
  );
  box-shadow: var(--shadow-small);
  transition:
    transform var(--transition-smooth),
    border-color var(--transition-smooth),
    box-shadow var(--transition-smooth),
    background var(--transition-smooth);
}

.menu-card:hover {
  border-color: var(--border-yellow);
  background: linear-gradient(
    145deg,
    rgba(242, 201, 76, 0.07),
    rgba(255, 255, 255, 0.03)
  );
  box-shadow:
    var(--shadow-medium),
    var(--shadow-yellow);
  transform: translateY(-7px);
}

.menu-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  background: var(--red-850);
}

.menu-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 800ms ease;
}

.menu-card:hover .menu-card-img {
  transform: scale(1.06);
}

.menu-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(31, 0, 1, 0.75),
    transparent 62%
  );
}

.menu-card-badge {
  position: absolute;
  top: 0.78rem;
  left: 0.78rem;
  max-width: calc(100% - 3.5rem);
  overflow: hidden;
  padding: 0.3rem 0.58rem;
  border: 1px solid var(--border-yellow);
  border-radius: 100px;
  background: rgba(38, 1, 2, 0.82);
  color: var(--yellow-500);
  font-size: 0.53rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.menu-card-veg {
  position: absolute;
  top: 0.78rem;
  right: 0.78rem;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.94);
}

.menu-card-veg::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.menu-card-veg.veg {
  border: 1px solid #1c9b49;
}

.menu-card-veg.veg::after {
  background: #1c9b49;
}

.menu-card-veg.nonveg {
  border: 1px solid #b62b2b;
}

.menu-card-veg.nonveg::after {
  border-radius: 1px;
  background: #b62b2b;
  transform: rotate(45deg);
}

.menu-card-content {
  padding: 1.2rem 1.15rem 1.35rem;
}

.menu-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.menu-card-category {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-card-price {
  flex-shrink: 0;
  color: var(--yellow-500);
  font-family: var(--font-heading);
  font-size: 1.52rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.menu-card-price sup {
  margin-right: 1px;
  font-family: var(--font-body);
  font-size: 0.6rem;
  vertical-align: super;
}

.menu-card-name {
  margin-top: 0.72rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  font-weight: 600;
  letter-spacing: -0.028em;
  line-height: 1.12;
}

.menu-card-desc {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 0.65rem;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.8rem;
  line-height: 1.72;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}


/* ============================================================
   13. COMMON BUTTONS
   ============================================================ */

.premium-outline-button,
.franchise-button,
.franchise-brochure-button,
.contact-button,
.contact-call-button {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  border-radius: 9px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform var(--transition-base),
    background var(--transition-base),
    color var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.premium-outline-button,
.franchise-button,
.contact-button {
  border: 1px solid var(--border-yellow);
  background: var(--surface-yellow);
  color: var(--yellow-200);
}

.premium-outline-button:hover,
.franchise-button:hover,
.contact-button:hover {
  border-color: var(--yellow-500);
  background: var(--surface-yellow-hover);
  color: var(--white);
  box-shadow: var(--shadow-yellow);
  transform: translateY(-2px);
}

.franchise-brochure-button,
.contact-call-button {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.055);
  color: var(--white);
}

.franchise-brochure-button:hover,
.contact-call-button:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: var(--shadow-small);
  transform: translateY(-2px);
}


/* ============================================================
   14. GALLERY
   ============================================================ */

.gallery-section {
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(242, 201, 76, 0.055),
      transparent 25%
    ),
    linear-gradient(
      180deg,
      var(--red-950),
      var(--red-800)
    );
}

.gallery-swiper {
  position: relative;
  z-index: 2;
  padding: 0.45rem 0 2.8rem;
  overflow: visible;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(242, 201, 76, 0.17);
  border-radius: var(--radius-lg);
  background: var(--red-850);
  box-shadow: var(--shadow-small);
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 850ms ease;
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(35, 0, 1, 0.48),
    transparent 60%
  );
  opacity: 0.72;
  transition: opacity var(--transition-base);
}

.gallery-card:hover {
  border-color: var(--border-yellow);
  box-shadow: var(--shadow-yellow);
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-card:hover .gallery-card-overlay {
  opacity: 0.32;
}


/* ============================================================
   15. SWIPER
   ============================================================ */

.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  width: 7px !important;
  height: 7px !important;
  background: rgba(255, 255, 255, 0.36) !important;
  opacity: 1 !important;
  transition:
    width var(--transition-base),
    border-radius var(--transition-base),
    background var(--transition-base);
}

.swiper-pagination-bullet-active {
  width: 24px !important;
  border-radius: 20px !important;
  background: var(--yellow-500) !important;
}


/* ============================================================
   16. HEAD OFFICE
   ============================================================ */

.head-office-section {
  background:
    radial-gradient(
      circle at 90% 60%,
      rgba(242, 201, 76, 0.055),
      transparent 26%
    ),
    linear-gradient(
      180deg,
      var(--red-850),
      var(--red-950)
    );
}

.head-office-layout {
  position: relative;
  z-index: 2;
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  border: 1px solid var(--border-yellow);
  border-radius: var(--radius-xl);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.075),
    rgba(255, 255, 255, 0.022)
  );
  box-shadow: var(--shadow-medium);
}

.head-office-map {
  min-height: 410px;
  background: var(--red-850);
}

.head-office-map iframe {
  height: 100%;
  min-height: 410px;
  filter: saturate(0.75) contrast(1.05);
}

.head-office-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.7rem, 4vw, 3.2rem);
}

.office-label {
  color: var(--yellow-300);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.head-office-details h3 {
  margin-top: 0.42rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.office-information {
  margin-top: 1.4rem;
}

.office-information-row {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 1rem;
  padding-block: 0.82rem;
  border-bottom: 1px solid rgba(242, 201, 76, 0.1);
}

.office-information-row:last-child {
  border-bottom: 0;
}

.office-information-label {
  color: var(--yellow-300);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.office-information-row p,
.office-information-row a {
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.78rem;
  line-height: 1.6;
}

.office-information-row a:hover {
  color: var(--yellow-500);
}

.head-office-action {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-top: 1.8rem;
}


/* ============================================================
   17. OUTLETS
   ============================================================ */

.outlet-preview-section {
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(242, 201, 76, 0.055),
      transparent 25%
    ),
    linear-gradient(
      180deg,
      var(--red-800),
      var(--red-950)
    );
}

.outlet-preview-swiper {
  position: relative;
  z-index: 2;
  padding: 0.4rem 0 3rem;
}

.outlet-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--border-white);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.075),
    rgba(255, 255, 255, 0.022)
  );
  box-shadow: var(--shadow-small);
  transition:
    transform var(--transition-smooth),
    border-color var(--transition-smooth),
    box-shadow var(--transition-smooth);
}

.outlet-card:hover {
  border-color: var(--border-yellow);
  box-shadow:
    var(--shadow-medium),
    var(--shadow-yellow);
  transform: translateY(-6px);
}

.outlet-card-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.outlet-card-img {
  height: 100%;
  object-fit: cover;
  transition: transform 800ms ease;
}

.outlet-card:hover .outlet-card-img {
  transform: scale(1.05);
}

.outlet-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30, 0, 1, 0.75),
    transparent 65%
  );
}

.outlet-card-flagship {
  position: absolute;
  bottom: 0.72rem;
  left: 0.72rem;
  padding: 0.26rem 0.52rem;
  border: 1px solid var(--border-yellow);
  border-radius: 100px;
  background: rgba(38, 1, 2, 0.82);
  color: var(--yellow-500);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.outlet-card-body {
  padding: 1.1rem;
}

.outlet-card-area {
  color: var(--yellow-300);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.outlet-card-name {
  margin-top: 0.38rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.38rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.outlet-card-address {
  margin-top: 0.62rem;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.73rem;
  line-height: 1.68;
}

.outlet-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 0.95rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(242, 201, 76, 0.1);
}

.outlet-card-meta a,
.outlet-card-meta span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.65rem;
  font-weight: 500;
}

.outlet-card-meta a:hover {
  color: var(--yellow-500);
}

.outlet-card-actions {
  margin-top: 0.95rem;
}

.outlet-card-actions .btn {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 0.95rem;
  border: 1px solid var(--border-yellow);
  border-radius: 8px;
  background: var(--surface-yellow);
  color: var(--yellow-200);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background var(--transition-base),
    border-color var(--transition-base),
    color var(--transition-base),
    transform var(--transition-base);
}

.outlet-card-actions .btn:hover {
  border-color: var(--yellow-500);
  background: var(--surface-yellow-hover);
  color: var(--white);
  transform: translateY(-1px);
}


/* ============================================================
   18. TESTIMONIALS
   ============================================================ */

.testimonials-section {
  background:
    radial-gradient(
      circle at 82% 12%,
      rgba(242, 201, 76, 0.055),
      transparent 25%
    ),
    linear-gradient(
      180deg,
      var(--red-950),
      var(--red-800)
    );
}

.testimonials-swiper {
  position: relative;
  z-index: 2;
  padding: 0.5rem 0 3rem;
}

.testimonial-card {
  position: relative;
  display: flex;
  min-height: 280px;
  height: 100%;
  flex-direction: column;
  padding: 1.55rem;
  border: 1px solid var(--border-white);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.075),
    rgba(255, 255, 255, 0.022)
  );
  box-shadow: var(--shadow-small);
  transition:
    transform var(--transition-smooth),
    border-color var(--transition-smooth),
    box-shadow var(--transition-smooth);
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 0.5rem;
  right: 0.95rem;
  color: rgba(242, 201, 76, 0.08);
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
}

.testimonial-card:hover {
  border-color: var(--border-yellow);
  box-shadow:
    var(--shadow-medium),
    var(--shadow-yellow);
  transform: translateY(-5px);
}

.testimonial-stars {
  position: relative;
  z-index: 1;
  color: var(--yellow-500);
  font-size: 0.69rem;
  letter-spacing: 0.11em;
}

.testimonial-message {
  position: relative;
  z-index: 1;
  flex: 1;
  margin-top: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.48;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  margin-top: 1.3rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(242, 201, 76, 0.1);
}

.testimonial-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  place-items: center;
  border: 1px solid var(--border-yellow);
  border-radius: 50%;
  background: var(--surface-yellow);
  color: var(--yellow-500);
  font-size: 0.66rem;
  font-weight: 700;
}

.testimonial-name {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
}

.testimonial-category {
  margin-top: 0.1rem;
  color: var(--yellow-300);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


/* ============================================================
   19. FRANCHISE
   ============================================================ */

.franchise-section {
  background:
    radial-gradient(
      circle at 88% 30%,
      rgba(242, 201, 76, 0.08),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      var(--red-800),
      var(--red-900)
    );
}

.franchise-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border: 1px solid var(--border-yellow);
  border-radius: var(--radius-xl);
  background: var(--red-900);
  box-shadow: var(--shadow-large);
}

.franchise-card-background {
  position: absolute;
  inset: 0;
}

.franchise-card-background img {
  height: 100%;
  object-fit: cover;
}

.franchise-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(28, 0, 1, 0.98) 0%,
      rgba(28, 0, 1, 0.91) 48%,
      rgba(28, 0, 1, 0.55) 76%,
      rgba(28, 0, 1, 0.42) 100%
    );
}

.franchise-card-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      rgba(242, 201, 76, 0.022) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(242, 201, 76, 0.022) 1px,
      transparent 1px
    );
  background-size: 38px 38px;
  pointer-events: none;
}

.franchise-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 560px;
  max-width: 780px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
}

.franchise-content h2 {
  display: flex;
  flex-direction: column;
  margin-top: 0.2rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 4.8vw, 4.35rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.franchise-title-main,
.franchise-title-highlight {
  display: block;
}

.franchise-title-highlight {
  margin-top: 0.12em;
  color: var(--yellow-500);
  font-weight: 500;
}

.franchise-return-line {
  margin-top: 1rem;
  color: var(--yellow-200);
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.franchise-price-label {
  margin-top: 1.4rem;
  color: var(--yellow-300);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.franchise-price {
  display: block;
  margin-top: 0.18rem;
  color: var(--yellow-500);
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.franchise-summary {
  max-width: 620px;
  margin-top: 0.82rem;
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.75;
}

.franchise-disclaimer {
  max-width: 660px;
  margin-top: 0.68rem;
  color: var(--text-faint);
  font-size: 0.63rem;
  line-height: 1.62;
}

.franchise-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.55rem;
}


/* ============================================================
   20. CONTACT
   ============================================================ */

.contact-section {
  background:
    radial-gradient(
      circle at 12% 70%,
      rgba(242, 201, 76, 0.055),
      transparent 25%
    ),
    linear-gradient(
      180deg,
      var(--red-950),
      var(--red-850)
    );
}

.contact-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.9rem, 4vw, 3.2rem);
  border: 1px solid var(--border-yellow);
  border-radius: var(--radius-xl);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.075),
    rgba(255, 255, 255, 0.022)
  );
  box-shadow: var(--shadow-medium);
}

.contact-card-pattern {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 88% 50%,
    rgba(242, 201, 76, 0.075),
    transparent 30%
  );
  pointer-events: none;
}

.contact-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.contact-content h2 {
  margin-top: 0.2rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4.6vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
}

.contact-content > p {
  max-width: 600px;
  margin-top: 0.82rem;
  color: var(--text-muted);
  font-size: 0.83rem;
  line-height: 1.75;
}

.contact-direct-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2.6rem;
  margin-top: 1.3rem;
}

.contact-detail {
  display: flex;
  flex-direction: column;
}

.contact-detail span {
  color: var(--yellow-300);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-detail a {
  margin-top: 0.22rem;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
}

.contact-detail a:hover {
  color: var(--yellow-500);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}


/* ============================================================
   21. FOOTER
   ============================================================ */

.site-footer {
  padding-top: 3.7rem;
  background:
    radial-gradient(
      circle at 12% 10%,
      rgba(242, 201, 76, 0.045),
      transparent 23%
    ),
    var(--red-950);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.8fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding-bottom: 2.8rem;
}

.footer-logo img {
  width: 96px;
  height: 84px;
  object-fit: contain;
}

.footer-brand > p {
  max-width: 330px;
  margin-top: 0.95rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.74rem;
  line-height: 1.72;
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.1rem;
  margin-top: 1.15rem;
}

.footer-social-links a {
  color: var(--yellow-300);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition-fast);
}

.footer-social-links a:hover {
  color: var(--yellow-500);
}

.footer-share-link {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  cursor: pointer;
}

.footer-share-icon {
  flex: 0 0 auto;
  transition: transform var(--transition-fast);
}

.footer-share-link:hover .footer-share-icon {
  transform: rotate(-12deg) scale(1.08);
}

@media (max-width: 768px) {
  .footer-social-links a {
    font-size: 0.66rem;
  }

  .footer-share-link {
    gap: 0.28rem;
  }
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.52rem;
}

.footer-column h3 {
  margin-bottom: 0.34rem;
  color: var(--yellow-500);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
}

.footer-column a,
.footer-column p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.69rem;
  line-height: 1.58;
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--yellow-300);
}

.footer-contact-column p {
  max-width: 230px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.15rem;
  border-top: 1px solid rgba(242, 201, 76, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.6rem;
}


/* ============================================================
   22. LOADING AND PERFORMANCE
   ============================================================ */

img {
  background: rgba(255, 255, 255, 0.025);
}

.hero-brand-mark img,
.preloader-logo,
.footer-logo img {
  background: transparent;
}

img[src=""],
img:not([src]) {
  visibility: hidden;
}

.menu-card,
.promise-card,
.outlet-card,
.testimonial-card {
  content-visibility: auto;
  contain-intrinsic-size: 300px;
}

/* .gallery-card is intentionally excluded from content-visibility:auto —
   it lives inside a Swiper slide that is moved with CSS transforms, and
   content-visibility skipping paint/layout on those transformed-offscreen
   slides was causing the gallery carousel to glitch/blank during transitions. */
.gallery-card {
  will-change: transform;
}


/* ============================================================
   23. TABLET
   ============================================================ */

@media (max-width: 1024px) {
  :root {
    --section-space: var(--section-space-tablet);
  }

  .container {
    width: min(calc(100% - 2rem), var(--container-width));
  }

  .hero-container {
    gap: 2rem;
  }

  .hero-brand-mark {
    padding-left: clamp(0.8rem, 3vw, 2.2rem);
  }

  .hero-logo-stage {
    width: clamp(170px, 19vw, 215px);
    height: clamp(145px, 16vw, 185px);
  }

  .promise-card-content {
    padding: 1.3rem;
  }

  .promise-card-top {
    top: 1.15rem;
    right: 1.15rem;
    left: 1.15rem;
  }

  .story-layout {
    gap: 2.5rem;
  }

  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-contact-column {
    grid-column: 1 / -1;
  }
}


/* ============================================================
   24. MOBILE
   ============================================================ */

@media (max-width: 768px) {
  :root {
    --header-height: 68px;
    --news-height: 34px;
    --section-space: var(--section-space-mobile);
  }

  .container {
    width: min(calc(100% - 1.35rem), var(--container-width));
  }

  .nav-brand-space {
    display: block;
    width: 1px;
  }

  /* ===== MOBILE NAV: show all menu items in the bar, no hamburger ===== */
  .nav-brand-cluster {
    display: none;
  }

  .nav-container {
    justify-content: flex-start;
  }

  .desktop-navigation {
    display: flex;
    overflow-x: auto;
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
    gap: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .desktop-navigation::-webkit-scrollbar {
    display: none;
  }

  .nav-link {
    padding: 0.72rem 0.6rem;
    font-size: 0.64rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }

  .nav-hamburger {
    display: none;
  }

  .nav-overlay,
  .mobile-navigation {
    display: none !important;
  }

  .news-bar {
    grid-template-columns: 90px minmax(0, 1fr);
  }

  .news-bar-label {
    min-width: 90px;
    padding-inline: 0.4rem;
    font-size: 0.46rem;
    letter-spacing: 0.06em;
  }

  .news-bar-label::after {
    right: -11px;
    border-top-width: calc(var(--news-height) / 2);
    border-bottom-width: calc(var(--news-height) / 2);
    border-left-width: 11px;
  }

  .news-ticker {
    padding-left: 1rem;
  }

  .news-ticker-group {
    gap: 0.9rem;
  }

  .news-ticker-item {
    gap: 0.42rem;
  }

  .news-type {
    padding: 0.13rem 0.3rem;
    font-size: 0.36rem;
  }

  .news-title {
    font-size: 0.52rem;
  }

  .news-date {
    font-size: 0.43rem;
  }

  .section-background-number {
    top: 0.5rem;
    right: 1%;
    font-size: 7rem;
  }

  .section-header {
    margin-bottom: 1.75rem;
  }

  .section-kicker {
    margin-bottom: 0.5rem;
    font-size: 0.53rem;
  }

  .section-kicker::before,
  .section-kicker::after {
    width: 17px;
  }

  .section-title {
    font-size: clamp(1.95rem, 9vw, 2.85rem);
  }

  .section-description {
    margin-top: 0.72rem;
    font-size: 0.73rem;
    line-height: 1.68;
  }


  /* Hero remains left and right */

  .hero-section {
    min-height: auto;
  }

  .hero-container {
    min-height: auto;
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
    gap: 0.68rem;
    padding-block: 0.9rem 2.2rem;
  }

  .hero-content {
    min-width: 0;
  }

  .hero-brand-mark {
    margin-bottom: 0.05rem;
    padding-left: clamp(0.8rem, 6vw, 2rem);
  }

  .hero-logo-stage {
    width: clamp(105px, 31vw, 142px);
    height: clamp(88px, 26vw, 120px);
  }

  .hero-logo-stage::before {
    filter: blur(15px);
  }

  .hero-logo-aura-one {
    filter: blur(11px);
  }

  .hero-eyebrow {
    margin-bottom: 0.42rem;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .hero-title {
    font-size: clamp(1.75rem, 9.2vw, 2.7rem);
    line-height: 0.98;
  }

  .hero-typed-wrap {
    min-height: 1.1rem;
    margin-top: 0.56rem;
    font-size: 0.72rem;
  }

  .hero-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.4rem;
    margin-top: 0.75rem;
  }

  .platform-order-button {
    min-height: 52px;
    padding: 0.42rem 0.4rem;
    border-radius: 9px;
  }

  .platform-button-small {
    font-size: 0.5rem;
    letter-spacing: 0.03em;
  }

  .platform-order-button strong {
    font-size: 0.78rem;
  }

  .hero-store-button {
    min-height: 52px;
    padding: 0.42rem 0.35rem;
    border-radius: 9px;
    font-size: 0.56rem;
    letter-spacing: 0.03em;
  }

  .hero-quality-line {
    display: none;
  }

  .hero-media {
    min-width: 0;
    padding-bottom: 1.1rem;
  }

  .hero-slides {
    aspect-ratio: 5 / 4;
    border-radius: 16px;
  }

  .hero-image-border {
    border-radius: 16px;
  }

  .hero-slide-info {
    right: 0.55rem;
    bottom: 0.55rem;
    left: 0.55rem;
    gap: 0.3rem;
  }

  .hero-slide-info span {
    padding: 0.18rem 0.32rem;
    font-size: 0.35rem;
  }

  .hero-slide-info strong {
    max-width: 58%;
    font-size: 0.65rem;
  }

  .hero-image-label {
    top: 0.55rem;
    right: -0.3rem;
    padding: 0.3rem 0.5rem;
    font-size: 0.35rem;
  }

  .hero-dots {
    bottom: 0.2rem;
  }

  .hero-dot {
    width: 5px;
    height: 5px;
  }

  .hero-dot.active {
    width: 16px;
  }


  /* Statistics */

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

  .stat-card {
    padding: 1.1rem 0.25rem;
  }

  .stat-value {
    font-size: clamp(1.2rem, 6vw, 1.75rem);
  }

  .stat-label {
    max-width: 90px;
    margin-top: 0.32rem;
    font-size: 0.56rem;
    letter-spacing: 0.02em;
    line-height: 1.32;
  }


  /* Promise / "Our Standard" cards — stacked, content-sized (no empty space), bigger type */

  .promise-section-header {
    margin-bottom: 1.3rem;
  }

  .promise-main-title {
    font-size: clamp(1.8rem, 9vw, 2.75rem);
  }

  .promise-main-description {
    margin-top: 0.72rem;
    font-size: 0.78rem;
    line-height: 1.65;
  }

  .promise-cards-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.8rem;
  }

  .promise-card,
  .promise-card:last-child {
    min-height: 0;
    border-radius: 16px;
  }

  .promise-card-content,
  .promise-card:last-child .promise-card-content {
    min-height: 0;
    justify-content: flex-start;
    padding: 1.1rem 1.15rem 1.25rem;
  }

  .promise-card-top {
    position: static;
    margin-bottom: 0.65rem;
  }

  .promise-card-number {
    width: 36px;
    height: 36px;
    font-size: 0.7rem;
  }

  .promise-card-label {
    max-width: calc(100% - 46px);
    padding: 0.3rem 0.55rem;
    font-size: 0.58rem;
    letter-spacing: 0.05em;
  }

  .promise-card h3 {
    font-size: 1.2rem;
    line-height: 1.2;
  }

  .promise-card p {
    display: block;
    overflow: visible;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    line-height: 1.6;
  }


  /* Story */

  .story-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0.8rem;
  }

  .story-image {
    aspect-ratio: 4 / 5;
    border-radius: 16px;
  }

  .story-image-caption {
    right: 0.62rem;
    bottom: 0.62rem;
    left: 0.62rem;
  }

  .story-image-caption strong {
    font-size: 0.78rem;
  }

  .story-image-caption span {
    display: none;
  }

  .story-content .section-kicker {
    font-size: 0.43rem;
  }

  .story-content .section-kicker::before,
  .story-content .section-kicker::after {
    display: none;
  }

  .story-content .section-title {
    font-size: clamp(1.3rem, 7vw, 2rem);
  }

  .story-content p {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 0.52rem;
    font-size: 0.55rem;
    line-height: 1.52;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  .story-secondary-text {
    display: none !important;
  }

  .premium-text-link {
    margin-top: 0.7rem;
    font-size: 0.45rem;
    letter-spacing: 0.06em;
  }


  /* Menu remains 3 columns */

  .home-menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.42rem;
  }

  .menu-card {
    border-radius: 11px;
  }

  .menu-card-img-wrap {
    aspect-ratio: 5 / 4;
  }

  .menu-card-badge {
    top: 0.34rem;
    left: 0.34rem;
    max-width: calc(100% - 0.68rem);
    padding: 0.15rem 0.28rem;
    font-size: 0.31rem;
    letter-spacing: 0.02em;
  }

  .menu-card-veg {
    top: 0.34rem;
    right: 0.34rem;
    width: 14px;
    height: 14px;
  }

  .menu-card-veg::after {
    width: 4px;
    height: 4px;
  }

  .menu-card-content {
    padding: 0.62rem 0.5rem 0.7rem;
  }

  .menu-card-topline {
    gap: 0.2rem;
  }

  .menu-card-category {
    font-size: 0.34rem;
    letter-spacing: 0.02em;
  }

  .menu-card-price {
    font-size: 0.84rem;
  }

  .menu-card-price sup {
    font-size: 0.34rem;
  }

  .menu-card-name {
    display: -webkit-box;
    overflow: hidden;
    min-height: 1.72rem;
    margin-top: 0.4rem;
    font-size: 0.75rem;
    line-height: 1.12;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .menu-card-desc {
    display: none;
  }

  .section-action {
    margin-top: 1.35rem;
  }

  .premium-outline-button,
  .franchise-button,
  .franchise-brochure-button,
  .contact-button,
  .contact-call-button {
    min-height: 41px;
    padding: 0.62rem 0.95rem;
    font-size: 0.53rem;
  }


  /* Gallery */

  .gallery-swiper {
    padding-bottom: 2.35rem;
  }

  .gallery-card {
    border-radius: 14px;
  }


  /* Head office */

  .head-office-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    border-radius: 16px;
  }

  .head-office-map,
  .head-office-map iframe {
    min-height: 270px;
  }

  .head-office-details {
    padding: 0.95rem;
  }

  .office-label {
    font-size: 0.39rem;
  }

  .head-office-details h3 {
    font-size: 1.18rem;
  }

  .office-information {
    margin-top: 0.75rem;
  }

  .office-information-row {
    grid-template-columns: 60px 1fr;
    gap: 0.42rem;
    padding-block: 0.45rem;
  }

  .office-information-label {
    font-size: 0.37rem;
  }

  .office-information-row p,
  .office-information-row a {
    font-size: 0.47rem;
    line-height: 1.4;
  }

  .head-office-action {
    margin-top: 1.2rem;
  }


  /* Outlets */

  .outlet-card {
    border-radius: 15px;
  }

  .outlet-card-body {
    padding: 0.88rem;
  }

  .outlet-card-name {
    font-size: 1.12rem;
  }


  /* Testimonials */

  .testimonial-card {
    min-height: 238px;
    padding: 1.15rem;
    border-radius: 15px;
  }

  .testimonial-card::before {
    font-size: 5rem;
  }

  .testimonial-message {
    font-size: 0.92rem;
  }


  /* Franchise */

  .franchise-card {
    min-height: 470px;
    border-radius: 16px;
  }

  .franchise-card-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(28, 0, 1, 0.97) 0%,
        rgba(28, 0, 1, 0.9) 62%,
        rgba(28, 0, 1, 0.58) 100%
      );
  }

  .franchise-content {
    min-height: 470px;
    max-width: 74%;
    padding: 1.25rem;
  }

  .franchise-content h2 {
    font-size: clamp(1.55rem, 7.8vw, 2.3rem);
  }

  .franchise-return-line {
    margin-top: 0.7rem;
    font-size: 0.49rem;
    line-height: 1.45;
  }

  .franchise-price-label {
    margin-top: 0.9rem;
    font-size: 0.45rem;
  }

  .franchise-price {
    font-size: clamp(1.75rem, 8.5vw, 2.55rem);
  }

  .franchise-summary {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 0.52rem;
    font-size: 0.56rem;
    line-height: 1.5;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .franchise-disclaimer {
    font-size: 0.43rem;
    line-height: 1.45;
  }

  .franchise-actions {
    gap: 0.5rem;
    margin-top: 1rem;
  }


  /* Contact */

  .contact-card {
    padding: 1.2rem;
    border-radius: 16px;
  }

  .contact-content h2 {
    font-size: clamp(1.5rem, 7.8vw, 2.25rem);
  }

  .contact-content > p {
    font-size: 0.57rem;
    line-height: 1.5;
  }

  .contact-direct-details {
    gap: 0.7rem 0.95rem;
    margin-top: 0.75rem;
  }

  .contact-detail span {
    font-size: 0.37rem;
  }

  .contact-detail a {
    font-size: 0.49rem;
  }

  .contact-actions {
    gap: 0.5rem;
    margin-top: 1rem;
  }


  /* Footer */

  .site-footer {
    padding-top: 2.8rem;
  }

  .footer-main {
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 1.25rem;
    padding-bottom: 2rem;
  }

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

  .footer-logo img {
    width: 80px;
    height: 68px;
  }

  .footer-brand > p {
    max-width: 100%;
    font-size: 0.65rem;
  }

  .footer-column h3 {
    font-size: 0.88rem;
  }

  .footer-column a,
  .footer-column p {
    font-size: 0.57rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.32rem;
  }
}


/* ============================================================
   25. SMALL MOBILE
   ============================================================ */

@media (max-width: 480px) {
  .container {
    width: min(calc(100% - 1rem), var(--container-width));
  }

  .hero-container {
    gap: 0.48rem;
  }

  .hero-brand-mark {
    padding-left: clamp(0.75rem, 7vw, 1.7rem);
  }

  .hero-logo-stage {
    width: clamp(95px, 30vw, 125px);
    height: clamp(80px, 25vw, 105px);
  }

  .hero-title {
    font-size: clamp(1.55rem, 9vw, 2.2rem);
  }

  .platform-order-button {
    min-height: 48px;
  }

  .platform-button-small {
    font-size: 0.46rem;
  }

  .platform-order-button strong {
    font-size: 0.72rem;
  }

  .hero-store-button {
    min-height: 48px;
    font-size: 0.52rem;
  }

  .stat-card {
    padding-inline: 0.1rem;
  }

  .stat-value {
    font-size: 1.15rem;
  }

  .stat-label {
    font-size: 0.5rem;
  }

  .promise-main-title {
    font-size: 1.75rem;
  }

  .promise-cards-grid {
    gap: 0.65rem;
  }

  .promise-card,
  .promise-card:last-child,
  .promise-card-content,
  .promise-card:last-child .promise-card-content {
    min-height: 0;
  }

  .promise-card-content {
    padding: 0.9rem 0.95rem 1.05rem;
  }

  .promise-card-top {
    position: static;
    margin-bottom: 0.5rem;
  }

  .promise-card-number {
    width: 32px;
    height: 32px;
    font-size: 0.6rem;
  }

  .promise-card-label {
    max-width: calc(100% - 40px);
    padding: 0.24rem 0.42rem;
    font-size: 0.52rem;
  }

  .promise-card h3 {
    font-size: 1.05rem;
  }

  .promise-card p {
    font-size: 0.74rem;
    line-height: 1.55;
  }

  .menu-card-content {
    padding: 0.5rem 0.42rem 0.58rem;
  }

  .menu-card-name {
    font-size: 0.66rem;
  }

  .menu-card-price {
    font-size: 0.74rem;
  }

  .head-office-map,
  .head-office-map iframe {
    min-height: 232px;
  }

  .head-office-details {
    padding: 0.72rem;
  }

  .office-information-row {
    grid-template-columns: 48px 1fr;
  }

  .franchise-card {
    min-height: 430px;
  }

  .franchise-content {
    min-height: 430px;
    max-width: 80%;
    padding: 0.95rem;
  }

  .franchise-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* ============================================================
   26. VERY SMALL MOBILE
   ============================================================ */

@media (max-width: 360px) {
  .hero-eyebrow {
    display: none;
  }

  .hero-brand-mark {
    padding-left: 0.65rem;
  }

  .hero-logo-stage {
    width: 88px;
    height: 75px;
  }

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

  .hero-typed-wrap {
    font-size: 0.49rem;
  }

  .platform-order-button {
    padding-inline: 0.28rem;
  }

  .home-menu-grid {
    gap: 0.28rem;
  }

  .menu-card-category {
    display: none;
  }

  .menu-card-name {
    font-size: 0.58rem;
  }

  .promise-main-title {
    font-size: 1.55rem;
  }

  .promise-card h3 {
    font-size: 0.61rem;
  }

  .promise-card p {
    line-clamp: 4;
    -webkit-line-clamp: 4;
  }

  .story-content .section-title {
    font-size: 1.18rem;
  }

  .franchise-content {
    max-width: 86%;
  }

  .franchise-actions,
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .franchise-button,
  .franchise-brochure-button,
  .contact-button,
  .contact-call-button {
    width: 100%;
  }
}


/* ============================================================
   27. TOUCH DEVICES
   ============================================================ */

@media (hover: none) {
  .promise-card:hover,
  .menu-card:hover,
  .gallery-card:hover,
  .outlet-card:hover,
  .testimonial-card:hover {
    transform: none;
  }

  .story-image:hover img,
  .menu-card:hover .menu-card-img,
  .gallery-card:hover img,
  .outlet-card:hover .outlet-card-img {
    transform: none;
  }
}


/* ============================================================
   28. REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .news-ticker {
    animation: none;
    transform: none;
  }

  .hero-logo-stage,
  .hero-brand-mark img,
  .hero-logo-aura,
  .hero-logo-stage::before,
  .hero-logo-stage::after {
    animation: none !important;
  }
}

/* add */

/* ============================================================
   GLOBAL KBR THEME FIX
   Common background + WhatsApp floating icon for all pages
   ============================================================ */

:root {
  --kbr-page-bg:
    radial-gradient(circle at 84% 18%, rgba(242, 201, 76, 0.10), transparent 28%),
    radial-gradient(circle at 8% 86%, rgba(215, 25, 32, 0.18), transparent 34%),
    linear-gradient(135deg, var(--red-950), var(--red-850), var(--red-700));

  --kbr-section-bg:
    radial-gradient(circle at 88% 16%, rgba(242, 201, 76, 0.045), transparent 28%),
    linear-gradient(180deg, var(--red-875), var(--red-850));

  --kbr-section-bg-dark:
    radial-gradient(circle at 12% 18%, rgba(242, 201, 76, 0.045), transparent 30%),
    linear-gradient(180deg, var(--red-950), var(--red-875));
}

/* Common page background sync */
body {
  background: var(--red-950);
}

.about-page,
.gallery-page,
.locations-page,
.location-page,
.contact-page,
.menu-page,
.franchise-page {
  background: var(--red-950);
}

/* Reusable synced section backgrounds */
.kbr-bg-main {
  background: var(--kbr-page-bg);
}

.kbr-bg-section {
  background: var(--kbr-section-bg);
}

.kbr-bg-dark {
  background: var(--kbr-section-bg-dark);
}

/* ============================================================
   GLOBAL WHATSAPP FLOATING ICON
   Use same design on all pages
   ============================================================ */

.global-whatsapp-floating,
.franchise-whatsapp-floating,
.whatsapp-floating {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;

  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;

  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #1fbf5b);
  color: #ffffff;

  box-shadow:
    0 14px 35px rgba(0, 0, 0, 0.38),
    0 0 25px rgba(37, 211, 102, 0.35);

  animation: kbrWhatsappFloat 4s ease-in-out infinite;
  transition:
    transform 250ms ease,
    box-shadow 250ms ease;
}

.global-whatsapp-floating::after,
.franchise-whatsapp-floating::after,
.whatsapp-floating::after {
  content: "";
  position: absolute;
  inset: 0;

  border: 2px solid rgba(37, 211, 102, 0.5);
  border-radius: 50%;

  animation: kbrWhatsappPulse 2.2s infinite;
  pointer-events: none;
}

.global-whatsapp-floating:hover,
.franchise-whatsapp-floating:hover,
.whatsapp-floating:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.44),
    0 0 40px rgba(37, 211, 102, 0.5);
}

.global-whatsapp-floating svg,
.franchise-whatsapp-floating svg,
.whatsapp-floating svg,
.whatsapp-floating-icon {
  position: relative;
  z-index: 2;
  width: 36px;
  height: 36px;
}

/* Hide text inside icon-only button */
.global-whatsapp-floating span,
.franchise-whatsapp-floating span,
.whatsapp-floating span:not(.whatsapp-floating-ring) {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* Animations */
@keyframes kbrWhatsappFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes kbrWhatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.75;
  }

  100% {
    transform: scale(1.65);
    opacity: 0;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .global-whatsapp-floating,
  .franchise-whatsapp-floating,
  .whatsapp-floating {
    width: 58px;
    height: 58px;
    right: 14px;
    bottom: 14px;
  }

  .global-whatsapp-floating svg,
  .franchise-whatsapp-floating svg,
  .whatsapp-floating svg,
  .whatsapp-floating-icon {
    width: 29px;
    height: 29px;
  }
}

@media (max-width: 480px) {
  .global-whatsapp-floating,
  .franchise-whatsapp-floating,
  .whatsapp-floating {
    width: 54px;
    height: 54px;
    right: 12px;
    bottom: 12px;
  }

  .global-whatsapp-floating svg,
  .franchise-whatsapp-floating svg,
  .whatsapp-floating svg,
  .whatsapp-floating-icon {
    width: 27px;
    height: 27px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .global-whatsapp-floating,
  .global-whatsapp-floating::after,
  .franchise-whatsapp-floating,
  .franchise-whatsapp-floating::after,
  .whatsapp-floating,
  .whatsapp-floating::after {
    animation: none !important;
  }
}

/* ==========================================================
   HERO FINAL LOGO + NEWS FIX
   Paste at bottom of styles.css
   ========================================================== */

/* ---------- DESKTOP ---------- */
@media (min-width: 992px) {

  /* Better left content alignment */
  .hero-content {
    justify-content: center;
    align-items: flex-start;
  }

  .hero-brand-mark {
    width: 100%;
    margin-bottom: 0.75rem !important;
  }

  /* Logo balanced with content */
  .hero-logo-stage {
    width: clamp(340px, 22vw, 420px) !important;
    margin-bottom: 1rem !important;
  }

  .hero-logo-frame,
  .hero-logo-frame img,
  #hero-logo {
    display: block;
    width: 100%;
    height: auto;
  }

  /* Content starts aligned under logo */
  .hero-typed-wrap {
    margin-top: 0 !important;
    margin-bottom: 1rem !important;
    max-width: 560px;
  }

  .hero-actions {
    margin-top: 0.75rem !important;
  }
}

/* ---------- MOBILE & TABLET ---------- */
@media (max-width: 991px) {

  /* Logo larger */
  .hero-logo-stage {
    width: 280px !important;
    margin: 0 auto 1rem auto !important;
  }

  .hero-brand-mark {
    margin-bottom: 0.75rem !important;
  }
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {

  /* Medium logo */
  .hero-logo-stage {
    width: 260px !important;
  }

  /* News bar slightly bigger */
  .news-bar {
    min-height: 32px !important;
  }

  .news-bar-label,
  .news-ticker,
  .news-title,
  .news-date,
  .news-type {
    font-size: 1rem !important;
    font-weight: 400;
  }
}

/* ---------- SMALL MOBILE ---------- */
@media (max-width: 480px) {

  .hero-logo-stage {
    width: 240px !important;
  }

  .news-bar-label,
  .news-ticker,
  .news-title,
  .news-date,
  .news-type {
    font-size: 0.95rem !important;
  }
}/* ==========================================
   REMOVE HERO TITLE COMPLETELY
   ========================================== */

.hero-title,
.hero-title *,
.hero-highlight {
    display: none !important;
}

.hero-content h1 {
    display: none !important;
}
/* ==========================================================
   NEWS BAR PREMIUM SIZE - DESKTOP + MOBILE
   ========================================================== */

/* Desktop */
@media (min-width: 992px) {

  .news-bar {
    min-height: 42px !important;
  }

  .news-bar-label {
    font-size: 1.0rem !important;
    font-weight: 500;
  }

  .news-ticker,
  .news-title,
  .news-date,
  .news-type {
    font-size: 1.1rem !important;
    font-weight: 600;
    line-height: 1.4;
  }
}

/* Tablet */
@media (max-width: 991px) {

  .news-bar {
    min-height: 54px !important;
  }

  .news-bar-label,
  .news-ticker,
  .news-title,
  .news-date,
  .news-type {
    font-size: 1rem !important;
    font-weight: 600;
  }
}

/* Mobile */
@media (max-width: 768px) {

  .news-bar {
    min-height: 42px !important;
  }

  .news-bar-label,
  .news-ticker,
  .news-title,
  .news-date,
  .news-type {
    font-size: 0.85rem !important;
    font-weight: 600;
  }
}

/* Small Mobile */
@media (max-width: 480px) {

  .news-bar-label,
  .news-ticker,
  .news-title,
  .news-date,
  .news-type {
    font-size: 0.95rem !important;
  }
}

/* ==========================================================
   FINAL RESPONSIVE IMAGE + INDEX BRAND FIXES
   Image request guide:
   - Navbar logo: 140x110 px transparent WebP/PNG.
   - Navbar mini images: 96x96 px square WebP/PNG.
   - Home hero left feature: 640x640 px square WebP/PNG.
   - Hero carousel slides: 2000x1500 px WebP/PNG.
   - Home menu/gallery cards: 2000x1500 px WebP/PNG.
   ========================================================== */

/* =====================================
   NAVBAR BRAND - CLEAN PREMIUM
   ===================================== */

.nav-brand-cluster{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.nav-brand-mini-images{
  display:flex;
  align-items:center;
  gap:14px;
}

.nav-brand-mini-images img{
  display:block;
  height:72px;
  width:auto;
  object-fit:contain;
}

.made-in-india-text{
  color:#f2c94c;
  font-size:13px;
  font-weight:700;
  letter-spacing:1.5px;
  text-transform:uppercase;
  white-space:nowrap;
  line-height:1;
}

/* Tablet */
@media (max-width:968px){

  .nav-brand-mini-images{
    gap:10px;
  }

  .nav-brand-mini-images img{
    height:56px;
  }

  .made-in-india-text{
    font-size:11px;
    letter-spacing:1px;
  }
}

/* Mobile */
@media (max-width:480px){

  .nav-brand-mini-images img{
    height:46px;
  }

  .made-in-india-text{
    font-size:9px;
    letter-spacing:0.8px;
  }
}
/* ===== HERO QUICK FIX ===== */

.hero-container{
  gap: clamp(1rem, 2vw, 2rem) !important;
}

.hero-brand-mark{
  margin-bottom: -8px !important;
  padding-left: 0 !important;
}

.hero-logo-stage{
  width: clamp(230px, 22vw, 310px) !important;
  height: clamp(190px, 18vw, 260px) !important;
}

.hero-left-feature-image{
  width: min(100%, 320px) !important;
  margin: 0.2rem 0 0.5rem !important;
  border-radius: 18px !important;
}

.hero-left-feature-image img{
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

.hero-content{
  max-width: 650px !important;
}

/* Mobile */

@media (max-width:768px){

  .hero-container{
    gap: 0.8rem !important;
  }

  .hero-logo-stage{
    width: 180px !important;
    height: 150px !important;
  }

  .hero-left-feature-image{
    width: 180px !important;
    margin-bottom: 0.4rem !important;
  }
}

/* ==========================================================
   FINAL NAVBAR BRAND IMAGE SLOT
   ========================================================== */

.nav-brand-cluster {
  flex: 0 0 auto;
  min-width: 0;
}

.nav-brand-mini-images {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: clamp(0.45rem, 1.3vw, 0.9rem);
}

.nav-brand-mini-images .navbar-kpc-logo,
.nav-brand-mini-images > img:first-child {
  width: auto;
  height: clamp(48px, 5.4vw, 74px);
  max-width: min(34vw, 155px);
  object-fit: contain;
}

.nav-brand-mini-images .made-in-india-image {
  width: auto;
  height: clamp(26px, 3vw, 44px);
  max-width: min(28vw, 130px);
  object-fit: contain;
}

.nav-brand-mini-images .made-in-india-text {
  display: none !important;
}

@media (max-width: 768px) {
  .nav-container {
    gap: 0.8rem;
  }

  .nav-brand-mini-images .navbar-kpc-logo,
  .nav-brand-mini-images > img:first-child {
    height: 46px;
    max-width: 122px;
  }

  .nav-brand-mini-images .made-in-india-image {
    height: 30px;
    max-width: 96px;
  }
}

@media (max-width: 380px) {
  .nav-brand-mini-images {
    gap: 0.35rem;
  }

  .nav-brand-mini-images .navbar-kpc-logo,
  .nav-brand-mini-images > img:first-child {
    height: 40px;
    max-width: 104px;
  }

  .nav-brand-mini-images .made-in-india-image {
    height: 26px;
    max-width: 80px;
  }
}

/* ==========================================================
   FINAL 2000x1500 IMAGE FIT + NAV LOGO BALANCE
   ========================================================== */

.hero-slides,
.menu-card-img-wrap {
  aspect-ratio: 4 / 3 !important;
}

.gallery-card {
  aspect-ratio: 16 / 9 !important;
}

.hero-slide img,
.menu-card-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  background: rgba(76, 4, 6, 0.72);
}

.hero-media {
  width: min(100%, 650px);
  justify-self: end;
}

.hero-media-frame {
  width: 100%;
}

.hero-slides {
  width: 100%;
  max-height: min(68vh, 488px);
}

.nav-brand-mini-images .made-in-india-image {
  height: clamp(34px, 4.2vw, 56px) !important;
  max-width: min(32vw, 170px) !important;
}

.nav-brand-mini-images .navbar-kpc-logo,
.nav-brand-mini-images > img:first-child {
  height: clamp(46px, 5vw, 68px) !important;
  max-width: min(32vw, 145px) !important;
}

@media (max-width: 768px) {
  .hero-media {
    width: 100%;
    max-width: 520px;
    justify-self: center;
  }

  .hero-slides {
    max-height: none;
  }

  .nav-brand-mini-images {
    gap: 0.5rem !important;
  }

  .nav-brand-mini-images .navbar-kpc-logo,
  .nav-brand-mini-images > img:first-child {
    height: 42px !important;
    max-width: 104px !important;
  }

  .nav-brand-mini-images .made-in-india-image {
    height: 34px !important;
    max-width: 104px !important;
  }
}

@media (max-width: 380px) {
  .nav-brand-mini-images .navbar-kpc-logo,
  .nav-brand-mini-images > img:first-child {
    height: 38px !important;
    max-width: 92px !important;
  }

  .nav-brand-mini-images .made-in-india-image {
    height: 30px !important;
    max-width: 88px !important;
  }
}

/* =====================================
   HOME PAGE MENU IMAGE PREMIUM FIX
   ===================================== */

.home-menu-card-image,
.home-menu-card img,
.home-menu-image,
.home-menu-grid img{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    object-position:center center !important;
    display:block !important;
    background:none !important;
}

.home-menu-card-image-wrap,
.home-menu-image-wrap{
    overflow:hidden !important;
    aspect-ratio:4/3 !important;
    background:transparent !important;
}

.home-menu-card,
.home-menu-grid .menu-card{
    overflow:hidden !important;
    border-radius:20px !important;
}

.home-menu-grid img:hover{
    transform:scale(1.05);
    transition:transform .5s ease;
}

/* ============================================================
   FINAL HEADER SYSTEM (consolidated fix)
   Replaces the previously duplicated/conflicting rules for
   .top-header-banner, .site-header, .news-bar and the mobile
   menu. Single source of truth — do not add further overrides
   below this block; edit these values instead.
   ============================================================ */

:root {
  /* Desktop banner art is 2600x473 (ratio 5.499/1) -- too wide to show
     uncropped in a slim header bar without the bar becoming huge, so
     the bar stays compact (110-150px) and the image is center-cropped
     (object-fit: cover, below) to fill it edge-to-edge with no gaps
     on either side. Height still eases up slightly on wider screens
     via clamp(), capping at 150px in step with the 1400px content
     cap on .top-header-banner picture below. */
  --header-banner-height: clamp(110px, calc(100vw / 9.3), 150px);
  --header-banner-height-tablet: 110px;
  --header-banner-height-mobile: 104px;
  --header-height: 76px;
  --news-height: 38px;
  --top-offset: calc(var(--header-banner-height) + var(--header-height) + var(--news-height));
}

/* Pages without a news bar (everything except the home page) */
body.about-page,
body.menu-page,
body.gallery-page,
body.locations-page,
body.franchise-page,
body.contact-page {
  --news-height: 0px;
}

/* ---------- Top header banner ---------- */
.top-header-banner {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1210;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: var(--header-banner-height);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -40%, rgba(242, 201, 76, 0.12), transparent 40%),
    linear-gradient(180deg, #2b0103 0%, #3a0203 45%, #450406 100%);
  border-bottom: 1px solid rgba(242, 201, 76, 0.15);
  box-shadow:
    inset 0 -1px 0 rgba(255, 255, 255, 0.05),
    0 12px 30px rgba(0, 0, 0, 0.35);
}

.top-header-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 10%,
    rgba(255, 255, 255, 0.05) 48%,
    transparent 85%
  );
  pointer-events: none;
}

.top-header-banner::after {
  content: "";
  position: absolute;
  top: -130px;
  left: 50%;
  width: 700px;
  height: 260px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 201, 76, 0.1), transparent 70%);
  filter: blur(38px);
  pointer-events: none;
}

.top-header-banner img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  padding: 2px 24px 10px;
  background: transparent;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}

/* ---------- Site header / navbar ---------- */
.site-header {
  position: fixed;
  top: var(--header-banner-height);
  right: 0;
  left: 0;
  z-index: 1200;
  height: var(--header-height);
  background: linear-gradient(180deg, rgba(38, 1, 2, 0.94), rgba(22, 0, 1, 0.97));
  border-top: 1px solid rgba(242, 201, 76, 0.08);
  border-bottom: 1px solid transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: background var(--transition-base), border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.site-header.scrolled {
  border-bottom-color: rgba(242, 201, 76, 0.1);
  background: rgba(38, 1, 2, 0.98);
  box-shadow: 0 10px 34px rgba(10, 0, 0, 0.34);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-container {
  display: flex;
  height: 100%;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

/* Navbar brand (logo + Made in India mark) */
.nav-brand-cluster {
  display: flex;
  flex: 0 0 auto;
  min-width: 0;
  align-items: center;
  text-decoration: none;
}

.nav-brand-mini-images {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: clamp(0.45rem, 1.3vw, 0.9rem);
}

.nav-brand-mini-images .navbar-kpc-logo,
.nav-brand-mini-images > img:first-child {
  width: auto;
  height: clamp(46px, 5vw, 68px);
  max-width: min(32vw, 145px);
  object-fit: contain;
}

.nav-brand-mini-images .made-in-india-image {
  width: auto;
  height: clamp(26px, 3vw, 44px);
  max-width: min(28vw, 130px);
  object-fit: contain;
}

.nav-brand-mini-images .made-in-india-text {
  display: none;
}

.desktop-navigation {
  display: flex;
  margin-left: auto;
  align-items: center;
  justify-content: flex-end;
  gap: 0.15rem;
}

/* ---------- News bar ---------- */
.news-bar {
  position: fixed;
  top: calc(var(--header-banner-height) + var(--header-height));
  right: 0;
  left: 0;
  z-index: 1190;
  height: var(--news-height);
  min-height: var(--news-height);
}

/* ---------- Mobile navigation / overlay ---------- */
.nav-overlay {
  z-index: 1290;
}

.mobile-navigation {
  top: calc(var(--header-banner-height) + var(--header-height));
  z-index: 1300;
  width: min(82vw, 320px);
  height: calc(100svh - var(--header-banner-height) - var(--header-height));
  max-height: calc(100svh - var(--header-banner-height) - var(--header-height));
}

/* ---------- Page content offset ---------- */
.hero-section {
  padding-top: calc(var(--top-offset) + 0.5rem);
}

.about-page .about-hero,
.menu-page .menu-page-hero,
.gallery-page .gallery-hero,
.locations-page .locations-hero,
.franchise-page .franchise-hero,
.contact-page .contact-hero {
  padding-top: calc(var(--top-offset) + 0.35rem);
}

html {
  scroll-padding-top: var(--top-offset);
}

/* ---------- Tablet ----------
   No longer needs its own override: the base clamp() above already
   scales the banner height with viewport width, so tablet widths
   fall naturally within the 110px-150px range. ---------- */

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
  :root {
    /* Mobile banner art is 1200x320 (ratio 3.75/1); same fluid
       approach as desktop keeps it edge-to-edge at every phone width. */
    --header-banner-height: clamp(88px, calc(100vw / 3.75), 128px);
    --header-height: 62px;
    --news-height: 34px;
  }

  .nav-container {
    justify-content: flex-start;
    gap: 0.55rem;
  }

  .nav-brand-cluster {
    display: none;
  }

  .desktop-navigation {
    display: flex;
    overflow-x: auto;
    width: 100%;
    justify-content: flex-start;
    gap: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .desktop-navigation::-webkit-scrollbar {
    display: none;
  }

  .nav-link {
    padding: 0.65rem 0.55rem;
    font-size: 0.62rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  .nav-hamburger {
    display: none;
  }

  .nav-overlay,
  .mobile-navigation {
    display: none !important;
  }

  .nav-brand-mini-images {
    gap: 0.5rem;
  }

  .nav-brand-mini-images .navbar-kpc-logo,
  .nav-brand-mini-images > img:first-child {
    height: 44px;
    max-width: 110px;
  }

  .nav-brand-mini-images .made-in-india-image {
    height: 30px;
    max-width: 96px;
  }

  .news-bar {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .news-bar-label {
    min-width: 82px;
    padding-inline: 0.42rem;
    font-size: 0.62rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  .news-ticker {
    padding-left: 0.95rem;
  }

  .news-ticker-group {
    gap: 0.85rem;
    padding-right: 1.25rem;
  }

  .news-ticker-item {
    gap: 0.38rem;
  }

  .news-title,
  .news-date,
  .news-type {
    font-size: 0.68rem;
    line-height: 1.2;
  }

  .mobile-navigation {
    width: min(84vw, 280px);
  }

  .top-header-banner img {
    padding: 2px 6px 3px;
  }
}

/* ---------- Small mobile ---------- */
@media (max-width: 480px) {
  .nav-brand-mini-images {
    gap: 0.32rem;
  }

  .nav-brand-mini-images .navbar-kpc-logo,
  .nav-brand-mini-images > img:first-child {
    height: 38px;
    max-width: 92px;
  }

  .nav-brand-mini-images .made-in-india-image {
    height: 26px;
    max-width: 80px;
  }

  .news-bar {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .news-bar-label {
    min-width: 76px;
    font-size: 0.56rem;
  }

  .news-title,
  .news-date,
  .news-type {
    font-size: 0.62rem;
  }
}
/* Hide KPC logo + Made in India mark in navbar */
.nav-brand-cluster {
  display: none;
}

/* ---------- Compact navbar (fits text) ---------- */
:root {
  --header-height: 52px;
}

.nav-link {
  padding: 0.55rem 0.85rem;
}

/* ============================================================
   HERO RIGHT IMAGE — CORRECT ASPECT RATIO (1920x1005 ratio ≈ 1.91:1)
   Overrides the earlier 4/3 aspect-ratio forced on .hero-slides
   ============================================================ */

#hero-carousel .hero-slides {
  aspect-ratio: 1920 / 1005 !important;
  width: 100%;
  max-height: none !important;
}

#hero-carousel .hero-slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}

/* Laptop (your current image size ~1565x819) */
@media (max-width: 1440px) {
  #hero-carousel .hero-slides {
    aspect-ratio: 1565 / 819 !important;
  }
}

/* Tablet (~1280x670) */
@media (max-width: 1024px) {
  #hero-carousel .hero-slides {
    aspect-ratio: 1280 / 670 !important;
  }
}

/* Mobile (~768x402) */
@media (max-width: 768px) {
  #hero-carousel .hero-slides {
    aspect-ratio: 768 / 402 !important;
    border-radius: 16px;
  }
}

/* Mobile High-DPI (~1080x565) — same ratio as mobile,
   this just ensures crisp rendering, no layout change needed */
@media (max-width: 768px) and (min-resolution: 2dppx) {
  #hero-carousel .hero-slides {
    aspect-ratio: 1080 / 565 !important;
  }
}

/* ===== HIDE HERO DOTS ===== */
#hero-dots {
  display: none !important;
}

/* ===== Remove black shade from Hero image ===== */

.hero-image-overlay {
    display: none !important;
    background: transparent !important;
}

.hero-image-border {
    box-shadow: inset 0 0 0 1px rgba(242, 201, 76, 0.08) !important;
}

/* Optional: if any slide has a gradient */
.hero-slide::after,
.hero-slide::before {
    display: none !important;
}

/* ============================================================
   HERO — STACKED TOP (image) / BOTTOM (content)
   Same structure on mobile AND desktop, no left/right split.
   ============================================================ */

.hero-container {
  display: flex !important;
  flex-direction: column !important;
  min-height: auto !important;
  gap: 0.9rem !important;
  align-items: stretch !important;
  padding-block: 1.25rem 2rem !important;
}

.hero-media {
  order: -1;
  width: 100% !important;
  max-width: 100% !important;
  justify-self: unset !important;
  padding-bottom: 0 !important;
  margin: 0 !important;
}

.hero-content {
  order: 2;
  max-width: 100% !important;
  width: 100%;
}

.hero-media-frame {
  width: 100%;
}

/* Bigger, fuller hero image — full section width on every breakpoint */
#hero-carousel .hero-slides {
  width: 100% !important;
  aspect-ratio: 4 / 3 !important;
  max-height: min(62vh, 620px) !important;
}

@media (max-width: 768px) {
  #hero-carousel .hero-slides {
    aspect-ratio: 5 / 4 !important;
    max-height: none !important;
    border-radius: 16px;
  }

  .hero-container {
    gap: 0.65rem !important;
    padding-block: 0.85rem 1.6rem !important;
  }
}

@media (max-width: 768px) and (min-resolution: 2dppx) {
  #hero-carousel .hero-slides {
    aspect-ratio: 5 / 4 !important;
  }
}

.hero-dots {
  bottom: 0.55rem;
}


/* ============================================================
   "PARTNER WITH KBR CRISPY CHICKEN" (franchise) — fix odd
   half-empty mobile layout + too-small text
   ============================================================ */

@media (max-width: 768px) {
  .franchise-card-overlay {
    background: linear-gradient(
      180deg,
      rgba(28, 0, 1, 0.72) 0%,
      rgba(28, 0, 1, 0.93) 45%,
      rgba(28, 0, 1, 0.97) 100%
    ) !important;
  }

  .franchise-content {
    max-width: 100% !important;
    padding: 1.5rem 1.25rem !important;
  }

  .franchise-content h2 {
    font-size: clamp(1.7rem, 8.2vw, 2.35rem) !important;
  }

  .franchise-return-line {
    font-size: 0.74rem !important;
    line-height: 1.5 !important;
  }

  .franchise-price-label {
    font-size: 0.7rem !important;
  }

  .franchise-price {
    font-size: clamp(2.05rem, 9vw, 2.6rem) !important;
  }

  .franchise-summary {
    -webkit-line-clamp: 4 !important;
    line-clamp: 4 !important;
    font-size: 0.82rem !important;
    line-height: 1.62 !important;
  }

  .franchise-disclaimer {
    font-size: 0.64rem !important;
    line-height: 1.55 !important;
  }
}

@media (max-width: 480px) {
  .franchise-content {
    max-width: 100% !important;
  }
}

@media (max-width: 360px) {
  .franchise-content {
    max-width: 100% !important;
  }
}


/* ============================================================
   ROUND 2 FIXES — hero no-crop + bigger image, custom top-header
   background, franchise image removed. Mobile-first, desktop follows.
   ============================================================ */

/* ---------- 1. Hero image: show full image, never cropped ---------- */
/* This is the actual fix for the cutting-off problem: switch cover -> contain.
   The frame/border/radius (the "same container used on the site") stays as-is. */
#hero-carousel .hero-slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
}

/* One consistent, taller box on every breakpoint so more of the photo shows
   and nothing gets sliced off. Bigger than before. */
#hero-carousel .hero-slides {
  width: 100% !important;
  aspect-ratio: 4 / 3 !important;
  max-height: min(72vh, 700px) !important;
  background: var(--red-900) !important;
}

@media (max-width: 768px) {
  #hero-carousel .hero-slides {
    aspect-ratio: 4 / 3 !important;
    max-height: 62vh !important;
    border-radius: 18px;
  }
}

@media (max-width: 768px) and (min-resolution: 2dppx) {
  #hero-carousel .hero-slides {
    aspect-ratio: 4 / 3 !important;
  }
}

/* ---------- 2. Kill the dead gap under the image (stacked layout) ---------- */
.hero-container {
  gap: 0.6rem !important;
}

.hero-media {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.hero-media-frame {
  margin-bottom: 0 !important;
}

.hero-content {
  margin-top: 0 !important;
}

@media (max-width: 768px) {
  .hero-container {
    gap: 0.5rem !important;
    padding-block: 0.75rem 1.5rem !important;
  }
}


/* ---------- 3. Top header banner — custom CSS background design ---------- */
/* Recreates the red gradient + criss-crossing light-streak look by hand,
   so the banner image (logos) sits on top of a designed background
   instead of a flat gradient. */
.top-header-banner {
  background:
    linear-gradient(125deg, transparent 38%, rgba(255, 255, 255, 0.16) 47%, transparent 55%),
    linear-gradient(65deg, transparent 40%, rgba(255, 255, 255, 0.12) 49%, transparent 57%),
    linear-gradient(105deg, transparent 58%, rgba(255, 255, 255, 0.09) 65%, transparent 72%),
    linear-gradient(150deg, transparent 15%, rgba(255, 255, 255, 0.07) 22%, transparent 30%),
    radial-gradient(circle at 8% 100%, rgba(0, 0, 0, 0.4), transparent 55%),
    radial-gradient(circle at 96% 0%, rgba(0, 0, 0, 0.32), transparent 50%),
    linear-gradient(180deg, #c30810 0%, #e01019 42%, #cf0e16 100%) !important;
  background-blend-mode: screen, screen, screen, screen, multiply, multiply, normal;
}

.top-header-banner::before,
.top-header-banner::after {
  display: none !important;
}


/* ---------- 4. Franchise section — no image, remove it cleanly ---------- */
.franchise-card-background img {
  display: none !important;
}

.franchise-card-background {
  background:
    radial-gradient(circle at 85% 12%, rgba(242, 201, 76, 0.16), transparent 45%),
    linear-gradient(135deg, var(--red-800), var(--red-950)) !important;
}

/* A bit bigger franchise text across the board (mobile-first, desktop inherits) */
.franchise-return-line {
  font-size: 0.85rem !important;
}

.franchise-price-label {
  font-size: 0.78rem !important;
}

.franchise-summary {
  font-size: 0.88rem !important;
}

.franchise-disclaimer {
  font-size: 0.72rem !important;
}

@media (max-width: 768px) {
  .franchise-return-line {
    font-size: 0.82rem !important;
  }

  .franchise-price-label {
    font-size: 0.74rem !important;
  }

  .franchise-summary {
    font-size: 0.85rem !important;
  }

  .franchise-disclaimer {
    font-size: 0.68rem !important;
  }
}

/* ============================================================
   FINAL FIX — HERO IMAGE: correct, consistent fit
   The image is 1565 x 819 (ratio ≈ 1.911 / 1). Earlier rules in
   this file fight each other and end up forcing a 4:3 / 5:4 box,
   which stretches/crops the photo. This is the single rule that
   wins (it's last in the cascade) and locks the box to the
   photo's real ratio on every breakpoint, so it always shows
   completely and never looks squeezed or cropped.
   ============================================================ */
#hero-carousel.hero-media {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

#hero-carousel .hero-media-frame {
  width: 100% !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28) !important;
}

#hero-carousel .hero-slides {
  width: 100% !important;
  aspect-ratio: 1565 / 819 !important;
  max-height: none !important;
  height: auto !important;
  border-radius: 20px !important;
}

#hero-carousel .hero-slide {
  border-radius: 20px !important;
}

#hero-carousel .hero-slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 20px !important;
}

@media (max-width: 768px) {
  #hero-carousel .hero-slides {
    aspect-ratio: 1565 / 819 !important;
    border-radius: 16px !important;
  }

  #hero-carousel .hero-media-frame,
  #hero-carousel .hero-slide,
  #hero-carousel .hero-slide img {
    border-radius: 16px !important;
  }
}

/* Keep the box from getting oversized on very large desktop screens,
   without breaking the ratio (max-width caps it, ratio keeps height in sync) */
@media (min-width: 769px) {
  #hero-carousel.hero-media {
    max-width: 660px !important;
    margin-inline: auto !important;
    align-self: center !important;
  }

  /* Bring the text/buttons block below the image into the same
     centered column, instead of it staying left-aligned under a
     now-centered image. */
  .hero-content {
    max-width: 660px !important;
    margin-inline: auto !important;
    text-align: center !important;
  }

  .hero-brand-mark {
    margin-inline: auto !important;
  }

  .hero-actions {
    margin-inline: auto !important;
  }

  .hero-quality-line {
    justify-content: center !important;
  }
}


/* ============================================================
   FINAL FIX — TOP HEADER BANNER (desktop + mobile parity)
   The real assets are 2600x473 (desktop) and 1200x320 (mobile) —
   both far wider than tall, so showing them uncropped would force
   the bar to be 250px+ tall on desktop. Instead the bar stays a
   compact 110-150px (--header-banner-height above) and the image
   uses object-fit: cover to fill it completely, center-cropping a
   bit off the top and bottom — never the sides — so there's no
   dead space on either edge at any screen width.

   Beyond 1400px .top-header-banner picture is capped and centered
   so the crop amount doesn't keep increasing on huge monitors, and
   the surrounding background is tinted to match the artwork's own
   reds so any gutter that shows there reads as an intentional
   colored frame, not a mismatched empty strip.
   ============================================================ */
.top-header-banner {
  background: linear-gradient(180deg, #b8060e 0%, #d5101a 50%, #b8060e 100%) !important;
  border-bottom: 1px solid rgba(242, 201, 76, 0.18) !important;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3) !important;
}

.top-header-banner::before,
.top-header-banner::after {
  display: none !important;
  content: none !important;
}

.top-header-banner picture {
  display: block !important;
  width: 100% !important;
  max-width: 1400px !important;
  height: 100% !important;
  margin: 0 auto !important;
}

.top-header-banner img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
  filter: none !important;
  background: transparent !important;
}

/* ============================================================
   CLIENT HEADER ART - desktop blend, mobile full-ratio
   Desktop uses the slim background strip from the client as the
   base, then lays the main topheader artwork over it. Mobile keeps
   the topheader image at its natural 3.75:1 ratio, which already
   works well on narrow screens.
   ============================================================ */
:root {
  --header-banner-height: clamp(124px, 9.6vw, 168px);
}

.top-header-banner {
  background:
    linear-gradient(180deg, rgba(130, 0, 4, 0.08), rgba(130, 0, 4, 0.18)),
    url("../assets/images/header/top-header-background.webp") center / cover no-repeat,
    #d80710 !important;
}

.top-header-banner picture {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  max-width: none !important;
  padding-inline: clamp(18px, 5vw, 72px) !important;
}

.top-header-banner img {
  width: auto !important;
  max-width: min(100%, calc(var(--header-banner-height) * 3.75)) !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  opacity: 0.98 !important;
  filter: drop-shadow(0 6px 14px rgba(80, 0, 0, 0.28)) !important;
}

@media (max-width: 1024px) {
  :root {
    --header-banner-height: clamp(112px, 13.5vw, 138px);
  }
}

@media (max-width: 768px) {
  :root {
    --header-banner-height: clamp(88px, calc(100vw / 3.75), 118px);
  }

  .top-header-banner {
    background: #d80710 !important;
  }

  .top-header-banner picture {
    max-width: none !important;
    padding-inline: 0 !important;
  }

  .top-header-banner img {
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    opacity: 1 !important;
    filter: none !important;
  }
}

@media (max-width: 420px) {
  :root {
    --header-banner-height: calc(100vw / 3.75);
  }
}

/* ============================================================
   HERO — KBR FULL FORM CAPTION (directly under the hero image)
   Sits between the image (order: -1) and the text block
   (order: 2) since it takes flex's default order: 0 — works on
   every breakpoint without needing separate mobile/desktop rules.
   ============================================================ */
.hero-kbr-fullform {
  display: flex;
  order: 0;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin: 0.55rem 0 0;
  padding: 0;
}

.hero-kbr-fullform-code {
  font-family: var(--font-heading);
  font-size: clamp(0.82rem, 2.4vw, 0.98rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--yellow-400);
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(242, 201, 76, 0.28);
}

.hero-kbr-fullform-divider {
  width: 28px;
  height: 1px;
  flex-shrink: 0;
  background: linear-gradient(90deg, transparent, var(--yellow-500), transparent);
  opacity: 0.75;
}

.hero-kbr-fullform-name {
  font-family: var(--font-body);
  font-size: clamp(0.74rem, 2vw, 0.88rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  text-transform: uppercase;
}

@media (min-width: 769px) {
  .hero-kbr-fullform {
    max-width: 660px;
    margin: 0.65rem auto 0;
  }
}

@media (max-width: 420px) {
  .hero-kbr-fullform {
    gap: 0.45rem;
  }

  .hero-kbr-fullform-divider {
    width: 20px;
  }
}

/* Tighten desktop hero now that the header scrolls with the page. */
@media (min-width: 769px) {
  .hero-section {
    min-height: auto !important;
    padding-bottom: 1.25rem !important;
  }

  .hero-container {
    min-height: auto !important;
    padding-block: 1rem 1.25rem !important;
  }

  .hero-section + .section {
    padding-top: 2.4rem !important;
  }
}

/* ============================================================
   WEBSITE HEADER IMAGE + SCROLLING HEADER
   Desktop header art should be exported at 8.12:1 ratio.
   Recommended: 1920 x 236 px minimum, or 2560 x 315 px for a
   sharper large-screen WebP. Mobile keeps topheader.webp.
   ============================================================ */
:root {
  --header-banner-height: var(--header-banner-height-desktop, 236px);
  --top-offset: 0px;
}

.top-header-banner {
  position: relative !important;
  inset: auto !important;
  background:
    url("../assets/images/header/top-header-background.webp") center / cover no-repeat,
    #d80710 !important;
}

.site-header,
.news-bar {
  position: relative !important;
  inset: auto !important;
  top: auto !important;
  right: auto !important;
  left: auto !important;
}

.top-header-banner picture {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  padding-inline: 0 !important;
}

.top-header-banner img {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  opacity: 1 !important;
  filter: none !important;
}

.hero-section,
.about-page .about-hero,
.menu-page .menu-page-hero,
.gallery-page .gallery-hero,
.locations-page .locations-hero,
.franchise-page .franchise-hero,
.contact-page .contact-hero {
  padding-top: 0 !important;
}

.hero-container {
  min-height: auto !important;
}

@media (max-width: 1024px) {
  :root {
    --header-banner-height: var(--header-banner-height-tablet, 158px);
  }
}

@media (max-width: 768px) {
  :root {
    --header-banner-height: var(--header-banner-height-mobile, 110px);
  }
}
/* ============================================================
   TOP HEADER BANNER — DEFINITIVE FIX (perfect fit, zero cropping)
   Placed last on purpose: every rule above this point for
   .top-header-banner is an older, superseded attempt and can be
   left in place — this block wins the cascade and is now the
   single source of truth. Do not add further overrides after it;
   edit the values here instead.

   Real, measured asset ratios (do not guess these — verify with
   `identify` if the images are ever replaced):
     Desktop  websitetophead.jpg  = 8100 x 984  = 8.2317 : 1
     Mobile   topheader.webp      = 6000 x 1600 = 3.75   : 1

   The container's aspect-ratio is locked to match whichever image
   is currently visible, so its height is always mathematically
   derived from its width. That means the image can never need to
   be cropped to fill the box — width:100% + height:100% always
   lands on a box with the image's own ratio. object-fit: contain
   is kept only as a safety net for sub-pixel rounding, not to fix
   an actual mismatch.
   ============================================================ */

:root {
  --header-banner-height: calc(min(100vw, 1920px) * 984 / 8100);
  --top-offset: 0px;
}

.top-header-banner {
  position: relative !important;
  inset: auto !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  width: 100% !important;
  max-width: 1920px !important;
  margin: 0 auto !important;
  height: auto !important;
  aspect-ratio: 8100 / 984 !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(180deg, #b8060e 0%, #d5101a 50%, #b8060e 100%) !important;
}

.top-header-banner::before,
.top-header-banner::after {
  display: none !important;
  content: none !important;
}

.top-header-banner picture {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.top-header-banner img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 0 !important;
  filter: none !important;
  opacity: 1 !important;
  background: transparent !important;
}

/* Mobile: <source> in the <picture> tag swaps in topheader.webp
   (3.75:1) below 768px, so the container ratio must swap with it. */
@media (max-width: 768px) {
  :root {
    --header-banner-height: calc(100vw * 1600 / 6000);
  }

  .top-header-banner {
    max-width: 100% !important;
    aspect-ratio: 6000 / 1600 !important;
  }
}
/* ==========================================================
   REMOVE ALL BLACK IMAGE SHADES & OVERLAYS
   Paste at the bottom of styles.css
   ========================================================== */

/* Hero slider */
.hero-image-overlay,
.hero-image-border {
    display: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* Home menu cards */
.menu-card-overlay {
    display: none !important;
    background: transparent !important;
}

/* Gallery */
.gallery-card-overlay {
    display: none !important;
    background: transparent !important;
}

/* Outlet cards */
.outlet-card-image-overlay {
    display: none !important;
    background: transparent !important;
}

/* Franchise section */
.franchise-card-overlay {
    display: none !important;
    background: transparent !important;
}

/* Remove dark backgrounds behind images */
.hero-slides,
.menu-card-img-wrap,
.story-image,
.gallery-card,
.outlet-card-image-wrap,
.franchise-card-background {
    background: transparent !important;
}

/* Remove inset shadows */
.hero-image-border,
.hero-slides,
.story-image,
.gallery-card,
.outlet-card {
    box-shadow: none !important;
}

/* ==========================================================
   iPhone Safari - Updates Ticker Fix
   Paste at bottom of styles.css
   ========================================================== */

.news-bar{
    overflow: hidden !important;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.news-bar-window{
    overflow: hidden !important;
    position: relative;
}

.news-ticker{
    display: flex !important;
    width: max-content !important;
    min-width: max-content !important;

    -webkit-animation: news-scroll 30s linear infinite !important;
    animation: news-scroll 30s linear infinite !important;

    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);

    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;

    will-change: transform;
}

@-webkit-keyframes news-scroll{
    from{
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
    to{
        -webkit-transform: translate3d(-50%,0,0);
        transform: translate3d(-50%,0,0);
    }
}

@keyframes news-scroll{
    from{
        transform: translate3d(0,0,0);
    }
    to{
        transform: translate3d(-50%,0,0);
    }
}