/*
  NoirLuma Studio — premium cinematic photography website
  HTML5 + CSS3 + Vanilla JS only. No frameworks, no jQuery.
*/

:root {
  --bg: #0b0b0b;
  --surface: #141414;
  --surface-soft: rgba(255, 255, 255, 0.055);
  --primary: #ffffff;
  --muted: #999999;
  --muted-2: #c9c2ae;
  --gold: #d4af37;
  --gold-soft: rgba(212, 175, 55, 0.22);
  --gold-dim: rgba(212, 175, 55, 0.08);
  --line: rgba(255, 255, 255, 0.13);
  --glass: rgba(18, 18, 18, 0.58);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: min(1160px, calc(100% - 40px));
  --font-body: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --font-modern: "Montserrat", system-ui, sans-serif;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-bounce: cubic-bezier(0.16, 1.2, 0.38, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--primary);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 80% 10%, rgba(212, 175, 55, 0.08), transparent 28%),
    radial-gradient(circle at 12% 35%, rgba(255, 255, 255, 0.06), transparent 24%),
    linear-gradient(180deg, #060606 0%, #0b0b0b 45%, #050505 100%);
  cursor: none;
}

body.no-scroll {
  overflow: hidden;
}

::selection {
  color: #080808;
  background: var(--gold);
}

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

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

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

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  padding: 12px 16px;
  border-radius: 999px;
  color: #080808;
  background: var(--gold);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

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

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

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(212, 175, 55, 0.15), transparent 34%),
    #050505;
  transition: opacity 0.75s var(--ease), visibility 0.75s var(--ease);
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__orb {
  position: absolute;
  width: clamp(180px, 24vw, 330px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.23);
  box-shadow: inset 0 0 70px rgba(212, 175, 55, 0.18), 0 0 90px rgba(212, 175, 55, 0.1);
  animation: preloaderOrb 2.7s var(--ease) infinite alternate;
}

.preloader__eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.38em;
  font-size: 0.72rem;
  font-weight: 700;
}

.preloader__title {
  position: relative;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 7vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.preloader__bar {
  position: absolute;
  bottom: 13vh;
  left: 50%;
  width: min(340px, 68vw);
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  transform: translateX(-50%);
}

.preloader__bar span {
  display: block;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: loadingLine 1.2s var(--ease) infinite;
}

@keyframes preloaderOrb {
  from { transform: scale(0.9) rotate(0deg); filter: blur(0); }
  to { transform: scale(1.14) rotate(12deg); filter: blur(1px); }
}

@keyframes loadingLine {
  from { transform: translateX(-120%); }
  to { transform: translateX(240%); }
}

/* Cursor and ambient layers */
.cursor,
.cursor-dot {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  mix-blend-mode: difference;
}

.cursor {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  transition: width 0.35s var(--ease), height 0.35s var(--ease), border 0.35s var(--ease), opacity 0.35s var(--ease);
}

.cursor.is-hovering {
  width: 82px;
  height: 82px;
  border-color: rgba(212, 175, 55, 0.78);
}

.cursor-dot {
  width: 7px;
  height: 7px;
  background: #fff;
}

.particle-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.44;
  pointer-events: none;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9997;
  width: 100%;
  height: 3px;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(90deg, transparent, var(--gold), #fff6c7);
}

/* Header */
.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  padding: 12px 14px 12px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  transform: translateX(-50%);
  transition: background 0.35s var(--ease), border 0.35s var(--ease), box-shadow 0.35s var(--ease), top 0.35s var(--ease);
}

.site-header.is-scrolled {
  top: 12px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(8, 8, 8, 0.62);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.35);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: fit-content;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 800;
  box-shadow: inset 0 0 18px rgba(212, 175, 55, 0.1), 0 0 24px rgba(212, 175, 55, 0.11);
}

.brand__text {
  display: grid;
  line-height: 1;
}

.brand__text strong {
  font-family: var(--font-modern);
  font-size: 0.92rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.brand__text em {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-style: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 34px);
  padding-inline: 16px;
}

.nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: transform 0.35s var(--ease);
}

.nav a:hover,
.nav a:focus-visible {
  color: #fff;
}

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

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: #fff;
  transition: transform 0.3s var(--ease);
}

.menu-button.is-open span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-button.is-open span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

/* Buttons */
.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  overflow: hidden;
  padding: 0 24px;
  border-radius: 999px;
  font-family: var(--font-modern);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border 0.35s var(--ease);
}

.btn::before {
  content: "";
  position: absolute;
  inset: -70% -30%;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.35), transparent 65%);
  transform: translateX(-55%) rotate(10deg);
  transition: transform 0.75s var(--ease), opacity 0.45s var(--ease);
}

.btn:hover::before,
.btn:focus-visible::before {
  opacity: 1;
  transform: translateX(55%) rotate(10deg);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
}

.btn--gold {
  color: #0b0b0b;
  background: linear-gradient(135deg, #fff7bf 0%, var(--gold) 42%, #9c721b 100%);
  box-shadow: 0 18px 45px rgba(212, 175, 55, 0.22);
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(16px);
}

.ripple {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 0.7s ease-out;
}

@keyframes ripple {
  to { opacity: 0; transform: translate(-50%, -50%) scale(16); }
}

/* Shared sections */
.section-cinema {
  position: relative;
  z-index: 1;
}

.chapter-label {
  margin: 0 0 22px;
  color: var(--gold);
  font-family: var(--font-modern);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 6.2vw, 7.4rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.058em;
}

.section-copy {
  max-width: 690px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.9;
}

.glass-panel {
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

/* Split text */
.split-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.split-word span {
  display: inline-block;
  transform: translateY(112%) rotate(3deg);
  filter: blur(10px);
  transition: transform 1.1s var(--ease), filter 1.1s var(--ease);
  transition-delay: calc(var(--i) * 45ms);
}

.is-visible .split-word span,
.hero .split-word span {
  transform: translateY(0) rotate(0deg);
  filter: blur(0);
}

/* Hero */
.hero {
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 145px 0 92px;
}

.hero__slider,
.hero__frame,
.hero__vignette {
  position: absolute;
  inset: 0;
}

.hero__frame {
  opacity: 0;
  transform: scale(1.08);
  background-image: var(--image);
  background-size: cover;
  background-position: center;
  transition: opacity 1.65s var(--ease), transform 6.5s var(--ease);
}

.hero__frame.is-active {
  opacity: 0.68;
  transform: scale(1);
}

.hero__vignette {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.28) 45%, rgba(0, 0, 0, 0.62)),
    radial-gradient(circle at 67% 37%, rgba(212, 175, 55, 0.16), transparent 31%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), #0b0b0b 96%);
}

.hero__content {
  position: relative;
  z-index: 2;
  transform-style: preserve-3d;
}

.hero__title {
  max-width: 1050px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.35rem, 9.5vw, 10.6rem);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

.hero__copy {
  max-width: 710px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.9;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__lens {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  opacity: 0.6;
  filter: blur(0.2px);
  pointer-events: none;
}

.hero__lens--one {
  right: 12vw;
  top: 16vh;
  width: clamp(120px, 16vw, 270px);
  aspect-ratio: 1;
  border: 1px solid rgba(212, 175, 55, 0.32);
  background: radial-gradient(circle at 33% 32%, rgba(255, 255, 255, 0.34), transparent 7%), radial-gradient(circle at center, rgba(212, 175, 55, 0.12), transparent 60%);
  animation: floatOne 9s ease-in-out infinite;
}

.hero__lens--two {
  left: 6vw;
  top: 28vh;
  width: clamp(80px, 9vw, 150px);
  aspect-ratio: 1.2;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px);
  animation: floatTwo 11s ease-in-out infinite;
}

.hero__artifact {
  position: absolute;
  right: -70px;
  bottom: 17vh;
  z-index: 1;
  width: 230px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px 0 0 999px;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.18), transparent);
  filter: blur(0.2px);
  animation: rotateArtifact 16s linear infinite;
}

@keyframes floatOne {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-18px, 22px, 0) scale(1.05); }
}

@keyframes floatTwo {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-10deg); }
  50% { transform: translate3d(24px, -14px, 0) rotate(8deg); }
}

@keyframes rotateArtifact {
  to { transform: rotate(360deg); }
}

.hero__meta {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 3;
  display: flex;
  gap: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-modern);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.sound-chip {
  position: absolute;
  right: 28px;
  top: 108px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
  font-size: 0.75rem;
}

.sound-chip span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 15px var(--gold);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 25px;
  z-index: 4;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.64);
  font-family: var(--font-modern);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  width: 1px;
  height: 52px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  left: 0;
  top: -30%;
  width: 100%;
  height: 28px;
  background: var(--gold);
  animation: scrollCue 1.6s ease-in-out infinite;
}

@keyframes scrollCue {
  to { top: 110%; }
}

/* Vision */
.vision {
  padding: 150px 0 110px;
}

.section-orbit {
  position: absolute;
  right: -14vw;
  top: 6vh;
  width: 48vw;
  max-width: 680px;
  aspect-ratio: 1;
  border: 1px solid rgba(212, 175, 55, 0.09);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(212, 175, 55, 0.1), transparent 54%);
  animation: slowOrbit 22s linear infinite;
}

.section-orbit::before,
.section-orbit::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: inherit;
}

.section-orbit::after {
  inset: 32%;
}

@keyframes slowOrbit {
  to { transform: rotate(360deg); }
}

.vision__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.82fr;
  gap: 32px;
  align-items: end;
}

.vision__statement {
  align-self: center;
}

.vision__portrait {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: var(--surface);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}

.vision__portrait img {
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.86);
  transition: transform 1.2s var(--ease), filter 0.7s var(--ease);
}

.vision__portrait:hover img {
  transform: scale(1.055);
  filter: contrast(1.1) saturate(1);
}

.vision__portrait-light {
  position: absolute;
  inset: -30% auto auto -40%;
  width: 65%;
  height: 150%;
  opacity: 0.7;
  transform: rotate(20deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  animation: lightSweep 7s var(--ease) infinite;
}

@keyframes lightSweep {
  0%, 35% { transform: translateX(-80%) rotate(20deg); }
  70%, 100% { transform: translateX(250%) rotate(20deg); }
}

.vision__stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.vision__stats article {
  padding: clamp(22px, 3vw, 36px);
  background: rgba(255, 255, 255, 0.035);
}

.vision__stats strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 5rem);
  line-height: 1;
}

.vision__stats span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Marquee */
.marquee-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 28px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.marquee {
  display: flex;
  width: max-content;
  gap: 26px;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
}

.marquee span {
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-modern);
  font-size: clamp(1.1rem, 2.2vw, 2.1rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.marquee span:nth-child(odd) {
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 175, 55, 0.46);
}

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

/* Exhibition */
.exhibition {
  padding: 130px 0 150px;
  overflow: hidden;
}

.exhibition__intro {
  margin-bottom: 34px;
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 42px;
}

.filter-pill {
  padding: 12px 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(14px);
  font-size: 0.78rem;
  font-weight: 700;
  transition: color 0.25s ease, background 0.25s ease, border 0.25s ease, transform 0.25s ease;
}

.filter-pill:hover,
.filter-pill.is-active {
  color: #0b0b0b;
  border-color: rgba(212, 175, 55, 0.55);
  background: var(--gold);
  transform: translateY(-2px);
}

.exhibition-rail {
  --rail: min(1260px, calc(100% - 40px));
  width: var(--rail);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 92px;
  grid-auto-flow: dense;
  gap: 18px;
  perspective: 1300px;
}

.art-card {
  position: relative;
  grid-column: span 4;
  grid-row: span 4;
  overflow: hidden;
  border-radius: clamp(24px, 3vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--surface);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
  cursor: pointer;
  transform-style: preserve-3d;
  transition: opacity 0.45s ease, transform 0.65s var(--ease), filter 0.45s ease;
}

.art-card.is-hidden {
  opacity: 0;
  transform: scale(0.88) translateY(20px);
  pointer-events: none;
  filter: blur(8px);
}

.art-card--tall {
  grid-row: span 6;
}

.art-card--wide {
  grid-column: span 8;
}

.art-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.1) contrast(1.08) saturate(0.9);
  transform: scale(1.04);
  transition: transform 1.4s var(--ease), filter 0.9s var(--ease);
}

.art-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(212, 175, 55, 0.2), transparent 28%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
  transition: opacity 0.5s ease;
}

.art-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.art-card:hover,
.art-card:focus-within {
  transform: translateY(-12px) rotateX(2deg) rotateY(-2deg);
}

.art-card:hover img {
  transform: scale(1.14) translateY(-1%);
  filter: grayscale(0) contrast(1.12) saturate(1.04);
}

.art-card:hover::before,
.art-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.art-card__veil {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 3;
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.55s var(--ease), opacity 0.55s var(--ease);
}

.art-card:hover .art-card__veil {
  transform: translateY(0);
  opacity: 1;
}

.art-card__veil span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold);
  font-family: var(--font-modern);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.art-card__veil h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 3rem);
  line-height: 0.95;
}

.art-card__veil p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

/* Craft */
.craft {
  padding: 130px 0;
}

.craft__header {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 42px;
  align-items: end;
  margin-bottom: 54px;
}

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

.service-node {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at 80% 0%, rgba(212, 175, 55, 0.12), transparent 38%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  transform-style: preserve-3d;
  transition: transform 0.55s var(--ease), border 0.35s ease, background 0.35s ease;
}

.service-node::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  opacity: 0;
  background: linear-gradient(140deg, transparent, var(--gold), transparent);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  transition: opacity 0.35s ease;
}

.service-node:hover {
  border-color: rgba(212, 175, 55, 0.26);
  transform: translateY(-10px);
}

.service-node:hover::before {
  opacity: 1;
}

.service-node span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  font-weight: 800;
}

.service-node h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1;
}

.service-node p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.63);
  line-height: 1.75;
}

/* Why */
.why {
  padding: 125px 0;
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.035), transparent),
    rgba(255, 255, 255, 0.02);
}

.why__grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 70px;
}

.why__list {
  display: grid;
  gap: 12px;
}

.why-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.why-item span {
  width: 12px;
  height: 12px;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.44);
}

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

.why-item p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
}

/* Testimonials */
.voices {
  padding: 130px 0;
}

.voices__stage {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 46px;
  padding: clamp(24px, 5vw, 64px);
}

.voices__stage::before {
  content: "";
  position: absolute;
  inset: -20%;
  opacity: 0.38;
  background: conic-gradient(from 110deg, transparent, rgba(212, 175, 55, 0.14), transparent, rgba(255, 255, 255, 0.08), transparent);
  animation: slowOrbit 17s linear infinite;
}

.testimonial {
  position: absolute;
  inset: clamp(24px, 5vw, 64px);
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 34px;
  align-items: center;
  opacity: 0;
  transform: translateY(30px) scale(0.96) rotateX(8deg);
  filter: blur(14px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.testimonial.is-active {
  opacity: 1;
  transform: translateY(0) scale(1) rotateX(0);
  filter: blur(0);
}

.testimonial img {
  width: 190px;
  height: 250px;
  object-fit: cover;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.36);
}

.stars {
  color: var(--gold);
  letter-spacing: 0.22em;
}

.testimonial p {
  max-width: 780px;
  margin: 18px 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.testimonial strong,
.testimonial span {
  display: block;
}

.testimonial span {
  margin-top: 6px;
  color: var(--muted);
}

.testimonial-dots {
  position: absolute;
  left: clamp(24px, 5vw, 64px);
  bottom: clamp(24px, 5vw, 46px);
  z-index: 4;
  display: flex;
  gap: 10px;
}

.testimonial-dots button {
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  transition: width 0.35s var(--ease), background 0.35s ease;
}

.testimonial-dots button.is-active {
  width: 62px;
  background: var(--gold);
}

/* Pricing */
.pricing {
  padding: 120px 0;
}

.pricing__header {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 42px;
  align-items: end;
  margin-bottom: 50px;
}

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

.price-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 36px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.026));
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.55s var(--ease), border 0.35s ease;
}

.price-card::before {
  content: "";
  position: absolute;
  right: -40%;
  top: -30%;
  width: 85%;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.45;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.24), transparent 60%);
}

.price-card:hover {
  transform: translateY(-12px);
  border-color: rgba(212, 175, 55, 0.34);
}

.price-card--featured {
  background:
    linear-gradient(155deg, rgba(212, 175, 55, 0.17), rgba(255, 255, 255, 0.035)),
    #101010;
}

.price-card__label {
  display: inline-flex;
  margin-bottom: 44px;
  padding: 8px 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 0.96;
}

.price {
  margin: 20px 0;
  color: #fff;
  font-family: var(--font-modern);
  font-size: 2rem;
  font-weight: 800;
}

.price-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
  color: rgba(255, 255, 255, 0.68);
}

.price-card li::before {
  content: "✦";
  margin-right: 10px;
  color: var(--gold);
}

/* Team */
.team {
  padding: 120px 0;
}

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

.team-card {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: var(--surface);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}

.team-card img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.12) contrast(1.06);
  transition: transform 1s var(--ease), filter 0.6s ease;
}

.team-card:hover img {
  transform: scale(1.08);
  filter: grayscale(0) contrast(1.09);
}

.team-card div {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.team-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
}

.team-card p,
.team-card span {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.team-card span {
  display: inline-flex;
  margin-top: 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

/* Instagram */
.instagram {
  padding: 110px 0;
  overflow: hidden;
}

.instagram__header {
  margin-bottom: 40px;
}

.insta-ribbon {
  display: flex;
  gap: 18px;
  width: max-content;
  padding-inline: 20px;
  animation: instaRibbon 42s linear infinite;
}

.insta-ribbon img {
  width: clamp(210px, 24vw, 360px);
  height: clamp(260px, 32vw, 460px);
  object-fit: cover;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  filter: saturate(0.9) contrast(1.06);
}

.insta-ribbon img:nth-child(even) {
  margin-top: 64px;
}

@keyframes instaRibbon {
  to { transform: translateX(-45%); }
}

/* FAQ */
.faq {
  padding: 120px 0;
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 62px;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion__item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
}

.accordion__item button {
  position: relative;
  width: 100%;
  padding: 23px 58px 23px 22px;
  text-align: left;
  font-weight: 700;
}

.accordion__item button::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  color: var(--gold);
  font-size: 1.4rem;
  transform: translateY(-50%);
}

.accordion__item.is-open button::after {
  content: "−";
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}

.accordion__content p {
  margin: 0;
  padding: 0 22px 23px;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.75;
}

/* Booking */
.booking {
  overflow: hidden;
  padding: 120px 0 90px;
}

.booking__glow {
  position: absolute;
  left: 50%;
  top: 20%;
  width: 80vw;
  height: 80vw;
  max-width: 980px;
  max-height: 980px;
  border-radius: 50%;
  opacity: 0.26;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18), transparent 60%);
  transform: translateX(-50%);
}

.booking__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 38px;
  align-items: start;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.contact-cards article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.contact-cards span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-cards p,
.contact-cards a {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3.2vw, 38px);
  border-radius: 38px;
}

.booking-form label {
  display: grid;
  gap: 8px;
}

.booking-form span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  font-weight: 700;
}

.booking-form input,
.booking-form textarea,
.booking-form select,
.newsletter input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  outline: none;
  color: #fff;
  background: rgba(0, 0, 0, 0.28);
  transition: border 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.booking-form input,
.booking-form select {
  height: 52px;
  padding: 0 16px;
}

.booking-form textarea {
  resize: vertical;
  padding: 15px 16px;
}

.booking-form select option {
  color: #111;
}

.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus,
.newsletter input:focus {
  border-color: rgba(212, 175, 55, 0.58);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.08);
  background: rgba(0, 0, 0, 0.38);
}

.form-status,
.newsletter p {
  min-height: 20px;
  margin: 0;
  color: var(--gold);
  font-size: 0.9rem;
}

.map-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 38px;
  background: #111;
  box-shadow: var(--shadow);
}

.map-card__grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 55% 42%, rgba(212, 175, 55, 0.19), transparent 33%);
  background-size: 42px 42px, 42px 42px, auto;
  transform: perspective(700px) rotateX(58deg) scale(1.45);
  transform-origin: center;
}

.map-card__pin {
  position: absolute;
  left: 50%;
  top: 48%;
  padding: 12px 16px;
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: 999px;
  color: #111;
  background: var(--gold);
  font-weight: 800;
  transform: translate(-50%, -50%);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.map-card p {
  position: absolute;
  left: 24px;
  bottom: 20px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  padding: 64px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #060606;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 0.6fr 0.9fr;
  gap: 34px;
}

.brand--footer {
  margin-bottom: 18px;
}

.footer p,
.footer a,
.footer span {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
}

.footer h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer__grid > div:not(:first-child) a {
  display: block;
  margin-bottom: 10px;
  transition: color 0.25s ease, transform 0.25s ease;
}

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

.newsletter {
  position: relative;
}

.newsletter input {
  height: 54px;
  padding: 0 58px 0 16px;
}

.newsletter button {
  position: absolute;
  right: 7px;
  top: 45px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #111;
  background: var(--gold);
  font-size: 1.3rem;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Lightbox and floating buttons */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: 26px;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(20px);
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

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

.lightbox img {
  width: min(100%, 1180px);
  max-height: 78vh;
  object-fit: contain;
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
  transform: scale(0.94);
  transition: transform 0.5s var(--ease);
}

.lightbox.is-open img {
  transform: scale(1);
}

.lightbox p {
  margin: 18px 0 0;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 2.2rem);
}

.lightbox__close {
  position: absolute;
  right: 24px;
  top: 24px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-size: 2rem;
}

.float-action,
.scroll-top {
  position: fixed;
  right: 18px;
  z-index: 900;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.32);
}

.float-action {
  width: 54px;
  height: 54px;
  font-size: 0.76rem;
  font-weight: 900;
}

.float-action--whatsapp {
  bottom: 96px;
  color: #06100a;
  background: #b5ffd3;
}

.float-action--call {
  bottom: 160px;
  color: #111;
  background: var(--gold);
}

.scroll-top {
  bottom: 28px;
  width: 50px;
  height: 50px;
  opacity: 0;
  visibility: hidden;
  color: #111;
  background: #fff;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
}

/* Reveal animation system */
.reveal-line,
.reveal-text,
.reveal-scale,
.reveal-card,
.reveal-left,
.reveal-mask,
.reveal-stagger > * {
  opacity: 0;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease), clip-path 1.1s var(--ease);
}

.reveal-line { transform: translateY(20px); filter: blur(8px); }
.reveal-text { transform: translateY(36px); filter: blur(12px); }
.reveal-scale { transform: scale(0.92); filter: blur(10px); }
.reveal-card { transform: translateY(44px) rotateX(8deg); filter: blur(10px); }
.reveal-left { transform: translateX(60px); filter: blur(10px); }
.reveal-mask { clip-path: inset(18% 10% round 32px); transform: scale(0.98); filter: blur(8px); }
.reveal-stagger > * { transform: translateY(30px); filter: blur(8px); }

.is-visible.reveal-line,
.is-visible.reveal-text,
.is-visible.reveal-scale,
.is-visible.reveal-card,
.is-visible.reveal-left,
.is-visible.reveal-mask,
.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translate(0, 0) scale(1) rotateX(0);
  filter: blur(0);
  clip-path: inset(0 0 round 32px);
}

.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 90ms; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 180ms; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 270ms; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 360ms; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 450ms; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 540ms; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 630ms; }

/* Responsive */
@media (max-width: 1080px) {
  .vision__grid,
  .craft__header,
  .why__grid,
  .pricing__header,
  .faq__grid,
  .booking__grid {
    grid-template-columns: 1fr;
  }

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

  .exhibition-rail {
    grid-template-columns: repeat(8, 1fr);
  }

  .art-card,
  .art-card--wide {
    grid-column: span 4;
  }

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

@media (max-width: 820px) {
  body { cursor: auto; }
  .cursor,
  .cursor-dot { display: none; }

  .site-header {
    align-items: center;
  }

  .menu-button {
    display: block;
  }

  .nav {
    position: fixed;
    top: 84px;
    left: 50%;
    display: grid;
    width: min(420px, calc(100% - 32px));
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    opacity: 0;
    visibility: hidden;
    background: rgba(8, 8, 8, 0.88);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    transform: translate(-50%, -18px) scale(0.96);
    transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease), transform 0.3s var(--ease);
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0) scale(1);
  }

  .nav a {
    padding: 13px 10px;
  }

  .hero {
    min-height: 100svh;
    padding-bottom: 86px;
  }

  .hero__meta,
  .sound-chip {
    display: none;
  }

  .vision,
  .exhibition,
  .craft,
  .why,
  .voices,
  .pricing,
  .team,
  .instagram,
  .faq,
  .booking {
    padding-block: 86px;
  }

  .vision__portrait {
    min-height: 470px;
  }

  .vision__stats,
  .service-constellation,
  .pricing__cards,
  .team__grid,
  .contact-cards,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .exhibition-rail {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .art-card,
  .art-card--wide,
  .art-card--tall {
    grid-column: auto;
    grid-row: auto;
    height: 430px;
  }

  .testimonial {
    position: relative;
    inset: auto;
    grid-template-columns: 1fr;
    display: none;
  }

  .testimonial.is-active {
    display: grid;
  }

  .testimonial img {
    width: 140px;
    height: 170px;
  }

  .voices__stage {
    min-height: auto;
    padding-bottom: 78px;
  }

  .team-card {
    min-height: 470px;
  }

  .footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100% - 28px, 1160px);
  }

  .brand__text {
    display: none;
  }

  .hero__title,
  .section-title {
    letter-spacing: -0.055em;
  }

  .hero__actions,
  .gallery-filter {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .filter-pill {
    width: 100%;
  }

  .art-card,
  .art-card--wide,
  .art-card--tall {
    height: 365px;
  }

  .vision__portrait {
    min-height: 390px;
    border-radius: 28px;
  }

  .service-node,
  .price-card,
  .booking-form {
    border-radius: 26px;
  }

  .float-action {
    width: 48px;
    height: 48px;
  }

  .float-action--call {
    bottom: 148px;
  }

  .float-action--whatsapp {
    bottom: 90px;
  }
}

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

  .particle-canvas,
  .cursor,
  .cursor-dot {
    display: none;
  }
}
