:root {
  --green-950: #0f2f16;
  --green-900: #153d1d;
  --green-800: #1f4f28;
  --green-700: #2f6b37;
  --green-100: #edf7ec;
  --green-50: #f6fbf4;
  --cream: #fbfaf5;
  --text: #1f271f;
  --muted: #66705f;
  --line: #e4eadf;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(15, 47, 22, 0.11);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.navbar {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 170px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--green-950);
}

.nav-links a:not(.nav-button) {
  opacity: 0.82;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-button {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--green-900);
  color: white;
}

.section-padding {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 50px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 54px;
  min-height: calc(100vh - 128px);
}

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--green-950);
  line-height: 1.04;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
}

h1 {
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

p {
  line-height: 1.7;
}

.hero-text {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-actions,
.custom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--green-900);
  color: white;
  box-shadow: 0 14px 30px rgba(21, 61, 29, 0.18);
}

.button.secondary {
  background: var(--green-100);
  color: var(--green-900);
}

.button.whatsapp {
  background: #eaf8eb;
  color: #1d6b2b;
}

.hero-card {
  background: linear-gradient(180deg, var(--green-50), white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 10px;
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  border-radius: 20px;
  background: white;
}

.intro-strip {
  background: var(--green-950);
  color: white;
  padding-top: 20px;
  padding-bottom: 20px;
}

.intro-strip div {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 42px;
  font-weight: 800;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.product-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(15, 47, 22, 0.08);
}

.product-image-placeholder,
.photo-placeholder,
.map-placeholder {
  background: white;
  border: 2px dashed #cfd9ca;
  color: #9aa696;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 800;
}

.product-image-placeholder {
  min-height: 260px;
  margin: 18px;
  border-radius: 22px;
}

.product-body {
  padding: 10px 28px 30px;
}

.product-tag {
  display: inline-flex;
  margin: 0 0 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-body ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
  display: grid;
  gap: 10px;
  color: var(--green-950);
  font-weight: 700;
}

.product-body li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--green-700);
}

.card-button {
  width: 100%;
  background: var(--green-950);
  color: white;
}

.custom-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 34px;
  align-items: stretch;
}

.custom-content,
.local-card,
.final-cta {
  border-radius: var(--radius-xl);
  background: var(--green-50);
  border: 1px solid var(--line);
  padding: clamp(28px, 5vw, 52px);
}

.custom-content p:not(.eyebrow),
.local-card p,
.final-cta p {
  color: var(--muted);
  font-size: 1.05rem;
}

.tall {
  min-height: 420px;
  border-radius: var(--radius-xl);
}

.local-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 32px;
  align-items: center;
  background: var(--cream);
}

.map-placeholder {
  min-height: 290px;
  border-radius: 24px;
  object-fit: cover;
}

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

.photo-placeholder {
  min-height: 260px;
  border-radius: 24px;
}

.final-cta {
  text-align: center;
  background: var(--green-950);
  color: white;
  padding: 62px 20px !important;
}

.final-cta .eyebrow,
.final-cta h2,
.final-cta p {
  color: white;
}

.final-cta p {
  opacity: 0.82;
  max-width: 650px;
  margin: 18px auto 28px;
}

.final-cta .button.primary {
  background: white;
  color: var(--green-950);
}

.site-footer {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
}

.site-footer strong {
  color: var(--green-950);
}

.site-footer p {
  margin: 6px 0 0;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 700;
  color: var(--green-950);
}

@media (max-width: 900px) {
  .nav-links a:not(.nav-button) {
    display: none;
  }

  .hero,
  .custom-section,
  .local-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 62px;
  }

  .hero-card {
    padding: 26px;
  }

  .product-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .local-card {
    gap: 22px;
  }
}

@media (max-width: 560px) {
  .navbar {
    min-height: 72px;
  }

  .brand img {
    width: 132px;
  }

  .nav-button {
    padding: 10px 14px;
    font-size: 0.88rem;
  }

  .section-padding {
    padding: 62px 0;
  }

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

  .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}

.product-price {
  margin: 0 0 0.75rem;
  font-weight: 800;
  color: var(--green-700);
  font-size: 1.40rem;
}
