﻿@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Space+Grotesk:wght@400;500;600&display=swap");

:root {
  --primary: #142b26;
  --primary-2: #1f3b33;
  --accent: #d9c7a0;
  --bg: #f6f4ef;
  --text: #1c1c1c;
  --muted: #6b6b6b;
  --card: #ffffff;
  --shadow: 0 14px 30px rgba(20, 43, 38, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(246, 244, 239, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 12px;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(20, 43, 38, 0.25);
  border-radius: 10px;
  padding: 10px;
  color: var(--primary);
  cursor: pointer;
}

.menu-toggle svg { width: 22px; height: 22px; }

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.brand img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 16px;
  font-weight: 500;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.nav-links a:hover {
  background: rgba(20, 43, 38, 0.08);
}

.nav-links a.active {
  background: var(--primary);
  color: #fff;
}

@media (max-width: 820px) {
  .navbar {
    align-items: center;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    right: 12px;
    left: 12px;
    flex-direction: column;
    gap: 10px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    display: none;
  }

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

  .nav-links a {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    background: rgba(20, 43, 38, 0.04);
  }

  .nav-links a.active {
    background: var(--primary);
    color: #fff;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(20, 43, 38, 0.18);
}

.btn-primary:hover { transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  border-color: rgba(20, 43, 38, 0.25);
  color: var(--primary);
}

.btn-ghost:hover {
  border-color: var(--primary);
  transform: translateY(-1px);
}

section { margin: 48px 0; }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  color: var(--primary);
}

.subtitle { color: var(--muted); font-size: 0.98rem; }

.hero {
  margin-top: 18px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #0f1f1b;
  color: #fff;
  padding: clamp(32px, 6vw, 56px);
  box-shadow: 0 20px 40px rgba(20, 43, 38, 0.25);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(20, 43, 38, 0.70), rgba(20, 43, 38, 0.55)),
    radial-gradient(circle at 20% 20%, rgba(217, 199, 160, 0.18), transparent 35%),
    radial-gradient(circle at 80% 10%, rgba(217, 199, 160, 0.16), transparent 28%);
  z-index: 0;
}

.hero-content { position: relative; z-index: 1; max-width: 680px; }

.hero-banner {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
  opacity: 0.92;
}

.hero-only-image {
  padding: 0;
  height: clamp(260px, 45vw, 430px);
}

.hero-only-image::after {
  background: linear-gradient(135deg, rgba(20, 43, 38, 0.45), rgba(20, 43, 38, 0.25));
}


.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero p { color: #f1ede4; margin-bottom: 20px; }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.metrics { display: flex; gap: 20px; margin-top: 18px; flex-wrap: wrap; }

.metric {
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 600;
}

.categories-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.category-card {
  background: var(--card);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(20, 43, 38, 0.08);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.category-card:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(0,0,0,0.08); }

.category-chip {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(20, 43, 38, 0.08);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.92rem;
}

.cards-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--card);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(20, 43, 38, 0.06);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover { transform: translateY(-4px); box-shadow: 0 18px 34px rgba(20,43,38,0.16); }

.card-thumb {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(145deg, rgba(20,43,38,0.9), rgba(31,59,51,0.82));
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
}
.placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: #1c1c1c;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
}

.card-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; }

.card-title { font-weight: 700; font-size: 1.05rem; color: var(--primary); }

.card-desc { color: var(--muted); font-size: 0.95rem; }

.card-price { font-weight: 700; color: var(--text); margin-top: 4px; }

.empty-state {
  padding: 24px;
  border: 1px dashed rgba(20, 43, 38, 0.3);
  border-radius: 16px;
  background: rgba(20, 43, 38, 0.03);
  text-align: center;
}

.contact-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.contact-card {
  background: var(--card);
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(20,43,38,0.06);
}

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }

input, textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(20,43,38,0.18);
  background: #fff;
  font-family: inherit;
}

textarea { min-height: 120px; resize: vertical; }

footer {
  margin-top: 40px;
  background: #0f1f1b;
  color: #e8e5dd;
  padding: 28px 0;
}

.footer-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }

.footer-links { display: flex; gap: 14px; flex-wrap: wrap; }

.footer-links a { color: #e8e5dd; opacity: 0.9; }

.social-stack {
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 90;
}

.fab {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 14px 28px rgba(0,0,0,0.16);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.fab svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.fab:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(0,0,0,0.22); }

.fab.whatsapp { background: #25d366; }

.fab.instagram {
  background: radial-gradient(circle at 30% 30%, #f9ce34, #ee2a7b 40%, #6228d7 75%);
}

.tagline { color: #e8e5dd; letter-spacing: 0.6px; text-transform: uppercase; font-size: 0.82rem; }

.instagram-banner {
  margin-top: 20px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(20,43,38,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.mini-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.page-hero {
  background: linear-gradient(135deg, #f0ebe0, #d9c7a0);
  padding: 40px 0 26px;
  border-bottom: 1px solid rgba(20,43,38,0.08);
}

.page-hero h1 { font-family: "Playfair Display", serif; color: var(--primary); font-size: clamp(1.8rem, 3vw, 2.4rem); }

.breadcrumb { color: var(--muted); font-size: 0.95rem; margin-top: 6px; }

.faq {
  border-top: 1px solid rgba(20,43,38,0.08);
  padding-top: 16px;
  margin-top: 16px;
}

.faq-item { margin-bottom: 14px; }

.faq-item h4 { color: var(--primary); margin-bottom: 6px; }

.map-embed {
  border: none;
  width: 100%;
  height: 260px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

@media (max-width: 720px) {
  .navbar { flex-direction: column; align-items: flex-start; }
  .nav-links { flex-wrap: wrap; }
  .hero { padding: 30px 22px; }
  .section-head { flex-direction: column; align-items: flex-start; }
}

