/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #F2EDE5;
  background: #17130F;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== DESIGN TOKENS ===== */
:root {
  --bg: #17130F;
  --bg-light: #F5EFE4;
  --ink: #F2EDE5;
  --ink-dark: #2B2318;
  --ink-soft: #B8ADA0;
  --accent: #D9791E;
  --whatsapp: #25D366;
  --line: rgba(242, 237, 229, 0.12);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%;
  background: rgba(23, 19, 15, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  z-index: 1000;
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 8px; font-size: 17px; }
.logo i { color: var(--accent); font-size: 20px; }
.logo span { color: var(--accent); font-weight: 500; }
.logo strong { color: var(--ink); font-weight: 700; }
.nav-links { display: none; }
.nav-links a {
  font-size: 14px; font-weight: 600; color: var(--ink);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--accent); }
.btn-whatsapp {
  display: none;
  background: var(--whatsapp); color: #fff;
  padding: 10px 18px; border-radius: 30px; font-size: 13px;
  font-weight: 700; transition: opacity 0.2s ease;
  align-items: center; gap: 8px;
}
.btn-whatsapp:hover { opacity: 0.88; }
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { width: 24px; height: 2px; background: var(--ink); transition: all 0.3s ease; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-links.mobile-active {
  display: flex; flex-direction: column; position: absolute;
  top: 100%; left: 0; width: 100%; background: var(--bg);
  border-bottom: 1px solid var(--line); padding: 20px; gap: 16px;
}
@media (min-width: 900px) {
  .nav-links { display: flex; gap: 26px; }
  .btn-whatsapp { display: flex; }
  .hamburger { display: none; }
}
/* ===== SHARED SECTION STYLES ===== */
.section-container { max-width: 1200px; margin: 0 auto; padding: 70px 20px; }

/* ===== HERO ===== */
.hero { padding: 130px 20px 60px; background: var(--bg); position: relative; }
.hero-container {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 40px;
}
.hero-welcome {
  font-family: 'Anton', sans-serif; font-size: 20px; color: var(--accent);
  text-transform: capitalize; letter-spacing: 0.5px;
}
.hero-text h1 {
  font-family: 'Anton', sans-serif; font-size: 44px; line-height: 1.05;
  letter-spacing: 0.5px; color: var(--ink); margin: 6px 0 12px;
}
.hero-text h1 span { color: var(--accent); }
.hero-tagline { font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 16px; }
.hero-tagline span { color: var(--accent); }
.hero-desc { font-size: 15px; color: var(--ink-soft); max-width: 440px; margin-bottom: 28px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-whatsapp-lg {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--whatsapp); color: #fff;
  padding: 14px 26px; border-radius: 30px; font-size: 15px; font-weight: 700;
  transition: opacity 0.2s ease;
}
.btn-whatsapp-lg:hover { opacity: 0.88; }
.btn-outline-lg {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; border: 2px solid var(--accent); color: var(--accent);
  padding: 12px 24px; border-radius: 30px; font-size: 15px; font-weight: 700;
  transition: all 0.2s ease;
}
.btn-outline-lg:hover { background: var(--accent); color: #fff; }
.hero-image { position: relative; }
.hero-image img {
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
}
.hero-badge {
  position: absolute; top: -14px; left: -14px;
  width: 100px; height: 100px; border: 2px solid var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: rgba(23,19,15,0.9); transform: rotate(-8deg);
}
.hero-badge span { font-size: 10px; font-weight: 700; color: var(--ink); line-height: 1.3; }
.hero-badge strong { color: var(--accent); font-size: 12px; }

@media (min-width: 900px) {
  .hero { padding: 170px 20px 100px; }
  .hero-container { flex-direction: row; align-items: center; gap: 60px; }
  .hero-text { flex: 1; }
  .hero-image { flex: 1; }
  .hero-text h1 { font-size: 58px; }
  .hero-badge { width: 130px; height: 130px; }
  .hero-badge span { font-size: 13px; }
}

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--bg); border-top: 1px solid var(--line); padding: 40px 0; }
.trust-grid {
  padding: 0 20px; display: grid; grid-template-columns: 1fr; gap: 28px; text-align: center;
}
.trust-card i { font-size: 28px; color: var(--accent); margin-bottom: 12px; }
.trust-card h3 { font-size: 14px; font-weight: 700; color: var(--accent); text-transform: uppercase; margin-bottom: 6px; letter-spacing: 0.5px; }
.trust-card p { font-size: 13px; color: var(--ink-soft); }
@media (min-width: 900px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }

/* ===== FAVOURITES (light section) ===== */
.favourites { background: var(--bg-light); color: var(--ink-dark); }
.favourites h2 {
  font-family: 'Anton', sans-serif; font-size: 26px; text-align: center;
  color: var(--ink-dark); letter-spacing: 0.5px;
}
.fav-sub {
  text-align: center; font-style: italic; color: var(--accent);
  font-weight: 600; margin: 8px 0 36px;
}
.fav-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.fav-card { border-radius: 8px; overflow: hidden; background: var(--ink-dark); }
.fav-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.fav-info { padding: 12px; }
.fav-info h3 {
  font-size: 13px; font-weight: 700; color: #fff;
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px;
}
.fav-info h3 i { color: var(--accent); font-size: 12px; }
.fav-info p { font-size: 11px; color: var(--ink-soft); }
@media (min-width: 700px) { .fav-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .fav-grid { grid-template-columns: repeat(5, 1fr); } }

/* ===== GALLERY ===== */
.gallery { background: var(--bg); }
.gallery h2 {
  font-family: 'Anton', sans-serif; font-size: 26px; text-align: center;
  color: var(--ink); letter-spacing: 0.5px; margin-bottom: 32px;
}
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.gallery-grid img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 6px;
  cursor: zoom-in; transition: opacity 0.2s ease;
}
.gallery-grid img:hover { opacity: 0.85; }
@media (min-width: 700px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .gallery-grid { grid-template-columns: repeat(6, 1fr); } }

/* ===== FINAL CTA ===== */
.final-cta { background: var(--bg); border-top: 1px solid var(--line); }
.final-cta-grid { display: flex; flex-direction: column; gap: 32px; }
.cta-hungry { font-size: 16px; color: var(--accent); font-style: italic; margin-bottom: 8px; }
.cta-headline h2 {
  font-family: 'Anton', sans-serif; font-size: 26px; letter-spacing: 0.5px;
  color: var(--ink); line-height: 1.2; margin-bottom: 12px;
}
.cta-headline h2 span { color: var(--accent); }
.cta-headline p { font-size: 14px; color: var(--ink-soft); max-width: 380px; }
.cta-actions { display: flex; flex-direction: column; gap: 20px; }
.cta-action {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 6px; padding: 16px; border: 1px solid var(--line); border-radius: 8px;
}
.cta-action i { font-size: 24px; color: var(--accent); margin-bottom: 4px; }
.cta-label { font-size: 12px; color: var(--ink-soft); text-transform: uppercase; }
.cta-value { font-size: 15px; font-weight: 700; color: var(--ink); }
@media (min-width: 900px) {
  .final-cta-grid { flex-direction: row; justify-content: space-between; align-items: center; }
  .cta-actions { flex-direction: row; }
}

/* ===== FOOTER ===== */
.footer { background: #100D0A; padding: 30px 20px; border-top: 1px solid var(--line); }
.footer-grid {
  padding: 0; display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 14px;
}
.footer-logo { display: flex; align-items: center; gap: 8px; font-size: 15px; }
.footer-logo i { color: var(--accent); }
.footer-logo span { color: var(--accent); }
.footer-logo strong { color: var(--ink); }
.footer-quote { font-size: 13px; color: var(--ink-soft); font-style: italic; }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--ink);
  transition: all 0.2s ease;
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
@media (min-width: 700px) {
  .footer-grid { flex-direction: row; justify-content: space-between; }
}
/* ===== FADE-IN ANIMATION ===== */
.fade-init { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-visible { opacity: 1; transform: translateY(0); }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0); display: flex; align-items: center; justify-content: center;
  z-index: 3000; opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, background 0.35s ease; padding: 20px;
}
.lightbox.active { opacity: 1; visibility: visible; background: rgba(0,0,0,0.9); }
.lightbox img {
  max-width: 90%; max-height: 85vh; border-radius: 6px;
  transform: scale(0.9); transition: transform 0.35s ease; object-fit: contain;
}
.lightbox.active img { transform: scale(1); }
.lightbox-close {
  position: absolute; top: 24px; right: 30px; color: #fff;
  font-size: 36px; font-weight: 300; cursor: pointer; line-height: 1; z-index: 3001;
}