:root {
  --green: #31422e;
  --gold: #b69552;
  --cream: #faf7f1;
  --text: #1d1d1b;
  --muted: #707070;
  --line: #ece6da;
  --white: #fff;
  --shadow: 0 24px 70px rgba(49, 66, 46, 0.12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.65;
}

body.modal-open { overflow: hidden; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { width: min(1180px, 92%); margin: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(182, 149, 82, 0.18);
}

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

.brand, .footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.03em;
}

.brand img, .footer-brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e7dac1;
}

.brand span { font-size: 23px; }

.brand em {
  display: block;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: -8px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
  color: #343434;
}

.main-nav a { position: relative; }

.main-nav a:not(.nav-cta):after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: 0.25s;
}

.main-nav a.active:after,
.main-nav a:hover:after { width: 100%; }

.nav-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 999px;
  background: var(--green);
  color: #fff !important;
  box-shadow: 0 12px 30px rgba(49, 66, 46, 0.18);
  font-weight: 800;
}

.btn.light { background: #fff; color: var(--green) !important; }

.btn.outline {
  background: transparent;
  color: var(--green) !important;
  border: 1px solid var(--line);
  box-shadow: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--green);
  margin: 6px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff 0%, #fff 48%, var(--cream) 48%, var(--cream) 100%);
  padding: 92px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 58px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 18px;
}

.hero h1,
.section-title h2,
.page-hero h1,
.text-block h2,
.cta h2 {
  font-family: 'Playfair Display', serif;
  color: var(--green);
  line-height: 1.05;
  margin: 0;
}

.hero h1 { font-size: clamp(42px, 6vw, 78px); }

.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 620px;
  margin: 24px 0 32px;
}

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

.hero-card {
  position: relative;
  border-radius: 38px;
  background: #fff;
  padding: 20px;
  box-shadow: var(--shadow);
}

.hero-card img {
  border-radius: 30px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.info-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.04);
}

.info-box strong {
  display: block;
  color: var(--green);
  font-size: 20px;
}

.section { padding: 88px 0; }
.section.alt { background: var(--cream); }

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 36px;
}

.section-title h2 { font-size: clamp(32px, 4vw, 52px); }
.section-title p { max-width: 560px; color: var(--muted); margin: 0; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.045);
}

.feature-card .icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: #f4ecd9;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 26px;
  margin-bottom: 20px;
}

.feature-card h3 {
  color: var(--green);
  font-size: 22px;
  margin: 0 0 10px;
}

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

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.soft-photo {
  border-radius: 34px;
  background: linear-gradient(135deg, #efe5d0, #fff);
  padding: 16px;
  box-shadow: var(--shadow);
}

.soft-photo img {
  border-radius: 26px;
  object-fit: cover;
}

.text-block h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.08;
  margin-bottom: 18px;
}

.text-block p { color: var(--muted); margin-bottom: 16px; }

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.check-list span {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 700;
}

.check-list span:before {
  content: '✓';
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #f1e7d1;
  color: var(--gold);
  display: grid;
  place-items: center;
}

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

.gallery-item {
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f4ea, #fff);
  border: 1px solid var(--line);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.04);
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img { transform: scale(1.03); }

.gallery-empty {
  grid-column: 1 / -1;
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: 24px;
  padding: 28px;
  text-align: center;
  color: var(--muted);
}

.gallery-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 12, 10, 0.82);
  z-index: 120;
}

.gallery-modal.is-open { display: flex; }

.gallery-modal img {
  max-width: min(94vw, 1100px);
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  cursor: zoom-out;
}

.gallery-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.cta {
  background: var(--green);
  color: #fff;
  border-radius: 42px;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta h2 {
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 10px;
  color: #fff;
}

.cta p { margin: 0; color: rgba(255, 255, 255, 0.86); }
.page-hero {
  background: var(--cream);
  padding: 70px 0;
  text-align: center;
}

.page-hero h1 { font-size: clamp(40px, 5vw, 66px); }
.page-hero p { color: var(--muted); max-width: 720px; margin: 18px auto 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.04);
}

.contact-card h3 {
  color: var(--green);
  margin: 0 0 18px;
}

.contact-line {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.map-box {
  border: 0;
  width: 100%;
  height: 420px;
  border-radius: 28px;
  background: #f6f0e4;
}

.site-footer {
  background: #fbfaf7;
  border-top: 1px solid var(--line);
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 1fr;
  gap: 40px;
}

.site-footer p { color: var(--muted); max-width: 420px; }
.site-footer h4 { color: var(--green); margin: 0 0 14px; }
.site-footer a { display: block; color: #666; margin: 8px 0; }

.copyright {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: #777;
}

.float-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 99;
  box-shadow: 0 14px 38px rgba(37, 211, 102, 0.35);
}

.float-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  display: block;
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }

  .main-nav {
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    background: #fff;
    display: none;
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--line);
  }

  .nav-open .main-nav { display: flex; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { order: 2; }
  .hero-visual { order: 1; }
  .info-strip, .cards, .gallery, .footer-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 56px; }
  .section-title, .cta { display: block; }
  .cta { padding: 34px; }
  .brand span { font-size: 20px; }
}

@media (max-width: 520px) {
  .nav-wrap { height: 76px; }
  .brand img, .footer-brand img { width: 50px; height: 50px; }
  .hero-actions .btn { width: 100%; }
  .hero-card { border-radius: 26px; }
  .hero-card img { border-radius: 20px; }
  .section { padding: 62px 0; }
  .cta h2 { font-size: 32px; }
  .gallery-modal { padding: 14px; }
  .gallery-modal-close { top: 14px; right: 14px; }
}
