:root {
  --color-cream: #fbf6ec;
  --color-cream-2: #f3eadb;
  --color-sand: #d8c5a4;
  --color-sage: #7f8f68;
  --color-sage-dark: #4f5f3e;
  --color-olive: #2e3828;
  --color-cocoa: #6b4f3b;
  --color-white: #ffffff;
  --color-text: #293021;
  --color-muted: #68715f;
  --shadow-soft: 0 22px 70px rgba(67, 52, 33, .12);
  --shadow-card: 0 14px 45px rgba(67, 52, 33, .10);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  background: var(--color-olive);
  color: var(--color-white);
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 1000;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(251, 246, 236, .86);
  border-bottom: 1px solid rgba(127, 143, 104, .18);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  width: 25%;
  height: 40%;
}
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--color-white);
  font-weight: 800;
  letter-spacing: -.04em;
  background: linear-gradient(135deg, var(--color-sage), var(--color-sage-dark));
  box-shadow: 0 10px 28px rgba(79, 95, 62, .22);
}
.brand strong { display: block; line-height: 1.1; }
.brand small { display: block; color: var(--color-muted); font-size: .78rem; }
.nav-links {
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--color-olive);
  font-size: .95rem;
}
.nav-links a:not(.btn) { opacity: .82; }
.nav-links a:hover { opacity: 1; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--color-white);
  border-radius: 50%;
  box-shadow: var(--shadow-card);
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--color-olive);
}

.section { padding: 96px 0; }
.section-soft { background: radial-gradient(circle at top left, #fffaf1 0%, var(--color-cream) 42%, #eef2e6 100%); }
.section-muted { background: #f5eddf; }

.hero { padding: 76px 0 100px; overflow: hidden; }
.hero-grid, .split-grid, .location-grid, .contact-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 64px;
  align-items: center;
}
.hero h1, .section h2 {
  margin: 0;
  color: var(--color-olive);
  letter-spacing: -.045em;
  line-height: 1.04;
}
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  max-width: 780px;
}
.section h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  max-width: 860px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--color-cocoa);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 800;
  font-size: .78rem;
  font-family: "Poppins", sans-serif;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 99px;
  background: var(--color-sage);
}
.hero-text, .section-copy p, .section-heading p, .contact-panel p {
  color: var(--color-muted);
  font-size: 1.08rem;
}
.hero-text { max-width: 650px; margin: 24px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--color-sage-dark);
  background: var(--color-sage-dark);
  color: var(--color-white);
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(79, 95, 62, .22);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 20px 34px rgba(79, 95, 62, .26); }
.btn-ghost {
  background: rgba(255, 255, 255, .72);
  color: var(--color-sage-dark);
  border-color: rgba(79, 95, 62, .2);
  box-shadow: none;
}
.btn-small { min-height: 40px; padding: 10px 16px; font-size: .9rem; }
.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--color-sage-dark);
  font-weight: 800;
  border-bottom: 2px solid rgba(79, 95, 62, .25);
}
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--color-sage-dark);
  font-size: .9rem;
  font-weight: 700;
  border: 1px solid rgba(127, 143, 104, .22);
}
.hero-media, .image-stack, .image-card { position: relative; }
.hero-media img, .image-stack img, .image-card img, .gallery-grid img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 28px -20px -28px 30px;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(127, 143, 104, .24);
  z-index: -1;
}
.floating-card, .note-card {
  position: absolute;
  left: -28px;
  bottom: 28px;
  width: min(300px, calc(100% - 30px));
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(127, 143, 104, .18);
}
.floating-card strong, .note-card strong { display: block; color: var(--color-olive); }
.floating-card span, .note-card span { color: var(--color-muted); font-size: .94rem; }
.note-card { left: auto; right: -28px; bottom: -22px; }

.section-heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 46px;
}
.section-heading .eyebrow { justify-content: center; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card, .reason, .contact-form, .contact-panel, .map-card {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .70);
  border: 1px solid rgba(127, 143, 104, .16);
  box-shadow: var(--shadow-card);
}
.card { padding: 24px; }
.card .icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 16px;
  background: var(--color-cream-2);
  font-size: 1.35rem;
}
.card h3, .reason h3 { margin: 0 0 8px; color: var(--color-olive); }
.card p, .reason p { margin: 0; color: var(--color-muted); font-size: .96rem; }

.feature-band {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 44px;
  align-items: center;
  padding: 46px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-sage-dark), var(--color-olive));
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
}
.feature-band h2, .feature-band p, .feature-band .eyebrow { color: var(--color-white); }
.feature-band .eyebrow::before { background: var(--color-sand); }
.feature-band p { opacity: .82; }
.feature-list { display: grid; gap: 14px; }
.feature-list div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .16);
}
.feature-list strong { display: block; font-size: 1.4rem; }
.feature-list span { opacity: .78; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 18px;
}
.gallery-grid figure { margin: 0; position: relative; }
.gallery-grid figure:first-child { grid-row: span 2; }
.gallery-grid img { height: 100%; min-height: 280px; }
.gallery-grid figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  color: var(--color-sage-dark);
  font-weight: 800;
  font-size: .88rem;
}
.reverse { grid-template-columns: .92fr 1.08fr; }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--color-muted);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-sage);
  color: var(--color-white);
  font-size: .8rem;
  font-weight: 900;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.reason { padding: 26px; }
.reason span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--color-cocoa);
  font-weight: 900;
  letter-spacing: .08em;
}

.faq-wrap { max-width: 900px; }
.faq-list { display: grid; gap: 12px; }
details {
  border-radius: 20px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(127, 143, 104, .18);
  box-shadow: 0 10px 30px rgba(67, 52, 33, .06);
  overflow: hidden;
}
summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 850;
  color: var(--color-olive);
}
details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--color-muted);
}

.location-grid { grid-template-columns: .8fr 1.2fr; }
.contact-list { display: grid; gap: 10px; margin-top: 24px; color: var(--color-muted); }
.contact-list a { color: var(--color-sage-dark); font-weight: 800; }
.map-card { padding: 10px; height: 420px; overflow: hidden; }
.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 24px;
}

.contact-section { background: linear-gradient(135deg, #f4ecdf 0%, #eef2e5 100%); }
.contact-grid { align-items: stretch; }
.contact-panel { padding: 34px; }
.contact-cards { display: grid; gap: 12px; margin-top: 28px; }
.contact-cards a {
  padding: 16px;
  border-radius: 18px;
  background: var(--color-white);
  border: 1px solid rgba(127, 143, 104, .16);
}
.contact-cards strong { display: block; color: var(--color-olive); }
.contact-cards span { color: var(--color-muted); font-size: .95rem; }
.contact-form { padding: 28px; display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 7px; color: var(--color-olive); font-weight: 800; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid rgba(79, 95, 62, .18);
  background: rgba(255, 255, 255, .88);
  border-radius: 15px;
  padding: 13px 14px;
  color: var(--color-text);
  outline: none;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--color-sage);
  box-shadow: 0 0 0 4px rgba(127, 143, 104, .13);
}
.form-note { margin: 0; color: var(--color-muted); font-size: .9rem; }

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 999px;
  background: #264b33;
  color: var(--color-white);
  font-weight: 900;
  box-shadow: 0 16px 35px rgba(38, 75, 51, .28);
}

.site-footer {
  background: var(--color-olive);
  color: rgba(255, 255, 255, .86);
  padding: 34px 0;
}
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-grid p { margin: 4px 0 0; opacity: .75; }
.footer-grid span { display: block; text-align: right; opacity: .78; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    inset: 78px 20px auto;
    display: grid;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow-soft);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
  }
  .nav-links.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .hero-grid, .split-grid, .location-grid, .contact-grid, .feature-band, .reverse {
    grid-template-columns: 1fr;
  }
  .cards-grid, .reason-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-media { max-width: 620px; margin-inline: auto; }
  .floating-card, .note-card { left: 18px; right: 18px; bottom: 18px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid figure:first-child { grid-row: auto; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 70px 0; }
  .hero { padding: 52px 0 72px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .btn { width: 100%; }
  .cards-grid, .reason-grid { grid-template-columns: 1fr; }
  .feature-band, .contact-panel, .contact-form { padding: 24px; }
  .footer-grid { display: grid; }
  .footer-grid span { text-align: left; }
  .whatsapp-float { left: 16px; right: 16px; }
}
