/* =========================================================
   FroyoNepal — Design System
   Palette: Raspberry #E8336D · Mango #FFC857 · Mint #2EC4B6
            Plum #3D1A35 · Cream #FFF8F0
   Type: Baloo 2 (display) + Plus Jakarta Sans (body)
   Signature motif: the swirl — froyo's own shape, used as
   section dividers, underlines, and background ornament.
   ========================================================= */

:root {
  --raspberry: #E8336D;
  --raspberry-dark: #C41F56;
  --mango: #FFC857;
  --mango-soft: #FFE3A0;
  --mint: #2EC4B6;
  --mint-dark: #1FA89C;
  --plum: #3D1A35;
  --plum-soft: #6B4361;
  --cream: #FFF8F0;
  --white: #FFFFFF;

  --font-display: 'Baloo 2', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;

  --shadow-soft: 0 12px 32px rgba(61, 26, 53, 0.10);
  --shadow-pop: 0 8px 0 rgba(61, 26, 53, 0.12);

  --container: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--plum);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { text-decoration: none; color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  color: var(--plum);
}

h1 { font-size: clamp(2.4rem, 5.2vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }

p { font-size: 1.05rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--raspberry);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: '';
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23E8336D' d='M12 2c1.5 3-2 4-2 7a4 4 0 0 0 8 0c0-1.6-1-2.4-1-2.4s1.8.6 1.8 3.4a6.8 6.8 0 0 1-13.6 0C5.2 5.2 12 2 12 2z'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--raspberry);
  color: var(--white);
  box-shadow: 0 6px 0 var(--raspberry-dark);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 0 var(--raspberry-dark); }
.btn-primary:active { transform: translateY(2px); box-shadow: 0 3px 0 var(--raspberry-dark); }

.btn-mint {
  background: var(--mint);
  color: var(--white);
  box-shadow: 0 6px 0 var(--mint-dark);
}
.btn-mint:hover { transform: translateY(-2px); box-shadow: 0 8px 0 var(--mint-dark); }

.btn-outline {
  background: transparent;
  color: var(--plum);
  border: 2px solid var(--plum);
}
.btn-outline:hover { background: var(--plum); color: var(--white); }

.btn-light {
  background: var(--white);
  color: var(--raspberry);
  box-shadow: 0 6px 0 rgba(0,0,0,0.08);
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid rgba(61, 26, 53, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--raspberry);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo span { color: var(--plum); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--plum);
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0%;
  height: 3px;
  background: var(--mango);
  border-radius: 3px;
  transition: width 0.25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--raspberry); }

.nav-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--plum);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.25s;
}

@media (max-width: 880px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 24px 24px;
    border-bottom: 2px solid rgba(61,26,53,0.08);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-links li { width: 100%; border-bottom: 1px solid rgba(61,26,53,0.06); }
  .nav-links a { display: block; padding: 14px 0; }
  .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: block; }
}

/* ---------- Swirl divider (signature element) ---------- */
.swirl-divider {
  width: 100%;
  height: 60px;
  display: block;
  margin-top: -2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 70px 0 110px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--mango-soft) 0%, var(--cream) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 50px;
}

.hero-copy h1 { margin-bottom: 18px; }
.hero-copy .accent { color: var(--raspberry); position: relative; display: inline-block; }
.hero-copy p.lead { font-size: 1.18rem; color: var(--plum-soft); max-width: 480px; margin-bottom: 30px; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.swirl-blob {
  width: min(420px, 90%);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(2deg); }
}

.hero-tag {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 700;
  background: var(--white);
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
}
.hero-tag.tag-1 { top: 10%; left: -6%; color: var(--mint-dark); }
.hero-tag.tag-2 { bottom: 14%; right: -4%; color: var(--raspberry); }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy p.lead { margin: 0 auto 30px; }
  .hero-actions { justify-content: center; }
  .hero-tag { display: none; }
}

/* ---------- Section spacing ---------- */
.section { padding: 90px 0; }
.section-tight { padding: 60px 0; }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-plum { background: var(--plum); color: var(--cream); }
.section-plum h2, .section-plum h3 { color: var(--white); }

.section-head { max-width: 640px; margin-bottom: 50px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Feature cards (Joy in a Cup / Beyond Dessert style) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease;
}
.feature-card:hover { transform: translateY(-6px); }

.feature-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
}
.feature-icon.bg-raspberry { background: #FCE3EC; }
.feature-icon.bg-mango { background: #FFF2D6; }
.feature-icon.bg-mint { background: #DEF7F4; }

.feature-card h3 { margin-bottom: 10px; }
.feature-card p { color: var(--plum-soft); font-size: 0.98rem; }

@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* ---------- Story split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split.reverse .split-visual { order: 2; }

.split-visual img, .split-visual .placeholder-art {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

@media (max-width: 880px) {
  .split, .split.reverse .split-visual { grid-template-columns: 1fr; order: 0; }
}

.placeholder-art {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--mango-soft), #FCE3EC);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plum-soft);
  font-family: var(--font-display);
  font-size: 0.95rem;
  text-align: center;
  padding: 20px;
}

/* ---------- Stat strip ---------- */
.stat-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}
.stat { text-align: center; flex: 1; min-width: 140px; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--raspberry);
}
.stat span { color: var(--plum-soft); font-size: 0.92rem; }

/* ---------- Menu / Products ---------- */
.filter-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-pill {
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--white);
  border: 2px solid transparent;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: 0.2s;
}
.filter-pill.active, .filter-pill:hover { border-color: var(--raspberry); color: var(--raspberry); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.menu-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.menu-card-img {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--mango-soft), #DEF7F4);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem;
}
.menu-card-body { padding: 20px 22px 26px; }
.menu-card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--mint-dark);
  background: #DEF7F4;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.menu-card-row { display: flex; justify-content: space-between; align-items: baseline; margin-top: 12px; }
.menu-card-price { font-family: var(--font-display); font-weight: 700; color: var(--raspberry); font-size: 1.1rem; }

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

/* ---------- Locations ---------- */
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.location-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.location-photo {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #FCE3EC, var(--mango-soft));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  color: var(--plum-soft);
}
.location-body { padding: 22px 24px; }
.location-body h3 { margin-bottom: 8px; }
.location-body p { color: var(--plum-soft); font-size: 0.95rem; margin-bottom: 16px; }
.location-meta { display: flex; gap: 16px; font-size: 0.85rem; color: var(--mint-dark); font-weight: 600; margin-bottom: 16px; }

@media (max-width: 900px) {
  .location-grid { grid-template-columns: 1fr; }
}

/* ---------- Franchise ---------- */
.franchise-hero {
  background: var(--plum);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 60px;
  position: relative;
  overflow: hidden;
}
.franchise-hero h2 { color: var(--white); }
.franchise-hero p { color: #D9C7D2; max-width: 560px; }

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.step-card { text-align: left; }
.step-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--mango);
  margin-bottom: 8px;
  display: block;
}
.step-card h4 { font-size: 1.05rem; margin-bottom: 6px; color: var(--white); }
.step-card p { font-size: 0.92rem; color: #D9C7D2; }

@media (max-width: 900px) {
  .franchise-hero { padding: 40px 26px; }
  .steps-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .steps-row { grid-template-columns: 1fr; }
}

/* ---------- Form ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-soft);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.88rem; font-weight: 600; color: var(--plum-soft); }
.form-group input, .form-group select, .form-group textarea {
  font-family: var(--font-body);
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 2px solid #EFE2DD;
  background: var(--cream);
  font-size: 0.98rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--raspberry);
}
.form-note { font-size: 0.85rem; color: var(--plum-soft); margin-top: 14px; }

@media (max-width: 700px) {
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px; }
}

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
}
.faq-question .plus {
  font-size: 1.4rem;
  color: var(--raspberry);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .plus { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner { padding: 0 26px 22px; color: var(--plum-soft); font-size: 0.96rem; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--raspberry), #C41F56);
  border-radius: var(--radius-lg);
  padding: 56px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); margin-bottom: 8px; }
.cta-banner p { color: #FCE3EC; }

@media (max-width: 800px) {
  .cta-banner { padding: 36px 26px; text-align: center; justify-content: center; }
}

/* ---------- Newsletter ---------- */
.newsletter {
  background: var(--mango);
  border-radius: var(--radius-lg);
  padding: 50px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: center;
}
.newsletter h3 { margin-bottom: 8px; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 14px 18px;
  border-radius: 999px;
  border: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.newsletter-note { font-size: 0.8rem; color: var(--plum-soft); margin-top: 10px; display: flex; gap: 8px; align-items: flex-start; }

@media (max-width: 800px) {
  .newsletter { grid-template-columns: 1fr; padding: 32px 26px; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--plum);
  color: #D9C7D2;
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 14px;
  display: block;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.92rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--mango); }
.footer-socials { display: flex; gap: 12px; margin-top: 16px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ---------- Page header (for non-home pages) ---------- */
.page-header {
  padding: 60px 0 70px;
  background: linear-gradient(180deg, var(--mango-soft), var(--cream));
  text-align: center;
}
.page-header .eyebrow { justify-content: center; }
.page-header p { max-width: 560px; margin: 14px auto 0; color: var(--plum-soft); }

/* ---------- Utilities ---------- */
.mt-40 { margin-top: 40px; }
.text-center { text-align: center; }
.flex-center { display: flex; justify-content: center; }

/* WhatsApp floating button */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  z-index: 90;
  font-size: 1.6rem;
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.08); }
