:root {
  color-scheme: light;
  --bg: #f6f1ea;
  --surface: #ffffff;
  --ink: #2f241d;
  --muted: #6d5c51;
  --accent: #c77a42;
  --accent-dark: #8c4b2b;
  --sand: #efe4d7;
  --soft: #f3ede6;
  --shadow: 0 20px 50px rgba(47, 36, 29, 0.12);
  --radius: 24px;
  --radius-sm: 16px;
  --max-width: 1100px;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

body {
  background: radial-gradient(circle at top, #fff 0%, var(--bg) 50%, #efe5da 100%);
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  min-height: 100vh;
}

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

.page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 24px 64px;
  position: relative;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: sticky;
  top: 16px;
  background: rgba(246, 241, 234, 0.9);
  border-radius: 999px;
  padding: 12px 18px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(47, 36, 29, 0.08);
  z-index: 10;
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 600;
}

.brand-name {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 600;
}

.brand-tag {
  font-size: 12px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
}

.nav-links a {
  transition: color 0.2s ease;
}

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

.btn {
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 20px rgba(199, 122, 66, 0.3);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(199, 122, 66, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid rgba(140, 75, 43, 0.35);
  box-shadow: none;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  border: 1px solid rgba(47, 36, 29, 0.15);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 16px 30px rgba(47, 36, 29, 0.3);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
  margin: 80px 0 64px;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  color: var(--accent-dark);
  margin-bottom: 14px;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badges span {
  background: var(--soft);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  min-height: 380px;
}

.hero-photo {
  position: absolute;
  right: 0;
  top: 10px;
  width: 320px;
  height: 420px;
  border-radius: 200px 200px 32px 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid rgba(255, 255, 255, 0.8);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-card {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 260px;
  position: absolute;
  top: 0;
  left: 0;
  animation: float 5s ease-in-out infinite;
}

.card-title {
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.card-subtitle {
  font-size: 18px;
  margin: 8px 0;
  font-weight: 600;
}

.card-price {
  font-size: 24px;
  font-family: "Playfair Display", serif;
}

.card-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 16px;
  position: absolute;
  right: 0;
  bottom: 0;
}

.grid-item {
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-sm);
  padding: 18px;
  border: 1px solid rgba(47, 36, 29, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.grid-item.highlight {
  background: linear-gradient(135deg, #f2d8bf, #f8efe7);
}

.grid-top {
  font-weight: 600;
}

.grid-bottom {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

.section {
  padding: 64px 0;
}

.section-title {
  max-width: 520px;
  margin-bottom: 32px;
}

.section-title h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.section-title p {
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 32px;
}

.photo {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(47, 36, 29, 0.12);
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.photo:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 24px;
  box-shadow: 0 12px 30px rgba(47, 36, 29, 0.08);
  display: grid;
  gap: 14px;
}

.pill {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-dark);
}

.menu {
  background: var(--soft);
  border-radius: var(--radius);
  padding: 64px;
}

.menu-grid {
  display: grid;
  gap: 18px;
}

.menu-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 32px;
}

.gallery-card {
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(47, 36, 29, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.gallery-card p {
  padding: 14px 18px 18px;
  font-weight: 600;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.menu-item {
  background: var(--surface);
  padding: 18px 22px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 24px rgba(47, 36, 29, 0.08);
}

.menu-item h4 {
  font-weight: 600;
}

.menu-item p {
  font-size: 13px;
  color: var(--muted);
}

.menu-item span {
  font-family: "Playfair Display", serif;
  font-size: 18px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.step {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 24px;
  box-shadow: 0 12px 30px rgba(47, 36, 29, 0.08);
  display: grid;
  gap: 12px;
}

.step span {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: var(--accent-dark);
}

.testimonials {
  padding-bottom: 96px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.quote {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 24px;
  box-shadow: 0 12px 30px rgba(47, 36, 29, 0.08);
  font-size: 15px;
  color: var(--muted);
  display: grid;
  gap: 12px;
}

.quote span {
  color: var(--ink);
  font-weight: 600;
}

.cta {
  background: linear-gradient(135deg, #e8cbb0, #f7e8d9);
  border-radius: var(--radius);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow);
}

.cta h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.cta p {
  color: var(--muted);
}

.footer {
  margin-top: 72px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(47, 36, 29, 0.1);
}

.footer-note {
  color: var(--muted);
  max-width: 280px;
}

.footer-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
}

.footer-links p {
  font-weight: 600;
}

.footer-links span {
  color: var(--muted);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1dbf73;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(29, 191, 115, 0.35);
  z-index: 20;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(29, 191, 115, 0.4);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
}

@media (max-width: 900px) {
  .nav {
    flex-wrap: wrap;
    border-radius: 24px;
  }

  .nav-links {
    width: 100%;
    justify-content: space-around;
    flex-wrap: wrap;
  }

  .hero-visual {
    min-height: 320px;
  }

  .hero-card {
    position: relative;
    margin-bottom: 20px;
  }

  .hero-photo {
    position: relative;
    width: 100%;
    height: 320px;
    margin-bottom: 20px;
  }

  .hero-grid {
    position: relative;
  }

  .menu {
    padding: 48px 24px;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .nav {
    position: relative;
  }

  .nav-links {
    display: none;
  }

  .hero {
    margin-top: 48px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }
}
