:root {
  --bg: #edeae3;
  --bg-deep: #0c0e13;
  --bg-elevated: rgba(255, 253, 248, 0.88);
  --ink: #10131a;
  --ink-soft: #3d4450;
  --muted: #6b7280;
  --line: rgba(18, 20, 26, 0.12);
  --brand-yellow: #f5c400;
  --brand-orange: #e85a16;
  --brand-dark: #0d0f14;
  --whatsapp: #1faa4b;
  --shadow: 0 24px 60px rgba(8, 10, 14, 0.18);
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Sora", system-ui, sans-serif;
  --max: 1160px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: 3px;
  background: transparent;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--brand-yellow), var(--brand-orange));
  transform-origin: left;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  animation: orb-drift 14s ease-in-out infinite alternate;
}

.ambient__orb--a {
  width: 42vw;
  height: 42vw;
  top: -8%;
  left: -10%;
  background: radial-gradient(circle, rgba(245, 196, 0, 0.55), transparent 70%);
}

.ambient__orb--b {
  width: 36vw;
  height: 36vw;
  right: -8%;
  top: 35%;
  background: radial-gradient(circle, rgba(232, 90, 22, 0.35), transparent 70%);
  animation-delay: -4s;
}

.ambient__grain {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  background: rgba(8, 10, 14, 0.55);
  backdrop-filter: blur(16px) saturate(1.15);
  border-bottom: 1px solid transparent;
  color: #fff;
  transition:
    border-color 0.35s ease,
    background 0.35s ease,
    padding 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease;
}

.site-header .brand-mark__text {
  color: #fff;
  transition: color 0.35s ease;
}

.site-header .nav a {
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.35s ease;
}

.site-header .nav a:hover {
  color: #fff;
}

.site-header .nav a::after {
  background: var(--brand-yellow);
}

.site-header.is-scrolled {
  color: var(--ink);
  border-bottom-color: var(--line);
  background: rgba(237, 234, 227, 0.92);
  padding-block: 0.65rem;
  box-shadow: 0 8px 24px rgba(8, 10, 14, 0.06);
}

.site-header.is-scrolled .brand-mark__text {
  color: var(--ink);
}

.site-header.is-scrolled .nav a {
  color: var(--ink-soft);
}

.site-header.is-scrolled .nav a:hover {
  color: var(--ink);
}

.site-header.is-scrolled .nav a::after {
  background: var(--brand-orange);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  font-weight: 700;
}

.brand-mark__icon {
  display: grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  flex-shrink: 0;
  background: var(--brand-yellow);
  color: var(--brand-dark);
  transition: transform 0.35s var(--ease-out);
}

.brand-mark__icon svg {
  display: block;
}

.brand-mark:hover .brand-mark__icon {
  transform: rotate(-12deg) scale(1.08);
}

.brand-mark__text {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 4.2vw, 1.4rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-mark__sub {
  display: none;
}

.header__end {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
}

.nav {
  display: none;
}

.nav a {
  position: relative;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}

.nav a:hover::after {
  transform: scaleX(1);
}

.nav__whatsapp {
  display: none;
}

.nav-toggle {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: inherit;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled .nav-toggle {
  border-color: var(--line);
  background: rgba(18, 20, 26, 0.04);
  color: var(--ink);
}

.nav-toggle__bars {
  display: grid;
  gap: 5px;
  width: 1.15rem;
}

.nav-toggle__bars i {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  transition: transform 0.3s var(--ease-out), opacity 0.2s ease;
}

.site-header.nav-open .nav-toggle__bars i:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .nav-toggle__bars i:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle__bars i:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 35;
  background: rgba(8, 10, 14, 0.55);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-backdrop.is-visible {
  opacity: 1;
}

body.nav-locked {
  overflow: hidden;
}

/* Menu mobile (drawer) */
@media (max-width: 719px) {
  .btn--header-cta {
    display: none;
  }

  .nav {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 45;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    width: min(86vw, 320px);
    height: 100dvh;
    padding: 5.2rem 1.25rem 1.5rem;
    background: linear-gradient(165deg, #161922, #0d0f14 55%, #12151c);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.35);
    transform: translateX(104%);
    transition: transform 0.35s var(--ease-out);
  }

  .site-header.nav-open .nav {
    transform: translateX(0);
  }

  .nav a:not(.btn) {
    padding: 0.9rem 0.35rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav a:not(.btn)::after {
    display: none;
  }

  .nav a:not(.btn):hover {
    color: var(--brand-yellow);
  }

  .nav__whatsapp {
    display: inline-flex;
    margin-top: 1.1rem;
    width: 100%;
  }

  .site-header.is-scrolled.nav-open .nav a:not(.btn) {
    color: rgba(255, 255, 255, 0.9);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.85rem;
  padding: 0.7rem 1.25rem;
  border: 1px solid transparent;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), background 0.2s ease, color 0.2s ease,
    border-color 0.2s ease, box-shadow 0.25s ease;
}

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

.btn--sm {
  min-height: 2.35rem;
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.contact .btn--ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.btn--whatsapp {
  position: relative;
  overflow: hidden;
  background: var(--whatsapp);
  color: #fff;
}

.btn--whatsapp:hover {
  background: #189640;
}

.btn--header-cta {
  min-height: 2.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  animation: cta-glow 2.4s ease-in-out infinite;
}

.btn--hero-cta {
  min-height: 3.15rem;
  padding: 0.85rem 1.45rem;
  font-size: 1rem;
  box-shadow: 0 12px 28px rgba(31, 170, 75, 0.38);
  animation: cta-glow 2.4s ease-in-out infinite;
}

.btn__pulse {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.btn__pulse::after {
  content: "";
  position: absolute;
  inset: -2px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  opacity: 0;
  animation: pulse-ring 2s ease-out infinite;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.08);
  animation: hero-zoom 18s ease-out forwards;
  will-change: transform;
  filter: brightness(1.28) contrast(1.04) saturate(1.05);
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 10, 14, 0.1) 0%, rgba(8, 10, 14, 0.28) 45%, rgba(8, 10, 14, 0.72) 100%),
    linear-gradient(90deg, rgba(8, 10, 14, 0.38) 0%, rgba(8, 10, 14, 0.1) 55%, transparent 100%);
}

.hero__sheen {
  position: absolute;
  inset: -20% 40% auto -20%;
  height: 60%;
  background: linear-gradient(115deg, transparent, rgba(245, 196, 0, 0.18), transparent);
  transform: rotate(12deg);
  animation: sheen 7s ease-in-out infinite;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 7.5rem 0 5.5rem;
}

.hero__seller {
  margin: 0 0 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-yellow);
}

.hero__brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 9vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  max-width: 16ch;
}

.hero__brand .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotate(6deg);
  animation: char-in 0.7s var(--ease-out) forwards;
}

.hero__headline {
  margin: 0.55rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.5vw, 2.35rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.hero__lead {
  margin: 1rem 0 0;
  max-width: 34rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.84);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.hero__phone {
  margin: 1rem 0 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  z-index: 2;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__scroll i {
  width: 1px;
  height: 2.4rem;
  background: linear-gradient(180deg, var(--brand-yellow), transparent);
  animation: scroll-line 1.6s ease-in-out infinite;
}

.attention-bar {
  background: var(--brand-dark);
  color: #fff;
  padding: 1.15rem 0;
  border-block: 3px solid var(--brand-yellow);
}

.attention-bar__inner {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: flex-start;
}

.attention-bar p {
  margin: 0;
  max-width: 42rem;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.9);
}

.attention-bar strong {
  color: var(--brand-yellow);
}

.showcase {
  padding: 4.5rem 0 2rem;
  background:
    linear-gradient(180deg, rgba(12, 14, 19, 0.03), transparent 30%),
    radial-gradient(800px 300px at 50% 0%, rgba(245, 196, 0, 0.12), transparent 70%);
}

.showcase__head {
  margin-bottom: 1.75rem;
}

.showcase__head h2 {
  margin: 0.2rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.95;
}

.showcase__head p {
  margin: 0.75rem 0 0;
  max-width: 36rem;
  color: var(--ink-soft);
}

.showcase__head a {
  color: var(--brand-orange);
  font-weight: 600;
}

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee 42s linear infinite;
  padding: 0.5rem 0 1.5rem;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__item {
  margin: 0;
  width: min(72vw, 280px);
  padding: 1.1rem 1.1rem 0.9rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease-out);
}

.marquee__item:hover {
  transform: translateY(-8px) scale(1.02);
}

.marquee__item img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.marquee__item figcaption {
  margin-top: 0.65rem;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 1.05rem;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section__head {
  max-width: 38rem;
  margin-bottom: 2.25rem;
}

.section__head h2,
.about__copy h2,
.contact__intro h2,
.showcase__head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section__head p,
.about__copy p,
.contact__intro p {
  margin: 0.85rem 0 0;
  color: var(--ink-soft);
}

.eyebrow {
  margin: 0 0 0.4rem !important;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-orange);
}

.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.category {
  position: relative;
  display: block;
  min-height: 240px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  isolation: isolate;
}

.category img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.category__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  gap: 0.2rem;
  padding: 1.25rem;
  background: linear-gradient(180deg, transparent 20%, rgba(8, 10, 14, 0.88));
}

.category__overlay span {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  color: var(--brand-yellow);
}

.category__overlay h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.category__overlay p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

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

.product-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.filter {
  min-height: 2.35rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--line);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.filter:hover,
.filter.is-active {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
  transform: translateY(-1px);
}

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

.product {
  display: grid;
  gap: 0.9rem;
  padding: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  overflow: hidden;
  backdrop-filter: blur(10px);
  transform-style: preserve-3d;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease, border-color 0.35s ease;
}

.product:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(245, 196, 0, 0.45);
}

.product.is-hidden {
  display: none;
}

.product__media {
  position: relative;
  height: 190px;
  background:
    radial-gradient(circle at 50% 20%, rgba(245, 196, 0, 0.22), transparent 55%),
    linear-gradient(160deg, #f7f4ee, #e7e2d8);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.product__media::after {
  content: "";
  position: absolute;
  inset: auto -20% -40%;
  height: 70%;
  background: radial-gradient(circle, rgba(232, 90, 22, 0.18), transparent 65%);
  pointer-events: none;
}

.product__media img {
  width: min(78%, 220px);
  height: 150px;
  object-fit: contain;
  transition: transform 0.5s var(--ease-out);
  filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.18));
}

.product:hover .product__media img {
  transform: scale(1.08) translateY(-4px);
}

.product__body {
  display: grid;
  gap: 0.9rem;
  padding: 0 1.15rem 1.15rem;
}

.product__top {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: flex-start;
}

.product__brand {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-orange);
}

.product__tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.45rem;
  background: rgba(245, 196, 0, 0.22);
  color: var(--brand-dark);
}

.product h3 {
  margin: 0.2rem 0 0;
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.product__desc {
  margin: 0.45rem 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.product__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product__specs li {
  padding: 0.55rem 0.65rem;
  background: rgba(18, 20, 26, 0.045);
  font-size: 0.82rem;
}

.product__specs span {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.15rem;
}

.product__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: stretch;
  gap: 0.75rem;
  padding-top: 0.35rem;
  border-top: 1px solid var(--line);
}

.product__footer .btn {
  width: 100%;
  justify-content: center;
}

.product h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.feature {
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
  transition: transform 0.35s var(--ease-out);
}

.feature:last-child {
  border-bottom: 1px solid var(--line);
}

.feature:hover {
  transform: translateX(6px);
}

.feature__num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--brand-orange);
  margin-bottom: 0.35rem;
}

.feature h3 {
  margin: 0;
  font-size: 1.15rem;
}

.feature p {
  margin: 0.45rem 0 0;
  color: var(--ink-soft);
}

.about {
  background:
    linear-gradient(135deg, rgba(245, 196, 0, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.55), transparent);
}

.about__grid {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

.about__figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about__figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 1s var(--ease-out);
}

.about__figure:hover img {
  transform: scale(1.04);
}

.about__badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.55rem 0.8rem;
  background: rgba(13, 15, 20, 0.88);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.about__copy .btn {
  margin-top: 1.35rem;
}

.about__copy a:not(.btn) {
  color: var(--brand-orange);
  font-weight: 600;
}

.brands {
  padding: 3rem 0;
  background:
    linear-gradient(120deg, rgba(245, 196, 0, 0.12), transparent 35%),
    var(--brand-dark);
  color: #fff;
  overflow: hidden;
}

.brands__label {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.brands__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brands__list li {
  position: relative;
}

.brands__list li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.1rem;
  width: 100%;
  height: 2px;
  background: var(--brand-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}

.brands__list li:hover::after {
  transform: scaleX(1);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  background: #12141a;
}

.gallery__item--wide {
  grid-column: 1 / -1;
  min-height: 240px;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.gallery__item:hover img {
  transform: scale(1.06);
}

.gallery__item figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 1.1rem 1rem 0.9rem;
  background: linear-gradient(transparent, rgba(8, 10, 14, 0.78));
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
}

.feedback-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.feedback {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.feedback:last-child {
  border-bottom: 1px solid var(--line);
}

.feedback__stars {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 0.65rem;
  color: var(--brand-orange);
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.feedback blockquote {
  margin: 0;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.55;
}

.feedback__meta {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

@media (min-width: 720px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .gallery__item {
    min-height: 220px;
  }

  .gallery__item--wide {
    grid-column: span 2;
    min-height: 280px;
  }

  .feedback-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .feedback {
    padding: 0;
    border: 0;
    border-top: 1px solid var(--line);
    padding-top: 1.25rem;
  }

  .feedback:last-child {
    border-bottom: 0;
  }
}

.contact {
  padding-bottom: 6.5rem;
}

.contact__split {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

.contact__panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
  padding: 1.75rem 1.25rem;
  background:
    radial-gradient(600px 280px at 10% 0%, rgba(245, 196, 0, 0.2), transparent 60%),
    linear-gradient(145deg, #161922, #0d0f14 55%, #151820);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.contact__intro h2 {
  color: #fff;
}

.contact__intro p {
  color: rgba(255, 255, 255, 0.78);
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.contact__details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.contact__details li {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact__details li:last-child {
  border-bottom: 0;
}

.contact__details span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.contact__details a {
  text-decoration: none;
  font-weight: 600;
  font-size: 1.02rem;
  color: #fff;
}

.contact__details a:hover {
  color: var(--brand-yellow);
}

.map-block {
  display: flex;
  flex-direction: column;
  min-height: 0;
  margin-top: 0;
  background:
    radial-gradient(500px 220px at 15% 0%, rgba(245, 196, 0, 0.12), transparent 55%),
    linear-gradient(160deg, #161922, #0b0d12 45%, #0d0f14);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.map-block__head {
  margin: 0;
  padding: 1.15rem 1.15rem 0.85rem;
}

.map-block__head .eyebrow {
  color: var(--brand-yellow);
}

.map-block__head h2 {
  margin: 0.15rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.95;
  color: #fff;
}

.map-preview {
  position: relative;
  flex: 1;
  overflow: hidden;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
  background: #0b0d12;
  min-height: 360px;
}

.map-preview__frame {
  position: absolute;
  inset: 0;
  filter: invert(92%) hue-rotate(180deg) brightness(0.95) contrast(0.95);
}

.map-preview__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: auto;
}

.map-card {
  position: absolute;
  z-index: 2;
  top: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  max-width: 300px;
  padding: 0.85rem 0.9rem;
  background: rgba(16, 18, 24, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.map-card__top {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: flex-start;
}

.map-card h3 {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
}

.map-card p {
  margin: 0.4rem 0 0;
  font-size: 0.74rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.68);
}

.map-card__actions {
  display: flex;
  gap: 0.35rem;
  flex-shrink: 0;
}

.map-card__icon {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.map-card__icon:hover {
  background: rgba(245, 196, 0, 0.18);
  border-color: rgba(245, 196, 0, 0.5);
  color: var(--brand-yellow);
}

.map-card__icon--directions {
  color: #8ab4f8;
}

.map-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  margin-top: 0.75rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.map-card__rating {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--brand-yellow);
}

.map-card__link {
  font-size: 0.74rem;
  font-weight: 600;
  color: #8ab4f8;
  text-decoration: none;
}

.map-card__link:hover {
  text-decoration: underline;
}

.site-footer {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}

.site-footer p {
  margin: 0;
}

.site-footer__note {
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fab-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(31, 170, 75, 0.45);
  animation: fab-in 0.8s 0.6s both, fab-bounce 2.8s 1.4s ease-in-out infinite;
}

.fab-whatsapp__label {
  position: absolute;
  right: calc(100% + 0.65rem);
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  padding: 0.45rem 0.75rem;
  background: var(--brand-dark);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.fab-whatsapp__label::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--brand-dark);
}

.fab-whatsapp:hover {
  transform: scale(1.06);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition:
    opacity 0.85s var(--ease-out),
    transform 0.85s var(--ease-out),
    filter 0.85s var(--ease-out);
  transition-delay: var(--delay, 0s);
}

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

@keyframes hero-zoom {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}

@keyframes sheen {
  0%,
  100% {
    transform: translateX(-8%) rotate(12deg);
    opacity: 0.35;
  }
  50% {
    transform: translateX(18%) rotate(12deg);
    opacity: 0.7;
  }
}

@keyframes char-in {
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

@keyframes scroll-line {
  0% {
    transform: scaleY(0.35);
    transform-origin: top;
    opacity: 0.4;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
  100% {
    transform: scaleY(0.35);
    transform-origin: bottom;
    opacity: 0.4;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes orb-drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(4%, 6%, 0) scale(1.08);
  }
}

@keyframes fab-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fab-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes cta-glow {
  0%,
  100% {
    box-shadow: 0 8px 22px rgba(31, 170, 75, 0.3);
  }
  50% {
    box-shadow: 0 12px 32px rgba(31, 170, 75, 0.55);
  }
}

@keyframes pulse-ring {
  0% {
    opacity: 0.7;
    transform: scale(0.96);
  }
  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

@media (min-width: 720px) {
  .nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 1.35rem;
    width: auto;
    height: auto;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
  }

  .nav__whatsapp {
    display: none;
  }

  .nav-toggle {
    display: none;
  }

  .nav-backdrop {
    display: none !important;
  }

  .brand-mark__sub {
    display: inline;
  }

  .btn--header-cta {
    display: inline-flex;
  }

  .attention-bar__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

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

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

  .feature-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 1.5rem;
  }

  .about__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2.5rem;
  }

  .about__figure img {
    min-height: 420px;
  }

  .contact__split {
    grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 1.05fr);
    gap: 1.35rem;
    align-items: stretch;
  }

  .contact__panel {
    padding: 2rem 1.5rem;
  }

  .contact__actions .btn--hero-cta {
    min-height: 2.85rem;
    padding: 0.7rem 1.1rem;
    font-size: 0.9rem;
  }

  .map-block {
    min-height: 100%;
  }

  .map-preview {
    min-height: 480px;
  }

  .map-card {
    right: auto;
    max-width: 280px;
  }
}

@media (min-width: 980px) {
  .category-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .category {
    min-height: 320px;
  }

  .category img {
    min-height: 320px;
  }

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

  .feature-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .feature {
    border: none;
    padding: 0;
  }

  .feature + .feature {
    border-left: 1px solid var(--line);
    padding-left: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__image,
  .hero__sheen,
  .marquee__track,
  .fab-whatsapp,
  .btn--header-cta,
  .btn--hero-cta,
  .btn__pulse::after,
  .ambient__orb,
  .hero__brand .char,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
    filter: none;
  }
}
