* {
  font-family: 'Poppins', sans-serif ;
  z-index: 1;
}
:root {
  /* Color tokens */
  --maroon: #7A1F2B;
  --maroon-dark: #4E1219;
  --maroon-tint: #F4E4E1;
  --saffron: #E0932C;
  --saffron-light: #F2B558;
  --saffron-pale: #FBEAD1;
  --ink: #241611;
  --ink-soft: #4A382F;
  --cream: #FBF3E7;
  --sand: #EFE1CB;
  --sand-dark: #E2CFAB;
  --white: #FFFFFF;
  --primary-color: var(--maroon);
  --secondary-color: var(--saffron);
  --accent-color: var(--saffron);
  --dark-color: var(--ink);
  --light-color: var(--cream);
  --text-color: var(--ink);
  /* Layout */
  --container-width: 1240px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(36, 22, 17, 0.06);
  --shadow-md: 0 12px 32px rgba(36, 22, 17, 0.10);
  --shadow-lg: 0 24px 60px rgba(36, 22, 17, 0.16);
  --header-height: 84px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Poppins', sans-serif;
  --font-mono: 'Poppins', sans-serif;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
html {
  scroll-behavior: auto;
}
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
button {
  font-family: inherit;
  cursor: pointer;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 0.5em;
}

h1 {
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 600;
}
h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
}
h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
}
p {
  margin: 0 0 1em;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--maroon);
  color: var(--white);
  padding: 12px 20px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 3px solid var(--saffron);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--saffron);
  display: inline-block;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 48px;
}
.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-heading p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.section-pad {
  padding: 60px 0;
}
.section-pad-sm {
  padding: 64px 0;
}

.bg-sand {
  background: var(--sand);
}
.bg-maroon {
  background: var(--maroon);
  color: var(--cream);
}
.bg-maroon h2, .bg-maroon h3 {
  color: var(--white);
}
.bg-ink {
  background: var(--ink);
  color: var(--sand);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn i {
  transition: transform var(--transition);
  font-size: 0.85em;
}
.btn:hover i {
  transform: translateX(4px);
}
.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--maroon);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--maroon-dark);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--maroon);
  border-color: var(--maroon);
}
.btn-secondary:hover {
  background: var(--maroon);
  color: var(--white);
}

.btn-gold {
  background: var(--saffron);
  color: var(--ink);
}
.btn-gold:hover {
  background: var(--saffron-light);
  box-shadow: var(--shadow-md);
}

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}
.btn-block {
  width: 100%;
  justify-content: center;
}

/* ---------- Header / Navbar ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 18px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.site-header.is-transparent {
  background: transparent;
}
.site-header.is-scrolled,
.site-header:not(.is-transparent) {
  /* lighter navbar background for better contrast and airiness */
  background: rgba(251, 243, 231, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.site-header.is-transparent:not(.is-scrolled) .brand {
  color: var(--white);
}
.brand-mark {
  color: var(--saffron);
  display: flex;
  flex-shrink: 0;
  align-items: center;
}
.brand-mark svg {
  animation: spin-slow 40s linear infinite;
}
.brand-mark img {
  /* match the navbar height: logo fills the header token */
  height: var(--header-height);
  max-height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}
.brand-footer .brand-mark img {
  /* smaller logo for footer while preserving aspect */
  height: calc(var(--header-height) * 0.45);
  max-height: 44px;
  width: auto;
}
@media (prefers-reduced-motion: reduce) {.brand-mark svg {
  animation: none;
}}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.brand-sub {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  opacity: 0.75;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-link {
  position: relative;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 6px 2px;
}
.site-header.is-transparent:not(.is-scrolled) .nav-link {
  color: var(--white);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--saffron);
  transition: width var(--transition);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}
.nav-link.active {
  font-weight: 600;
}
.nav-caret {
  font-size: 0.6rem;
  margin-left: 4px;
  transition: transform var(--transition);
}

.has-dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.has-dropdown:hover .nav-caret {
  transform: rotate(180deg);
}
.dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--ink);
}
.dropdown-menu li a:hover {
  background: var(--saffron-pale);
  color: var(--maroon);
}

.btn-nav-cta {
  margin-left: 6px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  border-radius: 50%;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 0 auto;
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}
.site-header.is-transparent:not(.is-scrolled) .hamburger span {
  background: var(--white);
}
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(36, 22, 17, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  z-index: 400;
}
.nav-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--ink) 0%, var(--maroon-dark) 46%, var(--maroon) 100%);
  color: var(--cream);
  overflow: hidden;
  padding: calc(var(--header-height) + 24px) 0 96px;
}

.hero-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-rings svg {
  position: absolute;
  opacity: 0.16;
}
.ring-a {
  top: -120px;
  right: -140px;
  width: 520px;
  animation: spin-slow 90s linear infinite;
}
.ring-b {
  bottom: -180px;
  left: -160px;
  width: 460px;
  animation: spin-slow-reverse 110s linear infinite;
}

.hero-dust {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.dust-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--saffron);
  opacity: 0.5;
  filter: blur(0.5px);
  animation: float-particle 14s ease-in-out infinite;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-copy .eyebrow {
  color: var(--saffron-light);
   
}
.hero-copy .eyebrow::before {
  background: var(--saffron-light);
}
.hero-copy h1 {
  color: var(--white);
  font-size: 58px;
  
}
.hero-copy p.lead {
  font-size: 1.15rem;
  color: rgba(251, 243, 231, 0.82);
  max-width: 620px;
  margin-bottom: 2.2em;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-eyebrow {
  display: inline-block;
  /* background: rgb(239, 225, 203);
  padding: 4px 10px !important;
  */
  border-radius: 7px;
  color: rgb(224, 147, 44);
  font-size: 12px;
  margin: 10px;
  align-items: flex-start;
}

/* ---------------------------------Hero Digram ------------------------------------ */

.spice-dial {
  position: relative;
  width: min(420px, 100%);
  aspect-ratio: 1;
}
.spice-dial svg {
  width: 100%;
  height: 100%;
}
.spice-dial .dial-ring {
  animation: spin-slow 60s linear infinite;
  transform-origin: center;
}
.spice-chip {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  gap: 4px;
  animation: float-chip 6s ease-in-out infinite;
}
.spice-chip i {
  font-size: 1.4rem;
  color: var(--maroon);
}
.chip-turmeric {
  top: 4%;
  left: 8%;
  animation-delay: 0s;
  background: var(--saffron-pale);
}
.chip-chilli {
  top: 12%;
  right: 2%;
  animation-delay: 1.2s;
}
.chip-coriander {
  bottom: 8%;
  left: 0;
  animation-delay: 2.1s;
}
.chip-cumin {
  bottom: 0;
  right: 14%;
  animation-delay: 0.6s;
  background: var(--saffron-pale);
}

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(251, 243, 231, 0.6);
  z-index: 2;
}
.scroll-cue .line {
  width: 1px;
  height: 30px;
  background: rgba(251, 243, 231, 0.4);
  overflow: hidden;
  position: relative;
}
.scroll-cue .line::after {
  content: '';
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  background: var(--saffron-light);
  animation: scroll-drop 2.2s ease-in-out infinite;
}

/* Hide the scroll cue inside hero when not desired */
.hero .scroll-cue {
  display: none !important;
}

/* ---------- Hero: responsive ---------- */

/* Use dynamic viewport height so mobile browser chrome doesn't cause jumps */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
}

/* ----- Large tablets / small laptops ----- */
@media (max-width: 1100px) {
  .hero-inner {
    gap: 40px;
  }
  .spice-dial {
    width: min(360px, 100%);
  }
}

/* ----- Tablets: stack copy above visual ----- */
@media (max-width: 900px) {
  .hero {
    padding: calc(var(--header-height) + 40px) 0 72px;
    text-align: center;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-copy p.lead {
    margin-left: auto;
    margin-right: auto;

  }
  .hero-actions {
    justify-content: center;
  }
  .hero-visual {
    order: 2;
  }
  .spice-dial {
    width: min(340px, 80vw);
  }
}

/* ----- Phones ----- */
@media (max-width: 600px) {
  .hero {
    padding: calc(var(--header-height) + 24px) 0 56px;
    text-align: left !important;
  }
  .hero-inner {
    gap: 36px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .spice-dial {
    width: min(300px, 82vw);
  }
  .spice-chip {
    width: 76px;
    height: 76px;
    font-size: 0.55rem;
    gap: 2px;
  }
  .spice-chip i {
    font-size: 1.15rem;
  }
  .ring-a {
    width: 360px;
    top: -100px;
    right: -160px;
  }
  .ring-b {
    width: 320px;
    bottom: -140px;
    left: -140px;
  }
  .hero-copy h1 {
  color: var(--white);
  font-size: 34px;
  
}
.hero-copy p.lead {
    
    font-size: 12px;
    
  }
}

/* ----- Small phones ----- */
@media (max-width: 380px) {
  .spice-dial {
    width: min(260px, 80vw);
  }
  .spice-chip {
    width: 64px;
    height: 64px;
    font-size: 0.5rem;
  }
  .spice-chip i {
    font-size: 1rem;
  }
  .hero-eyebrow {
    font-size: 10px;
   
  }
  .hero-copy h1 {
  color: var(--white);
  font-size: 30px;
  max-width: 620px;
  
}
.hero-copy p.lead {
    
    font-size: 12px;
    max-width: 520px;
    
  }
}

/* ----- Landscape phones (short viewport height) ----- */
@media (max-height: 480px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 20px) 0 40px;
  }
  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    text-align: left;
  }
  .hero-copy p.lead {
    margin-left: 0;
    font-size: 12px !important;
  }
  .hero-actions {
    justify-content: flex-start;
  }
  .spice-dial {
    width: min(220px, 40vw);
  }
  .hero-copy h1 {
  color: var(--white);
  font-size: 34px;
  
}
.hero-copy p.lead {
    
    font-size: 12px;
    
  }
}

/* ----------------- Every - Page hero (inner pages) ----------------------------------------------------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-height) + 96px) 0 96px;
  background: linear-gradient(150deg, var(--ink) 0%, var(--maroon-dark) 55%, var(--maroon) 100%);
  color: var(--cream);
  overflow: hidden;
  text-align: center;
}
.page-hero .hero-rings svg {
  opacity: 0.12;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.4em;
}
.page-hero p {
  color: rgba(251,243,231,0.82);
  font-size: 12px;
  max-width: 620px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(251,243,231,0.6);
  margin-bottom: 22px;
}
.breadcrumb a {
  color: var(--saffron-light);
}
.breadcrumb span::before {
  content: '/';
  margin: 0 8px;
  opacity: 0.6;
}
.breadcrumb span:first-child::before {
  content: none;
}

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

.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 50px 60px;
  border-radius: var(--radius-lg);
  background: linear-gradient(
        135deg,
var(--maroon) 0%,
var(--maroon-dark) 100%
    );
  color: var(--white);
  text-align: center;
}

/* Decorative Circles
--------------------------------------------------------- */

.cta-banner::before,
.cta-banner::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner::before {
  width: 300px;
  height: 100px !important;
  top: -140px;
  left: -100px;
}

.cta-banner::after {
  width: 220px;
  height: 220px;
  right: -60px;
  bottom: -120px;
}

/* CTA Heading
--------------------------------------------------------- */

.cta-banner h2 {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto 16px;
  color: var(--white);
  font-family: "Poppins", sans-serif !important;
  font-size: 32px !important;
  font-weight: 600;
  line-height: 1.2;
}

/* CTA Paragraph
--------------------------------------------------------- */

.cta-banner p {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto 28px;
  color: rgba(251, 243, 231, 0.85);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}

/* CTA Buttons
--------------------------------------------------------- */

.cta-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------Footer ------------------------------ */

.site-footer {
  background: var(--ink);
  color: var(--sand);
  padding-top: 70px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 44px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(251,243,231,0.1);
}
.brand-footer {
  color: var(--sand);
  margin-bottom: 16px;
}
.brand-footer .brand-mark {
  color: var(--saffron);
}
.footer-tagline {
  color: rgba(239,225,203,0.7);
  font-size: 0.92rem;
  max-width: 280px;
}
.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(251,243,231,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sand);
  font-size: 0.85rem;
  transition: background var(--transition), border-color var(--transition);
}
.social-icon:hover {
  background: var(--saffron);
  color: var(--ink);
  border-color: var(--saffron);
}
.footer-heading {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: rgba(239,225,203,0.75);
  font-size: 0.92rem;
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--saffron-light);
}
.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: rgba(239,225,203,0.8);
}
.footer-contact i {
  color: var(--saffron-light);
  margin-top: 3px;
}
.footer-contact a {
  color: rgba(239,225,203,0.8);
}
.footer-contact a:hover {
  color: var(--saffron-light);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(239,225,203,0.6);
  flex-wrap: wrap;
  gap: 10px;
}

/* ------------------------------------- Back to top ------------------------ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition), background var(--transition);
  z-index: 300;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--maroon-dark);
}

/* ---------- Misc reusable ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.pill-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--saffron-pale);
  color: var(--maroon);
  text-transform: uppercase;
}



/* ============ RESPONSIVE: Footer ============ */
@media (max-width: 768px) {
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px ;
    padding-bottom: 40px;
    justify-content: center;
     margin: 5px;
    
  }
  
  /* .footer-tagline {
    max-width: 100%;
  } */
  .footer-heading {
    font-size: 16px;
    margin-bottom: 20px;
  }
 
   
     .brand-footer .brand-mark img {
        max-width: 190px;
        height: auto;
    }
    .footer-signoff{
      display: none;
    }
    .footer-bottom p{
      margin: 0 auto;
      
    }
    
}



/* Mobile */
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .footer-col.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-tagline {
    margin-left: auto;
    margin-right: auto;
  }
  .social-icons {
    justify-content: center;
  }
  .footer-links li {
    margin-bottom: 10px;
  }
  .footer-contact li {
    text-align: left;
    justify-content: center;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 6px;
    padding: 20px 0;
  }
  .footer-bottom p{
      margin: 0 auto;
      padding: 10px;
      font-weight: 800;
    }
}

/* Small mobile */
@media (max-width: 380px) {
  .brand-footer .brand-mark img {
    max-width: 140px;
    height: auto;
  }
  .social-icon {
    width: 34px;
    height: 34px;
    font-size: 0.78rem;
  }
  .footer-contact li {
    font-size: 0.85rem;
  }
  .footer-bottom-inner {
    font-size: 0.78rem;
  }
  .footer-bottom p{
      margin: 0 auto;
      padding: 10px;
      font-weight: 800;
    }
}

