:root {
  --bg: #07111f;
  --bg-soft: rgba(255,255,255,0.06);
  --card: rgba(10, 22, 39, 0.72);
  --card-2: rgba(14, 28, 49, 0.88);
  --line: rgba(255,255,255,0.1);
  --text: #eef4ff;
  --muted: #bfd0ea;
  --accent: #79d0ff;
  --accent-2: #f4bf71;
  --accent-3: #8ef0cf;
  --shadow: 0 24px 60px rgba(0,0,0,0.35);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(121,208,255,0.12), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(244,191,113,0.10), transparent 24%),
    linear-gradient(180deg, #07111f 0%, #09182a 45%, #07111f 100%);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image:
    radial-gradient(rgba(255,255,255,0.8) 0.45px, transparent 0.6px);
  background-size: 9px 9px;
  z-index: 0;
}
.section {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 4.75rem 0;
  position: relative;
  z-index: 2;
}
.site-header {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(7,17,31,0.82), rgba(7,17,31,0.28));
}
.site-header nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.site-header nav a {
  color: var(--muted);
  font-size: 0.95rem;
}
.site-header nav a:hover { color: var(--text); }
.brand {
  font-weight: 800;
  letter-spacing: 0.03em;
}
.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}
.eyebrow, .section-label, .note-label, .stat-kicker, .project-type, .project-status {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
}
.eyebrow, .section-label, .note-label, .stat-kicker, .project-type { color: var(--accent); }
.project-status { color: var(--accent-2); }
h1, h2, h3 {
  line-height: 1.06;
  margin: 0 0 1rem;
}
h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.9rem, 6vw, 5.8rem);
  max-width: 12ch;
}
h1 span { color: var(--accent-2); }
h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  max-width: 16ch;
}
h3 { font-size: 1.22rem; }
p { margin: 0 0 1rem; }
.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 62ch;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.15rem;
}
.hero-meta span {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  color: var(--muted);
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  font-size: 0.9rem;
}
.cta-row {
  display: flex;
  gap: 1rem;
  margin-top: 1.6rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 600;
}
.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: #062033;
  border: 0;
}
.btn.secondary { color: var(--text); background: rgba(255,255,255,0.04); }
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.glass {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
}
.panel {
  background: var(--card);
  padding: 1.45rem;
}
.hero-visual {
  position: relative;
  display: grid;
  gap: 1rem;
}
.hero-photo {
  padding: 0.9rem;
  overflow: hidden;
}
.hero-photo img {
  border-radius: 18px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.floating-note {
  width: min(300px, 75%);
  position: absolute;
  bottom: -1rem;
  right: -0.5rem;
  background: linear-gradient(180deg, rgba(10,22,39,0.92), rgba(10,22,39,0.72));
}
.split-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}
.identity-stack {
  display: grid;
  gap: 1rem;
}
.stat-card {
  background: linear-gradient(180deg, rgba(15,28,47,0.92), rgba(10,22,39,0.8));
}
.stat-card.accent {
  background: linear-gradient(180deg, rgba(43,29,18,0.9), rgba(19,17,24,0.9));
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.4rem;
}
.section-side {
  max-width: 28rem;
  color: var(--muted);
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.grid-2.reverse { grid-template-columns: 0.9fr 1.1fr; }
.card-grid.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.soft-hover {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.soft-hover:hover {
  transform: translateY(-4px);
  border-color: rgba(121,208,255,0.35);
}
.artwork-panel { padding: 1rem; }
.artwork-panel img { border-radius: 18px; }
.jazz-panel {
  background: linear-gradient(160deg, rgba(244,191,113,0.1), rgba(255,255,255,0.02));
}
.timeline {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}
.timeline-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.2rem;
  padding: 1.2rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,0.035);
}
.year {
  color: var(--accent-2);
  font-weight: 700;
}
.project-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.project-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
}
.project-card.feature {
  background: linear-gradient(180deg, rgba(20,34,54,0.95), rgba(9,20,35,0.92));
  border-color: rgba(121,208,255,0.35);
}
.project-topline {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.text-link {
  margin-top: auto;
  color: var(--accent-3);
  font-weight: 600;
}
.quote-card {
  background: linear-gradient(180deg, rgba(16,28,49,0.95), rgba(11,19,33,0.84));
}
.quote-card blockquote {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #f9fbff;
}
.site-footer {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 4rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  border-top: 1px solid var(--line);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  text-align: right;
  color: var(--muted);
}
.footer-links a:hover,
.text-link:hover { color: var(--text); }
.bg-orb {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.26;
  z-index: 0;
  pointer-events: none;
}
.orb-1 { background: #42b7ff; top: -80px; left: -60px; }
.orb-2 { background: #ffb457; right: -80px; top: 24%; }
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 120ms; }
@media (max-width: 940px) {
  .hero,
  .split-intro,
  .grid-2,
  .grid-2.reverse,
  .card-grid.three,
  .project-list,
  .site-footer {
    grid-template-columns: 1fr;
    display: grid;
  }
  .site-header {
    position: relative;
    gap: 1rem;
  }
  .site-header,
  .site-header nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .section-head { display: grid; }
  .timeline-item { grid-template-columns: 1fr; }
  .floating-note {
    position: static;
    width: 100%;
  }
  .footer-links { text-align: left; }
}
