/* ==========================================================================
   TRÀ SỮA BONSY • DESIGN SYSTEM & STYLESHEET
   Aesthetic: Fairy-tale Pastel Elegance x Organic Tea Craft (Two Leaves and a Bud Inspiration)
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Color Palette */
  --bg-page: #FBF8F5;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-card-solid: #FFFFFF;
  --bg-soft-cream: #F5EFE6;
  --bg-rose-tint: #FFF4F5;

  --primary-rose: #C7737C;
  --primary-rose-hover: #AF5C65;
  --primary-rose-light: #FCEBED;
  --primary-rose-dark: #8E3B44;

  --tea-green: #3F6E4C;
  --tea-green-light: #EBF3ED;
  --tea-green-accent: #5D9C6F;

  --accent-gold: #C99738;
  --accent-gold-light: #FDF6E2;
  --accent-gold-glow: rgba(201, 151, 56, 0.25);

  --brand-shopee: #EE4D2D;
  --brand-grab: #00B14F;

  --text-title: #2B2325;
  --text-body: #54484B;
  --text-muted: #807275;
  --text-light: #9E9093;
  --text-white: #FFFFFF;

  --border-delicate: rgba(199, 115, 124, 0.16);
  --border-card: rgba(220, 190, 195, 0.35);

  /* Shadows */
  --shadow-sm: 0 4px 14px rgba(142, 59, 68, 0.05);
  --shadow-md: 0 12px 32px -4px rgba(142, 59, 68, 0.09);
  --shadow-lg: 0 22px 50px -10px rgba(142, 59, 68, 0.16);
  --shadow-glow: 0 0 30px rgba(199, 115, 124, 0.3);

  /* Typography (Chuẩn Phong Cách Two Leaves & 100% Tiếng Việt: Newsreader + Figtree) */
  --font-serif: 'Newsreader', 'Lora', Georgia, serif;
  --font-sans: 'Figtree', system-ui, -apple-system, sans-serif;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-normal: 0.35s var(--ease-out);
  --transition-slow: 0.6s var(--ease-out);

  /* Dimensions */
  --nav-height: 76px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-full: 9999px;
}

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

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

/* Lenis smooth scroll recommended base */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--text-body);
  line-height: 1.68;
  overflow-x: hidden;
  position: relative;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(252, 235, 237, 0.5) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(235, 243, 237, 0.5) 0%, transparent 40%);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-page);
}

::-webkit-scrollbar-thumb {
  background: #E0C8CB;
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-rose);
}

/* Ambient Canvas */
#ambient-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
}

/* Typography Helpers */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-title);
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.35;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.italic-serif {
  font-style: italic;
  color: var(--primary-rose-dark);
}

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

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

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.section-padding {
  padding: 80px 0;
}

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

/* Section Header */
.section-header {
  max-width: 760px;
  margin: 0 auto 56px;
}

.chapter-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tea-green);
  background: var(--tea-green-light);
  padding: 7px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
  border: 1px solid rgba(63, 110, 76, 0.22);
  box-shadow: 0 2px 8px rgba(63, 110, 76, 0.06);
  transition: border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.chapter-label:hover {
  border-color: rgba(63, 110, 76, 0.38);
  box-shadow: 0 4px 14px rgba(63, 110, 76, 0.12);
}

.chapter-leaf-icon {
  width: 15px;
  height: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--tea-green);
  transition: transform var(--transition-fast);
}

.chapter-label:hover .chapter-leaf-left {
  transform: rotate(-8deg) scale(1.15);
}

.chapter-label:hover .chapter-leaf-right {
  transform: rotate(8deg) scale(1.15);
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

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

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary-rose) 0%, var(--primary-rose-dark) 100%);
  color: var(--text-white);
  padding: 15px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 24px rgba(199, 115, 124, 0.4);
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(199, 115, 124, 0.55);
}

.btn-delivery {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.btn-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.btn-shopee {
  background: rgba(238, 77, 45, 0.1);
  color: var(--brand-shopee);
  border: 1px solid rgba(238, 77, 45, 0.25);
}

.btn-shopee .btn-dot {
  background: var(--brand-shopee);
}

.btn-shopee:hover {
  background: var(--brand-shopee);
  color: #fff;
  box-shadow: 0 4px 16px rgba(238, 77, 45, 0.3);
}

.btn-grab {
  background: rgba(0, 177, 79, 0.1);
  color: var(--brand-grab);
  border: 1px solid rgba(0, 177, 79, 0.25);
}

.btn-grab .btn-dot {
  background: var(--brand-grab);
}

.btn-grab:hover {
  background: var(--brand-grab);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 177, 79, 0.3);
}

.btn-phone-full {
  background: rgba(199, 115, 124, 0.12);
  color: var(--primary-rose-dark);
  border: 1px solid rgba(199, 115, 124, 0.3);
}

.btn-phone-full:hover {
  background: var(--primary-rose-dark);
  color: #fff;
}

/* ==========================================================================
   ELEGANT CHANNELS ICON GROUP ON NAVBAR
   ========================================================================== */
.nav-channels-group {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  padding: 4px 8px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(199, 115, 124, 0.2);
  box-shadow: 0 4px 14px rgba(142, 59, 68, 0.06);
}

.channel-icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
}

.channel-icon-btn i {
  width: 19px;
  height: 19px;
  transition: transform var(--transition-fast);
}

.channel-pulse-dot {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1.5px solid #FFFFFF;
}

/* Shopee Icon Button */
.channel-shopee {
  background: rgba(238, 77, 45, 0.09);
  color: var(--brand-shopee);
  border: 1px solid rgba(238, 77, 45, 0.25);
}

.channel-shopee .shopee-dot {
  background: var(--brand-shopee);
}

.channel-shopee:hover {
  background: var(--brand-shopee);
  color: #FFFFFF;
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 6px 18px rgba(238, 77, 45, 0.35);
  border-color: var(--brand-shopee);
}

.channel-shopee:hover i {
  transform: scale(1.12);
}

/* Grab Icon Button */
.channel-grab {
  background: rgba(0, 177, 79, 0.09);
  color: var(--brand-grab);
  border: 1px solid rgba(0, 177, 79, 0.25);
}

.channel-grab .grab-dot {
  background: var(--brand-grab);
}

.channel-grab:hover {
  background: var(--brand-grab);
  color: #FFFFFF;
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 6px 18px rgba(0, 177, 79, 0.35);
  border-color: var(--brand-grab);
}

.channel-grab:hover i {
  transform: scale(1.12);
}

/* Phone Hotline Icon Button */
.channel-phone {
  background: rgba(199, 115, 124, 0.1);
  color: var(--primary-rose-dark);
  border: 1px solid rgba(199, 115, 124, 0.25);
}

.channel-phone .phone-dot {
  background: #38A169;
}

.channel-phone:hover {
  background: linear-gradient(135deg, var(--primary-rose) 0%, var(--primary-rose-dark) 100%);
  color: #FFFFFF;
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 6px 18px rgba(199, 115, 124, 0.35);
  border-color: var(--primary-rose);
}

.channel-phone:hover i {
  transform: scale(1.12);
}

/* Floating Tooltip */
.channel-tooltip {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(28, 22, 24, 0.94);
  backdrop-filter: blur(10px);
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
}

.channel-tooltip::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid rgba(28, 22, 24, 0.94);
}

.channel-icon-btn:hover .channel-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}


/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 100;
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(142, 59, 68, 0.08);
  border-bottom: 1px solid rgba(199, 115, 124, 0.1);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-infinity {
  font-size: 1.8rem;
  color: var(--primary-rose);
  font-weight: 700;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-title);
}

.brand-sub {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--primary-rose);
  border-left: 1px solid var(--border-delicate);
  padding-left: 8px;
  margin-left: 4px;
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-body);
  position: relative;
  padding: 6px 0;
}

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

.nav-link:hover {
  color: var(--primary-rose-dark);
}

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

.nav-link.active {
  color: var(--primary-rose-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-title);
  cursor: pointer;
  padding: 6px;
}

.mobile-menu {
  display: none;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--nav-height) + 40px) 24px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.92) contrast(1.05);
  transform: scale(1.05);
  transition: transform 1.2s ease-out;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(251, 248, 245, 0.32) 0%,
      rgba(251, 248, 245, 0.72) 42%,
      rgba(251, 248, 245, 0.94) 82%,
      rgba(251, 248, 245, 1) 100%);
  backdrop-filter: blur(2px);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1060px;
  text-align: center;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 26px;
}

.hero-title {
  font-size: clamp(2.8rem, 5.2vw, 4.4rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.28;
  color: var(--text-title);
  margin-bottom: 28px;
}

.hero-title-sub {
  display: inline-block;
  white-space: nowrap;
}

.title-italic {
  font-style: italic;
  font-weight: 400;
  color: var(--primary-rose-dark);
  letter-spacing: 0.01em;
}

.hero-desc {
  font-size: clamp(1.1rem, 2vw, 1.28rem);
  color: var(--text-body);
  max-width: 820px;
  margin: 0 auto 38px;
  font-weight: 400;
  line-height: 1.75;
}

/* Minimalist Storytelling Scroll Cue: Pure Universal Arrow (Mobile & Desktop) */
.hero-cue-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 24px;
}

.hero-scroll-arrow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  border: 1.5px solid rgba(199, 115, 124, 0.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--primary-rose);
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(199, 115, 124, 0.12);
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  -webkit-tap-highlight-color: transparent;
}

.hero-scroll-arrow-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--primary-rose-dark);
  color: var(--primary-rose-dark);
  box-shadow: 0 8px 26px rgba(199, 115, 124, 0.26);
  transform: translateY(-3px) scale(1.06);
}

.hero-scroll-arrow-btn:active {
  transform: translateY(0) scale(0.95);
  background: rgba(255, 255, 255, 1);
}

.scroll-arrow-icon {
  display: block;
  animation: heroArrowBounce 2s infinite ease-in-out;
  transition: transform var(--transition-fast);
}

@keyframes heroArrowBounce {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}

/* ==========================================================================
   CHAPTER 1: STORY SECTION
   ========================================================================== */
.story-section {
  position: relative;
}

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

.visual-card-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.story-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 6px solid #FFFFFF;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.story-img:hover {
  transform: scale(1.02);
}

.story-text-col {
  padding-left: 20px;
}

.story-paragraph {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 20px;
}

.story-paragraph.highlight-lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-title);
  line-height: 1.6;
}

.quote-box {
  background: var(--primary-rose-light);
  border-left: 4px solid var(--primary-rose);
  padding: 24px 28px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 32px 0;
  position: relative;
}

.quote-icon {
  color: var(--primary-rose);
  margin-bottom: 12px;
  width: 28px;
  height: 28px;
}

.quote-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--text-title);
  line-height: 1.5;
  margin-bottom: 12px;
}

.quote-author {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-rose-dark);
  letter-spacing: 0.05em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-rose-dark);
  font-weight: 700;
  font-size: 1rem;
}

.text-link:hover {
  gap: 14px;
  color: var(--primary-rose);
}

/* ==========================================================================
   CHAPTER 2: PHILOSOPHY SECTION (TWO LEAVES AND A BUD)
   ========================================================================== */
.philosophy-section {
  background: linear-gradient(180deg, transparent 0%, rgba(235, 243, 237, 0.45) 100%);
}

.philosophy-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.philo-card {
  background: var(--bg-card-solid);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
  will-change: transform, opacity;
}

.philo-card:hover,
.philo-card.is-ready {
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.philo-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(93, 156, 111, 0.15);
  border-color: var(--tea-green-accent);
}

.philo-number {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(63, 110, 76, 0.15);
}

.philo-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--tea-green-light);
  color: var(--tea-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.philo-title {
  font-size: 1.45rem;
  margin-bottom: 14px;
}

.philo-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
}

.philo-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tea-green);
  border-bottom: 2px solid var(--tea-green-accent);
  padding-bottom: 4px;
}

.sensory-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #33563E 0%, #203A29 100%);
  border: 1px solid rgba(163, 217, 177, 0.22);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  color: #FFFFFF;
  text-align: center;
  box-shadow: var(--shadow-lg), 0 0 35px rgba(63, 110, 76, 0.2);
}

.sensory-leaves-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.sensory-leaf {
  position: absolute;
  pointer-events: none;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.2));
  will-change: transform;
}

.sensory-leaf svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Các vị trí lá bay mềm mại quanh ô cảm nhận */
.leaf-pos-1 {
  top: -6px;
  left: 36px;
  width: 62px;
  height: 62px;
  animation: floatSway1 9s ease-in-out infinite alternate;
}

.leaf-pos-2 {
  bottom: 8px;
  left: 85px;
  width: 48px;
  height: 48px;
  transform: rotate(20deg);
  animation: floatSway2 11s ease-in-out infinite alternate;
}

.leaf-pos-3 {
  top: 14px;
  right: 42px;
  width: 68px;
  height: 68px;
  transform: rotate(-12deg);
  animation: floatSway3 10s ease-in-out infinite alternate;
}

.leaf-pos-4 {
  bottom: -4px;
  right: 95px;
  width: 52px;
  height: 52px;
  animation: floatSway1 12s ease-in-out infinite alternate-reverse;
}

.leaf-pos-5 {
  top: 45%;
  left: 20px;
  width: 40px;
  height: 40px;
  opacity: 0.8;
  animation: floatSway2 13s ease-in-out infinite alternate;
}

@keyframes floatSway1 {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
  }

  50% {
    transform: translateY(-15px) translateX(10px) rotate(14deg) scale(1.06);
  }

  100% {
    transform: translateY(-5px) translateX(-8px) rotate(-10deg) scale(0.96);
  }
}

@keyframes floatSway2 {
  0% {
    transform: translateY(0) rotate(18deg) scale(0.96);
  }

  50% {
    transform: translateY(-16px) translateX(-10px) rotate(-6deg) scale(1.05);
  }

  100% {
    transform: translateY(10px) translateX(8px) rotate(24deg) scale(1);
  }
}

@keyframes floatSway3 {
  0% {
    transform: translateY(0) rotate(-12deg) scale(1);
  }

  50% {
    transform: translateY(-18px) translateX(14px) rotate(10deg) scale(1.08);
  }

  100% {
    transform: translateY(-6px) translateX(-8px) rotate(-18deg) scale(0.95);
  }
}

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

.sensory-tag {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: #A3D9B1;
  display: block;
  margin-bottom: 16px;
}

.sensory-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-style: italic;
  color: #FFFFFF;
  max-width: 820px;
  margin: 0 auto 16px;
  line-height: 1.4;
}

.sensory-sub {
  font-size: 1rem;
  color: #D2E7D8;
  font-weight: 300;
}

/* ==========================================================================
   CHAPTER 3: TOPPINGS SECTION
   ========================================================================== */
.toppings-section {
  position: relative;
}

.topping-hero-showcase {
  background: var(--bg-card-solid);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-md);
  margin-bottom: 50px;
}

.topping-hero-img-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.topping-hero-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform var(--transition-slow);
}

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

.badge-craft {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-gold-light);
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.badge-craft .badge-sticker {
  font-size: 1.1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.topping-hero-caption {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border-delicate);
}

.topping-hero-caption h3 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.topping-hero-caption p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
}

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

.topping-item-card {
  background: var(--bg-card-solid);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
  will-change: transform, opacity;
}

.topping-item-card:hover,
.topping-item-card.is-ready {
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.topping-item-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-rose);
}

.topping-item-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.topping-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.topping-item-card:hover .topping-thumb-img {
  transform: scale(1.08);
}

.topping-tag-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.topping-item-body {
  padding: 20px;
}

.topping-name {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.topping-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

.topping-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.topping-traits span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  background: var(--bg-rose-tint);
  color: var(--primary-rose-dark);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  border: 1px solid rgba(199, 115, 124, 0.12);
  transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.topping-traits span:hover {
  background: rgba(245, 230, 232, 0.95);
  transform: translateY(-2px);
}

.topping-traits .trait-sticker {
  font-size: 0.95rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

/* ==========================================================================
   CHAPTER 4: MENU SECTION
   ========================================================================== */
.menu-section {
  background: linear-gradient(180deg, transparent 0%, rgba(254, 243, 245, 0.6) 100%);
}

.trio-banner-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(199, 115, 124, 0.2);
  background: linear-gradient(145deg, #242022 0%, #131112 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}

.trio-img {
  width: 100%;
  height: 100%;
  max-height: 540px;
  object-fit: contain;
  object-position: center;
  transition: transform var(--transition-slow);
}

.trio-banner-wrap:hover .trio-img {
  transform: scale(1.03);
}

.trio-overlay-info {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 660px;
  background: rgba(22, 18, 20, 0.82);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  color: #FFF;
  padding: 12px 28px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.trio-badge {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: #FFD27D;
  margin-right: 8px;
}

.trio-overlay-info p {
  display: inline;
  font-size: 0.95rem;
  font-weight: 400;
  color: #F5EAEB;
}

.drinks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}

.drink-card {
  background: var(--bg-card-solid);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  will-change: transform, opacity;
}

.drink-card:hover,
.drink-card.is-ready {
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.drink-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-rose);
}

.drink-card.featured-border {
  border: 2px solid var(--primary-rose);
  position: relative;
}

.drink-img-wrap {
  position: relative;
  height: 380px;
  overflow: hidden;
  background: linear-gradient(180deg, #2b2729 0%, #151315 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.drink-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform var(--transition-slow);
}

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

.drink-badge-top {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  color: var(--primary-rose-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.06em;
  box-shadow: var(--shadow-sm);
}

.drink-badge-top.hot-badge {
  background: #FFF1F0;
  color: #E02020;
}

.drink-details {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.drink-cat {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--primary-rose);
  margin-bottom: 6px;
}

.drink-name {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.drink-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.drink-specs {
  background: var(--bg-soft-cream);
  border: 1px solid rgba(0, 0, 0, 0.035);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  line-height: 1.4;
}

.spec-label {
  color: var(--text-muted);
  font-size: 0.8rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.spec-value {
  font-weight: 600;
  color: var(--text-title);
  text-align: right;
  white-space: nowrap;
}

.drink-pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--border-delicate);
}

.price-tag {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
}

.price-num {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary-rose-dark);
}

.drink-order-btns {
  display: flex;
  gap: 8px;
}

.btn-order-app {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.btn-order-app.shopee-link {
  background: var(--brand-shopee);
  color: #FFF;
}

.btn-order-app.shopee-link:hover {
  background: #D73C1E;
  transform: translateY(-2px);
}

.btn-order-app.grab-link {
  background: var(--brand-grab);
  color: #FFF;
}

.btn-order-app.grab-link:hover {
  background: #009943;
  transform: translateY(-2px);
}

/* Drink Builder / Customizer */
.drink-builder-box {
  background: #FFFFFF;
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md), 0 0 40px rgba(199, 115, 124, 0.08);
  position: relative;
  overflow: hidden;
}

.drink-builder-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-rose), var(--accent-gold), var(--tea-green));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.builder-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--primary-rose);
  margin-bottom: 10px;
}

.builder-title {
  font-size: 1.8rem;
  margin-bottom: 32px;
}

.builder-controls-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 36px;
}

.control-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-title);
  margin-bottom: 14px;
}

.option-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  background: var(--bg-soft-cream);
  border: 1px solid transparent;
  color: var(--text-body);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.chip:hover {
  background: #EDE4D8;
}

.chip.active {
  background: var(--primary-rose-dark);
  color: #FFF;
  border-color: var(--primary-rose-dark);
  box-shadow: 0 4px 12px rgba(164, 76, 87, 0.3);
}

.topping-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-body);
  cursor: pointer;
  user-select: none;
}

.check-pill input {
  accent-color: var(--primary-rose);
  width: 16px;
  height: 16px;
}

.builder-summary-card {
  background: var(--bg-rose-tint);
  border: 1px solid var(--border-delicate);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.summary-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary-rose-dark);
  letter-spacing: 0.08em;
}

.summary-preview {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-title);
  margin-top: 4px;
}

.summary-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-builder-order {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  color: #FFF;
  transition: transform var(--transition-fast);
}

.btn-builder-order:hover {
  transform: translateY(-2px);
}

.btn-builder-order.shopee {
  background: var(--brand-shopee);
}

.btn-builder-order.grab {
  background: var(--brand-grab);
}

/* ==========================================================================
   CHAPTER 5: LOCATION & CONTACT SECTION
   ========================================================================== */
.location-section {
  position: relative;
}

.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}

.location-intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.contact-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: var(--bg-card-solid);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
  will-change: transform, opacity;
}

.contact-card:hover,
.contact-card.is-ready {
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.contact-card:hover {
  border-color: var(--primary-rose);
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.contact-card .card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: var(--primary-rose-light);
  color: var(--primary-rose-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 4px;
}

.card-title {
  font-size: 1.15rem;
  color: var(--text-title);
  display: block;
  margin-bottom: 6px;
}

.card-title.phone-highlight {
  font-size: 1.6rem;
  font-family: var(--font-serif);
  color: var(--primary-rose-dark);
}

.card-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.link-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-rose-dark);
}

.link-action:hover {
  color: var(--primary-rose);
}

.btn-call-direct {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-rose-dark);
  color: #FFF;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
}

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

.social-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-soft-cream);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-body);
}

/* Map Interactive Box */
.map-interactive-box {
  background: var(--bg-card-solid);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-header {
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-delicate);
}

.map-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--tea-green);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--tea-green);
}

.status-dot.pulsing {
  box-shadow: 0 0 0 0 rgba(63, 110, 76, 0.7);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(63, 110, 76, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(63, 110, 76, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(63, 110, 76, 0);
  }
}

.map-zone {
  font-size: 0.8rem;
  color: var(--text-light);
}

.map-frame {
  height: 380px;
  width: 100%;
}

.map-footer-cta {
  padding: 20px 24px;
  background: var(--bg-rose-tint);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.delivery-app-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.partner-badge {
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.75rem;
}

.partner-badge.shopee {
  background: rgba(238, 77, 45, 0.15);
  color: var(--brand-shopee);
}

.partner-badge.grab {
  background: rgba(0, 177, 79, 0.15);
  color: var(--brand-grab);
}

.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--text-title);
  color: #FFF;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
}

.btn-directions:hover {
  background: #000;
}

/* ==========================================================================
   STICKY BOTTOM CONVERSION DOCK (ALWAYS VISIBLE)
   ========================================================================== */
.sticky-dock {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 90;
  width: calc(100% - 40px);
  max-width: 720px;
  transition: transform var(--transition-normal), opacity var(--transition-normal), filter var(--transition-normal), box-shadow var(--transition-normal);
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity, filter;
}

.sticky-dock.dock-active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  filter: blur(0px);
  pointer-events: auto;
}

/* Khi lướt (scrolling): làm mờ nhẹ và nhòe dịu để không che nội dung */
.sticky-dock.dock-active.dock-scrolling {
  opacity: 0.35;
  filter: blur(1.5px);
  transform: translateX(-50%) translateY(4px) scale(0.98);
  box-shadow: 0 4px 16px rgba(142, 59, 68, 0.08);
}

/* Khi đứng yên hoặc di chuột / chạm vào: hiện rõ nét 100% */
.sticky-dock.dock-active:hover,
.sticky-dock.dock-active.dock-scrolling:hover {
  opacity: 1;
  filter: blur(0px);
  transform: translateX(-50%) translateY(0) scale(1);
  box-shadow: 0 16px 40px rgba(142, 59, 68, 0.18);
  pointer-events: auto;
}

.dock-container {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(199, 115, 124, 0.28);
  border-radius: var(--radius-full);
  padding: 10px 18px 10px 24px;
  box-shadow: 0 16px 40px rgba(142, 59, 68, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dock-brand-info {
  display: flex;
  flex-direction: column;
}

.dock-logo {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-rose-dark);
  line-height: 1.1;
}

.dock-slogan {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.dock-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dock-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  transition: transform var(--transition-fast);
}

.dock-btn:hover {
  transform: scale(1.04);
}

.dock-phone {
  background: var(--bg-soft-cream);
  color: var(--text-title);
}

.dock-shopee {
  background: var(--brand-shopee);
  color: #FFF;
  box-shadow: 0 4px 14px rgba(238, 77, 45, 0.35);
}

.dock-grab {
  background: var(--brand-grab);
  color: #FFF;
  box-shadow: 0 4px 14px rgba(0, 177, 79, 0.35);
}

/* ==========================================================================
   SITE FOOTER - THUNG LŨNG TRÀ CỔ TÍCH BONSY (SCENIC LINE-ART PANORAMA)
   ========================================================================== */
.site-footer {
  background: linear-gradient(180deg, var(--bg-cream, #FAF7F2) 0%, #F5F9F5 25%, #EAF3EC 100%);
  color: #1F3A24;
  padding: 65px 0 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.footer-sky-wrap {
  position: relative;
  z-index: 3;
  margin-bottom: -32px;
  pointer-events: auto;
}

.footer-sky-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-brand-emblem {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #1F3A24;
  margin-bottom: 6px;
}

.footer-leaf-sprig {
  color: #4A7A57;
  transition: transform var(--transition-medium);
}

.leaf-sprig-flip {
  transform: scaleX(-1);
}

.site-footer:hover .footer-leaf-sprig {
  transform: translateY(-2px) rotate(5deg);
}

.site-footer:hover .leaf-sprig-flip {
  transform: scaleX(-1) translateY(-2px) rotate(5deg);
}

.footer-infinity {
  font-size: 2.2rem;
  line-height: 1;
  color: var(--primary-rose, #C7737C);
  display: inline-block;
  transition: transform var(--transition-medium);
}

.site-footer:hover .footer-infinity {
  transform: scale(1.15);
}

.footer-brand-title {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 700;
  color: #18311D;
  letter-spacing: 0.12em;
  margin: 0 0 2px;
  text-transform: uppercase;
}

.footer-brand-sub {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: #558060;
  letter-spacing: 0.28em;
  margin-bottom: 10px;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: #385E42;
  margin: 0 auto 6px;
  max-width: 620px;
}

/* Scenic SVG Panorama Container */
.footer-scenic-panorama {
  width: 100%;
  overflow: hidden;
  position: relative;
  line-height: 0;
  display: block;
}

.scenic-landscape-svg {
  width: 100%;
  height: auto;
  min-height: 280px;
  display: block;
}

/* Subtle organic micro-animations for panorama elements */
@keyframes floatLeaves {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(5px, -6px) rotate(6deg); }
}

@keyframes steamInfinity {
  0% { stroke-dashoffset: 0; opacity: 0.6; }
  50% { stroke-dashoffset: -12; opacity: 0.95; }
  100% { stroke-dashoffset: -24; opacity: 0.6; }
}

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

.scenic-breeze-leaves g {
  animation: floatLeaves 5.5s ease-in-out infinite;
}
.scenic-breeze-leaves g:nth-child(2) { animation-delay: 1.2s; }
.scenic-breeze-leaves g:nth-child(3) { animation-delay: 2.5s; }

.chimney-infinity-steam path {
  animation: steamInfinity 4s linear infinite;
}

.mascot-bunny {
  animation: mascotCheer 3s ease-in-out infinite;
}

/* Foothill Terrain Base */
.footer-terrain-base {
  background: #203E26;
  color: #DDEEE0;
  padding: 32px 20px 140px; /* Generous 140px bottom clearance for the sticky dock! */
  position: relative;
  z-index: 3;
}

.footer-terrain-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
  max-width: 900px;
  margin: 0 auto;
}

.footer-terrain-base .footer-social-links {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.footer-terrain-base .social-icon-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  text-decoration: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
}

.footer-terrain-base .social-icon-btn svg {
  width: 20px;
  height: 20px;
  display: block;
}

.footer-terrain-base .social-icon-btn:hover {
  background: var(--primary-rose);
  border-color: var(--primary-rose);
  transform: translateY(-4px);
  color: #FFF;
  box-shadow: 0 8px 20px rgba(199, 115, 124, 0.45);
}

.footer-address {
  font-size: 0.92rem;
  color: #B5D4BD;
  line-height: 1.6;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
}

.footer-sep {
  color: #5D8E69;
  font-size: 0.8rem;
}

.footer-hotline-link {
  color: #FFF;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-hotline-link:hover {
  color: var(--primary-rose);
  text-decoration: underline;
}

.footer-terrain-base .footer-bottom-line {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  width: 100%;
  font-size: 0.82rem;
  color: #8EB798;
  margin-top: 4px;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE-FIRST POLISH)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-features-ribbon {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .ribbon-divider {
    display: none;
  }

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

  .story-text-col {
    padding-left: 0;
  }

  .philosophy-cards-grid {
    grid-template-columns: 1fr;
  }

  .topping-hero-showcase {
    grid-template-columns: 1fr;
  }

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

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

  .drink-builder-box {
    padding: 30px 20px;
  }

  .builder-controls-grid {
    grid-template-columns: 1fr;
  }

  .builder-summary-card {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 768px) {
  :root {
    --nav-height: 68px;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .mobile-menu {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    border-bottom: 1px solid var(--border-delicate);
  }

  .mobile-menu.active {
    display: flex;
  }

  .mobile-nav-link {
    font-size: 1.1rem;
    font-weight: 700;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .mobile-menu-ctas {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .full-w {
    width: 100%;
    justify-content: center;
  }

  .section-padding {
    padding: 64px 0;
  }

  .trio-banner-wrap {
    min-height: 400px;
  }

  .trio-overlay-info {
    width: calc(100% - 24px);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    bottom: 16px;
  }

  .trio-overlay-info p {
    display: block;
    font-size: 0.85rem;
    margin-top: 4px;
  }

  .drink-img-wrap {
    height: 360px;
  }

  .toppings-interactive-grid {
    grid-template-columns: 1fr;
  }

  .dock-container {
    padding: 8px 14px;
  }

  .dock-brand-info {
    display: none;
  }

  .dock-slogan,
  .hide-mobile {
    display: none;
  }

  .dock-btn {
    padding: 9px 14px;
    font-size: 0.8rem;
  }

  .hero-title-sub {
    white-space: normal;
  }

  /* Scenic Footer Mobile Polish */
  .footer-sky-wrap {
    margin-bottom: -18px;
    padding: 0 16px;
  }

  .footer-brand-title {
    font-size: 1.65rem;
    letter-spacing: 0.08em;
  }

  .footer-brand-sub {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
  }

  .footer-tagline {
    font-size: 1.05rem;
  }

  .scenic-landscape-svg {
    min-height: 220px;
  }

  .footer-terrain-base {
    padding: 24px 16px 140px;
  }

  .footer-address {
    flex-direction: column;
    gap: 4px;
    font-size: 0.85rem;
  }

  .footer-sep {
    display: none;
  }
}