/* ============================================================
   CHIYASAGAR — style.css
   Organised: Reset → Tokens → Base → Layout →
              Nav → Sidebar → Hero → Sections →
              Components → Pages → Footer → Responsive
   ============================================================ */

/* ══════════════════════════════════════════════════════════
   1. RESET & BOX MODEL
══════════════════════════════════════════════════════════ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ══════════════════════════════════════════════════════════
   2. DESIGN TOKENS
══════════════════════════════════════════════════════════ */
:root {
  /* Colours */
  --brown-dark: #1a0f08;
  --brown-mid: #3d1f0d;
  --brown: #7b3f00;
  --amber: #c97c3a;
  --amber-light: #e8a85f;
  --cream: #f5f0e8;
  --cream-dark: #ede5d8;
  --white: #ffffff;
  --text: #1a0f08;
  --text-light: #6b5744;

  /* Feature section tokens */
  --feat-bg: #f5efe6;
  --feat-card: #fdfaf6;
  --feat-amber: #b77838;
  --feat-amber2: #d4956a;

  /* Typography */
  --font-display: "Bebas Neue", sans-serif;
  --font-serif: "Cormorant Garamond", serif;
  --font-playfair: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", sans-serif;

  /* Layout */
  --nav-h: 72px;
  --section-px: 80px;
  --section-py: 100px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: 0.35s var(--ease);
}

/* ══════════════════════════════════════════════════════════
   3. BASE
══════════════════════════════════════════════════════════ */
html {
  scroll-behavior: smooth;
}

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

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

a {
  text-decoration: none;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--cream-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--amber);
  border-radius: 2px;
}

/* ══════════════════════════════════════════════════════════
   4. TYPOGRAPHY UTILITIES
══════════════════════════════════════════════════════════ */
.section-label {
  display: block;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.section-label.light {
  color: var(--amber-light);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  text-align: center;
  margin-bottom: 48px;
}
.section-title em {
  font-style: italic;
  color: var(--amber);
}
.section-title.light {
  color: var(--white);
}
.section-title.light em {
  color: var(--amber-light);
}

/* ══════════════════════════════════════════════════════════
   5. BUTTONS
══════════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-block;
  background: var(--amber);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  transition:
    background var(--t),
    transform var(--t),
    box-shadow var(--t);
}
.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 124, 58, 0.4);
}
.btn-primary.sm {
  padding: 10px 20px;
  font-size: 11px;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  transition:
    border-color var(--t),
    color var(--t);
}
.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber);
}

/* ══════════════════════════════════════════════════════════
   6. LAYOUT HELPERS
══════════════════════════════════════════════════════════ */
.section {
  padding: var(--section-py) var(--section-px);
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

.page-wrapper {
  margin-top: var(--nav-h);
}

.page {
  display: block;
}
.page.hidden {
  display: none;
}

/* ══════════════════════════════════════════════════════════
   7. TOP NAV
══════════════════════════════════════════════════════════ */
.topnav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 900;
  background: rgba(26, 15, 8, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 124, 58, 0.2);
  transition: background var(--t);
}
.topnav.scrolled {
  background: rgba(26, 15, 8, 0.97);
}

.nav-logo {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.nav-logo img {
  height: 70px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color var(--t);
  position: relative;
  padding-bottom: 4px;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--amber);
  transition: width var(--t);
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-menu-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
  transition:
    background var(--t),
    color var(--t);
}
.nav-menu-btn:hover {
  background: rgba(201, 124, 58, 0.2);
  color: var(--amber-light);
}

/* ══════════════════════════════════════════════════════════
   8. SIDEBAR
══════════════════════════════════════════════════════════ */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(4px);
  transition: opacity var(--t);
}
.sidebar-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 360px;
  height: 100%;
  background: var(--cream);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: 32px;
  transition: right 0.5s var(--ease);
  overflow-y: auto;
}
.sidebar.open {
  right: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-circle {
  width: 48px;
  height: 48px;
  border: 2px solid var(--brown);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 500;
  color: var(--brown);
  text-align: center;
  line-height: 1.2;
}
.sidebar-logo span {
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 600;
  color: var(--brown-dark);
  text-transform: uppercase;
}

.sidebar-close {
  background: none;
  border: 1.5px solid var(--text-light);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--text-light);
  font-size: 14px;
  transition:
    background var(--t),
    color var(--t),
    border-color var(--t);
}
.sidebar-close:hover {
  background: var(--brown-dark);
  color: white;
  border-color: var(--brown-dark);
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.sidebar-link {
  display: block;
  color: var(--text-light);
  font-size: 28px;
  font-family: var(--font-serif);
  font-weight: 300;
  padding: 10px 0;
  transition:
    color var(--t),
    padding-left var(--t);
  position: relative;
}
.sidebar-link::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: var(--amber);
  border-radius: 2px;
  transition: height var(--t);
}
.sidebar-link:hover,
.sidebar-link.active {
  color: var(--brown-dark);
  padding-left: 12px;
}
.sidebar-link:hover::before,
.sidebar-link.active::before {
  height: 60%;
}

.sidebar-socials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 32px 0 24px;
}
.soc-link {
  color: var(--text-light);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: color var(--t);
}
.soc-link:hover {
  color: var(--amber);
}

.sidebar-contact-info {
  border-top: 1px solid var(--cream-dark);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sidebar-contact-info span {
  font-size: 13px;
  color: var(--text-light);
}

/* ══════════════════════════════════════════════════════════
   9. HERO
══════════════════════════════════════════════════════════ */
.hero {
  height: calc(100vh - var(--nav-h));
  min-height: 620px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26, 15, 8, 0.82) 40%,
    rgba(26, 15, 8, 0.3) 100%
  );
}

/* Content block */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 40px;
  max-width: 100%;
  animation: fadeSlideUp 1s ease-out 0.3s both;
}
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-logo-wrap {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-logo-img {
  max-height: 130px;
  max-width: 320px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.5));
}
.hero-logo-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-brand-text {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--white);
}
.hero-brand-text strong {
  font-weight: 700;
  color: var(--amber-light);
}

.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 3.5vw, 36px);
  color: var(--amber-light);
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-weight: 600;
}
.hero-desc-text {
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}

/* Social float */
.hero-social-float {
  position: absolute;
  right: 32px;
  top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 20;
}
.hsf-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 14px;
  border-radius: 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  color: #fff;
}
.hsf-fb {
  background: #1877f2;
}
.hsf-fb:hover {
  background: #0d6ef0;
  transform: translateX(-4px);
  box-shadow: 0 8px 28px rgba(24, 119, 242, 0.45);
}
.hsf-wa {
  background: #25d366;
}
.hsf-wa:hover {
  background: #1ebe5d;
  transform: translateX(-4px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

/* Hero cards */
.hero-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 900px;
  margin-top: 30px;
}
.hero-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  backdrop-filter: blur(14px);
  cursor: pointer;
  text-align: left;
  color: var(--white);
  font-family: var(--font-body);
  min-width: 180px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
}
.hero-card:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(201, 124, 58, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}
.hcard-accent {
  background: rgba(201, 124, 58, 0.25);
  border-color: rgba(201, 124, 58, 0.55);
}
.hcard-accent:hover {
  background: rgba(201, 124, 58, 0.4);
  border-color: var(--amber);
  box-shadow: 0 12px 36px rgba(201, 124, 58, 0.3);
}
.hcard-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
}
.hero-card:hover .hcard-icon {
  background: rgba(255, 255, 255, 0.25);
}
.hcard-accent .hcard-icon {
  background: rgba(201, 124, 58, 0.3);
}
.hcard-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}
.hcard-text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.hcard-text span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
}
.hcard-arrow {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}
.hero-card:hover .hcard-arrow {
  color: var(--amber-light);
  transform: translate(2px, -2px);
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  z-index: 10;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.5)
  );
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

/* ══════════════════════════════════════════════════════════
   10. SUB-PAGE HERO
══════════════════════════════════════════════════════════ */
.page-hero {
  height: 340px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 96px);
  color: var(--white);
  position: relative;
  z-index: 2;
  letter-spacing: 4px;
}

/* ══════════════════════════════════════════════════════════
   11. BESTSELLERS CAROUSEL
══════════════════════════════════════════════════════════ */
.bestsellers-section {
  background: var(--white);
  overflow: hidden;
}

.bs-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}
.bs-header .section-title {
  margin-bottom: 0;
  text-align: left;
}
.bs-header .section-label {
  text-align: left;
}

.bs-nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.bs-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--cream-dark);
  background: var(--white);
  font-size: 18px;
  cursor: pointer;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}
.bs-arrow:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(201, 124, 58, 0.2);
}
.bs-arrow:disabled {
  opacity: 0.25;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.bs-track-outer {
  overflow: hidden;
  width: 100%;
}
.bs-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}

.bs-card {
  flex: 0 0 calc(25% - 18px);
  background: var(--cream);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--cream-dark);
  transition:
    transform var(--t),
    box-shadow var(--t);
  cursor: default;
}
.bs-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.13);
}

.bs-img-wrap {
  position: relative;
  overflow: hidden;
  height: 210px;
}
.bs-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.bs-card:hover .bs-img-wrap img {
  transform: scale(1.07);
}

.bs-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--amber);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.bs-badge-new {
  background: #2a9d8f;
}
.bs-badge-hot {
  background: #e76f51;
}

.bs-info {
  padding: 18px 20px 20px;
}
.bs-info h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 6px;
}
.bs-info p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 14px;
}
.bs-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bs-price {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--amber);
  letter-spacing: 1px;
}
.bs-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  background: var(--white);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--cream-dark);
}

.bs-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.bs-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: var(--cream-dark);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s ease;
}
.bs-dot.active {
  background: var(--amber);
  width: 26px;
}
.bs-cta {
  text-align: center;
  margin-top: 44px;
}

/* ══════════════════════════════════════════════════════════
   12. SPLIT SECTION
══════════════════════════════════════════════════════════ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--white);
}
.split-img {
  position: relative;
  border-radius: 4px;
  overflow: visible;
}
.split-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 4px;
}
.split-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--amber);
  color: var(--white);
  padding: 16px 24px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 2px;
  border-radius: 2px;
}
.split-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 24px;
}
.split-text h2 em {
  font-style: italic;
  color: var(--amber);
}
.split-text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 16px;
}
.split-text .btn-primary {
  margin-top: 16px;
}

/* ══════════════════════════════════════════════════════════
   13. FEATURES SECTION
══════════════════════════════════════════════════════════ */
.features-section {
  background: var(--feat-bg);
  padding: 80px 60px 90px;
  position: relative;
  overflow: hidden;
}
.features-section::before,
.features-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.features-section::before {
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(
    circle,
    rgba(183, 120, 56, 0.1) 0%,
    transparent 70%
  );
}
.features-section::after {
  bottom: -80px;
  left: -40px;
  width: 260px;
  height: 260px;
  background: radial-gradient(
    circle,
    rgba(183, 120, 56, 0.08) 0%,
    transparent 70%
  );
}

/* Override section-label / section-title inside features */
.features-section .section-label {
  color: var(--feat-amber);
  opacity: 0;
  transform: translateY(12px);
  animation: featFadeUp 0.6s ease forwards 0.1s;
}
.features-section .section-title {
  font-family: var(--font-playfair);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 400;
  color: #2c1f0e;
  opacity: 0;
  transform: translateY(14px);
  animation: featFadeUp 0.6s ease forwards 0.25s;
}
.features-section .section-title em {
  color: var(--feat-amber);
}

/* Ornamental divider */
.cs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 22px auto 52px;
  opacity: 0;
  animation: featFadeUp 0.6s ease forwards 0.4s;
}
.cs-divider-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--feat-amber));
}
.cs-divider-line.rev {
  background: linear-gradient(to left, transparent, var(--feat-amber));
}
.cs-divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--feat-amber);
}

/* Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1140px;
  margin: 0 auto;
}

/* Card */
.feat-card {
  background: var(--feat-card);
  border-radius: 16px;
  padding: 36px 26px 32px;
  border: 1px solid rgba(183, 120, 56, 0.12);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  opacity: 0;
  transform: translateY(20px);
}
.feat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--feat-amber), var(--feat-amber2));
  opacity: 0;
  transition: opacity 0.35s ease;
}
.feat-card:nth-child(1) {
  animation: featFadeUp 0.65s ease forwards 0.55s;
}
.feat-card:nth-child(2) {
  animation: featFadeUp 0.65s ease forwards 0.7s;
}
.feat-card:nth-child(3) {
  animation: featFadeUp 0.65s ease forwards 0.85s;
}
.feat-card:nth-child(4) {
  animation: featFadeUp 0.65s ease forwards 1s;
}

.feat-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 48px rgba(44, 31, 14, 0.12);
  border-color: rgba(183, 120, 56, 0.35);
}
.feat-card:hover::before {
  opacity: 1;
}

.feat-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f5e6d0, #edd4aa);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 22px;
  transition: transform 0.3s ease;
}
.feat-card:hover .feat-icon {
  transform: scale(1.1) rotate(-3deg);
}

.feat-card h3 {
  font-family: var(--font-playfair);
  font-size: 18px;
  font-weight: 600;
  color: #2c1f0e;
  margin-bottom: 10px;
  line-height: 1.3;
}
.feat-card p {
  font-size: 13.5px;
  line-height: 1.75;
  color: #7a6248;
  font-weight: 300;
}

.feat-num {
  position: absolute;
  bottom: 14px;
  right: 20px;
  font-family: var(--font-playfair);
  font-size: 52px;
  font-weight: 600;
  color: rgba(183, 120, 56, 0.07);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

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

/* ══════════════════════════════════════════════════════════
   14. BRANCH SHOWCASE
══════════════════════════════════════════════════════════ */
.branch-showcase-section {
  background: var(--cream-dark);
}

.branch-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
  gap: 16px;
}
.bsc-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform var(--t),
    box-shadow var(--t);
}
.bsc-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.bsc-tall {
  grid-row: span 2;
}
.bsc-img {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}
.bsc-card:hover .bsc-img {
  transform: scale(1.06);
}
.bsc-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
  background: linear-gradient(
    to top,
    rgba(20, 10, 0, 0.85) 0%,
    transparent 100%
  );
}
.bsc-info h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}
.bsc-info span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber-light);
}

/* ══════════════════════════════════════════════════════════
   15. FRANCHISE TEASER
══════════════════════════════════════════════════════════ */
.franchise-teaser-section {
  background: var(--white);
  padding: var(--section-py) var(--section-px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ft-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 20px;
}
.ft-content h2 em {
  font-style: italic;
  color: var(--amber);
}
.ft-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 440px;
}

.ft-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
}
.ft-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ft-num {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--brown);
  line-height: 1;
  letter-spacing: 1px;
}
.ft-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}

.ft-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.ft-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 8px;
}
.ft-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(201, 124, 58, 0.92);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════════
   16. REVIEWS SECTION
══════════════════════════════════════════════════════════ */
.reviews-section {
  background: var(--cream);
}

.reviews-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.reviews-header-text .section-title {
  margin-bottom: 10px;
  text-align: left;
}
.reviews-header-text .section-label {
  text-align: left;
}
.reviews-sub {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 400px;
}

.google-rating-badge {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 16px;
  padding: 24px 28px;
  text-align: center;
  min-width: 200px;
  flex-shrink: 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.google-logo {
  height: 20px;
  width: auto;
}
.badge-stars {
  display: flex;
  align-items: center;
  gap: 8px;
}
.star-icons {
  color: #fbbc04;
  font-size: 17px;
  letter-spacing: 2px;
}
.badge-score {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--brown-dark);
  line-height: 1;
}
.badge-count {
  font-size: 12px;
  color: var(--text-light);
}
.write-review-btn {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #4285f4;
  border: 1.5px solid #4285f4;
  padding: 6px 14px;
  border-radius: 20px;
  margin-top: 4px;
  transition: all var(--t);
}
.write-review-btn:hover {
  background: #4285f4;
  color: white;
}

.reviews-carousel-wrap {
  display: flex;
  align-items: stretch;
  gap: 16px;
  width: 100%;
}
.reviews-track-outer {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}
.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s var(--ease);
  will-change: transform;
  align-items: stretch;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 16px;
  padding: 28px;
  flex: 0 0 calc(33.333% - 16px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}
.review-card::before {
  content: "\201C";
  font-family: var(--font-serif);
  font-size: 96px;
  color: var(--cream-dark);
  position: absolute;
  top: -8px;
  right: 16px;
  line-height: 1;
  pointer-events: none;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.12);
}

.rc-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.rc-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: white;
  flex-shrink: 0;
}
.rc-meta {
  flex: 1;
  min-width: 0;
}
.rc-meta strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--brown-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rc-date {
  font-size: 11px;
  color: var(--text-light);
}
.rc-google-logo {
  height: 14px;
  width: auto;
  opacity: 0.7;
  flex-shrink: 0;
}
.rc-stars {
  color: #fbbc04;
  font-size: 14px;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.rc-text {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--text-light);
  position: relative;
  z-index: 1;
}

.rev-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--cream-dark);
  background: var(--white);
  font-size: 17px;
  cursor: pointer;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: center;
  transition: all var(--t);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.rev-arrow:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: scale(1.08);
}
.rev-arrow:disabled {
  opacity: 0.25;
  cursor: not-allowed;
  transform: none;
}

.rev-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.rev-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: var(--cream-dark);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s ease;
}
.rev-dot.active {
  background: var(--amber);
  width: 26px;
}

.reviews-cta {
  text-align: center;
  margin-top: 40px;
}
.google-maps-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 32px;
  border: 2px solid #dadce0;
  border-radius: 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--brown-dark);
  background: var(--white);
  transition: all var(--t);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
}
.google-maps-btn:hover {
  border-color: #4285f4;
  color: #4285f4;
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════
   17. CONTACT STRIP
══════════════════════════════════════════════════════════ */
.contact-strip {
  background: var(--brown-dark);
  padding: 60px var(--section-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cs-left h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}
.cs-left p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}
.cs-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cs-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--t);
}
.cs-whatsapp {
  background: #25d366;
  color: var(--white);
}
.cs-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}
.cs-facebook {
  background: #1877f2;
  color: var(--white);
}
.cs-facebook:hover {
  background: #0d6efd;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.35);
}
.cs-contact {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.cs-contact:hover {
  border-color: var(--amber);
  color: var(--amber);
}

/* ══════════════════════════════════════════════════════════
   18. ABOUT — VALUES & TEAM
══════════════════════════════════════════════════════════ */
.values-section {
  background: var(--white);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  padding: 36px 28px;
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
  transition: all var(--t);
}
.value-card:hover {
  border-color: var(--amber);
  box-shadow: 0 8px 30px rgba(201, 124, 58, 0.15);
}
.value-num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 12px;
}
.value-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  margin-bottom: 12px;
}
.value-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
}

.dark-section {
  background: var(--brown-dark);
  text-align: center;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 8px;
}
.team-card {
  text-align: center;
}
.team-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 3px solid rgba(201, 124, 58, 0.4);
  transition: border-color var(--t);
}
.team-card:hover .team-img {
  border-color: var(--amber);
}
.team-card h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 6px;
}
.team-card span {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber-light);
}

/* ══════════════════════════════════════════════════════════
   19. BRANCHES PAGE
══════════════════════════════════════════════════════════ */
.branches-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
  padding-top: 60px;
}
.branch-filter {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px;
  border: 1.5px solid var(--cream-dark);
  background: none;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  color: var(--text-light);
  transition: all var(--t);
}
.filter-btn.active,
.filter-btn:hover {
  border-color: var(--amber);
  background: var(--amber);
  color: var(--white);
}

.branch-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.branch-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  transition: all var(--t);
}
.branch-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}
.branch-card.hidden {
  display: none;
}
.branch-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.bc-body {
  padding: 20px;
}
.bc-badge {
  display: inline-block;
  background: var(--cream-dark);
  color: var(--amber);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
}
.bc-body h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}
.bc-body p {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 8px;
}
.bc-hours {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--amber);
  text-transform: uppercase;
}

/* Sidebar widgets */
.branches-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.sidebar-widget {
  background: var(--white);
  padding: 28px;
  border-radius: 4px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}
.sidebar-widget h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--cream-dark);
  padding-bottom: 12px;
}
.widget-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  background: var(--cream);
  transition: border-color var(--t);
}
.widget-input:focus {
  border-color: var(--amber);
}
.widget-list {
  list-style: none;
}
.widget-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 14px;
  cursor: pointer;
  transition: color var(--t);
}
.widget-list li:hover {
  color: var(--amber);
}
.widget-list li span {
  color: var(--text-light);
  font-size: 12px;
}
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hour-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-light);
}
.cta-widget p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   20. MENU / PRODUCTS
══════════════════════════════════════════════════════════ */
.menu-section {
  background: var(--white);
}
.menu-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 52px;
  border-bottom: 2px solid var(--cream-dark);
  overflow-x: auto;
}
.menu-tabs::-webkit-scrollbar {
  display: none;
}
.tab-btn {
  padding: 14px 28px;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--text-light);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--t);
  white-space: nowrap;
  flex-shrink: 0;
}
.tab-btn.active,
.tab-btn:hover {
  color: var(--amber);
  border-bottom-color: var(--amber);
}

.menu-tab-content {
  display: none;
}
.menu-tab-content.active {
  display: block;
}

.menu-double-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 80px;
}
.menu-item {
  border-bottom: 1px dotted var(--cream-dark);
  padding-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-items: start;
  gap: 0 8px;
}
.mi-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
}
.mi-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--amber);
}
.menu-item p {
  grid-column: 1 / -1;
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  margin-top: 6px;
}

/* ══════════════════════════════════════════════════════════
   21. FRANCHISE FORM
══════════════════════════════════════════════════════════ */
.franchise-form-wrapper {
  max-width: 860px;
  margin: 60px auto 0;
  padding: 50px 48px;
  background: linear-gradient(145deg, #ffffff, #fffaf4);
  border: 1px solid var(--cream-dark);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}
.franchise-form-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
.franchise-form-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--amber);
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.franchise-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ff-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ff-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ff-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.5px;
}
.franchise-form input,
.franchise-form select,
.franchise-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font-body);
  background: #fff;
  color: var(--text);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.franchise-form input:focus,
.franchise-form select:focus,
.franchise-form textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(201, 124, 58, 0.15);
  outline: none;
}
.franchise-form input::placeholder,
.franchise-form textarea::placeholder {
  color: #aaa;
  font-size: 13px;
}

/* ══════════════════════════════════════════════════════════
   22. CONTACT PAGE
══════════════════════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: start;
  background: var(--white);
}
.contact-form-wrap h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 36px;
}
.contact-form-wrap h2 em {
  font-style: italic;
  color: var(--amber);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}
.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  background: var(--cream);
  transition:
    border-color var(--t),
    background var(--t);
  resize: vertical;
  color: var(--text);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  background: var(--white);
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-info-card {
  background: var(--cream);
  padding: 20px 24px;
  border-radius: 4px;
  border-left: 3px solid var(--amber);
}
.contact-info-card h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.contact-info-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
}

.map-placeholder {
  height: 160px;
  background: linear-gradient(135deg, var(--brown-mid), var(--brown));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-inner {
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
}
.map-pin {
  font-size: 32px;
}
.map-inner span {
  display: block;
  font-size: 13px;
  margin-top: 8px;
  letter-spacing: 1px;
}

/* ══════════════════════════════════════════════════════════
   23. FOOTER
══════════════════════════════════════════════════════════ */
.footer {
  background: #120b07;
  color: rgba(255, 255, 255, 0.85);
  padding: 70px 60px 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 12px;
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.footer-logo img {
  height: 55px;
  width: auto;
  object-fit: contain;
}
.footer-logo span {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
}

.footer-col h5 {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 6px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 10px;
  transition:
    color var(--t),
    letter-spacing var(--t);
}
.footer-col a:hover {
  color: var(--amber);
  letter-spacing: 1.8px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.foot-soc {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.65);
  transition: all var(--t);
}
.foot-soc:hover {
  border-color: var(--amber);
  color: var(--amber);
}
.foot-soc-fb {
  border-color: rgba(24, 119, 242, 0.4);
  color: #4d94ff;
}
.foot-soc-fb:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: #fff;
}
.foot-soc-wa {
  border-color: rgba(37, 211, 102, 0.4);
  color: #4ddf88;
}
.foot-soc-wa:hover {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
}

/* ══════════════════════════════════════════════════════════
   24. SCROLL-IN ANIMATION (JS-driven)
══════════════════════════════════════════════════════════ */
.will-animate {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.will-animate.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════
   25. RESPONSIVE
══════════════════════════════════════════════════════════ */

/* ── Large tablet ── */
@media (max-width: 1100px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .branch-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 200px);
  }
  .bsc-tall {
    grid-row: span 1;
  }
  .franchise-teaser-section {
    grid-template-columns: 1fr;
  }
  .ft-image {
    display: none;
  }
}

/* ── Tablet ── */
@media (max-width: 900px) {
  :root {
    --section-px: 32px;
    --section-py: 60px;
  }

  .nav-links {
    display: none;
  }
  .topnav {
    padding: 0 20px;
  }

  .hero-social-float {
    right: 16px;
    top: 16px;
    gap: 8px;
  }
  .hsf-btn {
    padding: 8px 12px;
    font-size: 12px;
  }

  .hero-cards-row {
    gap: 10px;
  }
  .hero-card {
    flex: 1 1 140px;
    padding: 12px 14px;
  }
  .hcard-text span {
    display: none;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .split-img img {
    height: 300px;
  }
  .split-img-badge {
    bottom: -12px;
    right: -8px;
  }

  .branches-layout {
    grid-template-columns: 1fr;
  }
  .branches-sidebar {
    position: static;
  }
  .branch-cards {
    grid-template-columns: 1fr;
  }

  .menu-double-col {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .franchise-teaser-section {
    padding: 60px 32px;
  }
  .features-section {
    padding: 60px 32px 72px;
  }

  .reviews-section {
    padding: 60px 24px;
  }
  .reviews-header {
    flex-direction: column;
  }
  .google-rating-badge {
    width: 100%;
  }
  .review-card {
    flex: 0 0 calc(50% - 12px);
  }

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

  .contact-strip {
    padding: 48px 32px;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer {
    padding: 50px 32px 20px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .hero-content {
    padding: 0 16px;
  }

  .hero-desc-text {
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-tagline {
    font-size: 20px;
  }

  .hero-cards-row {
    grid-template-columns: 1fr; /* stack cards */
    gap: 12px;
  }

  .hero-card {
    justify-content: space-between;
    padding: 12px;
  }

  .hero-logo-img {
    max-height: 90px;
  }
}
/* ── Mobile ── */
@media (max-width: 600px) {
  :root {
    --section-px: 20px;
  }

  .sidebar {
    width: 100%;
    right: -100%;
  }

  .hero-content {
    padding: 0 20px;
  }
  .hero-desc-text {
    font-size: 16px;
  }
  .hero-tagline {
    font-size: 22px;
    letter-spacing: 1px;
  }

  .hero-card {
    padding: 10px 12px;
  }
  .hcard-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }
  .hcard-text strong {
    font-size: 12px;
  }
  .hcard-arrow {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .features-section {
    padding: 48px 20px 56px;
  }
  .feat-card {
    padding: 28px 22px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }

  .branch-showcase-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 160px 160px;
  }

  .ft-stats {
    gap: 20px;
  }

  .review-card {
    flex: 0 0 100%;
    padding: 20px;
  }

  .menu-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .mi-name {
    font-size: 16px;
  }
  .mi-price {
    font-size: 14px;
  }

  .ff-row {
    grid-template-columns: 1fr;
  }
  .franchise-form-wrapper {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cs-actions {
    width: 100%;
    flex-direction: column;
  }
  .cs-btn {
    width: 100%;
    justify-content: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer {
    padding: 48px 20px 20px;
  }

  .bestsellers-section {
    padding: 48px 20px;
  }
  .bs-card {
    flex: 0 0 100%;
  }
  .bs-img-wrap {
    height: 180px;
  }

  .reviews-section {
    padding: 48px 16px;
  }
  .rev-arrow {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

/* ── Small mobile ── */

@media (max-width: 400px) {
  .hero-cards-row {
    flex-direction: column;
  }
  .hero-card {
    width: 100%;
  }
  .hero-tagline {
    font-size: 18px;
  }

  .hero-desc-text {
    font-size: 14px;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta button {
    width: 100%;
  }
}
