:root {
  --ink: #1c2722;
  --muted: #64706b;
  --paper: #fffaf4;
  --surface: #ffffff;
  --sage: #4d7b67;
  --sage-dark: #315746;
  --coral: #d46a55;
  --mint: #dceee3;
  --gold: #c79b45;
  --line: #e7ddd1;
  --shadow: 0 18px 55px rgba(38, 54, 45, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 64px);
  background: rgba(255, 250, 244, 0.9);
  border-bottom: 1px solid rgba(231, 221, 209, 0.8);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--sage-dark);
  border-radius: 8px;
}

.nav {
  display: flex;
  gap: clamp(12px, 3vw, 28px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

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

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 64px);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(255, 250, 244, 0.96) 0%, rgba(255, 250, 244, 0.76) 43%, rgba(255, 250, 244, 0.18) 100%);
}

.hero-content {
  position: relative;
  max-width: 680px;
  padding: 32px 0;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 560px;
  color: #42504a;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.primary {
  color: #fff;
  background: var(--sage-dark);
  box-shadow: 0 12px 26px rgba(49, 87, 70, 0.24);
}

.secondary {
  color: var(--sage-dark);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(49, 87, 70, 0.24);
}

.section {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 64px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.7fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  background: #fff;
}

.intro h2,
.section-heading h2,
.contact-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.intro p,
.contact-copy p,
.zen-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.zen-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 64px);
  background: #eef7ef;
}

.zen-showcase img {
  width: 100%;
  max-height: 660px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.zen-copy {
  max-width: 640px;
}

.zen-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.product-section {
  background: var(--paper);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

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

.product-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-media {
  min-height: 260px;
  background-color: var(--mint);
  background-position: center;
  background-size: cover;
}

.offer-media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 10px;
  background: #f4faf0;
}

.offer-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-one {
  background-image: radial-gradient(circle at 48% 34%, #fff 0 9%, transparent 10%), radial-gradient(circle at 50% 52%, #f7ebe1 0 22%, transparent 23%), linear-gradient(145deg, #dceee3, #fdf4eb 56%, #d46a55);
}

.product-two {
  background-image: radial-gradient(circle at 50% 30%, #fff 0 8%, transparent 9%), radial-gradient(circle at 50% 54%, #f1d8c6 0 24%, transparent 25%), linear-gradient(145deg, #f6efe5, #c79b45 55%, #315746);
}

.product-three {
  background-image: radial-gradient(circle at 50% 34%, #fff 0 7%, transparent 8%), radial-gradient(circle at 50% 58%, #edf7f0 0 26%, transparent 27%), linear-gradient(145deg, #dceee3, #ffffff 48%, #4d7b67);
}

.product-body {
  padding: 22px;
}

.product-body h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.product-body p {
  min-height: 76px;
  color: var(--muted);
  line-height: 1.55;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.product-meta span {
  color: var(--sage);
  font-weight: 800;
}

.product-button {
  width: 100%;
  margin-top: 18px;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.feature {
  min-height: 260px;
  padding: clamp(26px, 5vw, 48px);
  background: #fff;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  color: #fff;
  background: var(--coral);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 900;
}

.feature h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.feature p {
  color: var(--muted);
  line-height: 1.65;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
  background: #f4fbf6;
}

.contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  color: var(--sage-dark);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d8cec2;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(77, 123, 103, 0.22);
  border-color: var(--sage);
}

.form-button {
  width: 100%;
  margin-top: 4px;
  font-size: 1rem;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--sage-dark);
  font-weight: 750;
  line-height: 1.4;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 64px);
  color: #fff;
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #fff;
  background: #1f9d5a;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(31, 157, 90, 0.35);
  font-size: 0.9rem;
  font-weight: 950;
}

@media (max-width: 900px) {
  .intro,
  .zen-showcase,
  .products,
  .feature-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .zen-showcase img {
    max-height: 520px;
  }

  .product-body p {
    min-height: auto;
  }

  .feature {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero {
    min-height: 72vh;
    padding-top: 42px;
  }

  .hero-overlay {
    background: rgba(255, 250, 244, 0.82);
  }

  h1 {
    max-width: 10ch;
  }

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

  .whatsapp-float {
    width: 54px;
    height: 54px;
  }
}
