:root {
  --orange: #f96912;
  --orange-dark: #d94f05;
  --black: #121212;
  --gray-900: #1d1d1f;
  --gray-700: #4e4e55;
  --gray-500: #777982;
  --gray-100: #f5f5f4;
  --white: #ffffff;
  --line: #e8e4df;
  --shadow: 0 18px 48px rgba(18, 18, 18, 0.12);
  --radius: 8px;
  --container: min(1140px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: "Inter", "Roboto", Arial, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: var(--container);
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.711);
  box-shadow: 0 12px 32px rgba(18, 18, 18, 0.1);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 34px rgba(18, 18, 18, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  font-family: "Poppins", sans-serif;
  font-weight: 800;
}

.brand strong,
h1,
h2,
h3,
h4 {
  font-family: "Poppins", "Montserrat", sans-serif;
  line-height: 1.12;
}

.brand strong {
  display: block;
  font-size: 0.98rem;
}

.brand small {
  display: block;
  color: var(--gray-500);
  font-size: 0.78rem;
  margin-top: -2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--gray-700);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--orange);
}

.header-action,
.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.header-action {
  padding: 0 18px;
  color: var(--white);
  background: var(--black);
  white-space: nowrap;
}

.header-action:hover,
.btn:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--black);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  padding: 150px max(20px, calc((100vw - 1140px) / 2)) 42px;
}

.hero-media,
.hero-media::after {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.34) 56%, rgba(0, 0, 0, 0.12));
}

.hero-content {
  width: min(670px, 100%);
  padding-bottom: 88px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.8rem);
  letter-spacing: 0;
}

.hero-copy {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

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

.btn {
  border: 0;
  cursor: pointer;
  padding: 0 22px;
}

.btn.primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 14px 32px rgba(249, 105, 18, 0.28);
}

.btn.primary:hover {
  background: var(--orange-dark);
}

.btn.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.btn.dark {
  color: var(--white);
  background: var(--black);
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(800px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.hero-strip span {
  padding: 18px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.08);
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.center {
  text-align: center;
  margin-inline: auto;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.section-heading p:not(.eyebrow) {
  max-width: 650px;
  margin: 16px 0 0;
  color: var(--gray-700);
}

.intro-section {
  padding-bottom: 36px;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.intro-card,
.why-card,
.review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.intro-card {
  padding: 24px;
}

.intro-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.intro-card span,
.why-card p,
.review-card blockquote,
.split-copy p {
  color: var(--gray-700);
}

.collection-section {
  padding-top: 48px;
}

.category-block {
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.category-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.category-title h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.category-title a {
  color: var(--orange);
  font-weight: 900;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(18, 18, 18, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
  height: fit-content;
}

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

.product-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--gray-100);
  height: 80vh;
}

.product-card div {
  padding: 18px;
}

.product-card h4 {
  margin: 0;
  font-size: 1.08rem;
}

.product-card p {
  margin: 6px 0 14px;
  color: var(--gray-700);
}

.product-card a {
  color: var(--orange);
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
  width: var(--container);
  margin: 0 auto;
  padding: 76px 0 92px;
}

.split-image {
  overflow: hidden;
  border-radius: var(--radius);
}

.split-image img {
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
}

.split-copy h2 {
  margin-bottom: 20px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.stats span {
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--gray-700);
  background: var(--gray-100);
}

.stats strong {
  display: block;
  color: var(--black);
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
}

.why-section,
.review-section {
  width: 100%;
  padding-inline: max(20px, calc((100vw - 1140px) / 2));
  background: var(--gray-100);
}

.why-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.why-card {
  padding: 24px;
}

.why-card span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--orange);
  font-family: "Poppins", sans-serif;
  font-weight: 800;
}

.why-card h3 {
  margin: 0 0 10px;
  font-size: 1.16rem;
}

.why-card p {
  margin: 0;
}

.review-section {
  background: var(--white);
}

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

.review-card {
  margin: 0;
  padding: 26px;
  box-shadow: 0 12px 34px rgba(18, 18, 18, 0.05);
}

.review-card blockquote {
  margin: 0 0 18px;
  font-size: 1.03rem;
}

.review-card figcaption {
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 24px;
  width: var(--container);
  margin: 0 auto;
  padding: 92px 0;
}

.contact-content {
  padding-right: 18px;
}

.contact-content h2 {
  margin-bottom: 18px;
}

.contact-content p {
  margin: 8px 0;
  color: var(--gray-700);
}

.inquiry-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.inquiry-form label {
  display: grid;
  gap: 7px;
  color: var(--gray-700);
  font-size: 0.92rem;
  font-weight: 800;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--black);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 105, 18, 0.12);
}

.map-wrap {
  grid-column: 1 / -1;
  overflow: hidden;
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.location-note {
  display: grid;
  min-height: 180px;
  place-items: center;
  padding: 28px;
  text-align: center;
  background: var(--gray-100);
}

.location-note p {
  max-width: 420px;
  margin: 0;
  color: var(--gray-700);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: var(--container);
  margin: 0 auto;
  padding: 26px 0 40px;
  color: var(--gray-700);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--orange);
  font-weight: 900;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  color: var(--white);
  background: #1fa855;
  box-shadow: 0 16px 34px rgba(31, 168, 85, 0.34);
  font-weight: 900;
}

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

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

@media (max-width: 920px) {
  .site-header {
    width: calc(100% - 28px);
  }

  .nav-toggle {
    display: block;
    z-index: 22;
  }

  .nav-toggle.is-open span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-toggle.is-open span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 82px 14px auto;
    display: grid;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 12px;
  }

  .header-action {
    display: none;
  }

  .intro-grid,
  .product-grid,
  .why-grid,
  .review-grid,
  .contact-section,
  .split-section {
    grid-template-columns: 1fr 1fr;
  }

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

  .contact-content,
  .map-wrap {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 28px, 1140px);
  }

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

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 90vh;
    padding-top: 128px;
    padding-bottom: 28px;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.82));
  }

  .hero-content {
    padding-bottom: 34px;
  }

  .hero h1 {
    font-size: 3.05rem;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .hero-strip,
  .intro-grid,
  .product-grid,
  .why-grid,
  .review-grid,
  .contact-section,
  .split-section,
  .stats {
    grid-template-columns: 1fr;
  }

  .hero-strip span {
    padding: 13px 16px;
  }

  .section,
  .split-section,
  .contact-section {
    padding: 64px 0;
  }

  .intro-section {
    padding-bottom: 22px;
  }

  .category-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-card img {
    aspect-ratio: 1.2 / 1;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding: 0 18px;
  }
}

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

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