:root {
  --bg: #f8f5ef;
  --panel: rgba(255, 255, 255, 0.76);
  --panel-strong: #ffffff;
  --text: #101820;
  --muted: #5e6b7a;
  --line: rgba(17, 24, 39, 0.12);
  --orange: #d86f13;
  --blue: #244f9e;
  --stone: #8a8174;
  --cream: #fffaf1;
  --shadow: 0 24px 70px rgba(37, 45, 58, 0.13);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: #ede4d7;
  background-image:
    linear-gradient(180deg, rgba(255, 252, 245, 0.66), rgba(247, 240, 229, 0.72) 42%, rgba(232, 222, 207, 0.76)),
    radial-gradient(circle at 8% 12%, rgba(36, 79, 158, 0.16), transparent 28rem),
    radial-gradient(circle at 92% 18%, rgba(216, 111, 19, 0.16), transparent 30rem),
    url("image/kota stone.png.jpg");
  background-position: center, left top, right top, center top;
  background-size: auto, auto, auto, cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-blend-mode: normal, normal, normal, multiply;
  color: var(--text);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

main,
section {
  max-width: 100%;
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  background: #f7f3eb;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.brand-logo,
.loader-logo {
  display: inline-grid;
  width: 210px;
  height: 82px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  box-shadow: none;
}

.loader-logo {
  width: 260px;
  height: 118px;
  animation: pulseStone 1.2s ease-in-out infinite alternate;
}

@keyframes pulseStone {
  from { transform: scale(0.96) rotateX(0deg); }
  to { transform: scale(1.04) rotateX(18deg); }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 250, 241, 0.78);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-color: var(--line);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  min-height: 82px;
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(17, 24, 39, 0.84);
  font-size: 1rem;
  font-weight: 900;
}

.nav-links a {
  position: relative;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: color 0.24s ease, background 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}

.nav-links a::after {
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 0;
  height: 3px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  border-color: rgba(216, 111, 19, 0.18);
  background: rgba(255, 255, 255, 0.58);
  color: var(--text);
  transform: translateY(-1px);
}

.nav-links a:hover::after {
  width: calc(100% - 24px);
}

.nav-links a[aria-current="page"] {
  color: var(--text);
  border-color: rgba(36, 79, 158, 0.16);
  background: rgba(255, 255, 255, 0.64);
}

.nav-links a[aria-current="page"]::after {
  width: calc(100% - 24px);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 7px;
  font-weight: 800;
  font-size: 0.9rem;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.nav-cta {
  min-height: 48px;
  width: 48px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.nav-cta img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(24, 198, 90, 0.32));
}

.btn-primary {
  background: linear-gradient(135deg, #e27717, #ffb35d);
  color: #111;
  box-shadow: 0 18px 42px rgba(216, 111, 19, 0.24);
}

.btn-secondary {
  border: 1px solid rgba(17, 24, 39, 0.18);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  border-color: rgba(47, 111, 255, 0.55);
  background: rgba(47, 111, 255, 0.16);
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-3px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(17, 24, 39, 0.07);
}

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

.section {
  position: relative;
  padding: 110px 0;
}

.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 104px 0 56px;
  overflow: hidden;
  background: #111827;
}

.hero-media {
  position: absolute;
  inset: 0;
  transform: scale(1.01);
}

.hero-media span {
  position: absolute;
  inset: 0;
  background-position: center right;
  background-size: cover;
  opacity: 0;
  animation: heroSlider 25s infinite;
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.03);
}

.hero-media span:nth-child(1) {
  animation-delay: 0s;
}

.hero-media span:nth-child(2) {
  animation-delay: 5s;
}

.hero-media span:nth-child(3) {
  animation-delay: 10s;
}

.hero-media span:nth-child(4) {
  animation-delay: 15s;
}

.hero-media span:nth-child(5) {
  animation-delay: 20s;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 245, 239, 0.78) 0%, rgba(248, 245, 239, 0.58) 37%, rgba(248, 245, 239, 0.18) 58%, rgba(16, 24, 32, 0.14) 100%),
    linear-gradient(180deg, rgba(16, 24, 32, 0.26) 0%, transparent 22%, transparent 72%, rgba(248, 245, 239, 0.96) 100%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  content: "";
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
}

@keyframes heroSlider {
  0% {
    opacity: 0;
    transform: scale(1.06);
  }
  6%,
  20% {
    opacity: 1;
  }
  26%,
  100% {
    opacity: 0;
    transform: scale(1.01);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media span {
    animation: none;
  }

  .hero-media span:first-child {
    opacity: 1;
  }
}

.hero-grid,
.about-grid,
.contact-grid,
.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 42px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  align-items: center;
}

.hero-grid > *,
.about-grid > *,
.contact-grid > *,
.footer-grid > * {
  min-width: 0;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.52fr);
  gap: clamp(28px, 5vw, 78px);
  z-index: 2;
}

.hero-copy {
  position: relative;
  max-width: 760px;
  padding: clamp(18px, 2.4vw, 28px) 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-copy::before {
  display: none;
}

.about-grid,
.contact-grid {
  grid-template-columns: 1.18fr 0.82fr;
}

.contact-grid {
  align-items: stretch;
}

.about-grid {
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
  align-items: stretch;
  gap: clamp(28px, 4vw, 54px);
}

.footer-grid {
  grid-template-columns: 1.4fr 0.6fr 0.6fr;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(216, 111, 19, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 12px 28px rgba(216, 111, 19, 0.1);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  backdrop-filter: blur(12px) saturate(1.15);
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-optical-sizing: auto;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 5.1vw, 5rem);
  font-weight: 800;
  text-shadow: 0 10px 26px rgba(255, 255, 255, 0.34);
  overflow-wrap: anywhere;
}

h1 span {
  display: block;
}

.hero-title-accent {
  color: transparent;
  background: linear-gradient(90deg, #142235 0%, #244f9e 48%, #d36d10 92%);
  -webkit-background-clip: text;
  background-clip: text;
}

h2 {
  max-width: 1040px;
  margin-bottom: 0;
  font-size: clamp(2.3rem, 4.7vw, 4.1rem);
  font-weight: 700;
  line-height: 1.04;
}

.hero-subtitle {
  max-width: 650px;
  margin-bottom: 14px;
  color: #1f2937;
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  font-weight: 800;
  letter-spacing: 0;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(36, 79, 158, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  color: #344154;
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(37, 45, 58, 0.08);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-panel,
.contact-panel,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 250, 241, 0.66)),
    linear-gradient(135deg, rgba(36, 79, 158, 0.06), rgba(216, 111, 19, 0.05));
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 16px;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.42);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.26), rgba(255, 250, 241, 0.12)),
    linear-gradient(135deg, rgba(36, 79, 158, 0.08), rgba(216, 111, 19, 0.06));
  box-shadow: 0 26px 70px rgba(16, 24, 32, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(8px) saturate(1.16);
  transform: none;
}

.hero-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 34%),
    radial-gradient(circle at top right, rgba(36, 79, 158, 0.18), transparent 16rem);
  pointer-events: none;
}

.hero-panel div {
  position: relative;
  min-height: 100px;
  padding: 18px 20px 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.42), rgba(255, 250, 241, 0.18));
  box-shadow: 0 16px 32px rgba(37, 45, 58, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px) saturate(1.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-panel div::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  content: "";
  background: linear-gradient(180deg, var(--orange), var(--blue));
}

.hero-panel div::after {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 54px;
  height: 54px;
  content: "";
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(216, 111, 19, 0.16), transparent 64%);
}

.hero-panel div:hover {
  transform: translateX(-4px);
  box-shadow: 0 22px 44px rgba(37, 45, 58, 0.13);
}

.metric {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-panel p {
  max-width: 240px;
  font-size: 0.88rem;
  line-height: 1.42;
}

.hero-panel p,
.feature-card p,
.testimonial-card p,
.footer p {
  color: var(--muted);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 2;
  width: 28px;
  height: 48px;
  border: 1px solid rgba(17, 24, 39, 0.32);
  border-radius: 20px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 4px;
  height: 9px;
  border-radius: 8px;
  background: var(--text);
  transform: translateX(-50%);
  animation: scrollDot 1.6s infinite;
}

@keyframes scrollDot {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 18px); }
}

.page-hero {
  min-height: 72svh;
  display: grid;
  align-items: end;
  padding: 150px 0 82px;
  overflow: hidden;
  background: #101820;
}

.page-hero-media {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1.02);
}

.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.78), rgba(16, 24, 32, 0.42) 45%, rgba(16, 24, 32, 0.18)),
    linear-gradient(180deg, rgba(16, 24, 32, 0.3), transparent 32%, rgba(248, 245, 239, 0.96));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  color: #fff;
}

.page-hero-content .eyebrow {
  color: #ffad57;
}

.page-hero-content h1 {
  max-width: 860px;
  color: #fff;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
}

.page-hero-content p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.55vw, 1.24rem);
  line-height: 1.65;
}

.section-heading {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 46px;
}

.about {
  padding-top: 96px;
  padding-bottom: 60px;
}

.about .section-heading {
  margin-bottom: 34px;
}

.about .section-heading .eyebrow {
  margin-bottom: 16px;
}

.about .section-heading h2 {
  max-width: 980px;
  font-size: clamp(2.4rem, 4.5vw, 4.9rem);
  line-height: 0.98;
}

.about-image {
  position: relative;
  min-height: 0;
  aspect-ratio: 1.16;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.14);
  border-radius: 8px;
  background: #111827;
  box-shadow: 0 24px 60px rgba(37, 45, 58, 0.18);
}

.about-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(246, 243, 237, 0.02), rgba(16, 24, 32, 0.16)),
    linear-gradient(135deg, rgba(216, 111, 19, 0.08), transparent 42%);
  pointer-events: none;
}

.about-image-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  animation: aboutImageSlider 25s infinite;
}

.about-image-slide:nth-child(1) {
  animation-delay: 0s;
}

.about-image-slide:nth-child(2) {
  animation-delay: 5s;
}

.about-image-slide:nth-child(3) {
  animation-delay: 10s;
}

.about-image-slide:nth-child(4) {
  animation-delay: 15s;
}

.about-image-slide:nth-child(5) {
  animation-delay: 20s;
}

@keyframes aboutImageSlider {
  0% {
    opacity: 0;
    transform: scale(1.08);
  }
  6%,
  20% {
    opacity: 1;
  }
  26%,
  100% {
    opacity: 0;
    transform: scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-image-slide {
    animation: none;
  }

  .about-image-slide:first-child {
    opacity: 1;
  }
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(20px, 2.8vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(255, 250, 241, 0.58)),
    linear-gradient(135deg, rgba(36, 79, 158, 0.05), rgba(216, 111, 19, 0.05));
  box-shadow: 0 22px 58px rgba(37, 45, 58, 0.12);
  backdrop-filter: blur(8px);
}

.about-content p {
  color: #465363;
  font-size: clamp(0.94rem, 1.08vw, 1.04rem);
  line-height: 1.72;
}

.about-content h3 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
  font-weight: 800;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.counter-card,
.feature-card,
.testimonial-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 241, 0.72));
  box-shadow: 0 16px 44px rgba(38, 45, 58, 0.08);
}

.counter-card {
  --accent: var(--orange);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 112px;
  padding: 18px 16px 16px;
  min-width: 0;
  border-color: rgba(17, 24, 39, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 241, 0.84)),
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 12%, transparent), transparent 46%);
  box-shadow: 0 18px 42px rgba(37, 45, 58, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.counter-card:nth-child(2) {
  --accent: var(--blue);
}

.counter-card:nth-child(3) {
  --accent: #0f8a7a;
}

.counter-card:nth-child(4) {
  --accent: #8a5a28;
}

.counter-card:nth-child(5) {
  --accent: #b13f22;
}

.counter-card:nth-child(6) {
  --accent: #6f4bb8;
}

.counter-card::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--accent), color-mix(in srgb, var(--accent) 26%, transparent));
}

.counter-card::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), transparent 34%),
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(17, 24, 39, 0.025) 18px 19px);
  opacity: 0.7;
  pointer-events: none;
}

.counter-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent) 34%, transparent);
  box-shadow: 0 24px 58px rgba(37, 45, 58, 0.16);
}

.counter-icon {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent);
  z-index: 1;
  opacity: 0.16;
  box-shadow: none;
}

.counter-card strong,
.counter-card span {
  position: relative;
  z-index: 1;
  color: var(--text);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 900;
  line-height: 1.05;
}

.counter-card p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.5;
}

.products,
.gallery,
.testimonials {
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.42), rgba(255, 250, 241, 0.16));
}

.products {
  padding-top: 60px;
  padding-bottom: 56px;
}

.products .section-heading h2 {
  max-width: 1120px;
  font-size: clamp(2.15rem, 4.15vw, 3.85rem);
  line-height: 1.08;
}

.quality {
  padding-top: 56px;
}

.testimonials {
  padding-bottom: 56px;
}

.contact {
  padding-top: 56px;
}

.product-grid,
.feature-grid,
.masonry,
.timeline,
.testimonial-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.product-grid {
  counter-reset: product;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  counter-increment: product;
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 14px;
  background:
    linear-gradient(145deg, #ffffff, #fff6e9);
  box-shadow: 0 22px 54px rgba(37, 45, 58, 0.14);
  isolation: isolate;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.product-card::before {
  display: none;
  content: none;
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(16, 24, 32, 0.68);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 28px rgba(16, 24, 32, 0.13);
}

.product-image-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.product-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-position: center;
  transition: transform 0.7s ease, filter 0.7s ease, opacity 0.32s ease;
}

.product-image-slider img {
  opacity: 0;
}

.product-image-slider img.is-active {
  opacity: 1;
}

.product-card img.is-changing {
  opacity: 0.28;
  transform: scale(1.03);
}

.product-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(16, 24, 32, 0.02) 0%, rgba(16, 24, 32, 0.04) 42%, rgba(16, 24, 32, 0.34) 72%, rgba(16, 24, 32, 0.78) 100%),
    linear-gradient(135deg, rgba(216, 111, 19, 0.1), transparent 42%);
  pointer-events: none;
}

.product-slider-controls {
  position: absolute;
  top: 46%;
  left: 14px;
  right: 14px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.product-slide-btn {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(9, 13, 20, 0.48);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  pointer-events: auto;
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  transform: translateY(8px);
  transition: opacity 0.24s ease, transform 0.24s ease, background 0.24s ease;
}

.product-slide-btn svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.6;
}

.product-card:hover .product-slide-btn,
.product-card:focus-within .product-slide-btn,
.product-card.has-slider .product-slide-btn {
  opacity: 1;
  transform: translateY(0);
}

.product-slide-btn:hover {
  background: rgba(216, 111, 19, 0.9);
}

.product-slide-dots {
  display: none;
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  gap: 6px;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(9, 13, 20, 0.42);
  backdrop-filter: blur(10px);
}

.product-slide-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: width 0.22s ease, background 0.22s ease;
}

.product-slide-dots span.is-active {
  width: 16px;
  border-radius: 999px;
  background: #ff9a32;
}

.product-card .product-info::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  content: "";
  border-right: 1px solid rgba(255, 173, 87, 0.55);
  border-bottom: 1px solid rgba(255, 173, 87, 0.55);
  opacity: 0.7;
  pointer-events: none;
}

.product-info {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  min-height: 132px;
  padding: 56px 20px 20px;
  background:
    linear-gradient(180deg, transparent, rgba(9, 13, 20, 0.48) 30%, rgba(9, 13, 20, 0.88));
  transition: transform 0.35s ease, background 0.35s ease;
}

.product-info::before {
  position: absolute;
  top: 24px;
  left: 20px;
  width: 46px;
  height: 3px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), #ffbd76);
}

.product-info h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 800;
}

.product-info a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffad57;
  font-size: 0.74rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.product-info a:hover {
  background: #ff9a32;
  color: #111827;
  transform: translateY(-2px);
}

.product-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.05);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 111, 19, 0.32);
  box-shadow: 0 30px 70px rgba(37, 45, 58, 0.22);
}

.product-card:hover .product-info {
  transform: translateY(-4px);
}

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

.feature-card {
  min-height: 216px;
  padding: 28px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.feature-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  color: var(--orange);
}

.feature-card h3 {
  font-size: 1.18rem;
  font-weight: 800;
}

.feature-card:hover {
  transform: translateY(-7px);
  border-color: rgba(47, 111, 255, 0.55);
  background: #ffffff;
}

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

.masonry figure {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: zoom-in;
}

.masonry img {
  transition: transform 0.65s ease;
}

.masonry video {
  transition: transform 0.65s ease;
}

.masonry figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(7, 9, 13, 0.62);
  color: #ffffff;
  font-weight: 800;
  backdrop-filter: blur(12px);
  pointer-events: none;
}

.masonry figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.66));
  pointer-events: none;
}

.masonry figure:hover img {
  transform: scale(1.08);
}

.masonry figure:hover video {
  transform: scale(1.08);
}

.gallery-more,
.products-more {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 26px auto 0;
  clear: both;
}

.gallery-more[hidden] {
  display: none;
}

.gallery-more .btn,
.products-more .btn {
  width: auto;
  min-width: 170px;
  border-color: rgba(216, 111, 19, 0.28);
  background: linear-gradient(135deg, #ffffff, #fff3e4);
  color: #172235;
  box-shadow: 0 16px 34px rgba(37, 45, 58, 0.12);
}

.gallery-more .btn:hover,
.products-more .btn:hover {
  border-color: rgba(216, 111, 19, 0.5);
  background: linear-gradient(135deg, #ff9a32, #ffbd76);
  color: #111827;
}

.products .products-more {
  position: relative;
  left: auto;
  right: auto;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.muted {
  color: var(--muted);
  font-weight: 600;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(7, 9, 13, 0.88);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-dialog {
  position: relative;
  display: grid;
  gap: 14px;
  width: min(1120px, 100%);
}

.lightbox-image-shell {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(72svh, 760px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(16, 24, 32, 0.68);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
}

.lightbox-image {
  width: 100%;
  max-height: 78svh;
  object-fit: contain;
}

.lightbox-caption {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  text-align: center;
}

.lightbox-btn {
  position: absolute;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: background 0.24s ease, transform 0.24s ease;
}

.lightbox-btn:hover {
  background: rgba(216, 111, 19, 0.92);
  transform: translateY(-2px);
}

.lightbox-btn svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.6;
}

.lightbox-close {
  top: -18px;
  right: -18px;
}

.lightbox-prev {
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  transform: translateY(-50%) translateY(-2px);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.timeline::before {
  position: absolute;
  top: 48px;
  left: 7%;
  right: 7%;
  height: 3px;
  content: "";
  background:
    linear-gradient(90deg, rgba(216, 111, 19, 0.25), rgba(36, 79, 158, 0.34)),
    repeating-linear-gradient(90deg, transparent 0 22px, rgba(255, 255, 255, 0.7) 22px 28px);
  border-radius: 999px;
}

.timeline div {
  position: relative;
  z-index: 1;
  min-height: 250px;
  padding: 84px 22px 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 241, 0.74));
  box-shadow: 0 16px 44px rgba(38, 45, 58, 0.08);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.timeline div::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at top left, rgba(216, 111, 19, 0.12), transparent 9rem),
    radial-gradient(circle at bottom right, rgba(36, 79, 158, 0.1), transparent 9rem);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.timeline div:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 111, 19, 0.26);
  box-shadow: 0 24px 54px rgba(37, 45, 58, 0.14);
}

.timeline div:hover::before {
  opacity: 1;
}

.timeline span {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 52px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 244, 228, 0.78));
  border: 1px solid rgba(216, 111, 19, 0.22);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(216, 111, 19, 0.16);
}

.timeline i,
.timeline svg {
  position: relative;
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  color: var(--blue);
  stroke-width: 1.8;
}

.timeline h3,
.timeline p {
  position: relative;
  z-index: 1;
}

.timeline h3 {
  margin-bottom: 14px;
  font-size: 1.08rem;
  font-weight: 800;
}

.timeline p {
  color: var(--muted);
  line-height: 1.55;
}

.testimonial-shell {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: slideReviews 32s linear infinite;
}

.testimonial-track:hover {
  animation-play-state: paused;
}

.testimonial-track.is-static {
  width: 100%;
  animation: none;
}

.testimonial-card {
  width: min(380px, calc(100vw - 48px));
  padding: 28px;
}

.stars {
  margin-bottom: 18px;
  color: #ffb75d;
  letter-spacing: 0.1em;
}

@keyframes slideReviews {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}

.contact-panel,
.contact-form {
  height: 100%;
  padding: 28px;
}

.contact-panel {
  display: flex;
  flex-direction: column;
}

.contact-panel a,
.contact-panel p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #263241;
  font-weight: 700;
}

.contact-panel svg {
  flex: 0 0 auto;
  color: var(--orange);
}

.map-box {
  flex: 1;
  min-height: 290px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.15) contrast(1.02);
}

.contact-form {
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: #263241;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(17, 24, 39, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font: inherit;
  padding: 14px 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

select option {
  color: #111;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(240, 138, 36, 0.12);
}

textarea {
  resize: vertical;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: #4f5664;
  font-weight: 700;
}

.footer {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, #ffffff, #f8f5ef);
  padding: 56px 0 24px;
}

.footer-grid {
  grid-template-columns: 1.25fr 0.48fr 0.72fr 0.62fr;
  align-items: start;
}

.footer .brand-logo {
  width: 320px;
  height: 118px;
}

.footer h3 {
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
  transition: color 0.22s ease, transform 0.22s ease;
}

.footer-links a:hover {
  color: var(--orange);
  transform: translateX(3px);
}

.footer-products a {
  font-size: 0.88rem;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 245px;
}

.socials a,
.whatsapp-float {
  display: grid;
  place-items: center;
  width: 46px;
  aspect-ratio: 1;
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 241, 0.72));
  color: var(--blue);
  box-shadow: 0 12px 26px rgba(36, 79, 158, 0.12);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, color 0.24s ease, box-shadow 0.24s ease;
}

.socials a:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 111, 19, 0.35);
  background:
    linear-gradient(145deg, #ffffff, #fff4e4);
  color: var(--orange);
  box-shadow: 0 18px 34px rgba(216, 111, 19, 0.16);
}

.socials a svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.1;
}

.social-brand {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: currentColor;
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1;
}

.social-facebook {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 0.85;
  transform: translateY(1px);
}

.social-youtube::before {
  width: 0;
  height: 0;
  content: "";
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid currentColor;
  transform: translateX(2px);
}

.social-instagram {
  position: relative;
  border: 2px solid currentColor;
  border-radius: 7px;
}

.social-instagram::before {
  width: 7px;
  height: 7px;
  content: "";
  border: 2px solid currentColor;
  border-radius: 50%;
}

.social-instagram::after {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 3px;
  height: 3px;
  content: "";
  border-radius: 50%;
  background: currentColor;
}

.copyright {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  width: 58px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  box-shadow: none;
  animation: whatsappFloat 2.8s ease-in-out infinite;
}

.whatsapp-float img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(24, 198, 90, 0.36));
  transition: transform 0.25s ease, filter 0.25s ease;
}

.whatsapp-float::before {
  position: absolute;
  inset: 8px;
  z-index: -1;
  content: "";
  border-radius: 50%;
  background: rgba(24, 198, 90, 0.28);
  animation: whatsappPulse 2.2s ease-out infinite;
}

.whatsapp-float:hover {
  animation-play-state: paused;
}

.whatsapp-float:hover img {
  transform: scale(1.08) rotate(-4deg);
  filter: drop-shadow(0 18px 30px rgba(24, 198, 90, 0.5));
}

@keyframes whatsappFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes whatsappPulse {
  0% {
    opacity: 0.55;
    transform: scale(0.85);
  }
  100% {
    opacity: 0;
    transform: scale(1.85);
  }
}

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

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

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 82px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-links a {
    padding: 16px;
  }

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

  .nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-cta {
    display: none;
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    transform: none;
  }

  .counter-grid,
  .product-grid,
  .feature-grid,
  .masonry {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .timeline::before {
    top: 28px;
    bottom: 28px;
    left: 47px;
    right: auto;
    width: 3px;
    height: auto;
  }

  .timeline div {
    min-height: auto;
    padding: 28px 22px 28px 92px;
  }

  .timeline span {
    top: 26px;
    left: 22px;
    width: 50px;
  }

  .timeline i,
  .timeline svg {
    margin-bottom: 14px;
  }
}

@media (max-width: 680px) {
  .navbar {
    width: calc(100% - 24px);
    min-height: 66px;
  }

  .brand-logo {
    width: 150px;
    height: 48px;
  }

  .nav-links {
    top: 66px;
  }

  .section {
    padding: 82px 0;
  }

  .hero {
    min-height: 100svh;
    padding: 104px 0 64px;
    place-items: start center;
  }

  .page-hero {
    min-height: 78svh;
    padding: 122px 0 64px;
  }

  .page-hero-content p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 13.2vw, 3.55rem);
    line-height: 1.02;
  }

  .hero-title-accent {
    font-size: 0.86em;
  }

  .hero-subtitle {
    max-width: 100%;
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .hero-grid {
    width: calc(100% - 28px);
    gap: 30px;
    padding-bottom: 40px;
    overflow: hidden;
  }

  .hero .eyebrow {
    max-width: 100%;
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.62rem;
    white-space: normal;
  }

  .hero-panel,
  .hero-panel div {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy {
    width: auto;
    max-width: none;
    padding: 24px 18px;
  }

  .hero-copy::before {
    display: none;
  }

  .hero-proof {
    margin-bottom: 24px;
  }

  .hero-panel {
    margin: 0;
  }

  .hero-panel p,
  .hero-subtitle {
    hyphens: auto;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.1rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .hero-panel,
  .contact-panel,
  .contact-form {
    padding: 18px;
  }

  .about-image {
    min-height: 380px;
  }

  .counter-grid,
  .product-grid,
  .feature-grid,
  .masonry {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 420px;
  }

  .product-slider-controls {
    left: 12px;
    right: 12px;
  }

  .product-slide-btn {
    width: 38px;
    height: 38px;
    opacity: 1;
    transform: none;
  }

  .product-info {
    inset: auto 0 0;
    min-height: 140px;
    padding: 58px 22px 22px;
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox-image-shell {
    min-height: 58svh;
  }

  .lightbox-btn {
    width: 42px;
    height: 42px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .copyright {
    flex-direction: column;
  }
}
