/* =============================================
   GLOBAL RESET & FOUNDATION
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #d62828;
  --red-dark:  #b01e1e;
  --dark:      #111111;
  --dark2:     #1a1a1a;
  --bg:        #ffffff;
  --text:      #333333;
  --text-light:#666666;
  --grey:      #f5f5f5;
  --border:    #eeeeee;
  --shadow:    0 4px 24px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --radius:    4px;
  --radius-md: 10px;
  --font:      "Poppins", Sans-serif;
  --transition:0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  border: 2px solid var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(214,40,40,0.3);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-outline:hover {
  background: var(--red);
  color: #fff;
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header {
  text-align: center;
  /* max-width: 620px; */
  margin: 0 auto 52px;
}
.section-eyebrow {
  display: inline-block;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font);
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 14px;
}
.section-desc {
  font-family: var(--font);
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

   /* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
  padding: 10px 0;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  max-width: 220px;
  width: 100%;
}

.logo-img {
  width: 30%;
  max-width: 180px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* NAV */
.nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
}

.nav-link {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  color: #333333;
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

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

.chevron {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  transition: transform 0.25s ease;
  transform: rotate(0deg);
}

.has-dropdown:hover > .nav-link .chevron {
  transform: rotate(180deg);
}

.nav-cta {
  background: var(--red);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-size: 14px;
}

.nav-cta:hover {
  background: var(--red-dark);
  color: #fff;
}

/* DROPDOWN */
.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 40px rgba(0,0,0,0.13);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 200;
  overflow: hidden;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  padding: 11px 20px;
  transition: all var(--transition);
}

.dropdown li a:hover {
  background: #fdf1f1;
  color: var(--red);
  padding-left: 26px;
}

/* BRANDS DROPDOWN */
.dropdown-brands {
  min-width: 460px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 8px 0;
}

.dropdown-brands li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
}

.dropdown-brands li a:hover {
  background: #fdf1f1;
  padding-left: 16px;
}

.dd-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 6px;
  border: 1px solid var(--border);
  flex-shrink: 0;
  background: #fff;
  padding: 3px;
}

.dropdown-brands li a span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dropdown-brands li a span strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
}

.dropdown-brands li a span small {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.3;
  font-weight: 400;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* =============================================
   RESPONSIVE HEADER
   ============================================= */
@media (max-width: 1100px) {
  .nav-link {
    font-size: 14px;
    padding: 10px 10px;
  }

  .dropdown-brands {
    min-width: 380px;
  }
}

@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    padding: 10px 0 20px;
    z-index: 999;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    margin-left: 0;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-list > li {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 14px 24px;
    border-radius: 0;
    font-size: 15px;
  }

  .nav-cta {
    margin: 10px 24px 0;
    text-align: center;
    justify-content: center;
    border-radius: var(--radius);
  }

  .dropdown {
    position: static;
    top: auto;
    left: auto;
    min-width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: #f7f7f7;
    display: none;
    border-radius: 0;
    padding: 4px 0;
  }

  .has-dropdown.open .dropdown {
    display: block;
  }

  .has-dropdown.open > .nav-link .chevron {
    transform: rotate(180deg);
  }

  .dropdown li a {
    padding: 12px 34px;
    font-size: 14px;
  }

  .dropdown li a:hover {
    padding-left: 34px;
  }

  .dropdown-brands {
    grid-template-columns: 1fr;
    min-width: 100%;
    padding: 6px 0;
  }

  .dropdown-brands li a {
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .header-inner {
    min-height: 64px;
    gap: 12px;
  }

  .logo-img {
    width:30%;
  }

  .nav {
    top: 64px;
    max-height: calc(100vh - 64px);
  }

  .nav-link {
    padding: 13px 18px;
  }

  .nav-cta {
    margin: 10px 18px 0;
  }

  .dropdown li a {
    padding: 11px 28px;
  }

  .dd-logo {
    width: 38px;
    height: 38px;
  }

  .dropdown-brands li a span strong {
    font-size: 12px;
  }

  .dropdown-brands li a span small {
    font-size: 10px;
  }
}

/* =============================================
   HERO SLIDER — DRAGGABLE & CENTERED
============================================= */

/* =============================================
   HERO SLIDER — DRAGGABLE, CENTERED & ZOOM ANIM
============================================= */

/* =============================================
   HERO — CROSSFADE (no sliding)
============================================= */
.hero {
  position: relative;
  top: 55px;
  height: 100vh;
  overflow: hidden;
  background: #1a1a1a;
  text-align: center;
}

.slides-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

p.slide-sub {
    background: #0000004a;
}

h1.slide-heading.long {
    background: #0000004a;
    width: fit-content;
    justify-content: center;
    display: inline-block;
    /* text-align: center; */
}

@media (max-width: 768px) {
  .hero { height: 100vh; }
}

/* SLIDE BASE */
.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

/* Assign background images dynamically via JS (--slide-bg CSS variable) */
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--slide-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1);
  animation: none;
  will-change: transform;
}

.slide.active::before {
  animation: bgZoom 10s ease-in-out forwards;
}

/* Hero dot indicators */
.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.hero-dot.active {
  background: #ffffff;
  transform: scale(1.35);
}

@keyframes bgZoom {
  0%   { transform: scale(1); }
  100% { transform: translate3d(0, -30px, 0) scale(1.18); }
}

/* OVERLAY */
.slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* background: rgba(0,0,0,0.35); */
}

/* CENTERED CONTENT */
.slide-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.slide.active .slide-content {
  opacity: 1;
  transform: translateY(0);
}

/* TEXT STYLES — unchanged */
.slide-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d62828;
  background: rgba(214,40,40,0.15);
  border: 1px solid rgba(214,40,40,0.4);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.slide-heading {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.slide-heading.long { font-size: 36px; }

.slide-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .slide-heading      { font-size: 28px; }
  .slide-heading.long { font-size: 24px; }
  .slide-sub          { font-size: 14px; }
}

/* =============================================
   TEXT STYLES
============================================= */

.slide-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d62828;
  background: rgba(214, 40, 40, 0.15);
  border: 1px solid rgba(214, 40, 40, 0.4);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.slide-heading {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.slide-heading.long {
  font-size: 36px;
}

.slide-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}

/* Mobile typography */
@media (max-width: 768px) {
  .slide-heading {
    font-size: 28px;
  }
  .slide-heading.long {
    font-size: 24px;
  }
  .slide-sub {
    font-size: 14px;
  }
}

/* =============================================
   INTRO STRIP
   ============================================= */
.intro-strip {
  background: var(--dark);
  padding: 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.intro-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background var(--transition);
}
.intro-item:last-child { border-right: none; }
.intro-item:hover { background: rgba(214,40,40,0.1); }
.intro-icon {
  font-size: 28px;
  flex-shrink: 0;
  line-height: 1;
}
.intro-item strong {
  display: block;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.intro-item span {
  font-family: var(--font);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* =============================================
   ABOUT TEASER
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-visual {
  position: relative;
  height: 480px;
}
.about-img-main {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: var(--radius-md);
}
/* Remove old accent/badge elements (kept for safety, just hidden) */
.about-img-accent  { display: none; }
.about-badge-float { display: none; }
.about-copy .section-eyebrow { margin-bottom: 8px; }
.about-copy .section-title { text-align: left; font-size: 30px; margin-bottom: 20px; }
.about-copy p {
  font-family: var(--font);
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.75;
}
.about-copy em { color: var(--red); font-style: normal; font-weight: 600; }
.about-copy .btn { margin-top: 8px; }

/* =============================================
   BRANDS SECTION
   ============================================= */
.brands-section { background: var(--grey); }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.brand-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.brand-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-md);
}
.brand-logo-wrap {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.brand-logo-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
/* Brand image gradient placeholders */
.b1 { background: linear-gradient(135deg, #8B1A1A, #CC3300); }
.b2 { background: linear-gradient(135deg, #1a3d1a, #2d6b2d); }
.b3 { background: linear-gradient(135deg, #8b1a3d, #cc2255); }
.b4 { background: linear-gradient(135deg, #1a1a5c, #2a2a8b); }
.b5 { background: linear-gradient(135deg, #3d2a0a, #6b4a14); }
.b6 { background: linear-gradient(135deg, #5c1a1a, #a02020); }

.brand-info {
  padding: 22px 24px 26px;
}
.brand-info h3 {
  font-family: var(--font);
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.brand-info p {
  font-family: var(--font);
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 14px;
}
.brand-link {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.02em;
  transition: letter-spacing var(--transition);
}
.brand-link:hover { letter-spacing: 0.06em; }

.brands-cta {
  text-align: center;
  margin-top: 44px;
}

/* =============================================
   QUOTE BAND — Parallax Version
   ============================================= */
.quote-band {
  position: relative;
  padding: 100px 0;
  background-image: url('../images/Brand-bg.jpg'); /* 🔁 Replace with your image path */
  background-attachment: fixed;        /* ← This creates the parallax effect */
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

/* Dark overlay so text stays readable */
.quote-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  z-index: 0;
}

/* Lift content above the overlay */
.quote-band .container {
  position: relative;
  z-index: 1;
}

.quote-band blockquote {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 300;
  color: #fff;
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
}

.quote-text{
    font-weight: 500;
}

.quote-mark {
  font-size: 56px;
  line-height: 0.6;
  vertical-align: -0.28em;
  margin-right: 6px;
  opacity: 0.5;
  font-family: Georgia, serif;
}

.quote-band cite {
  display: block;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-style: normal;
}

/* =============================================
   HORIZONTAL CONTENT SLIDER (MEALS)
   ============================================= */
.content-slider-section { background: var(--bg); }
.hscroll-outer {
  position: relative;
  overflow: hidden;
  padding: 0 0 24px;
  margin-top: 16px;
}
.hscroll-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 12px 24px 24px;
  scrollbar-width: none;
}
.hscroll-track::-webkit-scrollbar { display: none; }

.meal-card {
  flex: 0 0 340px;
  /* background: #fff; */
  border-radius: var(--radius-md);
  /* box-shadow: var(--shadow); */
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform var(--transition), box-shadow var(--transition);
}
.meal-card:hover {
  transform: translateY(-4px);
  /* box-shadow: var(--shadow-md); */
}
.meal-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.mi1 { background: linear-gradient(135deg, #5c2a0a, #8b4a1a); }
.mi2 { background: linear-gradient(135deg, #3d0a0a, #8b1a1a); }
.mi3 { background: linear-gradient(135deg, #0a1a3d, #1a3d6b); }
.mi4 { background: linear-gradient(135deg, #5c1a0a, #a03010); }
.mi5 { background: linear-gradient(135deg, #5c0a3d, #a01a6b); }
.mi6 { background: linear-gradient(135deg, #3d2a0a, #6b4a14); }

.meal-body {
  padding: 20px 22px 24px;
}
.meal-tag {
  display: inline-block;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(214,40,40,0.08);
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 10px;
}
.meal-body h4 {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.35;
}
.meal-body p {
  font-family: var(--font);
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Scroll Buttons */
.hscroll-btn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font);
  font-size: 24px;
  border-radius: 50%;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.hscroll-btn:hover { background: var(--red); color: #fff; border-color: var(--red); }
.hscroll-left  { left: 12px; }
.hscroll-right { right: 12px; }

/* =============================================
   CTA BANNER
   ============================================= */

.cta-banner {
  position: relative;
  padding: 80px 0;
  background-image: url('../images/Flame-cover.jpg'); /* 🔁 Replace with your image path */
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  overflow: hidden;
}

/* Dark overlay (replaces the old SVG pattern overlay) */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: #00000036;
  z-index: 1;
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-inner h2 {
  font-family: var(--font);
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
}

/* Mobile fallback — iOS Safari doesn't support fixed attachment */
@media (max-width: 768px) {
  .cta-banner {
    background-attachment: scroll;
  }
}

/* =============================================
   NEWS SECTION
   ============================================= */
.news-section { background: var(--grey); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.news-img {
  height: 200px;
  position: relative;
  background-size: cover;
  background-position: center;
}
.ni1 { background: linear-gradient(135deg, #3d1a0a, #6b2a14); }
.ni2 { background: linear-gradient(135deg, #0a2a3d, #145c8b); }
.ni3 { background: linear-gradient(135deg, #1a3d0a, #2d6b14); }

.news-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  padding: 4px 12px;
  border-radius: 2px;
}
.news-body {
  padding: 22px 24px 26px;
}
.news-date {
  display: block;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.news-body h4 {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.45;
  margin-bottom: 10px;
}
.news-body p {
  font-family: var(--font);
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 16px;
}
.read-more {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  transition: letter-spacing var(--transition);
}
.read-more:hover { letter-spacing: 0.04em; }

.news-cta {
  text-align: center;
  margin-top: 44px;
}

/* =============================================
   NEWSLETTER
   ============================================= */
.newsletter-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.newsletter-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.nl-copy { flex: 1; text-align: center; }
.nl-copy h3 {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.nl-copy p {
  font-family: var(--font);
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}
.nl-form {
  display: flex;
  gap: 12px;
  flex: 1.4;
}

@media (min-width: 768px)   {
    .nl-form {
        width: 45%;
    }
}
.nl-input {
  flex: 1;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 18px;
  outline: none;
  transition: border-color var(--transition);
  background: #fff;
}
.nl-input::placeholder { color: #aaa; }
.nl-input:focus { border-color: var(--red); }

/* =============================================
   FOOTER
   ============================================= */

   /* =============================================
   FOOTER
   ============================================= */
.footer {
  position: relative;
  background: url("../images/footer-bg.jpg") center center / cover no-repeat;
  padding-top: 54px;
  color: #fff;
  overflow: hidden;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: #000;
  z-index: 1;
}

.footer-inner,
.footer-bottom {
  position: relative;
  z-index: 2;
}

.footer-top-line {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.35);
  margin-bottom: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 34px;
}

.footer-col h4 {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 22px;
  line-height: 1.2;
}

.footer-logo {
  margin-bottom: 28px;
}

.footer-logo-img {
  width: 150px;
  max-width: 100%;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 1px;
}

.footer-links li a {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-links li a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #c83737;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.social-btn:hover {
  background: #a92525;
  transform: translateY(-2px);
}

.footer-bottom {
  background: #b92d2f;
  padding: 18px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom span {
  font-family: var(--font);
  font-size: 13px;
  color: #ffffff;
  line-height: 1.5;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-legal a {
  position: relative;
  font-family: var(--font);
  font-size: 13px;
  color: #ffffff;
  line-height: 1.5;
}

.footer-legal a:not(:last-child)::after {
  content: "|";
  margin-left: 14px;
  color: rgba(255,255,255,0.9);
}

.footer-legal a:hover {
  text-decoration: underline;
}

/* =============================================
   RESPONSIVE FOOTER
   ============================================= */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 34px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding-top: 40px;
  }

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

  .footer-col h4 {
    font-size: 17px;
    margin-bottom: 16px;
  }

  .footer-links li {
    margin-bottom: 10px;
  }

  .footer-links li a {
    font-size: 14px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-logo-img {
    width: 130px;
  }

  .social-btn {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .footer-bottom {
    padding: 14px 0;
  }

  .footer-bottom span,
  .footer-legal a {
    font-size: 12px;
  }

  .footer-legal {
    gap: 10px;
  }

  .footer-legal a:not(:last-child)::after {
    margin-left: 10px;
  }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .about-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-grid   { grid-template-columns: repeat(2, 1fr); }
  .about-grid   { grid-template-columns: 1fr; }
  .about-visual { height: 320px; }
  .about-copy .section-title { font-size: 24px; }
  .news-grid    { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    padding: 12px 0 20px;
    z-index: 999;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 93%;
}
  .nav-link {
    padding: 12px 24px;
    border-radius: 0;
    font-size: 15px;
  }
  .nav-cta {
    margin: 8px 24px 0;
    text-align: center;
    border-radius: var(--radius);
  }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--grey);
    display: none;
    border-radius: 0;
  }
  .has-dropdown.open .dropdown { display: block; }
  .has-dropdown.open .chevron  { transform: rotate(180deg); }

  .hero { height: 380px; }
  .slide-heading { font-size: 28px; }
  .slide-sub     { font-size: 14px; }
  .slide-badge   { font-size: 11px; }
  .slide-prev { left: 12px; }
  .slide-next { right: 12px; }

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

  .about-grid { grid-template-columns: 1fr; }
  .about-visual { height: 300px; }

  .brands-grid  { grid-template-columns: repeat(2, 1fr); }
  .news-grid    { grid-template-columns: 1fr; }

  .newsletter-inner { flex-direction: column; gap: 24px; }
  .nl-form { flex-direction: column; }

  .cta-inner h2 { font-size: 22px; }

  .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }

  .meal-card { flex: 0 0 280px; }

  .section-pad { padding: 56px 0; margin-top: 20px;}
  .section-title { font-size: 24px; }
}

@media (max-width: 480px) {
  .brands-grid { grid-template-columns: 1fr; }
  .intro-grid  { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { height: 300px; }
  .slide-heading { font-size: 22px; }
  .slide-actions { flex-direction: column; gap: 10px; }
  .btn { font-size: 13px; padding: 10px 20px; }
}

/* =============================================
   SLIDER PROGRESS BAR (auto-injected by JS)
   ============================================= */
.slide-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.2);
  z-index: 20;
}
.slide-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--red);
  border-radius: 0 2px 2px 0;
}

/* =============================================
   BRANDS DROPDOWN — logo + name + description
   ============================================= */
.dropdown-brands {
  min-width: 530px;
  /* display: grid; */
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 8px 0;
}
.dropdown-brands li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
}
.dropdown-brands li a:hover {
  background: #fdf1f1;
  padding-left: 16px;
}
.dd-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 6px;
  border: 1px solid var(--border);
  flex-shrink: 0;
  background: #fff;
  padding: 3px;
}
.dropdown-brands li a span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dropdown-brands li a span strong {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
}
.dropdown-brands li a span small {
  font-family: var(--font);
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.3;
  font-weight: 400;
}

/* =============================================
   BRAND CARDS — real logo images
   ============================================= */
.brand-logo-wrap {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 20px;
}
.brand-logo-real {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
  display: block;
}

.brand-info{
  text-align: center;
}
/* Override old gradient brand classes */
.b1, .b2, .b3, .b4, .b5, .b6 { background: #fff !important; }

/* =============================================
   CRAFTED SECTION — 2 col: copy left, 4 images right
   ============================================= */
.crafted-section { background: #fff; }
.crafted-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.crafted-copy {
  max-width: 480px;
}
.crafted-title {
  font-family: var(--font);
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 20px;
}
.crafted-copy p {
  font-family: var(--font);
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 28px;
}
.crafted-images {
  width: 100%;
}
.crafted-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 220px;
  gap: 14px;
}
.ci-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.ci-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.ci-item:hover img { transform: scale(1.04); }

/* =============================================
   BRAND LOGO SLIDER
   ============================================= */
.brand-logo-slider-section {
  background: var(--grey);
  padding: 40px 0 32px;
  overflow: hidden;
}
.bls-track-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}
.bls-viewport {
  overflow: hidden;
  flex: 1;
}
.bls-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.bls-item {
  flex: 0 0 calc((100% - 100px) / 6);
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 16px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.bls-item:hover {
  border-color: var(--red);
  box-shadow: 0 4px 16px rgba(214,40,40,0.12);
  transform: translateY(-2px);
}
.bls-item img {
  max-width: 100%;
  max-height: 68px;
  object-fit: contain;
  display: block;
}
.bls-arrow {
  position: absolute;
  z-index: 5;
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font);
  font-size: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.bls-arrow:hover { background: var(--red); color: #fff; border-color: var(--red); }
.bls-prev { left: 12px; }
.bls-next { right: 12px; }
.bls-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 18px;
  padding: 0 60px;
}
.bls-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.bls-dot.active {
  background: var(--red);
  width: 22px;
  border-radius: 4px;
}

/* Responsive crafted + brand logo slider */
@media (max-width: 900px) {
  .crafted-grid { grid-template-columns: 1fr; gap: 36px; }
  .crafted-copy { max-width: 100%; }
  .crafted-img-grid { grid-template-rows: 180px 160px; }
  .dropdown-brands { grid-template-columns: 1fr; min-width: 280px; }
}
@media (max-width: 768px) {
  .crafted-img-grid { grid-template-rows: 150px 140px; gap: 10px; }
  .bls-item { flex: 0 0 calc((100% - 40px) / 3); }
}
@media (max-width: 480px) {
  .crafted-img-grid { grid-template-rows: 130px 120px; }
  .bls-item { flex: 0 0 calc((100% - 20px) / 2); }
  .bls-track-wrap { padding: 0 44px; }
}


/* ===============================
   INQUIRY MODALS
================================ */

.inq-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.inq-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.inq-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 92%;
  max-width: 520px;
  background: #fff;
  padding: 32px;
  border-radius: 14px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.inq-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.inq-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 26px;
  border: none;
  background: none;
  cursor: pointer;
}

.inq-divider {
  width: 50px;
  height: 3px;
  background: var(--red);
  margin: 10px 0 22px;
}

.inq-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.inq-row input,
.inq-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.inq-send {
  width: 100%;
  margin-top: 10px;
  padding: 12px;
  border-radius: 6px;
  border: none;
  background: var(--red);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.inq-success {
  display: none;
  margin-top: 14px;
  text-align: center;
  color: #1a7a3d;
  font-weight: 600;
}