@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&display=swap');

:root {
  --primary-color: #ffaa4c;
  /* Golden tan */
  --primary-hover: #e6bc6d;
  --bg-color: #f7e2c3;
  /* Dark brown */
  --text-color: #f8fafc;
  --nav-bg: #150803;
  /* Navbar dark brown */
  --border-color: rgba(212, 163, 115, 0.3);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --color-white: #ffffff;
  --color-black: #000000;
  --accent-red: #9b2c2c;
  --accent-red-hover: #c53030;
  --text-dark-brown: #3e2723;
  --text-brown: #5d4037;
  --maroon-light: #631818;
  --maroon-dark: #311408;
  --text-muted: #5c4033;
  --card-bg: #f9f2e8;
  --text-light-brown: #715548;
  --footer-text: #d1d5db;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  min-height: 100vh;
}

/* Navbar Setup */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 4rem;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Logo - Left Side */
.nav-brand {
  display: flex;
  align-items: center;
}

.logo-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
  transition: var(--transition);
}

.logo-circle:hover {
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.6);
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-left: auto;
  /* Pushes the menu to the right */
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  padding: 0.5rem 0;
  transition: var(--transition);
  opacity: 0.8;
}

.nav-link:hover {
  opacity: 1;
  color: var(--primary-color);
}

/* Underline Animation */
.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover::after {
  width: 100%;
}

/* Right Side Actions */
.nav-actions {
  display: flex;
  gap: 1rem;
}

/* Circular Buttons */
.action-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.action-btn i {
  z-index: 2;
  transition: var(--transition);
}

.action-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transform: translateY(100%);
  transition: var(--transition);
  z-index: 1;
}

.action-btn:hover {
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.2);
}

.action-btn:hover::before {
  transform: translateY(0);
}

.action-btn:hover i {
  color: var(--color-black);
}

/* Franchise Enquiry Button */
.btn-franchise {
  background: var(--primary-color);
  color: var(--bg-color);
  border: none;
  border-radius: 20px;
  padding: 0.5rem 1.2rem;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: var(--transition);
}

.btn-franchise i {
  font-size: 1rem;
}

.btn-franchise:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 163, 115, 0.3);
}


/* Hamburger */
.hamburger {
  display: none;
  font-size: 1.8rem;
  color: var(--primary-color);
  cursor: pointer;
  z-index: 1001;
  /* Keep above mobile menu */
}

/* Hero Section (Image Banner Only) */
.hero-banner-only {
  width: 100%;
  margin: 0;
  padding: 0;
  display: block;
  background-color: #2b1106;
}

.hero-img-full {
  width: 100%;
  height: auto;
  display: block;
}

/* Main content */
main {
  padding-top: 82px;
  /* Height of the navbar to prevent overlap */
}

/* About Section */
.about-section {
  padding: 6rem 4rem;
  background-color: var(--bg-color);
  /* inherits cream color */
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.about-group {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.about-content {
  flex: 1.2;
  padding-top: 1rem;
}

.cursive-subtitle {
  font-family: 'Great Vibes', cursive;
  color: var(--accent-red);
  font-size: 2.5rem;
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark-brown);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.title-underline {
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.section-desc {
  color: var(--text-brown);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.section-desc p {
  margin-bottom: 0.8rem;
}

.section-desc p:last-child {
  margin-bottom: 0;
}

.text-justify {
  text-align: justify;
}

.mt-3 {
  margin-top: 1.5rem;
}

.link-btn {
  color: var(--accent-red);
  text-decoration: none;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  transition: var(--transition);
}

.link-btn:hover {
  color: var(--accent-red-hover);
  transform: translateX(5px);
}

.about-image-wrapper {
  flex: 1;
  position: relative;
  border-radius: 20px;
}

.about-img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.founder-img {
  object-position: top;
}

.image-badge {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--maroon-light);
  color: var(--color-white);
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 90%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.badge-icon {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.badge-text {
  font-size: 0.85rem;
  line-height: 1.2;
}

.badge-text strong {
  font-size: 0.95rem;
  font-weight: 600;
}

.badge-name {
  display: block;
}

.badge-role {
  display: block;
  font-size: 0.7rem;
  opacity: 0.85;
  margin-top: 3px;
}

/* Branches Section */
.branches-section {
  padding: 6rem 4rem;
  background-color: var(--maroon-dark);
  /* Dark Maroon */
  color: var(--color-white);
  text-align: center;
}

.branches-header {
  margin-bottom: 3rem;
}

.golden-subtitle {
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.8rem;
}

.text-white {
  color: var(--color-white) !important;
}

.decorative-icon {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

.carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  flex: 1;
}

.branch-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 244, 227, 0.96)),
    var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  text-align: left;
  transition: var(--transition);
  border: 1px solid rgba(255, 170, 76, 0.28);
  border-bottom: 4px solid var(--primary-color);
  position: relative;
}

.branch-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.38);
}

.branch-img {
  display: none;
}

.branch-info {
  padding: 1.4rem;
  position: relative;
}

.branch-info::before {
  content: '';
  width: 42px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 999px;
  display: block;
  margin-bottom: 1rem;
}

.branch-name {
  color: var(--maroon-dark);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.branch-name i {
  color: var(--maroon-light);
}

.branch-address {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.carousel-btn {
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.2rem;
}

.carousel-btn:hover {
  background: var(--primary-color);
  color: var(--maroon-dark);
}

.view-all-container {
  margin-top: 3.5rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid var(--primary-color);
  background: transparent;
  color: var(--color-white);
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-size: 1.05rem;
  text-decoration: none;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--maroon-dark);
}

/* Products Section */
.products-section {
  padding: 6rem 4rem;
  background-color: var(--bg-color);
  text-align: center;
}

.products-header {
  margin-bottom: 3rem;
}

.maroon-subtitle {
  color: var(--maroon-light);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.8rem;
}

.maroon-icon {
  color: var(--maroon-light);
}

.products-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.grid-5-col {
  grid-template-columns: repeat(5, 1fr);
}

.grid-4-col {
  grid-template-columns: repeat(4, 1fr);
}

.product-card {
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 1.2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.2rem;
}

.product-title {
  color: var(--maroon-dark);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
}

.product-desc {
  color: var(--text-light-brown);
  font-size: 0.85rem;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.btn-solid-small {
  background-color: var(--maroon-light);
  color: var(--color-white);
  text-decoration: none;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}

.btn-solid-small:hover {
  background-color: var(--maroon-dark);
}

.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background-color: var(--maroon-light);
  color: var(--color-white);
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-size: 1.05rem;
  text-decoration: none;
  transition: var(--transition);
}

.btn-solid:hover {
  background-color: var(--maroon-dark);
}

.btn-solid:hover {
  background-color: var(--maroon-dark);
}

.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 2rem;
}

.text-dark {
  color: var(--text-dark-brown) !important;
}

/* Reel Showcase Section */
.reel-section {
  padding: 6rem 4rem;
  background-color: var(--color-white);
}

.reel-header {
  margin-bottom: 2rem;
}

.insta-handle {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-dark-brown);
  background: var(--color-white);
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  margin-bottom: 2.5rem;
  border: 2px solid transparent;
  background-image: linear-gradient(var(--color-white), var(--color-white)), linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.insta-handle i {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

.reel-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.reel-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: var(--transition);
  cursor: pointer;
  padding: 4px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.reel-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.reel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.reel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.reel-card:hover .reel-img {
  transform: scale(1.05);
}

.reel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.reel-card:hover .reel-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.instagram-icon-wrapper {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.85);
  color: #cc2366;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.play-btn-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.2rem;
  transition: var(--transition);
  padding-left: 4px; /* visually center play icon */
}

.reel-card:hover .play-btn-wrapper {
  background: #cc2366;
  border-color: #cc2366;
  transform: scale(1.1);
}

.reel-arrow {
  background-color: var(--color-white);
  color: var(--text-dark-brown);
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.reel-arrow:hover {
  background-color: #f8f8f8;
  color: #cc2366;
}

.btn-insta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--color-white);
  padding: 0.8rem 2.5rem;
  border-radius: 30px;
  font-size: 1.05rem;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}

.btn-insta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(220, 39, 67, 0.3);
  color: var(--color-white);
}

/* Contact Section */
.contact-section {
  padding: 6rem 4rem;
  background-color: var(--bg-color);
}

.contact-header {
  margin-bottom: 4rem;
}

.contact-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-divider .line {
  width: 60px;
  height: 1px;
  background-color: #8db57a; /* Subtle green line from image */
}

.contact-divider .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--text-dark-brown);
}

.contact-desc {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-light-brown);
  font-size: 1.05rem;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-icon-wrapper {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #f4f5f0; /* Light grey/green outer circle */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.contact-icon-inner {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: var(--accent-red-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.8rem;
  transition: var(--transition);
}

.contact-card:hover .contact-icon-wrapper {
  transform: translateY(-5px);
}

.contact-card:hover .contact-icon-inner {
  background-color: var(--maroon-dark);
}

.contact-text {
  color: var(--text-brown);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Footer Section */
.footer {
  background-color: var(--maroon-dark);
  color: #f8fafc;
  padding: 5rem 4rem 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr 1.5fr;
  gap: 3rem;
}

.footer-logo-text {
  font-family: 'Great Vibes', cursive;
  color: var(--primary-color);
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo-text i {
  font-size: 1.5rem;
}

.brand-col p {
  color: var(--footer-text);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  padding-right: 2rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--primary-color);
  color: var(--maroon-dark);
}

.footer-heading {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 25px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--footer-text);
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.footer-links a i {
  font-size: 0.7rem;
  color: var(--primary-color);
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.branches-col p {
  color: var(--footer-text);
  line-height: 1.6;
  font-size: 0.95rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.btn-outline-small {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--primary-color);
  color: var(--color-white);
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  /* Slightly squarer than main button, based on image */
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}

.btn-outline-small i {
  color: var(--primary-color);
}

.btn-outline-small:hover {
  background: var(--primary-color);
  color: var(--maroon-dark);
}

.btn-outline-small:hover i {
  color: var(--maroon-dark);
}

.hours-group {
  margin-bottom: 1.2rem;
}

.hours-group span {
  display: block;
  color: var(--footer-text);
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.hours-group strong {
  display: block;
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
  .navbar {
    padding: 1rem 2rem;
  }

  .hamburger {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--nav-bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transition: var(--transition);
    border-left: 1px solid var(--border-color);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .nav-actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-container {
    grid-template-columns: 1fr;
  }

  .about-group {
    flex-direction: column;
  }

  .about-image-wrapper {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .branches-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid, .reel-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {

  .about-section,
  .branches-section,
  .products-section,
  .reel-section,
  .contact-section {
    padding: 4rem 2rem;
  }

  .branches-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
  }

  .branch-info {
    padding: 0.85rem;
  }

  .branch-info::before {
    width: 32px;
    height: 3px;
    margin-bottom: 0.7rem;
  }

  .branch-name {
    font-size: 0.86rem;
    gap: 0.35rem;
  }

  .branch-address {
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .carousel-btn {
    display: none;
    /* Hide side buttons on mobile, allow scrolling/swiping usually */
  }

  .footer {
    padding: 4rem 2rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .products-grid, .reel-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================================
   All Branches Page specific
   ========================================= */
.all-branches-page {
  background-color: #fffcf5;
  padding: 6rem 4rem;
}
.all-branches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}
.branch-card-full {
  background:
    radial-gradient(circle at top right, rgba(255, 170, 76, 0.18), transparent 38%),
    linear-gradient(145deg, #ffffff 0%, #fff8ef 100%);
  border-radius: 14px;
  overflow: visible;
  box-shadow: 0 10px 26px rgba(49, 20, 8, 0.09);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(99, 24, 24, 0.12);
  border-bottom: 4px solid var(--primary-color);
}
.branch-card-full:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(49, 20, 8, 0.16);
}
.branch-card-full .img-wrapper {
  position: relative;
  height: 0;
  overflow: visible;
}
.branch-card-full img {
  display: none;
}
.branch-number-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--maroon-light), var(--maroon-dark));
  color: var(--color-white);
  padding: 0;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(72, 18, 18, 0.26);
  z-index: 2;
  transition: transform 0.3s ease;
}
.branch-card-full:hover .branch-number-badge {
  transform: scale(1.05) rotate(3deg);
}
.branch-card-full .info {
  padding: 1.5rem;
  padding-top: 1.7rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  position: relative;
  z-index: 2;
}
.branch-card-full .info::before {
  content: '';
  width: 44px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 999px;
  margin-bottom: 1rem;
}
.branch-card-full .title {
  font-family: 'Playfair Display', serif;
  color: var(--maroon-dark);
  font-size: 1.28rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
  padding-right: 3.1rem;
}
.branch-card-full .address {
  color: var(--text-brown);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.5;
}
.branch-card-full .address i {
  color: var(--accent-red);
  margin-top: 4px;
  font-size: 1.1rem;
}
.branch-card-full .divider {
  display: none;
}
.branch-card-full .btn-map {
  background: var(--maroon-dark);
  color: var(--color-white);
  border: 1.5px solid var(--maroon-dark);
  padding: 0.7rem;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.branch-card-full .btn-map:hover {
  background: var(--primary-color);
  color: var(--maroon-dark);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(72, 18, 18, 0.2);
}

@media (max-width: 1024px) {
  .all-branches-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .all-branches-page { padding: 3rem 1rem; }
  .all-branches-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
  .branch-card-full {
    border-radius: 12px;
  }
  .branch-card-full .info {
    padding: 0.9rem;
    padding-top: 1rem;
  }
  .branch-card-full .info::before {
    width: 30px;
    height: 3px;
    margin-bottom: 0.7rem;
  }
  .branch-number-badge {
    top: 0.75rem;
    right: 0.75rem;
    width: 31px;
    height: 31px;
    font-size: 0.76rem;
  }
  .branch-card-full .title {
    font-size: 0.95rem;
    margin-bottom: 0.55rem;
    padding-right: 2.4rem;
  }
  .branch-card-full .address {
    font-size: 0.72rem;
    gap: 0.35rem;
    line-height: 1.35;
    margin-bottom: 0.8rem;
  }
  .branch-card-full .address i {
    font-size: 0.8rem;
    margin-top: 2px;
  }
  .branch-card-full .btn-map {
    padding: 0.52rem 0.35rem;
    font-size: 0.7rem;
    gap: 0.3rem;
  }
}
@media (max-width: 500px) {
  .all-branches-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}


/* =========================================
   Contact Page specific (Image Match)
   ========================================= */
.contact-page-wrapper {
  padding: 4rem 4rem 8rem 4rem;
  background-color: #f7ede2; /* Matches image light cream bg */
}

.contact-top-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 4rem auto;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding-bottom: 3rem;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex: 1;
  padding: 0 1rem;
}

.contact-info-card .icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--maroon-dark);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-info-card .info-text h4 {
  color: var(--maroon-dark);
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

.contact-info-card .info-text p {
  color: var(--text-brown);
  font-size: 0.95rem;
  line-height: 1.4;
}

.contact-info-divider {
  width: 1px;
  height: 50px;
  background-color: rgba(72,18,18,0.15);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-side {
  padding-right: 2rem;
}

.contact-form-side .cursive-subtitle {
  font-size: 2.2rem;
  display: block;
}

.contact-form-side .section-title {
  margin-bottom: 1rem;
  color: var(--maroon-dark);
}

.contact-form-side .contact-desc {
  color: var(--text-brown);
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid rgba(212, 163, 115, 0.4);
  border-radius: 8px;
  background-color: #fcf8f2;
  color: var(--text-dark-brown);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(255, 170, 76, 0.2);
}

.contact-form textarea {
  resize: vertical;
}

.btn-send {
  display: inline-flex;
  align-items: center;
  background-color: var(--maroon-dark);
  color: var(--color-white);
  padding: 0.4rem 0.4rem 0.4rem 2rem;
  border: none;
  border-radius: 40px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  width: max-content;
  gap: 2rem;
  transition: var(--transition);
  margin-top: 1rem;
}

.btn-send:hover {
  background-color: var(--maroon-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(72,18,18,0.2);
}

.btn-send .send-icon {
  background-color: #d19a3b; /* Image golden icon bg */
  color: var(--maroon-dark);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-map-side {
  height: 100%;
}

.map-wrapper {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
}

@media (max-width: 1024px) {
  .contact-main-grid {
    gap: 3rem;
  }
  .contact-top-strip {
    flex-wrap: wrap;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .contact-page-wrapper {
    padding: 3rem 2rem 5rem 2rem;
  }
  .contact-main-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-side {
    padding-right: 0;
  }
  .contact-info-divider {
    display: none;
  }
  .contact-top-strip {
    flex-direction: column;
    align-items: flex-start;
  }
  .map-wrapper {
    height: 400px;
  }
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   Visual polish and mobile-first refinements
   ========================================= */
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.75), rgba(247, 226, 195, 0.95)),
    var(--bg-color);
  color: var(--text-dark-brown);
}

img {
  max-width: 100%;
}

a,
button,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(255, 170, 76, 0.55);
  outline-offset: 3px;
}

.navbar {
  padding: 0.85rem clamp(1rem, 4vw, 4rem);
  background:
    linear-gradient(90deg, rgba(21, 8, 3, 0.98), rgba(49, 20, 8, 0.96));
}

.logo-circle {
  width: 56px;
  height: 56px;
  background: #fff6e7;
  color: var(--maroon-dark);
  border: 2px solid rgba(255, 170, 76, 0.65);
  overflow: hidden;
}

.logo-circle img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.nav-links {
  gap: clamp(1rem, 2vw, 2.5rem);
}

.nav-actions {
  align-items: center;
}

.action-btn,
.carousel-btn,
.social-icons a {
  flex: 0 0 auto;
}

.btn-franchise,
.btn-solid,
.btn-outline,
.btn-insta,
.btn-send,
.btn-map,
.btn-outline-small,
.btn-solid-small {
  min-height: 44px;
  justify-content: center;
}

main {
  padding-top: 74px;
}

.hero-section {
  position: relative;
  min-height: clamp(520px, 76vh, 760px);
  background: var(--maroon-dark);
  display: grid;
  align-items: stretch;
}

.hero-image-container {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
}

.hero-img {
  filter: saturate(1.08) contrast(1.04);
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 8, 3, 0.82) 0%, rgba(49, 20, 8, 0.45) 43%, rgba(49, 20, 8, 0.05) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.42));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 8rem) 0 clamp(3rem, 7vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--color-white);
}

.hero-kicker {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.42rem 0.9rem;
  border: 1px solid rgba(255, 170, 76, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffe3b5;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 7vw, 5.8rem);
  line-height: 0.98;
  max-width: 780px;
  color: var(--color-white);
  margin-bottom: 1.2rem;
  letter-spacing: 0;
}

.hero-title span {
  color: var(--primary-color);
}

.hero-desc {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-actions .btn-solid,
.hero-actions .btn-outline {
  border-radius: 10px;
}

.hero-actions .btn-solid {
  background: var(--primary-color);
  color: var(--maroon-dark);
  font-weight: 700;
}

.hero-actions .btn-outline {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats {
  position: relative;
  z-index: 3;
  width: min(1120px, calc(100% - 2rem));
  margin: -3rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card {
  background: rgba(255, 252, 245, 0.96);
  border: 1px solid rgba(99, 24, 24, 0.1);
  border-radius: 8px;
  padding: 1.15rem;
  box-shadow: 0 14px 34px rgba(49, 20, 8, 0.14);
}

.stat-card strong {
  display: block;
  color: var(--maroon-dark);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-card span {
  color: var(--text-brown);
  font-size: 0.92rem;
}

.about-section,
.branches-section,
.products-section,
.reel-section,
.contact-section {
  padding: clamp(4rem, 7vw, 6.5rem) clamp(1rem, 4vw, 4rem);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: 0;
}

.about-container,
.products-grid,
.reel-grid,
.branches-grid,
.contact-grid,
.footer-container,
.all-branches-grid {
  width: min(100%, 1400px);
}

.about-group {
  background: rgba(255, 252, 245, 0.62);
  border: 1px solid rgba(99, 24, 24, 0.09);
  border-radius: 8px;
  padding: clamp(1rem, 2vw, 1.5rem);
  box-shadow: 0 16px 36px rgba(49, 20, 8, 0.08);
}

.about-img,
.product-img,
.reel-card,
.map-wrapper {
  border-radius: 8px;
}

.branches-section {
  background:
    radial-gradient(circle at top left, rgba(255, 170, 76, 0.16), transparent 34%),
    linear-gradient(135deg, #311408 0%, #521512 100%);
}

.branches-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.products-grid.grid-5-col {
  grid-template-columns: repeat(5, 1fr);
}
.products-grid.grid-4-col {
  grid-template-columns: repeat(4, 1fr);
}

.product-card {
  border: 1px solid rgba(99, 24, 24, 0.08);
  border-bottom: 4px solid rgba(255, 170, 76, 0.75);
  box-shadow: 0 12px 28px rgba(49, 20, 8, 0.08);
}

.product-card:hover {
  box-shadow: 0 18px 34px rgba(49, 20, 8, 0.16);
}

.reel-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #fff7ed 100%);
}

.reel-grid {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.contact-section {
  background:
    linear-gradient(180deg, var(--bg-color), #fffaf2);
}

.contact-card {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(99, 24, 24, 0.08);
  border-radius: 8px;
  padding: 2rem 1rem;
}

.footer-container {
  grid-template-columns: 1.7fr repeat(4, minmax(150px, 1fr));
}

.page-banner {
  min-height: clamp(240px, 36vw, 410px);
  overflow: hidden;
  position: relative;
  display: grid;
  place-items: center;
  background: var(--maroon-dark);
}

.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 8, 3, 0.72), rgba(49, 20, 8, 0.34)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.45));
}

.page-banner__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08);
}

.page-banner__content {
  position: relative;
  z-index: 2;
  width: min(960px, calc(100% - 2rem));
  text-align: center;
  color: var(--color-white);
}

.page-banner__content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.25rem, 6vw, 4.7rem);
  line-height: 1;
  margin-bottom: 0.8rem;
  letter-spacing: 0;
}

.page-banner__content p {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.franchise-page-section {
  padding: clamp(4rem, 7vw, 6.5rem) clamp(1rem, 4vw, 4rem);
  background:
    linear-gradient(135deg, #fffaf2 0%, #f7e2c3 100%);
}

.franchise-panel {
  width: min(1100px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.franchise-copy {
  text-align: left;
}

.franchise-copy .section-desc {
  max-width: 620px;
}

.franchise-highlights {
  display: grid;
  gap: 1rem;
}

.franchise-highlight {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(99, 24, 24, 0.1);
  border-radius: 8px;
  padding: 1.1rem;
  box-shadow: 0 14px 28px rgba(49, 20, 8, 0.08);
}

.franchise-highlight i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--maroon-dark);
  background: var(--primary-color);
  flex: 0 0 auto;
}

.franchise-highlight h3 {
  color: var(--maroon-dark);
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}

.franchise-highlight p {
  color: var(--text-brown);
  line-height: 1.5;
  font-size: 0.95rem;
}

.all-branches-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
}

.contact-page-wrapper {
  background:
    linear-gradient(135deg, #fffaf2 0%, #f7e2c3 100%);
}

.contact-top-strip,
.contact-main-grid {
  width: min(1200px, 100%);
}

.contact-form-side .contact-desc {
  max-width: 600px;
}

.contact-subtitle {
  font-size: 2rem;
  margin-bottom: 0;
}

.map-frame {
  border: 0;
}

@media (max-width: 1180px) {
  .nav-menu {
    gap: 1.2rem;
  }

  .nav-actions .action-btn {
    display: none;
  }

  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .nav-menu {
    top: 74px;
    width: min(88vw, 360px);
    height: calc(100vh - 74px);
    justify-content: flex-start;
    padding: 3rem 1.4rem;
  }

  .nav-actions .action-btn {
    display: flex;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-group {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    align-items: center;
  }

  .franchise-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  main {
    padding-top: 70px;
  }

  .navbar {
    padding: 0.7rem 1rem;
  }

  .logo-circle {
    width: 50px;
    height: 50px;
  }

  .nav-menu {
    top: 70px;
    height: calc(100vh - 70px);
    align-items: stretch;
  }

  .nav-links {
    align-items: stretch;
    width: 100%;
    gap: 0.4rem;
  }

  .nav-link {
    display: block;
    padding: 0.9rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
  }

  .nav-actions {
    width: 100%;
    gap: 0.75rem;
  }

  .btn-franchise {
    width: 100%;
  }

  .hero-section {
    min-height: 600px;
  }

  .hero-section::after {
    background:
      linear-gradient(180deg, rgba(21, 8, 3, 0.55), rgba(21, 8, 3, 0.84)),
      linear-gradient(90deg, rgba(49, 20, 8, 0.42), rgba(49, 20, 8, 0.2));
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 5rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn-solid,
  .hero-actions .btn-outline {
    width: 100%;
  }

  .hero-stats {
    margin-top: -2.2rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .stat-card {
    padding: 0.9rem;
  }

  .about-container {
    gap: 1.5rem;
  }

  .about-group {
    grid-template-columns: 1fr;
  }

  .about-image-wrapper {
    max-width: none;
  }

  .image-badge {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 0.75rem;
  }

  .branches-grid,
  .products-grid,
  .reel-grid,
  .contact-grid,
  .footer-container {
    grid-template-columns: 1fr;
  }

  .carousel-container {
    gap: 0;
  }

  .products-grid,
  .reel-grid {
    max-width: 430px;
  }

  .footer-logo-text {
    align-items: flex-start;
    line-height: 1.1;
  }

  .brand-col p {
    padding-right: 0;
  }

  .page-banner {
    min-height: 280px;
  }

  .contact-top-strip {
    padding-bottom: 2rem;
    margin-bottom: 2.5rem;
  }

  .contact-info-card {
    padding: 0;
  }

  .btn-send {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 460px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .all-branches-grid {
    grid-template-columns: 1fr;
  }

  .branch-card-full .title {
    font-size: 1.05rem;
  }

  .branch-card-full .address {
    font-size: 0.85rem;
  }

  .contact-info-card {
    align-items: flex-start;
  }
}

/* =========================================
   Richer brand polish
   ========================================= */
.hero-desc {
  margin-bottom: 1rem;
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: max-content;
  max-width: 100%;
  color: #ffe3b5;
  font-family: 'Great Vibes', cursive;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 1.7rem;
}

.hero-note i {
  color: var(--primary-color);
  font-size: 1.05rem;
}

.tea-strip {
  width: min(1120px, calc(100% - 2rem));
  margin: 1rem auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.tea-strip a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 42px;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  color: var(--maroon-dark);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(99, 24, 24, 0.1);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(49, 20, 8, 0.08);
  transition: var(--transition);
}

.tea-strip a:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.tea-strip i {
  color: var(--accent-red);
}

.products-header,
.branches-header,
.reel-header,
.contact-header {
  width: min(760px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.title-underline,
.branch-info::before,
.branch-card-full .info::before {
  background: linear-gradient(90deg, var(--primary-color), #8db57a);
}

.about-group,
.product-card,
.branch-card,
.branch-card-full,
.contact-card,
.franchise-highlight {
  position: relative;
}

.about-group {
  overflow: hidden;
}

.about-group::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 170, 76, 0.14), transparent 32%),
    repeating-linear-gradient(135deg, rgba(99, 24, 24, 0.035) 0 1px, transparent 1px 18px);
  pointer-events: none;
}

.branches-section {
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, #311408 0%, #521512 100%);
}

.branch-info::after,
.branch-card-full .info::after {
  content: '\f3c5';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 1.15rem;
  bottom: 1rem;
  color: rgba(99, 24, 24, 0.08);
  font-size: 2.4rem;
  pointer-events: none;
}

.product-card {
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(141, 181, 122, 0.13), transparent 38%);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.product-card::after {
  content: '\f7b6';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--maroon-dark);
  background: rgba(255, 170, 76, 0.9);
  box-shadow: 0 10px 20px rgba(49, 20, 8, 0.15);
}

.product-card:hover::before {
  opacity: 1;
}

.product-img {
  box-shadow: inset 0 0 0 1px rgba(99, 24, 24, 0.08);
}

.reel-section {
  background:
    repeating-linear-gradient(135deg, rgba(99, 24, 24, 0.025) 0 1px, transparent 1px 18px),
    linear-gradient(180deg, #ffffff 0%, #fff7ed 100%);
}

.contact-card {
  box-shadow: 0 14px 28px rgba(49, 20, 8, 0.07);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(49, 20, 8, 0.13);
}

.footer {
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, #250e05 0%, #43150f 100%);
}

.page-banner::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--primary-color), #8db57a, var(--accent-red));
  z-index: 3;
}

.branch-card-full {
  overflow: hidden;
}

.branch-card-full .info {
  min-height: 220px;
}

.contact-page-wrapper,
.franchise-page-section {
  background:
    repeating-linear-gradient(135deg, rgba(99, 24, 24, 0.025) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, #fffaf2 0%, #f7e2c3 100%);
}

@media (max-width: 768px) {
  .tea-strip {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.35rem;
    scrollbar-width: none;
  }

  .tea-strip::-webkit-scrollbar {
    display: none;
  }

  .tea-strip a {
    flex: 0 0 auto;
  }

  .branch-card-full .info {
    min-height: auto;
  }
}

/* =========================================
   Clean premium direction
   ========================================= */
:root {
  --primary-color: #d49a35;
  --primary-hover: #f0b64a;
  --bg-color: #fbf3e7;
  --nav-bg: #1e0d06;
  --maroon-light: #7a211c;
  --maroon-dark: #2d1209;
  --accent-red: #8a231f;
  --accent-red-hover: #a6382e;
  --text-dark-brown: #2f1b12;
  --text-brown: #5f4537;
  --text-muted: #745c4e;
  --card-bg: #fffaf2;
}

body {
  background: var(--bg-color);
}

.navbar {
  padding-block: 0.72rem;
  background: rgba(30, 13, 6, 0.96);
  box-shadow: 0 8px 24px rgba(31, 13, 6, 0.18);
}

.logo-circle {
  width: 52px;
  height: 52px;
  background: #fff7e8;
  box-shadow: none;
}

.nav-link {
  font-size: 0.98rem;
  letter-spacing: 0;
}

.btn-franchise,
.btn-solid,
.btn-outline,
.btn-insta,
.btn-outline-small,
.btn-solid-small,
.btn-map {
  border-radius: 6px;
}

main {
  padding-top: 72px;
}

.hero-section {
  min-height: clamp(500px, 70vh, 680px);
  background: var(--maroon-dark);
}

.hero-section::after {
  background:
    linear-gradient(90deg, rgba(28, 10, 4, 0.82), rgba(28, 10, 4, 0.48) 48%, rgba(28, 10, 4, 0.08)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.32));
}

.hero-content {
  width: min(1080px, calc(100% - 2rem));
  padding-block: clamp(3rem, 8vw, 6.5rem);
}

.hero-kicker {
  background: transparent;
  border: 0;
  padding: 0;
  border-radius: 0;
  color: var(--primary-hover);
  font-size: 0.76rem;
  letter-spacing: 1.4px;
}

.hero-title {
  max-width: 650px;
  font-size: clamp(2.55rem, 6vw, 4.8rem);
  margin-bottom: 1rem;
}

.hero-desc {
  max-width: 560px;
  font-size: clamp(0.98rem, 1.7vw, 1.12rem);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.hero-actions .btn-solid,
.hero-actions .btn-outline {
  padding: 0.78rem 1.2rem;
  border-radius: 6px;
  font-size: 0.98rem;
}

.hero-actions .btn-outline {
  background: transparent;
}

.hero-note,
.tea-strip {
  display: none;
}

.hero-stats {
  width: min(1080px, calc(100% - 2rem));
  margin-top: -2.5rem;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(49, 20, 8, 0.12);
}

.stat-card {
  border-radius: 0;
  border: 0;
  border-right: 1px solid rgba(99, 24, 24, 0.1);
  box-shadow: none;
  padding: 1rem 1.15rem;
}

.stat-card:last-child {
  border-right: 0;
}

.stat-card strong {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
}

.about-section,
.branches-section,
.products-section,
.reel-section,
.contact-section,
.franchise-page-section,
.all-branches-page,
.contact-page-wrapper {
  padding: clamp(3.7rem, 6vw, 5.5rem) clamp(1rem, 4vw, 3.5rem);
}

.section-title {
  font-size: clamp(1.95rem, 3.4vw, 2.7rem);
}

.cursive-subtitle {
  font-size: clamp(2rem, 3.2vw, 2.45rem);
}

.about-group {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  overflow: visible;
}

.about-group::before,
.product-card::before,
.product-card::after,
.branch-info::after,
.branch-card-full .info::after,
.page-banner::before {
  display: none;
}

.about-img,
.product-img,
.reel-card,
.map-wrapper {
  border-radius: 8px;
}

.image-badge {
  border-radius: 6px;
}

.branches-section {
  background: #2d1209;
}

.branch-card,
.product-card,
.contact-card,
.branch-card-full,
.franchise-highlight {
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(49, 20, 8, 0.08);
}

.branch-card:hover,
.product-card:hover,
.contact-card:hover,
.branch-card-full:hover,
.franchise-highlight:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(49, 20, 8, 0.14);
}

.branch-card {
  border: 1px solid rgba(212, 154, 53, 0.18);
  border-bottom: 3px solid var(--primary-color);
}

.branch-info {
  padding: 1.25rem;
}

.branch-name {
  font-size: 1rem;
}

.products-section,
.contact-section,
.all-branches-page {
  background: #fbf3e7;
}

.products-grid {
  gap: 1.1rem;
}

.product-card {
  padding: 1rem;
  border: 1px solid rgba(99, 24, 24, 0.08);
  border-bottom: 3px solid rgba(212, 154, 53, 0.65);
}

.product-img {
  margin-bottom: 1rem;
}

.product-title {
  font-size: 1.02rem;
}

.product-desc {
  margin-bottom: 1.15rem;
}

.reel-section {
  background: #fffdf8;
}

.reel-card {
  padding: 0;
  border: 1px solid rgba(99, 24, 24, 0.1);
  background: #fff;
}

.reel-card-inner {
  border-radius: 8px;
}

.contact-card {
  background: #fffaf2;
}

.footer {
  background: #241008;
}

.page-banner {
  min-height: clamp(220px, 32vw, 360px);
}

.page-banner::after {
  background:
    linear-gradient(90deg, rgba(28, 10, 4, 0.72), rgba(28, 10, 4, 0.32)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.38));
}

.page-banner__content h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
}

.franchise-page-section,
.contact-page-wrapper {
  background: #fbf3e7;
}

.franchise-panel {
  width: min(1040px, 100%);
}

.franchise-highlight {
  background: #fffaf2;
}

.branch-card-full {
  border: 1px solid rgba(99, 24, 24, 0.1);
  border-bottom: 3px solid var(--primary-color);
}

.branch-card-full .info {
  min-height: 190px;
}

@media (max-width: 1024px) {
  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-card:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 768px) {
  main {
    padding-top: 68px;
  }

  .navbar {
    padding: 0.6rem 1rem;
  }

  .nav-menu {
    top: 68px;
    height: calc(100vh - 68px);
  }

  .hero-section {
    min-height: 560px;
  }

  .hero-section::after {
    background:
      linear-gradient(180deg, rgba(28, 10, 4, 0.44), rgba(28, 10, 4, 0.88));
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 4rem;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-card {
    padding: 0.85rem;
  }

  .stat-card:nth-child(odd) {
    border-right: 1px solid rgba(99, 24, 24, 0.1);
  }

  .stat-card:nth-child(even) {
    border-right: 0;
  }

  .about-section,
  .branches-section,
  .products-section,
  .reel-section,
  .contact-section,
  .franchise-page-section,
  .all-branches-page,
  .contact-page-wrapper {
    padding-inline: 1rem;
  }

  .products-grid,
  .reel-grid {
    max-width: none;
  }
}

@media (max-width: 460px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .stat-card,
  .stat-card:nth-child(odd) {
    border-right: 0;
    border-bottom: 1px solid rgba(99, 24, 24, 0.1);
  }

  .stat-card:last-child {
    border-bottom: 0;
  }
}

/* =========================================
   Client requested adjustments
   ========================================= */
.navbar {
  min-height: 72px;
  overflow: visible;
}

.nav-brand {
  min-width: 108px;
  height: 56px;
  position: relative;
  z-index: 1002;
}

.logo-circle {
  width: 94px;
  height: 94px;
  border-width: 3px;
  transform: translateY(24px);
}

.logo-circle:hover {
  transform: translateY(24px) scale(1.03) rotate(3deg);
}

.logo-circle img {
  width: 88%;
  height: 88%;
}

.about-container {
  align-items: start;
}

.about-img {
  aspect-ratio: 1 / 1;
}

.page-banner {
  width: 100%;
  min-height: 0 !important;
  height: auto;
  aspect-ratio: 16 / 9;
}

.page-banner__content {
  padding: 1rem;
}

/* --- About Page Specific Layout --- */
.about-page-layout .about-container {
  display: flex !important;
  flex-direction: column;
  gap: 6rem;
  max-width: 1100px;
}

.about-page-layout .about-group {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  gap: 5rem;
}

.about-page-layout .about-group:nth-child(even) {
  flex-direction: row-reverse;
}

.about-page-layout .about-content {
  flex: 1;
  padding-top: 0;
}

.about-page-layout .about-image-wrapper {
  flex: 1;
  width: 100%;
  max-width: 500px;
  order: unset !important;
}

.about-page-layout .about-group:nth-child(odd) .about-content,
.about-page-layout .about-group:nth-child(even) .about-content {
  order: unset !important;
}

.about-page-layout .about-img {
  aspect-ratio: 4 / 3 !important;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-page-layout .image-badge {
  bottom: -30px;
  width: auto;
  min-width: 75%;
  padding: 1.2rem 2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
}

@media (max-width: 992px) {
  .about-page-layout .about-group,
  .about-page-layout .about-group:nth-child(even) {
    flex-direction: column;
    gap: 4rem;
  }
  
  .about-page-layout .about-image-wrapper {
    max-width: 90%;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .about-page-layout .about-group,
  .about-page-layout .about-group:nth-child(even) {
    gap: 3rem;
  }
  .about-page-layout .about-image-wrapper {
    max-width: 100%;
  }
  .about-page-layout .image-badge {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    margin: -30px auto 0 !important;
    width: 90% !important;
    border-radius: 12px !important;
    padding: 1rem 1.5rem !important;
    justify-content: center;
  }
  .about-page-layout .badge-icon {
    font-size: 1.5rem !important;
  }
  .about-page-layout .badge-text {
    font-size: 0.9rem !important;
  }
  .about-page-layout .badge-text strong {
    font-size: 1rem !important;
  }
}
/* -------------------------------- */

@media (max-width: 768px) {
  main {
    padding-top: 68px;
  }

  .navbar {
    min-height: 68px;
  }

  .nav-brand {
    min-width: 82px;
    height: 50px;
  }

  .logo-circle {
    width: 76px;
    height: 76px;
    transform: translateY(14px);
  }

  .logo-circle:hover {
    transform: translateY(14px) scale(1.03);
  }

  .nav-menu {
    top: 68px;
    height: calc(100vh - 68px);
  }

  .about-container {
    display: grid;
    gap: 1.25rem;
  }

  .about-group {
    display: grid;
    grid-template-columns: minmax(118px, 42%) minmax(0, 1fr);
    gap: 0.85rem;
    align-items: center;
  }

  .about-group:nth-child(odd) .about-image-wrapper {
    order: 1;
  }

  .about-group:nth-child(odd) .about-content {
    order: 2;
  }

  .about-group:nth-child(even) .about-content {
    order: 1;
  }

  .about-group:nth-child(even) .about-image-wrapper {
    order: 2;
  }

  .about-content {
    padding-top: 0;
  }

  .about-group .cursive-subtitle {
    font-size: 1.35rem;
    margin-bottom: 0.25rem;
  }

  .about-group .section-title {
    font-size: clamp(1.02rem, 4.2vw, 1.35rem);
    margin-bottom: 0.45rem;
  }

  .about-group .title-underline {
    width: 38px;
    margin-bottom: 0.65rem;
  }

  .about-group .section-desc {
    font-size: 0.78rem;
    line-height: 1.45;
    margin-bottom: 0.75rem;
  }

  .about-group .link-btn {
    font-size: 0.76rem;
    gap: 0.3rem;
  }

  .about-image-wrapper {
    overflow: hidden;
    border-radius: 8px;
  }

  .about-group .image-badge {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    transform: none;
    margin: 0;
    padding: 0.45rem 0.5rem;
    gap: 0.35rem;
    border-radius: 0 0 8px 8px;
  }

  .about-group .badge-icon {
    font-size: 0.9rem;
  }

  .about-group .badge-text {
    font-size: 0.62rem;
    line-height: 1.15;
  }

  .about-group .badge-text strong {
    font-size: 0.66rem;
  }

  .about-group .badge-role {
    font-size: 0.55rem;
  }

  .branches-section .carousel-container,
  .reel-section .carousel-container {
    display: block;
    max-width: 100%;
  }

  .branches-section .branches-grid,
  .products-section .products-grid,
  .reel-section .reel-grid {
    display: flex;
    grid-template-columns: none;
    gap: 0.9rem;
    width: 100%;
    max-width: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0.15rem 0.85rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .branches-section .branches-grid::-webkit-scrollbar,
  .products-section .products-grid::-webkit-scrollbar,
  .reel-section .reel-grid::-webkit-scrollbar {
    display: none;
  }

  .branches-section .branch-card,
  .products-section .product-card,
  .reel-section .reel-card {
    scroll-snap-align: start;
  }

  .branches-section .branch-card {
    flex: 0 0 min(78vw, 310px);
  }

  .products-section .product-card {
    flex: 0 0 min(72vw, 270px);
  }

  .reel-section .reel-card {
    flex: 0 0 min(64vw, 240px);
  }

  .page-banner__content h1 {
    font-size: clamp(1.8rem, 9vw, 3.2rem);
  }

  .page-banner__content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 500px) {
  .all-branches-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.75rem;
  }

  .branch-card-full .info {
    min-height: auto;
    padding: 0.75rem;
  }

  .branch-card-full .title {
    font-size: 0.86rem;
    padding-right: 2rem;
  }

  .branch-card-full .address {
    font-size: 0.66rem;
    line-height: 1.35;
    gap: 0.3rem;
  }

  .branch-card-full .btn-map {
    font-size: 0.62rem;
    padding: 0.48rem 0.25rem;
  }

  .branch-number-badge {
    width: 30px;
    height: 30px;
    font-size: 0.7rem;
  }
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 450px;
    height: 85vh;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-modal-content video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.close-modal-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    transition: background 0.3s ease;
}

.close-modal-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .video-modal-content {
        width: 100%;
        height: 100%;
        max-width: none;
        border-radius: 0;
    }
    .close-modal-btn {
        top: 20px;
        right: 20px;
    }
}
