/* =============================================
   AMRUTTULYA – PREMIUM TEA BRAND
   Main Stylesheet
   ============================================= */

/* ---- CSS Variables ---- */
:root {
  --saffron: #d97706;
  --saffron-light: #f59e0b;
  --saffron-dark: #b45309;
  --tea-brown: #5c3d2e;
  --tea-brown-light: #7c5442;
  --cream: #fff7e6;
  --cream-dark: #fef3c7;
  --dark-green: #355e3b;
  --dark-green-light: #4a7c52;
  --gold: #d4af37;
  --gold-light: #e8c84a;
  --white: #ffffff;
  --black: #0f0f0f;
  --dark-bg: #1a0f08;
  --dark-bg-2: #2c1810;
  --text-dark: #1f1107;
  --text-muted: #6b5b4a;
  --text-light: #a89880;
  --border-color: #e8d5b7;

  --font-heading: "Playfair Display", Georgia, serif;
  --font-sub: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-hindi: "Mukta", sans-serif;

  --shadow-sm: 0 2px 8px rgba(90, 50, 20, 0.1);
  --shadow-md: 0 4px 20px rgba(90, 50, 20, 0.15);
  --shadow-lg: 0 8px 40px rgba(90, 50, 20, 0.2);
  --shadow-xl: 0 16px 60px rgba(90, 50, 20, 0.25);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
  touch-action: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

button:disabled,
.btn[aria-disabled="true"] {
  cursor: not-allowed;
}

/* ---- Lightweight skeleton loading ---- */
.site-loading .hero-img-container,
.site-loading .about-img-main,
.site-loading .about-img-secondary,
.site-loading .tea-img-wrapper,
.site-loading .gallery-item,
.site-loading .menu-item-img,
.site-loading .special-card img,
.site-loading .founder-photo {
  position: relative;
  overflow: hidden;
  background: rgba(232, 213, 183, 0.45);
}

.site-loading .hero-img-container::before,
.site-loading .about-img-main::before,
.site-loading .about-img-secondary::before,
.site-loading .tea-img-wrapper::before,
.site-loading .gallery-item::before,
.site-loading .menu-item-img::before,
.site-loading .special-card img::before,
.site-loading .founder-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  background: linear-gradient(
    100deg,
    rgba(255, 247, 230, 0) 0%,
    rgba(255, 255, 255, 0.46) 45%,
    rgba(255, 247, 230, 0) 80%
  );
  animation: skeletonShimmer 1.15s ease-in-out infinite;
  pointer-events: none;
}

@keyframes skeletonShimmer {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(120%);
  }
}

/* ---- Utility Classes ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 90px 0;
}

.text-center {
  text-align: center;
}
.mt-2 {
  margin-top: 2rem;
}
.mt-4 {
  margin-top: 3rem;
}

.text-accent {
  color: var(--saffron);
}
.text-accent-light {
  color: var(--saffron-light);
}
.text-white {
  color: var(--white) !important;
}
.text-light-muted {
  color: rgba(255, 255, 255, 0.72) !important;
}

.bg-warm {
  background-color: var(--cream-dark);
}
.bg-dark {
  background-color: var(--dark-bg);
}

/* ---- Section Header ---- */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217, 119, 6, 0.1);
  color: var(--saffron);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-sub);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border: 1px solid rgba(217, 119, 6, 0.25);
}

.section-tag.light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--saffron-light);
  border-color: rgba(255, 255, 255, 0.2);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--tea-brown);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-family: var(--font-sub);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--saffron-light),
    var(--saffron-dark)
  );
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(217, 119, 6, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(217, 119, 6, 0.5);
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--saffron);
  border-color: var(--white);
  font-weight: 700;
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.btn-lg {
  padding: 15px 36px;
  font-size: 1rem;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.82rem;
}

.btn-full,
.btn-sm-full {
  width: 100%;
  justify-content: center;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 16px 0;
  transition: var(--transition-slow);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 247, 230, 0.97);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(
    135deg,
    var(--saffron-light),
    var(--saffron-dark)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  box-shadow: 0 3px 12px rgba(217, 119, 6, 0.4);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--tea-brown);
  line-height: 1;
}

.logo-tagline {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--saffron);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.nav-link {
  font-family: var(--font-sub);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--white);
  transition: var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.navbar.scrolled .nav-link {
  color: var(--tea-brown);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--saffron);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--saffron-light);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--saffron);
}

.nav-cta {
  padding: 9px 22px;
  font-size: 0.88rem;
  margin-left: 0.5rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}

.navbar.scrolled .hamburger span {
  background: var(--tea-brown);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: var(--transition);
}

.nav-overlay.active {
  opacity: 1;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--dark-bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  --hero-parallax: 0px;
  background-image: url("../images/hero.webp");
  background-size: cover;
  background-position: center;
  animation: heroZoom 20s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes heroZoom {
  0% {
    transform: translateY(var(--hero-parallax)) scale(1);
  }
  100% {
    transform: translateY(var(--hero-parallax)) scale(1.06);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 15, 8, 0.88) 0%,
    rgba(44, 24, 16, 0.7) 50%,
    rgba(26, 15, 8, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 55%;
  flex-shrink: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-sub);
  border: 1px solid rgba(212, 175, 55, 0.35);
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hindi-text {
  display: block;
  font-family: var(--font-hindi);
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.accent-text {
  display: block;
  background: linear-gradient(135deg, var(--saffron-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-hindi);
}

.hero-subtitle {
  font-family: var(--font-sub);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  padding: 0 1.8rem;
}

.stat-item:first-child {
  padding-left: 0;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--saffron-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  font-family: var(--font-sub);
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 3px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-image-frame {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.hero-img-container {
  position: relative;
  width: 360px;
  height: 450px;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.hero-img-ring {
  position: absolute;
  inset: -12px;
  border-radius: calc(var(--radius-xl) + 12px);
  border: 2px solid rgba(212, 175, 55, 0.3);
  animation: ringPulse 3s ease-in-out infinite;
}

@keyframes ringPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.02);
    opacity: 0.6;
  }
}

.hero-badge-float {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
}

.desktop-break {
  display: block;
}

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  font-family: var(--font-sub);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.scroll-arrow {
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

/* Steam */
.steam-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  pointer-events: none;
}

.steam {
  position: absolute;
  bottom: 15%;
  width: 4px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.3), transparent);
  border-radius: 50px;
  animation: steamRise 4s ease-in-out infinite;
  filter: blur(3px);
}

.steam-1 {
  left: 30%;
  height: 80px;
  animation-delay: 0s;
}
.steam-2 {
  left: 35%;
  height: 60px;
  animation-delay: 0.8s;
}
.steam-3 {
  left: 25%;
  height: 90px;
  animation-delay: 1.5s;
}
.steam-4 {
  left: 40%;
  height: 50px;
  animation-delay: 2s;
}

@keyframes steamRise {
  0% {
    transform: translateY(0) scaleX(1);
    opacity: 0;
  }
  20% {
    opacity: 0.6;
  }
  80% {
    opacity: 0.2;
  }
  100% {
    transform: translateY(-120px) scaleX(2.5);
    opacity: 0;
  }
}

/* Tea leaves */
.tea-leaves-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* =============================================
   ABOUT PREVIEW
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 480px;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-main:hover img {
  transform: scale(1.04);
}

.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 190px;
  height: 190px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-years-badge {
  position: absolute;
  top: 30px;
  right: -20px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.years-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.years-text {
  font-size: 0.72rem;
  font-family: var(--font-sub);
  opacity: 0.9;
  line-height: 1.4;
}

.about-text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.8rem 0;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.feature-icon-sm {
  width: 38px;
  height: 38px;
  background: rgba(217, 119, 6, 0.1);
  color: var(--saffron);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.about-feature strong {
  display: block;
  font-family: var(--font-sub);
  font-size: 0.95rem;
  color: var(--tea-brown);
  margin-bottom: 2px;
}

.about-feature p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron-light), var(--saffron-dark));
  transform: scaleX(0);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(
    135deg,
    rgba(217, 119, 6, 0.12),
    rgba(212, 175, 55, 0.08)
  );
  color: var(--saffron);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.3rem;
  transition: var(--transition);
  border: 2px solid rgba(217, 119, 6, 0.15);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
  border-color: transparent;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--tea-brown);
  margin-bottom: 0.8rem;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.feature-line {
  width: 36px;
  height: 3px;
  background: var(--saffron);
  border-radius: 3px;
  margin: 1.2rem auto 0;
  transition: var(--transition);
}

.feature-card:hover .feature-line {
  width: 60px;
}

/* =============================================
   FEATURED TEA MENU
   ============================================= */
.tea-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.tea-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.tea-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.tea-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.tea-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tea-card:hover .tea-img-wrapper img {
  transform: scale(1.08);
}

.tea-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--saffron);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.tea-badge-green {
  background: var(--dark-green);
}
.tea-badge-gold {
  background: var(--gold);
  color: var(--dark-bg);
}
.tea-badge-pink {
  background: #e91e8c;
}
.tea-badge-brown {
  background: var(--tea-brown);
}

.tea-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 15, 8, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.tea-card:hover .tea-overlay {
  opacity: 1;
}

.tea-info {
  padding: 1.4rem;
}

.tea-category {
  font-size: 0.72rem;
  font-weight: 600;
  font-family: var(--font-sub);
  color: var(--saffron);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.tea-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--tea-brown);
  margin-bottom: 0.6rem;
}

.tea-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.tea-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tea-price {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 1rem;
  color: var(--saffron-dark);
}

.tea-rating {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 0.75rem;
}

/* =============================================
   GALLERY PREVIEW
   ============================================= */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.2rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  height: 220px;
}

.gallery-item.gallery-tall {
  grid-row: span 2;
  height: auto;
}

.gallery-item.gallery-wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 15, 8, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--white);
  font-size: 1.5rem;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  overflow: hidden;
}

.testimonialSwiper {
  padding: 1rem 0 4rem !important;
  overflow: hidden !important;
  max-width: 100%;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  height: auto;
}

.testimonial-quote {
  color: var(--saffron-light);
  font-size: 1.6rem;
  margin-bottom: 1rem;
  opacity: 0.6;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.2rem;
  font-style: italic;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  display: flex;
  gap: 3px;
  margin-bottom: 1.4rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-family: var(--font-sub);
  font-size: 0.9rem;
  color: var(--tea-brown);
}

.author-info span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* Swiper customization */
.swiper-button-prev,
.swiper-button-next {
  color: var(--saffron) !important;
  background: var(--white);
  width: 42px !important;
  height: 42px !important;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1rem !important;
  font-weight: 800;
}

.swiper-pagination-bullet {
  background: var(--saffron) !important;
}

/* =============================================
   FRANCHISE CTA
   ============================================= */
.franchise-cta {
  position: relative;
  overflow: hidden;
  background-color: var(--dark-bg-2);
}

.franchise-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(217, 119, 6, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(212, 175, 55, 0.1) 0%,
      transparent 50%
    );
}

.franchise-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.franchise-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.franchise-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-sub);
  margin-bottom: 2.2rem;
  line-height: 1.7;
}

.franchise-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.2rem;
}

.franchise-benefit {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.franchise-benefit:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(217, 119, 6, 0.4);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  background: rgba(217, 119, 6, 0.2);
  color: var(--saffron-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.benefit-text strong {
  display: block;
  font-family: var(--font-sub);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.benefit-text span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}

.franchise-cta-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.franchise-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.fstat-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.fstat-card:hover {
  background: rgba(217, 119, 6, 0.15);
  border-color: rgba(217, 119, 6, 0.4);
  transform: translateY(-4px);
}

.fstat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--saffron-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.fstat-label {
  font-size: 0.82rem;
  font-family: var(--font-sub);
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  margin-bottom: 1rem;
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateX(4px);
  border-color: var(--saffron);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(217, 119, 6, 0.1);
  color: var(--saffron);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-details strong {
  display: block;
  font-family: var(--font-sub);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.contact-details a,
.contact-details span {
  font-size: 0.92rem;
  color: var(--tea-brown);
  font-weight: 500;
}

.contact-details a:hover {
  color: var(--saffron);
}

.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--white);
  color: var(--tea-brown);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--saffron);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
  border-color: transparent;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-group label {
  display: block;
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--tea-brown);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--saffron);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-success {
  background: rgba(37, 211, 102, 0.1);
  color: #16a34a;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
  font-family: var(--font-sub);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark-bg);
}

.footer-top {
  padding: 70px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 3rem;
}

.footer-brand .nav-logo {
  margin-bottom: 1.2rem;
}

.footer-brand .logo-name {
  color: var(--white) !important;
}

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
  background: var(--saffron);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-3px);
}

.footer-links h4,
.footer-hours h4 {
  font-family: var(--font-sub);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.3rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer-links h4::after,
.footer-hours h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--saffron);
  border-radius: 2px;
}

.footer-business-hours {
  margin-top: 2rem;
}

.footer-links ul li {
  margin-bottom: 0.65rem;
}

.footer-links ul li a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links ul li a:hover {
  color: var(--saffron-light);
  padding-left: 4px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.55);
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.hours-item span:last-child {
  color: var(--saffron-light);
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--font-sub);
}

.footer-bottom .text-accent {
  color: var(--saffron) !important;
}

/* =============================================
   FOUNDER SECTION
   ============================================= */
.founder-section {
  background-color: #fdf6ec;
  padding: 80px 40px;
}

.founder-section-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.founder-media {
  position: relative;
  flex-shrink: 0;
}

.founder-photo,
.founder-photo-fallback {
  width: 320px;
  height: 380px;
  border-radius: 16px;
}

.founder-photo {
  object-fit: cover;
}

.founder-photo-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--saffron-light),
    var(--saffron-dark)
  );
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
}

.founder-heritage-badge {
  position: absolute;
  right: -20px;
  bottom: 20px;
  background-color: #c97d2e;
  color: var(--white);
  padding: 14px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.founder-heritage-badge strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.founder-heritage-badge span {
  display: block;
  font-size: 13px;
}

.founder-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #f5e6d0;
  border: 1px solid #c97d2e;
  border-radius: 50px;
  padding: 8px 18px;
  margin-bottom: 20px;
  color: #c97d2e;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: var(--font-sub);
}

.founder-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  color: #2b1a0e;
  line-height: 1.2;
  margin: 0 0 6px;
}

.founder-title span,
.founder-signature p:first-child {
  color: #c97d2e;
}

.founder-role {
  color: #7a5c3e;
  font-size: 15px;
  margin-bottom: 20px;
  font-style: italic;
}

.founder-copy {
  color: #4a3728;
  font-size: 16px;
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 28px;
}

.founder-signature {
  border-top: 1px solid #e0c9a8;
  padding-top: 20px;
}

.founder-signature p:first-child {
  font-family: Georgia, serif;
  font-size: 28px;
  font-style: italic;
  line-height: 1.2;
}

.founder-signature p:last-child {
  color: #7a5c3e;
  font-size: 13px;
  letter-spacing: 1px;
}

/* =============================================
   COOKIE NOTICE
   ============================================= */
.cookie-notice {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto;
  padding: 16px 18px;
  background: rgba(255, 247, 230, 0.98);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}

.cookie-notice.visible {
  display: flex;
}

.cookie-notice p {
  color: var(--tea-brown);
  font-family: var(--font-sub);
  font-size: 0.86rem;
  line-height: 1.55;
}

.cookie-notice a {
  color: var(--saffron-dark);
  font-weight: 700;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-actions .btn {
  padding: 9px 18px;
  font-size: 0.82rem;
}

.cookie-actions .btn-outline {
  color: var(--tea-brown);
  border-color: var(--border-color);
}

.cookie-actions .btn-outline:hover {
  color: var(--white);
  background: var(--tea-brown);
  border-color: var(--tea-brown);
}

/* =============================================
   STICKY ELEMENTS
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 990;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
  animation: waPulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
  animation: none;
}

.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: var(--dark-bg);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-family: var(--font-sub);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

@keyframes waPulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow:
      0 4px 30px rgba(37, 211, 102, 0.8),
      0 0 0 8px rgba(37, 211, 102, 0.12);
  }
}

.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 990;
  width: 44px;
  height: 44px;
  background: var(--saffron);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  transform: translateY(10px);
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--saffron-dark);
  transform: translateY(-3px);
}

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 85vw;
  max-height: 85vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius-md);
  object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lightbox-close {
  top: 24px;
  right: 24px;
}
.lightbox-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--saffron);
  border-color: var(--saffron);
}

/* Page header for inner pages */
.page-header {
  padding: 130px 0 70px;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-2) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 30% 50%,
      rgba(217, 119, 6, 0.15),
      transparent 50%
    ),
    radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.1), transparent 50%);
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.page-header p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-sub);
  max-width: 520px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  font-size: 0.82rem;
  font-family: var(--font-sub);
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a {
  color: var(--saffron-light);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ===== HERO CONTENT SHIFT RIGHT (DESKTOP ONLY) ===== */
@media (min-width: 1024px) {
  .hero-content {
    padding-left: 100px;
  }

  .hero-stats {
    margin-left: 10px;
  }

  .hero-buttons {
    margin-left: 5px;
  }
}
