:root {
  --bg: #f7f4ee;
  --surface: #ffffff;
  --text: #1f2a24;
  --muted: #4b5c50;
  --accent: #8ba48f;
  --accent-dark: #5f7562;
  --sand: #e6ddce;
  --radius: 18px;
  --shadow: 0 14px 36px rgba(30, 42, 36, 0.12);
  --container: min(1120px, calc(100% - 2.5rem));
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top right, #eef3ea 0%, var(--bg) 48%);
  color: var(--text);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(247, 244, 238, 0.9);
  border-bottom: 1px solid rgba(31, 42, 36, 0.08);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 72px;
  gap: 1rem;
}

.brand {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: min(320px, 62vw);
  height: auto;
  display: block;
}

.nav-toggle {
  display: inline-flex;
  border: 1px solid rgba(31, 42, 36, 0.15);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  padding: 0.5rem 0.9rem;
  font: inherit;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  top: 72px;
  right: 1rem;
  width: min(280px, calc(100% - 2rem));
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.nav-list.open {
  display: block;
}

.nav-list a {
  display: block;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(31, 42, 36, 0.06);
}

.nav-list li:last-child a {
  border-bottom: 0;
}

.nav-list a[aria-current="page"] {
  background: rgba(139, 164, 143, 0.18);
  font-weight: 600;
}

.hero {
  padding: clamp(2.5rem, 5vw, 5rem) 0 4rem;
}

.hero-grid {
  display: grid;
  gap: 1.6rem;
  align-items: center;
}

.hero h1,
.section-title,
.card h3,
.cta-band h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.18;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  margin: 0.2rem 0 0.9rem;
}

.eyebrow {
  color: var(--accent-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
}

.lead {
  color: var(--muted);
  max-width: 60ch;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.72rem 1.25rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.button {
  background: var(--accent-dark);
  color: #fff;
}

.button-secondary {
  background: transparent;
  border-color: rgba(31, 42, 36, 0.25);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

section {
  padding: 3.4rem 0;
}

.section-head {
  margin-bottom: 1.35rem;
}

.grid-3,
.grid-2,
.card-grid,
.gallery-grid {
  display: grid;
  gap: 1rem;
}

.panel,
.card,
.gallery-item,
.info-box,
.map-wrap {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: clip;
}

.panel,
.card,
.info-box {
  padding: 1.2rem;
}

.card ul,
.info-box ul {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
}

.card p {
  margin-top: 0.45rem;
  color: var(--muted);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(139, 164, 143, 0.24);
  display: inline-grid;
  place-content: center;
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.cta-band {
  background: linear-gradient(135deg, #314238, #647d6a);
  color: #fff;
  border-radius: var(--radius);
  padding: 2rem;
}

.cta-band p {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.86);
}

.site-footer {
  padding: 2.5rem 0 3.2rem;
  border-top: 1px solid rgba(31, 42, 36, 0.08);
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  gap: 0.8rem;
}

.floating-wa {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 120;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-content: center;
  font-size: 1.55rem;
  box-shadow: 0 16px 28px rgba(37, 211, 102, 0.35);
}

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

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

.gallery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-item button {
  border: 0;
  width: 100%;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  display: none;
  z-index: 220;
}

.lightbox.open {
  display: grid;
  place-items: center;
  padding: 1rem;
}

.lightbox-inner {
  max-width: min(1100px, 95vw);
}

.lightbox img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 14px;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
}

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

@media (min-width: 760px) {
  .nav-toggle {
    display: none;
  }

  .nav-list {
    position: static;
    display: flex;
    gap: 0.1rem;
    width: auto;
    box-shadow: none;
    border-radius: 0;
    background: transparent;
  }

  .nav-list a {
    border-bottom: 0;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
  }

  .hero-grid,
  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3,
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
