:root {
  --bg: #f8f3ec;
  --bg-strong: #efe4d6;
  --surface: rgba(255, 251, 245, 0.78);
  --surface-strong: #fffaf3;
  --text: #1e1b18;
  --muted: #6c6259;
  --line: rgba(62, 39, 22, 0.12);
  --accent: #b35c2e;
  --accent-dark: #8f421c;
  --accent-soft: #eed2be;
  --shadow: 0 24px 70px rgba(54, 36, 20, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(221, 164, 120, 0.3), transparent 32%),
    linear-gradient(180deg, #fffaf5 0%, var(--bg) 52%, #f2e8dc 100%);
}

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

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

.hero,
main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  padding: 24px 0 56px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
}

.brand {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.72);
  border: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.hero-copy,
.hero-card,
.location-card,
.location-aside,
.contact-form-shell,
.contact-copy,
.highlight-card,
.value-strip article {
  background: var(--surface);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 42px;
  border-radius: 32px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.hero-text,
.location-card p,
.location-aside p,
.contact-copy p,
.highlight-card p,
.gallery-item figcaption,
.value-strip p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0;
}

.hero-stats div {
  padding: 18px 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 247, 239, 0.92), rgba(238, 223, 208, 0.72));
  border: 1px solid rgba(94, 60, 34, 0.1);
}

.hero-stats strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
}

.hero-stats span {
  color: var(--muted);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover,
.nav-cta:hover,
.floating-whatsapp:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #fff8f3;
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary {
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.hero-card {
  overflow: hidden;
  border-radius: 32px;
}

.hero-card img {
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
}

.hero-card-copy {
  padding: 24px;
}

.hero-card-copy span {
  color: var(--accent-dark);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero-card-copy strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 1.25rem;
}

.hero-card-copy p {
  margin: 0;
  color: var(--muted);
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 10px 0 84px;
}

.value-strip article {
  padding: 28px;
  border-radius: 28px;
}

.value-strip span {
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 800;
}

.section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 30px;
}

.gallery-section,
.highlights,
.location-section,
.contact-section {
  padding: 34px 0 84px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 28px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.gallery-item-large {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.gallery-item-large img {
  height: 420px;
}

.gallery-item figcaption {
  padding: 18px 18px 22px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.highlight-card {
  padding: 30px;
  border-radius: 28px;
}

.highlight-card p {
  margin: 0;
}

.location-section {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}

.location-card,
.location-aside {
  border-radius: 32px;
  padding: 36px;
}

.map-shell {
  margin-top: 24px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #e8ded1;
}

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

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
  align-items: start;
}

.contact-copy,
.contact-form-shell {
  border-radius: 32px;
  padding: 34px;
}

.contact-form-shell {
  background: var(--surface-strong);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  max-width: min(320px, calc(100% - 36px));
  padding: 16px 20px;
  border-radius: 999px;
  background: #1e8f55;
  color: #fff;
  box-shadow: 0 18px 45px rgba(30, 143, 85, 0.28);
  font-weight: 700;
  text-align: center;
}

@media (max-width: 980px) {
  .hero-grid,
  .location-section,
  .contact-section,
  .highlights-grid,
  .value-strip,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item-large {
    grid-column: auto;
  }

  .hero-copy,
  .hero-card,
  .location-card,
  .location-aside,
  .contact-copy,
  .contact-form-shell {
    padding: 26px;
  }

  .gallery-item img,
  .gallery-item-large img {
    height: 280px;
  }
}

@media (max-width: 640px) {
  .hero,
  main {
    width: min(100% - 20px, 1180px);
  }

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

  .hero {
    padding-top: 18px;
  }

  h1 {
    font-size: 2.45rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button,
  .nav-cta,
  .floating-whatsapp {
    width: 100%;
  }
}
