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

:root {
  /* Brand Colors - Premium/Vibrant */
  --brand-gold: #f0be4b;
  --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 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);

  /* 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: 1.05; }
.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: 1.15; }
.text-h2-lg { font-size: 3rem; line-height: 1.1; }

.text-h3-sm { font-size: 1.5rem; line-height: 1.25; }
.text-h3-md { font-size: 1.75rem; line-height: 1.2; }
.text-h3-lg { font-size: 2rem; line-height: 1.15; }

.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.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(246, 189, 66, 0.1);
}

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

.logo img {
  height: 120px;
  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: 100vh;
  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: 0 auto;
}

.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: 8rem 0;
  background: var(--bg-deep);
}

@media (max-width: 900px) {
  section {
    padding: 5rem 0;
  }
}

/* Section background variants for visual rhythm */
.section-elevated {
  background: var(--bg-elevated);
}

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

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
}

.section-label {
  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: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.section-description {
  font-family: var(--font-body);
  font-weight: 300;
  color: rgba(250, 250, 249, 0.7);
}

/* ===== 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: 4/3;
  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: 2rem;
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  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;
}

.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);
}

.service-card:hover {
  background: rgba(23, 23, 23, 0.7);
  transform: translateY(-4px);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.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: rgba(250, 250, 249, 0.7);
  line-height: 1.7;
}

/* ===== 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: 1.8;
  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: 1.7;
}

.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: color var(--transition-standard);
}

.footer-link:hover {
  color: var(--brand-gold);
}

.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: 0.25rem;
  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: 0.1rem;
  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: 1.7;
  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: 1.7;
  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: none;
  border-color: var(--brand-black);
}

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

.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.5);
  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: 1.7;
}

/* ===== 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: none;
  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); }
}

.scroll-indicator-text {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* 8. SMOOTH SECTION TRANSITIONS */
section {
  position: relative;
}

/* Gradient Dividers Between Sections */
.section-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(246, 189, 66, 0.3) 50%,
    transparent 100%
  );
  margin: 0 auto;
  max-width: 800px;
}

/* Loading Skeleton for Images */
.skeleton {
  background: linear-gradient(
    90deg,
    var(--brand-charcoal) 0%,
    rgba(246, 189, 66, 0.1) 50%,
    var(--brand-charcoal) 100%
  );
  background-size: 200% 100%;
  animation: skeleton 1.5s infinite;
}

@keyframes skeleton {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Disable animations for reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .preloader {
    display: none;
  }
}

/* ============================================
   PREMIUM SQUARESPACE UPGRADES
   Typography, Colors, Spacing, Interactions
   ============================================ */

/* ===== PRIORITY 1: TYPOGRAPHY REFINEMENT ===== */

/* Heading Letter Spacing - Critical for Premium Feel */
.hero-title {
  letter-spacing: -0.02em;
  font-weight: 300;
}

.section-title {
  letter-spacing: -0.01em;
  font-weight: 400;
}

.menu-item-name {
  letter-spacing: 0.01em;
  font-weight: 500;
}

/* Body Text Contrast Fix */
.hero-subtitle {
  color: rgba(250, 250, 249, 0.85);
  line-height: 1.8;
}

.section-description {
  color: rgba(250, 250, 249, 0.75);
  line-height: 1.75;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.menu-item-description {
  color: rgba(250, 250, 249, 0.8);
  line-height: 1.7;
}

.about-text {
  color: rgba(250, 250, 249, 0.85);
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

/* Gold Text Refinement - Make it GLOW */
.section-label {
  letter-spacing: 0.15em;
  font-weight: 700;
  text-shadow: 0 0 24px rgba(246, 189, 66, 0.4);
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
}

.section-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-gold), transparent);
}

.hero-tagline {
  letter-spacing: 0.15em;
  text-shadow: 0 0 30px rgba(246, 189, 66, 0.5);
  font-weight: 700;
  position: relative;
  padding: 0 2rem;
}

.hero-tagline::before,
.hero-tagline::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 1.5rem;
  height: 1px;
  background: var(--brand-gold);
}

.hero-tagline::before {
  left: 0;
}

.hero-tagline::after {
  right: 0;
}

/* Navigation Links - More refined */
.nav-link {
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ===== PRIORITY 2: SOPHISTICATED COLOR USAGE ===== */

/* Hero - Enhanced depth with gradient */
.hero-overlay {
  background: linear-gradient(to bottom,
    rgba(10, 10, 10, 0.2) 0%,
    rgba(10, 10, 10, 0.5) 40%,
    rgba(10, 10, 10, 0.85) 100%
  );
}

/* Cards - Elevated surfaces with subtle gold border */
.menu-item,
.service-card,
.review-card,
.location-card {
  background: var(--bg-elevated);
  border: 1px solid rgba(246, 189, 66, 0.08);
}

.menu-item:hover,
.service-card:hover,
.review-card:hover {
  background: var(--bg-hover);
  border-color: rgba(246, 189, 66, 0.2);
}

/* Section Backgrounds - Alternate depth */
section:nth-child(even):not(.hero) {
  background: var(--brand-gold);
  color: var(--bg-deep);
}

section:nth-child(even):not(.hero) .section-label,
section:nth-child(even):not(.hero) .section-title,
section:nth-child(even):not(.hero) h2,
section:nth-child(even):not(.hero) h3,
section:nth-child(even):not(.hero) h4,
section:nth-child(even):not(.hero) p,
section:nth-child(even):not(.hero) .text-muted {
  color: var(--bg-deep);
}

section:nth-child(odd):not(.hero) {
  background: var(--bg-deep);
}

/* Navbar Glass Effect - More sophisticated */
.navbar.scrolled {
  background: linear-gradient(180deg,
    rgba(10, 10, 10, 0.98) 0%,
    rgba(10, 10, 10, 0.96) 100%
  );
  border-bottom: 1px solid rgba(246, 189, 66, 0.15);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

/* Gold Accents - Gradient approach */
.btn-primary {
  background: linear-gradient(135deg, #f6bd42 0%, #e0a836 100%);
  box-shadow:
    0 4px 16px rgba(246, 189, 66, 0.3),
    0 0 40px rgba(246, 189, 66, 0.15);
  padding: 1.125rem 3rem;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffcf5c 0%, #f6bd42 100%);
  box-shadow:
    0 8px 32px rgba(246, 189, 66, 0.5),
    0 0 60px rgba(246, 189, 66, 0.2);
  transform: translateY(-3px) scale(1.02);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
  transition-duration: 0.1s;
}

/* Menu Item Price - Make it pop with gradient */
.menu-item-price {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #f6bd42 0%, #ffcf5c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(246, 189, 66, 0.4));
}

/* ===== PRIORITY 3: SPACING & RHYTHM ===== */

/* Section padding - More breathing room */
section {
  padding: 10rem 0;
}

@media (max-width: 900px) {
  section {
    padding: 6rem 0;
  }
}

/* Section Headers - More breathing room */
.section-header {
  margin-bottom: 6rem;
}

/* Cards - Consistent padding */
.menu-item-content {
  padding: 2.5rem;
}

.service-card {
  padding: 2.5rem;
}

.review-card {
  padding: 2.5rem;
}

@media (max-width: 600px) {
  .menu-item-content,
  .service-card,
  .review-card {
    padding: 2rem;
  }
}

/* Grids - Harmonious gaps */
.menu-grid,
.services-grid,
.reviews-grid {
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .menu-grid,
  .services-grid,
  .reviews-grid {
    gap: 3rem;
  }
}

/* Hero - More dramatic spacing */
.hero-tagline {
  margin-bottom: 2rem;
}

.hero-title {
  margin-bottom: 2.5rem;
}

.hero-subtitle {
  margin-bottom: 3.5rem;
}

/* Menu Item Internal Spacing */
.menu-item-name {
  margin-bottom: 1rem;
}

.menu-item-description {
  margin-bottom: 2rem;
}

/* Location Card - More breathing room */
.location-card {
  padding: 4rem 3rem;
}

@media (max-width: 600px) {
  .location-card {
    padding: 3rem 2rem;
  }
}

.info-item {
  gap: 2rem;
}

/* ===== PRIORITY 4: INTERACTION POLISH ===== */

/* Buttons - Add personality with custom easing */
.btn-primary {
  transition: all 0.4s var(--ease-out-expo);
}

.btn-secondary {
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--brand-gold);
  transition: left 0.5s var(--ease-out-expo);
  z-index: -1;
}

.btn-secondary:hover::before {
  left: 0;
}

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

/* Menu Cards - Sophisticated lift */
.menu-item {
  transition: all 0.5s var(--ease-out-expo);
}

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

/* Image Zoom - Slower, smoother */
.menu-item-image img {
  transition: transform 0.8s var(--ease-out-expo);
}

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

/* Navigation Links - Underline animation */
.nav-link {
  transition: color 0.3s var(--ease-out-expo);
}

.nav-link::after {
  transition: width 0.4s var(--ease-out-expo);
}

/* Service Cards - Bounce icon */
.service-card {
  transition: all 0.4s var(--ease-out-expo);
}

.service-card:hover .service-icon {
  animation: iconFloat 0.6s var(--ease-spring);
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  25% { transform: translateY(-12px); }
  50% { transform: translateY(-6px); }
  75% { transform: translateY(-10px); }
}

/* Review Cards - Subtle scale + lift */
.review-card {
  transition: all 0.4s var(--ease-out-expo);
}

.review-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Accordion - Smooth expand */
.accordion-content {
  transition: max-height 0.5s var(--ease-in-out-circ),
              padding 0.5s var(--ease-in-out-circ);
}

/* Scroll Animations - Smoother entrance */
.animate-on-scroll {
  transition: opacity 1s var(--ease-out-expo),
              transform 1s var(--ease-out-expo);
}

/* ===== PRIORITY 5: VISUAL HIERARCHY ===== */

/* Service Titles - Stand out more */
.service-title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

/* Rating Number - Massive impact */
.rating-number {
  font-size: 4.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #f6bd42 0%, #ffcf5c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 16px rgba(246, 189, 66, 0.5));
  line-height: 0.9;
}

/* ===== PRIORITY 6: PREMIUM DETAILS ===== */

/* Subtle texture on section backgrounds */
section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(246, 189, 66, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(246, 189, 66, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

section > * {
  position: relative;
  z-index: 1;
}

/* Refined cards with glossy effect */
.menu-item,
.service-card {
  background: linear-gradient(135deg, rgba(20, 20, 20, 1) 0%, rgba(16, 16, 16, 1) 100%);
  position: relative;
}

.menu-item::after,
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.02) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s var(--ease-out-expo);
  pointer-events: none;
  border-radius: inherit;
}

.menu-item:hover::after,
.service-card:hover::after {
  opacity: 1;
}

/* Premium loading skeleton */
.skeleton {
  background: linear-gradient(
    90deg,
    rgba(20, 20, 20, 1) 0%,
    rgba(30, 30, 30, 1) 20%,
    rgba(246, 189, 66, 0.08) 40%,
    rgba(30, 30, 30, 1) 60%,
    rgba(20, 20, 20, 1) 100%
  );
  background-size: 400% 100%;
  animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* Enhanced section dividers */
.section-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(246, 189, 66, 0.15) 20%,
    rgba(246, 189, 66, 0.4) 50%,
    rgba(246, 189, 66, 0.15) 80%,
    transparent 100%
  );
  position: relative;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: var(--brand-gold);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(246, 189, 66, 0.6);
}

/* Premium input fields */
input,
textarea {
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(246, 189, 66, 0.15);
  transition: all 0.3s var(--ease-out-expo);
}

input:focus,
textarea:focus {
  background: rgba(20, 20, 20, 0.8);
  border-color: rgba(246, 189, 66, 0.4);
  box-shadow:
    0 0 0 3px rgba(246, 189, 66, 0.1),
    0 4px 16px rgba(246, 189, 66, 0.2);
}

/* Enhanced marquee */
.marquee-container {
  background: linear-gradient(135deg, #f6bd42 0%, #e0a836 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 4px 16px rgba(246, 189, 66, 0.3);
}

.marquee-star {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Premium footer */
footer {
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-deep) 100%);
  border-top: 1px solid rgba(246, 189, 66, 0.12);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
}

/* Review stars - golden glow */
.review-stars,
.rating-stars {
  text-shadow: 0 0 20px rgba(246, 189, 66, 0.5);
}

/* About section quote styling */
.about-text em,
.about-text blockquote {
  color: var(--brand-gold);
  font-style: italic;
  text-shadow: 0 0 20px rgba(246, 189, 66, 0.3);
}

/* Tea promo section enhancement */
.tea-promo {
  /* Background controlled by nth-child rules */
}

/* FAQ accordion premium styling */
.accordion-header {
  transition: all 0.3s var(--ease-out-expo);
}

.accordion-header:hover {
  color: var(--brand-gold);
  text-shadow: 0 0 20px rgba(246, 189, 66, 0.3);
}

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

/* Newsletter section premium */
.newsletter-section {
  border-top: 1px solid rgba(246, 189, 66, 0.1);
  border-bottom: 1px solid rgba(246, 189, 66, 0.1);
}

/* CTA buttons in cards */
.btn-add {
  transition: all 0.3s var(--ease-out-expo);
  box-shadow: 0 2px 8px rgba(246, 189, 66, 0.2);
}

.btn-add:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(246, 189, 66, 0.4);
}

/* ==========================================================================
   PREMIUM SQUARESPACE UPGRADES
   ========================================================================== */

/* Hero Trust Badges - Social Proof */
.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.6s both;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(246, 189, 66, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text-primary);
  transition: all 0.3s var(--ease-out-expo);
}

.trust-badge:hover {
  background: rgba(246, 189, 66, 0.15);
  border-color: var(--brand-gold);
  transform: translateY(-2px);
}

.trust-stars {
  color: var(--brand-gold);
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(246, 189, 66, 0.5);
}

.trust-icon {
  color: var(--brand-gold);
  font-size: 1rem;
}

.trust-text {
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Hero Text Shadows for Readability */
.hero-title,
.hero-subtitle {
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.8),
    0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-tagline {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

/* Menu Item Badges */
.menu-item {
  position: relative;
}

.menu-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.4rem 0.8rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 4px;
  z-index: 10;
}

.bestseller-badge {
  background: linear-gradient(135deg, var(--brand-gold) 0%, #e0a836 100%);
  color: var(--bg-deep);
  box-shadow:
    0 2px 8px rgba(246, 189, 66, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: pulse-glow 2s infinite;
}

.premium-badge {
  background: linear-gradient(135deg, #8B7355 0%, #6B5344 100%);
  color: #F5E6D3;
  border: 1px solid rgba(245, 230, 211, 0.3);
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow:
      0 2px 8px rgba(246, 189, 66, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow:
      0 2px 16px rgba(246, 189, 66, 0.6),
      0 0 20px rgba(246, 189, 66, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
}

/* Dietary Tags */
.menu-item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.diet-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 3px;
  transition: all 0.2s ease;
}

.diet-tag.halal {
  background: rgba(76, 175, 80, 0.15);
  color: #81C784;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.diet-tag.spicy {
  background: rgba(244, 67, 54, 0.15);
  color: #EF5350;
  border: 1px solid rgba(244, 67, 54, 0.3);
}

.diet-tag.customize {
  background: rgba(33, 150, 243, 0.15);
  color: #64B5F6;
  border: 1px solid rgba(33, 150, 243, 0.3);
}

.diet-tag.seafood {
  background: rgba(0, 188, 212, 0.15);
  color: #4DD0E1;
  border: 1px solid rgba(0, 188, 212, 0.3);
}

/* Increased Section Spacing (Squarespace Pattern) */
section {
  padding: 10vw 0;
}

@media (max-width: 768px) {
  section {
    padding: 8vw 0;
  }
}

/* Increased Menu Grid Gaps */
.menu-grid {
  gap: 3rem;
}

@media (max-width: 768px) {
  .menu-grid {
    gap: 2rem;
  }
}

/* Enhanced Scroll Animations with Stagger */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s var(--ease-out-expo),
    transform 0.8s var(--ease-out-expo);
}

.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; }

/* Bestseller Menu Item Highlight */
.menu-item.bestseller {
  border: 2px solid rgba(246, 189, 66, 0.4);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(246, 189, 66, 0.1);
}

.menu-item.bestseller:hover {
  border-color: var(--brand-gold);
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(246, 189, 66, 0.2);
}

/* Mobile Responsive Trust Badges */
@media (max-width: 576px) {
  .hero-trust-badges {
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .trust-badge {
    padding: 0.5rem 0.9rem;
    font-size: 0.75rem;
  }

  .menu-badge {
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.35rem 0.65rem;
    font-size: 0.65rem;
  }
}

/* ==========================================================================
   OUR INGREDIENTS STORYTELLING SECTION
   ========================================================================== */

.ingredients-section {
  position: relative;
  overflow: hidden;
}

.ingredients-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(246, 189, 66, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(246, 189, 66, 0.02) 0%, transparent 40%);
  pointer-events: none;
}

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

.ingredients-intro {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.ingredient-features {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.ingredient-feature {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: all 0.4s var(--ease-out-expo);
}

.ingredient-feature:hover {
  background: rgba(246, 189, 66, 0.05);
  border-color: rgba(246, 189, 66, 0.2);
  transform: translateX(8px);
}

.ingredient-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ingredient-icon .ingredient-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.ingredient-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.ingredient-info p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Ingredients Visual Column */
.ingredients-visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ingredients-quote-card {
  background: linear-gradient(135deg, rgba(246, 189, 66, 0.08) 0%, rgba(246, 189, 66, 0.02) 100%);
  border: 1px solid rgba(246, 189, 66, 0.2);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
}

.ingredients-quote-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--brand-gold);
  opacity: 0.3;
  line-height: 1;
}

.ingredients-quote-card blockquote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.7;
  margin: 0 0 1rem 0;
}

.ingredients-quote-card cite {
  font-size: 0.95rem;
  color: var(--brand-gold);
  font-style: normal;
  font-weight: 500;
}

/* Ingredients Stats */
.ingredients-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ingredient-stat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.3s var(--ease-out-expo);
}

.ingredient-stat:hover {
  border-color: rgba(246, 189, 66, 0.3);
  transform: translateY(-4px);
}

.ingredient-stat .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-gold);
  line-height: 1;
  display: inline;
}

.ingredient-stat .stat-unit {
  font-size: 1rem;
  font-weight: 500;
  color: var(--brand-gold);
  margin-left: 2px;
}

.ingredient-stat .stat-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Responsive Ingredients Section */
@media (max-width: 992px) {
  .ingredients-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .ingredients-visual {
    order: -1;
  }
}

@media (max-width: 576px) {
  .ingredient-feature {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .ingredients-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .ingredient-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
  }

  .ingredient-stat .stat-label {
    margin-top: 0;
    text-align: left;
  }

  .ingredients-quote-card {
    padding: 2rem 1.5rem;
  }

  .ingredients-quote-card blockquote {
    font-size: 1.1rem;
  }
}

/* ==========================================================================
   PRESS & RECOGNITION SECTION
   ========================================================================== */

.recognition-section {
  position: relative;
}

.recognition-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(246, 189, 66, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

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

.recognition-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.recognition-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand-gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.recognition-card:hover {
  background: rgba(246, 189, 66, 0.05);
  border-color: rgba(246, 189, 66, 0.3);
  transform: translateY(-8px);
}

.recognition-card:hover::before {
  opacity: 1;
}

.recognition-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.recognition-stat {
  font-size: 3rem;
  font-weight: 800;
  color: var(--brand-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 30px rgba(246, 189, 66, 0.3);
}

.recognition-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.recognition-detail {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

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

.badge-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(246, 189, 66, 0.08);
  border: 1px solid rgba(246, 189, 66, 0.2);
  border-radius: 50px;
  transition: all 0.3s var(--ease-out-expo);
}

.badge-item:hover {
  background: rgba(246, 189, 66, 0.15);
  transform: translateY(-2px);
}

.badge-icon {
  font-size: 1.1rem;
}

.badge-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

/* Responsive Recognition Section */
@media (max-width: 992px) {
  .recognition-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .recognition-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .recognition-card {
    padding: 1.5rem 1rem;
  }

  .recognition-stat {
    font-size: 2.5rem;
  }

  .recognition-badges {
    gap: 1rem;
  }

  .badge-item {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
}
