/* ===== FOUNDRY/SQUARESPACE BASE RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== SKIP LINK (Accessibility) ===== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 9999;
  background: var(--brand-gold, #f0be4b);
  color: var(--brand-black, #0A0A0A);
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0 0 8px 8px;
}

.skip-link:focus {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: auto;
  overflow: visible;
  outline: 2px solid var(--brand-black, #0A0A0A);
  outline-offset: 2px;
}

:root {
  /* Brand Colors - Premium/Vibrant */
  --brand-gold: #f5be40;
  --brand-black: #0A0A0A;
  --brand-charcoal: #171717;
  --brand-red: #C62828;
  --ivory: #FAFAF9;

  /* Layered Blacks - Create depth */
  --bg-deep: #0A0A0A;
  --bg-elevated: #141414;
  --bg-hover: #1A1A1A;
  --bg-surface: #0D0D0D;

  /* Gold Variations */
  --gold-bright: #FFE082;
  --gold-dim: #FFC107;

  /* Squarespace Foundry Typography Scale */
  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  
  /* Foundry Spacing - Fluid Clamps */
  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(0.75rem, 1.5vw, 1rem);
  --space-md: clamp(1rem, 2vw, 1.5rem);
  --space-lg: clamp(1.5rem, 3vw, 2.5rem);
  --space-xl: clamp(2rem, 4vw, 4rem);
  --space-2xl: clamp(3rem, 6vw, 6rem);
  --space-3xl: clamp(4rem, 8vw, 8rem);

  /* Foundry Z-Index Scale */
  --z-below: -1;
  --z-content: 1;
  --z-overlay: 2;
  --z-above-overlay: 3;
  --z-navbar: 4;
  --z-menu: 5;

  /* Foundry Transitions */
  --transition-standard: 400ms cubic-bezier(0.4, 0.0, 0.2, 1);
  --transition-quick: 200ms cubic-bezier(0.4, 0.0, 0.2, 1);

  /* Text Colors */
  --text-primary: #FAFAF9;
  --text-secondary: rgba(250, 250, 249, 0.8);
  --text-muted: rgba(250, 250, 249, 0.6);

  /* Premium Easing Curves - Squarespace Signature */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-circ: cubic-bezier(0.85, 0, 0.15, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--brand-black);
  color: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== SQUARESPACE FOUNDRY UTILITIES ===== */

/* Section Container - vw-based padding */
.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 6vw;
  padding-right: 6vw;
}

@media (min-width: 900px) {
  .section-container {
    padding-left: 4vw;
    padding-right: 4vw;
  }
}

/* Glassmorphism - 0.97 opacity (Foundry signature) */
.glass {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(246, 189, 66, 0.1);
}

/* Foundry Typography Scale */
.text-h1-sm { font-size: 2.5rem; line-height: 1.1; }
.text-h1-md { font-size: 3.5rem; line-height: var(--lh-none); }
.text-h1-lg { font-size: 5rem; line-height: 1; }

.text-h2-sm { font-size: 1.875rem; line-height: 1.2; }
.text-h2-md { font-size: 2.25rem; line-height: var(--lh-tight); }
.text-h2-lg { font-size: 3rem; line-height: 1.1; }

.text-h3-sm { font-size: 1.5rem; line-height: var(--lh-snug); }
.text-h3-md { font-size: 1.75rem; line-height: 1.2; }
.text-h3-lg { font-size: 2rem; line-height: var(--lh-tight); }

.text-body { font-size: 1rem; line-height: 1.75; }
.text-body-lg { font-size: 1.125rem; line-height: 1.75; }
.text-small { font-size: 0.875rem; line-height: 1.5; }

@media (min-width: 600px) {
  .text-h1-responsive { font-size: 3.5rem; }
  .text-h2-responsive { font-size: 2.25rem; }
  .text-h3-responsive { font-size: 1.75rem; }
}

@media (min-width: 1200px) {
  .text-h1-responsive { font-size: 5rem; }
  .text-h2-responsive { font-size: 3rem; }
  .text-h3-responsive { font-size: 2rem; }
}

/* Foundry Link Transitions - 400ms */
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-standard);
}

a:hover {
  color: var(--brand-gold);
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-navbar);
  transition: all var(--transition-standard);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(246, 189, 66, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo img {
  height: 280px;
  width: auto;
  transition: transform var(--transition-standard);
}

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

.nav-links {
  display: none;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--brand-gold);
  transition: width var(--transition-standard);
}

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

.nav-cta {
  background: var(--brand-gold);
  color: var(--brand-black);
  padding: 0.875rem 2rem;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition-standard);
  border: none;
  cursor: pointer;
}

.nav-cta:hover {
  background: var(--ivory);
  color: var(--brand-black);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(246, 189, 66, 0.3);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

@media (min-width: 900px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background: var(--ivory);
  transition: all var(--transition-standard);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
  background: transparent;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-below);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
    rgba(10, 10, 10, 0.3) 0%,
    rgba(10, 10, 10, 0.7) 100%
  );
  z-index: var(--z-content);
}

.hero-content {
  position: relative;
  z-index: var(--z-overlay);
  text-align: center;
  max-width: 900px;
  margin: 6rem auto 0; /* Increase top margin to clear navbar */
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.2s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.4s forwards;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  color: rgba(250, 250, 249, 0.8);
  max-width: 600px;
  margin: 0 auto 3rem;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.6s forwards;
}

.hero-cta-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.8s forwards;
}

.btn-primary {
  background: var(--brand-gold);
  color: var(--brand-black);
  padding: 1rem 2.5rem;
  border-radius: 2px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition-standard);
  border: none;
  cursor: pointer;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--ivory);
  color: var(--brand-black);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(246, 189, 66, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--ivory);
  padding: 1rem 2.5rem;
  border: 1px solid var(--ivory);
  border-radius: 2px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition-standard);
  cursor: pointer;
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--ivory);
  color: var(--brand-black);
  border-color: var(--ivory);
}

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

/* ===== SECTIONS ===== */
section {
  padding: var(--space-3xl) 0;
  background: var(--bg-deep);
  position: relative;
}

@media (max-width: 900px) {
  section {
    padding: var(--space-2xl) 0;
  }
}

/* Force dark background for elevated sections to ensure readability of charcoal cards */
.section-elevated {
  background: var(--bg-elevated) !important;
}

.section-surface {
  background: var(--bg-surface);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-2xl);
  padding-top: 2rem; /* Avoid being cut off */
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.section-description {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-secondary);
}

/* ===== MENU SECTION ===== */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 600px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.menu-item {
  background: var(--brand-charcoal);
  border-radius: 4px;
  overflow: hidden;
  transition: transform var(--transition-standard), box-shadow var(--transition-standard);
  cursor: pointer;
}

.menu-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(246, 189, 66, 0.2);
}

.menu-item-image {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-standard);
}

.menu-item:hover .menu-item-image img {
  transform: scale(1.1);
}

.menu-item-content {
  padding: 1.25rem;
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--ivory);
}

.menu-item-description {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  color: rgba(250, 250, 249, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.menu-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-item-price {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brand-gold);
}

.btn-add {
  background: transparent;
  color: var(--brand-gold);
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--brand-gold);
  border-radius: 2px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition-standard);
  cursor: pointer;
}

.btn-add:hover {
  background: var(--brand-gold);
  color: var(--brand-black);
}

/* ===== SERVICES SECTION ===== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--brand-charcoal);
  border-radius: 4px;
  transition: all var(--transition-standard);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
  background: var(--bg-hover);
  transform: translateY(-8px);
  border-color: var(--brand-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: var(--brand-gold);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--brand-gold);
}

.service-description {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-secondary);
  line-height: var(--lh-body);
}

/* ===== ABOUT SECTION ===== */
.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-text {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: var(--lh-body);
  color: rgba(250, 250, 249, 0.8);
  margin-bottom: 2rem;
}

/* ===== LOCATION SECTION ===== */
.location-card {
  background: var(--brand-charcoal);
  border-radius: 4px;
  padding: 3rem;
  max-width: 600px;
  margin: 0 auto;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.info-icon {
  font-size: 1.5rem;
  color: var(--brand-gold);
  flex-shrink: 0;
}

.info-content h3 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 0.5rem;
}

.info-content p {
  font-family: var(--font-body);
  font-weight: 300;
  color: rgba(250, 250, 249, 0.8);
  line-height: 1.6;
}

/* ===== FOOTER ===== */
footer {
  background: var(--brand-charcoal);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(246, 189, 66, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 900px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-logo img {
  height: 60px;
  margin-bottom: 1.5rem;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 300;
  font-style: italic;
  color: var(--brand-gold);
  margin-bottom: 1rem;
}

.footer-description {
  font-family: var(--font-body);
  font-weight: 300;
  color: rgba(250, 250, 249, 0.6);
  line-height: var(--lh-body);
}

.footer-section h4 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-link {
  font-family: var(--font-body);
  font-weight: 300;
  color: rgba(250, 250, 249, 0.7);
  transition: all var(--transition-standard);
  display: inline-block;
}

.footer-link:hover {
  color: var(--brand-gold);
  transform: translateX(4px);
}

/* ===== ICONS ===== */
.icon-star {
  width: 1em;
  height: 1em;
  fill: currentColor;
  vertical-align: -0.125em;
}

.icon-check {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.125em;
}

.rating-stars,
.trust-stars,
.review-stars {
  display: flex;
  gap: 2px;
  color: var(--brand-gold);
}

.marquee-star {
  color: var(--brand-black);
  display: inline-flex;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 250, 249, 0.1);
  text-align: center;
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(250, 250, 249, 0.5);
}

/* ===== MOBILE BOTTOM NAV ===== */
.mobile-nav {
  display: none;
}

/* ===== REVIEWS SECTION ===== */
.reviews-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 900px) {
  .reviews-header {
    flex-direction: row;
    justify-content: space-between;
  }
}

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

@media (min-width: 900px) {
  .rating-showcase {
    text-align: left;
  }
}

.rating-stars {
  font-size: 2rem;
  letter-spacing: var(--ls-caps);
  margin-bottom: 0.5rem;
}

.rating-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--brand-gold);
  line-height: 1;
}

.rating-text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(250, 250, 249, 0.6);
  margin-top: 0.5rem;
}

.review-platforms {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 900px) {
  .review-platforms {
    justify-content: flex-end;
  }
}

.platform-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(250, 250, 249, 0.05);
  border: 1px solid rgba(250, 250, 249, 0.1);
  padding: 0.75rem 1.25rem;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(250, 250, 249, 0.8);
  transition: all var(--transition-standard);
}

.platform-link:hover {
  background: rgba(246, 189, 66, 0.1);
  border-color: rgba(246, 189, 66, 0.3);
  color: var(--brand-gold);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 600px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: var(--brand-charcoal);
  border-radius: 4px;
  padding: 2rem;
  border: 1px solid rgba(250, 250, 249, 0.05);
  transition: all var(--transition-standard);
}

.review-card:hover {
  border-color: rgba(246, 189, 66, 0.2);
  transform: translateY(-4px);
}

.review-stars {
  color: var(--brand-gold);
  font-size: 1rem;
  letter-spacing: var(--ls-widest);
  margin-bottom: 1rem;
}

.review-text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(250, 250, 249, 0.85);
  line-height: var(--lh-body);
  margin-bottom: 1.5rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-gold);
  color: var(--brand-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ivory);
}

.author-source {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(250, 250, 249, 0.5);
}

/* ===== TEA SECTION ===== */
.tea-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 900px) {
  .tea-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tea-category {
  background: rgba(10, 10, 10, 0.5);
  border: 1px solid rgba(246, 189, 66, 0.2);
  border-radius: 4px;
  padding: 2.5rem;
}

.tea-category-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--brand-gold);
  margin-bottom: 0.5rem;
}

.tea-category-subtitle {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(250, 250, 249, 0.5);
  margin-bottom: 2rem;
}

.tea-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tea-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(250, 250, 249, 0.1);
}

.tea-item:last-child {
  border-bottom: none;
}

.tea-name {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--ivory);
}

.tea-price {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-gold);
}

/* ===== TEA PROMO SECTION ===== */
.tea-promo-section {
  padding: 6rem 0;
  overflow: hidden;
}

.tea-promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 900px) {
  .tea-promo-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.tea-promo-badge {
  display: inline-block;
  background: rgba(246, 189, 66, 0.15);
  border: 1px solid rgba(246, 189, 66, 0.3);
  color: var(--brand-gold);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.tea-promo-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 900px) {
  .tea-promo-title {
    font-size: 3.5rem;
  }
}

.tea-promo-text {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(250, 250, 249, 0.7);
  line-height: var(--lh-body);
  margin-bottom: 2rem;
  max-width: 500px;
}

.tea-promo-price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--brand-gold);
}

.price-label {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: rgba(250, 250, 249, 0.5);
}

.tea-promo-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.tea-promo-visual {
  position: relative;
  min-height: 400px;
}

.tea-promo-cards {
  position: relative;
  width: 100%;
  height: 400px;
}

.tea-card {
  position: absolute;
  width: 160px;
  height: 200px;
  background: var(--brand-charcoal);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition-standard);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tea-card:hover {
  transform: translateY(-10px) scale(1.05);
  z-index: 10;
}

.tea-card-gradient {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}

.tea-card-gradient.berry { background: linear-gradient(135deg, #8B2252, #B03060); }
.tea-card-gradient.blue { background: linear-gradient(135deg, #4A90D9, #5BA8E5); }
.tea-card-gradient.orange { background: linear-gradient(135deg, #FF6B35, #FF8C42); }
.tea-card-gradient.tropical { background: linear-gradient(135deg, #FFD93D, #4ECDC4); }

.tea-card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.tea-card-icon-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.tea-card-name {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ivory);
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 0.5rem;
}

.tea-card-1 { top: 20px; left: 10%; transform: rotate(-8deg); }
.tea-card-2 { top: 0; left: 35%; transform: rotate(4deg); z-index: 2; }
.tea-card-3 { top: 40px; right: 25%; transform: rotate(-3deg); }
.tea-card-4 { top: 80px; right: 5%; transform: rotate(6deg); }

@media (max-width: 600px) {
  .tea-card { width: 120px; height: 160px; }
  .tea-card-icon { font-size: 2rem; }
  .tea-card-1 { left: 5%; }
  .tea-card-4 { right: 0; }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

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

.animate-fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-fade-left.animate-in,
.animate-fade-right.animate-in {
  opacity: 1;
  transform: translateX(0);
}

/* ===== STICKY MOBILE ORDER BUTTON ===== */
.sticky-order-btn {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--brand-gold);
  color: var(--brand-black);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 8px 32px rgba(246, 189, 66, 0.4);
  transition: all var(--transition-standard);
  animation: pulse-glow 2s infinite;
}

.sticky-order-btn:hover {
  background: var(--ivory);
  color: var(--brand-black);
  transform: translateX(-50%) scale(1.05);
  box-shadow: 0 12px 40px rgba(246, 189, 66, 0.5);
}

.sticky-order-btn .order-icon {
  font-size: 1.25rem;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 8px 32px rgba(246, 189, 66, 0.4);
  }
  50% {
    box-shadow: 0 8px 48px rgba(246, 189, 66, 0.6);
  }
}

@media (min-width: 900px) {
  .sticky-order-btn {
    display: none;
  }
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
  padding: 5rem 0;
}

.newsletter-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .newsletter-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.newsletter-text h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--brand-black);
  margin-bottom: 0.75rem;
}

@media (min-width: 900px) {
  .newsletter-text h2 {
    font-size: 2.5rem;
  }
}

.newsletter-text p {
  font-size: 1rem;
  color: rgba(10, 10, 10, 0.7);
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 600px) {
  .newsletter-form {
    flex-direction: row;
  }
}

.newsletter-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  background: var(--ivory);
  border: 2px solid transparent;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--brand-black);
  transition: border-color var(--transition-standard);
}

.newsletter-form input:focus {
  outline: 2px solid var(--brand-gold);
  outline-offset: 2px;
  border-color: var(--brand-black);
}

.newsletter-form input::placeholder {
  color: rgba(10, 10, 10, 0.7);
}

.newsletter-form button {
  background: var(--brand-black);
  color: var(--ivory);
  padding: 1rem 2rem;
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-standard);
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--brand-charcoal);
  transform: translateY(-2px);
}

.newsletter-disclaimer {
  font-size: 0.75rem;
  color: rgba(10, 10, 10, 0.7);
  margin-top: 0.5rem;
}

/* ===== GOOGLE MAPS EMBED ===== */
.map-container {
  margin-top: 3rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(246, 189, 66, 0.2);
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
  filter: grayscale(80%) contrast(1.1);
  transition: filter var(--transition-standard);
}

.map-container:hover iframe {
  filter: grayscale(0%) contrast(1);
}

@media (min-width: 900px) {
  .map-container iframe {
    height: 400px;
  }
}

/* ===== ROLLING MARQUEE (Squarespace Pattern) ===== */
.marquee-container {
  background: var(--brand-gold);
  overflow: hidden;
  padding: 1rem 0;
  white-space: nowrap;
}

.marquee-content {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-black);
}

.marquee-star {
  color: var(--brand-black);
  font-size: 0.75rem;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== FAQ ACCORDION (Squarespace Pattern) ===== */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.accordion-item {
  border-bottom: 1px solid rgba(250, 250, 249, 0.1);
}

.accordion-item:first-child {
  border-top: 1px solid rgba(250, 250, 249, 0.1);
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all var(--transition-standard);
}

.accordion-header:hover {
  color: var(--brand-gold);
}

.accordion-title {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--ivory);
  transition: color var(--transition-standard);
}

.accordion-header:hover .accordion-title {
  color: var(--brand-gold);
}

.accordion-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  margin-left: 1rem;
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background: var(--brand-gold);
  transition: transform var(--transition-standard);
}

.accordion-icon::before {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.accordion-icon::after {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.accordion-item.active .accordion-icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

.accordion-body {
  padding: 0 0 1.5rem 0;
}

.accordion-body p {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(250, 250, 249, 0.7);
  line-height: var(--lh-body);
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--brand-charcoal);
  border: 1px solid rgba(246, 189, 66, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-standard);
  z-index: 99;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
}

.back-to-top svg {
  color: var(--brand-gold);
  transition: color var(--transition-standard);
}

.back-to-top:hover svg {
  color: var(--brand-black);
}

@media (max-width: 900px) {
  .back-to-top {
    bottom: 90px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}

/* Mobile-specific adjustments */
@media (max-width: 600px) {
  .accordion-title {
    font-size: 1rem;
  }

  .accordion-header {
    padding: 1.25rem 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .tea-promo-title {
    font-size: 1.75rem;
  }

  .marquee-item {
    font-size: 0.8125rem;
    padding: 0 1.5rem;
  }
}

/* ===== UI ENHANCEMENTS ===== */

/* 1. MOBILE SLIDE-OUT MENU */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-standard);
  z-index: calc(var(--z-navbar) + 1);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background: var(--brand-charcoal);
  z-index: calc(var(--z-navbar) + 2);
  transition: transform var(--transition-standard);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
  transform: translateX(-320px);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(246, 189, 66, 0.2);
}

.mobile-menu-close {
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid rgba(246, 189, 66, 0.3);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: all var(--transition-standard);
}

.mobile-menu-close:hover {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
}

.mobile-menu-close::before,
.mobile-menu-close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--ivory);
  transition: background var(--transition-standard);
}

.mobile-menu-close:hover::before,
.mobile-menu-close:hover::after {
  background: var(--brand-black);
}

.mobile-menu-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu-link {
  padding: 1.25rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-standard);
  position: relative;
  padding-left: 0;
}

.mobile-menu-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--brand-gold);
  transition: width var(--transition-standard);
}

.mobile-menu-link:hover {
  color: var(--brand-gold);
  padding-left: 1.5rem;
}

.mobile-menu-link:hover::before {
  width: 1rem;
}

.mobile-menu-cta {
  margin-top: auto;
  padding-top: 2rem;
}

.mobile-menu-cta .btn-primary {
  width: 100%;
  text-align: center;
  display: block;
}

/* Hamburger Animation */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* 2. IMAGE HOVER ZOOM EFFECTS */
.menu-item-image img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-item:hover .menu-item-image img {
  transform: scale(1.1);
}

/* Image Overlay on Hover */
.menu-item-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 50%,
    rgba(246, 189, 66, 0.1) 100%
  );
  opacity: 0;
  transition: opacity var(--transition-standard);
}

.menu-item:hover .menu-item-image::after {
  opacity: 1;
}

/* 3. PAGE PRELOADER */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--brand-black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  width: 120px;
  margin-bottom: 2rem;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(246, 189, 66, 0.2);
  border-top-color: var(--brand-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.95); }
}

/* 4. ANIMATED COUNTERS */
.counter-value {
  display: inline-block;
  font-feature-settings: 'tnum' 1;
}

.counter-value.counting {
  animation: counterPop 0.3s ease;
}

@keyframes counterPop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Rating Stars Animation */
.rating-stars {
  display: inline-flex;
  gap: 2px;
}

.rating-stars span {
  display: inline-block;
  animation: starPop 0.3s ease backwards;
}

.rating-stars span:nth-child(1) { animation-delay: 0.1s; }
.rating-stars span:nth-child(2) { animation-delay: 0.2s; }
.rating-stars span:nth-child(3) { animation-delay: 0.3s; }
.rating-stars span:nth-child(4) { animation-delay: 0.4s; }
.rating-stars span:nth-child(5) { animation-delay: 0.5s; }

@keyframes starPop {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); opacity: 1; }
}

/* 5. TESTIMONIAL CAROUSEL */
.reviews-carousel {
  position: relative;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reviews-track .review-card {
  flex: 0 0 100%;
  min-width: 100%;
}

@media (min-width: 768px) {
  .reviews-track .review-card {
    flex: 0 0 50%;
    min-width: 50%;
  }
}

@media (min-width: 1024px) {
  .reviews-track .review-card {
    flex: 0 0 33.333%;
    min-width: 33.333%;
  }
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(246, 189, 66, 0.3);
  color: var(--ivory);
  cursor: pointer;
  transition: all var(--transition-standard);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: var(--brand-black);
  transform: scale(1.1);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(246, 189, 66, 0.3);
  border: none;
  cursor: pointer;
  transition: all var(--transition-standard);
  padding: 0;
}

.carousel-dot.active {
  background: var(--brand-gold);
  transform: scale(1.3);
}

.carousel-dot:hover {
  background: var(--brand-gold);
}

/* 6. MICRO-INTERACTIONS */

/* Button Ripple Effect */
.btn-primary,
.btn-secondary,
.nav-cta {
  position: relative;
  overflow: hidden;
}

.btn-primary::after,
.btn-secondary::after,
.nav-cta::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:active::after,
.btn-secondary:active::after,
.nav-cta:active::after {
  width: 300px;
  height: 300px;
  opacity: 0;
}

/* Card Lift Effect */
.service-card,
.review-card,
.tea-card,
.location-card {
  transition: transform var(--transition-standard),
              box-shadow var(--transition-standard);
}

.service-card:hover,
.location-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.review-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

/* Input Focus Effects */
input:focus,
textarea:focus {
  outline: 2px solid var(--brand-gold);
  outline-offset: 2px;
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 3px rgba(246, 189, 66, 0.1);
}

/* Link Underline Animation */
.footer-link {
  position: relative;
  display: inline-block;
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--brand-gold);
  transition: width var(--transition-standard);
}

.footer-link:hover::after {
  width: 100%;
}

/* Icon Bounce on Hover */
.service-icon {
  display: inline-block;
  transition: transform var(--transition-standard);
}

.service-card:hover .service-icon {
  animation: iconBounce 0.5s ease;
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  25% { transform: translateY(-8px); }
  50% { transform: translateY(-4px); }
  75% { transform: translateY(-6px); }
}

/* FAQ Accordion Smooth Animation */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

/* 7. PARALLAX HERO EFFECT */
.hero-bg.parallax {
  transform: translateZ(0);
  will-change: transform;
}

.hero-bg.parallax img {
  transform: scale(1.1);
  transition: transform 0.1s linear;
}

/* Floating Animation for Hero Elements */
.hero-tagline {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Hero Content Stagger Animation */
.hero-content.animate-in .hero-tagline {
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.hero-content.animate-in .hero-title {
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.hero-content.animate-in .hero-subtitle {
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.hero-content.animate-in .hero-cta-group {
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.8s;
  opacity: 0;
}

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

/* Smooth Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--ivory);
  opacity: 0.7;
  animation: scrollBounce 2s infinite;
}

.scroll-indicator-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--ivory);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator-mouse::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--brand-gold);
  border-radius: 2px;
  animation: scrollWheel 1.5s infinite;
}

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

@keyframes scrollWheel {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ===== REFINED UI COMPONENTS ===== */

/* Section Rhythm */
section {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--brand-black);
}

.section-elevated {
  background: var(--bg-elevated);
}

.section-surface {
  background: var(--bg-surface);
}

/* Menu Badges & Tags */
.menu-item {
  position: relative;
  background: var(--brand-charcoal);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-standard);
}

.menu-item:hover {
  transform: translateY(-8px);
  border-color: var(--brand-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.menu-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.4rem 0.8rem;
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--ls-widest);
  border-radius: 2px;
  z-index: 10;
  background: var(--brand-gold);
  color: var(--brand-black);
}

.menu-item-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.diet-tag {
  font-size: var(--fs-2xs);
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  background: rgba(240, 190, 75, 0.1);
  color: var(--brand-gold);
  border: 1px solid rgba(240, 190, 75, 0.2);
}

/* Recognition Section */
.recognition-section {
  background: var(--brand-black);
  padding: 6rem 0;
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.recognition-card {
  text-align: center;
  padding: 2rem;
  background: var(--brand-charcoal);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.recognition-stat {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--brand-gold);
  margin-bottom: 0.5rem;
}

.recognition-label {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 0.25rem;
}

.recognition-detail {
  font-size: var(--fs-sm);
  color: rgba(250, 250, 249, 0.6);
}

.recognition-icon {
  color: var(--brand-gold);
  margin-bottom: 1rem;
}

/* Recognition Badges */
.recognition-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.badge-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--brand-gold);
  transform: translateY(-2px);
}

.badge-icon {
  color: var(--brand-gold);
  display: flex;
  align-items: center;
}

.badge-text {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: 0.02em;
}

/* Newsletter Refinement */
.newsletter-section {
  background: var(--brand-gold);
  color: var(--brand-black);
}

.newsletter-section h2 {
  color: var(--brand-black);
  font-family: var(--font-display);
  font-weight: 600;
}

.newsletter-section p {
  color: rgba(0, 0, 0, 0.7);
}

.newsletter-form input {
  background: var(--ivory);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.newsletter-form button {
  background: var(--brand-black);
  color: var(--ivory);
}

/* FAQ Accordion Fix */
.accordion-header {
  color: var(--ivory);
  font-weight: 500;
}

.accordion-item.active .accordion-header {
  color: var(--brand-gold);
}

/* ===== EVERY OTHER SECTION YELLOW REDESIGN ===== */

/* 1. Target section-elevated to be the Yellow Section */
.section-elevated {
  background-color: var(--brand-gold) !important;
  background: var(--brand-gold) !important;
  color: var(--brand-black) !important;
}

.section-elevated .section-title {
  color: var(--brand-black) !important;
  font-weight: 700 !important;
}

.section-elevated .section-description {
  color: rgba(0, 0, 0, 0.8) !important;
}

.section-elevated .section-label {
  color: rgba(0, 0, 0, 0.6) !important;
  text-shadow: none !important;
}

.section-elevated .section-label::after {
  background: var(--brand-black) !important;
}

/* 2. Premium Dark Cards on Yellow Background */
.section-elevated .service-card,
.section-elevated .review-card,
.section-elevated .tea-card,
.section-elevated .location-card {
  background: var(--brand-black) !important;
  color: var(--ivory) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
}

.section-elevated .service-card:hover,
.section-elevated .review-card:hover,
.section-elevated .tea-card:hover {
  background: #111 !important;
  transform: translateY(-10px) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5) !important;
}

/* 3. Card Internal Elements */
.section-elevated .service-title,
.section-elevated .review-author .author-name,
.section-elevated .tea-card-name {
  color: var(--brand-gold) !important;
}

.section-elevated .service-description,
.section-elevated .review-text {
  color: rgba(255, 255, 255, 0.8) !important;
}

.section-elevated .service-icon svg,
.section-elevated .review-stars svg,
.section-elevated .info-icon svg {
  color: var(--brand-gold) !important;
  stroke: var(--brand-gold) !important;
}

/* 4. Special handling for Location Card inside yellow section */
.section-elevated .location-info h3 {
  color: var(--brand-gold) !important;
}

.section-elevated .platform-link {
  background: rgba(0, 0, 0, 0.2) !important;
  color: var(--brand-black) !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
}

.section-elevated .platform-link:hover {
  background: var(--brand-black) !important;
  color: var(--brand-gold) !important;
}

/* ===== CTA SECTIONS ===== */

/* Recipe CTA */
.recipe-cta {
  background: linear-gradient(135deg, var(--brand-gold) 0%, #e0a836 100%);
  padding: 4rem 0;
  text-align: center;
}

.recipe-cta .cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--brand-black);
  margin-bottom: 1rem;
}

.recipe-cta .cta-title span {
  color: var(--brand-black);
}

.recipe-cta p {
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 1.5rem;
}

.btn-cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--brand-black);
  color: var(--ivory);
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Generic CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--brand-gold) 0%, #e0a836 100%);
  padding: 5rem 0;
  text-align: center;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: var(--brand-black);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Membership CTA */
.membership-cta {
  background: linear-gradient(135deg, var(--brand-gold) 0%, #e0a836 100%);
  padding: 5rem 0;
  text-align: center;
}

.membership-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: var(--brand-black);
  margin-bottom: 1rem;
}

.membership-cta p {
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 2rem;
}

/* ===== ICON SIZING UTILITIES ===== */

/* Small icon utility class */
.icon-sm {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-sm svg {
  width: 100%;
  height: 100%;
}

/* Medium icon utility class */
.icon-md {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-md svg {
  width: 100%;
  height: 100%;
}

/* ===== TEA SHOP HERO FEATURES ===== */

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: 1.5rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-base);
  color: var(--ivory);
}

.hero-feature-icon {
  color: var(--brand-gold);
}

/* ===== VARIETY FEATURES ===== */

.variety-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: 1rem;
}

.variety-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.variety-feature-icon {
  color: var(--brand-gold);
}

/* ==========================================================================
   TOUCH DEVICE FALLBACKS
   Provides :active feedback for touch devices where hover is unavailable
   ========================================================================== */

/* Touch feedback for interactive cards */
@media (hover: none) {
  .menu-item:active,
  .service-card:active,
  .review-card:active,
  .tea-card:active,
  .location-card:active,
  .badge-item:active,
  .accordion-header:active,
  .platform-link:active {
    transform: scale(0.98);
    opacity: 0.9;
  }
}

/* Touch feedback for buttons */
@media (hover: none) {
  .btn-primary:active,
  .btn-secondary:active,
  .btn-add:active,
  .nav-cta:active,
  .btn-cta:active,
  .carousel-btn:active,
  .back-to-top:active,
  .mobile-menu-close:active,
  .sticky-order-btn:active {
    transform: scale(0.95);
    opacity: 0.85;
  }
}

/* Touch feedback for links */
@media (hover: none) {
  a:active,
  .footer-link:active,
  .mobile-menu-link:active {
    opacity: 0.7;
  }
}

/* Wrap hover-specific transforms for mouse-only devices */
@media (hover: hover) and (pointer: fine) {
  /* These hover effects will only apply on devices with hover capability */
  .menu-item:hover,
  .service-card:hover,
  .review-card:hover,
  .tea-card:hover,
  .location-card:hover {
    transform: translateY(-10px);
  }
  
  .btn-primary:hover,
  .btn-secondary:hover {
    transform: translateY(-3px);
  }
}
