:root {
  --moss: #31331f;
  --olive: #645d3b;
  --oat: #d5cdbe;
  --blush: #d9b8a8;
  --terracotta: #ba8b68;
  --ink: #161711;
  --text: #f4eee4;
  --muted: #d9cabd;
  --paper: #403f28;
  --line: rgba(213, 205, 190, 0.2);
  --shadow: 0 24px 70px rgba(10, 11, 7, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  align-items: center;
  background: rgba(49, 51, 31, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 4vw, 56px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 10;
}

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

.brand img {
  background: #000;
  border-radius: 50%;
  height: 42px;
  padding: 4px;
  width: 42px;
}

nav {
  display: flex;
  gap: clamp(14px, 3vw, 30px);
  font-size: 0.95rem;
  font-weight: 700;
}

nav a:hover {
  color: var(--blush);
}

.hero {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  min-height: calc(100vh - 71px);
  overflow: hidden;
  padding: clamp(44px, 8vw, 88px) clamp(18px, 5vw, 72px);
  position: relative;
}

.hero::before {
  background:
    radial-gradient(circle at 12% 16%, rgba(186, 139, 104, 0.32), transparent 34%),
    linear-gradient(135deg, rgba(49, 51, 31, 0.98), rgba(100, 93, 59, 0.84));
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

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

h1,
h2 {
  letter-spacing: 0;
  line-height: 0.95;
  margin: 0;
}

h1 {
  font-size: clamp(3.3rem, 8.2vw, 7.6rem);
  max-width: 920px;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  max-width: 820px;
}

.intro {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.65;
  margin: 26px 0 0;
  max-width: 720px;
}

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

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: var(--terracotta);
  box-shadow: 0 16px 34px rgba(10, 11, 7, 0.24);
  color: var(--ink);
}

.button.secondary {
  background: rgba(213, 205, 190, 0.12);
  border: 1px solid var(--line);
  color: var(--text);
}

.hero-product {
  aspect-ratio: 4 / 5;
  border: 10px solid var(--oat);
  border-radius: 24px;
  box-shadow: var(--shadow);
  justify-self: center;
  max-width: 440px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.hero-product::after {
  background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.62));
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.hero-product > img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  width: 100%;
}

.product-badge {
  background: rgba(49, 51, 31, 0.84);
  border: 1px solid rgba(213, 205, 190, 0.3);
  border-radius: 8px;
  bottom: 18px;
  color: var(--text);
  left: 18px;
  padding: 16px;
  position: absolute;
  right: 18px;
  z-index: 1;
}

.product-badge strong,
.product-badge span {
  display: block;
}

.product-badge strong {
  color: var(--blush);
  font-size: 1.18rem;
  margin-bottom: 8px;
}

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

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

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

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

.product-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.product-card img {
  aspect-ratio: 1 / 1;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.product-card span {
  display: block;
  font-size: 1.35rem;
  font-weight: 900;
  margin: 22px 22px 0;
}

.product-card p,
.trust-copy p,
.contact-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.product-card p {
  margin: 10px 22px 0;
}

.product-card a {
  align-items: center;
  background: var(--ink);
  color: var(--text);
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  margin: auto 22px 22px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
}

.product-card a:hover {
  background: var(--blush);
  color: var(--ink);
}

.seo-copy {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px clamp(18px, 5vw, 72px);
}

.seo-copy p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 auto;
  max-width: 1020px;
}

.local-seo {
  align-items: start;
  background: var(--olive);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  padding: clamp(48px, 7vw, 80px) clamp(18px, 5vw, 72px);
}

.local-seo p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
  margin: 0;
}

.trust-section {
  background: var(--ink);
  color: var(--text);
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
}

.trust-section .eyebrow,
.trust-copy p {
  color: var(--muted);
}

.trust-copy {
  background: rgba(213, 205, 190, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
}

.trust-copy p:first-child {
  margin-top: 0;
}

.trust-copy p:last-child {
  margin-bottom: 0;
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(100, 93, 59, 0.42), rgba(186, 139, 104, 0.28)),
    var(--moss);
}

.contact-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 980px;
  padding: clamp(26px, 5vw, 56px);
  text-align: center;
}

.contact-panel h2,
.contact-panel p {
  margin-left: auto;
  margin-right: auto;
}

.contact-panel p {
  max-width: 680px;
}

.contact-panel .actions {
  justify-content: center;
}

.whatsapp-float {
  background: #25d366;
  border-radius: 999px;
  bottom: 18px;
  box-shadow: 0 14px 34px rgba(24, 97, 54, 0.28);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 900;
  padding: 14px 18px;
  position: fixed;
  right: 18px;
  z-index: 20;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero,
  .trust-section,
  .local-seo {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

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

@media (max-width: 560px) {
  nav {
    width: 100%;
    justify-content: space-between;
  }

  h1 {
    font-size: 3.05rem;
  }

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

  .button {
    width: 100%;
  }

  .whatsapp-float {
    bottom: 12px;
    left: 12px;
    right: 12px;
    text-align: center;
  }
}
