:root {
  --gold: #C9963A;
  --gold-light: #E8C06A;
  --gold-dark: #9A6F1E;
  --cream: #FAF5EB;
  --cream-dark: #F2E8D0;
  --brown: #4A2C0A;
  --brown-mid: #7B4A1A;
  --brown-light: #A0622A;
  --saffron: #E07B2A;
  --dark: #1A0E04;
  --text-body: #3D2B10;
  --white: #FFFFFF;
  --red-brand: #B22222;
}

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

html, body {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

body {
  font-family: "Nunito Sans", sans-serif;
  background: var(--cream);
  color: var(--text-body);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Cinzel", serif;
  letter-spacing: 0.04em;
}

p,
li {
  font-family: "Nunito Sans", sans-serif;
  line-height: 1.85;
}

.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 1.5rem;
}

.gold-line-left {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 1.5rem;
}

.section-label {
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem;
}

/* NAVBAR */
#mainNav {
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
  padding: 0.6rem 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

#mainNav.scrolled {
  background: rgba(26, 14, 4, 0.97);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
  padding: 0.4rem 0;
}

.navbar-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  transition: height 0.4s;
}

#mainNav.scrolled .navbar-logo {
  height: 46px;
}

.navbar-brand-name {
  font-family: "Cinzel", serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.navbar-brand-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-style: italic;
}

.nav-link {
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.85) !important;
  padding: 0.5rem 1rem !important;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-link:hover {
  color: var(--gold-light) !important;
}

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

.navbar-toggler {
  border-color: var(--gold);
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* ── MOBILE NAVBAR ── */
@media (max-width: 991.98px) {
  #mainNav {
    background: rgba(26, 14, 4, 0.97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  }

  .navbar-collapse {
    background: rgba(26, 14, 4, 0.99);
    border-top: 1px solid rgba(201, 150, 58, 0.3);
    margin-top: 0.5rem;
    padding: 0.75rem 0.5rem 1rem;
    border-radius: 0 0 4px 4px;
  }

  .navbar-nav {
    gap: 0 !important;
  }

  .nav-link {
    padding: 0.75rem 1.25rem !important;
    border-bottom: 1px solid rgba(201, 150, 58, 0.1);
    font-size: 0.75rem !important;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .navbar-brand {
    gap: 0.5rem !important;
    flex: 1 1 0;
    min-width: 0;
    margin-right: 0.5rem;
  }

  .navbar-brand > div {
    min-width: 0;
  }

  .navbar-brand-name {
    font-size: clamp(0.68rem, 3.5vw, 0.85rem);
    white-space: normal;
    line-height: 1.25;
  }

  .navbar-brand-sub {
    letter-spacing: 0.15em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .navbar-logo {
    height: 38px;
    width: auto;
    flex-shrink: 0;
  }
}

/* HERO */
#hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(26, 14, 4, 0.50) 0%, rgba(74, 44, 10, 0.55) 45%, rgba(26, 14, 4, 0.88) 100%),
    url("./assets/hero-bg-2.webp") center/cover no-repeat;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 55% at 50% 55%, rgba(201, 150, 58, 0.22) 0%, transparent 70%);
}

.hero-frame {
  position: absolute;
  top: 5.5rem;
  left: 2rem;
  right: 2rem;
  bottom: 1.5rem;
  border: 1px solid rgba(201, 150, 58, 0.25);
  pointer-events: none;
}

.hero-frame::before,
.hero-frame::after {
  content: "";
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  border-color: var(--gold);
  border-style: solid;
}

.hero-frame::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}

.hero-frame::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 1.5rem;
  animation: heroFadeUp 1.2s ease both;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-logo-wrap {
  animation: heroFadeUp 1.2s 0.1s ease both;
  margin-bottom: 1.2rem;
}

.hero-logo {
  height: 140px;
  width: auto;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.6));
}

.hero-eyebrow {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  letter-spacing: 0.4em;
  color: var(--gold-light);
  font-style: italic;
  margin-bottom: 0.8rem;
  animation: heroFadeUp 1.2s 0.25s ease both;
  display: block;
}

.hero-title {
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
  animation: heroFadeUp 1.2s 0.4s ease both;
}

.hero-title span {
  color: var(--gold-light);
}

.hero-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1rem, 2.2vw, 1.45rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  margin: 1rem 0 2rem;
  animation: heroFadeUp 1.2s 0.55s ease both;
}

.hero-sub em {
  color: var(--gold-light);
  font-style: italic;
}

.hero-cta {
  animation: heroFadeUp 1.2s 0.7s ease both;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.8rem;
  animation: heroFadeUp 1.2s 0.85s ease both;
}

.hero-badge {
  background: rgba(201, 150, 58, 0.18);
  border: 1px solid rgba(201, 150, 58, 0.4);
  color: var(--gold-light);
  font-family: "Cinzel", serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  padding: 0.4rem 1rem;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--dark);
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.9rem 2.4rem;
  border: none;
  border-radius: 0;
  font-weight: 600;
  box-shadow: 0 6px 25px rgba(201, 150, 58, 0.4);
  transition: all 0.35s;
  text-decoration: none;
  display: inline-block;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(201, 150, 58, 0.55);
  color: var(--dark);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-light);
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.9rem 2.4rem;
  border: 1.5px solid var(--gold);
  border-radius: 0;
  font-weight: 600;
  transition: all 0.35s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline-gold:hover {
  background: rgba(201, 150, 58, 0.15);
  transform: translateY(-3px);
  color: var(--gold-light);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

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

.hero-scroll span {
  display: block;
  font-family: "Cinzel", serif;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.hero-scroll i {
  font-size: 1.2rem;
  color: var(--gold);
}

/* STATS STRIP */
.stats-strip {
  background: linear-gradient(90deg, var(--brown) 0%, var(--gold-dark) 50%, var(--brown) 100%);
  padding: 2.5rem 0;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: "Cinzel", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
}

.stat-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: rgba(250, 245, 235, 0.8);
  font-style: italic;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(201, 150, 58, 0.35);
  margin: 0 auto;
}

/* ABOUT */
#about {
  padding: 7rem 0;
  background: var(--cream);
}

.about-img-wrap {
  position: relative;
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  transition: transform 0.7s;
}

.about-img-wrap:hover img {
  transform: scale(1.04);
}

.about-img-badge {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark);
  padding: 1.2rem 1.6rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.about-img-badge .big {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  font-weight: 700;
  display: block;
}

.about-img-badge .small {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
}

.about-border {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}

/* SIGNATURE */
#signature {
  padding: 7rem 0;
  background: var(--cream-dark);
}

.sig-card {
  background: var(--white);
  box-shadow: 0 20px 60px rgba(74, 44, 10, 0.15);
  overflow: hidden;
  position: relative;
}

.sig-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--saffron));
}

.sig-img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.sig-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark);
  font-family: "Cinzel", serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  padding: 0.4rem 1.2rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.sig-body {
  padding: 2.5rem;
}

.sig-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1.2;
}

.ingredient-pill {
  display: inline-block;
  background: rgba(201, 150, 58, 0.12);
  border: 1px solid rgba(201, 150, 58, 0.35);
  color: var(--brown-mid);
  font-size: 0.72rem;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin: 0.2rem;
  letter-spacing: 0.05em;
}

/* PRODUCT CATEGORIES */
#categories {
  padding: 7rem 0;
  background: var(--cream);
}

.cat-card-link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.cat-card {
  background: var(--white);
  border: 1px solid rgba(201, 150, 58, 0.2);
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
  cursor: pointer;
  height: 100%;
}

.cat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(74, 44, 10, 0.18);
  border-color: var(--gold);
}

.cat-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}

.cat-card:hover .cat-img {
  transform: scale(1.08);
}

.cat-body {
  padding: 1.6rem 1.5rem;
}

.cat-title {
  font-family: "Cinzel", serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 0.5rem;
}

.cat-desc {
  font-size: 0.85rem;
  color: #7B5A2D;
  line-height: 1.7;
}

.cat-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "Cinzel", serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 1rem;
  transition: gap 0.3s;
}

.cat-card:hover .cat-arrow {
  gap: 0.8rem;
}

/* MENU */
#menu {
  background: linear-gradient(160deg, #0D0600 0%, #1A0E04 40%, #2A1506 70%, #0D0600 100%);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

#menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 20% 30%, rgba(201, 150, 58, 0.07) 0%, transparent 60%), radial-gradient(ellipse 50% 60% at 80% 70%, rgba(201, 150, 58, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.menu-frame {
  position: absolute;
  top: 3rem;
  left: 2rem;
  right: 2rem;
  bottom: 3rem;
  border: 1px solid rgba(201, 150, 58, 0.12);
  pointer-events: none;
}

.menu-frame::before,
.menu-frame::after {
  content: "";
  position: absolute;
  width: 3rem;
  height: 3rem;
  border-color: rgba(201, 150, 58, 0.5);
  border-style: solid;
}

.menu-frame::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}

.menu-frame::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
}

.menu-category-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark);
  font-family: "Cinzel", serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 0.5rem 1.4rem;
  margin-bottom: 1.4rem;
}

.menu-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 150, 58, 0.18);
  border-top: 3px solid var(--gold-dark);
  padding: 2rem 1.8rem;
  height: 100%;
  position: relative;
  backdrop-filter: blur(4px);
  transition: border-color 0.3s, background 0.3s;
}

.menu-panel:hover {
  border-color: var(--gold);
  background: rgba(201, 150, 58, 0.05);
}

.menu-panel-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(201, 150, 58, 0.2);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.menu-panel-title i {
  font-size: 0.45rem;
}

.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px dashed rgba(201, 150, 58, 0.1);
  transition: transform 0.2s;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item:hover {
  transform: translateX(4px);
}

.menu-item-name {
  font-family: "Nunito Sans", sans-serif;
  font-size: 0.92rem;
  color: rgba(250, 245, 235, 0.88);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.menu-item-name::before {
  content: "\25C6";
  font-size: 0.4rem;
  color: var(--gold);
  flex-shrink: 0;
}

.menu-item-price {
  font-family: "Cinzel", serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-light);
  background: rgba(201, 150, 58, 0.12);
  border: 1px solid rgba(201, 150, 58, 0.25);
  padding: 0.2rem 0.7rem;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 0.5rem;
}

.menu-item-featured {
  background: linear-gradient(90deg, rgba(201, 150, 58, 0.15), rgba(201, 150, 58, 0.05));
  border-left: 3px solid var(--gold);
  border-bottom: none;
  padding-left: 0.8rem;
}

.menu-item-featured .menu-item-name {
  color: var(--gold-light);
  font-weight: 700;
}

.menu-item-featured .menu-item-price {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark);
  border-color: transparent;
}

.menu-ornament-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem 0;
}

.menu-ornament-rule::before,
.menu-ornament-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 150, 58, 0.4), transparent);
}

.menu-ornament-rule span {
  font-family: "Cormorant Garamond", serif;
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 0.5em;
  flex-shrink: 0;
}

.menu-note {
  background: rgba(201, 150, 58, 0.08);
  border: 1px solid rgba(201, 150, 58, 0.25);
  border-left: 4px solid var(--gold);
  padding: 1rem 1.4rem;
  margin-top: 3rem;
  color: rgba(250, 245, 235, 0.7);
  font-size: 0.82rem;
  line-height: 1.8;
}

.menu-note strong {
  color: var(--gold-light);
}

.section-heading-light {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--gold-light);
}

.section-heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--brown);
}

/* WHY */
#why {
  background: linear-gradient(135deg, var(--dark) 0%, var(--brown) 100%);
  padding: 7rem 0;
}

.why-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(201, 150, 58, 0.12);
  border: 1.5px solid rgba(201, 150, 58, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 2rem;
  color: var(--gold);
  transition: background 0.35s, transform 0.35s;
}

.why-card:hover .why-icon-wrap {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark);
  transform: scale(1.1);
}

.why-card-title {
  font-family: "Cinzel", serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}

.why-card p {
  font-size: 0.85rem;
  color: rgba(250, 245, 235, 0.75);
}

/* TESTIMONIALS */
#testimonials {
  padding: 7rem 0;
  background: var(--cream-dark);
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark);
  padding: 0.8rem 1.6rem;
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 8px 25px rgba(201, 150, 58, 0.4);
}

.testi-card {
  background: var(--white);
  border: 1px solid rgba(201, 150, 58, 0.2);
  padding: 2.2rem;
  position: relative;
  height: 100%;
}

.testi-card::before {
  content: "\201C";
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 6rem;
  line-height: 1;
  color: rgba(201, 150, 58, 0.12);
  pointer-events: none;
}

.testi-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.testi-text {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 1.2rem;
  font-style: italic;
}

.testi-name {
  font-family: "Cinzel", serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brown);
}

.testi-loc {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

/* LOCATIONS */
#locations {
  background: linear-gradient(135deg, var(--dark) 0%, var(--brown) 100%);
  padding: 7rem 0;
}

.store-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(201, 150, 58, 0.3);
  backdrop-filter: blur(6px);
  padding: 2.5rem;
  height: 100%;
  transition: border-color 0.35s, background 0.35s;
}

.store-card:hover {
  border-color: var(--gold);
  background: rgba(201, 150, 58, 0.08);
}

.store-label {
  font-family: "Cinzel", serif;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.store-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}

.store-info {
  font-size: 0.88rem;
  color: rgba(250, 245, 235, 0.8);
  line-height: 1.9;
}

.store-info i {
  color: var(--gold);
  width: 1.2rem;
}

.map-embed {
  width: 100%;
  height: 200px;
  border: none;
  filter: sepia(30%) saturate(0.8);
  margin-top: 1.5rem;
}

/* ORDER */
#order {
  padding: 7rem 0;
  background: var(--cream);
}

.order-platform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--white);
  border: 1.5px solid rgba(201, 150, 58, 0.3);
  padding: 1.4rem 2.5rem;
  font-family: "Cinzel", serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--brown);
  text-decoration: none;
  transition: all 0.35s;
  text-transform: uppercase;
}

.order-platform:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(201, 150, 58, 0.35);
  border-color: transparent;
}

.order-platform .platform-icon {
  font-size: 1.8rem;
}

/* FOOTER */
footer {
  background: var(--dark);
  color: rgba(250, 245, 235, 0.7);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(201, 150, 58, 0.2);
}

.footer-brand {
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
}

.footer-brand-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  font-style: italic;
}

.footer-heading {
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer-logo {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

footer a {
  color: rgba(250, 245, 235, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}

footer a:hover {
  color: var(--gold-light);
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 150, 58, 0.35);
  color: var(--gold) !important;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--dark) !important;
  border-color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(201, 150, 58, 0.12);
  padding-top: 1.5rem;
  margin-top: 3rem;
  font-size: 0.78rem;
  color: rgba(250, 245, 235, 0.4);
}

.ornament {
  font-family: "Cormorant Garamond", serif;
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.5em;
  display: block;
  margin-bottom: 0.5rem;
}

.float-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25D366;
  color: white !important;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  z-index: 999;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
  text-decoration: none;
  transition: transform 0.3s;
}

.float-wa:hover {
  transform: scale(1.1);
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-35px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: none;
}

.reveal-right {
  opacity: 0;
  transform: translateX(35px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: none;
}

.stagger>* {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger.visible>*:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0s
}

.stagger.visible>*:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.12s
}

.stagger.visible>*:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.24s
}

.stagger.visible>*:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 0.36s
}

.stagger.visible>*:nth-child(5) {
  opacity: 1;
  transform: none;
  transition-delay: 0.48s
}

.stagger.visible>*:nth-child(6) {
  opacity: 1;
  transform: none;
  transition-delay: 0.60s
}

@media(max-width:768px) {
  .about-img-badge {
    right: 0;
  }

  #hero {
    height: auto;
    min-height: 100vh;
    padding: 7rem 0 5rem;
  }

  .hero-logo {
    height: 100px;
  }
}

/* ============================================================
   CLASSES CONVERTED FROM INLINE STYLES
   ============================================================ */

/* ABOUT SECTION */
.about-main-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-quote {
  font-style: italic;
  color: var(--brown-mid);
}

.about-feature-box {
  padding: 1.2rem;
  background: var(--cream-dark);
  border-left: 3px solid var(--gold);
}

.about-feature-title {
  font-family: Cinzel, serif;
  font-size: 0.8rem;
}

.about-feature-text {
  font-size: 0.8rem;
  margin: 0.3rem 0 0;
  color: #7B5A2D;
}

.about-icon-saffron {
  color: var(--saffron);
}

.about-icon-gold {
  color: var(--gold);
}

/* SIGNATURE SECTION */
.section-intro-text {
  max-width: 540px;
  color: var(--brown-mid);
}

.sig-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  color: var(--gold-dark);
  font-style: italic;
  margin-bottom: 1.2rem;
}

.sig-quote {
  font-style: italic;
  color: var(--brown-mid);
}

.sig-also-available {
  font-family: Cinzel, serif;
  font-size: 0.75rem;
  color: var(--brown-mid);
  letter-spacing: 0.1em;
}

/* CATEGORIES SECTION */
.section-intro-narrow {
  max-width: 520px;
  margin: 0 auto;
  color: var(--brown-mid);
}

.cat-img-wrap {
  overflow: hidden;
}

/* ALSO AVAILABLE */
.also-available-label {
  text-align: center;
  font-family: Cinzel, serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.also-available-item {
  padding: 1rem;
  border: 1px solid rgba(201, 150, 58, 0.25);
}

.also-available-icon {
  font-size: 1.4rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.4rem;
}

.also-available-name {
  font-family: Cinzel, serif;
  font-size: 0.72rem;
  color: var(--brown);
}

/* MENU SECTION */
.menu-container {
  z-index: 2;
}

.menu-intro-text {
  color: rgba(250, 245, 235, 0.65);
  max-width: 520px;
  margin: 0 auto;
}

.menu-panel--premium {
  border-top-color: #9A6F1E;
}

.menu-category-tab--premium {
  background: linear-gradient(135deg, #7B4A1A, var(--gold-dark));
}

.menu-panel--namkeen {
  border-top-color: var(--saffron);
}

.menu-category-tab--namkeen {
  background: linear-gradient(135deg, #7B4A1A, var(--saffron));
}

/* ORDER SECTION */
.order-info-text {
  font-size: 0.85rem;
  color: var(--brown-mid);
}

.icon-gold {
  color: var(--gold);
}

.order-phone-link {
  color: var(--gold-dark);
  font-weight: 600;
}

/* TESTIMONIALS */
.rating-badge-sub {
  font-weight: 400;
  font-size: 0.8rem;
  margin-left: 0.5rem;
  letter-spacing: 0.1em;
}

/* LOCATIONS */
.locations-intro-text {
  color: rgba(250, 245, 235, 0.7);
  max-width: 500px;
  margin: 0 auto;
}

/* FRANCHISE SECTION */
.section-franchise {
  padding: 7rem 0;
  background: var(--cream-dark);
}

.section-intro-wide {
  max-width: 580px;
  margin: 0 auto;
  color: var(--brown-mid);
}

.franchise-benefit-card {
  background: var(--white);
  border: 1px solid rgba(201, 150, 58, 0.2);
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.franchise-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(74, 44, 10, 0.15);
  border-color: var(--gold);
}

.franchise-benefit-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: rgba(201, 150, 58, 0.1);
  border: 1.5px solid rgba(201, 150, 58, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  font-size: 1.7rem;
  color: var(--gold);
}

.franchise-benefit-title {
  font-family: Cinzel, serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 0.5rem;
}

.franchise-benefit-text {
  font-size: 0.82rem;
  color: #7B5A2D;
  margin: 0;
}

.franchise-enquiry-card {
  background: linear-gradient(135deg, var(--dark) 0%, var(--brown) 100%);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
}

.franchise-enquiry-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--saffron));
}

.franchise-enquiry-ornament {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(201, 150, 58, 0.08);
  pointer-events: none;
}

.franchise-enquiry-label {
  font-family: Cinzel, serif;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.6rem;
}

.franchise-enquiry-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.franchise-enquiry-desc {
  color: rgba(250, 245, 235, 0.75);
  font-size: 0.9rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.franchise-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.franchise-stat-label {
  font-family: Cinzel, serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.franchise-stat-value {
  font-family: Cinzel, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
}

.franchise-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(201, 150, 58, 0.25);
}

.franchise-contact-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 150, 58, 0.25);
  padding: 2rem;
}

.franchise-contact-heading {
  font-family: Cinzel, serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.franchise-contact-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.franchise-contact-row--last {
  margin-bottom: 1.5rem;
}

.franchise-contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(201, 150, 58, 0.15);
  border: 1px solid rgba(201, 150, 58, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.franchise-contact-label {
  font-size: 0.72rem;
  color: rgba(250, 245, 235, 0.5);
  letter-spacing: 0.1em;
}

.franchise-contact-link {
  font-family: Cinzel, serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-light);
  text-decoration: none;
}

.franchise-contact-link--sm {
  font-size: 0.85rem;
}

.btn-gold--full {
  width: 100%;
  text-align: center;
  display: block;
}

.btn-gold--sm {
  font-size: 0.65rem;
  padding: 0.7rem 1.6rem;
}

/* FOOTER */
.footer-about-text {
  font-size: 0.85rem;
  line-height: 1.9;
  max-width: 280px;
}

.footer-outlet-text {
  font-size: 0.82rem;
  line-height: 1.9;
}

.footer-outlet-text--mt {
  margin-top: 1rem;
}

.footer-outlet-name {
  color: var(--gold-light);
}

.footer-contact-text {
  font-size: 0.85rem;
  line-height: 1.9;
}

.footer-contact-text--mt {
  margin-top: 0.8rem;
}