:root {
  --paper: #e4cca0;
  --paper-light: #f3dfb7;
  --paper-soft: #ddc18d;
  --ink: #171511;
  --ink-muted: #5a4b36;
  --red: #a64730;
  --red-dark: #79311f;
  --film-black: #11100d;
  --shadow: 0 18px 34px rgba(40, 29, 14, 0.2);
  --shadow-small: 0 8px 16px rgba(40, 29, 14, 0.14);
  --radius: 5px;
  --container: min(1120px, calc(100vw - 40px));
  --font-display: Georgia, "Times New Roman", serif;
  --font-type: "Courier New", Courier, monospace;
  --font-body: Georgia, "Times New Roman", serif;
  --section-gap: clamp(38px, 6vw, 68px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 250, 224, 0.58), transparent 20rem),
    radial-gradient(circle at 80% 12%, rgba(166, 100, 50, 0.16), transparent 18rem),
    radial-gradient(circle at 18% 72%, rgba(118, 77, 32, 0.08), transparent 19rem),
    linear-gradient(90deg, rgba(74, 45, 19, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(74, 45, 19, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: auto, auto, auto, 42px 42px, 42px 42px, auto;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(45, 30, 10, 0.18) 0 1px, transparent 1px),
    radial-gradient(circle at 65% 55%, rgba(45, 30, 10, 0.12) 0 1px, transparent 1px),
    linear-gradient(115deg, transparent 0 48%, rgba(85, 56, 22, 0.09) 49%, transparent 52%);
  background-size: 18px 18px, 27px 27px, 100% 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
}

.container {
  width: var(--container);
  margin-inline: auto;
  position: relative;
}

.section {
  padding-block: var(--section-gap);
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 12px;
  width: min(1140px, calc(100vw - 28px));
  height: 1px;
  transform: translateX(-50%);
  background: rgba(65, 44, 23, 0.22);
}

.section-anchor {
  scroll-margin-top: 92px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background:
    linear-gradient(180deg, rgba(246, 232, 201, 0.97), rgba(230, 207, 163, 0.94)),
    var(--paper-light);
  border-bottom: 1px solid rgba(45, 32, 18, 0.18);
  box-shadow: 0 8px 18px rgba(42, 28, 12, 0.08);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 9px;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 6%, rgba(101, 71, 33, 0.18) 6% 6.5%, transparent 6.5% 45%, rgba(101, 71, 33, 0.14) 45% 45.5%, transparent 45.5%),
    linear-gradient(180deg, rgba(80, 53, 24, 0.13), transparent);
  clip-path: polygon(0 0, 7% 52%, 15% 18%, 26% 55%, 34% 22%, 46% 58%, 57% 20%, 69% 50%, 82% 22%, 94% 54%, 100% 0);
}

.nav-strip {
  width: var(--container);
  min-height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.3vw, 1.9rem);
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 30px);
  font-family: var(--font-type);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links.open-static {
  opacity: 1;
  pointer-events: auto;
}

.nav-link {
  position: relative;
  padding-block: 10px;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--red);
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 38px;
  border: 1px solid rgba(23, 21, 17, 0.5);
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

/* Hero */
.hero {
  min-height: min(760px, calc(100vh - 78px));
  display: grid;
  align-items: center;
  padding-block: clamp(38px, 6vw, 70px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.83fr) minmax(340px, 1.17fr);
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
}

.eyebrow,
.label {
  margin: 0 0 10px;
  color: var(--red-dark);
  font-family: var(--font-type);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  width: max-content;
  max-width: min(100vw - 40px, 620px);
  font-size: clamp(0.68rem, 0.9vw, 0.76rem);
  letter-spacing: 0.6px;
  white-space: nowrap;
}

.hero h1 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(5.8rem, 13.5vw, 10.5rem);
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:
    1px 2px 0 rgba(255, 244, 213, 0.25),
    0 0 1px rgba(0, 0, 0, 0.65);
  filter: contrast(1.08);
}

.hero-roles {
  width: fit-content;
  margin-top: clamp(20px, 4vw, 34px);
  padding-bottom: 12px;
  display: grid;
  gap: 3px;
  font-family: var(--font-type);
  font-size: clamp(1.1rem, 2.4vw, 1.75rem);
  font-weight: 700;
  position: relative;
}

.hero-roles::after,
.hand-note::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 120px;
  height: 9px;
  background: var(--red);
  clip-path: polygon(0 42%, 70% 22%, 100% 42%, 88% 58%, 16% 70%);
}

.hero-intro {
  max-width: 480px;
  margin: 24px 0 0;
  font-family: var(--font-type);
  font-size: clamp(0.92rem, 1.2vw, 1rem);
  font-weight: 700;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  min-width: 138px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  padding: 12px 18px;
  font-family: var(--font-type);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-small);
}

.button-dark {
  color: var(--paper-light);
  background: var(--ink);
}

.button-red {
  color: var(--paper-light);
  border-color: var(--red);
  background: var(--red);
}

.button-ghost {
  background: rgba(246, 232, 201, 0.34);
}

.hero-collage {
  position: relative;
  min-height: clamp(480px, 50vw, 600px);
}

.photo,
.card-image,
.thumb,
.ai-tile,
.poster-card,
.contact-sheet div {
  background-image:
    var(--photo),
    radial-gradient(circle at 38% 28%, rgba(255, 245, 206, 0.35), transparent 20%),
    linear-gradient(135deg, #201914, #a46a3b 48%, #201914);
  background-size: cover;
  background-position: center;
}

.photo {
  position: absolute;
  border: 10px solid rgba(243, 223, 183, 0.9);
  box-shadow: var(--shadow);
  filter: sepia(0.12) contrast(1.03) saturate(0.88);
}

.photo::after,
.card-image::after,
.thumb::after,
.poster-card::after,
.contact-sheet div::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 245, 210, 0.1), rgba(22, 16, 10, 0.18)),
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.18), transparent 22%);
  mix-blend-mode: screen;
}

.photo-main {
  inset: 1% 12% auto 3%;
  height: 69%;
  transform: perspective(900px) rotate(-4deg) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
}

.photo-strip {
  right: 0;
  top: 30%;
  width: 43%;
  height: 26%;
  border-width: 7px;
  transform: perspective(900px) rotate(1.5deg) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  filter: grayscale(1) sepia(0.25) contrast(1.1);
}

.photo-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(10, 10, 9, 0.72) 0 12px, transparent 12px 24px),
    linear-gradient(transparent 0 16%, rgba(5, 5, 5, 0.92) 16% 22%, transparent 22% 78%, rgba(5, 5, 5, 0.92) 78% 84%, transparent 84%);
  opacity: 0.42;
}

.photo-small {
  right: 10%;
  bottom: 1%;
  width: 38%;
  height: 27%;
  border-bottom-width: 38px;
  transform: perspective(900px) rotate(3deg) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
}

.photo-small::before {
  content: "On set.";
  position: absolute;
  right: 18px;
  bottom: -32px;
  z-index: 2;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
}

.taped-note {
  position: absolute;
  top: 4%;
  right: 2%;
  z-index: 3;
  width: 174px;
  padding: 27px 28px 24px;
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-family: var(--font-type);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.08;
  background:
    radial-gradient(circle at 20% 22%, rgba(255, 245, 206, 0.42), transparent 9rem),
    linear-gradient(135deg, #e2c994, #d7bc85);
  box-shadow: var(--shadow-small);
  transform: rotate(3deg);
}

.taped-note::after {
  content: "";
  width: 78px;
  height: 8px;
  margin-top: 8px;
  background: var(--red);
  clip-path: polygon(0 45%, 100% 12%, 95% 52%, 8% 80%);
}

.tape {
  position: absolute;
  z-index: 4;
  display: block;
  background: rgba(174, 137, 70, 0.58);
  box-shadow: 0 2px 6px rgba(30, 20, 9, 0.15);
}

.tape-top {
  top: 0;
  left: 32%;
  width: 142px;
  height: 36px;
  transform: rotate(-7deg);
}

.tape-side {
  right: 4%;
  bottom: 26%;
  width: 96px;
  height: 28px;
  transform: rotate(8deg);
}

/* Sections and cards */
.featured-work .container,
.two-column-section .container,
.ai-section .container,
.acting-section .container,
.about-section .container,
.experience-grid {
  padding: clamp(22px, 3vw, 34px);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 248, 218, 0.42), transparent 14rem),
    radial-gradient(circle at 82% 88%, rgba(121, 79, 28, 0.08), transparent 16rem),
    linear-gradient(rgba(246, 230, 196, 0.78), rgba(232, 207, 161, 0.74));
  border: 1px solid rgba(93, 66, 31, 0.18);
  box-shadow: var(--shadow-small);
  clip-path: polygon(0 1%, 18% 0, 35% 1.3%, 55% 0.2%, 75% 1.2%, 100% 0, 99.4% 99%, 82% 100%, 61% 98.8%, 38% 100%, 18% 98.9%, 0.7% 100%);
}

.section-heading {
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(23, 21, 17, 0.38);
  padding-bottom: 10px;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.split-heading > p {
  flex: 1 1 300px;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--font-type);
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-heading p:not(.eyebrow) {
  max-width: 560px;
  margin: 8px 0 0;
  font-family: var(--font-type);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.45;
}

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

.paper-card {
  position: relative;
  padding: 14px 14px 18px;
  background:
    linear-gradient(145deg, rgba(255, 250, 230, 0.54), rgba(218, 191, 143, 0.32)),
    var(--paper-light);
  border: 1px solid rgba(75, 53, 26, 0.2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}

.project-card::before {
  content: "";
  position: absolute;
  right: 13px;
  top: 10px;
  z-index: 2;
  width: 64px;
  height: 18px;
  background: rgba(174, 137, 70, 0.42);
  transform: rotate(6deg);
  opacity: 0;
  transition: opacity 180ms ease;
}

.project-card:nth-child(3)::before,
.project-card:hover::before {
  opacity: 1;
}

.project-card {
  min-height: 338px;
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.project-card[id] {
  scroll-margin-top: 110px;
}

.project-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: var(--shadow);
}

.card-image {
  position: relative;
  height: 132px;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 3px;
  background-color: #2d2016;
}

.ai-still,
.product-still {
  background-image:
    var(--photo),
    radial-gradient(circle at 68% 32%, rgba(47, 219, 225, 0.58), transparent 22%),
    linear-gradient(135deg, #07141e, #213d51 48%, #0b0c12);
}

.project-card h3,
.production-card h3,
.experience-entry h3 {
  margin: 0 0 10px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.25rem, 2.1vw, 1.6rem);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.project-card p:not(.label),
.production-card p,
.experience-entry p {
  margin: 0;
  font-family: var(--font-type);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.46;
}

.project-card a,
.production-card a,
.text-link,
.center-link a,
.more-button,
.detail-back {
  width: fit-content;
  margin-top: auto;
  padding-top: 16px;
  color: var(--red-dark);
  font-family: var(--font-type);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
}

.project-card a:hover,
.production-card a:hover,
.text-link:hover,
.center-link a:hover,
.more-button:hover,
.detail-back:hover {
  border-color: var(--red);
}

.more-button {
  flex: 0 0 auto;
  align-self: center;
  margin: 0;
  padding: 10px 12px 8px;
  border: 1px solid rgba(23, 21, 17, 0.45);
  background: rgba(246, 232, 201, 0.38);
  box-shadow: 0 4px 10px rgba(43, 27, 11, 0.08);
}

/* Film production */
.two-column-section,
.acting-section {
  background: rgba(255, 244, 215, 0.08);
}

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

.production-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  padding: 0 0 14px;
}

.thumb {
  position: relative;
  height: 88px;
  margin-bottom: 18px;
  overflow: hidden;
  border: 6px solid rgba(246, 232, 201, 0.72);
  box-shadow: var(--shadow-small);
  filter: sepia(0.35) grayscale(0.28) contrast(1.04);
}

/* AI work */
.ai-section {
  color: var(--ink);
  background: rgba(255, 244, 215, 0.08);
}

.ai-section::before {
  background: rgba(65, 44, 23, 0.2);
}

.ai-section .section-heading {
  border-bottom-color: rgba(23, 21, 17, 0.38);
}

.ai-section .eyebrow,
.ai-section .center-link a {
  color: var(--red-dark);
}

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

.ai-tile {
  min-height: 154px;
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
  overflow: hidden;
  border: 6px solid rgba(22, 16, 11, 0.88);
  background-image:
    var(--photo),
    radial-gradient(circle at 52% 30%, rgba(64, 218, 226, 0.72), transparent 22%),
    linear-gradient(135deg, #05070d, #183045 47%, #101014);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, filter 180ms ease;
}

.ai-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 10%, rgba(0, 0, 0, 0.72));
}

.ai-tile:hover {
  transform: translateY(-4px);
  filter: saturate(1.16);
}

.ai-tile span {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 18px 12px;
  text-align: center;
  font-family: var(--font-type);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.center-link {
  margin-top: 24px;
  text-align: center;
}

/* Acting */
.acting-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 22px;
  align-items: stretch;
}

.poster-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.poster-card {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: end;
  padding: 22px;
  overflow: hidden;
  color: var(--paper-light);
  background-image:
    var(--photo),
    radial-gradient(circle at 40% 22%, rgba(255, 219, 151, 0.5), transparent 22%),
    linear-gradient(145deg, #120f0d, #6c3f24 46%, #111);
  box-shadow: var(--shadow-small);
}

.poster-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.78));
}

.poster-card div {
  position: relative;
  z-index: 1;
}

.poster-card h3 {
  max-width: 150px;
  margin: 0;
  font-family: var(--font-type);
  font-size: clamp(1rem, 2.6vw, 1.35rem);
  line-height: 1.12;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.poster-card p {
  margin: 8px 0 0;
  font-family: var(--font-type);
  font-size: 0.78rem;
}

.contact-sheet {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  padding: 9px;
  background:
    linear-gradient(90deg, rgba(16, 14, 12, 0.96) 0 6px, transparent 6px calc(100% - 6px), rgba(16, 14, 12, 0.96) calc(100% - 6px)),
    var(--film-black);
  box-shadow: var(--shadow-small);
}

.contact-sheet div {
  min-height: 110px;
  position: relative;
  overflow: hidden;
  background-image:
    var(--photo),
    radial-gradient(circle at 45% 28%, rgba(245, 204, 137, 0.45), transparent 24%),
    linear-gradient(145deg, #21120e, #765036 52%, #080706);
  filter: sepia(0.2) contrast(1.08);
}

.acting-link {
  display: inline-block;
  margin-top: 22px;
}

/* About */
.about-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.about-photo-stack {
  min-height: 360px;
  position: relative;
}

.about-photo {
  position: absolute;
  background-image:
    var(--photo),
    radial-gradient(circle at 35% 25%, rgba(255, 242, 204, 0.32), transparent 22%),
    linear-gradient(135deg, #221914, #a0663b 52%, #19120f);
  background-size: cover;
  background-position: center;
  border: 9px solid rgba(246, 232, 201, 0.86);
  box-shadow: var(--shadow-small);
  filter: sepia(0.14) contrast(1.02) saturate(0.9);
}

.about-photo-main {
  inset: 0 18% 18% 0;
  transform: rotate(-3deg);
}

.about-photo-small {
  right: 0;
  bottom: 0;
  width: 44%;
  height: 44%;
  transform: rotate(5deg);
}

.about-photo-small::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 28%;
  width: 92px;
  height: 25px;
  background: rgba(174, 137, 70, 0.48);
  transform: rotate(-6deg);
}

.about-copy {
  display: grid;
  gap: 18px;
  font-family: var(--font-type);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  font-weight: 700;
  line-height: 1.55;
}

.about-copy p {
  margin: 0;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.about-tags span {
  padding: 8px 10px;
  border: 1px solid rgba(23, 21, 17, 0.32);
  color: var(--red-dark);
  background: rgba(246, 232, 201, 0.36);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Experience and footer */
.experience-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(320px, 1.24fr);
  gap: 44px;
}

.experience-list {
  position: relative;
}

.experience-list::before {
  content: "";
  position: absolute;
  top: -22px;
  right: 12%;
  width: 100px;
  height: 28px;
  background: rgba(174, 137, 70, 0.48);
  transform: rotate(7deg);
}

.tape-experience {
  top: 18px;
  right: 82px;
  width: 92px;
  height: 28px;
  transform: rotate(7deg);
}

.experience-entry {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px dashed rgba(40, 27, 12, 0.35);
}

.experience-entry:first-child {
  padding-top: 0;
}

.logo-stamp {
  width: 98px;
  height: 78px;
  display: grid;
  place-items: center;
  color: var(--paper-light);
  background: var(--film-black);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.16rem;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
}

.logo-round {
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  border: 3px double var(--ink);
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  text-transform: none;
}

.highlight-line {
  margin: 24px 0 0;
  color: var(--red-dark);
  font-family: var(--font-type);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
}

.site-footer {
  position: relative;
  padding-top: 42px;
  background:
    linear-gradient(180deg, rgba(232, 210, 163, 0), rgba(230, 205, 157, 0.9) 24%),
    var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, 0.42fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(30px, 6vw, 82px);
  padding-bottom: 44px;
  position: relative;
}

.hand-note {
  position: relative;
  max-width: 300px;
  padding: 28px 30px 34px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 246, 207, 0.36), transparent 8rem),
    linear-gradient(135deg, #e0c592, #d4b77f);
  box-shadow: var(--shadow-small);
  transform: rotate(-4deg);
}

.hand-note p {
  margin: 0;
  font-family: var(--font-type);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.42;
}

.hand-note span {
  display: block;
  margin-top: 14px;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
}

.contact-block h2 {
  margin: 0 0 22px;
  font-family: var(--font-type);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  letter-spacing: 0;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-type);
  font-size: 0.86rem;
  font-weight: 700;
}

.contact-list li {
  display: grid;
  gap: 3px;
}

.contact-list span {
  color: var(--red-dark);
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-list a {
  overflow-wrap: anywhere;
}

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

.footer-bottom {
  min-height: 72px;
  padding-inline: max(20px, calc((100vw - 1120px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--paper-light);
  background: var(--film-black);
  font-family: var(--font-type);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.bottom-stamp {
  position: absolute;
  right: 8px;
  bottom: 30px;
  z-index: 2;
  padding: 12px 14px;
  border: 2px solid rgba(121, 49, 31, 0.72);
  color: var(--red-dark);
  font-family: var(--font-type);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
  transform: rotate(-5deg);
  opacity: 0.78;
}

/* Detail pages */
.detail-main {
  min-height: calc(100vh - 150px);
  padding-block: clamp(46px, 7vw, 86px);
}

.detail-panel {
  padding: clamp(26px, 4vw, 46px);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 248, 218, 0.42), transparent 14rem),
    radial-gradient(circle at 82% 88%, rgba(121, 79, 28, 0.08), transparent 16rem),
    linear-gradient(rgba(246, 230, 196, 0.82), rgba(232, 207, 161, 0.76));
  border: 1px solid rgba(93, 66, 31, 0.18);
  box-shadow: var(--shadow-small);
}

.detail-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(23, 21, 17, 0.38);
}

.detail-heading h1 {
  margin: 0;
  font-family: var(--font-type);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.detail-heading p {
  max-width: 560px;
  margin: 10px 0 0;
  font-family: var(--font-type);
  font-weight: 700;
  line-height: 1.5;
}

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

.empty-card {
  min-height: 220px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px dashed rgba(23, 21, 17, 0.34);
  background: rgba(246, 232, 201, 0.35);
  font-family: var(--font-type);
  font-weight: 700;
}

.empty-card span {
  color: var(--red-dark);
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.empty-card p {
  margin: 0;
  color: var(--ink-muted);
}

/* Baby Bird project page */
.project-page {
  padding-block: clamp(34px, 6vw, 66px);
}

.project-back,
.project-bottom-nav a {
  color: var(--red-dark);
  font-family: var(--font-type);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.project-back:hover,
.project-bottom-nav a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.project-hero {
  display: grid;
  gap: 24px;
}

.project-hero-grid {
  display: grid;
  grid-template-columns: minmax(290px, 0.78fr) minmax(360px, 1.22fr);
  align-items: center;
  gap: clamp(28px, 6vw, 70px);
}

.project-hero-copy h1 {
  margin: 8px 0 20px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(5.5rem, 12vw, 10rem);
  line-height: 0.78;
  text-transform: uppercase;
}

.project-hero-copy h1.project-title-long {
  font-size: clamp(4.1rem, 8vw, 7.2rem);
  line-height: 0.84;
}

.project-hero-copy > p {
  max-width: 540px;
  margin: 0;
  font-family: var(--font-type);
  font-size: clamp(0.95rem, 1.25vw, 1.04rem);
  font-weight: 700;
  line-height: 1.55;
}

.project-meta,
.credits-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  font-family: var(--font-type);
}

.project-meta {
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  column-gap: 20px;
  row-gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(23, 21, 17, 0.26);
}

.project-meta dt,
.credits-list dt {
  color: var(--red-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.project-meta dd,
.credits-list dd {
  margin: 5px 0 0;
  font-weight: 800;
}

.project-meta dd {
  overflow-wrap: normal;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.project-tags span,
.trailer-note {
  padding: 8px 10px;
  border: 1px solid rgba(121, 49, 31, 0.48);
  color: var(--red-dark);
  background: rgba(246, 232, 201, 0.38);
  font-family: var(--font-type);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.project-hero-image {
  min-height: clamp(330px, 44vw, 540px);
  position: relative;
  background-image:
    var(--photo),
    radial-gradient(circle at 38% 28%, rgba(255, 245, 206, 0.35), transparent 20%),
    linear-gradient(135deg, #201914, #a46a3b 48%, #201914);
  background-size: cover;
  background-position: center;
  border: 13px solid rgba(246, 232, 201, 0.9);
  box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
}

.project-hero-tape {
  top: -22px;
  left: 28%;
  width: 146px;
  height: 34px;
  transform: rotate(-3deg);
}

.project-gallery-section,
.project-info-grid,
.project-watch-section {
  margin-top: clamp(34px, 6vw, 66px);
  padding: clamp(20px, 3vw, 30px);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 248, 218, 0.42), transparent 14rem),
    radial-gradient(circle at 82% 88%, rgba(121, 79, 28, 0.08), transparent 16rem),
    linear-gradient(rgba(246, 230, 196, 0.78), rgba(232, 207, 161, 0.74));
  border: 1px solid rgba(93, 66, 31, 0.18);
  box-shadow: var(--shadow-small);
}

.project-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(23, 21, 17, 0.38);
}

.project-section-heading h2,
.project-paper-card h2,
.watch-copy h2 {
  margin: 0;
  font-family: var(--font-type);
  font-size: clamp(1.35rem, 2.6vw, 1.8rem);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.project-section-heading p,
.watch-copy p {
  max-width: 520px;
  margin: 0;
  font-family: var(--font-type);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.45;
}

.bb-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1.5vw, 16px);
}

.bb-gallery-item,
.watch-thumb {
  position: relative;
  overflow: hidden;
  margin: 0;
  background-image:
    var(--photo),
    radial-gradient(circle at 35% 25%, rgba(255, 242, 204, 0.32), transparent 22%),
    linear-gradient(135deg, #221914, #a0663b 52%, #19120f);
  background-size: cover;
  background-position: center;
  border: 5px solid rgba(246, 232, 201, 0.86);
  box-shadow: 0 6px 14px rgba(40, 29, 14, 0.14);
}

.bb-gallery-item {
  min-height: clamp(190px, 23vw, 350px);
  aspect-ratio: 16 / 9;
}

.bb-gallery-item::after,
.watch-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 245, 210, 0.06), rgba(22, 16, 10, 0.16));
}

.gallery-wide {
  grid-column: 1 / -1;
}

.gallery-hero {
  grid-column: 1 / -1;
  min-height: clamp(260px, 42vw, 620px);
}

.project-info-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.project-paper-card {
  padding: clamp(18px, 3vw, 28px);
  background: rgba(246, 232, 201, 0.52);
  border: 1px solid rgba(75, 53, 26, 0.18);
  box-shadow: var(--shadow-small);
}

.project-paper-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
  font-family: var(--font-type);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.65;
}

.project-paper-card li + li {
  margin-top: 9px;
}

.credits-list {
  gap: 14px;
}

.credits-list div {
  display: grid;
  grid-template-columns: minmax(110px, 0.55fr) 1fr;
  gap: 18px;
  border-bottom: 1px dashed rgba(40, 27, 12, 0.25);
  padding-bottom: 9px;
}

.project-watch-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(320px, 1fr);
  gap: 26px;
  align-items: center;
}

.watch-thumb {
  min-height: 220px;
  display: grid;
  place-items: center;
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.watch-thumb:hover,
.watch-thumb:focus-visible {
  box-shadow: 0 10px 20px rgba(40, 29, 14, 0.22);
  transform: translateY(-2px);
}

.watch-thumb:focus-visible {
  outline: 2px solid var(--red-dark);
  outline-offset: 4px;
}

.watch-thumb span {
  position: relative;
  z-index: 1;
  color: var(--paper-light);
  font-family: var(--font-type);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.watch-copy {
  display: grid;
  gap: 16px;
}

.watch-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.trailer-note {
  text-decoration: none;
}

.trailer-note:hover,
.trailer-note:focus-visible {
  background: rgba(246, 232, 201, 0.68);
}

.project-bottom-nav {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 36px;
  padding-bottom: 22px;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    z-index: 90;
    left: 20px;
    right: 20px;
    width: auto;
    top: 76px;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px;
    background:
      radial-gradient(circle at 15% 12%, rgba(255, 249, 221, 0.38), transparent 9rem),
      linear-gradient(rgba(243, 223, 183, 0.98), rgba(236, 213, 173, 0.98));
    border: 1px solid rgba(45, 32, 18, 0.2);
    box-shadow: var(--shadow-small);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    width: 100%;
    justify-self: stretch;
    padding: 13px 0;
  }

  .nav-links.open-static {
    position: static;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    width: auto;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .hero-grid,
  .acting-layout,
  .experience-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-collage {
    min-height: 540px;
  }

  .project-grid,
  .ai-tile-grid,
  .contact-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-heading {
    display: block;
  }

  .more-button {
    margin-top: 16px;
  }

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

  .empty-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-hero-grid,
  .project-info-grid,
  .project-watch-section {
    grid-template-columns: 1fr;
  }

  .project-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-section-heading {
    display: block;
  }

  .project-section-heading p {
    margin-top: 8px;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100vw - 28px, 1120px);
  }

  .nav-strip {
    min-height: 70px;
  }

  .nav-links {
    top: 68px;
  }

  .hero h1 {
    font-size: clamp(4.5rem, 29vw, 7rem);
  }

  .hero-actions,
  .poster-row,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-collage {
    min-height: 470px;
  }

  .photo-main {
    inset: 5% 6% auto 2%;
    height: 58%;
  }

  .photo-strip {
    top: 44%;
    width: 56%;
  }

  .photo-small {
    right: 4%;
    width: 50%;
  }

  .taped-note {
    top: 0;
    right: 0;
    width: 150px;
    font-size: 0.95rem;
  }

  .bottom-stamp {
    position: static;
    width: fit-content;
    margin: 0 0 24px auto;
    transform: rotate(-3deg);
  }

  .project-grid,
  .production-grid,
  .ai-tile-grid,
  .poster-row,
  .contact-list,
  .empty-grid {
    grid-template-columns: 1fr;
  }

  .about-photo-stack {
    min-height: 330px;
  }

  .detail-heading {
    display: block;
  }

  .project-hero-copy h1 {
    font-size: clamp(4.6rem, 25vw, 6.5rem);
  }

  .project-hero-copy h1.project-title-long {
    font-size: clamp(3.1rem, 18vw, 5rem);
  }

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

  .bb-gallery {
    grid-template-columns: 1fr;
  }

  .bb-gallery-item,
  .gallery-hero {
    min-height: 0;
  }

  .gallery-wide,
  .gallery-hero {
    grid-column: auto;
  }

  .credits-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .project-bottom-nav {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .project-card {
    min-height: 320px;
  }

  .ai-tile {
    min-height: 150px;
  }

  .contact-sheet {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience-entry {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    padding-block: 22px;
    text-align: center;
  }
}
