:root {
  --bg: #070707;
  --bg-soft: rgba(18, 18, 18, 0.92);
  --panel-soft: rgba(14, 14, 14, 0.88);
  --red: #c1121f;
  --red-soft: rgba(193, 18, 31, 0.25);
  --text: #f5f5f1;
  --muted: #b8b8b2;
  --line: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 82% 12%, rgba(193, 18, 31, 0.12), transparent 22%),
    radial-gradient(circle at 20% 0%, rgba(193, 18, 31, 0.1), transparent 28%),
    linear-gradient(180deg, #050505 0%, #090909 45%, #050505 100%);
  color: var(--text);
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255,255,255,0.02), rgba(255,255,255,0));
  mix-blend-mode: screen;
}

.site-shell {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 32px 0 40px;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(14px);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  font-weight: 700;
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 18px rgba(193, 18, 31, 0.55);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
}

.site-nav a:hover {
  color: var(--text);
}

.section-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: end;
  padding-bottom: 112px; /* was 72px — more air between hero and Selected Work */
}

.eyebrow-pill {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.eyebrow-highlight {
  color: var(--red);
}

.divider {
  color: rgba(255, 255, 255, 0.35);
}

.preheadline,
.section-label,
.mini-label,
.contact-label,
.project-year,
.card-header-row,
.portrait-heading p {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
}

.preheadline {
  margin: 0 0 20px;
  color: #e1e1dc;
  font-weight: 500;
}

.hero h1,
.content-section h2 {
  margin: 0;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.hero h1 {
  max-width: 980px;
  font-size: clamp(3.25rem, 8vw, 6.55rem);
}

.hero h1 span {
  display: block;
}

.hero h1 .headline-accent {
  color: var(--red);
}

.hero-body,
.universe-body,
.about-body,
.project-blurb,
.section-sidecopy,
.feature-card-inner p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.hero-body {
  max-width: 760px;
  margin-top: 24px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  padding: 14px 24px;
  background: var(--red);
  color: var(--text);
}

.button-secondary {
  padding: 14px 24px;
  border: 1px solid var(--line);
  color: var(--text);
  background: transparent;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.button.compact {
  margin-top: 24px;
  padding: 13px 20px;
}

.feature-card-wrap {
  position: relative;
}

.feature-glow,
.portrait-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(48px);
  background: var(--red-soft);
}

.feature-glow {
  right: -12px;
  top: 40px;
  width: 112px;
  height: 112px;
}

.feature-card,
.universe-panel,
.contact-panel,
.portrait-panel {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(16,16,16,0.96) 0%, rgba(8,8,8,0.98) 100%);
}

.feature-card {
  padding: 24px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
}

.card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.6);
}

.status-red,
.red-heading {
  color: var(--red);
}

.feature-card-inner {
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
}

.feature-card-inner h2 {
  font-size: clamp(1.85rem, 3vw, 2.25rem);
  line-height: 1.08;
  color: var(--text);
}

.feature-card-inner p {
  margin-top: 16px;
  font-size: 0.98rem;
}

.content-section {
  padding-bottom: 72px;
}

.section-topline {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 32px;
}

.section-label {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.55);
}

.content-section h2 {
  font-size: clamp(2.35rem, 5vw, 4rem);
}

.section-sidecopy {
  max-width: 420px;
  margin: 0;
  font-size: 0.95rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.project-card,
.positioning-card,
.contact-card {
  border: 1px solid var(--line);
  background: var(--panel-soft);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
}

.project-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 20px;
  border-radius: 1.75rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}

.project-card h3 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.05;
  text-transform: uppercase;
  font-weight: 900;
}

.project-year {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.45);
}

.rule {
  width: 100%;
  height: 1px;
  margin: 16px 0;
  background: rgba(255, 255, 255, 0.1);
}

.project-blurb {
  margin: 0;
  font-size: 0.94rem;
}

.project-link {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.68rem;
}

.project-link:hover {
  color: var(--text);
}

/* ─── Universe Section ─────────────────────────────────────────── */

.universe-panel {
  padding: 28px;
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(14,14,14,0.96) 0%, rgba(7,7,7,0.98) 70%, rgba(30,10,12,0.95) 100%);
}

.universe-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;           /* tightened from 32px */
  align-items: stretch; /* was start — locks columns to same height */
}

.universe-text-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.universe-text-top {
  display: flex;
  flex-direction: column;
}

.universe-body {
  max-width: 100%;
  margin-top: 20px;
  font-size: 1.1rem;
}

.universe-sidecolumn {
  display: flex;
  flex-direction: column;
}

.universe-poster-card {
  overflow: hidden;
  border-radius: 1.75rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
  flex: 1;
  display: flex;
  align-items: stretch;
}

.universe-poster-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.positioning-card,
.contact-card {
  border-radius: 1.75rem;
  background: rgba(255, 255, 255, 0.03);
}

.positioning-card {
  padding: 20px;
}

.positioning-card ul {
  margin: 0;
  padding-left: 1.1em;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  font-size: 0.95rem;
}

.positioning-card li + li {
  margin-top: 8px;
}

.positioning-card .muted {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* ─── About Section ────────────────────────────────────────────── */

.about-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 20px;           /* tightened from 32px */
  align-items: stretch; /* was start — locks portrait and copy to same height */
}

.portrait-panel-wrap {
  position: relative;
}

.portrait-glow {
  left: -12px;
  top: 40px;
  width: 128px;
  height: 128px;
}

.portrait-panel {
  border-color: var(--line);
  height: 100%;        /* fills the stretched grid row */
}

.portrait-heading {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.portrait-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
}

.imdb-link {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.imdb-link:hover {
  opacity: 0.75;
}

.portrait-inner {
  padding: 16px 20px 20px;
  background: rgba(0, 0, 0, 0.6);
}

.portrait-inner img {
  width: 100%;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertically centre copy against portrait */
}

.about-copy .about-body {
  margin-top: 24px;
  font-size: 1.1rem;
}

.about-body p {
  margin: 0;
}

.about-body p + p {
  margin-top: 20px;
}

/* ─── Contact Section ──────────────────────────────────────────── */

.contact-panel {
  padding: 28px;
  border-color: var(--line);
  background: linear-gradient(180deg, rgba(10,10,10,0.96) 0%, rgba(6,6,6,0.98) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.contact-card {
  padding: 20px;
  border-radius: 1.5rem;
}

.contact-label {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.45);
}

.contact-value {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.contact-value a {
  color: inherit;
  text-decoration: none;
}

.contact-value a:hover {
  color: var(--red);
}

/* ─── Responsive ───────────────────────────────────────────────── */

@media (max-width: 1080px) {
  .project-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .site-shell {
    width: min(100% - 32px, 1280px);
  }

  .site-header,
  .section-topline,
  .section-grid,
  .universe-grid,
  .about-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .section-grid,
  .universe-grid,
  .about-grid {
    display: grid;
  }

  .universe-grid,
  .about-grid {
    align-items: start; /* on mobile, let columns breathe naturally */
  }

  .site-nav {
    gap: 14px;
  }

  .portrait-panel {
    height: auto;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 24px, 1280px);
    padding-top: 18px;
  }

  .site-header {
    padding: 14px 16px;
    border-radius: 24px;
  }

  .site-nav {
    gap: 12px;
  }

  .site-nav a,
  .brand-lockup,
  .button,
  .preheadline,
  .section-label,
  .mini-label,
  .contact-label,
  .project-year,
  .card-header-row,
  .portrait-heading p {
    letter-spacing: 0.18em;
  }

  .section-grid,
  .content-section {
    padding-bottom: 56px;
  }

  .project-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .universe-panel,
  .contact-panel,
  .portrait-panel {
    border-radius: 1.5rem;
  }

  .feature-card-inner,
  .positioning-card,
  .contact-card,
  .project-card,
  .portrait-inner img {
    border-radius: 1.2rem;
  }
}

.project-link-static {
  margin-top: 18px;
  display: inline-flex;
  cursor: default;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(245, 245, 241, 0.42);
  font-size: 0.68rem;
  font-weight: 600;
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.hero-logo {
  width: 250px;
  display: block;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}
