/* ── CSS Custom Properties ─────────────────────────── */
:root {
  --white: #ffffff;
  --alt-bg: #F9F6FF;
  --heading: #1A1A1A;
  --body: #555555;
  --muted: #999999;
  --coral: #FF6B6B;
  --purple: #9B59B6;
  --orange: #FF8C42;
  --gradient: linear-gradient(135deg, #FF6B6B, #9B59B6, #FF8C42);
  --gradient-hover: linear-gradient(45deg, #FF6B6B, #9B59B6, #FF8C42);
  --shadow-glow: 0 8px 32px rgba(155, 89, 182, 0.25);
  --shadow-card: 0 4px 20px rgba(0,0,0,0.08);
  --radius: 16px;
  --transition: all 0.3s ease;
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--body);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Typography ────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--heading);
  line-height: 1.2;
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: 1.4rem; font-weight: 700; }
p  { font-size: 1rem; line-height: 1.75; }

/* ── Gradient text utility ─────────────────────────── */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Gradient button ────────────────────────────────── */
.btn-gradient {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--gradient);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}
.btn-gradient:hover {
  background: var(--gradient-hover);
  transform: translateY(-2px) scale(1.03);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 28px;
  background: transparent;
  color: var(--heading);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  background-image: linear-gradient(white, white), var(--gradient);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.btn-outline:hover {
  background-image: var(--gradient), var(--gradient);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Section wrapper ────────────────────────────────── */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}
.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 12px;
}

/* ── Wavy SVG divider ────────────────────────────────── */
.divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  opacity: 0.35;
}
.divider svg { display: block; width: 100%; height: 40px; }

/* ── Navbar ─────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(155,89,182,0.1);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(155,89,182,0.15);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo { display: flex; align-items: center; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
}
.nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--body);
  padding: 8px 16px;
  border-radius: 8px;
  position: relative;
  transition: var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 16px;
  width: 0; height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active {
  color: var(--heading);
}
.nav-link:hover::after, .nav-link.active::after {
  width: calc(100% - 32px);
}
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-cta { font-size: 0.85rem; padding: 9px 20px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--heading);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 70px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.hero-content h1 { margin-bottom: 8px; }
.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--heading);
  margin-bottom: 16px;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--body);
  max-width: 420px;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Gradient blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  pointer-events: none;
}
.blob-1 { width: 500px; height: 500px; background: #FF6B6B; top: -100px; right: -100px; }
.blob-2 { width: 400px; height: 400px; background: #9B59B6; bottom: -80px; left: -80px; }
.blob-3 { width: 300px; height: 300px; background: #FF8C42; top: 40%; right: 20%; }

/* Floating doodles */
.doodle-float {
  position: absolute;
  pointer-events: none;
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
}

/* ── CSS Cup Art ────────────────────────────────────── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}
.cup-art {
  position: relative;
  width: 220px;
}
.cup-body {
  width: 180px;
  height: 240px;
  background: linear-gradient(160deg, rgba(255,107,107,0.15), rgba(155,89,182,0.2), rgba(255,140,66,0.15));
  border: 3px solid transparent;
  background-clip: padding-box;
  border-radius: 12px 12px 30px 30px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(155,89,182,0.2);
}
.cup-body::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: var(--gradient);
  border-radius: inherit;
  z-index: -1;
}
.cup-liquid {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(180deg, rgba(255,107,107,0.3), rgba(155,89,182,0.5));
  border-radius: 0 0 26px 26px;
}
.cup-straw {
  position: absolute;
  right: 40px; top: -30px;
  width: 8px; height: 120px;
  background: var(--gradient);
  border-radius: 4px;
  transform: rotate(8deg);
}
.cup-bubbles { position: absolute; bottom: 30px; left: 20px; }
.cup-bubbles span {
  display: inline-block;
  width: 12px; height: 12px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  margin-right: 6px;
}
.cup-bubbles span:nth-child(2) { width: 8px; height: 8px; }
.cup-bubbles span:nth-child(3) { width: 10px; height: 10px; }
.cup-base {
  width: 140px;
  height: 16px;
  background: var(--gradient);
  border-radius: 0 0 12px 12px;
  margin: 0 auto;
  opacity: 0.6;
}
.cup-shadow {
  width: 120px;
  height: 20px;
  background: rgba(155,89,182,0.2);
  border-radius: 50%;
  margin: 8px auto 0;
  filter: blur(8px);
}

/* ── Doodle float animation ─────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-12px) rotate(3deg); }
  66%       { transform: translateY(-6px) rotate(-2deg); }
}

/* ── About ──────────────────────────────────────────── */
.about { background: var(--alt-bg); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text h2 { margin-bottom: 20px; }
.about-stats { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
.about-stat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.stat-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
}
.about-stat strong { display: block; font-weight: 600; color: var(--heading); font-size: 0.95rem; }
.about-stat span { font-size: 0.85rem; color: var(--muted); }

/* About visual card */
.about-visual { display: flex; justify-content: center; }
.about-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 36px;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 2px solid transparent;
  background-clip: padding-box;
}
.about-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.about-card:hover::before { opacity: 1; }
.about-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.about-card-doodle { margin-bottom: 16px; }
.about-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-style: italic;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.about-quote-sub { font-size: 0.9rem; color: var(--muted); }
.about-card-dots { margin-top: 24px; display: flex; gap: 8px; justify-content: center; }
.about-card-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gradient);
}
.about-card-dots span:nth-child(2) { opacity: 0.6; }
.about-card-dots span:nth-child(3) { opacity: 0.3; }

/* ── Menu ───────────────────────────────────────────── */
.menu-header { text-align: center; margin-bottom: 56px; }
.menu-subtitle { font-size: 1.05rem; color: var(--body); margin-top: 12px; max-width: 520px; margin-left: auto; margin-right: auto; }
.menu-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  border: 2px solid rgba(155,89,182,0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.menu-card::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: transparent;
}
.menu-card:hover::after { opacity: 1; }

.menu-card--featured {
  background: linear-gradient(160deg, rgba(255,107,107,0.04), rgba(155,89,182,0.06), rgba(255,140,66,0.04));
  border-color: rgba(155,89,182,0.2);
}
.menu-card-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gradient);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 20px;
}
.menu-icon {
  width: 60px; height: 60px;
  background: var(--alt-bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: var(--transition);
}
.menu-card:hover .menu-icon {
  background: white;
  transform: scale(1.1) rotate(-5deg);
}
.menu-card-header h3 { margin-bottom: 8px; }
.menu-card-desc { font-size: 0.88rem; color: var(--muted); margin-bottom: 24px; }
.menu-items { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 10px; }
.menu-items li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(155,89,182,0.15);
  font-size: 0.9rem;
}
.item-name { color: var(--heading); font-weight: 500; }
.item-price {
  font-weight: 600;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.menu-link {
  font-size: 0.88rem;
  font-weight: 600;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: var(--transition);
  display: inline-block;
}
.menu-link:hover { letter-spacing: 0.02em; }

/* ── Gallery ────────────────────────────────────────── */
.gallery { background: var(--alt-bg); }
.gallery-header { text-align: center; margin-bottom: 48px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-card--tall { grid-row: span 2; }
.gallery-card--wide { grid-column: span 2; }

.gallery-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-card);
}
.gallery-img {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--gc1), var(--gc2));
  transition: transform 0.4s ease;
}
.gallery-card:hover .gallery-img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

/* Doodle corner bracket */
.gallery-doodle-corner {
  position: absolute;
  top: 12px; left: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-card:hover .gallery-doodle-corner { opacity: 0.8; }

/* ── Testimonials ────────────────────────────────────── */
.testimonials-header { text-align: center; margin-bottom: 48px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  border: 2px solid rgba(155,89,182,0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px; right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.1;
  line-height: 1;
}
.testimonial-card--featured {
  background: linear-gradient(160deg, rgba(155,89,182,0.04), rgba(255,107,107,0.04));
  border-color: rgba(155,89,182,0.2);
}
.testimonial-card::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: transparent;
}
.testimonial-card:hover::after { opacity: 1; }
.t-stars { margin-bottom: 16px; }
.t-text { font-size: 0.92rem; color: var(--body); line-height: 1.7; margin-bottom: 24px; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--av, #c0392b);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.t-author strong { display: block; font-size: 0.9rem; color: var(--heading); }
.t-author span { font-size: 0.78rem; color: var(--muted); }

/* ── Contact ────────────────────────────────────────── */
.contact { background: var(--alt-bg); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { margin-bottom: 36px; color: var(--body); }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  flex-shrink: 0;
}
.contact-item strong { display: block; font-weight: 600; color: var(--heading); font-size: 0.88rem; margin-bottom: 4px; }
.contact-item span, .contact-item a { font-size: 0.9rem; color: var(--body); line-height: 1.6; }
.contact-item a:hover {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-map {
  height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

/* ── Footer ─────────────────────────────────────────── */
.footer {
  background: var(--heading);
  color: rgba(255,255,255,0.7);
  position: relative;
  overflow: hidden;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.5); margin-top: 8px; }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer-nav a:hover {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-social { display: flex; gap: 12px; }
.social-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.social-icon:hover {
  border-color: transparent;
  background: var(--gradient);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(155,89,182,0.4);
}
.footer-bottom {
  text-align: center;
  padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
