@import url('https://fonts.googleapis.com/css2?family=Young+Serif&family=Karla:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

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

:root {
  --bg: #faf5ed;
  --bg-warm: #f7efe3;
  --bg-alt: #f0e8da;
  --text: #2c1e14;
  --text-light: #6b5e53;
  --primary: #b85c38;
  --primary-dark: #8f4429;
  --primary-light: rgba(184, 92, 56, 0.12);
  --secondary: #4a6741;
  --secondary-dark: #3a5334;
  --accent: #d4973b;
  --muted: #d4c8b8;
  --white: #fffbf5;
  --dark: #1e1610;
  --dark-overlay: rgba(30, 22, 16, 0.6);
  --grain-opacity: 0.03;

  --font-display: 'Young Serif', serif;
  --font-body: 'Karla', sans-serif;

  --max-width: 1140px;
  --section-pad: 120px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Texture grain subtile */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: var(--grain-opacity);
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

::selection {
  background: var(--primary);
  color: var(--white);
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
}

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

.organic-radius {
  border-radius: 12px 4px 12px 4px;
}


/* ===== WAVY DIVIDER ===== */

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 200px;
  margin: 24px auto 0;
}

.divider svg {
  width: 100%;
  height: 12px;
  display: block;
}

.divider svg path {
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.5;
}

.section-dark .divider svg path {
  stroke: rgba(255, 251, 245, 0.18);
}


/* ===== NAVIGATION ===== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, box-shadow 0.3s ease, border-color 0.4s ease;
}

.nav.scrolled {
  background: var(--bg);
  border-bottom-color: var(--muted);
  box-shadow: 0 2px 24px rgba(44, 30, 20, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 0.01em;
  transition: color 0.4s ease;
}

.nav.scrolled .nav-brand {
  color: var(--text);
}

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

.nav-links a {
  color: rgba(255, 251, 245, 0.75);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav.scrolled .nav-links a {
  color: var(--text-light);
}

.nav.scrolled .nav-links a:hover {
  color: var(--primary);
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--secondary);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.15s ease;
}

.btn-wa:hover {
  background: var(--secondary-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.4s ease;
}

.nav.scrolled .nav-toggle span {
  background: var(--text);
}


/* ===== HERO ===== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: -20% 0 0 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 22, 16, 0.35) 0%,
    rgba(30, 22, 16, 0.5) 40%,
    rgba(30, 22, 16, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 24px 100px;
  max-width: 780px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  padding: 7px 18px;
  border: 1px solid rgba(212, 151, 59, 0.35);
  border-radius: 12px 4px 12px 4px;
}

.hero h1 {
  font-size: clamp(3.2rem, 9vw, 7rem);
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: rgba(255, 251, 245, 0.7);
  font-weight: 300;
  font-style: italic;
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-ratings {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 251, 245, 0.1);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 251, 245, 0.8);
  letter-spacing: 0.02em;
}

.hero-rating-pill .stars {
  color: var(--accent);
  font-size: 0.7rem;
  letter-spacing: 1px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.15s ease;
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 14px 30px;
  border: 1.5px solid rgba(255, 251, 245, 0.35);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.15s ease;
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 251, 245, 0.07);
  color: var(--white);
  transform: translateY(-2px);
}


/* ===== SECTIONS ===== */

.section {
  padding: var(--section-pad) 0;
}

.section-alt {
  background-color: var(--bg-alt);
  position: relative;
}

.section-alt::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.02;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

.section-dark {
  background-color: var(--dark);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-dark .section-header p {
  color: rgba(255, 251, 245, 0.6);
}


/* ===== ABOUT / INTRO ===== */

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.intro-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 28px;
  line-height: 1.2;
}

.intro-text p {
  font-size: 1.02rem;
  color: var(--text-light);
  margin-bottom: 18px;
  line-height: 1.7;
}

.intro-text p:last-of-type {
  margin-bottom: 0;
}

.intro-accent {
  display: inline-block;
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin-bottom: 28px;
}

.intro-stats {
  display: flex;
  gap: 36px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--muted);
}

.intro-stat {
  text-align: center;
}

.intro-stat .stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--primary);
  line-height: 1.1;
  display: block;
}

.intro-stat .stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
  display: block;
}

.intro-image {
  position: relative;
  border-radius: 12px 4px 12px 4px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 8px 8px 0 var(--primary-light);
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ===== SPECIALTIES ===== */

.dish-list {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.dish-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.dish-item.reverse {
  direction: rtl;
}

.dish-item.reverse > * {
  direction: ltr;
}

.dish-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 8px 32px rgba(44, 30, 20, 0.12);
  transition: box-shadow 0.4s ease;
}

.dish-item:hover .dish-image {
  box-shadow: 0 12px 48px rgba(44, 30, 20, 0.2);
}

.dish-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.dish-item:hover .dish-image img {
  transform: scale(1.04);
}

.dish-content {
  padding: 8px 0;
}

.dish-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  display: inline-block;
  background: var(--primary-light);
  padding: 5px 14px;
  border-radius: 20px;
}

.dish-content h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  margin-bottom: 16px;
  line-height: 1.2;
}

.dish-content p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}


/* ===== EXPERIENCE SECTION ===== */

.experience {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

@supports (-webkit-touch-callout: none) {
  .experience {
    background-attachment: scroll;
  }
}

.experience::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 22, 16, 0.75);
}

.experience-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 80px 24px;
}

.experience-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  display: block;
}

.experience blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.8vw, 1.75rem);
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 40px;
  font-style: italic;
}

.experience-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ===== TESTIMONIALS ===== */

.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 28px;
  color: var(--white);
}

.rating-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 251, 245, 0.06);
  border: 1px solid rgba(255, 251, 245, 0.1);
  padding: 14px 24px;
  border-radius: 10px;
}

.rating-badge .rating-score {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1;
}

.rating-badge .rating-details {
  text-align: left;
}

.rating-badge .rating-stars {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 2px;
}

.rating-badge .rating-source {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 251, 245, 0.5);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: rgba(255, 251, 245, 0.05);
  border: 1px solid rgba(255, 251, 245, 0.15);
  border-radius: 10px;
  padding: 32px 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.testimonial-card .testimonial-quote {
  font-size: 0.95rem;
  color: rgba(255, 251, 245, 0.8);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card .testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.testimonial-card .testimonial-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
}

.testimonial-card .testimonial-src {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}


/* ===== CONTACT ===== */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.contact-card {
  text-align: center;
  padding: 40px 20px;
  background: var(--white);
  border: 1px solid var(--muted);
  border-radius: 10px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(184, 92, 56, 0.08);
  transform: translateY(-3px);
}

.contact-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  border-radius: 50%;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card-wa .contact-icon svg {
  fill: var(--primary);
  stroke: none;
}

.contact-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.7;
}

.contact-card a {
  font-weight: 500;
}

.contact-map {
  margin-top: 48px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--muted);
}

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

.contact-bottom {
  margin-top: 48px;
  text-align: center;
}

.contact-bottom .btn-wa {
  padding: 16px 40px;
  font-size: 0.95rem;
}


/* ===== FOOTER ===== */

.footer {
  background: var(--dark);
  color: rgba(255, 251, 245, 0.55);
  padding: 64px 0 0;
  font-size: 0.85rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 251, 245, 0.08);
}

.footer-col h4 {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-col p {
  line-height: 1.8;
  font-size: 0.85rem;
}

.footer-col a {
  color: rgba(255, 251, 245, 0.55);
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 8px;
}

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

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 0.78rem;
  color: rgba(255, 251, 245, 0.3);
}

.footer-bottom a {
  color: rgba(255, 251, 245, 0.4);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-bottom a:hover {
  color: var(--white);
}


/* ===== WHATSAPP FAB ===== */

.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.wa-fab svg {
  display: block;
}


/* ===== ANIMATIONS ===== */

.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

.fade-in-d1 { transition-delay: 0.1s; }
.fade-in-d2 { transition-delay: 0.2s; }
.fade-in-d3 { transition-delay: 0.3s; }
.fade-in-d4 { transition-delay: 0.4s; }
.fade-in-d5 { transition-delay: 0.5s; }

/* Fallback: show content if JS fails or user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fade-in, .slide-left, .slide-right, .scale-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* ===== RESPONSIVE ===== */

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

  .intro-image {
    aspect-ratio: 3 / 2;
    order: -1;
  }

  .dish-item,
  .dish-item.reverse {
    grid-template-columns: 1fr;
    gap: 20px;
    direction: ltr;
  }

  .dish-item.reverse > * {
    direction: ltr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 80px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 28px 24px;
    gap: 20px;
    border-bottom: 1px solid var(--muted);
    box-shadow: 0 12px 32px rgba(44, 30, 20, 0.08);
  }

  .nav-links a {
    color: var(--text-light) !important;
  }

  .nav-links a:hover {
    color: var(--primary) !important;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-content {
    padding: 120px 20px 80px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .dish-list {
    gap: 56px;
  }

  .intro-stats {
    gap: 24px;
  }

  .experience {
    background-attachment: scroll;
  }

  .rating-badges {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  :root {
    --section-pad: 56px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .contact-card {
    padding: 28px 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .intro-stats {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .contact-map iframe {
    height: 240px;
  }
}
