:root {
  --ink: #121512;
  --muted: #6f756f;
  --paper: #f7f6f1;
  --paper-strong: #ffffff;
  --soft: #eeece4;
  --line: rgba(18, 21, 18, 0.1);
  --sage: #69776b;
  --olive: #3f4a3f;
  --sand: #d9d0c0;
  --clay: #a77e60;
  --shadow: 0 18px 60px rgba(18, 21, 18, 0.1);
  --shadow-soft: 0 10px 30px rgba(18, 21, 18, 0.08);
  --radius: 20px;
  --radius-small: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.55;
  animation: pageFade 0.8s ease both;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.glass {
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 16px 50px rgba(18, 21, 18, 0.08);
  backdrop-filter: blur(18px);
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  width: min(1180px, calc(100% - 36px));
  margin: 14px auto 0;
  padding: 12px 14px 12px 16px;
  border-radius: 999px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand__mark {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201, 154, 62, 0.6);
    background: #111;
}

.brand__mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

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

.brand strong {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 15px;
  letter-spacing: -0.01em;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: rgba(18, 21, 18, 0.66);
  font-size: 13px;
  font-weight: 700;
}

.nav a,
.nav-cta {
  border-radius: 999px;
  padding: 10px 12px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
}

.nav-cta {
  color: #fff;
  background: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

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

.hero {
  position: relative;
  min-height: 92vh;
  margin-top: -78px;
  overflow: hidden;
  border-bottom-left-radius: 34px;
  border-bottom-right-radius: 34px;
  color: #fff;
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  transform: scale(1.06);
  will-change: transform;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(12, 14, 12, 0.76), rgba(12, 14, 12, 0.34), rgba(12, 14, 12, 0.1)),
    linear-gradient(0deg, rgba(12, 14, 12, 0.22), rgba(12, 14, 12, 0));
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) 320px;
  align-items: end;
  gap: 36px;
  min-height: 92vh;
  padding: 180px 0 86px;
}

.hero__copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.contact-section .eyebrow {
  color: #dde6d8;
}

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

h1,
h2,
h3 {
  font-family: "Manrope", Arial, sans-serif;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.95;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.1;
}

.hero p {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.button--primary {
  color: #fff;
  background: var(--ink);
}

.button--soft {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.16);
}

.button--outline {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.hero-card {
  align-self: end;
  border-radius: var(--radius);
  padding: 24px;
  color: var(--ink);
}

.hero-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.hero-card strong {
  display: block;
  margin: 8px 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 28px;
  line-height: 1;
}

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

.section {
  padding: 118px 0;
}

.section--soft {
  background: var(--soft);
}

.section-head {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-head p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
}

.section-head--split {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.stats-strip {
  padding: 34px 0;
  background: var(--paper);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stat {
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  padding: 24px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow-soft);
}

.stat strong {
  display: block;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.stat span:last-child {
  color: var(--muted);
  font-weight: 700;
}

.category-grid,
.product-grid,
.testimonial-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.category-card,
.product-card,
.mini-card,
.testimonial-card,
.gallery-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow-soft);
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.tilt-card:hover {
  transform: perspective(900px) rotateX(2deg) rotateY(-3deg) translateY(-8px);
  box-shadow: var(--shadow);
}

.category-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
}

.category-card img,
.product-card img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card img {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}

.category-card:hover img {
  transform: scale(1.05);
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 21, 18, 0.7), rgba(18, 21, 18, 0.05));
}

.category-card div {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
  color: #fff;
}

.category-card span,
.product-card span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.category-card p {
  margin: 18px 0 0;
  font-weight: 800;
}

.product-card,
.gallery-card {
  overflow: hidden;
}

.product-card img,
.gallery-card img {
  aspect-ratio: 4 / 3;
}

.product-card__body,
.gallery-card__body {
  padding: 22px;
}

.product-card span {
  color: var(--sage);
}

.product-card p,
.gallery-card p,
.mini-card p,
.testimonial-card p {
  color: var(--muted);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: start;
  gap: 46px;
}

.why-list {
  display: grid;
  gap: 16px;
}

.mini-card {
  padding: 26px;
}

.mini-card strong {
  color: var(--sage);
  font-weight: 900;
}

.campaign-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.campaign-card {
  min-height: 300px;
  border-radius: var(--radius);
  padding: 34px;
  background: linear-gradient(135deg, #fff, #e8e3d6);
  box-shadow: var(--shadow-soft);
}

.campaign-card--dark {
  color: #fff;
  background: linear-gradient(135deg, #141714, #4b554a);
}

.campaign-card span {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.campaign-card--dark span {
  color: rgba(255, 255, 255, 0.66);
}

.campaign-card h3 {
  max-width: 520px;
  margin: 34px 0;
  font-size: clamp(28px, 4vw, 46px);
}

.campaign-card a {
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.comparison {
  --split: 50%;
  position: relative;
  aspect-ratio: 16 / 8;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ddd8cd;
  box-shadow: var(--shadow);
  cursor: ew-resize;
}

.comparison__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison__image--after {
  position: absolute;
  inset: 0;
}

.comparison__before {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
}

.comparison__label {
  position: absolute;
  top: 18px;
  z-index: 3;
  border-radius: 999px;
  padding: 8px 13px;
  color: #fff;
  background: rgba(18, 21, 18, 0.62);
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.comparison__label--before {
  left: 18px;
}

.comparison__label--after {
  right: 18px;
}

.comparison__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  z-index: 2;
  width: 2px;
  transform: translateX(-50%);
  background: #fff;
}

.comparison__handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  background: rgba(18, 21, 18, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.comparison__range {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.testimonial-card {
  padding: 28px;
}

.testimonial-card p {
  min-height: 84px;
  font-size: 18px;
}

.contact-section {
  color: #fff;
  background: radial-gradient(circle at top left, #687360, #151815 54%);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 40px;
  align-items: center;
}

.contact-grid .section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.contact-card {
  padding: 28px;
  color: var(--ink);
}

.contact-card p {
  color: var(--muted);
}

.contact-phone {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-card .button {
  width: 100%;
  margin-top: 12px;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 18px;
  color: #fff;
  background: #1fa855;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(31, 168, 85, 0.32);
}

.footer {
  padding: 46px 0 28px;
  background: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
}

.brand--footer .brand__mark {
  width: 46px;
  height: 46px;
}

.footer-links,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.social-link {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  transition: transform 0.22s ease, background 0.22s ease;
}

.social-link:hover {
  transform: translateY(-3px);
  background: var(--ink);
}

.social-link svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.social-link:hover svg {
  color: #fff;
}

.footer-copy {
  width: min(1180px, calc(100% - 36px));
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 13px;
}

.page-hero {
  padding: 132px 0 70px;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: 34px;
  align-items: end;
}

.page-hero h1 {
  color: var(--ink);
}

.page-hero p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.page-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.catalog-section {
  padding: 40px 0 118px;
}

.gallery-card {
  position: relative;
}

.gallery-card__body h3 {
  margin-bottom: 6px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag-row span {
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--soft);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

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

.reveal--delay {
  transition-delay: 0.16s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pageFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    border-radius: 24px;
  }

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

  .hero__grid,
  .page-hero__grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 440px;
  }

  .stats-grid,
  .category-grid,
  .product-grid,
  .testimonial-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 640px) {
  .container,
  .site-header,
  .footer-copy {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    top: 10px;
    margin-top: 10px;
  }

  .brand small,
  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 760px;
    margin-top: -116px;
  }

  .hero__grid {
    min-height: 760px;
    padding: 190px 0 54px;
  }

  h1 {
    font-size: 48px;
  }

  .section {
    padding: 82px 0;
  }

  .stats-grid,
  .category-grid,
  .product-grid,
  .testimonial-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 330px;
  }

  .comparison {
    aspect-ratio: 4 / 3;
  }

  .footer-grid {
    align-items: start;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }
}
