:root {
  --green-brand: #006241;
  --green-accent: #00754a;
  --green-house: #1e3932;
  --green-uplift: #2b5148;
  --green-light: #d4e9e2;
  --cream: #f2f0eb;
  --ceramic: #edebe9;
  --white: #ffffff;
  --gold: #cba258;
  --text: rgba(0, 0, 0, 0.87);
  --text-soft: rgba(0, 0, 0, 0.58);
  --white-soft: rgba(255, 255, 255, 0.72);
  --line: rgba(0, 0, 0, 0.12);
  --shadow-card: 0 0 0.5px rgba(0, 0, 0, 0.14), 0 1px 1px rgba(0, 0, 0, 0.24);
  --shadow-nav: 0 1px 3px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.06), 0 0 2px rgba(0, 0, 0, 0.07);
  --shadow-float: 0 0 6px rgba(0, 0, 0, 0.24), 0 8px 12px rgba(0, 0, 0, 0.14);
  --outer: clamp(16px, 4vw, 40px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: Inter, Manrope, "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: -0.01em;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  padding: 16px var(--outer);
  background: var(--white);
  box-shadow: var(--shadow-nav);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 230px;
}

.brand-mark {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-brand);
  color: var(--white);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  font-weight: 800;
}

.brand small {
  color: var(--text-soft);
  font-size: 13px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
}

.nav-links a:hover {
  color: var(--green-accent);
}

.button,
.nav-cta,
.filter-pills button,
.lead-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 50px;
  padding: 8px 18px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:active,
.nav-cta:active,
.filter-pills button:active,
.lead-form button:active,
.floating-whatsapp:active {
  transform: scale(0.95);
}

.nav-cta,
.button-primary,
.lead-form button {
  background: var(--green-accent);
  border-color: var(--green-accent);
  color: var(--white);
}

.button-outline {
  background: transparent;
  border-color: var(--green-accent);
  color: var(--green-accent);
}

.button-inverted {
  background: var(--white);
  border-color: var(--white);
  color: var(--green-accent);
}

.button-dark-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.8fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  min-height: calc(100vh - 88px);
  padding: clamp(48px, 8vw, 90px) var(--outer);
  background: var(--cream);
}

.hero-copy {
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-brand);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.feature-band h2,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.hero h1 {
  color: var(--green-brand);
  font-size: clamp(42px, 7vw, 78px);
  font-weight: 700;
}

.hero p,
.section-heading p,
.contact-copy p {
  max-width: 680px;
  color: var(--text-soft);
  font-size: 19px;
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

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

.hero-card-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  min-width: 190px;
  padding: 18px;
  border-radius: 12px;
  background: var(--green-house);
  color: var(--white);
  box-shadow: var(--shadow-card);
}

.hero-card-note span,
.hero-card-note small {
  display: block;
  color: var(--white-soft);
}

.hero-card-note strong {
  display: block;
  font-size: 27px;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.quick-strip div {
  padding: 26px var(--outer);
  border-right: 1px solid var(--line);
}

.quick-strip div:last-child {
  border-right: 0;
}

.quick-strip strong,
.quick-strip span {
  display: block;
}

.quick-strip strong {
  color: var(--green-brand);
  font-size: 24px;
}

.quick-strip span {
  color: var(--text-soft);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding: clamp(48px, 7vw, 76px) var(--outer);
  background: var(--green-house);
  color: var(--white);
}

.feature-band .eyebrow {
  color: var(--gold);
}

.feature-band h2,
.section-heading h2,
.contact-copy h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 650;
}

.feature-band p {
  max-width: 760px;
  color: var(--white-soft);
  font-size: 18px;
}

.feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.catalog-section,
.contact-section {
  padding: clamp(54px, 8vw, 86px) var(--outer);
}

.catalog-section {
  background: var(--ceramic);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 28px;
}

.catalog-tools {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: 18px;
  align-items: end;
  margin-bottom: 24px;
}

.search-box {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 800;
}

.search-box input,
.lead-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 12px;
  background: var(--white);
  color: var(--text);
  font: inherit;
  padding: 12px 16px;
}

.search-box input:focus,
.lead-form input:focus {
  border-color: var(--green-accent);
  outline: 3px solid rgba(0, 117, 74, 0.14);
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.filter-pills button {
  background: var(--white);
  border-color: rgba(0, 0, 0, 0.16);
  color: var(--green-accent);
}

.filter-pills button.active {
  background: var(--green-accent);
  border-color: var(--green-accent);
  color: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.product-card {
  display: grid;
  overflow: hidden;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--cream);
}

.product-body {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.product-topline {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
}

.product-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.category-pill {
  flex: 0 0 auto;
  border-radius: 50px;
  padding: 4px 10px;
  background: var(--green-light);
  color: var(--green-house);
  font-size: 12px;
  font-weight: 900;
}

.product-meta {
  margin: 0;
  min-height: 42px;
  color: var(--text-soft);
  font-size: 14px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price {
  color: var(--green-brand);
  font-size: 22px;
  font-weight: 900;
}

.unit {
  color: var(--text-soft);
  font-size: 13px;
}

.quote-link {
  border: 1px solid var(--green-accent);
  border-radius: 50px;
  padding: 8px 12px;
  color: var(--green-accent);
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 6vw, 72px);
  background: var(--cream);
}

.contact-copy ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--text-soft);
  list-style: none;
}

.contact-copy strong {
  color: var(--text);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.lead-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.lead-form p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-accent);
  color: var(--white);
  box-shadow: var(--shadow-float);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp span {
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px var(--outer);
  background: var(--green-house);
  color: var(--white-soft);
}

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

@media (max-width: 920px) {
  .site-header {
    min-height: 76px;
    flex-wrap: wrap;
  }

  .brand {
    min-width: auto;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .feature-band,
  .catalog-tools,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .feature-actions,
  .filter-pills {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 14px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .nav-cta {
    flex: 1;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p,
  .section-heading p,
  .contact-copy p {
    font-size: 16px;
  }

  .button,
  .hero-actions a,
  .lead-form button {
    width: 100%;
  }

  .quick-strip {
    grid-template-columns: 1fr;
  }

  .quick-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-card-note {
    position: static;
    border-radius: 0;
  }

  .site-footer {
    display: grid;
  }
}
