:root {
  --bg: #0a0d0f;
  --surface: #14191c;
  --accent: #4a9b9b;      /* Exhibitry teal — shared with HoloTube site */
  --accent-2: #5aa6d6;    /* VR Vue underwater blue — this site's signature */
  --text: #e8eaeb;
  --muted: #9aa3a6;
  --maxw: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(1200px 760px at 50% -8%, rgba(90,166,214,0.14), transparent 62%),
    radial-gradient(900px 700px at 88% 22%, rgba(74,155,155,0.08), transparent 60%),
    linear-gradient(180deg, #0a1016 0%, #080b0d 100%);
  background-attachment: fixed;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ---------- placeholder media (shown until real img/video arrives) ---------- */
.media-placeholder {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(120% 120% at 70% 20%, rgba(90,166,214,0.20), transparent 60%),
    linear-gradient(160deg, #0e1417, #060809);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

video, img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
}
.hero .media-frame { position: absolute; inset: 0; }
.hero::after { /* darken for legibility, let the underwater blue read through */
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 50% 30%, rgba(40,100,150,0.20), transparent 55%),
    linear-gradient(180deg, rgba(8,12,14,0.22), rgba(8,12,14,0.82));
}
.hero-content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 1.5rem;
}
.hero-content .kicker {
  color: var(--accent-2); letter-spacing: 0.22em; text-transform: uppercase;
  font-size: 0.8rem; margin-bottom: 1.25rem;
}
/* two-line engraved logotype, matching the exhibit backdrop.
   Title-case text + Cinzel small-caps = a large initial cap with small caps after,
   at semibold — the engraved look of the banner (not uniform full-caps bold). */
.logotype { text-align: center; font-family: 'Cinzel', Georgia, 'Times New Roman', serif; line-height: 1.04; }
.logotype .l1, .logotype .l2 { display: block; color: var(--text); font-variant-caps: small-caps; }
.logotype .l1 {
  font-size: clamp(2.3rem, 7.2vw, 5.2rem); font-weight: 600; letter-spacing: 0.04em;
  display: inline-block; padding: 0 0.12em 0.16em; border-bottom: 1.5px solid rgba(232,234,235,0.7);
}
.logotype .l2 { font-size: clamp(1.05rem, 3.1vw, 2.05rem); font-weight: 600; letter-spacing: 0.14em; margin-top: 0.55rem; }
.hero-content p { color: var(--text); opacity: 0.92; margin-top: 1.4rem; font-size: clamp(1.15rem, 2.6vw, 1.65rem); font-weight: 300; }
.scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; color: var(--muted); font-size: 0.75rem; letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ---------- generic section ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: 7rem 1.5rem; }
.section h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); font-weight: 700; line-height: 1.1; }
.section .lead { color: var(--muted); margin-top: 0.75rem; max-width: 46ch; font-size: 1.1rem; }
.eyebrow { color: var(--accent-2); letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.75rem; margin-bottom: 0.75rem; }

/* media block used in experience + config rows */
.media-16x9 {
  aspect-ratio: 16 / 9; border-radius: 10px; overflow: hidden; background: var(--surface);
  border: 1px solid rgba(90,166,214,0.20);
  box-shadow: 0 14px 40px rgba(0,0,0,0.45), 0 0 0 1px rgba(90,166,214,0.05) inset;
}

/* two-column split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.split.reverse > .media-16x9 { order: 2; }
@media (max-width: 800px) {
  .split { grid-template-columns: 1fr; gap: 1.5rem; }
  .split.reverse > .media-16x9 { order: 0; }
  .section { padding: 4.5rem 1.25rem; }
}

/* ---------- full-bleed image band (the sculpture / handset hero moments) ---------- */
.band { position: relative; height: 80vh; min-height: 480px; overflow: hidden; }
.band .media-placeholder, .band img, .band video { position: absolute; inset: 0; }
.band::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,13,15,0.85) 0%, rgba(10,13,15,0.35) 45%, transparent 70%);
}
.band-content {
  position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto;
  height: 100%; display: flex; flex-direction: column; justify-content: center;
  padding: 1.5rem; max-width: min(var(--maxw), 100%);
}
.band-content .inner { max-width: 30rem; }
.band-content h2 { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 700; line-height: 1.08; }
.band-content .lead { color: var(--text); opacity: 0.9; margin-top: 1rem; font-size: 1.15rem; max-width: 32ch; }
@media (max-width: 800px) {
  .band::after { background: linear-gradient(180deg, rgba(10,13,15,0.45) 0%, rgba(10,13,15,0.85) 65%); }
  .band-content { justify-content: flex-end; padding-bottom: 3rem; }
}

/* ---------- pull quote ---------- */
.quote {
  margin: 0; padding: 5rem 1.5rem; text-align: center;
  background: radial-gradient(60% 120% at 50% 50%, rgba(90,166,214,0.12), transparent 70%);
  border-top: 1px solid rgba(90,166,214,0.16);
  border-bottom: 1px solid rgba(90,166,214,0.16);
}
.quote blockquote {
  font-size: clamp(1.4rem, 3vw, 2.1rem); font-weight: 600; line-height: 1.3; color: var(--text);
  max-width: 860px; margin: 0 auto;
}
.quote cite { display: block; margin-top: 1.5rem; color: var(--accent-2); font-style: normal;
  letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.8rem; }

/* config: recommended / award tag */
.tag { display: inline-block; border: 1px solid var(--accent-2); color: var(--accent-2);
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.25rem 0.6rem; border-radius: 999px; margin-bottom: 1rem; }

/* ---------- configurations strip (4 footprints) ---------- */
.configs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
@media (max-width: 800px) { .configs { grid-template-columns: repeat(2, 1fr); } }
.config-card { background: var(--surface); border-radius: 10px; overflow: hidden; }
.config-card .thumb { aspect-ratio: 4 / 3; }
.config-card .meta { padding: 0.9rem 1rem 1.1rem; }
.config-card .meta h3 { font-size: 0.95rem; font-weight: 600; }
.config-card .meta span { color: var(--muted); font-size: 0.8rem; }

/* ---------- projects grid ---------- */
.projects { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
@media (max-width: 800px) { .projects { grid-template-columns: 1fr; } }
.project-card {
  display: block; text-decoration: none; color: var(--text);
  background: var(--surface); border-radius: 10px; overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.project-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.5); }
.project-card .thumb { aspect-ratio: 16 / 9; }
.project-card .meta { padding: 1rem 1.25rem 1.25rem; }
.project-card .meta h3 { font-size: 1.05rem; font-weight: 600; }
.project-card .meta span { color: var(--muted); font-size: 0.85rem; }

/* ---------- footer ---------- */
footer { border-top: 1px solid #1f262a; padding: 3rem 1.5rem; text-align: center; color: var(--muted); }
footer a { color: var(--accent-2); text-decoration: none; }
footer .wordmark { color: var(--text); font-weight: 700; letter-spacing: 0.02em; font-size: 1.25rem; margin-bottom: 1rem; }
footer .sibling { margin-top: 1.25rem; font-size: 0.9rem; }
