:root {
  --bg: #070407;
  --surface: #100910;
  --surface-2: #170d16;
  --text: #f7f1f6;
  --muted: #b9a8b5;
  --pink: #ff2c97;
  --pink-soft: #ff78ba;
  --line: rgba(255,255,255,.12);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body.intro-active { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; display: block; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 200; background: white; color: black; padding: .8rem 1rem; }
.skip-link:focus { top: 1rem; }

.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #020102;
  opacity: 1;
  visibility: visible;
  transition: opacity 1.05s ease, visibility 1.05s step-end;
}
.intro-screen.is-ending { opacity: 0; visibility: hidden; pointer-events: none; }
.intro-screen video {
  width: min(72vw, 680px);
  height: auto;
  max-height: 78vh;
  object-fit: contain;
  background: #020102;
  box-shadow: 0 0 90px rgba(255,44,151,.12);
}
.intro-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at center, transparent 45%, rgba(0,0,0,.28) 100%);
}
.site-shell { opacity: 0; transform: scale(1.012); transition: opacity 1s ease .2s, transform 1.2s ease .15s; }
.site-shell.is-visible { opacity: 1; transform: none; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  height: 78px;
  padding: 0 clamp(1rem, 4vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(7,4,7,.92), rgba(7,4,7,0));
  transition: background .25s, backdrop-filter .25s, border-color .25s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { background: rgba(7,4,7,.82); backdrop-filter: blur(18px); border-color: var(--line); }
.brand { display: inline-flex; align-items: center; gap: .75rem; text-decoration: none; font-weight: 700; letter-spacing: .16em; }
.brand img { border-radius: 50%; box-shadow: 0 0 24px rgba(255,44,151,.25); animation: brandPulse 4.5s ease-in-out infinite; }
nav { display: flex; gap: clamp(1rem, 3vw, 2.4rem); }
nav a { text-decoration: none; color: #eee5eb; font-size: .9rem; }
nav a:hover { color: var(--pink-soft); }

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
}
.hero-background {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url("assets/artfmi-poster.jpg") center/cover no-repeat;
  filter: brightness(.47) saturate(1.03);
  transform: scale(1.015);
}
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: radial-gradient(circle at center, rgba(7,4,7,.04) 8%, rgba(7,4,7,.34) 50%, rgba(7,4,7,.95) 100%), linear-gradient(to bottom, rgba(7,4,7,.2), rgba(7,4,7,.84));
}
.hero-content { width: min(920px, calc(100% - 2rem)); text-align: center; padding-top: 5rem; text-shadow: 0 2px 25px rgba(0,0,0,.75); }
.eyebrow, .section-label { text-transform: uppercase; letter-spacing: .26em; color: var(--pink-soft); font-size: .72rem; font-weight: 700; }
h1 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.4rem, 9vw, 8rem); line-height: .92; margin: 1rem 0 1.5rem; font-weight: 500; letter-spacing: -.04em; }
h1 span { color: #fff; text-shadow: 0 0 40px rgba(255,44,151,.36); }
.lead { max-width: 650px; margin: 0 auto; color: #e7dce4; font-size: clamp(1rem, 2vw, 1.25rem); }
.scroll-cue { position: absolute; bottom: 1.35rem; display: grid; justify-items: center; gap: .1rem; text-decoration: none; color: var(--muted); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; }
.scroll-cue b { font-size: 1.15rem; font-weight: 400; line-height: 1; animation: scrollArrow 1.8s ease-in-out infinite; }

.section { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; padding: clamp(5rem, 11vw, 9rem) 0; }
.section-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 7vw, 7rem); margin-top: 2.2rem; align-items: start; }
h2 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.4rem, 5vw, 5rem); line-height: 1.02; font-weight: 500; margin: 0; letter-spacing: -.03em; }
.copy { color: #d4c6d0; font-size: 1.08rem; }
.copy p:first-child { margin-top: 0; }

.statement { border-block: 1px solid var(--line); background: radial-gradient(circle at 50% 50%, rgba(255,44,151,.09), transparent 45%), var(--surface); }
.statement-inner {
  width: min(1080px, calc(100% - 2rem));
  margin: auto;
  padding: clamp(5rem, 10vw, 8rem) 0;
  display: grid;
  grid-template-columns: minmax(190px, 320px) minmax(0, 1fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
}
.statement img {
  width: min(100%, 320px);
  margin-inline: auto;
  border-radius: 50%;
  box-shadow: 0 0 42px rgba(255,44,151,.14), 0 0 120px rgba(255,44,151,.08);
}
blockquote {
  margin: 0;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.55vw, 4rem);
  line-height: 1.12;
  color: #f8eff5;
}

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.2rem; }
.cards article { min-height: 250px; padding: 1.6rem; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.015)); backdrop-filter: blur(12px); border-radius: 20px; transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.cards article:hover { transform: translateY(-5px); border-color: rgba(255,44,151,.32); background: linear-gradient(145deg, rgba(255,44,151,.09), rgba(255,255,255,.02)); }
.cards span { color: var(--pink-soft); font-size: .75rem; letter-spacing: .2em; }
.cards h3 { font-family: Georgia, "Times New Roman", serif; font-size: 2rem; font-weight: 500; margin: 3.5rem 0 .5rem; }
.cards p { color: var(--muted); margin: 0; }

.connect { padding-bottom: 5rem; }
.connect-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 7vw, 7rem); margin-top: 2.2rem; }
.connect-grid > div:first-child p { color: var(--muted); max-width: 480px; font-size: 1.08rem; }
.social-links { border-top: 1px solid var(--line); }
.social-links a { display: flex; justify-content: space-between; align-items: center; padding: 1rem .2rem; border-bottom: 1px solid var(--line); text-decoration: none; font-size: 1.05rem; transition: color .2s, padding .2s; }
.social-links a:hover { color: var(--pink-soft); padding-left: .5rem; }
.email-card { margin-top: 4rem; padding: clamp(1.4rem, 4vw, 2.5rem); border-radius: 24px; background: linear-gradient(120deg, rgba(255,44,151,.17), rgba(255,255,255,.045)); backdrop-filter: blur(12px); border: 1px solid rgba(255,44,151,.25); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.email-card span { color: var(--muted); text-transform: uppercase; letter-spacing: .2em; font-size: .7rem; }
.email-card a { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.3rem, 3vw, 2.5rem); text-decoration: none; overflow-wrap: anywhere; }
.email-card a:hover { color: var(--pink-soft); }

footer { border-top: 1px solid var(--line); width: min(var(--max), calc(100% - 2rem)); margin: auto; padding: 2rem 0; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem; color: var(--muted); font-size: .82rem; }
footer > a { justify-self: end; text-decoration: none; }
.footer-brand { color: var(--text); letter-spacing: .18em; font-weight: 700; }
.footer-brand small { display: block; color: var(--muted); font-weight: 400; letter-spacing: .05em; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .85s ease, transform .85s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes brandPulse {
  0%, 100% { box-shadow: 0 0 18px rgba(255,44,151,.2); filter: brightness(.92); }
  50% { box-shadow: 0 0 34px rgba(255,44,151,.46); filter: brightness(1.12); }
}
@keyframes scrollArrow {
  0%, 100% { transform: translateY(0); opacity: .45; }
  50% { transform: translateY(7px); opacity: 1; }
}

@media (max-width: 760px) {
  .site-header { height: 66px; }
  nav { display: none; }
  .hero-content { padding-top: 3.8rem; }
  .section-grid, .statement-inner, .connect-grid { grid-template-columns: 1fr; }
  .statement-inner { text-align: center; }
  .statement img { width: min(72vw, 300px); margin: auto; }
  .cards { grid-template-columns: 1fr; }
  .cards article { min-height: 200px; }
  .email-card { align-items: flex-start; flex-direction: column; }
  footer { grid-template-columns: 1fr; text-align: center; }
  footer > a { justify-self: center; }
}

@media (max-width: 760px) {
  .intro-screen video {
    width: min(88vw, 560px);
    max-height: 74vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .intro-screen { display: none; }
  .site-shell { opacity: 1; transform: none; }
  body.intro-active { overflow: auto; }
}

/* Language switcher */
.header-actions { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2rem); }
.language-switcher { display: inline-flex; align-items: center; gap: .35rem; color: rgba(255,255,255,.5); font-size: .76rem; letter-spacing: .12em; }
.language-switcher button { border: 0; padding: .35rem .25rem; background: transparent; color: rgba(255,255,255,.52); font: inherit; letter-spacing: inherit; cursor: pointer; transition: color .2s, text-shadow .2s; }
.language-switcher button:hover { color: var(--pink-soft); }
.language-switcher button[aria-pressed="true"] { color: #fff; text-shadow: 0 0 14px rgba(255,44,151,.65); }
@media (max-width: 760px) {
  .header-actions { gap: .5rem; }
  .language-switcher { font-size: .72rem; }
}
