:root {
  --ink: #080808;
  --panel: #10100f;
  --line: rgba(244, 240, 232, 0.13);
  --line-strong: rgba(244, 240, 232, 0.26);
  --paper: #f4f0e8;
  --muted: #97938b;
  --orange: #ff6633;
  --cyan: #00c8f0;
  --gold: #d9a62e;
  --teal: #2dd4bf;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.014) 1px, transparent 1px),
    var(--ink);
  background-size: 48px 48px;
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--paper); color: var(--ink); }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--paper);
  color: var(--ink);
  font: 12px var(--mono);
}
.skip-link:focus { transform: translateY(0); }

.ambient {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.1;
  pointer-events: none;
}
.ambient-one { top: 8vh; left: -20vw; width: 55vw; height: 55vw; background: var(--orange); }
.ambient-two { top: 52vh; right: -25vw; width: 58vw; height: 58vw; background: var(--cyan); }

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
  padding: 0 clamp(22px, 4vw, 68px);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(18px);
}
.wordmark { display: inline-flex; align-items: baseline; width: fit-content; font-weight: 700; letter-spacing: -0.02em; }
.wordmark-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-right: 11px;
  border: 1px solid var(--paper);
  border-radius: 50%;
  font-size: 11px;
  letter-spacing: 0;
}
.wordmark-handle { color: var(--muted); font: 400 11px var(--mono); letter-spacing: 0.08em; }
nav { display: flex; gap: clamp(24px, 4vw, 52px); font: 10px var(--mono); letter-spacing: 0.13em; text-transform: uppercase; }
nav a, .header-link, footer a { transition: color 180ms ease; }
nav a:hover, .header-link:hover, footer a:hover { color: var(--orange); }
.header-link { justify-self: end; font: 10px var(--mono); letter-spacing: 0.13em; text-transform: uppercase; }
.language-switcher { justify-self: end; display: flex; align-items: center; gap: 8px; color: var(--muted); font: 9px var(--mono); letter-spacing: 0.13em; }
.language-switcher a { transition: color 180ms ease; }
.language-switcher a:hover, .language-switcher a:focus-visible { color: var(--orange); }
.language-switcher .active { color: var(--paper); }
.language-switcher i { color: var(--line-strong); font-style: normal; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(220px, 0.5fr);
  min-height: calc(100svh - 82px);
  padding: clamp(72px, 10vh, 128px) clamp(22px, 4vw, 68px) 40px;
  overflow: hidden;
}
.hero-copy { position: relative; z-index: 2; max-width: 1050px; }
.eyebrow, .section-number { margin: 0 0 30px; color: var(--muted); font: 10px var(--mono); letter-spacing: 0.16em; text-transform: uppercase; }
.signal-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 16px var(--orange);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: 0.35; box-shadow: 0 0 4px var(--orange); } }
h1, h2, h3, p { text-wrap: pretty; }
h1 { max-width: 1040px; margin: 0; font-size: clamp(64px, 10.2vw, 164px); font-weight: 600; letter-spacing: -0.075em; line-height: 0.82; }
h1 > span {
  display: block;
  max-width: 850px;
  margin-top: 0.18em;
  color: transparent;
  font-size: 0.58em;
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.96;
  -webkit-text-stroke: 1px rgba(244, 240, 232, 0.62);
}
.hero-intro { max-width: 570px; margin: 46px 0 0; color: #c7c2b9; font-size: clamp(18px, 1.6vw, 24px); font-weight: 300; line-height: 1.45; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 230px;
  padding: 16px 18px;
  border: 1px solid var(--line-strong);
  font: 10px var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}
.button-primary { border-color: var(--paper); background: var(--paper); color: var(--ink); }
.button-primary:hover { border-color: var(--orange); background: var(--orange); }
.button-secondary:hover { border-color: var(--paper); background: rgba(244, 240, 232, 0.06); }

.hero-signal {
  position: absolute;
  z-index: 0;
  right: -4%;
  bottom: 10%;
  left: 35%;
  height: 250px;
  opacity: 0.76;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 22%, black 82%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 22%, black 82%, transparent);
}
.hero-constellation { position: absolute; inset: 22px 0 18px; animation: constellation-breathe 16s ease-in-out infinite; }
.hero-constellation::before { position: absolute; inset: 9% 4%; content: ""; opacity: 0.18; background-image: linear-gradient(rgba(244, 240, 232, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(244, 240, 232, 0.12) 1px, transparent 1px); background-size: 46px 46px; mask-image: radial-gradient(ellipse, black, transparent 72%); }
.constellation-lines, .constellation-grains { position: absolute; inset: 0; }
.constellation-lines i { position: absolute; display: block; height: 1px; background: linear-gradient(90deg, transparent, rgba(244, 240, 232, 0.5), transparent); transform-origin: left center; animation: constellation-link 7s ease-in-out infinite; }
.constellation-lines i:nth-child(1) { top: 60%; left: 3%; width: 12%; transform: rotate(-29deg); }
.constellation-lines i:nth-child(2) { top: 38%; left: 13%; width: 13%; transform: rotate(24deg); animation-delay: -1.4s; }
.constellation-lines i:nth-child(3) { top: 63%; left: 24%; width: 11%; transform: rotate(-35deg); animation-delay: -3s; }
.constellation-lines i:nth-child(4) { top: 29%; left: 32%; width: 13%; transform: rotate(19deg); animation-delay: -4.5s; }
.constellation-lines i:nth-child(5) { top: 49%; left: 43%; width: 11%; transform: rotate(-28deg); animation-delay: -2.2s; }
.constellation-lines i:nth-child(6) { top: 22%; left: 52%; width: 13%; transform: rotate(35deg); animation-delay: -5.5s; }
.constellation-lines i:nth-child(7) { top: 67%; left: 61%; width: 11%; transform: rotate(-31deg); animation-delay: -0.8s; }
.constellation-lines i:nth-child(8) { top: 36%; left: 70%; width: 11%; transform: rotate(30deg); animation-delay: -3.8s; }
.constellation-lines i:nth-child(9) { top: 66%; left: 79%; width: 12%; transform: rotate(-35deg); animation-delay: -1.9s; }
.constellation-lines i:nth-child(10) { top: 27%; left: 88%; width: 10%; transform: rotate(25deg); animation-delay: -4.9s; }
.constellation-lines i:nth-child(11) { top: 38%; left: 13%; width: 20%; transform: rotate(-7deg); opacity: 0.35; animation-delay: -2.7s; }
.constellation-lines i:nth-child(12) { top: 63%; left: 24%; width: 20%; transform: rotate(-8deg); opacity: 0.35; animation-delay: -5.8s; }
.constellation-lines i:nth-child(13) { top: 49%; left: 43%; width: 19%; transform: rotate(10deg); opacity: 0.35; animation-delay: -1.1s; }
.constellation-lines i:nth-child(14) { top: 67%; left: 61%; width: 19%; transform: rotate(-1deg); opacity: 0.35; animation-delay: -4.2s; }
.constellation-lines i:nth-child(15) { top: 36%; left: 70%; width: 19%; transform: rotate(-7deg); opacity: 0.35; animation-delay: -3.3s; }
.constellation-grains i { --grain-color: var(--paper); --grain-size: 4px; --drift-x: 3px; --drift-y: -4px; position: absolute; display: block; width: var(--grain-size); aspect-ratio: 1; border-radius: 50%; background: var(--grain-color); box-shadow: 0 0 10px color-mix(in srgb, var(--grain-color) 70%, transparent); animation: constellation-grain 6s ease-in-out infinite; }
.constellation-grains i:nth-child(1) { top: 58%; left: 3%; --grain-color: var(--orange); --grain-size: 6px; }
.constellation-grains i:nth-child(2) { top: 35%; left: 13%; --grain-color: var(--orange); --grain-size: 10px; --drift-x: -3px; animation-delay: -1.2s; }
.constellation-grains i:nth-child(3) { top: 61%; left: 24%; --grain-color: var(--orange); --grain-size: 5px; --drift-y: 4px; animation-delay: -2.8s; }
.constellation-grains i:nth-child(4) { top: 27%; left: 32%; --grain-color: var(--orange); --grain-size: 8px; --drift-x: 5px; animation-delay: -4.1s; }
.constellation-grains i:nth-child(5) { top: 46%; left: 43%; --grain-color: var(--gold); --grain-size: 11px; --drift-x: -4px; animation-delay: -0.6s; }
.constellation-grains i:nth-child(6) { top: 20%; left: 52%; --grain-color: var(--gold); --grain-size: 6px; --drift-y: 5px; animation-delay: -3.5s; }
.constellation-grains i:nth-child(7) { top: 64%; left: 61%; --grain-color: var(--gold); --grain-size: 9px; --drift-x: 4px; animation-delay: -5.2s; }
.constellation-grains i:nth-child(8) { top: 34%; left: 70%; --grain-color: var(--cyan); --grain-size: 7px; --drift-y: 4px; animation-delay: -2s; }
.constellation-grains i:nth-child(9) { top: 63%; left: 79%; --grain-color: var(--cyan); --grain-size: 10px; --drift-x: -4px; animation-delay: -4.7s; }
.constellation-grains i:nth-child(10) { top: 25%; left: 88%; --grain-color: var(--cyan); --grain-size: 8px; --drift-y: 5px; animation-delay: -1.8s; }
.constellation-grains i:nth-child(11) { top: 48%; left: 97%; --grain-color: var(--cyan); --grain-size: 12px; --drift-x: -5px; animation-delay: -3.9s; }
.constellation-grains i:nth-child(12) { top: 77%; left: 9%; --grain-size: 3px; opacity: 0.5; animation-delay: -4.4s; }
.constellation-grains i:nth-child(13) { top: 18%; left: 21%; --grain-size: 2px; opacity: 0.45; animation-delay: -2.5s; }
.constellation-grains i:nth-child(14) { top: 79%; left: 36%; --grain-size: 3px; opacity: 0.5; animation-delay: -5.6s; }
.constellation-grains i:nth-child(15) { top: 12%; left: 65%; --grain-size: 2px; opacity: 0.45; animation-delay: -1.5s; }
.constellation-grains i:nth-child(16) { top: 78%; left: 72%; --grain-size: 3px; opacity: 0.5; animation-delay: -3.1s; }
.constellation-grains i:nth-child(17) { top: 14%; left: 81%; --grain-size: 2px; opacity: 0.45; animation-delay: -0.9s; }
.constellation-grains i:nth-child(18) { top: 81%; left: 93%; --grain-size: 3px; opacity: 0.5; animation-delay: -4.9s; }
@keyframes constellation-breathe { 50% { transform: translate3d(1.2%, -2%, 0) scale(1.015); } }
@keyframes constellation-link { 0%, 100% { opacity: 0.15; } 50% { opacity: 0.62; } }
@keyframes constellation-grain { 0%, 100% { opacity: 0.48; transform: translate3d(0, 0, 0) scale(0.86); } 48% { opacity: 1; transform: translate3d(var(--drift-x), var(--drift-y), 0) scale(1.16); } }
.signal-label { position: absolute; color: var(--muted); font: 8px var(--mono); letter-spacing: 0.13em; }
.signal-label-left { top: 0; left: 24%; }
.signal-label-right { right: 12%; bottom: 0; }

.project-index { position: relative; z-index: 2; align-self: end; justify-self: end; width: min(100%, 260px); margin-bottom: 14px; font-family: var(--mono); }
.project-index > span { display: block; padding-bottom: 12px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 9px; letter-spacing: 0.14em; }
.project-index ol { margin: 0; padding: 0; list-style: none; }
.project-index a { display: flex; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; transition: padding 180ms ease, color 180ms ease; }
.project-index a:hover { padding-left: 8px; color: var(--orange); }
.project-index b { color: var(--muted); font-weight: 400; }

.projects-section { padding: clamp(100px, 14vw, 200px) clamp(22px, 4vw, 68px); border-top: 1px solid var(--line); }
.section-heading { display: grid; grid-template-columns: 1fr 1.4fr 0.75fr; gap: 40px; align-items: end; margin-bottom: 70px; }
.section-heading .section-number { align-self: start; margin: 10px 0 0; }
.section-heading h2, .sounds-copy h2, .about-grid h2 { margin: 0; font-size: clamp(46px, 7vw, 108px); font-weight: 500; letter-spacing: -0.065em; line-height: 0.94; }
.section-heading > p:last-child { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }

.projects-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.project-card { overflow: hidden; border: 1px solid var(--line); background: rgba(15, 15, 14, 0.86); transition: border-color 220ms ease, transform 220ms ease; }
.project-card:hover { transform: translateY(-4px); }
.project-orange:hover { border-color: rgba(255, 102, 51, 0.65); }
.project-cyan:hover { border-color: rgba(0, 200, 240, 0.65); }
.project-gold:hover { border-color: rgba(217, 166, 46, 0.65); }
.project-teal:hover { border-color: rgba(45, 212, 191, 0.65); }
.project-media { position: relative; display: block; aspect-ratio: 1.7 / 1; overflow: hidden; border-bottom: 1px solid var(--line); background: #050505; }
.project-media::after { position: absolute; z-index: 2; inset: 0; content: ""; background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.7)); pointer-events: none; }
.project-art { position: absolute; inset: 0; overflow: hidden; isolation: isolate; transition: transform 700ms cubic-bezier(.2,.8,.2,1); }
.project-art::before { position: absolute; z-index: -1; inset: 0; content: ""; opacity: 0.15; background-image: linear-gradient(rgba(244, 240, 232, 0.16) 1px, transparent 1px), linear-gradient(90deg, rgba(244, 240, 232, 0.16) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(to bottom, black, transparent 84%); }
.project-media:hover .project-art { transform: scale(1.025); }
.art-number, .art-caption { position: absolute; z-index: 3; color: rgba(244, 240, 232, 0.68); font: 9px var(--mono); letter-spacing: 0.12em; }
.art-number { top: 21px; left: 22px; }
.art-caption { bottom: 20px; left: 22px; }
.art-mantice { background: radial-gradient(circle at 28% 42%, rgba(255, 102, 51, 0.29), transparent 25%), radial-gradient(circle at 72% 54%, rgba(129, 65, 171, 0.18), transparent 37%), #080605; }
.mantice-waves { position: absolute; inset: 7% -14% 15%; transform: rotate(-8deg); }
.mantice-waves span { position: absolute; left: 4%; width: 92%; height: 44%; border: 1px solid transparent; border-top-color: rgba(255, 131, 84, 0.77); border-radius: 50%; filter: drop-shadow(0 0 9px rgba(255, 102, 51, 0.32)); animation: mantice-drift 8s ease-in-out infinite alternate; }
.mantice-waves span:nth-child(1) { top: 17%; }
.mantice-waves span:nth-child(2) { top: 30%; animation-delay: -2s; animation-duration: 10s; }
.mantice-waves span:nth-child(3) { top: 43%; animation-delay: -4s; animation-duration: 12s; }
.mantice-waves span:nth-child(4) { top: 56%; animation-delay: -6s; animation-duration: 14s; }
.mantice-spectrum { position: absolute; right: 8%; bottom: 20%; left: 8%; display: flex; gap: clamp(4px, 1vw, 10px); align-items: end; height: 31%; opacity: 0.7; }
.mantice-spectrum i { flex: 1; min-width: 2px; height: 30%; background: linear-gradient(to top, rgba(255, 102, 51, 0.2), rgba(255, 158, 102, 0.9)); animation: mantice-meter 3.6s ease-in-out infinite alternate; transform-origin: bottom; }
.mantice-spectrum i:nth-child(3n + 1) { height: 77%; animation-delay: -1.1s; }
.mantice-spectrum i:nth-child(3n + 2) { height: 44%; animation-delay: -2.3s; }
.mantice-spectrum i:nth-child(4n) { height: 94%; animation-delay: -3s; }

.art-glorb { background: radial-gradient(circle at 50% 48%, rgba(0, 200, 240, 0.21), transparent 22%), radial-gradient(circle at 25% 68%, rgba(5, 78, 96, 0.24), transparent 34%), #03090a; }
.glorb-orbits, .glorb-particles { position: absolute; inset: 0; }
.glorb-orbits span { position: absolute; top: 50%; left: 50%; width: 44%; aspect-ratio: 1; border: 1px solid rgba(80, 225, 255, 0.45); border-radius: 50%; transform: translate(-50%, -50%) rotate(-18deg) skewX(15deg); box-shadow: inset 0 0 22px rgba(0, 200, 240, 0.08), 0 0 16px rgba(0, 200, 240, 0.08); animation: glorb-orbit 14s linear infinite; }
.glorb-orbits span:nth-child(2) { width: 68%; border-style: dashed; opacity: 0.5; animation-direction: reverse; animation-duration: 22s; }
.glorb-core { position: absolute; top: 50%; left: 50%; width: 11%; aspect-ratio: 1; border: 1px solid rgba(179, 244, 255, 0.76); border-radius: 44% 56% 52% 48%; background: radial-gradient(circle at 35% 30%, #c4f8ff, #00c8f0 28%, rgba(0, 200, 240, 0.12) 72%); box-shadow: 0 0 34px rgba(0, 200, 240, 0.55); transform: translate(-50%, -50%); animation: glorb-core 5s ease-in-out infinite alternate; }
.glorb-particles i { position: absolute; width: 4px; aspect-ratio: 1; border-radius: 50%; background: rgba(125, 232, 255, 0.9); box-shadow: 0 0 9px rgba(0, 200, 240, 0.8); animation: glorb-pulse 3.4s ease-in-out infinite alternate; }
.glorb-particles i:nth-child(1) { top: 19%; left: 14%; }
.glorb-particles i:nth-child(2) { top: 29%; left: 25%; animation-delay: -1.5s; }
.glorb-particles i:nth-child(3) { top: 15%; left: 43%; animation-delay: -2.4s; }
.glorb-particles i:nth-child(4) { top: 26%; left: 61%; animation-delay: -0.7s; }
.glorb-particles i:nth-child(5) { top: 17%; left: 79%; animation-delay: -2.8s; }
.glorb-particles i:nth-child(6) { top: 39%; left: 9%; animation-delay: -1.9s; }
.glorb-particles i:nth-child(7) { top: 45%; left: 31%; animation-delay: -0.4s; }
.glorb-particles i:nth-child(8) { top: 42%; left: 70%; animation-delay: -2.1s; }
.glorb-particles i:nth-child(9) { top: 35%; left: 89%; animation-delay: -1.2s; }
.glorb-particles i:nth-child(10) { top: 61%; left: 17%; animation-delay: -2.6s; }
.glorb-particles i:nth-child(11) { top: 67%; left: 35%; animation-delay: -0.9s; }
.glorb-particles i:nth-child(12) { top: 57%; left: 62%; animation-delay: -1.7s; }
.glorb-particles i:nth-child(13) { top: 71%; left: 81%; animation-delay: -0.2s; }
.glorb-particles i:nth-child(14) { top: 83%; left: 9%; animation-delay: -2.2s; }
.glorb-particles i:nth-child(15) { top: 79%; left: 27%; animation-delay: -1.1s; }
.glorb-particles i:nth-child(16) { top: 86%; left: 52%; animation-delay: -3s; }
.glorb-particles i:nth-child(17) { top: 76%; left: 69%; animation-delay: -0.6s; }
.glorb-particles i:nth-child(18) { top: 84%; left: 92%; animation-delay: -1.8s; }

.art-campana { background: radial-gradient(circle at 50% 47%, rgba(217, 166, 46, 0.2), transparent 24%), radial-gradient(circle at 50% 50%, rgba(90, 62, 11, 0.14), transparent 55%), #090805; }
.campana-bell { position: absolute; inset: 0; transform-origin: 50% 0; animation: campana-sway 9s ease-in-out infinite alternate; }
.campana-rings { position: absolute; inset: 0; }
.campana-rings span { position: absolute; border: 1px solid rgba(234, 190, 86, 0.62); border-radius: 50%; box-shadow: 0 0 13px rgba(217, 166, 46, 0.08); animation: campana-breathe 6.4s ease-in-out infinite alternate; }
.campana-rings span:nth-child(1) { inset: 42% 45%; }
.campana-rings span:nth-child(2) { inset: 35% 39%; animation-delay: -1s; }
.campana-rings span:nth-child(3) { inset: 28% 33%; animation-delay: -2s; }
.campana-rings span:nth-child(4) { inset: 21% 27%; animation-delay: -3s; }
.campana-rings span:nth-child(5) { inset: 14% 21%; animation-delay: -4s; }
.campana-rings span:nth-child(6) { inset: 7% 15%; animation-delay: -5s; }
.campana-core { position: absolute; top: 47%; left: 50%; width: 12px; aspect-ratio: 1; border-radius: 50%; background: #f8dfa1; box-shadow: 0 0 9px #f8dfa1, 0 0 32px rgba(217, 166, 46, 0.85); transform: translate(-50%, -50%); animation: campana-core-pulse 3.8s ease-in-out infinite alternate; }
.campana-core::after { position: absolute; inset: -8px; border: 1px solid rgba(248, 223, 161, 0.58); border-radius: 50%; content: ""; animation: campana-echo 4.8s ease-out infinite; }
.campana-strike { position: absolute; top: 0; bottom: 53%; left: 50%; width: 1px; background: linear-gradient(to bottom, transparent, rgba(255, 219, 133, 0.9)); box-shadow: 0 0 14px rgba(217, 166, 46, 0.5); animation: campana-strike 4s ease-in-out infinite alternate; }

.art-maresono { background: radial-gradient(ellipse at 52% 62%, rgba(45, 212, 191, 0.2), transparent 30%), linear-gradient(180deg, #071727 0%, #041014 72%); }
.maresono-horizon { position: absolute; top: 42%; right: 8%; left: 8%; height: 1px; background: linear-gradient(90deg, transparent, rgba(181, 248, 237, 0.75), transparent); box-shadow: 0 0 18px rgba(45, 212, 191, 0.38); animation: maresono-horizon 8s ease-in-out infinite alternate; }
.maresono-waves { position: absolute; inset: 23% -14% -2%; transform-origin: 50% 46%; animation: maresono-field-drift 8s ease-in-out infinite alternate; }
.maresono-waves span { position: absolute; left: -4%; width: 108%; height: 42%; border: 1px solid transparent; border-top-color: rgba(87, 229, 207, 0.7); border-radius: 50%; filter: drop-shadow(0 0 10px rgba(45, 212, 191, 0.22)); animation: maresono-tide 9s ease-in-out infinite alternate; }
.maresono-waves span:nth-child(1) { top: 9%; opacity: 0.34; animation-duration: 13s; }
.maresono-waves span:nth-child(2) { top: 24%; opacity: 0.48; animation-delay: -2s; animation-duration: 11s; }
.maresono-waves span:nth-child(3) { top: 39%; opacity: 0.7; animation-delay: -5s; }
.maresono-waves span:nth-child(4) { top: 55%; opacity: 0.5; animation-delay: -7s; animation-duration: 12s; }
.maresono-waves span:nth-child(5) { top: 71%; opacity: 0.3; animation-delay: -4s; animation-duration: 14s; }

@keyframes mantice-drift { to { transform: translate3d(3%, -5%, 0) scaleX(1.05); opacity: 0.5; } }
@keyframes mantice-meter { to { transform: scaleY(0.42); opacity: 0.34; } }
@keyframes glorb-orbit { to { transform: translate(-50%, -50%) rotate(342deg) skewX(15deg); } }
@keyframes glorb-core { to { border-radius: 57% 43% 39% 61%; transform: translate(-50%, -50%) scale(1.16) rotate(28deg); } }
@keyframes glorb-pulse { to { opacity: 0.25; transform: scale(0.45) translateY(8px); } }
@keyframes campana-sway { from { transform: translate3d(-4px, 1px, 0) rotate(-0.7deg); } to { transform: translate3d(4px, -1px, 0) rotate(0.7deg); } }
@keyframes campana-breathe { to { opacity: 0.24; transform: scale(1.1); } }
@keyframes campana-core-pulse { to { box-shadow: 0 0 14px #f8dfa1, 0 0 46px rgba(217, 166, 46, 0.92); transform: translate(-50%, -50%) scale(1.14); } }
@keyframes campana-echo { 0% { opacity: 0; transform: scale(0.55); } 22% { opacity: 0.7; } 100% { opacity: 0; transform: scale(2.6); } }
@keyframes campana-strike { to { opacity: 0.3; transform: scaleY(0.8); transform-origin: bottom; } }
@keyframes maresono-horizon { to { opacity: 0.46; transform: translateY(5px) scaleX(0.84); } }
@keyframes maresono-field-drift { from { transform: translate3d(-1.5%, 2%, 0) rotate(-0.35deg); } to { transform: translate3d(1.5%, -2%, 0) rotate(0.35deg); } }
@keyframes maresono-tide { to { transform: translate3d(6%, -10%, 0) scaleX(1.1) scaleY(0.72); } }
.project-body { padding: clamp(24px, 3vw, 42px); }
.project-title-row { display: grid; grid-template-columns: 42px 1fr; gap: 18px; align-items: start; }
.project-number { padding-top: 8px; color: var(--muted); font: 10px var(--mono); }
.project-card h3 { margin: 0; font-size: clamp(36px, 4vw, 60px); font-weight: 500; letter-spacing: -0.06em; line-height: 1; }
.project-orange h3 { color: var(--orange); }
.project-cyan h3 { color: var(--cyan); }
.project-gold h3 { color: var(--gold); }
.project-teal h3 { color: var(--teal); }
.project-kicker { margin: 8px 0 0; color: var(--muted); font: 9px var(--mono); letter-spacing: 0.11em; text-transform: uppercase; }
.project-description { max-width: 560px; margin: 34px 0 26px 60px; color: #bbb6ad; font-size: 15px; line-height: 1.7; }
.tag-list { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 34px 60px; padding: 0; list-style: none; }
.tag-list li { padding: 6px 9px; border: 1px solid var(--line); color: var(--muted); font: 8px var(--mono); letter-spacing: 0.12em; text-transform: uppercase; }
.project-links { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-left: 60px; padding-top: 20px; border-top: 1px solid var(--line); font: 9px var(--mono); letter-spacing: 0.1em; text-transform: uppercase; }
.project-links a, .sample-link { transition: color 180ms ease; }
.sample-link { appearance: none; margin: 0; padding: 0; border: 0; background: none; color: inherit; font: inherit; letter-spacing: inherit; text-transform: inherit; cursor: pointer; }
.sample-link:focus-visible { outline: 1px solid currentColor; outline-offset: 5px; }
.sample-icon { display: inline-block; width: 1.5em; font-size: 0.9em; }
.project-orange .project-links a:hover, .project-orange .sample-link:hover, .project-orange .sample-link[aria-pressed="true"] { color: var(--orange); }
.project-cyan .project-links a:hover, .project-cyan .sample-link:hover, .project-cyan .sample-link[aria-pressed="true"] { color: var(--cyan); }
.project-gold .project-links a:hover, .project-gold .sample-link:hover, .project-gold .sample-link[aria-pressed="true"] { color: var(--gold); }
.project-teal .project-links a:hover, .project-teal .sample-link:hover, .project-teal .sample-link[aria-pressed="true"] { color: var(--teal); }

.sounds-section { position: relative; display: grid; grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr); align-items: center; min-height: 760px; padding: clamp(90px, 12vw, 170px) clamp(22px, 6vw, 110px); overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #0b0b0a; }
.sounds-orbit { position: relative; width: min(42vw, 540px); aspect-ratio: 1; margin: auto; border: 1px solid rgba(0, 200, 240, 0.25); border-radius: 50%; }
.sounds-orbit::before, .sounds-orbit::after, .sounds-orbit span { position: absolute; inset: 9%; border: 1px solid rgba(244, 240, 232, 0.13); border-radius: 50%; content: ""; }
.sounds-orbit::after { inset: 31%; border-color: rgba(255, 102, 51, 0.32); }
.sounds-orbit span:nth-child(1) { inset: 18%; border-color: rgba(217, 166, 46, 0.25); }
.sounds-orbit span:nth-child(2) { inset: 40%; border-color: rgba(0, 200, 240, 0.5); }
.sounds-orbit span:nth-child(3) { inset: 49%; background: var(--paper); box-shadow: 0 0 35px rgba(244,240,232,0.55); }
.sounds-orbit i { position: absolute; top: 50%; left: -5%; width: 110%; height: 1px; background: linear-gradient(90deg, transparent, var(--orange), var(--cyan), var(--gold), transparent); box-shadow: 0 0 12px rgba(0,200,240,0.5); transform: rotate(-12deg); }
.sounds-copy { position: relative; z-index: 2; max-width: 720px; padding-left: clamp(0px, 4vw, 70px); }
.sounds-copy h2 { max-width: 650px; }
.sounds-copy > p:not(.section-number) { max-width: 560px; margin: 34px 0; color: #b8b3aa; font-size: clamp(17px, 1.6vw, 22px); font-weight: 300; line-height: 1.6; }
.sound-topics { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 38px; }
.sound-topics span { padding: 8px 10px; border: 1px solid var(--line); color: var(--muted); font: 8px var(--mono); letter-spacing: 0.13em; }
.archive-list { margin: 0 0 40px; border-top: 1px solid var(--line-strong); }
.archive-item { display: grid; grid-template-columns: 34px minmax(0, 1fr) auto auto; gap: 18px; align-items: center; min-height: 72px; border-bottom: 1px solid var(--line); }
.archive-item strong { font-size: 13px; font-weight: 400; line-height: 1.35; }
.archive-play { display: grid; place-items: center; width: 30px; height: 30px; padding: 0; border: 1px solid var(--line-strong); border-radius: 50%; background: transparent; color: var(--paper); cursor: pointer; transition: border-color 180ms ease, color 180ms ease; }
.archive-play .sample-icon { width: auto; margin-left: 2px; font-size: 8px; }
.archive-play:hover, .archive-play:focus-visible, .archive-play[aria-pressed="true"] { border-color: var(--cyan); color: var(--cyan); }
.archive-play[aria-pressed="true"] .sample-icon { margin-left: 0; font-size: 10px; }
.archive-duration, .archive-item a { color: var(--muted); font: 8px var(--mono); letter-spacing: 0.1em; text-transform: uppercase; }
.archive-item a { transition: color 180ms ease; }
.archive-item a:hover, .archive-item a:focus-visible { color: var(--cyan); }
.text-link { display: inline-flex; gap: 30px; align-items: center; padding-bottom: 8px; border-bottom: 1px solid var(--paper); font: 10px var(--mono); letter-spacing: 0.11em; text-transform: uppercase; transition: color 180ms ease, border-color 180ms ease; }
.text-link:hover { border-color: var(--cyan); color: var(--cyan); }

.about-section { padding: clamp(100px, 14vw, 200px) clamp(22px, 6vw, 110px); }
.about-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(60px, 10vw, 160px); }
.about-grid h2 span { display: block; color: transparent; -webkit-text-stroke: 1px rgba(244, 240, 232, 0.5); }
.about-copy { padding-top: 12px; color: var(--muted); }
.about-copy p { margin: 0 0 24px; line-height: 1.75; }
.about-copy .about-lead { color: var(--paper); font-size: clamp(21px, 2vw, 28px); font-weight: 300; line-height: 1.45; }
.about-links { display: flex; gap: 32px; margin-top: 44px; font: 9px var(--mono); letter-spacing: 0.11em; text-transform: uppercase; }
.about-links a { padding-bottom: 6px; border-bottom: 1px solid var(--line-strong); transition: color 180ms ease, border-color 180ms ease; }
.about-links a:hover { border-color: var(--orange); color: var(--orange); }

.contact-section {
  padding: clamp(90px, 12vw, 170px) clamp(22px, 6vw, 110px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 15% 100%, rgba(255, 102, 51, 0.09), transparent 34%),
    radial-gradient(circle at 88% 0%, rgba(0, 200, 240, 0.07), transparent 30%),
    #0b0b0a;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(60px, 10vw, 160px);
  align-items: end;
}

.contact-copy h2 {
  margin: 0;
  font-size: clamp(58px, 8vw, 126px);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.contact-copy p {
  max-width: 520px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 300;
  line-height: 1.65;
}

.contact-actions {
  border-top: 1px solid var(--line-strong);
}

.contact-card {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  width: 100%;
  min-height: 112px;
  padding: 24px 0;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, padding 180ms ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  padding-left: 14px;
}

.contact-email:hover,
.contact-email:focus-visible { color: var(--orange); }
.contact-telegram:hover,
.contact-telegram:focus-visible { color: var(--cyan); }
.contact-whatsapp:hover,
.contact-whatsapp:focus-visible { color: var(--gold); }

.contact-label {
  color: var(--muted);
  font: 9px var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-card strong {
  overflow-wrap: anywhere;
  font-size: clamp(19px, 2vw, 30px);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.contact-card i {
  font-size: 22px;
  font-style: normal;
}

footer { display: flex; align-items: end; justify-content: space-between; min-height: 210px; padding: 52px clamp(22px, 4vw, 68px); border-top: 1px solid var(--line); font: 9px var(--mono); letter-spacing: 0.08em; text-transform: uppercase; }
footer p { margin: 7px 0 0; color: var(--muted); }
footer .footer-name { color: var(--paper); font-family: var(--sans); font-size: 24px; font-weight: 500; letter-spacing: -0.035em; text-transform: none; }
.footer-name span { color: var(--muted); font: 400 10px var(--mono); letter-spacing: 0.08em; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 30px; }

/* Support */
.support-page { min-height: calc(100svh - 82px); }
.support-hero {
  min-height: min(820px, calc(100svh - 82px));
  padding: clamp(84px, 12vw, 160px) clamp(22px, 8vw, 140px);
  border-bottom: 1px solid var(--line);
}
.support-hero h1 { max-width: 1180px; font-size: clamp(62px, 9vw, 142px); }
.support-lead { max-width: 720px; margin: 48px 0 0; color: #c7c2b9; font-size: clamp(19px, 1.8vw, 27px); font-weight: 300; line-height: 1.55; }
.support-payment { max-width: 850px; margin-top: 48px; padding: 24px 0 26px; border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); }
.support-payment-label { margin: 0 0 16px; color: var(--muted); font: 9px var(--mono); letter-spacing: 0.14em; text-transform: uppercase; }
.support-amounts { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; }
.support-amount-option { position: relative; display: flex; min-height: 82px; align-items: center; justify-content: center; border: 1px solid var(--line-strong); background: rgba(255,255,255,0.015); color: var(--paper); text-decoration: none; transition: border-color 180ms ease, background 180ms ease, transform 180ms ease; }
.support-amount-option strong { font: 400 clamp(21px, 2.2vw, 31px) var(--sans); letter-spacing: -0.04em; }
.support-amount-option span { position: absolute; top: 7px; right: 8px; color: var(--orange); font: 7px var(--mono); letter-spacing: 0.09em; text-transform: uppercase; }
.support-amount-option:hover, .support-amount-option:focus-visible { border-color: var(--orange); background: rgba(216,87,48,0.08); transform: translateY(-2px); }
.support-amount-option.recommended { border-color: var(--orange); }
.support-amount-option.custom strong { font: 9px var(--mono); letter-spacing: 0.09em; text-transform: uppercase; }
.support-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; }
.support-actions button { cursor: pointer; font-family: var(--mono); }
.support-provider-note { max-width: 650px; margin: 24px 0 0; color: var(--muted); font: 10px/1.7 var(--mono); letter-spacing: 0.04em; }
.support-principles { padding: clamp(90px, 12vw, 160px) clamp(22px, 6vw, 110px); border-bottom: 1px solid var(--line); }
.support-heading { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 40px; align-items: end; margin-bottom: 70px; }
.support-heading .section-number { align-self: start; margin-top: 10px; }
.support-heading h2, .support-costs h2 { max-width: 850px; margin: 0; font-size: clamp(44px, 6vw, 90px); font-weight: 500; letter-spacing: -0.06em; line-height: 0.98; }
.support-principle-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line-strong); }
.support-principle-grid article { min-height: 270px; padding: 28px clamp(22px, 3vw, 44px) 34px 0; border-right: 1px solid var(--line); }
.support-principle-grid article + article { padding-left: clamp(22px, 3vw, 44px); }
.support-principle-grid article:last-child { border-right: 0; }
.support-principle-grid span { color: var(--orange); font: 9px var(--mono); letter-spacing: 0.14em; }
.support-principle-grid h3 { margin: 64px 0 16px; font-size: clamp(25px, 2.5vw, 38px); font-weight: 400; letter-spacing: -0.045em; }
.support-principle-grid p { max-width: 390px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.support-costs { display: grid; grid-template-columns: 0.6fr 1.4fr; gap: clamp(42px, 8vw, 130px); padding: clamp(90px, 12vw, 160px) clamp(22px, 6vw, 110px); }
.support-costs .section-number { margin-top: 10px; }
.support-costs > div > p { max-width: 720px; margin: 34px 0 0; color: var(--muted); font-size: 17px; line-height: 1.75; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .project-index { display: none; }
  .hero-signal { left: 15%; }
  .section-heading { grid-template-columns: 0.5fr 1.5fr; }
  .section-heading > p:last-child { grid-column: 2; }
  .sounds-section { grid-template-columns: 0.8fr 1.2fr; }
  .sounds-orbit { width: min(38vw, 400px); }
}

@media (max-width: 760px) {
  .site-header { min-height: 68px; }
  .wordmark-handle { display: none; }
  .hero { min-height: calc(100svh - 68px); padding-top: 78px; padding-bottom: 48px; }
  h1 { font-size: clamp(58px, 18vw, 92px); }
  h1 > span { max-width: 90%; margin-top: 0.3em; font-size: 0.56em; line-height: 1.05; }
  .hero-intro { max-width: 90%; margin-top: 36px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-signal { position: relative; right: auto; bottom: auto; left: auto; width: calc(100% + 44px); height: 170px; margin: 46px -22px 0; }
  .section-heading { display: block; }
  .section-heading .section-number { margin-bottom: 28px; }
  .section-heading > p:last-child { max-width: 500px; margin-top: 26px; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-media { aspect-ratio: 1.45 / 1; }
  .project-description, .tag-list, .project-links { margin-left: 0; }
  .sounds-section { display: flex; flex-direction: column; min-height: 0; }
  .sounds-orbit { width: min(78vw, 390px); margin-bottom: 70px; }
  .sounds-copy { padding-left: 0; }
  .archive-item { grid-template-columns: 34px minmax(0, 1fr) auto; gap: 12px; padding: 12px 0; }
  .archive-item a { grid-column: 2; }
  .archive-duration { grid-column: 3; grid-row: 1; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .contact-grid { grid-template-columns: 1fr; gap: 62px; }
  .contact-card { grid-template-columns: 76px minmax(0, 1fr) auto; gap: 12px; }
  .support-page { min-height: calc(100svh - 68px); }
  .support-hero { min-height: 0; padding-top: 82px; }
  .support-actions { flex-direction: column; align-items: stretch; }
  .support-amounts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .support-amount-option { min-height: 68px; }
  .support-amount-option.custom { grid-column: 1 / -1; }
  .support-heading, .support-costs { grid-template-columns: 1fr; }
  .support-principle-grid { grid-template-columns: 1fr; }
  .support-principle-grid article, .support-principle-grid article + article { min-height: 0; padding: 28px 0 36px; border-right: 0; border-bottom: 1px solid var(--line); }
  .support-principle-grid article:last-child { border-bottom: 0; }
  .support-principle-grid h3 { margin-top: 34px; }
  footer { align-items: flex-start; flex-direction: column; gap: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .hero-constellation, .constellation-lines i, .constellation-grains i { animation: none !important; }
  .project-art *, .project-art *::before, .project-art *::after { animation: none !important; }
}
