:root {
  --green: #4f9561;
  --green-dark: #356d45;
  --mint: #dff1e8;
  --pink: #fde6ec;
  --pink-strong: #e78aa1;
  --ink: #1d1717;
  --muted: #6f6464;
  --line: #eadede;
  --paper: #ffffff;
  --soft: #fbf7f7;
  --shadow: 0 18px 45px rgba(49, 36, 31, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.5;
}

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

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

.topbar {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 9px 20px;
  background: linear-gradient(90deg, var(--pink), var(--mint));
  font-size: 14px;
  font-weight: 700;
}

.topbar a {
  color: var(--green-dark);
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(234, 222, 222, 0.8);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 190px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 700;
}

.nav a {
  padding: 8px 0;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(79, 149, 97, 0.22);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--green-dark);
  box-shadow: 0 14px 28px rgba(79, 149, 97, 0.28);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 14px;
  white-space: nowrap;
}

.button-outline {
  width: 100%;
  min-height: 38px;
  color: var(--green-dark);
  background: #eef8f0;
  box-shadow: none;
}

.button-outline:hover {
  color: #fff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 1.18fr);
  align-items: center;
  gap: clamp(28px, 4vw, 62px);
  min-height: calc(92vh - 104px);
  padding: 30px clamp(18px, 6vw, 86px) 18px;
  background:
    radial-gradient(circle at 74% 26%, rgba(223, 241, 232, 0.92), transparent 31%),
    radial-gradient(circle at 20% 86%, rgba(253, 230, 236, 0.86), transparent 28%),
    #fff;
}

.hero h1,
.section-heading h2,
.story-copy h2,
.final-cta h2,
.faq h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 560px;
  font-size: clamp(38px, 4.6vw, 58px);
}

.hero p {
  max-width: 520px;
  margin: 20px 0 24px;
  color: var(--muted);
  font-size: 19px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.hero-points span::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--pink-strong);
}

.hero-media {
  position: relative;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 7% 3% -3% 1%;
  z-index: 0;
  border-radius: 46% 54% 42% 58%;
  background: var(--mint);
}

.hero-media img {
  position: relative;
  z-index: 1;
  min-height: 360px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section {
  padding: 70px clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.story-copy h2,
.final-cta h2,
.faq h2 {
  font-size: clamp(32px, 4vw, 50px);
}

.section-heading p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
}

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

.category-card,
.product-card,
.quote-grid figure {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.category-card {
  min-width: 0;
  background: linear-gradient(180deg, #fff 0%, #fff 58%, var(--soft) 100%);
}

.category-card img,
.product-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.category-card h3,
.category-card p,
.product-card h3,
.product-card p {
  margin-inline: 16px;
  text-align: center;
}

.category-card h3,
.product-card h3 {
  margin-top: 18px;
  margin-bottom: 6px;
  font-size: 18px;
}

.category-card p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
}

.products {
  background: linear-gradient(180deg, #fff 0%, #fbf7f7 100%);
}

.product-card {
  padding-bottom: 14px;
}

.product-card h3 {
  min-height: 48px;
  font-size: 16px;
}

.product-card p {
  margin-top: 0;
  margin-bottom: 14px;
  font-weight: 800;
}

.product-card .button {
  width: calc(100% - 24px);
  margin: 0 12px;
  font-size: 13px;
}

.gallery-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(253, 230, 236, 0.86), transparent 26%),
    radial-gradient(circle at 86% 80%, rgba(223, 241, 232, 0.8), transparent 24%),
    #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 16px;
}

.gallery-grid img {
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(49, 36, 31, 0.08);
}

.gallery-grid img:nth-child(1),
.gallery-grid img:nth-child(4) {
  grid-column: span 2;
}

.gallery-grid img:nth-child(2) {
  grid-row: span 2;
}

.process {
  padding: 70px clamp(18px, 5vw, 72px);
  background: #fff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.steps article {
  text-align: center;
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--green-dark);
  font-size: 25px;
  font-weight: 800;
}

.steps h3 {
  margin: 18px 0 8px;
}

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

.story {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  padding: 78px clamp(18px, 6vw, 86px);
  background:
    linear-gradient(90deg, rgba(223, 241, 232, 0.74), transparent 34%),
    #fff;
}

.story-media img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.story-copy h3 {
  margin: 12px 0 18px;
  color: var(--pink-strong);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(26px, 3vw, 34px);
}

.story-copy p {
  color: var(--muted);
  font-size: 17px;
}

.story-copy .button {
  margin-top: 12px;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  padding: 28px clamp(18px, 6vw, 86px);
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.trust-band div {
  display: grid;
  gap: 5px;
}

.trust-band strong {
  font-size: 17px;
}

.trust-band span {
  color: var(--muted);
  font-size: 14px;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}

.quote-grid figure {
  margin: 0;
  padding: 30px;
  text-align: center;
}

.quote-grid figure::before {
  content: "★★★★★";
  display: block;
  margin-bottom: 14px;
  color: var(--pink-strong);
  letter-spacing: 3px;
}

blockquote {
  margin: 0 0 18px;
  color: var(--muted);
}

figcaption {
  font-weight: 800;
}

.faq {
  padding: 72px clamp(18px, 5vw, 72px);
  background: #fff;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  max-width: 1080px;
  margin: 0 auto;
}

details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 800;
  cursor: pointer;
}

summary::after {
  content: "+";
  color: var(--green-dark);
  font-size: 24px;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.final-cta {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 76px 20px;
  text-align: center;
  background: linear-gradient(90deg, var(--pink), var(--mint));
}

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

.footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 38px clamp(18px, 5vw, 72px);
  background: #fff;
}

.footer img {
  width: 160px;
  height: 74px;
  object-fit: contain;
  object-position: left center;
}

.footer p {
  max-width: 380px;
  color: var(--muted);
}

.footer h2 {
  margin: 0 0 12px;
  font-family: "Playfair Display", Georgia, serif;
}

.footer a {
  display: block;
  margin-bottom: 14px;
  color: var(--green-dark);
  font-weight: 800;
  cursor: pointer;
}

.footer span {
  color: var(--muted);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: none;
  min-height: 48px;
  padding: 0 18px;
  align-items: center;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(53, 109, 69, 0.34);
}

@media (max-width: 1120px) {
  .category-grid,
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .hero {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .hero p {
    max-width: 720px;
  }
}

@media (max-width: 820px) {
  .topbar {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
  }

  .site-header {
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .brand img {
    width: 150px;
  }

  .button-small {
    max-width: 170px;
    white-space: normal;
    text-align: center;
  }

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

  .hero-media img {
    min-height: 260px;
  }

  .steps,
  .story,
  .trust-band,
  .quote-grid,
  .faq-list,
  .footer {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 210px;
  }

  .gallery-grid img:nth-child(1),
  .gallery-grid img:nth-child(2),
  .gallery-grid img:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .story {
    padding-top: 58px;
  }

  .floating-whatsapp {
    display: inline-flex;
  }
}

@media (max-width: 620px) {
  .category-grid,
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .section,
  .process,
  .faq {
    padding-block: 52px;
  }

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

  .hero p {
    font-size: 17px;
  }

  .category-card h3,
  .category-card p,
  .product-card h3,
  .product-card p {
    margin-inline: 10px;
  }

  .product-card h3 {
    font-size: 14px;
  }
}

@media (max-width: 430px) {
  .site-header {
    padding-inline: 14px;
    gap: 12px;
  }

  .brand img {
    width: 124px;
  }

  .button-small {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 12px;
  }

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

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