:root {
  color-scheme: light;
  --paper: #f3eee4;
  --paper-deep: #e6dccd;
  --ink: #191512;
  --muted: #6d6258;
  --soft: #9c9186;
  --red: #9f2228;
  --red-dark: #541014;
  --blue: #17425a;
  --line: rgba(25, 21, 18, 0.18);
  --line-strong: rgba(25, 21, 18, 0.32);
  --max: 1180px;
  --serif: "Newsreader", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(25, 21, 18, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 21, 18, 0.025) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: #fffaf2;
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--paper);
  background: transparent;
  pointer-events: auto;
  transition:
    visibility 0ms linear 920ms,
    opacity 520ms ease 360ms;
}

.page-loader::before,
.page-loader::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  content: "";
  background:
    linear-gradient(rgba(255, 250, 242, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 250, 242, 0.03) 1px, transparent 1px),
    var(--ink);
  background-size: 44px 44px;
  transition: transform 920ms var(--ease);
}

.page-loader::before {
  left: 0;
}

.page-loader::after {
  right: 0;
}

.loader-stage {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(1rem, 2.4vw, 1.55rem);
  justify-items: center;
  width: min(92vw, 58rem);
  transform: translateY(0);
  transition:
    opacity 320ms ease,
    transform 520ms var(--ease);
}

.loader-mark {
  font-family: var(--serif);
  font-size: clamp(3rem, 11vw, 9.4rem);
  font-weight: 750;
  line-height: 0.86;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
  animation: loaderMarkIn 680ms var(--ease) both;
}

.loader-rule {
  width: clamp(8rem, 28vw, 17rem);
  height: 0.32rem;
  background: var(--red);
  transform-origin: left;
  animation: loaderRuleIn 820ms var(--ease) 220ms both;
}

.page-loader.is-finished {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.page-loader.is-finished::before {
  transform: translateX(-100%);
}

.page-loader.is-finished::after {
  transform: translateX(100%);
}

.page-loader.is-finished .loader-stage {
  opacity: 0;
  transform: translateY(-1rem) scale(0.97);
}

@keyframes loaderMarkIn {
  from {
    opacity: 0;
    transform: translateY(0.7rem) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes loaderRuleIn {
  from {
    opacity: 0;
    transform: scaleX(0);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.1rem clamp(1.15rem, 3vw, 3rem);
  color: var(--ink);
  background: rgba(243, 238, 228, 0.78);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    padding 220ms ease;
}

.site-header.is-scrolled {
  padding-block: 0.8rem;
  border-color: var(--line);
  background: rgba(243, 238, 228, 0.94);
}

.brand {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0.01em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.8rem);
}

.site-nav a {
  position: relative;
  color: rgba(25, 21, 18, 0.74);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 0.24rem auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.section-panel {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero {
  display: grid;
  grid-template-columns:
    minmax(clamp(1.1rem, 4vw, 4rem), 1fr)
    minmax(0, calc(var(--max) * 0.52))
    minmax(18rem, calc(var(--max) * 0.48))
    minmax(clamp(1.1rem, 4vw, 4rem), 1fr);
  grid-template-rows: 1fr auto;
  gap: clamp(2.2rem, 5vw, 5rem);
  align-items: center;
  min-height: clamp(700px, 88svh, 900px);
  padding: 6.4rem 0 1.8rem;
  background:
    linear-gradient(90deg, rgba(243, 238, 228, 0.96), rgba(243, 238, 228, 0.8)),
    radial-gradient(circle at 82% 20%, rgba(159, 34, 40, 0.14), transparent 24rem);
}

.hero::before {
  position: absolute;
  inset: 5.6rem clamp(1.1rem, 4vw, 4rem) 6rem;
  pointer-events: none;
  content: "";
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero::after {
  position: absolute;
  top: 9.5rem;
  bottom: 8rem;
  left: 52%;
  width: 1px;
  content: "";
  background: var(--line);
  transform: rotate(7deg);
}

.hero-copy {
  position: relative;
  z-index: 2;
  grid-column: 2;
  grid-row: 1;
  max-width: 38rem;
}

.hero h1 {
  margin-bottom: 1.2rem;
  font-family: var(--serif);
  font-size: clamp(5.3rem, 10vw, 10rem);
  font-weight: 750;
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-line {
  margin-bottom: 1.05rem;
  color: var(--red-dark);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-line::before,
.about-copy h2::after,
.section-heading h2::before {
  display: block;
  width: 5.5rem;
  height: 3px;
  margin-bottom: 1rem;
  content: "";
  background: var(--red);
}

.hero-text {
  max-width: 35rem;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10.2rem;
  min-height: 3.25rem;
  padding: 0.8rem 1.25rem;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  border-color: var(--red);
  color: #fffaf2;
  background: var(--red);
}

.button-primary:hover,
.button-primary:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  color: #fffaf2;
  background: var(--ink);
}

.hero-portrait {
  position: relative;
  z-index: 2;
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  width: min(100%, 34rem);
  aspect-ratio: 4 / 5;
  margin: 0;
  border: 1px solid var(--ink);
  background: #d5d0c8;
  box-shadow: 18px 18px 0 var(--red-dark);
}

.hero-portrait::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background: linear-gradient(180deg, transparent 72%, rgba(25, 21, 18, 0.18));
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 23%;
}

.hero-portrait figcaption,
.photo-caption {
  position: absolute;
  left: 0.85rem;
  bottom: 0.75rem;
  z-index: 3;
  padding: 0.28rem 0.42rem;
  color: #fffaf2;
  background: rgba(25, 21, 18, 0.72);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.recognition-strip {
  position: relative;
  z-index: 2;
  grid-column: 2 / 4;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-strong);
}

.recognition-strip span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recognition-strip span::before {
  display: block;
  width: 1.3rem;
  height: 0.2rem;
  margin-bottom: 0.55rem;
  content: "";
  background: var(--red);
}

.about {
  display: grid;
  grid-template-columns:
    minmax(clamp(1.1rem, 4vw, 4rem), 1fr)
    minmax(0, calc(var(--max) * 0.46))
    minmax(0, calc(var(--max) * 0.54))
    minmax(clamp(1.1rem, 4vw, 4rem), 1fr);
  column-gap: clamp(2.5rem, 5vw, 5rem);
  row-gap: clamp(2rem, 3vw, 3.25rem);
  align-items: center;
  padding: clamp(5rem, 8vw, 7rem) 0;
  background: #fffaf2;
}

.section-marker {
  display: none;
}

.about-media {
  position: relative;
  grid-column: 2;
  border: 1px solid var(--ink);
  background: var(--paper-deep);
}

.about-media::before {
  position: absolute;
  inset: 1rem -1rem -1rem 1rem;
  z-index: 0;
  content: "";
  border: 1px solid var(--red);
}

.about-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(25rem, 40vw, 31rem);
  object-fit: cover;
  object-position: 56% 42%;
}

.about-copy {
  grid-column: 3;
  max-width: 39rem;
}

.section-number {
  margin-bottom: 0.65rem;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-copy h2,
.section-heading h2,
.video-copy h2,
.resume-copy h2,
.contact-copy h2 {
  margin-bottom: 1.2rem;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6.2vw, 5.6rem);
  font-weight: 750;
  line-height: 0.95;
  letter-spacing: 0;
}

.about-copy h2::after {
  margin-top: 1rem;
  margin-bottom: 0;
}

.about-copy p,
.section-heading p,
.video-copy p,
.resume-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.08rem);
}

.credit-board {
  grid-column: 3;
  width: min(100%, 39rem);
  margin-top: 0.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line-strong);
}

.credit-board h3 {
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.credit-board ul {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.credit-board li {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 1rem;
  align-items: baseline;
}

.credit-board span,
.resume-list span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.credit-board strong,
.resume-list strong,
.resume-list a {
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 700;
}

.video {
  display: grid;
  grid-template-columns:
    minmax(clamp(1.1rem, 4vw, 4rem), 1fr)
    minmax(0, calc(var(--max) * 0.38))
    minmax(0, calc(var(--max) * 0.62))
    minmax(clamp(1.1rem, 4vw, 4rem), 1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(5rem, 8vw, 7rem) 0;
  color: #fffaf2;
  background:
    linear-gradient(115deg, rgba(25, 21, 18, 0.98), rgba(25, 21, 18, 0.9) 58%, rgba(84, 16, 20, 0.86)),
    var(--ink);
}

.video::before {
  position: absolute;
  inset: clamp(1.3rem, 3vw, 2.2rem);
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 250, 242, 0.13);
}

.video-copy {
  position: relative;
  z-index: 1;
  grid-column: 2;
  max-width: 29rem;
}

.video-copy h2 {
  max-width: 26rem;
}

.video-copy h2::after {
  display: block;
  width: 5.2rem;
  height: 3px;
  margin-top: 1rem;
  content: "";
  background: #f0b8ad;
}

.video .section-number {
  color: #f0b8ad;
}

.video-copy p {
  color: rgba(255, 250, 242, 0.72);
}

.video-frame {
  position: relative;
  z-index: 1;
  grid-column: 3;
  margin: 0;
  border: 1px solid rgba(255, 250, 242, 0.28);
  background: #0e0b09;
  box-shadow: 16px 16px 0 rgba(159, 34, 40, 0.72);
}

.video-frame::before {
  position: absolute;
  inset: -0.75rem 0.75rem 0.75rem -0.75rem;
  z-index: -1;
  content: "";
  border: 1px solid rgba(240, 184, 173, 0.5);
}

.video-player {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.video-player iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-poster {
  position: relative;
  display: block;
  height: 100%;
  min-height: 100%;
  color: #fffaf2;
  background: #0e0b09;
}

.video-poster::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(25, 21, 18, 0.08), rgba(25, 21, 18, 0.72)),
    linear-gradient(90deg, rgba(25, 21, 18, 0.55), transparent 62%);
}

.video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04);
  transition:
    filter 220ms ease,
    transform 420ms var(--ease);
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: clamp(4.2rem, 8vw, 6rem);
  height: clamp(4.2rem, 8vw, 6rem);
  border: 2px solid rgba(255, 250, 242, 0.86);
  border-radius: 50%;
  background: rgba(25, 21, 18, 0.45);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
  transform: translate(-50%, -50%);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.play-icon::before {
  width: 0;
  height: 0;
  margin-left: 0.35rem;
  content: "";
  border-top: 0.72rem solid transparent;
  border-bottom: 0.72rem solid transparent;
  border-left: 1.05rem solid currentColor;
}

.video-cta {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  padding: 0.55rem 0.72rem;
  border: 1px solid rgba(255, 250, 242, 0.42);
  color: #fffaf2;
  background: rgba(25, 21, 18, 0.72);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.video-poster:hover img,
.video-poster:focus-visible img {
  filter: saturate(1.06) contrast(1.08);
  transform: scale(1.035);
}

.video-poster:hover .play-icon,
.video-poster:focus-visible .play-icon {
  background: rgba(159, 34, 40, 0.84);
  transform: translate(-50%, -50%) scale(1.04);
}

.video-frame figcaption {
  padding: 0.82rem 1rem 0.9rem;
  border-top: 1px solid rgba(255, 250, 242, 0.18);
  color: rgba(255, 250, 242, 0.7);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.work {
  padding: clamp(5rem, 8vw, 7rem) clamp(1.1rem, 4vw, 4rem);
  background: var(--paper);
}

.section-heading {
  max-width: var(--max);
  margin: 0 auto clamp(2rem, 5vw, 4rem);
}

.section-heading h2 {
  max-width: 38rem;
  margin-bottom: 0.65rem;
}

.section-heading h2::before {
  width: 6.5rem;
  margin-bottom: 1rem;
}

.section-heading p {
  max-width: 32rem;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 15.5rem;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
}

.work-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--ink);
  border-radius: 0;
  color: #fffaf2;
  background: var(--ink);
  cursor: pointer;
  isolation: isolate;
}

.work-large {
  grid-column: span 2;
  grid-row: span 2;
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
  transition:
    transform 420ms var(--ease),
    filter 420ms var(--ease);
}

.work-live-performance img {
  object-position: 46% 37%;
}

.work-item::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, transparent 42%, rgba(25, 21, 18, 0.78));
  opacity: 0;
  transition: opacity 260ms ease;
}

.work-item span {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.85rem;
  z-index: 2;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: left;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(0.4rem);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.work-item:hover img,
.work-item:focus-visible img {
  filter: saturate(1.05) contrast(1.08);
  transform: scale(1.045);
}

.work-item:hover::after,
.work-item:focus-visible::after,
.work-item:hover span,
.work-item:focus-visible span {
  opacity: 1;
}

.work-item:hover span,
.work-item:focus-visible span {
  transform: translateY(0);
}

.work-item:hover,
.work-item:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 0;
}

.resume {
  display: grid;
  grid-template-columns:
    minmax(clamp(1.1rem, 4vw, 4rem), 1fr)
    minmax(0, calc(var(--max) * 0.42))
    minmax(0, calc(var(--max) * 0.58))
    minmax(clamp(1.1rem, 4vw, 4rem), 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(5rem, 8vw, 7rem) 0;
  color: #fffaf2;
  background:
    linear-gradient(90deg, rgba(25, 21, 18, 0.96), rgba(25, 21, 18, 0.84)),
    url("assets/images/optimized/resume-bg.jpg") right 18% center / auto 118% no-repeat,
    var(--ink);
}

.resume-copy {
  grid-column: 2;
}

.resume-list {
  grid-column: 3;
  display: grid;
  border-top: 1px solid rgba(255, 250, 242, 0.28);
}

.resume-list div {
  display: grid;
  grid-template-columns: 11.5rem 1fr;
  gap: 1.2rem;
  align-items: center;
  min-height: 4.7rem;
  border-bottom: 1px solid rgba(255, 250, 242, 0.18);
}

.resume .section-number,
.resume-list a {
  color: #f0b8ad;
}

.resume-copy p,
.resume-list span {
  color: rgba(255, 250, 242, 0.68);
}

.resume-list strong,
.resume-list a {
  color: #fffaf2;
}

.resume-list a {
  text-decoration: underline;
  text-decoration-color: rgba(240, 184, 173, 0.65);
  text-underline-offset: 0.22em;
}

.contact {
  display: grid;
  grid-template-columns:
    minmax(clamp(1.1rem, 4vw, 4rem), 1fr)
    minmax(0, calc(var(--max) * 0.43))
    minmax(0, calc(var(--max) * 0.57))
    minmax(clamp(1.1rem, 4vw, 4rem), 1fr);
  column-gap: clamp(2rem, 5vw, 4rem);
  row-gap: clamp(2.2rem, 4vw, 3.5rem);
  align-items: start;
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: #fffaf2;
}

.contact-curtain {
  display: none;
}

.contact-copy {
  grid-column: 2;
}

.contact-links {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.contact-links a,
.rep-list a {
  width: fit-content;
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(159, 34, 40, 0.34);
  text-underline-offset: 0.22em;
  transition:
    color 180ms ease,
    text-decoration-color 180ms ease,
    transform 180ms ease;
}

.contact-links a::before,
.rep-list a::before {
  display: inline-block;
  width: 1.2rem;
  margin-right: 0.5rem;
  color: var(--red);
  content: "↗";
}

.contact-form {
  grid-column: 3;
  display: grid;
  gap: 0.95rem;
  padding-left: clamp(1.5rem, 5vw, 3.5rem);
  border-left: 1px solid var(--line-strong);
}

.contact-form label {
  display: grid;
  gap: 0.42rem;
}

.contact-form label span {
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  padding: 0.85rem 0.95rem;
  color: var(--ink);
  background: rgba(255, 250, 242, 0.72);
  font: inherit;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.contact-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  background: #fffaf2;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(159, 34, 40, 0.14);
}

.contact-form .button {
  justify-self: start;
  margin-top: 0.25rem;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-honey {
  position: absolute;
  left: -999rem;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status.is-error {
  color: var(--red-dark);
}

.form-status.is-success {
  color: #396c4a;
}

.representation {
  grid-column: 2 / 4;
  padding-top: clamp(1.5rem, 3vw, 2.2rem);
  border-top: 1px solid var(--line-strong);
}

.representation h3 {
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.rep-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  margin: 0;
  list-style: none;
  background: var(--line-strong);
}

.rep-list li {
  display: grid;
  gap: 0.48rem;
  align-content: start;
  min-height: 11rem;
  padding: 1.1rem;
  background: #fffaf2;
}

.rep-list span {
  color: var(--red-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rep-list strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1;
}

.rep-list a {
  overflow-wrap: anywhere;
  font-size: 0.92rem;
}

.rep-list a::before {
  content: "";
}

.contact-source-note {
  grid-column: 2 / 4;
  margin: -1.8rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-links a:hover,
.contact-links a:focus-visible,
.rep-list a:hover,
.rep-list a:focus-visible {
  color: var(--red);
  text-decoration-color: currentColor;
  transform: translateX(0.2rem);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem clamp(1.15rem, 4vw, 3.8rem) 1.8rem;
  color: #fffaf2;
  background: var(--ink);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 250, 242, 0.62);
}

.top-link {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  color: #fffaf2;
  font-size: 1.35rem;
  font-weight: 800;
}

.lightbox {
  position: fixed;
  inset: 0;
  width: min(92vw, 66rem);
  max-height: calc(100vh - 3rem);
  overflow: visible;
  margin: auto;
  padding: 0;
  border: 1px solid rgba(255, 250, 242, 0.24);
  color: #fffaf2;
  background: var(--ink);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.58);
}

.lightbox::backdrop {
  background: rgba(25, 21, 18, 0.72);
  backdrop-filter: blur(10px);
}

.lightbox[open] {
  display: grid;
}

.lightbox-media {
  position: relative;
  background: #0e0b09;
}

.lightbox img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
}

.lightbox-copy {
  padding: 1.1rem clamp(1rem, 3vw, 1.6rem) 1.4rem;
}

.lightbox h3 {
  margin-bottom: 0.15rem;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.lightbox p {
  margin: 0;
  color: rgba(255, 250, 242, 0.7);
}

.lightbox-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 250, 242, 0.42);
  border-radius: 0;
  color: #fffaf2;
  background: rgba(25, 21, 18, 0.78);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: clamp(2.85rem, 5vw, 3.4rem);
  height: clamp(3.4rem, 7vw, 4.2rem);
  border: 1px solid rgba(255, 250, 242, 0.34);
  border-radius: 0;
  color: #fffaf2;
  background: rgba(25, 21, 18, 0.82);
  font-family: var(--serif);
  font-size: clamp(2.3rem, 5vw, 3.15rem);
  line-height: 0.8;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.lightbox-prev {
  left: -4.35rem;
}

.lightbox-next {
  right: -4.35rem;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  border-color: rgba(255, 250, 242, 0.76);
  background: rgba(159, 34, 40, 0.9);
  outline: 0;
  transform: translateY(-50%) scale(1.03);
}

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

@media (max-width: 1180px) {
  .lightbox-prev {
    left: 0.75rem;
  }

  .lightbox-next {
    right: 0.75rem;
  }
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    top: 4.6rem;
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0;
    border: 1px solid var(--line-strong);
    background: rgba(243, 238, 228, 0.96);
    box-shadow: 0 22px 80px rgba(25, 21, 18, 0.18);
    backdrop-filter: blur(18px);
    transform: translateY(-1rem);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

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

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

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    grid-template-columns: minmax(1.1rem, 1fr) minmax(0, 44rem) minmax(1.1rem, 1fr);
    grid-template-rows: auto;
    min-height: auto;
    padding: 6.2rem 0 1.5rem;
    gap: 1.8rem;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-copy,
  .hero-portrait,
  .recognition-strip {
    grid-column: 2;
    grid-row: auto;
  }

  .hero-portrait {
    justify-self: stretch;
    width: 100%;
    height: clamp(24rem, 92vw, 34rem);
    aspect-ratio: auto;
    box-shadow: 10px 10px 0 var(--red-dark);
  }

  .hero-portrait img {
    object-position: 52% 23%;
  }

  .recognition-strip {
    grid-template-columns: 1fr;
  }

  .about,
  .video,
  .resume,
  .contact {
    grid-template-columns: minmax(1.1rem, 1fr) minmax(0, 44rem) minmax(1.1rem, 1fr);
  }

  .about {
    row-gap: 2.5rem;
  }

  .about-media,
  .about-copy,
  .credit-board,
  .video-copy,
  .video-frame,
  .resume-copy,
  .resume-list,
  .contact-copy,
  .contact-form,
  .representation,
  .contact-source-note {
    grid-column: 2;
  }

  .credit-board {
    width: 100%;
    margin-top: 0;
  }

  .video-frame {
    box-shadow: 10px 10px 0 rgba(159, 34, 40, 0.72);
  }

  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 16.5rem;
  }

  .contact-form {
    padding-left: 0;
    padding-top: 1.4rem;
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

  .rep-list {
    grid-template-columns: 1fr;
  }

  .rep-list li {
    min-height: auto;
  }

  .contact-source-note {
    margin-top: -1rem;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .site-header {
    padding-inline: 1rem;
  }

  .brand {
    font-size: 1.45rem;
  }

  .hero h1 {
    font-size: clamp(4.3rem, 19vw, 6rem);
  }

  .hero-line {
    font-size: 0.9rem;
  }

  .hero-text {
    max-width: 23rem;
  }

  .button {
    width: 100%;
  }

  .about-media img {
    height: 24rem;
  }

  .about-copy h2,
  .section-heading h2,
  .video-copy h2,
  .resume-copy h2,
  .contact-copy h2 {
    font-size: clamp(3rem, 14vw, 4.3rem);
  }

  .credit-board li,
  .resume-list div {
    grid-template-columns: 1fr;
    gap: 0.15rem;
    padding-block: 0.55rem;
  }

  .work-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .work-item,
  .work-large {
    grid-column: auto;
    grid-row: auto;
    height: 18rem;
  }

  .work-large {
    height: 21rem;
  }

  .work-item::after,
  .work-item span {
    opacity: 1;
  }

  .work-item span {
    transform: none;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
