:root {
  --bg: #f7f3e8;
  --bg-soft: #f0ead8;
  --ink: #1e2a24;
  --ink-soft: #3f5249;
  --brand: #2b6a51;
  --brand-2: #d4894b;
  --card: #fffdf8;
  --line: rgba(30, 42, 36, 0.16);
  --shadow: 0 18px 35px rgba(20, 40, 31, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 5%, rgba(212, 137, 75, 0.22) 0, transparent 36%),
    radial-gradient(circle at 0% 35%, rgba(43, 106, 81, 0.18) 0, transparent 32%),
    var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--brand);
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(247, 243, 232, 0.9);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
}

.brand {
  font-family: "Fraunces", serif;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-weight: 700;
  color: var(--ink);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  padding: 6px 12px 6px 8px;
  font-weight: 800;
  font-size: 0.78rem;
  cursor: pointer;
}

.lang-btn svg {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
}

.lang-btn.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.main-nav a {
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--brand);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  color: var(--ink);
  padding: 10px 13px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: min(82vh, 760px);
  display: grid;
  align-items: center;
  overflow: clip;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 32, 23, 0.72) 0%, rgba(13, 32, 23, 0.36) 54%, rgba(13, 32, 23, 0.1) 100%),
    linear-gradient(180deg, rgba(212, 137, 75, 0.25) 0%, rgba(13, 32, 23, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 700px;
  padding: 70px 0;
}

.eyebrow {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--brand-2);
}

.hero .eyebrow {
  color: #ffd5b0;
}

h1,
h2,
h3 {
  font-family: "Fraunces", serif;
  line-height: 1.12;
  margin: 10px 0 14px;
}

h1 {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
}

h2 {
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
}

h3 {
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
}

p {
  margin: 0 0 12px;
}

.section {
  padding: clamp(48px, 8vw, 94px) 0;
}

.alt {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  margin-bottom: 24px;
}

.cards {
  display: grid;
  gap: 16px;
}

.cards.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards.four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(18px, 2.3vw, 28px);
  box-shadow: var(--shadow);
}

.highlight {
  background: linear-gradient(180deg, #fff9f2 0%, #fffef8 100%);
  border-color: rgba(212, 137, 75, 0.4);
}

.price {
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: "Fraunces", serif;
  color: var(--brand);
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: start;
}

.gallery-preview {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 12px;
  margin-bottom: 14px;
}

.gallery-preview img,
.gallery-grid img {
  border-radius: 14px;
  min-height: 230px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.distance-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 8px;
}

.map-embed {
  margin-top: 1rem;
  border-radius: 12px;
  overflow: hidden;
}

.map-frame {
  width: 100%;
  height: 200px;
  border: 0;
  display: block;
}

.optional-note {
  font-weight: 400;
  color: var(--ink-soft);
  font-size: 0.85em;
}

.legal-page {
  max-width: 900px;
}

.center-stage {
  min-height: 70vh;
  display: grid;
  place-items: center;
}

.center-card {
  text-align: center;
}

.center-card.wide,
.center-stage .wide {
  width: min(720px, 100%);
}

.center-card.medium,
.center-stage .medium {
  width: min(700px, 100%);
}

.cta-row.center {
  justify-content: center;
}

label {
  display: block;
  font-weight: 700;
  margin: 8px 0 6px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
  font: inherit;
  background: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: #245842;
}

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-secondary:hover {
  border-color: rgba(43, 106, 81, 0.6);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.clean-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.clean-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand-2);
}

.text-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: 800;
  color: var(--brand);
}

.subhero {
  padding: clamp(48px, 8vw, 88px) 0 22px;
}

.seo-area-grid h3 {
  margin-bottom: 8px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list details p {
  margin-top: 10px;
}

.whatsapp-cta {
  display: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #efe8d5;
}

.footer-wrap {
  min-height: 72px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.legal-links {
  width: 100%;
  margin: 0 0 8px;
  font-size: 0.92rem;
}

.legal-links a {
  color: var(--ink-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: rise 0.65s ease forwards;
}

.reveal:nth-child(2) {
  animation-delay: 0.08s;
}

.reveal:nth-child(3) {
  animation-delay: 0.16s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 950px) {
  .nav-wrap {
    flex-wrap: wrap;
    row-gap: 12px;
    min-height: auto;
    padding: 14px 0;
  }

  .hero {
    min-height: min(72vh, 680px);
  }

  .hero-content {
    max-width: 100%;
    padding: 56px 0;
  }

  .cards.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .contact-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-preview img:first-child {
    grid-column: 1 / -1;
  }

  .whatsapp-cta {
    left: auto;
    right: 14px;
    bottom: 72px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .lang-switcher {
    order: 4;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    min-width: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 10px;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }
}

@media (max-width: 720px) {
  .section {
    padding: clamp(38px, 10vw, 64px) 0;
  }

  .subhero {
    padding: 38px 0 12px;
  }

  .cards.three,
  .cards.four,
  .cards.two,
  .gallery-preview,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-preview img,
  .gallery-grid img {
    min-height: 190px;
  }

  .card,
  .panel {
    padding: 20px;
  }

  .cta-row > * {
    flex: 1 1 100%;
    width: 100%;
  }

  .footer-wrap {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(1120px, calc(100vw - 24px));
  }

  .brand {
    max-width: 68%;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    padding: 42px 0;
  }

  .menu-toggle {
    padding: 9px 12px;
  }

  .main-nav {
    padding: 12px;
  }

  .main-nav a {
    padding: 6px 0;
  }

  .lang-switcher {
    gap: 8px;
  }

  .lang-btn {
    padding-right: 10px;
  }
}
