:root {
  --black: #050505;
  --ink: #101010;
  --muted: #5a5a5a;
  --line: #dedede;
  --soft: #f5f5f3;
  --white: #ffffff;
  --accent: #d8b85c;
  --accent-soft: #f6ecd0;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.10);
  --radius: 28px;
  --radius-sm: 18px;
  --header-h: 88px;
  font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(216, 184, 92, 0.13), transparent 22rem),
    linear-gradient(180deg, #fff 0%, #fff 55%, #f6f6f4 100%);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: var(--black);
  color: var(--white);
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 1rem;
  left: 1rem;
  padding: 0.8rem 1rem;
  background: var(--black);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-meter {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1200;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--black);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
  width: 100%;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 5vw;
  background: rgba(255, 255, 255, 0.80);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
  transition: height 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  height: 72px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  min-width: 118px;
  margin-right: auto;
}

.brand img {
  width: auto;
  height: clamp(56px, 5vw, 70px);
  max-width: none;
  object-fit: contain;
  transition: height 0.25s ease, transform 0.25s ease;
}

.brand:hover img {
  transform: translateY(-1px);
}

.site-header.scrolled .brand img {
  height: 54px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1rem, 2vw, 2rem);
  margin-left: auto;
}

.site-nav a {
  position: relative;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #242424;
  padding: 0.35rem 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 1px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 0;
  place-items: center;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--black);
  margin: 3px auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section-pad {
  padding: clamp(5rem, 9vw, 8.5rem) 5vw;
}

.hero {
  min-height: 100svh;
  padding-top: calc(var(--header-h) + clamp(3rem, 7vw, 7rem));
  display: grid;
  align-content: center;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.76fr);
  gap: clamp(2.5rem, 5vw, 5.5rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  line-height: 0.95;
  letter-spacing: -0.07em;
  font-weight: 500;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.25rem;
  font-size: clamp(3.25rem, 10vw, 9.4rem);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 5vw, 5.5rem);
}

h3 {
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.hero-lede {
  max-width: 690px;
  color: #333;
  font-size: clamp(1.08rem, 1.6vw, 1.4rem);
}

.hero-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  --btn-x: 0px;
  --btn-y: 0px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  padding: 0.95rem 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid var(--black);
  transform: translate(var(--btn-x), var(--btn-y));
  transition: transform 0.2s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

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

.button-light {
  background: transparent;
  color: var(--black);
}

.button:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.button-dark:hover {
  background: #252525;
}

.button-light:hover {
  background: var(--black);
  color: var(--white);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 680px;
  margin: clamp(2rem, 4vw, 4rem) 0 0;
  padding: 1px;
  background: var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.hero-stats div {
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.78);
}

.hero-stats dt {
  margin-bottom: 0.25rem;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  letter-spacing: -0.045em;
}

.hero-stats dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  min-height: 520px;
  display: grid;
  place-items: center;
}

.fixture-card {
  position: relative;
  width: min(100%, 480px);
  aspect-ratio: 0.86;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: clamp(32px, 5vw, 56px);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.94), rgba(245, 245, 242, 0.84)),
    repeating-linear-gradient(90deg, transparent 0 30px, rgba(0, 0, 0, 0.035) 30px 31px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.fixture-top {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  right: 1.2rem;
  display: flex;
  justify-content: space-between;
  gap: 0.55rem;
  z-index: 3;
}

.fixture-top span {
  height: 7px;
  flex: 1;
  border-radius: 999px;
  background: var(--black);
  opacity: 0.9;
}

.beam-wrap {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.beam {
  position: absolute;
  width: 62%;
  height: 70%;
  top: 17%;
  left: 19%;
  background: radial-gradient(ellipse at center top, rgba(216, 184, 92, 0.6), rgba(216, 184, 92, 0.16) 35%, transparent 72%);
  clip-path: polygon(38% 0, 62% 0, 100% 100%, 0 100%);
  transform-origin: top center;
  filter: blur(3px);
  animation: beamPulse 4.6s ease-in-out infinite;
  mix-blend-mode: multiply;
}

.beam-two {
  width: 72%;
  opacity: 0.7;
  transform: rotate(-8deg);
  animation-delay: -1.4s;
}

.beam-three {
  width: 72%;
  opacity: 0.7;
  transform: rotate(8deg);
  animation-delay: -2.2s;
}

.lamp-core {
  position: absolute;
  top: 18%;
  width: 96px;
  height: 96px;
  border: 1px solid var(--black);
  border-radius: 999px;
  background:
    radial-gradient(circle, var(--black) 0 18%, var(--white) 19% 45%, var(--black) 46% 48%, transparent 49%),
    var(--white);
  box-shadow: 0 0 0 18px rgba(0, 0, 0, 0.035);
  animation: float 4.8s ease-in-out infinite;
  z-index: 2;
}

.visual-label {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(14px);
}

.visual-label strong {
  font-size: 1rem;
}

.visual-label span {
  color: var(--muted);
  font-size: 0.86rem;
  text-align: right;
}

.category-marquee {
  margin-top: clamp(2rem, 5vw, 5rem);
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.marquee-track {
  display: flex;
  gap: 2.25rem;
  width: max-content;
  padding: 1rem 0;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

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

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.45fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
}

.split-heading p {
  margin-bottom: 0.4rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: clamp(2rem, 4vw, 3.5rem) 0 1.5rem;
}

.filter-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.72rem 1rem;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.filter-chip:hover {
  transform: translateY(-2px);
  border-color: var(--black);
}

.filter-chip.active {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  --x: 50%;
  --y: 50%;
  position: relative;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--x) var(--y), rgba(216, 184, 92, 0.22), transparent 0 7rem),
    linear-gradient(180deg, #fff, #f8f8f6);
  overflow: hidden;
  transition: transform 0.32s ease, opacity 0.3s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.055), transparent 35%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 0, 0, 0.38);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.10);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card.is-hidden {
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
  display: none;
}

.card-index {
  width: max-content;
  margin-bottom: auto;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.product-card h3 {
  margin: 3rem 0 0.7rem;
  font-size: clamp(1.35rem, 2vw, 2.1rem);
}

.product-card p {
  color: #404040;
}

.card-details {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  transform: translateY(0.25rem);
  transition: transform 0.25s ease;
}

.product-card:hover .card-details {
  transform: translateY(0);
}

.card-details span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-details strong {
  font-size: 0.92rem;
  font-weight: 700;
}

.consumer {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  background:
    linear-gradient(135deg, #0b0b0b, #1d1d1d),
    var(--black);
  color: var(--white);
}

.consumer .eyebrow,
.consumer p {
  color: rgba(255, 255, 255, 0.70);
}

.consumer-copy p:last-child {
  font-size: 1.08rem;
}

.consumer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.consumer-grid span {
  min-height: 118px;
  display: grid;
  place-items: end start;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.10), transparent),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.065) 0 1px, transparent 1px 12px);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.consumer-grid span:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.42);
  background-color: rgba(255, 255, 255, 0.08);
}

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

.brand-wall {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(2rem, 4vw, 3rem);
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.brand-tile {
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: var(--white);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  transition: color 0.25s ease, background 0.25s ease, letter-spacing 0.25s ease;
}

.brand-tile img {
  width: 100%;
  max-width: 150px;
  max-height: 78px;
  object-fit: contain;
  filter: grayscale(1) saturate(0) contrast(1.05);
  opacity: 0.72;
  transition: filter 0.32s ease, opacity 0.32s ease, transform 0.32s ease;
}

.brand-tile:hover {
  color: var(--black);
  background: var(--accent-soft);
  letter-spacing: 0.09em;
}

.brand-tile:hover img {
  filter: none;
  opacity: 1;
  transform: translateY(-2px) scale(1.04);
}

.about {
  background: var(--white);
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 14px);
  background:
    radial-gradient(circle at top right, rgba(216, 184, 92, 0.18), transparent 26rem),
    var(--white);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.08);
}

.trust-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.trust-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem 1rem;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.86);
}

.trust-list span {
  grid-row: span 2;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.trust-list h3 {
  margin-bottom: 0;
  font-size: 1.25rem;
}

.trust-list p {
  margin-bottom: 0;
  color: var(--muted);
}



.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 0.65fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.contact-copy p {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.contact-action-card {
  position: relative;
  min-height: 178px;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(140deg, rgba(216, 184, 92, 0.13), transparent 46%),
    var(--white);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-action-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.7) 50%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 0.65s ease;
  pointer-events: none;
}

.contact-action-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 0, 0, 0.22);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.08);
}

.contact-action-card:hover::before {
  transform: translateX(120%);
}

.contact-action-card span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-action-card h3 {
  margin: 1.2rem 0 0.65rem;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.contact-action-card p {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-action-card a {
  width: max-content;
  margin-top: auto;
  border-bottom: 1px solid var(--black);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-cards {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
  font-style: normal;
}

.contact-card {
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fbfbfa;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.contact-card:hover {
  transform: translateX(5px);
  border-color: var(--black);
}

.contact-card span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.4rem);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 10px);
  background: var(--soft);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 0.42rem;
}

.form-row label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #cfcfca;
  border-radius: 16px;
  background: var(--white);
  color: var(--ink);
  padding: 0.95rem 1rem;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.08);
}

.form-status {
  min-height: 1.4em;
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem 5vw;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-logo img {
  width: auto;
  height: auto;
  max-width: 150px;
  max-height: 96px;
  object-fit: contain;
}

.footer-links {
  justify-content: flex-end;
}

.footer-links a,
.site-footer p {
  color: var(--muted);
  font-size: 0.85rem;
}

.site-footer p {
  grid-column: 1 / -1;
  margin: 0;
  text-align: right;
}

.footer-cookie-settings {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 0;
  cursor: pointer;
  font-size: 0.85rem;
  text-decoration: none;
}

.footer-cookie-settings:hover {
  color: var(--black);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 9000;
  width: min(920px, calc(100vw - 2rem));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--black);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-copy p,
.cookie-copy strong {
  margin: 0;
}

.cookie-copy p:last-child {
  max-width: 560px;
  color: var(--muted);
  font-size: 0.78rem;
}

.cookie-kicker {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-actions .button {
  padding: 0.68rem 0.85rem;
  font-size: 0.78rem;
}

.cookie-actions a {
  color: var(--muted);
  font-size: 0.78rem;
  border-bottom: 1px solid transparent;
}

.cookie-actions a:hover {
  color: var(--black);
  border-bottom-color: var(--black);
}

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

.reveal.reveal-pending {
  opacity: 0;
  transform: translateY(26px);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

@keyframes beamPulse {
  0%, 100% {
    opacity: 0.5;
    transform: scaleX(0.92);
  }

  50% {
    opacity: 0.9;
    transform: scaleX(1.06);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1180px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .brand-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  :root {
    --header-h: 78px;
  }

  .site-header {
    padding-inline: 1rem;
  }

  .brand {
    min-width: 98px;
  }

  .brand img {
    height: 56px;
  }

  .site-header.scrolled .brand img {
    height: 50px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0;
    padding: 0.7rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .site-nav a {
    padding: 1rem;
    border-radius: 16px;
  }

  .site-nav a:hover,
  .site-nav a.active {
    background: var(--soft);
  }

  .site-nav a::after {
    display: none;
  }

  .hero-grid,
  .split-heading,
  .consumer,
  .about-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 10ch;
  }

  .hero-visual {
    min-height: 420px;
  }

  .fixture-card {
    max-width: 410px;
  }

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

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

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .cookie-banner {
    grid-template-columns: 1fr;
    align-items: start;
    bottom: 0.75rem;
  }

  .cookie-actions {
    justify-content: flex-start;
  }

  .cookie-actions .button {
    flex: 1 1 140px;
  }

  .section-pad {
    padding-inline: 1rem;
  }

  h1 {
    font-size: clamp(3.05rem, 18vw, 5rem);
  }

  h2 {
    font-size: clamp(2.1rem, 13vw, 3.4rem);
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 2.25rem);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .visual-label {
    align-items: flex-start;
    flex-direction: column;
  }

  .visual-label span {
    text-align: left;
  }

  .product-grid,
  .consumer-grid,
  .brand-wall,
  .product-card {
    min-height: 250px;
  }

  .filter-bar {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.4rem;
    scrollbar-width: thin;
  }

  .filter-chip {
    white-space: nowrap;
  }

  .contact-card:hover {
    transform: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal,
  .reveal.reveal-pending {
    opacity: 1;
    transform: none;
  }

  .marquee-track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
  }
}


.whatsapp-widget {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 1150;
  display: grid;
  justify-items: end;
  gap: 0.7rem;
}

.whatsapp-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--black);
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
}

.whatsapp-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #24d366;
  box-shadow: 0 0 0 0 rgba(36, 211, 102, 0.55);
  animation: whatsappPulse 1.9s ease-out infinite;
}

.whatsapp-panel {
  width: min(320px, calc(100vw - 2rem));
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  transform: translateY(10px) scale(0.98);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(14px);
}

.whatsapp-panel.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.whatsapp-panel strong,
.whatsapp-panel p {
  display: block;
  margin: 0 0 0.75rem;
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 0 0 0 rgba(36, 211, 102, 0.50); }
  70% { box-shadow: 0 0 0 10px rgba(36, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(36, 211, 102, 0); }
}

@media (max-width: 640px) {
  .whatsapp-widget {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .whatsapp-toggle {
    justify-self: end;
  }
}
