:root {
  --bg: #fdf9f4;
  --surface: #ffffff;
  --surface-soft: #f1ede8;
  --surface-alt: #ebe8e3;
  --text: #1c1c19;
  --muted: #50453b;
  --primary: #7a5431;
  --primary-dark: #623f1e;
  --primary-soft: #ffdcc1;
  --secondary: #fed8c1;
  --tertiary: #527a8c;
  --line: #d4c4b7;
  --success: #25d366;
  --shadow: 0 18px 50px rgba(122, 84, 49, 0.08);
  --radius: 24px;
  --radius-lg: 36px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(240, 188, 146, 0.2), transparent 28%),
    radial-gradient(circle at top right, rgba(82, 122, 140, 0.12), transparent 24%),
    var(--bg);
}

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

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

button {
  font: inherit;
}

.headline-font {
  font-family: "Caveat", cursive;
}

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(253, 249, 244, 0.88);
  border-bottom: 1px solid rgba(122, 84, 49, 0.08);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 86px;
}

.brand-mark img {
  height: 74px;
  width: auto;
  max-width: min(100%, 250px);
  object-fit: contain;
}

.desktop-nav,
.footer-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.desktop-nav a,
.footer-nav a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.footer-nav a:hover,
.desktop-nav a.active,
.footer-nav a.active {
  color: var(--primary);
}

.desktop-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: none;
  border: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--primary);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.mobile-nav {
  display: none;
  padding: 0 0 1rem;
}

.mobile-nav.open {
  display: grid;
  gap: 0.5rem;
}

.mobile-nav a {
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.btn,
.btn-secondary,
.btn-outline,
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border-radius: 999px;
  padding: 0.95rem 1.5rem;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn-secondary:hover,
.btn-outline:hover,
.btn-whatsapp:hover {
  transform: translateY(-1px);
}

.btn {
  background: var(--primary);
  color: #fff;
}

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

.btn-secondary {
  background: var(--surface-soft);
  color: var(--primary);
}

.btn-outline {
  border: 2px solid rgba(122, 84, 49, 0.18);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.7);
}

.btn-whatsapp {
  background: var(--success);
  color: #fff;
}

.hero,
.section {
  padding: 4.5rem 0;
}

.hero-grid,
.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 220, 193, 0.7);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-title,
.card-title {
  margin: 0;
  color: var(--primary);
}

.hero h1 {
  font-family: "Caveat", cursive;
  font-size: clamp(3.3rem, 7vw, 5.9rem);
  line-height: 0.96;
}

.hero-copy,
.section-copy,
.card-copy,
.muted {
  color: var(--muted);
  line-height: 1.7;
}

.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-visual {
  position: relative;
}

.hero-visual .main-image,
.image-card img,
.map-card img {
  box-shadow: var(--shadow);
}

.organic-frame {
  overflow: hidden;
  border-radius: 58% 42% 45% 55% / 38% 34% 66% 62%;
  background: var(--primary-soft);
}

.organic-frame img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.float-card {
  position: absolute;
  right: -1rem;
  bottom: 1.5rem;
  max-width: 240px;
  background: rgba(255, 255, 255, 0.92);
  padding: 1rem 1.1rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.section-soft {
  background: rgba(241, 237, 232, 0.72);
}

.section-plain {
  background: transparent;
}

.center-text {
  text-align: center;
}

.section-title {
  font-family: "Caveat", cursive;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

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

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

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

.card,
.feature-card,
.pricing-card,
.testimonial,
.info-card,
.product-shell,
.cta-panel {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(212, 196, 183, 0.5);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card,
.feature-card,
.testimonial,
.info-card,
.pricing-card {
  padding: 1.6rem;
}

.icon-badge {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(122, 84, 49, 0.1);
  color: var(--primary);
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.6rem;
  font-family: "Caveat", cursive;
}

.bento {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
}

.bento-stack {
  display: grid;
  gap: 1.5rem;
}

.image-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 100%;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial {
  height: 100%;
}

.testimonial p {
  margin-bottom: 0;
}

.pricing-card h3,
.info-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--primary);
  font-family: "Caveat", cursive;
  font-size: 2rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(212, 196, 183, 0.55);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-tag {
  text-align: right;
  font-weight: 800;
  color: var(--primary);
}

.old-price {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: line-through;
}

.product-shell {
  padding: 2rem;
}

.product-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.product-image {
  border-radius: 28px;
  overflow: hidden;
  background: var(--surface-soft);
}

.product-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.benefit-item {
  display: flex;
  gap: 0.8rem;
  align-items: start;
}

.benefit-item span:first-child {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  background: var(--surface-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.quantity-pill {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: var(--surface-soft);
  margin-bottom: 1rem;
}

.quantity-pill button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  cursor: pointer;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
}

.contact-card {
  padding: 2rem;
}

.contact-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.contact-row .icon-badge {
  margin-bottom: 0;
  width: 50px;
  height: 50px;
}

.map-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.map-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(253, 249, 244, 0.95), rgba(253, 249, 244, 0));
}

.service-areas {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.service-areas span {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(212, 196, 183, 0.5);
  font-weight: 600;
}

.cta-panel {
  padding: 2.2rem;
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.35), transparent 35%),
    var(--primary);
  color: #fff;
}

.cta-panel h2,
.cta-panel p {
  color: inherit;
}

.site-footer {
  margin-top: 4rem;
  padding: 2.5rem 0 3rem;
  background: rgba(241, 237, 232, 0.9);
  border-top: 1px solid rgba(122, 84, 49, 0.08);
  border-top-left-radius: 42px;
  border-top-right-radius: 42px;
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-brand h3 {
  margin: 0 0 0.5rem;
  color: var(--primary);
  font-family: "Caveat", cursive;
  font-size: 2rem;
}

.footer-contact {
  display: grid;
  gap: 0.6rem;
  color: var(--muted);
}

.quick-fab {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  z-index: 60;
}

.spacer-top {
  padding-top: 1.5rem;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-grid,
  .two-col,
  .bento,
  .product-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding-top: 2.5rem;
  }

  .float-card {
    position: static;
    margin-top: 1rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max-width), calc(100% - 1.25rem));
  }

  .nav-shell {
    min-height: 76px;
  }

  .brand-mark img {
    height: 58px;
  }

  .grid-4,
  .grid-3,
  .grid-2,
  .benefit-list {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .section,
  .hero {
    padding: 3.5rem 0;
  }

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