/* ============================================================
   Jacky Taylor — Writer · Director · Producer
   Plum-noir palette, rose-pink + violet accents.
   Type: Newsreader (display) / Albert Sans (body) / Courier Prime (labels)
   ============================================================ */

:root {
  --bg: #14101b;
  --bg-2: #191322;
  --card: #1e1728;
  --line: rgba(233, 216, 255, 0.13);
  --line-soft: rgba(233, 216, 255, 0.07);
  --text: #f5eff8;
  --muted: #b4a7c6;
  --faint: #8d7fa3;
  --pink: #f25ca2;
  --violet: #a98cff;
  --grad: linear-gradient(96deg, #f25ca2 10%, #a98cff 90%);
  --serif: "Newsreader", "Iowan Old Style", Georgia, serif;
  --sans: "Albert Sans", "Helvetica Neue", Arial, sans-serif;
  --mono: "Courier Prime", "Courier New", monospace;
  --wrap: 72rem;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 1.1rem;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: rgba(242, 92, 162, 0.35); color: #fff; }

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

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
  border-radius: 2px;
}

.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* ---------- type ---------- */

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
}

.display-xl { font-size: clamp(3rem, 8vw, 5.5rem); }
.display-lg { font-size: clamp(2.2rem, 5vw, 3.6rem); }
.display-md { font-size: clamp(1.6rem, 3.2vw, 2.2rem); }

.accent {
  font-style: italic;
  color: var(--pink);
}

.accent--violet { color: var(--violet); }

.kicker {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  display: block;
  margin-bottom: 1.1rem;
}

.lede {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  max-width: 44rem;
}

/* ---------- header ---------- */

.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 16, 27, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

.head-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1rem;
}

.brand {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.brand i {
  font-style: normal;
  color: var(--pink);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.5vw, 2.2rem);
}

.site-nav a {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  padding-block: 0.35rem;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

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

.site-nav a[aria-current="page"] {
  color: var(--text);
  border-bottom-color: var(--pink);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  color: var(--text);
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.5rem 0.85rem;
  cursor: pointer;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  background: var(--pink);
  color: #170b12;
  border: 1px solid var(--pink);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 34px rgba(242, 92, 162, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.btn--ghost:hover {
  box-shadow: none;
  border-color: var(--violet);
  color: var(--violet);
}

.textlink {
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--pink);
  border-bottom: 1px solid rgba(242, 92, 162, 0.4);
  padding-bottom: 0.2rem;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.textlink:hover { color: var(--violet); border-color: var(--violet); }

/* ---------- hero ---------- */
/* Static diptych: the busy set on the left, the portrait on the right,
   each fading into the dark background — separated by a thin seam.
   No animation, no blending one face into the other. */

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-media img {
  position: absolute;
  object-fit: cover;
}

.layer-set {
  left: 0;
  top: 0;
  bottom: 0;
  width: 68%;
  height: 100%;
  object-position: center 32%;
  opacity: 0.55;
  -webkit-mask-image: linear-gradient(90deg, #000 74%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 74%, transparent 100%);
}

/* whole headshot, modest size, every edge fading into the background */
.layer-portrait {
  top: 50%;
  right: 5vw;
  bottom: auto;
  transform: translateY(-50%);
  width: min(24vw, 21rem);
  height: auto;
  z-index: 3;
  filter: brightness(0.97) saturate(0.96);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 16%, #000 84%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 16%, #000 84%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
  mask-composite: intersect;
}

.hero-seam {
  position: absolute;
  top: 13%;
  bottom: 13%;
  right: min(31vw, 27rem);
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(242, 92, 162, 0.55) 30%, rgba(169, 140, 255, 0.55) 70%, transparent 100%);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 16, 27, 0.94) 0%, rgba(20, 16, 27, 0.78) 30%, rgba(20, 16, 27, 0.35) 58%, rgba(20, 16, 27, 0.12) 100%),
    linear-gradient(180deg, rgba(20, 16, 27, 0.5) 0%, rgba(20, 16, 27, 0) 26%, rgba(20, 16, 27, 0) 60%, #14101b 100%);
  pointer-events: none;
}

.hero-inner {
  display: flex;
  align-items: center;
  min-height: min(86vh, 52rem);
  padding-block: clamp(4rem, 10vh, 7rem);
}

.hero-copy { max-width: 34rem; min-width: 0; width: 100%; }

.hero-copy .display-xl { margin-bottom: 1.4rem; }

.hero-roles {
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 1.6rem;
}

.hero-roles span { color: var(--faint); padding-inline: 0.45rem; }

.hero-lede {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  max-width: 30rem;
  margin-bottom: 2.3rem;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.media-tint {
  position: absolute;
  inset: 0;
  background: #39264d;
  opacity: 0.18;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}

.hero-scrim { z-index: 2; }

.hero-seam { z-index: 4; }

/* film grain over hero */

.grain::after {
  content: "";
  position: absolute;
  inset: -50%;
  z-index: 5;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- affiliations strip ---------- */

.strip {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-2);
}

.strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 2.6rem;
  row-gap: 0.8rem;
  padding-block: 1.35rem;
}

.strip-item {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  white-space: nowrap;
}

.strip-item b {
  font-weight: 700;
  color: var(--muted);
}

/* ---------- sections ---------- */

.section { padding-block: clamp(4.5rem, 9vw, 7.5rem); }

.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.section-head .lede { margin-top: 1.2rem; }

/* ---------- about ---------- */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.about-copy p { color: var(--muted); margin-bottom: 1.2rem; max-width: 36rem; }

.about-copy p strong { color: var(--text); font-weight: 500; }

.about-copy em { color: var(--text); }

.about-copy .display-lg { margin-bottom: 1.6rem; }

/* read-more bio expander (native details/summary, no JS) */
.bio-details summary {
  list-style: none;
  cursor: pointer;
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  border-bottom: 1px solid rgba(242, 92, 162, 0.4);
  padding-bottom: 0.2rem;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.bio-details summary:hover { color: var(--violet); border-color: var(--violet); }

.bio-details summary::-webkit-details-marker { display: none; }

.bio-details[open] .more-label { display: none; }

.bio-details:not([open]) .less-label { display: none; }

.bio-details > p:first-of-type { margin-top: 1.4rem; }

.figure { position: relative; }

.figure img {
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--line-soft);
}

.figcap {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  margin-top: 1rem;
}

/* ---------- role cards ---------- */

.role-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.role-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.role-card:hover { transform: translateY(-4px); border-color: rgba(169, 140, 255, 0.35); }

.role-card h3 { font-size: 1.7rem; }

.role-card p { color: var(--muted); font-size: 0.98rem; flex-grow: 1; }

.role-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--violet);
}

/* ---------- photo bands ---------- */

.photo-band {
  position: relative;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.photo-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(20, 16, 27, 0.96) 20%, rgba(20, 16, 27, 0.72) 55%, rgba(25, 17, 34, 0.55) 100%);
}

.photo-band--center::before {
  background: linear-gradient(180deg, rgba(20, 16, 27, 0.9) 0%, rgba(20, 16, 27, 0.68) 50%, rgba(20, 16, 27, 0.92) 100%);
}

/* heavier overlay — image reads as dark texture behind text */
.photo-band--dark::before {
  background: linear-gradient(90deg, rgba(20, 16, 27, 0.96) 0%, rgba(20, 16, 27, 0.88) 55%, rgba(20, 16, 27, 0.8) 100%);
}

.band-inner {
  padding-block: clamp(4.5rem, 9vw, 7rem);
  max-width: 38rem;
}

.band-inner .display-lg { margin-bottom: 1.2rem; }

.band-inner p { color: var(--muted); margin-bottom: 2rem; }

.band-inner--center {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

/* ---------- filmography ---------- */

.film-section {
  padding-block: clamp(3rem, 6vw, 4.5rem);
  border-top: 1px solid var(--line-soft);
  scroll-margin-top: 5.5rem;
}

.film-section:first-of-type { border-top: 0; }

.film-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.film-head .display-md { font-size: clamp(1.9rem, 3.6vw, 2.6rem); }

.film-note { color: var(--muted); max-width: 38rem; margin-bottom: 2rem; }

.credit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.subhead {
  font-size: 1.7rem;
  margin: 3.2rem 0 0.9rem;
}

.credit-status {
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  border: 1px solid rgba(242, 92, 162, 0.4);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  margin-top: 0.2rem;
}

.credit-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.1rem 1.1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.credit-card:hover { transform: translateY(-4px); border-color: rgba(169, 140, 255, 0.35); }

.credit-card h3 { font-size: 1.45rem; }

.credit-card p { color: var(--muted); font-size: 0.95rem; }

.credit-card p em { color: var(--text); }

.poster {
  aspect-ratio: 2 / 3;
  border-radius: 0.6rem;
  overflow: hidden;
  margin-bottom: 0.4rem;
}

.poster img { width: 100%; height: 100%; object-fit: cover; }

/* typographic stand-in until the real poster arrives */
.poster--tbd {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  text-align: center;
  padding: 1.2rem;
  background: linear-gradient(160deg, #241b31 0%, #170f20 70%);
  border: 1px dashed rgba(233, 216, 255, 0.18);
  position: relative;
}

.poster--tbd::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.5rem;
  background: repeating-linear-gradient(
    -55deg,
    rgba(242, 92, 162, 0.5) 0 1rem,
    rgba(20, 16, 27, 0.9) 1rem 2rem,
    rgba(169, 140, 255, 0.5) 2rem 3rem,
    rgba(20, 16, 27, 0.9) 3rem 4rem
  );
}

.poster-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.15;
}

.poster-tag {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
}

/* screenplay title page — stand-in artwork for writing credits */
.poster--script {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-align: center;
  padding: 1.4rem 1.4rem 1.4rem 2.2rem;
  background: linear-gradient(170deg, #221a2e 0%, #150f1e 100%);
  border: 1px solid var(--line-soft);
  position: relative;
}

.script-brads,
.script-brads::before,
.script-brads::after {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #3d3150;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.65), 0 1px 1px rgba(255, 255, 255, 0.07);
}

.script-brads {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
}

.script-brads::before,
.script-brads::after {
  content: "";
  position: absolute;
  left: 0;
}

.script-brads::before { top: -3.2rem; }

.script-brads::after { top: 3.2rem; }

.script-title {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.4;
}

.script-line {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.script-title + .script-line { margin-top: 1.1rem; }

/* call sheet — stand-in artwork for the first AD's credit */
.poster--callsheet {
  display: flex;
  flex-direction: column;
  padding: 1.2rem;
  background: linear-gradient(170deg, #221a2e 0%, #150f1e 100%);
  border: 1px solid var(--line-soft);
}

.cs-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--line-soft);
}

.cs-row b { color: var(--text); font-weight: 700; }

.cs-row:last-child { border-bottom: 0; }

.cs-head {
  border-bottom: 2px solid;
  border-image: linear-gradient(90deg, var(--pink), var(--violet)) 1;
  padding-top: 0;
}

.cs-title {
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.15;
  text-align: center;
  margin-block: auto;
}

.slot-card {
  border: 1px dashed rgba(233, 216, 255, 0.22);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(30, 23, 40, 0.5);
}

.slot-stripe {
  height: 0.65rem;
  background: repeating-linear-gradient(
    -55deg,
    rgba(242, 92, 162, 0.55) 0 1.2rem,
    rgba(20, 16, 27, 0.9) 1.2rem 2.4rem,
    rgba(169, 140, 255, 0.55) 2.4rem 3.6rem,
    rgba(20, 16, 27, 0.9) 3.6rem 4.8rem
  );
}

.slot-body {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.slot-body p {
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.slot-status {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  border: 1px solid rgba(242, 92, 162, 0.4);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  white-space: nowrap;
}

/* ---------- inspiration ---------- */

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr));
  gap: 1.4rem;
}

.post-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.post-card h3 { font-size: 1.45rem; }

.post-card p { color: var(--muted); font-size: 0.98rem; }

.post-date {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
}

.chip-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2.4rem; }

.chip {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 1rem;
}

/* ---------- contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 3.5vw, 2.6rem);
}

.contact-card + .contact-card { margin-top: 1.4rem; }

.contact-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 0.8rem;
}

.contact-big {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  text-decoration: none;
  background-image: var(--grad);
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  padding-bottom: 0.25rem;
  transition: background-size 0.35s ease;
  word-break: break-word;
}

.contact-big:hover { background-size: 100% 2px; }

.contact-card p { color: var(--muted); font-size: 0.98rem; margin-top: 0.8rem; }

.contact-card p a { color: var(--text); }

/* ---------- footer ---------- */

.site-foot {
  border-top: 1px solid var(--line-soft);
  background: var(--bg-2);
  padding-block: 3.5rem 2.5rem;
}

.foot-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.8rem;
}

.foot-brand .brand { font-size: 1.6rem; }

.foot-tag {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  margin-top: 0.8rem;
}

.foot-nav { display: flex; flex-wrap: wrap; gap: 1.6rem; }

.foot-nav a {
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  transition: color 0.25s ease;
}

.foot-nav a:hover { color: var(--pink); }

.foot-out {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1.2rem;
}

.foot-fine {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line-soft);
  padding-top: 1.6rem;
  font-size: 0.85rem;
  color: var(--faint);
}

.foot-fine a { color: var(--muted); text-decoration: none; }

.foot-fine a:hover { color: var(--pink); }

/* ---------- reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */

@media (max-width: 62rem) {
  .nav-toggle { display: inline-block; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(20, 16, 27, 0.97);
    border-bottom: 1px solid var(--line);
    display: none;
    padding: 0.5rem var(--pad) 1.2rem;
  }

  .site-nav.open { display: flex; }

  .site-nav a { padding-block: 0.9rem; border-bottom: 1px solid var(--line-soft); }

  .site-nav a[aria-current="page"] { border-bottom-color: var(--pink); }

  .layer-portrait {
    top: 2.5rem;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(64vw, 18rem);
  }

  .layer-set {
    top: calc(min(64vw, 18rem) + 5rem);
    bottom: 0;
    width: 100%;
    height: auto;
    opacity: 0.35;
    object-position: 58% 32%;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 22%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 22%);
  }

  .hero-seam {
    top: calc(min(64vw, 18rem) + 5rem);
    bottom: auto;
    left: 8%;
    right: 8%;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(242, 92, 162, 0.55) 30%, rgba(169, 140, 255, 0.55) 70%, transparent 100%);
  }

  .hero-inner {
    min-height: 0;
    align-items: flex-start;
    padding-top: calc(min(64vw, 18rem) + 7rem);
    padding-bottom: 4rem;
  }

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

  .role-grid, .credit-grid { grid-template-columns: 1fr; }

  .credit-card { flex-direction: row; flex-wrap: wrap; align-items: flex-start; }

  .credit-card .poster { flex: 0 0 8.5rem; margin-bottom: 0; }

  .credit-card .role-label, .credit-card h3, .credit-card p { flex-basis: calc(100% - 10rem); margin-left: auto; }

  .figure { max-width: 28rem; }
}

/* ---------- motion preferences ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .reveal { opacity: 1; transform: none; transition: none; }

  .btn, .role-card { transition: none; }
}
