:root {
  --bg: #fbfbfa;
  --surface: #ffffff;
  --surface-soft: #f7f7f5;
  --surface-muted: #eeeeeb;
  --text: #171816;
  --muted: #6d7169;
  --line: #e7e5df;
  --brand: #5e665d;
  --brand-dark: #2f352f;
  --accent: #a98b58;
  --accent-soft: #f1eadf;
  --shadow: 0 12px 34px rgba(31, 38, 31, 0.06);
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 10px;
  --font-body: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  --header-logo-width: 170px;
  --header-logo-height: 61px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
}

body.site-loading {
  overflow: hidden;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: var(--bg);
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.32s ease,
    visibility 0.32s ease;
}

.site-loader.is-hidden {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.site-loader-inner {
  display: grid;
  justify-items: center;
  gap: 16px;
}

.site-loader-mark {
  position: relative;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-dark);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.site-loader-mark::after {
  position: absolute;
  inset: -7px;
  border: 2px solid transparent;
  border-top-color: var(--accent);
  border-right-color: var(--accent);
  border-radius: inherit;
  content: "";
  animation: loader-spin 0.9s linear infinite;
}

.site-loader-text {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-loader,
  .site-loader-mark::after {
    animation: none;
    transition: none;
  }
}

img {
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 251, 250, 0.96);
  backdrop-filter: blur(14px);
}

.nav,
.hero-content,
.products-section,
.brand-blog-section,
.cta-section,
.support-section {
  width: 80%;
  margin-inline: auto;
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 14px 0;
}

.brand,
.nav-links a,
.nav-icon-button,
.nav-cta,
.primary-link {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--text);
  font-size: 1.04rem;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: var(--header-logo-width);
  height: var(--header-logo-height);
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--brand-dark);
  color: white;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.brand-mark.has-image {
  overflow: hidden;
  background: transparent;
  color: inherit;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hidden {
  display: none !important;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 26px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

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

.nav-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.nav-icon-button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: white;
  transition:
    transform 0.18s ease,
    background 0.18s ease;
}

.nav-icon-button svg,
.support-icon svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.nav-icon-button.whatsapp {
  background: #8a8d86;
}

.nav-icon-button.phone {
  background: #8a8d86;
}

.nav-icon-button.instagram {
  background: #8a8d86;
}

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

.nav-icon-button.whatsapp:hover {
  background: #74776f;
}

.nav-icon-button.phone:hover {
  background: #74776f;
}

.nav-icon-button.instagram:hover {
  background: #74776f;
}

.nav-cta,
.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.nav-cta,
.primary-link {
  background: var(--brand-dark);
  color: white;
}

.nav-cta {
  padding: 10px 16px;
  font-size: 0.86rem;
}

.primary-link {
  min-height: 46px;
  padding: 12px 18px;
  font-size: 0.92rem;
}

.nav-cta:hover,
.primary-link:hover {
  background: var(--brand);
}

.cta-section .primary-link:hover {
  filter: brightness(1.08);
}

.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 12 / 5;
  overflow: hidden;
  background: #f7f4ee;
}

.hero-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  cursor: pointer;
}

.hero-link.disabled {
  cursor: default;
  pointer-events: none;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-copy h2,
.section-head h2,
.cta-section h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.55rem, 2.5vw, 2.45rem);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0;
}

.brand-blog-copy h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.7rem, 2.4vw, 2.55rem);
  line-height: 1.16;
  font-weight: 600;
  letter-spacing: 0;
}

.section-head p,
.usage-card p,
.brand-blog-copy p {
  color: var(--muted);
  line-height: 1.72;
  font-weight: 300;
}

.brand-blog-copy p {
  max-width: 620px;
  margin: 0;
  color: #626861;
  font-size: 0.96rem;
  line-height: 1.85;
}

.products-section {
  padding: 68px 0;
  border-top: 1px solid var(--line);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(280px, 0.42fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 24px;
}

.section-head p {
  margin: 0;
}

.product-carousel {
  position: relative;
}

.product-grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 2px 0 12px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.product-grid::-webkit-scrollbar {
  display: none;
}

.product-nav {
  display: grid;
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(231, 229, 223, 0.95);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--brand-dark);
  font-size: 1.7rem;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(31, 38, 31, 0.06);
  transform: translateY(-50%);
  transition:
    transform 0.18s ease,
    background 0.18s ease;
}

.product-nav-prev {
  left: -60px;
}

.product-nav-next {
  right: -60px;
}

.product-nav:hover {
  background: var(--surface-soft);
  transform: translateY(-50%);
}

.product-card {
  flex: 0 0 calc((100% - 80px) / 5);
  scroll-snap-align: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.product-media {
  position: relative;
  overflow: hidden;
  background: var(--surface-muted);
}

.product-media img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: opacity 0.2s ease;
}

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

.product-title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 700;
}

.brand-blog-section {
  padding: 78px 0 72px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brand-blog-copy {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) 1px minmax(320px, 1fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
  max-width: 1180px;
  margin-inline: auto;
  text-align: left;
}

.brand-blog-copy .section-kicker {
  margin-bottom: 16px;
  color: #8b907f;
  letter-spacing: 0.22em;
}

.brand-divider {
  width: 1px;
  min-height: 260px;
  background: var(--line);
}

.brand-paragraphs {
  display: grid;
  gap: 22px;
}

.brand-paragraphs h1,
.brand-paragraphs h2,
.brand-paragraphs h3,
.brand-paragraphs h4 {
  max-width: 620px;
  margin: 0;
  color: var(--text);
  line-height: 1.35;
}

.brand-paragraphs h1 {
  font-size: 1.7rem;
}

.brand-paragraphs h2 {
  font-size: 1.4rem;
}

.brand-paragraphs h3 {
  font-size: 1.2rem;
}

.brand-paragraphs h4 {
  font-size: 1.05rem;
}

.brand-paragraphs ul,
.brand-paragraphs ol {
  max-width: 620px;
  margin: 0;
  padding-left: 1.4rem;
  color: #626861;
  line-height: 1.8;
}

.brand-paragraphs li + li {
  margin-top: 6px;
}

.brand-paragraphs a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.brand-paragraphs img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}

.cta-section {
  border-radius: var(--radius-lg);
  padding: 40px;
  background:
    linear-gradient(135deg, rgba(48, 61, 49, 0.96), rgba(82, 98, 82, 0.88)),
    url("https://images.unsplash.com/photo-1519052537078-e6302a4968d4?auto=format&fit=crop&w=1400&q=80") center / cover;
  color: white;
}

.cta-section h2 {
  max-width: 780px;
  margin-bottom: 22px;
  color: white;
}

.support-card {
  text-decoration: none;
}

.support-section {
  margin: 24px auto 76px;
}

.support-panel {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
}

.support-panel h2 {
  position: relative;
  grid-column: 1 / -1;
  margin: 0 0 18px;
  color: #101513;
  font-size: 1.08rem;
  line-height: 1.3;
}

.support-panel h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -11px;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.support-card {
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  background: white;
  color: #101513;
  border: 1px solid var(--line);
  box-shadow: none;
}

.support-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: white;
  box-shadow: none;
}

.support-icon.whatsapp {
  background: #5f7d64;
}

.support-icon.address {
  background: #636b61;
}

.address-card strong {
  line-height: 1.45;
}

.support-icon.mail {
  background: #a98b58;
}

.support-card small,
.support-card strong {
  display: block;
}

.support-card small {
  margin-bottom: 5px;
  color: #72756f;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.support-card strong {
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top-button {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 40;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--brand-dark);
  color: white;
  box-shadow: 0 10px 24px rgba(31, 38, 31, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    background 0.18s ease;
}

.scroll-top-button.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-button:hover {
  background: var(--brand);
}

.scroll-top-button svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: currentColor;
}

@media (max-width: 1180px) {
  .nav,
.hero-content,
.products-section,
.brand-blog-section,
.cta-section,
.support-section {
    width: 86%;
  }
}

@media (max-width: 1020px) {
  .product-card {
    flex-basis: calc((100% - 20px) / 2);
  }
}

@media (max-width: 760px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .nav-actions {
    justify-content: flex-end;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    height: auto;
    aspect-ratio: 3 / 4;
    background-position: center;
  }

  .section-head {
    grid-template-columns: 1fr;
  }

  .brand-blog-copy {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .brand-divider {
    width: 100%;
    min-height: 1px;
  }

  .brand-blog-copy p {
    max-width: none;
  }

  .support-panel {
    grid-template-columns: 1fr;
    width: min(420px, 100%);
  }

}

@media (max-width: 560px) {
  .nav,
  .hero-content,
  .products-section,
  .brand-blog-section,
  .cta-section,
  .support-section {
    width: 90%;
  }

  .nav {
    gap: 14px;
  }

  .brand-mark {
    width: min(var(--header-logo-width), 150px);
    height: min(var(--header-logo-height), 54px);
  }

  .nav-icon-button {
    width: 38px;
    height: 38px;
  }

  .product-nav {
    width: 38px;
    height: 38px;
    font-size: 1.35rem;
  }

  .product-nav-prev {
    left: 8px;
  }

  .product-nav-next {
    right: 8px;
  }

  .product-card {
    flex-basis: 82%;
  }

  .scroll-top-button {
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
  }

  .cta-section {
    padding: 28px;
  }

  .support-card {
    padding: 16px;
  }

}
