:root {
  --bg: #f4f4f1;
  --bg-soft: #ecece8;
  --panel: rgba(255, 255, 255, 0.84);
  --panel-strong: rgba(255, 255, 255, 0.96);
  --line: rgba(21, 24, 28, 0.1);
  --text: #17181a;
  --muted: #6e7379;
  --muted-strong: #36393d;
  --accent: #d7dade;
  --accent-soft: #111214;
  --shadow: 0 24px 70px rgba(68, 71, 77, 0.1);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.is-ready .reveal {
  will-change: opacity, transform, filter;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.92), transparent 24%),
    radial-gradient(circle at top right, rgba(212, 216, 221, 0.48), transparent 22%),
    linear-gradient(180deg, #f7f7f4 0%, #f0f0ec 38%, #f4f4f1 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: -12%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.56), transparent 24%),
    radial-gradient(circle at 82% 14%, rgba(208, 213, 219, 0.34), transparent 20%),
    radial-gradient(circle at 50% 86%, rgba(255, 255, 255, 0.28), transparent 24%);
  animation: ambientDrift 18s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 160px 160px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.42), transparent 74%);
  opacity: 0.26;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

a,
button,
input,
[role="button"] {
  touch-action: manipulation;
}

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

.page-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

main > section,
.gallery-grid,
.floating-brands,
.brand-jumps {
  content-visibility: auto;
  contain-intrinsic-size: 1px 720px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(247, 247, 244, 0.82);
  border-bottom: 1px solid rgba(21, 24, 28, 0.06);
  transition:
    background 0.32s ease,
    border-color 0.32s ease,
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.topbar.scrolled {
  background: rgba(247, 247, 244, 0.96);
  border-color: rgba(21, 24, 28, 0.1);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 44px;
  padding: 10px 0;
}

.topbar-spacer {
  width: 100%;
  height: 1px;
}

.brand-page-head {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.catalog-return {
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(18, 21, 26, 0.08);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(240, 241, 244, 0.86));
  box-shadow:
    0 14px 36px rgba(16, 19, 24, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  color: #12151a;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transform: translate3d(var(--magnetic-x, 0px), var(--magnetic-y, 0px), 0);
  transition:
    transform 0.26s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease,
    color 0.32s ease,
    filter 0.32s ease;
}

.catalog-return::before {
  content: "";
  width: 12px;
  height: 12px;
  border-left: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 2px;
  opacity: 0.9;
}

.catalog-return::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(circle at 18% 50%, rgba(255, 255, 255, 0.92), transparent 48%);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.catalog-return:hover {
  border-color: rgba(18, 21, 26, 0.14);
  box-shadow:
    0 20px 44px rgba(16, 19, 24, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  color: #090b0d;
  filter: saturate(1.06);
}

.catalog-return:hover::after {
  opacity: 1;
}

.catalog-return-label {
  position: relative;
  z-index: 1;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.brand-logo-text {
  color: var(--accent-soft);
  font-size: clamp(24px, 3.2vw, 34px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.brand-logo-image {
  width: min(320px, 78vw);
  height: auto;
  object-fit: contain;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.brand-mark {
  font-size: 14px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.brand-subtitle {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topnav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.topnav a {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button,
.view-chip,
.brand-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(21, 24, 28, 0.1);
  color: var(--text);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.button:hover,
.view-chip:hover,
.brand-chip:hover,
.catalog-card:hover,
.editorial-card:hover,
.experience-card:hover,
.gallery-card:hover {
  transform: translateY(-3px);
}

.button-primary,
.view-chip.is-active {
  border: 1px solid #111214;
  color: #f7f7f4;
  font-weight: 600;
  background: #111214;
}

.button-secondary,
.button-ghost,
.view-chip,
.brand-chip {
  background: rgba(255, 255, 255, 0.58);
}

.section-kicker,
.catalog-tag {
  display: inline-flex;
  color: var(--accent-soft);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.72;
}

.hero,
.page-hero {
  padding: 34px 0 28px;
}

.hero-grid,
.brand-hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 24px;
  align-items: stretch;
}

.hero-copy,
.hero-scene,
.search-panel,
.editorial-card,
.catalog-card,
.experience-card,
.page-hero-wrap,
.brand-hero-main,
.brand-hero-card,
.gallery-toolbar,
.gallery-card,
.gallery-modal-dialog {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 248, 245, 0.84));
  box-shadow: var(--shadow);
}

.hero-copy,
.page-hero-wrap,
.search-panel,
.gallery-toolbar {
  border-radius: var(--radius-lg);
  padding: 28px;
}

.hero-copy h1,
.page-hero-wrap h1 {
  margin: 14px 0 12px;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 0.96;
  font-weight: 700;
  max-width: 13ch;
  letter-spacing: -0.03em;
}

.hero-copy p,
.page-hero-wrap p,
.section-head p,
.editorial-card p,
.catalog-body p,
.experience-card p,
.gallery-card em,
.gallery-modal-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.hero-actions,
.brand-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.metric-card {
  padding: 16px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
}

.metric-card-inline {
  min-width: 180px;
}

.metric-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-soft);
  font-size: 22px;
}

.metric-card span {
  color: var(--muted);
  font-size: 12px;
}

.hero-scene {
  border-radius: var(--radius-lg);
  padding: 14px;
  display: block;
  min-height: auto;
  overflow: hidden;
}

.hero-stage,
.brand-hero-main,
.brand-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
}

.hero-stage img,
.brand-hero-main img,
.brand-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stage-single {
  min-height: 360px;
}

.scene-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(21, 24, 28, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted-strong);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-stage::after,
.brand-hero-main::after,
.brand-hero-card::after,
.catalog-media::after,
.editorial-media::after,
.gallery-card-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 44%;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 7, 7, 0.92) 100%);
  pointer-events: none;
}

.section {
  padding: 24px 0 44px;
}

.section-tight {
  padding-top: 10px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 16px;
}

.section-head h2 {
  margin: 8px 0 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
  max-width: 16ch;
  letter-spacing: -0.025em;
}

.catalog-body {
  padding: 18px;
}

.catalog-body h3,
.experience-card h3 {
  margin: 10px 0 8px;
  font-size: 20px;
}

.catalog-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--accent-soft);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.search-panel {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 360px) auto;
  align-items: end;
  gap: 14px;
}

.search-panel h2 {
  margin: 8px 0 0;
  font-size: clamp(22px, 2.4vw, 28px);
}

.search-field {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.search-field input {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: 0;
}

.search-field input::placeholder {
  color: rgba(195, 183, 162, 0.7);
}

.brand-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.catalog-grid {
  display: grid;
  gap: 18px;
}

.catalog-grid-home {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.catalog-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
}

.catalog-card.is-hidden {
  display: none;
}

.catalog-media,
.gallery-card-media {
  position: relative;
  overflow: hidden;
}

.catalog-media {
  aspect-ratio: 1 / 1.12;
  background: linear-gradient(180deg, #171717, #101010);
}

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

.catalog-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.catalog-count {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-page-hero {
  padding-bottom: 26px;
}

.brand-hero-media {
  display: grid;
  grid-template-columns: 0.92fr 0.78fr;
  gap: 14px;
}

.brand-hero-main {
  min-height: 320px;
}

.brand-hero-stack {
  display: grid;
  gap: 14px;
}

.brand-hero-card {
  min-height: 150px;
}

.gallery-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 18px;
}

.gallery-toolbar h2 {
  margin: 8px 0 0;
  font-size: clamp(24px, 3vw, 34px);
  max-width: 18ch;
}

.view-switch {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

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

.gallery-grid-brand[data-view="compact"] {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.gallery-card {
  display: block;
  text-align: left;
  overflow: hidden;
  border-radius: 20px;
  padding: 0;
  position: relative;
  will-change: transform;
  transition:
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.34s ease,
    border-color 0.34s ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
  transform: translateX(-160%);
  opacity: 0;
  pointer-events: none;
}

.gallery-card-media {
  display: block;
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, #171717, #101010);
}

.gallery-card-media.js-open-modal {
  width: 100%;
  padding: 0;
  text-align: left;
  cursor: zoom-in;
}

.gallery-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.82s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
  animation: galleryImageSettle 1.25s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.gallery-card:hover::after {
  opacity: 1;
  animation: cardSweep 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 28px 64px rgba(63, 66, 72, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.34);
}

.gallery-card:hover .gallery-card-media img {
  transform: scale(1.045);
  filter: saturate(1.02) contrast(1.02);
}

.gallery-card-copy {
  display: flex;
  justify-content: center;
  padding: 14px 16px 16px;
}

.brand-jumps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(21, 24, 28, 0.08);
}

.brand-jumps::-webkit-scrollbar {
  height: 0;
}

.brand-jump {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(21, 24, 28, 0.1);
  background: rgba(255, 255, 255, 0.74);
  color: var(--accent-soft);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.brand-jump:hover {
  transform: translateY(-2px);
  background: #111214;
  color: #f7f7f4;
  border-color: #111214;
}

.gallery-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  min-width: 160px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(18, 129, 75, 0.12);
  background: linear-gradient(180deg, #25d366, #18b857);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.24s ease,
    filter 0.24s ease,
    letter-spacing 0.24s ease;
}

.gallery-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(37, 211, 102, 0.22);
  filter: saturate(1.05);
  letter-spacing: 0.14em;
}

.empty-panel {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(10px);
  transition: opacity 0.28s ease;
}

.gallery-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 26%),
    rgba(4, 4, 4, 0.84);
}

.gallery-modal-dialog {
  position: relative;
  z-index: 2;
  width: min(1240px, 100%);
  border-radius: 30px;
  overflow: hidden;
  will-change: transform, opacity;
  transform: translateY(22px) scale(0.985);
  opacity: 0;
  transition:
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s ease;
}

.gallery-modal.is-open .gallery-modal-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.gallery-modal-stage {
  background: #0b0b0b;
}

.gallery-modal-stage img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  margin: 0 auto;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.22s ease,
    filter 0.22s ease;
}

.gallery-modal.is-switching .gallery-modal-stage img {
  opacity: 0.68;
  transform: scale(0.985);
  filter: saturate(0.94);
}

.gallery-modal-copy {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  padding: 24px 26px 28px;
}

.gallery-modal-copy p:empty,
.gallery-modal-copy h2:empty {
  display: none;
}

.gallery-modal-copy h2 {
  margin: 8px 0 10px;
  font-size: clamp(26px, 4vw, 40px);
}

.gallery-modal-close,
.gallery-modal-nav {
  position: absolute;
  z-index: 3;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(8, 8, 10, 0.58);
  color: #f7f7f4;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.gallery-modal-close:hover,
.gallery-modal-nav:hover {
  transform: translateY(-2px);
  background: rgba(20, 20, 24, 0.72);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}

.gallery-modal-close {
  top: 18px;
  right: 18px;
}

.gallery-modal-prev,
.gallery-modal-next {
  top: 50%;
  transform: translateY(-50%);
}

.gallery-modal-prev {
  left: 18px;
}

.gallery-modal-next {
  right: 18px;
}

.footer {
  padding: 24px 0 40px;
  color: var(--muted);
}

.footer-box {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid rgba(21, 24, 28, 0.08);
}

.footer-minimal .footer-box:empty {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition:
    opacity 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.82s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
  filter: blur(8px);
}

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

.landing-hero {
  padding: 18px 0 20px;
}

.landing-stack {
  display: grid;
  gap: 18px;
}

.banner-panel {
  --spotlight-x: 50%;
  --spotlight-y: 50%;
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 300px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background: var(--panel-strong);
  box-shadow: var(--shadow);
  transform: translateZ(0);
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.banner-panel-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.24), transparent 64%);
  opacity: 0.42;
}

.banner-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at var(--spotlight-x) var(--spotlight-y), rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(15, 16, 18, 0.1)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  pointer-events: none;
  animation: panelShimmer 9s ease-in-out infinite;
}

.banner-panel::before {
  content: "";
  position: absolute;
  inset: -10% auto -10% -24%;
  width: 34%;
  z-index: 2;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
  transform: skewX(-18deg) translateX(-180%);
  opacity: 0.72;
  pointer-events: none;
  animation: bannerSweep 8.8s cubic-bezier(0.19, 1, 0.22, 1) infinite;
}

.banner-signal {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 14px 30px rgba(10, 12, 15, 0.16);
}

.banner-signal span {
  display: block;
  width: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  animation: signalPulse 1.8s ease-in-out infinite;
}

.banner-signal span:nth-child(1) {
  height: 10px;
  animation-delay: 0s;
}

.banner-signal span:nth-child(2) {
  height: 16px;
  animation-delay: 0.16s;
}

.banner-signal span:nth-child(3) {
  height: 12px;
  animation-delay: 0.32s;
}

.banner-prompt {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 3;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 16px 32px rgba(10, 12, 15, 0.18);
}

.banner-prompt::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 1.6px solid rgba(255, 255, 255, 0.92);
  border-right: 1.6px solid rgba(255, 255, 255, 0.92);
  transform: rotate(135deg) translateY(-1px);
}

.banner-prompt-ring {
  position: absolute;
  inset: 8px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.16);
  animation: promptRing 2.8s ease-in-out infinite;
}

.banner-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  animation: bannerFloat 13s ease-in-out infinite alternate;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
}

.banner-panel:hover {
  border-color: rgba(21, 24, 28, 0.16);
  box-shadow:
    0 30px 80px rgba(68, 71, 77, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.38);
}

.banner-panel:hover img {
  transform: scale(1.065);
  filter: saturate(1.03) contrast(1.02);
}

.maisons-section {
  padding-top: 18px;
}

.section-head-compact {
  margin-bottom: 12px;
  justify-content: center;
  text-align: center;
}

.floating-brands {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 48px 30px 34px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(252, 252, 250, 0.98), rgba(238, 239, 235, 0.9));
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  transition:
    box-shadow 0.38s ease,
    border-color 0.38s ease,
    transform 0.38s ease;
}

.floating-brands::before,
.floating-brands::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(217, 220, 224, 0.5), transparent 70%);
}

.floating-brands::before {
  width: 260px;
  height: 260px;
  top: -120px;
  left: -60px;
}

.floating-brands::after {
  width: 220px;
  height: 220px;
  right: -80px;
  bottom: -100px;
}

.floating-brands[data-floating-field] {
  --pointer-x: 50%;
  --pointer-y: 50%;
}

.floating-brands[data-floating-field]::before {
  background: radial-gradient(circle, rgba(217, 220, 224, 0.4), transparent 70%);
}

.floating-brands[data-floating-field]::after {
  background: radial-gradient(circle, rgba(198, 204, 211, 0.34), transparent 72%);
}

.floating-brands[data-floating-field] > * {
  transform-style: preserve-3d;
}

.floating-brands[data-floating-field]::after,
.floating-brands[data-floating-field]::before {
  z-index: 0;
}

.floating-brands[data-floating-field] {
  background-image:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 24%),
    linear-gradient(rgba(126, 132, 141, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 132, 141, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(252, 252, 250, 0.98), rgba(238, 239, 235, 0.9));
  background-size: auto, 52px 52px, 52px 52px, auto;
  background-position: center, center, center, center;
  animation: fieldShift 16s ease-in-out infinite alternate;
}

.floating-brands::selection {
  background: transparent;
}

.floating-brands:hover {
  border-color: rgba(21, 24, 28, 0.12);
  box-shadow:
    0 28px 74px rgba(68, 71, 77, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.tech-orbit {
  position: absolute;
  inset: auto;
  z-index: 0;
  border-radius: 999px;
  border: 1px solid rgba(103, 111, 120, 0.14);
  pointer-events: none;
  transform-origin: center;
}

.orbit-a {
  width: 240px;
  height: 240px;
  top: 16px;
  left: 30px;
  animation: orbitSpin 22s linear infinite;
}

.orbit-b {
  width: 320px;
  height: 320px;
  right: 56px;
  top: 40px;
  animation: orbitSpinReverse 26s linear infinite;
}

.orbit-c {
  width: 200px;
  height: 200px;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  animation: orbitPulse 9s ease-in-out infinite;
}

.floating-brand {
  --drift-x: 0px;
  --drift-y: 0px;
  --hover-lift: 0px;
  --hover-scale: 1;
  --idle-offset: 0px;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(74, 81, 89, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(241, 243, 245, 0.62));
  color: var(--accent-soft);
  box-shadow:
    0 16px 34px rgba(70, 73, 79, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  transform: translate3d(var(--drift-x), calc(var(--drift-y) + var(--hover-lift) + var(--idle-offset)), 0) scale(var(--hover-scale));
  transition:
    transform 0.26s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease,
    color 0.28s ease,
    filter 0.28s ease;
  backdrop-filter: blur(12px);
  animation: brandNodeFloat 6.5s ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
}

.floating-brand::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
  transform: translateX(-135%);
  opacity: 0;
  pointer-events: none;
}

.floating-brand::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 5px;
  height: 5px;
  margin-top: -2.5px;
  border-radius: 999px;
  background: rgba(17, 18, 20, 0.2);
  box-shadow: 0 0 0 4px rgba(17, 18, 20, 0.04);
}

.floating-brand span {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-left: 10px;
}

.floating-brand:hover {
  --hover-lift: -8px;
  --hover-scale: 1.03;
  background: #111214;
  color: #f7f7f4;
  border-color: #111214;
  box-shadow:
    0 24px 40px rgba(40, 43, 48, 0.16),
    0 0 0 1px rgba(17, 18, 20, 0.15),
    0 0 34px rgba(110, 118, 128, 0.18);
}

.floating-brand:hover::before {
  opacity: 1;
  animation: chipSweep 1.05s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.floating-brand:hover::after,
.floating-brand.is-focus::after {
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
}

.floating-brand:focus-visible,
.catalog-return:focus-visible,
.gallery-whatsapp:focus-visible,
.whatsapp-float:focus-visible,
.gallery-modal-close:focus-visible,
.gallery-modal-nav:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(17, 18, 20, 0.12),
    0 0 0 6px rgba(255, 255, 255, 0.92);
}

.floating-brand.is-near {
  box-shadow:
    0 18px 36px rgba(70, 73, 79, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  filter: saturate(1.03);
}

.floating-brand.is-focus {
  --hover-lift: -4px;
  --hover-scale: 1.02;
  border-color: rgba(17, 18, 20, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 244, 247, 0.84));
  box-shadow:
    0 22px 42px rgba(45, 48, 54, 0.13),
    0 0 0 1px rgba(255, 255, 255, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.size-lg {
  min-height: 76px;
  padding: 0 28px;
}

.size-lg span {
  font-size: 15px;
}

.size-md {
  min-height: 70px;
  padding: 0 24px;
}

.size-md span {
  font-size: 14px;
}

.size-sm {
  min-height: 60px;
  padding: 0 18px;
}

.size-xs {
  min-height: 54px;
  padding: 0 16px;
}

.footer-minimal {
  padding-top: 0;
}

.footer-minimal .footer-box {
  justify-content: center;
  padding-top: 22px;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 32;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  background: transparent;
  transform: translate3d(var(--magnetic-x, 0px), var(--magnetic-y, 0px), 0) scale(var(--whatsapp-scale, 1));
  transition:
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.24s ease,
    opacity 0.24s ease;
  animation: whatsappDock 3.6s ease-in-out infinite;
  filter: drop-shadow(0 12px 28px rgba(10, 128, 59, 0.18));
}

.whatsapp-float:hover {
  --whatsapp-scale: 1.18;
  filter: saturate(1.12) brightness(1.02);
  animation-play-state: paused;
}

.whatsapp-float img {
  position: relative;
  z-index: 1;
  width: 74px;
  height: 74px;
  object-fit: contain;
  transform-origin: center;
  animation: whatsappPulse 2.8s ease-in-out infinite;
}

.brand-gallery-only {
  padding-top: 22px;
}

@keyframes ambientDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(1.5%, -1.2%, 0) scale(1.04);
  }
}

@keyframes panelShimmer {
  0%,
  100% {
    opacity: 0.84;
  }
  50% {
    opacity: 1;
  }
}

@keyframes fieldShift {
  0% {
    background-position: center, center, center, center;
  }
  100% {
    background-position: center, 16px 10px, -18px -14px, center;
  }
}

@keyframes signalPulse {
  0%,
  100% {
    opacity: 0.36;
    transform: scaleY(0.84);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes promptRing {
  0%,
  100% {
    opacity: 0.44;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.06);
  }
}

@keyframes bannerSweep {
  0% {
    transform: skewX(-18deg) translateX(-180%);
  }
  42%,
  100% {
    transform: skewX(-18deg) translateX(430%);
  }
}

@keyframes bannerFloat {
  0% {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.08) translate3d(0, -10px, 0);
  }
}

@keyframes orbitSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbitSpinReverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@keyframes orbitPulse {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.82;
  }
  50% {
    transform: translateX(-50%) scale(1.05);
    opacity: 1;
  }
}

@keyframes brandNodeFloat {
  0%,
  100% {
    --idle-offset: 0px;
  }
  50% {
    --idle-offset: -6px;
  }
}

@keyframes cardSweep {
  0% {
    transform: translateX(-160%);
  }
  100% {
    transform: translateX(160%);
  }
}

@keyframes galleryImageSettle {
  from {
    opacity: 0;
    transform: scale(1.04);
    filter: saturate(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: saturate(1);
  }
}

@keyframes chipSweep {
  0% {
    transform: translateX(-135%);
  }
  100% {
    transform: translateX(135%);
  }
}

@keyframes whatsappDock {
  0%,
  100% {
    transform: translate3d(var(--magnetic-x, 0px), var(--magnetic-y, 0px), 0) scale(var(--whatsapp-scale, 1));
  }
  50% {
    transform: translate3d(var(--magnetic-x, 0px), calc(var(--magnetic-y, 0px) - 5px), 0) scale(calc(var(--whatsapp-scale, 1) + 0.03));
  }
}

@keyframes whatsappPulse {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  18% {
    transform: scale(1.06) rotate(-4deg);
  }
  36% {
    transform: scale(1.02) rotate(3deg);
  }
  52% {
    transform: scale(1.08) rotate(-2deg);
  }
  68% {
    transform: scale(1) rotate(0deg);
  }
}

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

@media (max-width: 1080px) {
  .hero-grid,
  .brand-hero-grid,
  .search-panel,
  .brand-hero-media,
  .gallery-toolbar,
  .gallery-modal-copy {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-metrics,
  .gallery-grid-brand[data-view="compact"],
  .gallery-grid-brand {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy h1,
  .page-hero-wrap h1 {
    max-width: 100%;
  }
}

@media (max-width: 780px) {
  .page-shell {
    width: min(100% - 20px, 1240px);
  }

  .topbar-inner,
  .topnav {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-copy,
  .page-hero-wrap,
  .search-panel,
  .gallery-toolbar {
    padding: 24px;
  }

  .landing-hero {
    padding-top: 16px;
  }

  .catalog-return {
    top: 12px;
    left: 12px;
    min-height: 42px;
    padding: 0 15px;
    letter-spacing: 0.1em;
  }

  .catalog-return-label {
    font-size: 10px;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    width: 62px;
    height: 62px;
  }

  .whatsapp-float img {
    width: 62px;
    height: 62px;
  }

  .banner-panel {
    min-height: 190px;
    border-radius: 24px;
  }

  .banner-signal {
    top: 12px;
    left: 12px;
    padding: 8px 10px;
  }

  .banner-prompt {
    right: 12px;
    bottom: 12px;
    width: 50px;
    height: 50px;
  }

  .floating-brands {
    gap: 14px;
    padding: 26px 12px 18px;
    border-radius: 24px;
  }

  .section-head-compact {
    margin-bottom: 10px;
  }

  .tech-orbit {
    display: none;
  }

  .floating-brand,
  .size-lg,
  .size-md,
  .size-sm,
  .size-xs {
    min-height: 54px;
    padding: 0 16px;
  }

  .floating-brand span,
  .size-lg span,
  .size-md span {
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  .gallery-card-copy {
    padding: 12px 12px 14px;
  }

  .gallery-whatsapp {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .brand-jumps {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 18px 2px 0;
    margin-top: 24px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .brand-jump {
    flex: 0 0 auto;
    scroll-snap-align: start;
    min-height: 40px;
    padding: 0 14px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .hero-metrics,
  .catalog-grid-home,
  .gallery-grid-brand,
  .gallery-grid-brand[data-view="compact"] {
    grid-template-columns: 1fr;
  }

  .brand-hero-main,
  .brand-hero-card {
    min-height: auto;
  }

  .gallery-modal {
    padding: 10px;
  }

  .gallery-modal-dialog {
    border-radius: 22px;
  }

  .gallery-modal-close,
  .gallery-modal-prev,
  .gallery-modal-next {
    position: static;
    transform: none;
    margin: 10px 0 0 10px;
    min-height: 42px;
    padding: 0 14px;
    font-size: 12px;
  }

  .gallery-modal-copy {
    gap: 12px;
    padding: 18px 18px 20px;
  }

  .gallery-modal-copy h2 {
    font-size: clamp(20px, 6vw, 28px);
  }
}
