:root {
  --bg: #faf8f5;
  --ink: #231f20;
  --muted: #6b6b6b;
  --brand: #a7794c;
  --brand-2: #6e8b74;
  --card: #ffffff;
  --border: #e8e1d9;
}

main {
  padding-top: 70px;
}

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

html {
  scroll-padding-top: 70px;
  scroll-behavior: smooth;
}

body {
  height: 100%;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 10px 16px;
  background: var(--brand);
  color: #fff;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  backdrop-filter: saturate(180%) blur(6px);
  background: color-mix(in sRGB, var(--bg) 85%, white 15%);
  border-bottom: 1px solid var(--border);
  transition: transform 0.3s ease;
}

header.hidden {
  transform: translateY(-100%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

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

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: .5px;
}

nav a {
  font-weight: 600;
  color: var(--ink);
  padding: 8px 10px;
  border-radius: 8px;
}

nav a:hover {
  background: var(--card);
}

nav a.active {
  background: #f3efe9;
  border: 1px solid var(--border);
  color: var(--brand);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 56px 24px;
  border-bottom: 1px solid var(--border);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 12px;
}

.hero p {
  color: var(--muted);
  margin-bottom: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--card);
  font-size: .85rem;
  color: var(--brand-2);
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  cursor: pointer;
  font-weight: 600;
}

.btn.ghost {
  background: var(--card);
}

.btn.ghost:hover {
  background: #f0ebe4;
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.hero-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

section {
  padding: 56px 24px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.grid {
  display: grid;
  gap: 16px;
}

.cards {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
}

.card h3 {
  margin: 6px 0 8px;
  font-size: 1.1rem;
}

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

.card-duration {
  font-size: 0.8rem;
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-icon {
  margin-bottom: 4px;
}

.reviews-link {
  font-size: 0.9rem;
}

.reviews-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.stars {
  color: #e6a817;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonials {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.testimonial::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--brand);
  opacity: 0.2;
  display: block;
  margin-bottom: -24px;
}


.testimonial p {
  flex: 1;
}

.testimonial footer {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
}

#location .muted {
  margin-bottom: 16px;
}

.map {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

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

.footer {
  position: static;
  bottom: 0;
  z-index: 10;
  background: var(--card);
}

.footer .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
}

.footer .muted {
  font-size: 0.9rem;
}

.hero .muted {
  margin-top: 10px;
}

.socials {
  display: flex;
  gap: 8px;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: white;
}

.icon-btn:hover {
  background: #f7f7f7;
}

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

.pill {
  padding: 3px 8px;
  border-radius: 999px;
  background: #f3efe9;
  border: 1px solid var(--border);
}

.hamburger-box {
  display: none;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
}

.hamburger:focus-visible {
  outline: 2px solid var(--brand-2);
  outline-offset: 2px;
}

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

@media (max-width: 600px) {
  .nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  nav {
    display: none;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  nav.active {
    display: flex;
  }

  nav a {
    padding: 6px 8px;
    font-size: 0.9rem;
  }

  .hamburger {
    display: flex;
  }

  .footer {
    position: static;
  }

  .hamburger-box {
    display: inline-flex;
  }

  .badge {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

.brand-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-link:hover {
  text-decoration: none;
}

.btn svg {
  width: 1.2em;
  height: 1.2em;
  flex-shrink: 0;
}

.btn.whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  background: #6fbf82;
  color: white;
  border-color: transparent;
}

.btn.whatsapp:hover {
  background: #5aa56a;
}