* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0d0d0f;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.75);
  --muted-strong: rgba(255, 255, 255, 0.56);
  --line: rgba(255, 255, 255, 0.12);
  --white: #ffffff;
  --black: #111111;
  --btn-dark: #ffffff;
  --btn-dark-text: #111111;
  --glass: rgba(255, 255, 255, 0.08);
  --panel: #0a0a0d;
  --panel-soft: #121218;
  --accent: #cab08a;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #000;
  color: var(--text);
  overflow-x: hidden;
}

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

button {
  font: inherit;
}

.container {
  width: min(1240px, 92%);
  margin: 0 auto;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(8, 8, 10, 0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-wrapper {
  min-height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.logo img {
  display: block;
  width: auto;
  height: 120px;
  object-fit: contain;
}

.logo-mark {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 20px rgba(255,255,255,0.7);
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-left {
  justify-self: start;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 22px;
}

.nav-right-links {
  justify-content: flex-end;
}

.nav a {
  position: relative;
  font-size: 0.96rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  transition: color 0.3s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1.5px;
  background: #fff;
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav a:hover {
  color: #fff;
}

.nav a,
.mobile-nav a,
.whatsapp-fab,
.whatsapp-chat-link {
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav a,
.whatsapp-fab,
.whatsapp-chat-link {
  transition: transform 0.22s ease, opacity 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.mobile-nav a:active,
.whatsapp-fab:active,
.whatsapp-chat-link:active {
  transform: scale(0.97);
}

.nav-actions,
.hero-buttons,
.mobile-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-actions {
  display: none;
}

.desktop-actions {
  justify-self: end;
}

.mobile-nav {
  display: none;
}

/* BOTONES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.22s ease, opacity 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn-primary {
  background: #C4842B;
  color: white;
}

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

.btn:active {
  transform: scale(0.97);
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  background: rgba(255,255,255,0.04);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn-glass {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

/* MENU TOGGLE */
.menu-toggle {
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  display: none;
  align-items: center;
  justify-content: center;
  appearance: none;
  -webkit-appearance: none;
  line-height: 0;
  cursor: pointer;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 0;
  border-radius: 999px;
  transition: transform 0.28s ease, opacity 0.2s ease, width 0.28s ease;
}

.menu-toggle span:nth-child(1) {
  transform: translate(-50%, -8px);
}

.menu-toggle span:nth-child(2) {
  transform: translate(-50%, 0);
}

.menu-toggle span:nth-child(3) {
  transform: translate(-50%, 8px);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  z-index: 5;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 52vh;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(1, 1, 1, 0.06) 28%,
    rgba(2, 2, 2, 0.22) 54%,
    rgba(2, 2, 2, 0.58) 78%,
    rgba(2, 2, 2, 0.9) 100%
  );
  pointer-events: none;
  z-index: 2;
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 58vh;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(2, 2, 2, 0.08) 24%,
    rgba(2, 2, 2, 0.24) 48%,
    rgba(2, 2, 2, 0.5) 72%,
    rgba(2, 2, 2, 0.82) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  opacity: 1;
  transition: opacity 780ms ease;
}

.hero-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.14), rgba(0,0,0,0.03)),
    linear-gradient(to top, rgba(0,0,0,0.06), rgba(0,0,0,0));
}

.hero-content {
  position: absolute;
  left: 50%;
  bottom: 126px;
  transform: translateX(-50%);
  z-index: 3;
  width: min(1240px, 92%);
  max-width: 980px;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  will-change: transform, opacity;
}

.hero-tag {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
}

.hero h1 {
  max-width: none;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  margin-bottom: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.hero-text {
  max-width: 520px;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 0;
}

.hero-bottom-cta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 42px;
  z-index: 7;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.hero-floating-cta {
  min-width: 182px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
  pointer-events: auto;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.products {
  position: relative;
  z-index: 4;
  padding: 230px 0 32px;
  box-shadow: 0 -4px 0 #020202;
  background: linear-gradient(
    to bottom,
    #020202 0%,
    #050506 24%,
    #090a0c 48%,
    #0b0c0f 62%,
    #07080a 78%,
    #040405 92%,
    #020202 100%
  );
}

.products::before {
  content: "";
  position: absolute;
  top: -180px;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(
    to bottom,
    rgba(2, 2, 2, 0) 0%,
    rgba(2, 2, 2, 0.22) 38%,
    rgba(2, 2, 2, 0.55) 72%,
    #020202 100%
  );
  pointer-events: none;
}

.products::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: #020202;
  pointer-events: none;
}

.products-shell {
  display: grid;
  gap: 44px;
}

.products-viewport {
  position: relative;
  overflow: hidden;
  padding: 8px 0 36px;
}

.products-viewport::before,
.products-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 36px;
  width: clamp(22px, 2.4vw, 44px);
  pointer-events: none;
  z-index: 4;
}

.products-viewport::before {
  left: 0;
  background: linear-gradient(90deg, rgba(6, 7, 9, 0.96) 0%, rgba(6, 7, 9, 0) 100%);
}

.products-viewport::after {
  right: 0;
  background: linear-gradient(270deg, rgba(6, 7, 9, 0.96) 0%, rgba(6, 7, 9, 0) 100%);
}

.products-intro {
  max-width: 700px;
  position: relative;
}

.products-intro h2,
.contact-teaser h2 {
  max-width: 12ch;
  font-size: clamp(2rem, 4vw, 3.9rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.section-copy {
  max-width: 560px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.products-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
  will-change: auto;
}

.products-swipe-hint {
  display: none;
}

@media (min-width: 1201px) {
  .products {
    padding-bottom: 90px;
  }

  .products-shell {
    gap: 36px;
  }

  .products-viewport {
    min-height: 78vh;
  }

  .products-grid {
    display: flex;
    align-items: stretch;
    gap: 22px;
    width: max-content;
    padding-left: 26px;
    padding-right: 18vw;
    will-change: transform;
  }

  .product-card,
  .product-card-large,
  .product-card-accent {
    flex: 0 0 clamp(320px, 30vw, 430px);
    min-height: clamp(420px, 62vh, 640px);
  }

  .product-card-large {
    min-height: clamp(480px, 68vh, 700px);
  }

  .product-card h3 {
    max-width: 9ch;
  }
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.008)),
    var(--panel-soft);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  opacity: 1;
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(4, 5, 7, 0.62) 0%, rgba(4, 5, 7, 0.74) 38%, rgba(4, 5, 7, 0.94) 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.025), transparent 40%),
    var(--card-image) center / cover no-repeat;
  pointer-events: none;
  transform: scale(1);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -35% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
  pointer-events: none;
}

.product-card-large {
  grid-row: span 2;
  min-height: 538px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.012)),
    linear-gradient(160deg, rgba(255, 255, 255, 0.02), transparent 48%),
    var(--panel);
}

.product-card-accent {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.01)),
    var(--panel-soft);
}

.product-card.is-active {
  border-color: rgba(226, 187, 107, 0.88);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(226, 187, 107, 0.18) inset,
    0 0 24px rgba(226, 187, 107, 0.12);
}

.product-card.is-active::before,
.product-card:hover::before {
  transform: scale(1.03);
  filter: brightness(1.06);
}

.product-index {
  position: relative;
  z-index: 1;
  margin-bottom: 72px;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  color: var(--muted-strong);
}

.product-card h3 {
  position: relative;
  z-index: 1;
  max-width: 10ch;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.product-copy {
  position: relative;
  z-index: 1;
  max-width: 28ch;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.7;
}

.product-cta {
  position: relative;
  z-index: 1;
  margin-top: auto;
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.92rem;
}

.product-card-arrow {
  display: none;
}

.contact-teaser {
  padding: 24px 0 120px;
  background: linear-gradient(180deg, #060608 0%, #040405 100%);
}

.contact-teaser-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .nav {
    gap: 18px;
  }

  .nav a {
    font-size: 0.9rem;
  }

  .desktop-actions .btn {
    padding: 0 16px;
  }

  .logo img {
    height: 46px;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .product-card-large {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 340px;
  }
}

@media (max-width: 980px) {
  .header {
    padding: 0;
  }

  .topbar,
  .nav-wrapper {
    position: relative;
  }

  .desktop-nav,
  .desktop-actions {
    display: none;
  }

  .nav-wrapper {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0;
    padding: 24px 16px 16px;
    transition:
      padding 0.35s cubic-bezier(0.22, 1, 0.36, 1),
      gap 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .logo {
    justify-self: center;
    transition:
      transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.3s ease;
  }

  .logo img {
    height: 112px;
    transition: height 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .menu-toggle {
    display: none;
    width: 56px;
    height: 56px;
    padding: 0;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    background:
      radial-gradient(circle at top, rgba(255,255,255,0.08), transparent 58%),
      rgba(12, 12, 15, 0.42);
    backdrop-filter: blur(14px);
    box-shadow:
      0 14px 30px rgba(0,0,0,0.22),
      0 0 0 1px rgba(255,255,255,0.03) inset;
    transition:
      transform 0.28s ease,
      background-color 0.28s ease,
      border-color 0.28s ease,
      box-shadow 0.28s ease;
  }

  .menu-toggle span {
    left: 50%;
    width: 22px;
    height: 2px;
    margin: 0;
    background: #ffffff;
  }

.menu-toggle:hover {
  border-color: rgba(255,255,255,0.16);
}

  .mobile-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-16px) scale(0.98);
    width: min(100%, 560px);
    padding: 16px;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    background: rgba(12, 12, 15, 0.9);
    backdrop-filter: blur(18px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
    opacity: 0;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    z-index: 20;
    transition:
      opacity 0.28s ease,
      transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mobile-nav a {
    min-height: 52px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(10, 14, 24, 0.3);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    font-size: 0.96rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  }

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

  .mobile-actions {
    display: none;
    width: 100%;
    justify-content: center;
    margin-top: 6px;
    order: 10;
  }

  .mobile-actions .btn {
    min-height: 56px;
    width: min(100%, 420px);
    padding: 0 24px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(242,242,242,0.94));
    color: #111111;
    font-size: 1rem;
    font-weight: 800;
    box-shadow: 0 16px 34px rgba(0,0,0,0.16);
  }

  .hero-content {
    bottom: 118px;
    max-width: min(100%, 680px);
    padding-bottom: 0;
  }

  .header.scrolled .nav-wrapper {
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    gap: 0;
    padding: 16px 16px 12px;
  }

  .header.scrolled .logo {
    justify-self: center;
  }

  .header.scrolled .logo img {
    height: 84px;
  }

.header.scrolled .menu-toggle {
    display: inline-flex;
    position: absolute;
    top: 20px;
    right: 16px;
    justify-self: auto;
    align-items: center;
    justify-content: center;
    animation: menuToggleIn 320ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .header.scrolled .mobile-nav {
    opacity: 0;
    transform: translateY(-16px) scale(0.98);
    pointer-events: none;
    display: none;
    max-height: 0;
    overflow: hidden;
  }

  .header.scrolled.menu-open .mobile-nav {
    display: flex;
    transform-origin: top center;
    animation: mobileMenuIn 260ms cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
    pointer-events: auto;
    max-height: 520px;
  }

  .header.scrolled.menu-open .mobile-actions {
    width: 100%;
    margin-top: 8px;
  }

  .header.scrolled.menu-open .menu-toggle {
    background: rgba(18, 18, 24, 0.88);
    border-color: rgba(226, 187, 107, 0.32);
    box-shadow:
      0 16px 34px rgba(0,0,0,0.28),
      0 0 0 1px rgba(226, 187, 107, 0.08) inset;
  }

  .header.scrolled.menu-open .menu-toggle span:nth-child(1) {
    transform: translate(-50%, 0) rotate(45deg);
    width: 20px;
  }

  .header.scrolled.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: translate(-50%, 0) scaleX(0);
  }

  .header.scrolled.menu-open .menu-toggle span:nth-child(3) {
    transform: translate(-50%, 0) rotate(-45deg);
    width: 20px;
  }

  .hero-tag,
  .hero h1,
  .hero-text {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

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

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(3rem, 8vw, 4.4rem);
    line-height: 0.94;
    white-space: normal;
  }

  .hero-text {
    max-width: 20ch;
    font-size: 1.35rem;
    line-height: 1.42;
    color: rgba(255,255,255,0.98);
    text-shadow:
      0 4px 20px rgba(0,0,0,0.36),
      0 0 1px rgba(0,0,0,0.18);
  }

  .contact-teaser-inner {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-teaser {
    padding-bottom: 96px;
  }
}

@keyframes mobileMenuIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@keyframes menuToggleIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 600px) {
  .nav-wrapper {
    min-height: auto;
    gap: 16px;
  }

  .logo img {
    height: 132px;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-tag {
    font-size: 0.86rem;
  }

  .hero-text {
    font-size: 1.12rem;
    color: rgba(255,255,255,0.94);
  }

  .hero-video {
    object-position: center 62%;
  }

  .mobile-nav {
    width: 100%;
    padding: 8px 0 0;
    gap: 10px;
  }

  .mobile-nav a {
    width: calc(50% - 4px);
    justify-content: center;
    margin: 0;
  }

  .mobile-actions .btn {
    width: 100%;
  }

  .header.scrolled .logo img {
    height: 58px;
  }

  .hero-content {
    bottom: 106px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 10vw, 3.8rem);
  }

  .hero-text {
    max-width: 18ch;
    font-size: 1.2rem;
    line-height: 1.4;
  }

  .header.scrolled .logo img {
    height: 72px;
  }

  .header.scrolled .menu-toggle {
    top: 18px;
    right: 14px;
  }

}

/* LIGHT SWITCH SHOWCASE */
.before-after {
  position: relative;
  background: linear-gradient(
    to bottom,
    #020202 0%,
    #050506 18%,
    #0a0b0d 42%,
    #090a0c 68%,
    #040405 100%
  );
}

.before-after-shell {
  display: grid;
  gap: 38px;
}

.before-after-intro {
  max-width: 760px;
  margin-left: auto;
  text-align: right;
}

.before-after-intro .section-kicker {
  display: block;
  width: 100%;
  text-align: right;
}

.before-after-intro h2 {
  margin-left: auto;
}

.before-after-intro .section-copy {
  margin-left: auto;
}
.lighting-switch-showcase {
  position: relative;
  border-radius: 32px;
}

.lighting-stage {
  position: relative;
  min-height: 560px;
  border-radius: 28px;
  overflow: hidden;
  background: #050608;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.32),
    0 0 0 1px rgba(255,255,255,0.04) inset;
  isolation: isolate;
}

.lighting-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
  z-index: 4;
}

.lighting-stage::after {
  content: "";
  position: absolute;
  inset: -16%;
  background: none;
  opacity: 0;
  pointer-events: none;
  z-index: 6;
}

.lighting-scene {
  position: absolute;
  inset: 0;
  transition:
    opacity 240ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.lighting-scene img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

.lighting-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.lighting-scene-off {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.lighting-scene-off::after {
  background: none;
}

.lighting-scene-on {
  z-index: 2;
  opacity: 0;
  transform: scale(1);
}

.lighting-scene-on::after {
  background: none;
}

.lighting-stage-glow {
  display: none;
  position: absolute;
  inset: -14%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,230,169,0.34), transparent 26%),
    radial-gradient(circle at 50% 50%, rgba(202,176,138,0.18), transparent 52%);
  opacity: 0;
  transform: scale(0.84);
  filter: blur(26px);
  pointer-events: none;
  transition:
    opacity 320ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 420ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 3;
}

.lighting-switch-panel {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 7;
  display: grid;
  gap: 12px;
  width: min(290px, calc(100% - 36px));
  padding: 14px 16px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    linear-gradient(180deg, rgba(245,248,251,0.2), rgba(245,248,251,0.08)),
    rgba(18, 22, 28, 0.54);
  backdrop-filter: blur(16px);
  box-shadow:
    0 18px 34px rgba(0,0,0,0.22),
    0 0 0 1px rgba(255,255,255,0.04) inset;
}

.lighting-switch-copy {
  display: grid;
  gap: 4px;
  flex: 1 1 auto;
  min-width: 0;
}

.lighting-switch-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.lighting-switch-kicker {
  color: var(--accent);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}

.lighting-switch-state {
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.lighting-switch-description {
  color: var(--muted);
  line-height: 1.45;
  max-width: 26ch;
  font-size: 0.82rem;
}

.lighting-switch-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.lighting-switch-track {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 66px;
  height: 36px;
  padding: 3px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, #e8f0f4, #cedbe2 100%);
  box-shadow:
    0 10px 18px rgba(0,0,0,0.18),
    0 1px 0 rgba(255,255,255,0.72) inset,
    0 -5px 10px rgba(0,0,0,0.08) inset;
  transition:
    background 500ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 500ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 220ms ease;
}

.lighting-switch-thumb {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff, #edf1f4 100%);
  box-shadow:
    0 5px 12px rgba(0,0,0,0.2),
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 -3px 8px rgba(0,0,0,0.08) inset;
  transition:
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 650ms cubic-bezier(0.22, 1, 0.36, 1),
    background 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.lighting-switch-thumb::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 999px;
  background: rgba(12, 16, 22, 0.06);
}

.lighting-switch-showcase[data-light-state="on"] .lighting-scene-off {
  opacity: 0;
  transform: scale(1);
}

.lighting-switch-showcase[data-light-state="on"] .lighting-scene-on {
  opacity: 1;
  transform: scale(1);
}

.lighting-switch-showcase[data-light-state="on"] .lighting-switch-panel {
  border-color: rgba(118,255,92,0.26);
  box-shadow:
    0 18px 34px rgba(0,0,0,0.22),
    0 0 0 1px rgba(118,255,92,0.08) inset,
    0 0 24px rgba(118,255,92,0.08);
}

.lighting-switch-showcase[data-light-state="on"] .lighting-switch-track {
  background:
    linear-gradient(180deg, #83f767 0%, #67eb4d 100%);
  box-shadow:
    0 10px 18px rgba(65, 203, 52, 0.28),
    0 1px 0 rgba(255,255,255,0.36) inset,
    0 -5px 10px rgba(26,126,22,0.12) inset;
}

.lighting-switch-showcase[data-light-state="on"] .lighting-switch-thumb {
  transform: translateX(30px);
  box-shadow:
    0 5px 14px rgba(17, 76, 12, 0.22),
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 -3px 8px rgba(0,0,0,0.08) inset;
}

.lighting-switch-showcase.is-activating .lighting-stage::after,
.lighting-switch-showcase.is-activating .lighting-stage-glow {
  animation: none;
  opacity: 0;
}

.lighting-switch-showcase:not(.has-interacted)[data-light-state="off"] .lighting-switch-toggle {
  animation: switchPromptFloat 1.8s ease-in-out infinite;
}

.lighting-switch-showcase:not(.has-interacted)[data-light-state="off"] .lighting-switch-thumb {
  animation: switchPromptNudge 1.8s ease-in-out infinite;
}

@media (min-width: 981px) {
  .lighting-switch-showcase:not(.has-interacted) .lighting-switch-toggle::before {
    content: "Click the switch";
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background:
      linear-gradient(180deg, rgba(16, 20, 27, 0.94), rgba(8, 11, 17, 0.9));
    box-shadow:
      0 14px 28px rgba(0,0,0,0.24),
      0 0 0 1px rgba(255,255,255,0.04) inset;
    color: rgba(255,255,255,0.92);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    animation: desktopSwitchHintFloat 2.1s ease-in-out infinite;
  }

  .lighting-switch-showcase:not(.has-interacted) .lighting-switch-toggle::after {
    content: "";
    position: absolute;
    inset: -9px;
    border-radius: 999px;
    border: 1px solid rgba(129, 247, 103, 0.28);
    box-shadow: 0 0 0 0 rgba(129, 247, 103, 0.2);
    pointer-events: none;
    animation: desktopSwitchPulse 1.9s ease-out infinite;
  }
}

@media (max-width: 980px) {
  .products {
    margin-top: -70px;
    padding-top: 132px;
  }

  .products-shell {
    gap: 28px;
  }

  .products-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 28px 0 10px;
    min-height: 0;
    scroll-behavior: smooth;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .products-viewport::-webkit-scrollbar {
    display: none;
  }

  .products-viewport::before,
  .products-viewport::after {
    display: none;
  }

  .products-grid {
    display: flex;
    gap: 16px;
    width: max-content;
    padding-left: 0;
    padding-right: 7vw;
    will-change: auto;
    transform: none !important;
  }

  .product-card,
  .product-card-large,
  .product-card-accent {
    flex: 0 0 78vw;
    min-height: 560px;
    padding: 100px 24px 24px;
    flex-shrink: 0;
    grid-column: auto;
    grid-row: auto;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
  }

  .product-card-large {
    min-height: 560px;
  }

  .product-card::before {
    transform: none;
    transition: none;
  }

  .product-index,
  .product-card h3,
  .product-copy {
    position: relative;
    z-index: 2;
    pointer-events: none;
  }

  .product-index {
    position: absolute;
    top: 60px;
    left: 24px;
    margin-bottom: 0;
    padding: 7px 11px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(9, 12, 18, 0.5);
    backdrop-filter: blur(8px);
    color: rgba(255,255,255,0.78);
    box-shadow: 0 8px 18px rgba(0,0,0,0.16);
  }

  .product-cta {
    position: relative;
    z-index: 3;
    touch-action: manipulation;
  }

  .products-swipe-hint {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 6px auto 0;
    color: rgba(202,176,138,0.92);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }

  .products-swipe-hint::before,
  .products-swipe-hint::after {
    content: "";
    width: 26px;
    height: 1px;
    background: linear-gradient(90deg, rgba(202,176,138,0), rgba(202,176,138,0.82), rgba(202,176,138,0));
  }

  .products-swipe-hint span {
    position: relative;
    animation: swipeHintFloat 1.8s ease-in-out infinite;
  }

  .product-card-arrow {
    position: absolute;
    top: 18px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(202,176,138,0.28);
    background:
      radial-gradient(circle at 30% 25%, rgba(255,255,255,0.18), transparent 52%),
      linear-gradient(180deg, rgba(17, 20, 28, 0.86), rgba(8, 10, 14, 0.92));
    box-shadow:
      0 14px 28px rgba(0,0,0,0.28),
      0 0 0 1px rgba(255,255,255,0.04) inset,
      0 0 24px rgba(202,176,138,0.08);
    color: rgba(255,255,255,0.96);
    opacity: 1;
    transform: translateY(0);
    backdrop-filter: blur(14px);
    -webkit-tap-highlight-color: transparent;
    transition:
      transform 0.22s ease,
      border-color 0.22s ease,
      box-shadow 0.22s ease,
      background 0.22s ease;
    touch-action: manipulation;
  }

  .product-card-arrow-prev {
    left: 18px;
    animation: arrowFloatLeft 2.2s ease-in-out infinite;
  }

  .product-card-arrow-next {
    right: 18px;
    animation: arrowFloatRight 2.2s ease-in-out infinite;
  }

  .product-card-arrow span {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.42);
  }

  .product-card-arrow:active {
    transform: scale(0.95);
  }

  .product-card-arrow:hover {
    border-color: rgba(202,176,138,0.48);
    background:
      radial-gradient(circle at 30% 25%, rgba(255,255,255,0.22), transparent 52%),
      linear-gradient(180deg, rgba(22, 26, 36, 0.92), rgba(10, 12, 18, 0.96));
    box-shadow:
      0 16px 32px rgba(0,0,0,0.32),
      0 0 0 1px rgba(255,255,255,0.05) inset,
      0 0 28px rgba(202,176,138,0.12);
  }

  .hero-bottom-cta {
    bottom: 26px;
  }

  .before-after {
    padding: 60px 0 96px;
  }

  .before-after-intro {
    margin-left: 0;
    text-align: left;
  }

  .before-after-intro .section-kicker,
  .before-after-intro h2,
  .before-after-intro .section-copy {
    margin-left: 0;
    text-align: left;
  }

  .lighting-switch-showcase {
    border-radius: 26px;
  }

  .lighting-stage {
    min-height: 340px;
    aspect-ratio: 4 / 5;
    border-radius: 24px;
  }

  .lighting-switch-panel {
    top: 14px;
    left: 14px;
    width: min(318px, calc(100% - 28px));
    gap: 10px;
    padding: 12px 14px;
    border-radius: 20px;
  }

  .lighting-switch-toolbar {
    gap: 12px;
    align-items: center;
  }

  .lighting-switch-description {
    max-width: none;
    font-size: 0.78rem;
  }

  .lighting-switch-track {
    width: 60px;
    height: 33px;
  }

  .lighting-switch-thumb {
    width: 27px;
    height: 27px;
  }

  .lighting-switch-showcase[data-light-state="on"] .lighting-switch-thumb {
    transform: translateX(27px);
  }
}

@media (max-width: 600px) {
  .before-after-shell {
    gap: 26px;
  }

  .lighting-switch-showcase {
    border-radius: 24px;
  }

  .lighting-stage {
    min-height: 280px;
    border-radius: 22px;
  }

  .lighting-switch-panel {
    top: 12px;
    left: 12px;
    width: min(296px, calc(100% - 24px));
    gap: 8px;
    padding: 11px 12px;
  }

  .lighting-switch-toolbar {
    gap: 10px;
    align-items: center;
  }

  .lighting-switch-state {
    font-size: 0.96rem;
  }

  .lighting-switch-description {
    max-width: none;
    font-size: 0.72rem;
  }

  .lighting-switch-track {
    width: 56px;
    height: 31px;
  }

  .lighting-switch-thumb {
    width: 25px;
    height: 25px;
  }

  .lighting-switch-showcase[data-light-state="on"] .lighting-switch-thumb {
    transform: translateX(25px);
  }

  .product-card,
  .product-card-large,
  .product-card-accent {
    flex: 0 0 78vw;
    min-height: 520px;
    padding: 92px 22px 22px;
  }

  .product-index {
    top: 56px;
    left: 22px;
    padding: 6px 10px;
  }

  .product-card-arrow {
    top: 16px;
    width: 34px;
    height: 34px;
  }

  .product-card-arrow-prev {
    left: 14px;
  }

  .product-card-arrow-next {
    right: 14px;
  }

  .product-card-arrow span {
    font-size: 1rem;
  }

  .products-swipe-hint {
    font-size: 0.74rem;
    letter-spacing: 0.16em;
  }
}

@media (max-width: 600px) {
  .hero-bottom-cta {
    bottom: 22px;
  }

  .hero-floating-cta {
    min-width: 164px;
    min-height: 44px;
    font-size: 0.92rem;
  }
}

@keyframes swipeHintFloat {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.86;
  }

  50% {
    transform: translateX(6px);
    opacity: 1;
  }
}

@keyframes arrowFloatLeft {
  0%, 100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-3px);
  }
}

@keyframes arrowFloatRight {
  0%, 100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(3px);
  }
}

@keyframes lightingSweep {
  0% {
    opacity: 0;
    transform: translateX(-48%) skewX(-14deg);
  }

  20% {
    opacity: 0.8;
  }

  100% {
    opacity: 0;
    transform: translateX(56%) skewX(-14deg);
  }
}

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

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

@keyframes switchPromptNudge {
  0%, 100% {
    transform: translateX(0);
  }

  18% {
    transform: translateX(4px);
  }

  34% {
    transform: translateX(0);
  }
}

@keyframes desktopSwitchHintFloat {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }

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

@keyframes desktopSwitchPulse {
  0% {
    opacity: 0;
    transform: scale(0.92);
    box-shadow: 0 0 0 0 rgba(129, 247, 103, 0.16);
  }

  20% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(1.18);
    box-shadow: 0 0 0 18px rgba(129, 247, 103, 0);
  }
}

/* GALLERY */
.gallery-luxury {
  position: relative;
  padding: 84px 0 120px;
  background: linear-gradient(180deg, #040405 0%, #090a0d 24%, #0b0c10 62%, #060608 100%);
}

.gallery-shell {
  display: grid;
  gap: 34px;
}

.gallery-intro {
  max-width: 760px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 18px;
  grid-auto-rows: minmax(240px, 1fr);
}

.gallery-item {
  position: relative;
  min-height: 260px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.008)),
    #0e1015;
  box-shadow: 0 24px 60px rgba(0,0,0,0.24);
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3,4,6,0.12) 0%, rgba(3,4,6,0.46) 48%, rgba(3,4,6,0.88) 100%),
    var(--gallery-image) center / cover no-repeat;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.gallery-item:hover::before {
  transform: scale(1.04);
  filter: brightness(1.04);
}

.gallery-item-large {
  grid-row: span 2;
  min-height: 540px;
}

.gallery-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: grid;
  gap: 10px;
  padding: 24px;
}

.gallery-overlay span {
  color: rgba(202,176,138,0.9);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gallery-overlay strong {
  max-width: 16ch;
  font-size: clamp(1.2rem, 1.8vw, 1.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

@media (max-width: 980px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item-large {
    min-height: 300px;
    grid-row: auto;
  }
}


/* BENEFITS EDITORIAL */
.benefits-editorial {
  padding: 84px 0 120px;
  background: linear-gradient(
    to bottom,
    #020202 0%,
    #050506 24%,
    #090a0c 55%,
    #040405 100%
  );
}

.benefits-editorial-shell {
  display: grid;
  gap: 42px;
}

.benefits-editorial-intro {
  max-width: 760px;
}

.benefits-editorial-intro h2 {
  max-width: 12ch;
  font-size: clamp(2.1rem, 4vw, 4.1rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.benefits-accordion {
  display: grid;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.benefit-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.benefit-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  align-items: center;
  padding: 28px 0;
  background: transparent;
  border: 0;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.benefit-id {
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  font-weight: 700;
}

.benefit-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.benefit-title {
  font-size: clamp(1.3rem, 2vw, 2.1rem);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.benefit-icon {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
}

.benefit-icon::before,
.benefit-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(255,255,255,0.88);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.benefit-icon::before {
  width: 18px;
  height: 2px;
}

.benefit-icon::after {
  width: 2px;
  height: 18px;
}

.benefit-item.is-open .benefit-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0.2);
}

.benefit-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.benefit-content p {
  max-width: 62ch;
  padding: 0 0 28px 92px;
  color: var(--muted);
  line-height: 1.8;
}

.benefit-item.is-open .benefit-content {
  max-height: 220px;
}

@media (max-width: 700px) {
  .benefits-editorial {
    padding: 64px 0 96px;
  }

  .benefit-toggle {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 0;
  }

  .benefit-main {
    align-items: flex-start;
  }

  .benefit-content p {
    padding: 0 0 24px 0;
  }
}

/* CONTACT FORM LUXURY */
.contact-form-luxury {
  position: relative;
  padding: 84px 0 120px;
  background: linear-gradient(
    to bottom,
    #020202 0%,
    #060608 22%,
    #0a0b0d 54%,
    #040405 100%
  );
}

.contact-form-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.contact-form-copy {
  max-width: 560px;
  order: 2;
  margin-left: auto;
  text-align: right;
}

.contact-form-copy h2 {
  max-width: 10ch;
  margin-left: auto;
  font-size: clamp(2.2rem, 4.2vw, 4.4rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.contact-form-copy .section-kicker,
.contact-form-copy .section-copy {
  margin-left: auto;
  text-align: right;
}

.contact-notes {
  margin-top: 34px;
  display: grid;
  gap: 16px;
}

.contact-note {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-left: auto;
  width: min(100%, 34rem);
  text-align: right;
}

.contact-note:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-note span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.contact-note p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 40ch;
}

.contact-form-panel {
  position: relative;
  order: 1;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)),
    rgba(10, 12, 16, 0.9);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.32),
    0 0 0 1px rgba(255,255,255,0.03) inset;
  overflow: hidden;
  isolation: isolate;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.contact-form-panel::before {
  content: "";
  position: absolute;
  inset: auto -10% -20% auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(202,176,138,0.12), transparent 70%);
  pointer-events: none;
}

.contact-form-panel::after {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 50% 50%, rgba(185,233,198,0.22), rgba(202,176,138,0.12) 32%, transparent 64%);
  opacity: 0;
  transform: scale(0.82);
  pointer-events: none;
  z-index: 0;
}

.contact-form-panel.is-sending {
  border-color: rgba(202,176,138,0.3);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.32),
    0 0 0 1px rgba(202,176,138,0.08) inset,
    0 0 36px rgba(202,176,138,0.08);
}

.contact-form-panel.is-sending::after {
  animation: formPanelSendingPulse 1.35s ease-in-out infinite;
}

.contact-form-panel.is-success-flash {
  border-color: rgba(185,233,198,0.44);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.32),
    0 0 0 1px rgba(185,233,198,0.12) inset,
    0 0 42px rgba(185,233,198,0.14);
}

.contact-form-panel.is-success-flash::after {
  animation: formPanelSuccessBurst 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-form-panel.is-error-shake {
  border-color: rgba(255, 128, 128, 0.46);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.32),
    0 0 0 1px rgba(255, 128, 128, 0.1) inset,
    0 0 26px rgba(255, 128, 128, 0.1);
  animation: formPanelErrorShake 0.46s ease;
}

.luxury-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
}

.luxury-form.is-submitting {
  pointer-events: none;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 10px;
}

.field-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.field label {
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.74);
  font-weight: 600;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: #fff;
  border-radius: 18px;
  padding: 16px 18px;
  font: inherit;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255,255,255,0.38);
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(202,176,138,0.42);
  background: rgba(255,255,255,0.05);
  transform: translateY(-1px);
}

.field input.is-invalid,
.field textarea.is-invalid {
  border-color: rgba(255, 128, 128, 0.8);
  box-shadow: 0 0 0 1px rgba(255, 128, 128, 0.16) inset;
}

.interest-pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.pill-option {
  position: relative;
  cursor: pointer;
}

.pill-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pill-option span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(202,176,138,0.22);
  background:
    linear-gradient(180deg, rgba(202,176,138,0.09), rgba(202,176,138,0.03)),
    rgba(255,255,255,0.025);
  color: rgba(255,255,255,0.92);
  box-shadow:
    0 0 0 1px rgba(202,176,138,0.04) inset,
    0 14px 28px rgba(0,0,0,0.14);
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.pill-option input:checked + span {
  border-color: rgba(202,176,138,0.72);
  background:
    linear-gradient(180deg, rgba(202,176,138,0.22), rgba(202,176,138,0.1)),
    rgba(255,255,255,0.03);
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(202,176,138,0.22) inset,
    0 0 26px rgba(202,176,138,0.12);
}

.pill-option:hover span {
  transform: translateY(-1px);
  border-color: rgba(202,176,138,0.5);
  background:
    linear-gradient(180deg, rgba(202,176,138,0.16), rgba(202,176,138,0.06)),
    rgba(255,255,255,0.03);
}

.form-submit {
  width: 100%;
  min-height: 56px;
  font-size: 1rem;
  margin-top: 4px;
  position: relative;
  gap: 10px;
}

.form-submit.is-success {
  background: linear-gradient(180deg, #cbf2d4, #a8e5b7);
  color: #0f1217;
  box-shadow: 0 18px 36px rgba(185, 233, 198, 0.2);
}

.form-submit:disabled {
  opacity: 1;
}

.form-submit-label {
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.form-submit-loader {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(17, 17, 17, 0.24);
  border-top-color: #111111;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.72);
  transition: opacity 0.25s ease, transform 0.25s ease;
  animation: formSpinner 0.75s linear infinite;
}

.luxury-form.is-submitting .form-submit-label {
  opacity: 0.72;
}

.luxury-form.is-submitting .form-submit-loader {
  opacity: 1;
  transform: scale(1);
}

.form-feedback {
  min-height: 24px;
  margin-top: -6px;
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.82);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.form-feedback.is-success {
  color: #b9e9c6;
}

.form-feedback.is-error {
  color: #ffb3b3;
}

@media (max-width: 980px) {
  .contact-form-shell {
    grid-template-columns: 1fr;
  }

  .contact-form-copy {
    max-width: 100%;
    order: 1;
    margin-left: 0;
    text-align: left;
  }

  .contact-form-panel {
    order: 2;
    padding: 22px;
    border-radius: 24px;
  }

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

  .contact-form-copy h2,
  .contact-form-copy .section-kicker,
  .contact-form-copy .section-copy,
  .contact-note {
    margin-left: 0;
    text-align: left;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .contact-form-luxury {
    padding: 64px 0 96px;
  }

  .interest-pills {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pill-option span {
    width: 100%;
  }
}

@keyframes formSpinner {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes formPanelSendingPulse {
  0%, 100% {
    opacity: 0.18;
    transform: scale(0.82);
  }

  50% {
    opacity: 0.56;
    transform: scale(1);
  }
}

@keyframes formPanelSuccessBurst {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }

  30% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
    transform: scale(1.16);
  }
}

@keyframes formPanelErrorShake {
  0%, 100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-7px);
  }

  40% {
    transform: translateX(6px);
  }

  60% {
    transform: translateX(-4px);
  }

  80% {
    transform: translateX(3px);
  }
}

/* TESTIMONIALS LUXURY */
.testimonials-luxury {
  position: relative;
  padding: 84px 0 120px;
  background: linear-gradient(
    to bottom,
    #020202 0%,
    #060608 20%,
    #0a0b0d 48%,
    #07080a 78%,
    #040405 100%
  );
}

.testimonials-luxury::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 22%, rgba(202,176,138,0.08), transparent 28%);
  pointer-events: none;
}

.testimonials-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 34px;
}

.testimonials-intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.testimonials-intro .section-kicker {
  display: block;
  width: 100%;
  text-align: center;
}

.testimonials-intro h2 {
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.testimonials-intro .section-kicker,
.testimonials-intro .section-copy {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.stat-block {
  padding: 24px 24px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)),
    #0c0d11;
  box-shadow: 0 20px 50px rgba(0,0,0,0.22);
}

.stat-block strong {
  display: block;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.stat-block span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.google-reviews-shell {
  display: grid;
  gap: 22px;
}

.google-reviews-head {
  display: flex;
  justify-content: center;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid rgba(202,176,138,0.18);
  background:
    linear-gradient(180deg, rgba(202,176,138,0.08), rgba(202,176,138,0.02)),
    rgba(255,255,255,0.02);
}

.google-badge-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(202,176,138,0.16);
  color: var(--accent);
  font-weight: 800;
}

.google-badge strong,
.google-badge span {
  display: block;
}

.google-badge strong {
  font-size: 0.95rem;
}

.google-badge span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.testimonial-card {
  position: relative;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.012)),
    #0d0f13;
  box-shadow: 0 24px 60px rgba(0,0,0,0.24);
  isolation: isolate;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: auto -14% -32% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(202,176,138,0.12), transparent 72%);
  pointer-events: none;
}

.testimonial-featured {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)),
    linear-gradient(145deg, rgba(202,176,138,0.10), transparent 52%),
    #0c0e11;
}

.testimonial-rating {
  position: relative;
  z-index: 1;
  margin-bottom: 36px;
  color: var(--accent);
  letter-spacing: 0.18em;
  font-size: 0.95rem;
}

.testimonial-text {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(1.05rem, 1.28vw, 1.45rem);
  line-height: 1.35;
  letter-spacing: -0.03em;
  max-width: 18ch;
}

.testimonial-text.is-clamped {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  overflow: hidden;
}

.testimonial-card.is-expanded .testimonial-text.is-clamped {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.testimonial-toggle {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 44px;
  padding: 10px 14px;
  margin-top: 16px;
  border: 1px solid rgba(202,176,138,0.22);
  border-radius: 999px;
  background: rgba(202,176,138,0.08);
  color: rgba(202,176,138,0.96);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  pointer-events: auto;
  user-select: none;
  -webkit-user-select: none;
  transition: color 0.22s ease, opacity 0.22s ease, background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

@media (hover: hover) and (pointer: fine) {
  .testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(202,176,138,0.26);
    box-shadow:
      0 24px 60px rgba(0,0,0,0.24),
      0 0 0 1px rgba(202,176,138,0.08) inset;
  }

  .testimonial-toggle:hover {
    transform: translateY(-1px);
    background: rgba(202,176,138,0.14);
    border-color: rgba(202,176,138,0.38);
    color: #f0d6aa;
  }
}

.testimonial-meta {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 26px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: linear-gradient(180deg, rgba(202,176,138,0.18), rgba(202,176,138,0.08));
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 24px rgba(0,0,0,0.22);
}

.testimonial-avatar-image {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 12px 24px rgba(0,0,0,0.22);
}

.testimonial-meta div {
  display: grid;
  gap: 6px;
}

.testimonial-meta strong {
  font-size: 1rem;
  font-weight: 700;
}

.testimonial-meta span {
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .testimonials-stats {
    grid-template-columns: 1fr;
  }

  .google-reviews-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-text {
    max-width: none;
  }
}

/* FOOTER */
.site-footer {
  position: relative;
  padding: 84px 0 28px;
  background:
    radial-gradient(circle at 18% 0%, rgba(202,176,138,0.08), transparent 28%),
    linear-gradient(180deg, #050506 0%, #050507 36%, #020202 100%);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 48px;
  align-items: start;
}

.footer-brand img {
  height: 112px;
  width: auto;
  object-fit: contain;
}

.footer-brand p {
  max-width: 32ch;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.7;
}

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

.footer-column {
  display: grid;
  gap: 12px;
}

.footer-column span {
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(255,255,255,0.82);
  transition: color 0.25s ease;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255,255,255,0.52);
  font-size: 0.92rem;
}

.whatsapp-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.whatsapp-panel {
  width: min(360px, calc(100vw - 28px));
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)),
    #0f1217;
  box-shadow:
    0 30px 90px rgba(0,0,0,0.34),
    0 0 0 1px rgba(255,255,255,0.03) inset;
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

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

.whatsapp-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 18px 16px;
  background:
    radial-gradient(circle at top right, rgba(37, 211, 102, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(18, 143, 79, 0.96), rgba(15, 119, 67, 0.96));
}

.whatsapp-panel-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-panel-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(0,0,0,0.14);
  overflow: hidden;
}

.whatsapp-panel-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
  display: block;
}

.whatsapp-panel-brand strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
}

.whatsapp-verified-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.whatsapp-verified-badge svg {
  width: 18px;
  height: 18px;
}

.whatsapp-panel-brand span {
  display: block;
  margin-top: 3px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.82);
}

.whatsapp-panel-close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 12px;
  background: rgba(255,255,255,0.14);
  color: #ffffff;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}

.whatsapp-panel-body {
  padding: 20px 18px 12px;
  background:
    radial-gradient(circle at 20% 0%, rgba(37, 211, 102, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}

.whatsapp-message-bubble {
  max-width: 92%;
  padding: 14px 16px;
  border-radius: 18px 18px 18px 6px;
  background: #e9fddf;
  color: #111111;
  font-size: 0.95rem;
  line-height: 1.5;
  box-shadow: 0 12px 28px rgba(0,0,0,0.16);
}

.whatsapp-panel-footer {
  padding: 16px 18px 18px;
}

.whatsapp-chat-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, #2ce06c, #22c55e);
  color: #0f1217;
  font-size: 0.96rem;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(34, 197, 94, 0.18);
}

.whatsapp-chat-link:hover {
  transform: translateY(-1px);
}

.whatsapp-fab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  box-shadow:
    0 20px 44px rgba(16, 112, 57, 0.32),
    0 0 0 1px rgba(255,255,255,0.08) inset;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-fab:hover {
  transform: translateY(-2px);
  box-shadow:
    0 24px 52px rgba(16, 112, 57, 0.36),
    0 0 0 1px rgba(255,255,255,0.08) inset;
}

.whatsapp-fab-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  line-height: 0;
}

.whatsapp-fab-icon img {
  width: 36px;
  height: 36px;
  display: block;
  flex: 0 0 36px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .footer-shell,
  .footer-links {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 700px) {
  .testimonials-luxury {
    padding: 64px 0 96px;
  }

  .stat-block,
  .testimonial-card,
  .testimonial-featured {
    padding: 24px;
    border-radius: 22px;
    min-height: unset;
  }

  .testimonial-rating {
    margin-bottom: 24px;
  }

  .testimonial-meta {
    margin-top: 24px;
    padding-top: 20px;
  }

  .testimonial-text.is-clamped {
    -webkit-line-clamp: 6;
  }

  .testimonial-toggle {
    margin-top: 14px;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    min-height: 46px;
    padding: 10px 13px;
  }
}

@media (max-width: 600px) {
  .whatsapp-widget {
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-panel {
    width: min(340px, calc(100vw - 20px));
  }

  .whatsapp-fab {
    width: 58px;
    height: 58px;
  }
}
