/* ============================================
   NEPAYA - Premium Himalayan Tea
   Brand Colors: Deep Burgundy + Gold + Cream
   Design: Apple/Cartier-level premium
   ============================================ */

/* --- CSS Variables --- */
/* Official Nepaya Brand Colors */
:root {
  --burgundy: #4f0a25;           /* Primary Dark Maroon */
  --burgundy-dark: #35061A;
  --burgundy-light: #6B1D3A;
  --gold: #cc9f53;                /* Secondary Gold */
  --gold-light: #E0BC7A;
  --gold-dark: #A37F3D;
  --pink: #ffe0e0;                /* Secondary Light Pink */
  --pink-light: #FFF2F2;
  --cream: #FBF6F1;
  --cream-dark: #F2EAE0;
  --charcoal: #1C1116;
  --charcoal-light: #3A2B32;
  --gray: #6B5D63;
  --gray-light: #9E9196;
  --gray-lighter: #E9DFE3;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 12px rgba(79, 10, 37, 0.06);
  --shadow-md: 0 6px 24px rgba(79, 10, 37, 0.09);
  --shadow-lg: 0 12px 48px rgba(79, 10, 37, 0.14);
  --shadow-xl: 0 20px 70px rgba(79, 10, 37, 0.18);
  --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* Typography: Bodoni (serif) as primary display, Archivo (sans) as secondary body */
  --font-serif: 'Bodoni Moda', 'Playfair Display', Georgia, serif;
  --font-sans: 'Archivo', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1440px;
  --nav-height: 84px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--burgundy);
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  letter-spacing: -0.015em;
  font-weight: 400;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  letter-spacing: -0.01em;
  font-weight: 500;
}

h3 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}

h4 {
  font-size: 1.2rem;
}

p {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.8;
}

.text-burgundy { color: var(--burgundy); }
.text-gold { color: var(--gold); }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  margin-bottom: 24px;
  color: var(--charcoal);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.8;
}

.section-subtitle.center {
  margin: 0 auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--burgundy);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--burgundy);
  border: 1.5px solid var(--burgundy);
}

.btn-secondary:hover {
  background: var(--burgundy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-white {
  background: var(--white);
  color: var(--burgundy);
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-text {
  padding: 0;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
  position: relative;
}

.btn-text::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--burgundy);
  transition: var(--transition);
}

.btn-text:hover::after {
  width: 100%;
}

.btn-amazon {
  background: #FF9900;
  color: var(--white);
  font-weight: 700;
}

.btn-amazon:hover {
  background: #E88B00;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-arrow::after {
  content: '\2192';
  font-size: 1.1em;
  transition: var(--transition-fast);
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav-announcement {
  background: var(--burgundy);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  font-weight: 400;
}

.nav-announcement a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  height: var(--nav-height);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--burgundy);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--burgundy);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--burgundy);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-dropdown-trigger svg {
  width: 10px;
  height: 10px;
  transition: var(--transition-fast);
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  padding: 24px 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  border: 1px solid rgba(0,0,0,0.05);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 28px;
  font-size: 0.9rem;
  color: var(--charcoal);
  transition: var(--transition-fast);
}

.nav-dropdown-menu a:hover {
  background: var(--cream);
  color: var(--burgundy);
  padding-left: 32px;
}

.nav-dropdown-heading {
  padding: 6px 28px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--cream-dark);
  margin-bottom: 8px;
}

/* Mega Menu */
.mega-menu {
  position: fixed;
  top: calc(var(--nav-height));
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 48px 60px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  z-index: 999;
  border-top: 1px solid var(--cream-dark);
}

.nav-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

.mega-menu-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.mega-menu-col h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--cream-dark);
}

.mega-menu-col a {
  display: block;
  padding: 6px 0;
  font-size: 0.92rem;
  color: var(--charcoal-light);
}

.mega-menu-col a:hover {
  color: var(--burgundy);
  padding-left: 6px;
}

/* Mobile Nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* ============================================
   HERO SECTION - Cinematic lifestyle
   ============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--burgundy);
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(79,10,37,0.82) 0%, rgba(79,10,37,0.55) 40%, rgba(79,10,37,0.35) 100%);
  z-index: 2;
}

.hero-bg-pattern {
  display: none;
}

.hero .container {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 980px;
  padding: 160px 60px 100px;
}

.hero-content {
  max-width: 100%;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
}

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

.hero-badge {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 36px;
}

.hero-badge .dot {
  background: var(--gold-light);
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  margin: 0 auto 48px;
  max-width: 640px;
  line-height: 1.9;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-actions .btn-text {
  color: var(--gold-light);
}

.hero-actions .btn-text::after {
  background: var(--gold-light);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat h3 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--gold-light);
  font-weight: 600;
}

.hero-stat p {
  color: rgba(255,255,255,0.7);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  animation: bobble 2.4s ease-in-out infinite;
}

@keyframes bobble {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.hero-stat p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 6px;
}

/* ============================================
   RITUAL SELECTOR
   ============================================ */
.ritual-section {
  padding: 120px 0;
  background: var(--white);
}

.ritual-section .section-header {
  text-align: center;
  margin-bottom: 72px;
}

.ritual-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ritual-card {
  position: relative;
  padding: 48px 32px;
  background: var(--cream);
  border-radius: 16px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  overflow: hidden;
  border: 1px solid transparent;
}

.ritual-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}

.ritual-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.6rem;
  color: var(--white);
}

.ritual-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.ritual-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

.ritual-card .card-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.ritual-card:hover .card-link {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   WHY NEPAYA
   ============================================ */
.why-section {
  padding: 120px 0;
  background: var(--cream);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-content {
  max-width: 520px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
}

.why-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(107, 29, 53, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.why-feature h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--charcoal);
}

.why-feature p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.7;
}

.why-visual {
  position: relative;
}

.why-visual-card {
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.why-visual-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
}

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

.altitude-stat .number {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1;
}

.altitude-stat .unit {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold);
  margin-left: 8px;
}

.altitude-stat .label {
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.altitude-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.altitude-benefit {
  text-align: center;
  padding: 24px;
  background: var(--cream);
  border-radius: 12px;
}

.altitude-benefit h5 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 4px;
}

.altitude-benefit p {
  font-size: 0.85rem;
  color: var(--gray);
}

/* ============================================
   BESTSELLERS / PRODUCT CARDS
   ============================================ */
.bestsellers-section {
  padding: 120px 0;
  background: var(--white);
}

.bestsellers-section .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.product-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--cream-dark);
  display: block;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}

.bestseller-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

@media (max-width: 1100px) {
  .bestseller-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .bestseller-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(197, 162, 88, 0.2);
}

.product-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--burgundy);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  z-index: 2;
}

.product-card-image {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  overflow: hidden;
}

.product-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.06);
}

.product-card-info {
  padding: 24px;
}

.product-card-type {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.product-card-info h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--charcoal);
  font-family: var(--font-serif);
}

.product-card-taste {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 16px;
  font-style: italic;
}

.product-card-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.product-card-benefits span {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 4px 10px;
  background: rgba(107, 29, 53, 0.06);
  color: var(--burgundy);
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--gray-lighter);
}

.product-card-price {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
}

.product-card-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}

.product-card:hover .product-card-link {
  gap: 12px;
  color: var(--gold-dark);
}

/* ============================================
   HOW IT FITS YOUR DAY
   ============================================ */
.daily-section {
  padding: 120px 0;
  background: var(--cream);
}

.daily-section .section-header {
  text-align: center;
  margin-bottom: 72px;
}

.daily-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.daily-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--burgundy), var(--gold), var(--burgundy));
  opacity: 0.2;
}

.daily-card {
  text-align: center;
  position: relative;
}

.daily-card-time {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 2;
  border: 2px solid var(--gold-light);
}

.daily-card-time span {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--burgundy);
}

.daily-card h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.daily-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

.daily-card .tea-recommend {
  margin-top: 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--burgundy);
  font-style: italic;
}

/* ============================================
   ICED TEA / LATTE SECTION
   ============================================ */
.iced-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 50%, var(--burgundy-light) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.iced-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(197, 162, 88, 0.08);
}

.iced-section .section-label {
  color: var(--gold-light);
}

.iced-section .section-title {
  color: var(--white);
}

.iced-section .section-subtitle {
  color: rgba(255,255,255,0.7);
}

.iced-section .section-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
}

.iced-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}

.iced-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.iced-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}

.iced-card h3 {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.iced-card-type {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.iced-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.iced-card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.iced-card-tags span {
  font-size: 0.72rem;
  padding: 4px 12px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  color: rgba(255,255,255,0.8);
}

/* ============================================
   BRAND STORY (Short)
   ============================================ */
.story-section {
  padding: 120px 0;
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-content .section-title {
  margin-bottom: 24px;
}

.story-content blockquote {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--burgundy);
  line-height: 1.7;
  margin: 32px 0;
  padding-left: 24px;
  border-left: 3px solid var(--gold);
}

.story-content .founder-sig {
  margin-top: 32px;
}

.story-content .founder-sig strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--charcoal);
}

.story-content .founder-sig span {
  font-size: 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.story-visual {
  position: relative;
}

.story-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.story-image-grid .img-tall {
  grid-row: span 2;
  border-radius: 16px;
  overflow: hidden;
  background: var(--cream);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-image-grid .img-small {
  border-radius: 16px;
  overflow: hidden;
  background: var(--cream);
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   SOCIAL PROOF / REVIEWS
   ============================================ */
.reviews-section {
  padding: 120px 0;
  background: var(--cream);
}

.reviews-section .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(197, 162, 88, 0.15);
}

.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.review-card h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.review-card p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--cream-dark);
}

.review-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
}

.review-author-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--charcoal);
}

.review-author-info span {
  font-size: 0.78rem;
  color: var(--gray-light);
}

.review-amazon-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: var(--gray);
  margin-top: 4px;
}

/* ============================================
   CTA BLOCK
   ============================================ */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy));
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before,
.cta-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(197, 162, 88, 0.06);
}

.cta-section::before {
  width: 400px;
  height: 400px;
  top: -200px;
  left: -100px;
}

.cta-section::after {
  width: 300px;
  height: 300px;
  bottom: -150px;
  right: -50px;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .nav-logo {
  color: var(--white);
  margin-bottom: 20px;
  display: inline-block;
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition-fast);
  border: 1px solid rgba(255,255,255,0.08);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

.footer-col a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links a:hover {
  color: rgba(255,255,255,0.6);
}

/* ============================================
   SHOP PAGE
   ============================================ */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--cream) 0%, #F5EDE3 100%);
  text-align: center;
}

.page-hero .section-label {
  margin-bottom: 16px;
}

.page-hero p {
  max-width: 600px;
  margin: 16px auto 0;
}

.shop-filters {
  padding: 32px 0;
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  position: sticky;
  top: var(--nav-height);
  z-index: 100;
}

.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 10px 24px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 100px;
  color: var(--gray);
  background: var(--cream);
  transition: var(--transition-fast);
  cursor: pointer;
  border: 1px solid transparent;
}

.filter-tab:hover {
  color: var(--burgundy);
  border-color: var(--burgundy);
}

.filter-tab.active {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}

.shop-products {
  padding: 64px 0 120px;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* Product Detail Overlay */
.product-detail-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.product-detail-card:hover {
  box-shadow: var(--shadow-xl);
}

.product-detail-image {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.product-detail-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.product-detail-card:hover .product-detail-image img {
  transform: scale(1.05);
}

.product-detail-body {
  padding: 32px;
}

.product-detail-body .product-card-type {
  margin-bottom: 8px;
}

.product-detail-body h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.product-detail-body .taste {
  font-style: italic;
  font-size: 0.92rem;
  color: var(--gray);
  margin-bottom: 16px;
}

.product-detail-body .description {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.product-ingredients {
  margin-bottom: 20px;
}

.product-ingredients h5 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.product-ingredients p {
  font-size: 0.88rem;
  color: var(--charcoal-light);
}

.product-detail-footer {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.product-detail-footer .btn {
  flex: 1;
  padding: 14px 20px;
  font-size: 0.78rem;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, var(--cream) 0%, #EDE4D8 100%);
  text-align: center;
}

.about-hero h1 {
  max-width: 700px;
  margin: 0 auto;
}

.about-hero h1 em {
  font-style: italic;
  color: var(--burgundy);
}

.about-hero p {
  max-width: 580px;
  margin: 24px auto 0;
  font-size: 1.15rem;
}

.about-origin {
  padding: 120px 0;
  background: var(--white);
}

.about-origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.origin-map-placeholder {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, #E8DDD0, #D9CFC0);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.origin-map-placeholder::after {
  content: 'Sourced from the Himalayas';
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--burgundy);
  opacity: 0.5;
}

.about-pillars {
  padding: 120px 0;
  background: var(--cream);
}

.about-pillars .section-header {
  text-align: center;
  margin-bottom: 72px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.pillar-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(197, 162, 88, 0.2);
}

.pillar-card .pillar-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold-light);
  opacity: 0.4;
  margin-bottom: 12px;
}

.pillar-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.pillar-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

/* Founder Section */
.founder-section {
  padding: 120px 0;
  background: var(--white);
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.founder-image-placeholder {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, var(--cream), var(--cream-dark));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-content h2 {
  margin-bottom: 24px;
}

.founder-content .founder-quote {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--burgundy);
  line-height: 1.8;
  margin-bottom: 24px;
  padding-left: 24px;
  border-left: 3px solid var(--gold);
}

.founder-content p {
  margin-bottom: 16px;
}

/* ============================================
   SUSTAINABILITY PAGE
   ============================================ */
.sustain-values {
  padding: 120px 0;
  background: var(--white);
}

.sustain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.sustain-card {
  text-align: center;
  padding: 48px 32px;
  background: var(--cream);
  border-radius: 16px;
  transition: var(--transition);
}

.sustain-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.sustain-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-sm);
}

.sustain-card h3 {
  margin-bottom: 16px;
  color: var(--charcoal);
}

.sustain-card p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
}

/* ============================================
   BREW GUIDE PAGE
   ============================================ */
.brew-steps {
  padding: 120px 0;
  background: var(--white);
}

.brew-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.brew-step {
  text-align: center;
  padding: 40px 24px;
  position: relative;
}

.brew-step-number {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold-light);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
}

.brew-step h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.brew-step p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

.brew-chart {
  padding: 80px 0 120px;
}

.brew-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.brew-table thead th {
  background: var(--burgundy);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 18px 24px;
  text-align: left;
}

.brew-table tbody td {
  padding: 16px 24px;
  font-size: 0.92rem;
  color: var(--charcoal-light);
  border-bottom: 1px solid var(--cream-dark);
}

.brew-table tbody tr:last-child td {
  border-bottom: none;
}

.brew-table tbody tr:hover {
  background: var(--cream);
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  padding: 80px 0 120px;
}

.blog-card {
  background: var(--white);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}

.blog-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.blog-card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--cream), var(--cream-dark));
  overflow: hidden;
}

.blog-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.06);
}

.blog-card-image .placeholder-icon {
  font-size: 3rem;
  opacity: 0.3;
}

.blog-card-body {
  padding: 32px 28px 34px;
}

.blog-card-tag,
.blog-card-category {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.blog-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--burgundy);
  margin-bottom: 14px;
  line-height: 1.3;
}

.blog-card-body p {
  font-size: 0.92rem;
  color: var(--charcoal-light);
  line-height: 1.75;
  margin-bottom: 20px;
}

.blog-card-more {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold);
  transition: letter-spacing 0.3s ease;
}

.blog-card:hover .blog-card-more {
  letter-spacing: 2.2px;
}

.blog-card-meta {
  font-size: 0.78rem;
  color: var(--gray-light);
}

@media (max-width: 960px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================
   ANIMATIONS (Scroll Reveal)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .container, .nav-container {
    padding: 0 40px;
  }

  .products-grid, .ritual-grid, .daily-timeline, .pillars-grid, .brew-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 968px) {
  .container, .nav-container {
    padding: 0 24px;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-description {
    margin: 0 auto 44px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-image-main {
    width: 300px;
  }

  .why-grid, .story-grid, .about-origin-grid, .founder-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .iced-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-dropdown-menu,
  .mega-menu {
    position: static;
    transform: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    display: none;
    background: transparent;
    border: none;
    min-width: auto;
    padding: 12px 0;
  }

  .nav-dropdown.mobile-open .nav-dropdown-menu,
  .nav-dropdown.mobile-open .mega-menu {
    display: block;
  }

  .mega-menu-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .products-grid, .ritual-grid, .sustain-grid, .blog-grid, .shop-grid,
  .daily-timeline, .pillars-grid, .brew-steps-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .filter-tabs {
    overflow-x: auto;
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding-bottom: 8px;
  }

  .filter-tab {
    white-space: nowrap;
  }

  .brew-table {
    display: block;
    overflow-x: auto;
  }
}

/* ============================================
   IMPORT FONTS (Bodoni + Archivo from Google)
   ============================================ */

/* ============================================
   LIFESTYLE IMAGE CARD
   ============================================ */
.lifestyle-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow-md);
  position: relative;
}

.lifestyle-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  min-height: 420px;
  background: var(--burgundy);
}

.image-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.image-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(79,10,37,0.75) 0%, rgba(79,10,37,0.3) 60%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 60px;
  z-index: 2;
}

.image-banner-content {
  max-width: 520px;
  color: var(--white);
}

.image-banner-content .section-label {
  color: var(--gold-light);
}

.image-banner-content h2 {
  color: var(--white);
  font-size: 2.6rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.image-banner-content p {
  color: rgba(255,255,255,0.88);
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

/* ============================================
   SHOP BY CATEGORY CARDS (Homepage)
   ============================================ */
.category-section {
  padding: 120px 0;
  background: var(--cream);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.category-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: var(--transition);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(79,10,37,0.1) 0%, rgba(79,10,37,0.85) 100%);
  z-index: 1;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

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

.category-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px;
  color: var(--white);
  z-index: 2;
}

.category-card-content .label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
  display: block;
}

.category-card-content h3 {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.category-card-content p {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.category-card-content .arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ============================================
   SHOP TAB-STYLE CATEGORY SELECTOR (Shop page)
   ============================================ */
.shop-category-header {
  padding: 40px 0 20px;
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
}

.shop-category-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 6px;
  background: var(--cream);
  border-radius: 100px;
  max-width: 760px;
  margin: 0 auto;
}

.shop-category-tab {
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  transition: var(--transition-fast);
  cursor: pointer;
  border: none;
  background: none;
}

.shop-category-tab.active {
  background: var(--burgundy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.shop-category-tab:hover:not(.active) {
  color: var(--burgundy);
}

.shop-sub-filters {
  background: var(--white);
  padding: 28px 0 4px;
}

.sub-filter-row {
  display: none;
  margin-top: 8px;
}

.sub-filter-row .filter-tab {
  font-size: 0.75rem;
  padding: 9px 20px;
}

/* ============================================
   BREW BY TEA TYPE (Icon-led)
   ============================================ */
.brew-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.brew-type-card {
  background: var(--white);
  border-radius: 20px;
  padding: 48px 40px;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.brew-type-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}

.brew-type-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pink-light);
  border-radius: 50%;
  color: var(--burgundy);
}

.brew-type-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--burgundy);
  fill: none;
  stroke-width: 1.4;
}

.brew-type-card h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--burgundy);
}

.brew-type-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
  padding: 20px 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.brew-spec {
  text-align: center;
}

.brew-spec-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  display: block;
}

.brew-spec-value {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--charcoal);
}

.brew-type-card p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.8;
}

.brew-type-card .blends-in {
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--burgundy);
  font-style: italic;
}

/* Iced tea & latte special cards */
.brew-special-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.brew-special-card {
  background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy));
  color: var(--white);
  border-radius: 20px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.brew-special-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(204, 159, 83, 0.1);
}

.brew-special-icon {
  width: 68px;
  height: 68px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.15);
}

.brew-special-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.4;
}

.brew-special-card h3 {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.brew-special-card p {
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
}

.brew-special-card ol {
  list-style: decimal;
  padding-left: 20px;
  position: relative;
  z-index: 2;
  color: rgba(255,255,255,0.85);
}

.brew-special-card ol li {
  padding: 6px 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.brew-special-card .best-for {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  position: relative;
  z-index: 2;
  font-size: 0.85rem;
  color: var(--gold-light);
  font-style: italic;
}

/* ============================================
   LIFESTYLE SECTIONS (Full-width split)
   ============================================ */
.split-section {
  padding: 0;
  background: var(--white);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.split-content {
  display: flex;
  align-items: center;
  padding: 100px 80px;
}

.split-content-inner {
  max-width: 520px;
}

.split-image {
  position: relative;
  overflow: hidden;
  background: var(--burgundy);
}

.split-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-section.reverse .split-grid {
  direction: rtl;
}

.split-section.reverse .split-content {
  direction: ltr;
}

.split-section.reverse .split-image {
  direction: ltr;
}

.split-section.dark {
  background: var(--burgundy);
  color: var(--white);
}

.split-section.dark h2,
.split-section.dark h3 {
  color: var(--white);
}

.split-section.dark .section-label {
  color: var(--gold-light);
}

.split-section.dark p {
  color: rgba(255,255,255,0.8);
}

@media (max-width: 960px) {
  .split-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .split-image {
    min-height: 360px;
  }
  .split-content {
    padding: 80px 40px;
  }
  .split-section.reverse .split-grid {
    direction: ltr;
  }
}

@media (max-width: 640px) {
  .split-content {
    padding: 64px 24px;
  }
  .split-image {
    min-height: 280px;
  }
}

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.pt-0 { padding-top: 0; }
.hidden { display: none !important; }

/* Smooth image loading */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.4s;
}

img[loading="lazy"].loaded,
img.loaded {
  opacity: 1;
}

/* ============================================
   PAGE HERO WITH IMAGE (About / Sustainability / Blog / Brew)
   ============================================ */
.page-hero-image {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 0 80px;
  color: var(--white);
  text-align: center;
}

.page-hero-image-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  z-index: 0;
}

.page-hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(79, 10, 37, 0.55) 0%,
    rgba(30, 5, 15, 0.75) 100%
  );
  z-index: 1;
}

.page-hero-image .container {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.page-hero-image .section-label {
  color: var(--gold);
  letter-spacing: 4px;
}

.page-hero-image h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin: 18px 0 22px;
}

.page-hero-image h1 em {
  font-style: italic;
  color: var(--gold);
}

.page-hero-image p {
  font-size: 1.12rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================
   ABOUT INLINE STATS
   ============================================ */
.about-stats-inline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--cream-dark);
}

.stat-inline h4 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-inline h4 span {
  font-size: 1.1rem;
  color: var(--gold);
  margin-left: 2px;
}

.stat-inline p {
  font-size: 0.78rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--charcoal-light);
  margin: 0;
}

@media (max-width: 720px) {
  .about-stats-inline {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-hero-image {
    min-height: 50vh;
    padding: 100px 0 60px;
  }
}
