@import url('https://fonts.googleapis.com/css2?family=Lilita+One&family=Nunito:wght@400;500;700;800;900&display=swap');

:root {
  --primary: #D4956A;
  --primary-dark: #B8764D;
  --secondary: #4CAF50;
  --secondary-dark: #388E3C;
  --accent: #E48991;
  --accent-dark: #C07078;
  --bg-cream: #FFF8F0;
  --bg-warm: #FDE8D0;
  --bg-dark: #3D2B1F;
  --text-dark: #2D1B0E;
  --text-light: #FFFFFF;
  --text-muted: #7A6555;
  --cta: #E48991;
  --cta-hover: #D47880;
  --yellow-accent: #F5C842;
  --card-bg: #FFFFFF;
  --border-outline: #2D1B0E;
}

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

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg-cream);
  color: var(--text-dark);
}

/* ========== NAVIGATION ========== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 48px;
  background: var(--cta);
}

.nav-logo img {
  width: 200px;
  height: 81px;
  border-radius: 25px;
  object-fit: cover;
}

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

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-light);
}

.nav-link i {
  color: var(--text-light);
  width: 16px;
  height: 16px;
}

.nav-cta {
  background: var(--text-light);
  color: var(--cta);
  border: none;
  border-radius: 25px;
  padding: 12px 24px;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--cta-hover);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--text-light);
  border: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.nav-toggle i {
  width: 22px;
  height: 22px;
  color: var(--cta);
}

.nav-toggle .icon-close { display: none; }
.nav.open .nav-toggle .icon-open { display: none; }
.nav.open .nav-toggle .icon-close { display: inline-flex; }

/* ========== HERO ========== */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 64px 80px;
  background-image: url('images/generated-1778224357735.png');
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(45, 27, 14, 0.2);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 600px;
}

.hero-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 20px;
  background: rgba(45, 27, 14, 0.53);
  border-radius: 20px;
}

.hero-tag span {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
}

.hero h1 {
  font-family: 'Nunito', sans-serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-light);
}

.hero-sub {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--bg-cream);
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  background: var(--cta);
  color: var(--text-light);
  border: 3px solid var(--border-outline);
  border-radius: 30px;
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--cta-hover);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  background: rgba(255, 255, 255, 0.13);
  color: var(--text-light);
  border: 3px solid var(--text-light);
  border-radius: 30px;
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ========== ABOUT SECTION ========== */
.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 64px 80px;
  background: var(--cta);
}

.about-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.about-tag {
  padding: 8px 20px;
  background: var(--text-light);
  border-radius: 20px;
}

.about-tag span {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-dark);
}

.about h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--text-light);
}

.about-subtitle {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  max-width: 550px;
}

.about-cards {
  display: flex;
  gap: 32px;
  width: 100%;
}

.about-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 32px;
  background: var(--card-bg);
  border-radius: 24px;
  border: 3px solid var(--border-outline);
}

.about-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-card-icon.green { background: var(--secondary); }
.about-card-icon.pink { background: var(--cta); }
.about-card-icon.yellow { background: var(--yellow-accent); }

.about-card-icon i {
  width: 36px;
  height: 36px;
}

.about-card h3 {
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  color: var(--text-dark);
}

.about-card p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  color: var(--text-muted);
  max-width: 280px;
}

/* ========== MENU HIGHLIGHTS ========== */
.menu-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 80px 120px;
  background: var(--bg-cream);
}

.menu-section h2 {
  font-family: 'Lilita One', cursive;
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  color: var(--text-dark);
}

.menu-subtitle {
  font-size: 18px;
  text-align: center;
  color: var(--text-muted);
  max-width: 700px;
}

.menu-grid {
  display: flex;
  gap: 32px;
  width: 100%;
  justify-content: center;
}

.menu-card {
  width: 280px;
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border-radius: 20px;
  border: 3px solid var(--border-outline);
  overflow: hidden;
}

.menu-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu-card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 24px;
  flex: 1;
}

.menu-card h3 {
  font-family: 'Lilita One', cursive;
  font-size: 22px;
  color: var(--text-dark);
}

.menu-card p {
  font-size: 14px;
  color: var(--text-muted);
}

.menu-card .price {
  font-family: 'Lilita One', cursive;
  font-size: 24px;
  color: var(--cta);
}

.btn-menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: var(--cta);
  color: var(--text-light);
  border: 3px solid var(--border-outline);
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-menu:hover {
  background: var(--cta-hover);
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 80px 120px;
  background: var(--bg-warm);
}

.how-it-works h2 {
  font-family: 'Lilita One', cursive;
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  color: var(--text-dark);
}

.how-subtitle {
  font-size: 18px;
  text-align: center;
  color: var(--text-muted);
  max-width: 600px;
}

.steps-row {
  display: flex;
  gap: 48px;
  width: 100%;
  justify-content: center;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 24px;
  width: 300px;
}

.step-circle {
  width: 80px;
  height: 80px;
  border-radius: 40px;
  border: 3px solid var(--border-outline);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-circle.pink { background: var(--cta); }
.step-circle.green { background: var(--secondary); }
.step-circle.yellow { background: var(--yellow-accent); }

.step-circle span {
  font-family: 'Lilita One', cursive;
  font-size: 36px;
  color: var(--text-light);
}

.step-circle.yellow span {
  color: var(--text-dark);
}

.step-icon i {
  width: 36px;
  height: 36px;
}

.step-icon.pink i { color: var(--cta); }
.step-icon.green i { color: var(--secondary); }
.step-icon.yellow i { color: var(--yellow-accent); }

.step h3 {
  font-family: 'Lilita One', cursive;
  font-size: 22px;
  text-align: center;
  color: var(--text-dark);
}

.step p {
  font-size: 15px;
  text-align: center;
  color: var(--text-muted);
  max-width: 260px;
}

/* ========== CTA SECTION ========== */
.cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 80px 120px;
  background: var(--cta);
}

.cta-section h2 {
  font-family: 'Lilita One', cursive;
  font-size: 42px;
  text-align: center;
  color: var(--text-light);
}

.cta-desc {
  font-size: 18px;
  text-align: center;
  color: rgba(255, 255, 255, 0.87);
  max-width: 700px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 44px;
  background: var(--text-light);
  color: var(--cta);
  border: 3px solid var(--border-outline);
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 44px;
  background: rgba(255, 255, 255, 0.13);
  color: var(--text-light);
  border: 3px solid var(--text-light);
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ========== INSTAGRAM FEED ========== */
.instagram-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 80px 120px;
  background: var(--bg-cream);
}

.insta-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.insta-header i {
  width: 36px;
  height: 36px;
  color: var(--cta);
}

.insta-header h2 {
  font-family: 'Lilita One', cursive;
  font-size: 42px;
  color: var(--text-dark);
}

.insta-handle {
  font-size: 18px;
  font-weight: 700;
  color: var(--cta);
}

.insta-grid {
  display: flex;
  gap: 16px;
  width: 100%;
}

.insta-img {
  flex: 1;
  height: 200px;
  border-radius: 16px;
  border: 2px solid var(--border-outline);
  object-fit: cover;
}

.btn-follow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--cta);
  color: var(--text-light);
  border: 3px solid var(--border-outline);
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-follow:hover {
  background: var(--cta-hover);
}

/* ========== FOOTER ========== */
.footer {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 60px 120px;
  background: #000000;
  color: var(--text-light);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 320px;
}

.footer-logo {
  width: 100px;
  height: 100px;
  border-radius: 50px;
  object-fit: contain;
}

.footer-brand h3 {
  font-size: 22px;
  font-weight: 800;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.67);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h4 {
  font-family: 'Lilita One', cursive;
  font-size: 18px;
  color: var(--text-light);
}

.footer-col a,
.footer-col p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.67);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--text-light);
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-row i {
  width: 16px;
  height: 16px;
  color: var(--cta);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.13);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  color: rgba(255, 255, 255, 0.67);
  transition: color 0.2s;
}

.social-icons a:hover {
  color: var(--text-light);
}

.social-icons i {
  width: 20px;
  height: 20px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .nav { padding: 12px 24px; }
  .hero { padding: 48px 40px; }
  .hero h1 { font-size: 40px; }
  .about { padding: 48px 40px; }
  .about-cards { flex-direction: column; align-items: center; }
  .about-card { max-width: 400px; }
  .menu-section { padding: 60px 40px; }
  .menu-grid { flex-wrap: wrap; justify-content: center; }
  .how-it-works { padding: 60px 40px; }
  .steps-row { flex-direction: column; align-items: center; }
  .cta-section { padding: 60px 40px; }
  .instagram-section { padding: 60px 40px; }
  .insta-grid { flex-wrap: wrap; }
  .insta-img { min-width: 150px; }
  .footer { padding: 40px 40px; }
  .footer-top { flex-wrap: wrap; }
}

@media (max-width: 768px) {
  .nav { position: relative; padding: 12px 20px; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cta);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px 20px 20px 20px;
    box-shadow: 0 12px 24px rgba(45, 27, 14, 0.18);
    z-index: 50;
  }
  .nav.open .nav-links { display: flex; }
  .nav-links .nav-link {
    padding: 12px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 17px;
  }
  .nav-links .nav-link:last-of-type { border-bottom: none; }
  .nav-cta { align-self: stretch; text-align: center; margin-top: 8px; padding: 14px 24px; }
  .nav-logo img { width: 160px; height: 65px; }
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 16px; }
  .hero-buttons { flex-direction: column; }
  .about h2 { font-size: 28px; }
  .menu-section h2 { font-size: 32px; }
  .menu-card { width: 100%; max-width: 320px; }
  .how-it-works h2 { font-size: 32px; }
  .cta-section h2 { font-size: 32px; }
  .cta-buttons { flex-direction: column; }
  .insta-header h2 { font-size: 28px; }
  .insta-grid { gap: 8px; }
  .insta-img { min-width: 120px; height: 150px; }
  .footer-top { flex-direction: column; }
}

/* ========== SHARED PAGE HERO ========== */
.page-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 80px 40px;
  background: var(--cta);
}

.page-hero-tag {
  padding: 8px 20px;
  background: var(--text-light);
  border-radius: 20px;
}

.page-hero-tag span {
  font-size: 14px;
  font-weight: 800;
  color: var(--cta);
}

.page-hero h1 {
  font-family: 'Lilita One', cursive;
  font-size: 64px;
  font-weight: 400;
  color: var(--text-light);
  text-align: center;
  line-height: 1;
}

.page-hero-sub {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.87);
  text-align: center;
  max-width: 640px;
}

/* ========== BEZORGING: ZONES ========== */
.zones-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 80px 120px;
  background: var(--bg-cream);
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.section-header h2 {
  font-family: 'Lilita One', cursive;
  font-size: 48px;
  font-weight: 400;
  color: var(--text-dark);
  text-align: center;
}

.section-header p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: center;
  max-width: 640px;
}

.zones-grid {
  display: flex;
  gap: 24px;
  width: 100%;
  align-items: stretch;
}

.zone-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 32px;
  background: var(--card-bg);
  border-radius: 24px;
  border: 2px solid #F0E0E0;
}

.zone-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cta);
  display: flex;
  align-items: center;
  justify-content: center;
}

.zone-icon i {
  width: 28px;
  height: 28px;
  color: var(--text-light);
}

.zone-card h3 {
  font-family: 'Lilita One', cursive;
  font-size: 22px;
  color: var(--text-dark);
}

.zone-card p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-muted);
}

.zone-badge {
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
}

.zone-badge.free { background: rgba(76, 175, 80, 0.13); color: #2E7D32; }
.zone-badge.fee { background: rgba(255, 184, 0, 0.13); color: #B8860B; }

/* ========== BEZORGING: TIMES & PRICES ========== */
.times-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 80px 120px;
  background: var(--text-light);
}

.section-tag {
  padding: 6px 16px;
  background: rgba(255, 184, 0, 0.13);
  border-radius: 20px;
}

.section-tag span {
  font-size: 13px;
  font-weight: 800;
  color: #B8860B;
}

.times-grid {
  display: flex;
  gap: 24px;
  width: 100%;
  align-items: stretch;
}

.time-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 32px;
  background: var(--bg-cream);
  border-radius: 24px;
}

.time-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.time-icon.pink { background: var(--cta); }
.time-icon.green { background: var(--secondary); }
.time-icon.yellow { background: var(--yellow-accent); }

.time-icon i {
  width: 32px;
  height: 32px;
  color: var(--text-light);
}

.time-icon.yellow i { color: var(--text-dark); }

.time-card h3 {
  font-family: 'Lilita One', cursive;
  font-size: 22px;
  color: var(--text-dark);
}

.time-card p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-muted);
}

/* ========== BEZORGING: STEPS ========== */
.how-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 80px 120px;
  background: var(--bg-cream);
}

.how-grid {
  display: flex;
  gap: 20px;
  width: 100%;
  align-items: stretch;
}

.how-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 28px;
  background: var(--card-bg);
  border-radius: 24px;
}

.how-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lilita One', cursive;
  font-size: 22px;
}

.how-num.pink { background: var(--cta); color: var(--text-light); }
.how-num.green { background: var(--secondary); color: var(--text-light); }
.how-num.yellow { background: var(--yellow-accent); color: var(--text-dark); }

.how-card h3 {
  font-family: 'Lilita One', cursive;
  font-size: 20px;
  color: var(--text-dark);
}

.how-card p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-muted);
}

/* ========== BEZORGING: FAQ ========== */
.faq-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 80px 120px;
  background: var(--text-light);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.faq-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--bg-cream);
  border-radius: 20px;
  align-items: flex-start;
}

.faq-body { flex: 1; display: flex; flex-direction: column; gap: 8px; }

.faq-body h3 {
  font-family: 'Lilita One', cursive;
  font-size: 18px;
  color: var(--text-dark);
}

.faq-body p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-muted);
}

.faq-item > i {
  width: 24px;
  height: 24px;
  color: var(--cta);
  flex-shrink: 0;
}

/* ========== BEZORGING / CONTACT: CTA ========== */
.page-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 80px 120px;
  background: var(--cta);
}

.page-cta h2 {
  font-family: 'Lilita One', cursive;
  font-size: 48px;
  color: var(--text-light);
  text-align: center;
}

.page-cta p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.87);
  text-align: center;
  max-width: 560px;
}

.page-cta-buttons { display: flex; gap: 16px; }

.btn-pill-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--text-light);
  color: var(--cta);
  border-radius: 30px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-pill-white:hover { background: var(--cta-hover); color: var(--text-light); }

.btn-pill-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
  border-radius: 30px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-pill-outline:hover { background: rgba(255, 255, 255, 0.13); }

.btn-pill-outline i { width: 18px; height: 18px; }

/* ========== CONTACT: INFO CARDS ========== */
.contact-info-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 80px 120px;
  background: var(--bg-cream);
}

.contact-info-grid {
  display: flex;
  gap: 24px;
  width: 100%;
  align-items: stretch;
}

.info-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px;
  background: var(--card-bg);
  border-radius: 24px;
}

.info-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon.pink { background: var(--cta); }
.info-icon.green { background: var(--secondary); }
.info-icon.yellow { background: var(--yellow-accent); }

.info-icon i {
  width: 32px;
  height: 32px;
  color: var(--text-light);
}

.info-icon.yellow i { color: var(--text-dark); }

.info-card h3 {
  font-family: 'Lilita One', cursive;
  font-size: 20px;
  color: var(--text-dark);
}

.info-card p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-muted);
  text-align: center;
  white-space: pre-line;
}

/* ========== CONTACT: FORM + MAP ========== */
.form-map-section {
  display: flex;
  gap: 48px;
  padding: 80px 120px;
  background: var(--text-light);
  align-items: flex-start;
}

.form-col, .map-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-head h2, .map-head h2 {
  font-family: 'Lilita One', cursive;
  font-size: 36px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-head p, .map-head p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-muted);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
  background: var(--bg-cream);
  border-radius: 24px;
}

.form-row { display: flex; gap: 16px; }
.form-row .form-field { flex: 1; }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-dark);
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 16px;
  background: var(--text-light);
  border: 1px solid #E0D5D5;
  border-radius: 14px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  width: 100%;
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: #A09696; }

.form-field textarea {
  height: 140px;
  resize: vertical;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--cta);
  color: var(--text-light);
  border: none;
  border-radius: 30px;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}

.btn-submit:hover { background: var(--cta-hover); }

.btn-submit i { width: 18px; height: 18px; }

.map-frame {
  width: 100%;
  height: 380px;
  border-radius: 24px;
  border: none;
  overflow: hidden;
  background: #E8DDD3;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.social-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  background: var(--bg-cream);
  border-radius: 24px;
}

.social-card h3 {
  font-family: 'Lilita One', cursive;
  font-size: 22px;
  color: var(--text-dark);
}

.social-card p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-muted);
}

.social-card-row { display: flex; gap: 12px; }

.social-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cta);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s;
}

.social-circle:hover { background: var(--cta-hover); }

.social-circle i {
  width: 22px;
  height: 22px;
  color: var(--text-light);
}

/* ========== PAGE-SPECIFIC RESPONSIVE ========== */
@media (max-width: 1024px) {
  .page-hero { padding: 64px 40px; }
  .page-hero h1 { font-size: 48px; }
  .zones-section, .times-section, .how-section, .faq-section,
  .contact-info-section, .page-cta { padding: 60px 40px; }
  .form-map-section { padding: 60px 40px; flex-direction: column; }
  .zones-grid, .times-grid, .how-grid, .contact-info-grid {
    flex-wrap: wrap;
  }
  .zones-grid > *, .times-grid > *, .contact-info-grid > * { min-width: 280px; }
  .how-grid > * { min-width: 240px; }
}

@media (max-width: 768px) {
  .page-hero h1 { font-size: 36px; }
  .zones-grid, .times-grid, .how-grid, .contact-info-grid {
    flex-direction: column;
  }
  .form-row { flex-direction: column; }
  .page-cta h2, .contact-info-section h2 { font-size: 32px; }
  .page-cta-buttons { flex-direction: column; width: 100%; }
}

/* ========== MENU PAGE: FILTERS ========== */
.filters-section {
  display: flex;
  justify-content: center;
  padding: 48px 80px 32px 80px;
  background: var(--bg-cream);
}

.filter-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.chip {
  padding: 12px 24px;
  background: var(--card-bg);
  border: 3px solid var(--border-outline);
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.chip.active, .chip:hover { background: var(--cta); color: var(--text-light); }

/* ========== MENU PAGE: CATEGORIES ========== */
.menu-page-section {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 24px 80px 80px 80px;
  background: var(--bg-cream);
}

.cat-header { display: flex; flex-direction: column; gap: 8px; padding-top: 24px; }
.cat-header:first-child { padding-top: 0; }

.cat-header h2 {
  font-family: 'Lilita One', cursive;
  font-size: 36px;
  color: var(--text-dark);
}

.cat-header p {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
}

.menu-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  width: 100%;
}

.menu-row.row-3 { grid-template-columns: repeat(3, 1fr); }

.menu-card-v2 {
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border-radius: 20px;
  border: 3px solid var(--border-outline);
  overflow: hidden;
}

.menu-card-v2 .menu-card-img { height: 200px; }
.menu-card-v2.compact .menu-card-img { height: 160px; }

.menu-card-v2 .menu-card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 24px;
  flex: 1;
}

.menu-card-v2 h3 {
  font-family: 'Lilita One', cursive;
  font-size: 22px;
  color: var(--text-dark);
}

.menu-card-v2 .card-desc {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.4;
  flex: 1;
}

.menu-card-v2 .card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
}

.menu-card-v2 .price {
  font-family: 'Lilita One', cursive;
  font-size: 24px;
  color: var(--cta);
}

.btn-order {
  padding: 8px 18px;
  background: var(--cta);
  color: var(--text-light);
  border: 2px solid var(--border-outline);
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-order:hover { background: var(--cta-hover); }

/* ========== OVER ONS: STORY ========== */
.story-section {
  display: flex;
  gap: 64px;
  padding: 80px 120px;
  background: var(--bg-cream);
  align-items: center;
}

.story-col { flex: 1; display: flex; flex-direction: column; gap: 20px; }

.story-tag {
  align-self: flex-start;
  padding: 8px 20px;
  background: var(--cta);
  border-radius: 20px;
}

.story-tag span {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.story-col h2 {
  font-family: 'Lilita One', cursive;
  font-size: 42px;
  color: var(--text-dark);
  line-height: 1.1;
}

.story-col p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-muted);
}

.btn-story {
  align-self: flex-start;
  padding: 14px 30px;
  background: var(--cta);
  color: var(--text-light);
  border: 3px solid var(--border-outline);
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s;
  margin-top: 8px;
}

.btn-story:hover { background: var(--cta-hover); }

.story-img {
  flex: 1;
  height: 480px;
  border-radius: 24px;
  border: 3px solid var(--border-outline);
  background-size: cover;
  background-position: center;
}

/* ========== OVER ONS: MISSION ========== */
.mission-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 80px 120px;
  background: var(--cta);
}

.mission-tag {
  padding: 8px 20px;
  background: var(--text-light);
  border-radius: 20px;
}

.mission-tag span {
  font-size: 13px;
  font-weight: 800;
  color: var(--cta);
  letter-spacing: 0.5px;
}

.mission-section h2 {
  font-family: 'Lilita One', cursive;
  font-size: 42px;
  color: var(--text-light);
  text-align: center;
}

.mission-section .section-sub {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.87);
  text-align: center;
  max-width: 600px;
}

.mission-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

.value-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px;
  background: var(--card-bg);
  border-radius: 24px;
  border: 3px solid var(--border-outline);
}

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cta);
  border: 3px solid var(--border-outline);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon i { width: 28px; height: 28px; color: var(--text-light); }

.value-card h3 {
  font-family: 'Lilita One', cursive;
  font-size: 20px;
  color: var(--text-dark);
  text-align: center;
}

.value-card p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: center;
}

/* ========== OVER ONS: TEAM ========== */
.team-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 80px 120px;
  background: var(--bg-warm);
}

.team-section .section-header h2 { font-size: 42px; }

.team-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px;
  background: var(--card-bg);
  border-radius: 24px;
  border: 3px solid var(--border-outline);
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--border-outline);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lilita One', cursive;
  font-size: 42px;
  color: var(--text-light);
}

.team-avatar.pink { background: var(--cta); }
.team-avatar.green { background: var(--secondary); }
.team-avatar.yellow { background: var(--yellow-accent); color: var(--text-dark); }
.team-avatar.dark { background: var(--bg-dark); }

.team-card h3 {
  font-family: 'Lilita One', cursive;
  font-size: 22px;
  color: var(--text-dark);
}

.team-role {
  font-size: 14px;
  font-weight: 800;
  color: var(--cta);
}

.team-card p {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: center;
}

/* ========== OVER ONS: STATS ========== */
.stats-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 80px 120px;
  background: var(--bg-dark);
}

.stats-section h2 {
  font-family: 'Lilita One', cursive;
  font-size: 42px;
  color: var(--text-light);
  text-align: center;
}

.stats-section .stats-sub {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  max-width: 600px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  width: 100%;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 32px;
  background: var(--cta);
  border-radius: 24px;
  border: 3px solid var(--border-outline);
}

.stat-card .stat-num {
  font-family: 'Lilita One', cursive;
  font-size: 56px;
  color: var(--text-light);
  line-height: 1;
}

.stat-card .stat-label {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-light);
  text-align: center;
}

/* ========== OVER ONS: VISIT SHOP ========== */
.visit-section {
  display: flex;
  gap: 64px;
  padding: 80px 120px;
  background: var(--bg-warm);
  align-items: center;
}

.visit-map {
  flex: 1;
  height: 480px;
  border-radius: 24px;
  border: 3px solid var(--border-outline);
  overflow: hidden;
}

.visit-map iframe { width: 100%; height: 100%; border: 0; display: block; }

.visit-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.visit-tag {
  align-self: flex-start;
  padding: 8px 20px;
  background: var(--cta);
  border-radius: 20px;
}

.visit-tag span {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.visit-col h2 {
  font-family: 'Lilita One', cursive;
  font-size: 42px;
  color: var(--text-dark);
  line-height: 1.1;
}

.visit-col > p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-muted);
}

.visit-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: var(--card-bg);
  border-radius: 16px;
  border: 3px solid var(--border-outline);
}

.visit-info .visit-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.visit-info .visit-row i {
  width: 18px;
  height: 18px;
  color: var(--cta);
}

.visit-btn-row { display: flex; gap: 16px; }

.btn-route {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--cta);
  color: var(--text-light);
  border: 3px solid var(--border-outline);
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
}

.btn-call-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--card-bg);
  color: var(--text-dark);
  border: 3px solid var(--border-outline);
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
}

.btn-route i, .btn-call-light i { width: 18px; height: 18px; }

/* ========== MENU/OVER-ONS RESPONSIVE ========== */
@media (max-width: 1024px) {
  .menu-page-section { padding: 24px 40px 60px 40px; }
  .menu-row { grid-template-columns: repeat(2, 1fr); }
  .menu-row.row-3 { grid-template-columns: repeat(2, 1fr); }
  .story-section, .mission-section, .team-section, .stats-section, .visit-section {
    padding: 60px 40px;
  }
  .story-section, .visit-section { flex-direction: column; }
  .story-img, .visit-map { width: 100%; height: 360px; }
  .mission-row, .team-row, .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .menu-row, .menu-row.row-3 { grid-template-columns: 1fr; }
  .mission-row, .team-row, .stats-row { grid-template-columns: 1fr; }
  .filters-section { padding: 32px 16px; }
  .visit-btn-row { flex-direction: column; }
}
