/* ─────────────────────────────────────────────────────────────────────────────
   Candy Cloud Company — Main Stylesheet
   Theme: Dark moody base + pastel rainbow Candy Cloud accents
───────────────────────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=DM+Sans:wght@300;400;500;600&family=Bebas+Neue&display=swap');

/* ─── CSS Variables ──────────────────────────────────────────────────────── */
:root {
  /* Dark base palette */
  --bg-dark:        #0f0500;
  --bg-section:     #160a02;
  --bg-card:        #1e1008;
  --bg-card-hover:  #281408;

  /* Purple accent (from reference) */
  --purple:         #7c3aed;
  --purple-light:   #a855f7;
  --purple-glow:    rgba(124, 58, 237, 0.35);

  /* Candy Cloud pastel rainbow */
  --pink:           #f9a8d4;
  --lavender:       #c084fc;
  --sky:            #93c5fd;
  --mint:           #6ee7b7;
  --lemon:          #fde68a;
  --peach:          #fca5a5;

  /* Rainbow gradient */
  --grad-rainbow:   linear-gradient(135deg, #f9a8d4, #c084fc, #93c5fd, #6ee7b7);
  --grad-rainbow-h: linear-gradient(90deg, #f9a8d4, #c084fc, #93c5fd, #6ee7b7, #fde68a);
  --grad-warm:      linear-gradient(135deg, #7c3aed, #c084fc, #f9a8d4);

  /* Text */
  --text-primary:   #f5e6d0;
  --text-muted:     #a08060;
  --text-faint:     #5a3a20;

  /* Warm coffee amber */
  --amber:          #d97706;
  --amber-light:    #fbbf24;

  /* UI */
  --border:         rgba(255,255,255,0.07);
  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-full:    9999px;

  /* Spacing */
  --section-py:     6rem;
  --container:      1200px;

  /* Transitions */
  --ease:           cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── Utility ────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: var(--section-py) 0; }

.gradient-text {
  background: var(--grad-rainbow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag--rainbow {
  background: var(--grad-rainbow);
  color: #1a0a00;
}

.tag--outline {
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--grad-rainbow);
  color: #1a0a00;
  box-shadow: 0 4px 24px rgba(192, 132, 252, 0.3);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(192, 132, 252, 0.45);
}

.btn--outline {
  border: 1.5px solid rgba(245, 230, 208, 0.25);
  color: var(--text-primary);
}
.btn--outline:hover {
  border-color: var(--lavender);
  color: var(--lavender);
  background: rgba(192, 132, 252, 0.08);
}

.btn--ghost {
  color: var(--text-muted);
  padding: 0.85rem 0;
}
.btn--ghost:hover { color: var(--text-primary); }

.section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 2px;
  background: var(--grad-rainbow);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-primary);
}

.section-title span { display: block; }

/* ─── Navigation ─────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.4s var(--ease);
}

.navbar.scrolled {
  background: rgba(15, 5, 0, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.navbar__logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-rainbow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #1a0a00;
  font-weight: 900;
  box-shadow: 0 0 20px rgba(192, 132, 252, 0.4);
}

.navbar__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.navbar__logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  background: var(--grad-rainbow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar__logo-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.navbar__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.25s;
  position: relative;
}
.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--grad-rainbow-h);
  transition: width 0.3s var(--ease);
}
.navbar__links a:hover { color: var(--text-primary); }
.navbar__links a:hover::after { width: 100%; }

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s var(--ease);
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 3, 0, 0.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: 0.25s;
}
.mobile-nav a:hover { color: var(--lavender); }
.mobile-nav__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ─── Hero Section ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, #3b1500 0%, var(--bg-dark) 70%);
}

/* Large background outline text */
.hero__bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}

.hero__bg-text span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(8rem, 18vw, 18rem);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(245, 230, 208, 0.06);
  white-space: nowrap;
  letter-spacing: 0.02em;
  transform-origin: center;
}

.hero__bg-text span:nth-child(1) { transform: translateX(-6%) rotate(-2deg); }
.hero__bg-text span:nth-child(2) { transform: translateX(4%);  }
.hero__bg-text span:nth-child(3) { transform: translateX(-3%) rotate(1.5deg); }

/* Purple/rainbow glow circle behind drink */
.hero__circle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(320px, 45vw, 580px);
  height: clamp(320px, 45vw, 580px);
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #7c3aed 0%, #a855f7 40%, #c084fc 70%, #f9a8d4 100%);
  opacity: 0.85;
  z-index: 1;
}

/* Concentric circles decoration */
.hero__rings {
  position: absolute;
  bottom: -4rem;
  right: -4rem;
  width: 320px;
  height: 320px;
  pointer-events: none;
}
.hero__rings::before,
.hero__rings::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(245, 230, 208, 0.06);
}
.hero__rings::before { transform: scale(0.7); }
.hero__rings-inner {
  position: absolute;
  inset: 25%;
  border-radius: 50%;
  border: 1px solid rgba(245, 230, 208, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  opacity: 0.25;
}

/* Main hero layout */
.hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding-top: 5rem;
}

/* Left column */
.hero__left {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding-left: 1rem;
}

.hero__bean-wrap {
  perspective: 700px;
  width: fit-content;
}

.hero__bean {
  width: 90px;
  height: auto;
  transform-style: preserve-3d;
  will-change: transform;
  filter: drop-shadow(0 8px 28px rgba(124, 58, 237, 0.45));
  transition: filter 0.3s var(--ease);
}

.hero__bean:hover {
  filter: drop-shadow(0 12px 36px rgba(192, 132, 252, 0.6));
}

.hero__bean svg {
  display: block;
  width: 100%;
  height: auto;
}

.hero__heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--text-primary);
}
.hero__heading em {
  font-style: italic;
  background: var(--grad-rainbow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtext {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 26ch;
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
}
.hero__stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--grad-rainbow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__stat span {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* Center drink image */
.hero__center {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(300px, 38vw, 520px);
  aspect-ratio: 1;
  flex-shrink: 0;
}

.hero__drink {
  position: relative;
  z-index: 2;
  width: 85%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(124, 58, 237, 0.5));
  animation: drinkFloat 5s ease-in-out infinite;
}

/* Right column */
.hero__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2rem;
  padding-right: 1rem;
}

/* Circular stamp badge */
.hero__badge {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--grad-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: spin 18s linear infinite;
  box-shadow: 0 0 30px rgba(192, 132, 252, 0.3);
}

.hero__badge-text {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.hero__badge-center {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.hero__badge textPath {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  fill: #f5e6d0;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
}

/* Scattered dots decoration */
.hero__dots {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(124,58,237,0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* ─── Featured Menu Section ──────────────────────────────────────────────── */
.menu-section {
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.menu-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--grad-rainbow-h);
  opacity: 0.4;
}

.menu-section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.menu-section__header .section-label {
  justify-content: center;
}
.menu-section__header .section-label::before { display: none; }

.menu-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.menu-tab {
  padding: 0.5rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: all 0.25s;
  cursor: pointer;
}
.menu-tab.active,
.menu-tab:hover {
  background: var(--grad-rainbow);
  color: #1a0a00;
  border-color: transparent;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.menu-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s var(--ease);
  position: relative;
}
.menu-card:hover {
  transform: translateY(-6px);
  border-color: rgba(192, 132, 252, 0.3);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.15);
}

.menu-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--bg-card-hover), #3b1a00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.menu-card__body {
  padding: 1.25rem;
}

.menu-card__category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 0.4rem;
}

.menu-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.menu-card__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.menu-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-card__price {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--grad-rainbow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.menu-card__add {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad-rainbow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a0a00;
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform 0.2s;
  cursor: pointer;
}
.menu-card__add:hover { transform: scale(1.12); }

.menu-section__cta {
  text-align: center;
  margin-top: 3rem;
}

/* ─── About / Story Section ──────────────────────────────────────────────── */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-section::after {
  content: 'CANDY\ACLOUD';
  white-space: pre;
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(6rem, 12vw, 12rem);
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 230, 208, 0.04);
  pointer-events: none;
  user-select: none;
}

.about-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-section__visual {
  position: relative;
}

.about-section__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
}

.about-section__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #2a1000, #4a2000);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}

.about-section__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  background: linear-gradient(135deg, #2a1000, #4a2000);
}

.about-section__float-stat {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--grad-warm);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.35);
}
.about-section__float-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
}
.about-section__float-stat span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.05em;
}

.about-section__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-section__body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.about-section__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.about-pill {
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(192, 132, 252, 0.25);
  font-size: 0.8rem;
  color: var(--lavender);
}

/* ─── Services Section ───────────────────────────────────────────────────── */
.services-section {
  background: var(--bg-section);
  position: relative;
}

.services-section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.services-section__header .section-label { justify-content: center; }
.services-section__header .section-label::before { display: none; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-rainbow-h);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(192, 132, 252, 0.2);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.service-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.service-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.service-card__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--lavender);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: auto;
  transition: gap 0.2s;
}
.service-card__link:hover { gap: 0.6rem; }

/* ─── Locations Section ──────────────────────────────────────────────────── */
.locations-section {
  position: relative;
}

.locations-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.location-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.location-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all 0.3s var(--ease);
}
.location-card:hover {
  border-color: rgba(192, 132, 252, 0.3);
  transform: translateX(4px);
}

.location-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.location-card__address {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.location-card__hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 1rem;
  font-size: 0.8rem;
}
.location-card__hours dt { color: var(--text-muted); }
.location-card__hours dd { color: var(--text-primary); }

.location-card__actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.locations-section__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: sticky;
  top: 6rem;
}

/* ─── App Download Section ───────────────────────────────────────────────── */
.app-section {
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.app-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(124,58,237,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.app-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.app-section__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.app-section__body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 38ch;
}

.app-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.app-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease);
}
.app-badge:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(192, 132, 252, 0.3);
  transform: translateY(-2px);
}
.app-badge__icon { font-size: 1.75rem; line-height: 1; }
.app-badge__text { display: flex; flex-direction: column; line-height: 1.2; }
.app-badge__sub { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.app-badge__name { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); }

.app-section__perks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.app-perk {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.app-perk-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(192, 132, 252, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.app-section__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.app-section__phone-mock {
  width: clamp(200px, 28vw, 320px);
  aspect-ratio: 9/19;
  background: var(--bg-card);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  box-shadow: 0 20px 60px rgba(124,58,237,0.25), 0 0 0 1px var(--border);
}
.app-section__phone-mock::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 3rem;
  background: var(--grad-rainbow);
  opacity: 0.08;
  z-index: -1;
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.footer {
  background: #080300;
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer__logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-rainbow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #1a0a00;
  font-weight: 900;
}

.footer__logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  background: var(--grad-rainbow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 28ch;
}

.footer__socials {
  display: flex;
  gap: 0.75rem;
}

.footer__social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.25s;
  text-decoration: none;
}
.footer__social-btn:hover {
  background: var(--grad-rainbow);
  border-color: transparent;
}

.footer__col-title {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-primary);
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer__links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--text-primary); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--text-faint);
}

.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer__bottom-links a {
  font-size: 0.8rem;
  color: var(--text-faint);
  transition: color 0.2s;
}
.footer__bottom-links a:hover { color: var(--text-muted); }

/* ─── Animations ──────────────────────────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@keyframes drinkFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-14px) scale(1.01); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
  }
  .hero__right { display: none; }

  .about-section__inner,
  .locations-section__inner,
  .app-section__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-section__img-wrap { aspect-ratio: 16/9; }
  .about-section__float-stat { right: 1rem; }
  .locations-section__map { position: static; }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  :root { --section-py: 4rem; }

  .navbar__links { display: none; }
  .navbar__actions .btn { display: none; }
  .navbar__hamburger { display: flex; }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 6rem;
    padding-bottom: 2rem;
  }

  .hero__left { align-items: center; }
  .hero__bean { width: 70px; }
  .hero__subtext { max-width: none; }
  .hero__cta { justify-content: center; }
  .hero__stats { justify-content: center; }

  .hero__center {
    width: clamp(260px, 80vw, 400px);
    margin: 0 auto;
  }

  .hero__circle {
    width: clamp(260px, 75vw, 380px);
    height: clamp(260px, 75vw, 380px);
  }

  .hero__bg-text span { font-size: clamp(5rem, 25vw, 9rem); }

  .menu-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__heading { font-size: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .app-badges { flex-direction: column; }
}
