/* 
 * Chaiva Premium Landing Page Stylesheet
 * Brand Values: Natural, Wellness, Trust, Premium Quality, Authentic Taste
 */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables & Design System --- */
:root {
  --color-primary-deep: #1F6B3B;
  --color-primary-herbal: #4CAF50;
  --color-cream-warm: #F8F3EA;
  --color-cream-light: #FAF7F2;
  --color-tea-brown: #7A4A2B;
  --color-gold: #D4A017;
  --color-gold-hover: #B8860B;
  --color-text-dark: #1E2D24;
  --color-text-light: #526356;
  --color-white: #FFFFFF;
  
  /* Glassmorphism & Overlays */
  --color-glass-bg: rgba(255, 255, 255, 0.45);
  --color-glass-border: rgba(255, 255, 255, 0.6);
  --color-glass-shadow: rgba(31, 107, 59, 0.06);
  --color-premium-glow: rgba(212, 160, 23, 0.15);
  
  /* Transitions */
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  /* Layout constraints */
  --max-width: 1200px;
  --border-radius-lg: 24px;
  --border-radius-md: 16px;
  --border-radius-sm: 8px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--color-cream-warm);
  color: var(--color-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Base Headings */
h1, h2, h3, h4 {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  color: var(--color-text-dark);
  line-height: 1.3;
}

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

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

ul {
  list-style: none;
}

button, input {
  font-family: inherit;
  border: none;
  outline: none;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-cream-warm);
}
::-webkit-scrollbar-thumb {
  background: var(--color-primary-deep);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-herbal);
}

/* --- Layout Utilities --- */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.section-padding {
  padding: 8rem 0;
}

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

/* Section Titles */
.section-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-primary-deep);
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--color-gold);
  margin: 1.5rem auto 0;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-weight: 400;
}

/* --- Animations & Keyframes --- */
@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(10deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes steam-rise {
  0% {
    transform: translateY(0) scaleX(1);
    opacity: 0;
  }
  15% {
    transform: translateY(-15px) scaleX(1.1);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-50px) scaleX(1.3);
    opacity: 0.7;
  }
  85% {
    transform: translateY(-80px) scaleX(0.9);
    opacity: 0.25;
  }
  100% {
    transform: translateY(-100px) scaleX(0.7);
    opacity: 0;
  }
}

@keyframes drift {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(100px, 80px) rotate(180deg);
  }
  100% {
    transform: translate(200px, 200px) rotate(360deg);
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; opacity: 0; animation-fill-mode: forwards; }
.delay-2 { animation-delay: 0.4s; opacity: 0; animation-fill-mode: forwards; }
.delay-3 { animation-delay: 0.6s; opacity: 0; animation-fill-mode: forwards; }

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* --- Background Leaves & Shadows --- */
.bg-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.floating-leaf {
  position: absolute;
  width: 40px;
  height: 40px;
  opacity: 0.15;
  filter: blur(0.5px);
  animation: float 6s ease-in-out infinite;
}

.leaf-1 {
  top: 15%;
  left: 10%;
  animation-duration: 8s;
  transform: rotate(45deg);
}

.leaf-2 {
  top: 40%;
  right: 8%;
  animation-duration: 10s;
  animation-delay: 1s;
  transform: rotate(-30deg);
}

.leaf-3 {
  top: 75%;
  left: 5%;
  animation-duration: 7s;
  animation-delay: 2s;
  transform: rotate(15deg);
}

.leaf-4 {
  top: 85%;
  right: 15%;
  animation-duration: 9s;
  animation-delay: 0.5s;
  transform: rotate(60deg);
}

.ambient-shadow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
}

.shadow-green-1 {
  width: 400px;
  height: 400px;
  background: rgba(76, 175, 80, 0.12);
  top: -100px;
  right: -50px;
}

.shadow-cream-1 {
  width: 500px;
  height: 500px;
  background: rgba(212, 160, 23, 0.08);
  bottom: 10%;
  left: -150px;
}

/* --- Header / Navigation --- */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 0;
  z-index: 10;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  height: 120px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: var(--transition-smooth);
}

.logo-img:hover {
  transform: scale(1.03);
}

.logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-primary-deep);
  background: linear-gradient(135deg, var(--color-primary-deep), var(--color-tea-brown));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-tagline {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-text-light);
  display: block;
  margin-top: -4px;
}

.social-top {
  display: flex;
  gap: 1.5rem;
}

.social-link-top {
  color: var(--color-primary-deep);
  font-size: 1.2rem;
  transition: var(--transition-fast);
}

.social-link-top:hover {
  color: var(--color-gold);
  transform: translateY(-2px);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  text-align: left;
}

.hero-tagline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-primary-deep);
  margin-bottom: 1.5rem;
  display: inline-block;
  border-bottom: 1px solid var(--color-gold);
  padding-bottom: 0.25rem;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--color-text-dark);
}

.hero-title span {
  color: var(--color-primary-deep);
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-cta-buttons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--color-primary-deep);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(31, 107, 59, 0.2);
  border: 1px solid var(--color-primary-deep);
}

.btn-primary:hover {
  background-color: var(--color-white);
  color: var(--color-primary-deep);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(31, 107, 59, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-text-dark);
  border: 1px solid rgba(30, 45, 36, 0.2);
}

.btn-secondary:hover {
  background-color: var(--color-primary-deep);
  color: var(--color-white);
  border-color: var(--color-primary-deep);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(31, 107, 59, 0.15);
}

/* Hero Visual & Cup/Steam Animation */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.cup-container {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tea-cup-svg {
  width: 80%;
  height: auto;
  filter: drop-shadow(0 15px 30px rgba(30, 45, 36, 0.1));
}

.steam-overlay {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 150px;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 0) 100%);
}

.steam-line {
  stroke: var(--color-primary-deep);
  stroke-width: 2.5;
  stroke-linecap: round;
  fill: none;
  opacity: 0;
  animation: steam-rise 5s linear infinite;
  transform-origin: bottom center;
}

.steam-line-1 {
  animation-delay: 0.5s;
}

.steam-line-2 {
  animation-delay: 2.2s;
  animation-duration: 6s;
}

.steam-line-3 {
  animation-delay: 3.8s;
  animation-duration: 4.5s;
}

/* --- Premium Product Preview Section --- */
.products {
  background-color: var(--color-cream-light);
  position: relative;
  z-index: 3;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  padding: 1.5rem;
  box-shadow: 0 4px 20px var(--color-glass-shadow);
  border: 1px solid rgba(31, 107, 59, 0.04);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  flex: 1 1 300px;
  max-width: 360px;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(31, 107, 59, 0.08), 0 0 30px var(--color-premium-glow);
  border-color: rgba(212, 160, 23, 0.2);
}

.product-img-wrapper {
  background-color: var(--color-cream-warm);
  border-radius: var(--border-radius-md);
  height: 250px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.product-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--color-primary-deep);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product-title {
  font-size: 1.35rem;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.product-desc {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(31, 107, 59, 0.06);
  padding-top: 1rem;
}

.product-status {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-gold);
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.product-status::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--color-gold);
  border-radius: 50%;
}

.product-learn {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary-deep);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.product-learn i {
  transition: var(--transition-fast);
}

.product-card:hover .product-learn i {
  transform: translateX(4px);
}

/* --- Why Choose Chaiva --- */
.features {
  position: relative;
  z-index: 3;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--color-white);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 4px 25px var(--color-glass-shadow);
  border: 1px solid rgba(31, 107, 59, 0.03);
  transition: var(--transition-smooth);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(31, 107, 59, 0.08);
  border-color: rgba(76, 175, 80, 0.15);
}

.feature-icon-wrapper {
  width: 70px;
  height: 70px;
  background-color: rgba(76, 175, 80, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--color-primary-deep);
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
  background-color: var(--color-primary-deep);
  color: var(--color-white);
  transform: rotateY(360deg);
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* --- Countdown Section --- */
.countdown-section {
  position: relative;
  z-index: 3;
  background: linear-gradient(rgba(31, 107, 59, 0.95), rgba(30, 45, 36, 0.98)), url('assets/707781479_18078839612238157_7097067139689402965_n.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--color-white);
  overflow: hidden;
}

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

.countdown-section .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

.countdown-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.countdown-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  min-width: 140px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: var(--transition-smooth);
}

.countdown-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 160, 23, 0.4);
  background: rgba(255, 255, 255, 0.12);
}

.countdown-number {
  font-family: 'Cinzel', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.countdown-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.8);
}

.live-banner {
  font-size: 3rem;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: var(--color-gold);
  text-shadow: 0 0 20px rgba(212, 160, 23, 0.5);
  animation: float 4s ease-in-out infinite;
  display: none;
}

/* --- Email Subscription Section --- */
.subscribe {
  background-color: var(--color-cream-light);
  position: relative;
  z-index: 3;
}

.subscribe-card {
  max-width: 750px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: 4rem 3rem;
  box-shadow: 0 10px 40px var(--color-glass-shadow);
  border: 1px solid rgba(31, 107, 59, 0.03);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.subscribe-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--color-primary-deep), var(--color-gold), var(--color-primary-herbal));
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  position: relative;
  text-align: left;
}

.form-input {
  width: 100%;
  padding: 1.1rem 1.5rem;
  font-size: 0.95rem;
  border-radius: 50px;
  border: 1px solid rgba(30, 45, 36, 0.12);
  background-color: var(--color-cream-warm);
  color: var(--color-text-dark);
  transition: var(--transition-smooth);
}

.form-input:focus {
  border-color: var(--color-primary-deep);
  background-color: var(--color-white);
  box-shadow: 0 0 0 4px rgba(31, 107, 59, 0.06);
}

.error-message {
  font-size: 0.75rem;
  color: #d9534f;
  margin-top: 0.35rem;
  padding-left: 1rem;
  display: none;
}

.subscribe-btn {
  width: 100%;
  border-radius: 50px;
  font-weight: 700;
}

.success-message {
  display: none;
  animation: fadeIn 0.5s ease forwards;
  padding: 2rem 0;
}

.success-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(76, 175, 80, 0.12);
  color: var(--color-primary-herbal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
}

.success-title {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  color: var(--color-primary-deep);
  margin-bottom: 0.5rem;
}

.success-text {
  color: var(--color-text-light);
}

/* --- About Brand Section ("Our Story") --- */
.about {
  position: relative;
  z-index: 3;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-frame {
  position: relative;
  padding: 1rem;
}

.about-img-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 85%;
  height: 85%;
  border: 2px solid var(--color-gold);
  border-radius: var(--border-radius-lg);
  z-index: 1;
  pointer-events: none;
}

.about-image {
  border-radius: var(--border-radius-lg);
  width: 100%;
  height: 450px;
  object-fit: cover;
  position: relative;
  z-index: 2;
  box-shadow: 0 15px 35px var(--color-glass-shadow);
  display: block;
}

.about-content {
  text-align: left;
}

.about-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.about-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background-color: var(--color-gold);
  margin: 1rem 0 0;
}

.about-text {
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* --- Footer & Social Section --- */
footer {
  background-color: var(--color-text-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 2rem;
  position: relative;
  z-index: 3;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 3.5rem;
  margin-bottom: 2rem;
}

.footer-brand .logo-text {
  background: linear-gradient(135deg, var(--color-white), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand .logo-tagline {
  color: rgba(255, 255, 255, 0.5);
}

.footer-about {
  margin-top: 1rem;
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-links-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.footer-links-title {
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-gold);
  padding-left: 3px;
}

.social-icons {
  display: flex;
  gap: 1.2rem;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-smooth);
}

.social-icon-btn:hover {
  background-color: var(--color-gold);
  color: var(--color-text-dark);
  transform: translateY(-3px);
  border-color: var(--color-gold);
}

.footer-contact-info {
  list-style: none;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1.2rem;
}

.footer-contact-item {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.footer-contact-item svg {
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a {
  transition: var(--transition-fast);
}

.footer-contact-item a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-legal-links {
  display: flex;
  gap: 2rem;
}

.footer-legal-links a:hover {
  color: var(--color-white);
}

/* --- Responsive Layout / Media Queries --- */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  .product-grid {
    gap: 2rem;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-img-frame {
    max-width: 500px;
    margin: 0 auto;
  }
  .about-image {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 5rem 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-content {
    text-align: center;
  }
  .hero-subtitle {
    margin: 0 auto 2rem;
  }
  .hero-cta-buttons {
    justify-content: center;
  }
  .cup-container {
    width: 250px;
    height: 250px;
    margin: 0 auto;
  }
  .countdown-grid {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .countdown-card {
    min-width: 120px;
    padding: 1.5rem 1rem;
  }
  .countdown-number {
    font-size: 2.8rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .logo-img {
    height: 70px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.3rem;
  }
  .product-grid {
    max-width: 380px;
    margin: 0 auto;
  }
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
  .countdown-card {
    width: 45%;
  }
  .subscribe-card {
    padding: 3rem 1.5rem;
  }
  .hero-cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta-buttons .btn {
    width: 100%;
  }
  .footer-legal-links {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .logo-img {
    height: 60px;
  }
}

/* --- Cinematic Preloader Styles --- */
.cinematic-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--color-cream-warm);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.cinematic-loader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), visibility 1s;
}

.loader-content {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Scene 1 Animations */
.loader-cup-container {
  position: absolute;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  animation: cup-appear 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards,
             cup-exit 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}

.loader-cup {
  width: 80px;
  height: 80px;
}

.loader-steam {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 80px;
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 100%);
}

.l-steam {
  stroke: var(--color-primary-deep);
  stroke-width: 2.5;
  stroke-linecap: round;
  fill: none;
  opacity: 0;
  animation: steam-rise-preloader 4s linear infinite;
  transform-origin: bottom center;
}

.l-steam-1 { animation-delay: 0.1s; }
.l-steam-2 { animation-delay: 0.8s; animation-duration: 4.5s; }
.l-steam-3 { animation-delay: 1.5s; animation-duration: 3.5s; }

@keyframes steam-rise-preloader {
  0% { transform: translateY(0) scaleX(1); opacity: 0; }
  15% { transform: translateY(-10px) scaleX(1.1); opacity: 0.4; }
  50% { transform: translateY(-30px) scaleX(1.3); opacity: 0.7; }
  85% { transform: translateY(-50px) scaleX(0.9); opacity: 0.25; }
  100% { transform: translateY(-70px) scaleX(0.7); opacity: 0; }
}

@keyframes cup-appear {
  0% { opacity: 0; transform: scale(0.85) translateY(15px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes cup-exit {
  0% { opacity: 1; transform: scale(1) translateY(0); filter: blur(0px); }
  100% { opacity: 0; transform: scale(1.05) translateY(-15px); filter: blur(4px); }
}

/* Scene 2 Animations */
.loader-leaves-container {
  position: absolute;
  width: 200px;
  height: 200px;
  z-index: 15;
  pointer-events: none;
}

.loader-leaf {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  opacity: 0;
}

.leaf-c-1 { animation: leaf-1-journey 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.8s forwards; }
.leaf-c-2 { animation: leaf-2-journey 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.9s forwards; }
.leaf-c-3 { animation: leaf-3-journey 1.2s cubic-bezier(0.25, 1, 0.5, 1) 1s forwards; }
.leaf-c-4 { animation: leaf-4-journey 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.85s forwards; }
.leaf-c-5 { animation: leaf-5-journey 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.95s forwards; }
.leaf-c-6 { animation: leaf-6-journey 1.2s cubic-bezier(0.25, 1, 0.5, 1) 1.05s forwards; }

@keyframes leaf-1-journey {
  0% { opacity: 0; transform: translate(0, 10px) scale(0) rotate(0deg); }
  20% { opacity: 0.8; transform: translate(20px, -30px) scale(0.6) rotate(45deg); filter: blur(0.5px); }
  60% { opacity: 1; transform: translate(70px, 0) scale(1) rotate(180deg); }
  80% { opacity: 1; transform: translate(70px, 0) scale(1) rotate(180deg); }
  100% { opacity: 0; transform: translate(0, -20px) scale(0.1) rotate(270deg); filter: blur(3px); }
}

@keyframes leaf-2-journey {
  0% { opacity: 0; transform: translate(0, 10px) scale(0) rotate(0deg); }
  20% { opacity: 0.8; transform: translate(10px, -40px) scale(0.6) rotate(-30deg); filter: blur(0.5px); }
  60% { opacity: 1; transform: translate(35px, -60px) scale(1) rotate(120deg); }
  80% { opacity: 1; transform: translate(35px, -60px) scale(1) rotate(120deg); }
  100% { opacity: 0; transform: translate(0, -20px) scale(0.1) rotate(240deg); filter: blur(3px); }
}

@keyframes leaf-3-journey {
  0% { opacity: 0; transform: translate(0, 10px) scale(0) rotate(0deg); }
  20% { opacity: 0.8; transform: translate(-10px, -40px) scale(0.6) rotate(60deg); filter: blur(0.5px); }
  60% { opacity: 1; transform: translate(-35px, -60px) scale(1) rotate(-60deg); }
  80% { opacity: 1; transform: translate(-35px, -60px) scale(1) rotate(-60deg); }
  100% { opacity: 0; transform: translate(0, -20px) scale(0.1) rotate(-150deg); filter: blur(3px); }
}

@keyframes leaf-4-journey {
  0% { opacity: 0; transform: translate(0, 10px) scale(0) rotate(0deg); }
  20% { opacity: 0.8; transform: translate(-20px, -30px) scale(0.6) rotate(-45deg); filter: blur(0.5px); }
  60% { opacity: 1; transform: translate(-70px, 0) scale(1) rotate(-180deg); }
  80% { opacity: 1; transform: translate(-70px, 0) scale(1) rotate(-180deg); }
  100% { opacity: 0; transform: translate(0, -20px) scale(0.1) rotate(-270deg); filter: blur(3px); }
}

@keyframes leaf-5-journey {
  0% { opacity: 0; transform: translate(0, 10px) scale(0) rotate(0deg); }
  20% { opacity: 0.8; transform: translate(-15px, -10px) scale(0.6) rotate(-90deg); filter: blur(0.5px); }
  60% { opacity: 1; transform: translate(-35px, 60px) scale(1) rotate(-240deg); }
  80% { opacity: 1; transform: translate(-35px, 60px) scale(1) rotate(-240deg); }
  100% { opacity: 0; transform: translate(0, -20px) scale(0.1) rotate(-330deg); filter: blur(3px); }
}

@keyframes leaf-6-journey {
  0% { opacity: 0; transform: translate(0, 10px) scale(0) rotate(0deg); }
  20% { opacity: 0.8; transform: translate(15px, -10px) scale(0.6) rotate(90deg); filter: blur(0.5px); }
  60% { opacity: 1; transform: translate(35px, 60px) scale(1) rotate(240deg); }
  80% { opacity: 1; transform: translate(35px, 60px) scale(1) rotate(240deg); }
  100% { opacity: 0; transform: translate(0, -20px) scale(0.1) rotate(330deg); filter: blur(3px); }
}

/* Scene 3 Animations */
.loader-brand-container {
  position: absolute;
  z-index: 20;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  animation: logo-fade-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) 2.0s forwards,
             logo-exit 0.6s cubic-bezier(0.16, 1, 0.3, 1) 3.2s forwards;
}

.loader-logo-icon {
  margin-bottom: 0.8rem;
  display: flex;
  justify-content: center;
}

.loader-logo-img {
  max-width: 220px;
  max-height: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

@keyframes logo-fade-in {
  0% { opacity: 0; transform: scale(0.9) translateY(15px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes logo-exit {
  0% { opacity: 1; transform: scale(1) translateY(0); filter: blur(0px); }
  100% { opacity: 0; transform: scale(0.95) translateY(-10px); filter: blur(5px); }
}

/* Scene 4 Animations */
.loader-status-text {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-text-light);
  opacity: 0;
  text-align: center;
  width: 90%;
  z-index: 30;
  animation: status-fade-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) 3.7s forwards;
}

@keyframes status-fade-in {
  0% { opacity: 0; transform: translate(-50%, 10px); }
  100% { opacity: 0.85; transform: translate(-50%, 0); }
}

/* --- Reveal Site & Hero Sequence --- */
body.loading-state {
  overflow: hidden; /* Lock scroll during cinematic intro */
}

/* Hide header initially for reveal */
header {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

body.reveal-hero header {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.hero-content .hero-tagline,
.hero-content .hero-title,
.hero-content .hero-subtitle,
.hero-content .hero-cta-buttons,
.hero-visual {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

body.reveal-hero .hero-content .hero-tagline { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
body.reveal-hero .hero-content .hero-title { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }
body.reveal-hero .hero-content .hero-subtitle { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }
body.reveal-hero .hero-content .hero-cta-buttons { opacity: 1; transform: translateY(0); transition-delay: 0.65s; }
body.reveal-hero .hero-visual { opacity: 1; transform: translateY(0); transition-delay: 0.8s; }

/* --- Fast-Load Override for Returning Session Visitors --- */
.fast-load .cinematic-loader {
  display: none !important;
}
.fast-load body.loading-state {
  overflow: auto !important;
}
.fast-load header {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
.fast-load .hero-content .hero-tagline,
.fast-load .hero-content .hero-title,
.fast-load .hero-content .hero-subtitle,
.fast-load .hero-content .hero-cta-buttons,
.fast-load .hero-visual {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
