:root {
  --ink: #11100e;
  --soft-ink: #26231e;
  --paper: #f4efe6;
  --paper-2: #ebe3d6;
  --panel: #fffaf2;
  --muted: #70685d;
  --line: rgba(17, 16, 14, 0.16);
  --gold: #c9984d;
  --clay: #984b36;
  --moss: #505f4a;
  --blue: #365f68;
  --max: 1180px;
  --shadow: 0 24px 80px rgba(17, 16, 14, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(17, 16, 14, 0.045) 1px, transparent 1px) 0 0 / 48px 48px,
    var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 40;
  transform: translateY(-140%);
  padding: 10px 12px;
  background: var(--ink);
  color: white;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 26px;
  padding: 16px clamp(18px, 4.8vw, 58px);
  border-bottom: 1px solid rgba(244, 239, 230, 0.18);
  background: rgba(17, 16, 14, 0.88);
  color: var(--panel);
  backdrop-filter: blur(16px);
}

.brand {
  display: grid;
  gap: 1px;
  color: inherit;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.brand span {
  font-size: clamp(21px, 2.5vw, 31px);
  font-weight: 900;
}

.brand small {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 3px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  padding: 9px 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-color: rgba(255, 250, 242, 0.22);
  background: rgba(255, 250, 242, 0.1);
  color: var(--gold);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  justify-self: end;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 250, 242, 0.42);
  border-radius: 50%;
  background: transparent;
  color: inherit;
}

.menu-button span {
  grid-column: 1;
  grid-row: 1;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-button span:first-child {
  transform: translateY(-6px);
}

.menu-button span:last-of-type {
  transform: translateY(6px);
}

.menu-button b {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

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

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:last-of-type {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: clamp(420px, 68vh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.page-hero {
  min-height: clamp(360px, 54vh, 560px);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.04);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 16, 14, 0.88), rgba(17, 16, 14, 0.34) 54%, rgba(17, 16, 14, 0.6)),
    linear-gradient(0deg, rgba(17, 16, 14, 0.9), rgba(17, 16, 14, 0.08) 56%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 112px) 0;
}

.hero-home .hero-copy {
  padding-bottom: clamp(74px, 11vw, 128px);
}

.eyebrow,
.section-label,
.card-number {
  margin: 0;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 950px;
  margin-top: 12px;
  font-size: clamp(58px, 10vw, 138px);
  line-height: 0.88;
  text-transform: uppercase;
}

.page-hero h1 {
  font-size: clamp(48px, 8vw, 100px);
}

h2 {
  font-size: clamp(34px, 5.6vw, 72px);
  line-height: 0.98;
}

h3 {
  font-size: clamp(23px, 3vw, 36px);
  line-height: 1.05;
}

p {
  margin: 0;
}

.deck {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(255, 250, 242, 0.88);
  font-size: clamp(20px, 2.3vw, 30px);
  line-height: 1.28;
}

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

.button,
.project-card a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.button.primary,
.hero-actions .primary {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.button.ghost,
.hero-actions .ghost {
  border-color: rgba(255, 250, 242, 0.54);
  background: rgba(255, 250, 242, 0.08);
  color: white;
}

.ticker {
  display: flex;
  gap: 0;
  overflow: hidden;
  border-block: 1px solid rgba(255, 250, 242, 0.15);
  background: var(--ink);
  color: var(--panel);
}

.ticker span {
  min-width: max-content;
  padding: 18px clamp(22px, 4vw, 46px);
  border-right: 1px solid rgba(255, 250, 242, 0.15);
  color: rgba(255, 250, 242, 0.82);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(66px, 9vw, 118px) 0;
}

.intro-section,
.about-layout,
.contact-layout,
.project-main {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: start;
}

.intro-copy,
.bio-copy {
  display: grid;
  gap: 18px;
}

.intro-copy p,
.bio-copy p,
.section-heading p,
.feature-card p,
.project-card p,
.category-grid p,
.strip-grid p,
.resume-card p,
.contact-layout p,
.link-grid span {
  color: var(--muted);
}

.portrait-panel,
.resume-card,
.feature-card,
.project-card,
.category-grid article,
.strip-grid article,
.contact-card,
.link-grid a {
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.86);
  box-shadow: var(--shadow);
}

.portrait-panel {
  margin: 0;
  padding: 12px;
  transform: rotate(1deg);
}

.portrait-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.portrait-panel figcaption {
  padding-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.56fr);
  gap: clamp(24px, 6vw, 84px);
  align-items: end;
  margin-bottom: 32px;
}

.simple-heading {
  display: block;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.feature-card {
  min-height: 260px;
  display: grid;
  align-content: end;
  gap: 14px;
  padding: clamp(24px, 4vw, 38px);
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.image-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: white;
}

.image-card img,
.image-card-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.image-card img {
  z-index: -2;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease;
}

.image-card-shade {
  z-index: -1;
  background: linear-gradient(180deg, rgba(17, 16, 14, 0.06), rgba(17, 16, 14, 0.72));
}

.image-card h3 {
  max-width: 11ch;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.32);
}

.feature-card.large {
  grid-row: span 2;
  min-height: 538px;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(152, 75, 54, 0.38);
  background: white;
}

.image-card:hover {
  background: transparent;
}

.image-card:hover img {
  transform: scale(1.04);
}

.selected-strip {
  border-top: 1px solid var(--line);
}

.strip-grid,
.project-grid,
.category-grid,
.link-grid,
.proof-grid {
  display: grid;
  gap: 18px;
}

.strip-grid {
  grid-template-columns: repeat(3, 1fr);
}

.strip-grid article,
.project-card,
.category-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
}

.project-feature {
  padding-bottom: 0;
}

.project-main {
  grid-template-columns: 130px minmax(0, 0.82fr) minmax(350px, 1fr);
}

.facts {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
}

.facts div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.facts dt {
  color: var(--clay);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.facts dd {
  margin: 0;
}


.betterme-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.betterme-gallery img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  object-position: center;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.86);
}

.betterme-gallery img:first-child {
  grid-column: span 2;
  height: 210px;
}

.image-duo {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: 12px;
}

.image-duo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.image-duo img:first-child {
  margin-top: 54px;
}

.project-grid {
  grid-template-columns: repeat(4, 1fr);
}

.project-card a {
  width: fit-content;
  margin-top: 8px;
}

.category-grid {
  grid-template-columns: repeat(4, 1fr);
}

.category-grid article {
  min-height: 280px;
  border-top: 7px solid var(--moss);
}

.category-grid article:nth-child(2) {
  border-top-color: var(--blue);
}

.category-grid article:nth-child(3) {
  border-top-color: var(--gold);
}

.category-grid article:nth-child(4) {
  border-top-color: var(--clay);
}

.media-wall {
  display: grid;
  grid-template-columns: 130px 1fr 1fr 1fr;
  grid-auto-rows: 210px;
  gap: 14px;
}

.media-tile {
  display: grid;
  place-items: end start;
  padding: 18px;
  border: 1px dashed rgba(17, 16, 14, 0.28);
  background: rgba(255, 250, 242, 0.62);
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.media-tile.tall {
  grid-row: span 2;
}

.media-tile.wide {
  grid-column: span 2;
}

.about-layout {
  grid-template-columns: 130px minmax(0, 1fr) minmax(270px, 0.44fr);
}

.resume-card {
  display: grid;
  gap: 16px;
  padding: 26px;
}

.proof-grid {
  grid-template-columns: repeat(3, 1fr);
  padding-top: 0;
}

.proof-grid article {
  display: grid;
  gap: 8px;
  padding: 24px;
  border-top: 1px solid var(--line);
}

.proof-grid strong {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
}

.proof-grid span {
  color: var(--muted);
}

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

.link-grid a,
.contact-card a {
  display: grid;
  gap: 6px;
  padding: 24px;
  text-decoration: none;
}

.link-grid strong,
.contact-card a {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
}

.link-grid a:hover,
.contact-card a:hover {
  background: white;
}

.contact-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.58fr);
}

.contact-card {
  display: grid;
}

.contact-card a {
  border-bottom: 1px solid var(--line);
}

.contact-card a:last-child {
  border-bottom: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4.8vw, 58px);
  border-top: 1px solid rgba(255, 250, 242, 0.14);
  background: var(--ink);
  color: rgba(255, 250, 242, 0.72);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer a {
  text-decoration: none;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-button {
    display: grid;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    justify-content: stretch;
    padding-top: 10px;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 14px 0;
    border-width: 0 0 1px;
    border-color: rgba(255, 250, 242, 0.15);
    border-radius: 0;
  }

  .intro-section,
  .about-layout,
  .project-main,
  .contact-layout,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-label {
    margin-bottom: -8px;
  }

  .feature-grid,
  .strip-grid,
  .project-grid,
  .category-grid,
  .proof-grid,
  .link-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-card.large {
    grid-row: auto;
    min-height: 300px;
  }

  .media-wall {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 17px;
  }

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

  .brand span {
    font-size: 20px;
  }

  .hero,
  .page-hero {
    min-height: 590px;
  }

  .page-hero {
    min-height: 430px;
  }

  .hero-copy {
    width: min(100% - 32px, var(--max));
    padding: 54px 0;
  }

  h1 {
    font-size: clamp(46px, 15vw, 62px);
  }

  .page-hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  h2 {
    font-size: clamp(32px, 11vw, 44px);
  }

  .deck {
    font-size: 20px;
  }

  .hero-actions a,
  .button {
    width: 100%;
  }

  .section {
    width: min(100% - 32px, var(--max));
    padding: 58px 0;
  }

  .feature-grid,
  .strip-grid,
  .project-grid,
  .category-grid,
  .proof-grid,
  .link-grid,
  .media-wall {
    grid-template-columns: 1fr;
  }

  .image-duo,
  .betterme-gallery {
    grid-template-columns: 1fr;
  }

  .image-duo img,
  .image-duo img:first-child {
    height: 300px;
    margin-top: 0;
  }

  .facts div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .media-tile,
  .media-tile.tall,
  .media-tile.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 180px;
  }

  .portrait-panel {
    transform: none;
  }

  .site-footer {
    display: grid;
  }
}


.film-section {
  display: grid;
  gap: 28px;
}

.simple-section-title {
  max-width: 780px;
  font-size: clamp(34px, 6vw, 70px);
}

.film-feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.52fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.film-feature-copy,
.film-project-copy {
  display: grid;
  gap: 18px;
}

.film-feature-copy p,
.film-project-copy p {
  color: var(--muted);
}

.poster-panel {
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.9);
  box-shadow: var(--shadow);
}

.poster-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  display: block;
}

.bts-carousel {
  display: grid;
  gap: 14px;
  margin-top: 2px;
}

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

.carousel-heading h3 {
  font-size: clamp(24px, 3vw, 38px);
}

.carousel-controls {
  display: flex;
  gap: 8px;
}

.carousel-controls button {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.92);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.bts-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 250px);
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.bts-track figure {
  height: 170px;
  margin: 0;
  padding: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.86);
  scroll-snap-align: start;
}

.bts-track img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.film-list-section {
  padding-top: clamp(36px, 6vw, 76px);
}

.film-list {
  display: grid;
  gap: 28px;
}

.film-project {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(320px, 0.75fr);
  gap: clamp(20px, 4vw, 54px);
  align-items: start;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.86);
  box-shadow: var(--shadow);
}

.video-frame,
.image-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  background: var(--ink);
  overflow: hidden;
}

.video-frame iframe,
.image-frame img {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.image-frame {
  margin: 0;
  background: rgba(255, 250, 242, 0.86);
}

.image-frame img {
  object-fit: contain;
  object-position: center;
}

.instagram-frame {
  background: white;
}

@media (max-width: 760px) {
  .film-feature-layout,
  .film-project {
    grid-template-columns: 1fr;
  }

  .carousel-heading {
    display: grid;
    align-items: start;
  }

  .carousel-controls button {
    flex: 1;
  }

  .bts-track {
    grid-auto-columns: minmax(160px, 76vw);
  }

  .bts-track figure {
    height: 150px;
  }
}

.home-intro {
  grid-template-columns: minmax(0, 1fr) minmax(120px, 220px);
  align-items: center;
}

.home-intro .intro-copy {
  max-width: 780px;
}

.home-intro .intro-copy p {
  color: var(--muted);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.35;
}

.compact-portrait {
  width: min(100%, 190px);
  justify-self: end;
  padding: 8px;
}

.compact-portrait img {
  aspect-ratio: 4 / 5;
}

@media (max-width: 760px) {
  .home-intro {
    grid-template-columns: 1fr;
  }

  .compact-portrait {
    width: min(58vw, 190px);
    justify-self: start;
  }
}

.production-intro {
  padding-bottom: clamp(36px, 6vw, 70px);
}

.production-intro .intro-copy {
  max-width: 900px;
}

.production-intro p,
.production-copy p,
.experience-card p,
.production-closing p {
  color: var(--muted);
}

.production-main {
  grid-template-columns: 130px minmax(0, 0.86fr) minmax(320px, 0.74fr);
}

.production-copy,
.experience-card,
.production-closing {
  display: grid;
  gap: 18px;
}

.role-list {
  display: grid;
  gap: 12px;
  margin-top: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.role-list h3 {
  font-size: clamp(20px, 2vw, 26px);
}

.role-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.role-list li {
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.72);
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.production-experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding-top: clamp(34px, 5vw, 64px);
}

.experience-card,
.production-closing {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.86);
  box-shadow: var(--shadow);
}

.production-closing {
  max-width: 960px;
  margin-top: clamp(24px, 5vw, 54px);
}

@media (max-width: 760px) {
  .production-main,
  .production-experience-grid {
    grid-template-columns: 1fr;
  }

  .betterme-gallery img,
  .betterme-gallery img:first-child {
    height: 160px;
    grid-column: auto;
  }
}

/* 2026-06-01 editorial redesign pass for non-filmmaking pages */
.editorial-heading {
  max-width: 980px;
  margin-bottom: clamp(24px, 5vw, 48px);
}

.editorial-heading.narrow {
  max-width: 720px;
}

.home-statement,
.about-editorial,
.contact-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 320px);
  gap: clamp(24px, 6vw, 82px);
  align-items: center;
}

.statement-copy p,
.about-copy-block p,
.page-intro p,
.closing-note p,
.contact-copy p {
  color: var(--muted);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.35;
}

.compact-portrait {
  width: min(100%, 220px);
  justify-self: end;
  transform: rotate(1deg);
}

.compact-portrait img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.compact-portrait figcaption {
  padding: 0 0 10px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.directory-section {
  padding-top: clamp(48px, 8vw, 92px);
}

.refined-directory .image-card {
  border-color: rgba(17, 16, 14, 0.14);
}

.current-focus {
  border-top: 1px solid var(--line);
  padding-top: clamp(46px, 7vw, 86px);
}

.focus-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.focus-row a {
  display: grid;
  gap: 8px;
  min-height: 180px;
  align-content: end;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 250, 242, 0.9);
  color: inherit;
  text-decoration: none;
}

.focus-row span,
.link-directory span {
  color: var(--clay);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.focus-row strong {
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.05;
}

.page-intro.two-column-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(22px, 5vw, 76px);
  padding-bottom: clamp(34px, 5vw, 62px);
}

.editorial-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.feature-copy,
.experience-panel,
.closing-note,
.about-copy-block,
.contact-copy {
  display: grid;
  gap: 18px;
}

.feature-copy p,
.experience-panel p,
.ledger-item p,
.link-directory em,
.refined-proof span,
.refined-resume p {
  color: var(--muted);
}

.refined-gallery {
  align-self: start;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.refined-gallery img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  object-position: center;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.86);
}

.refined-gallery img:first-child {
  grid-column: span 2;
  height: 190px;
}

.clean-list {
  display: grid;
  gap: 12px;
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.clean-list h3 {
  font-size: clamp(19px, 2vw, 25px);
}

.clean-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.72);
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.experience-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding-top: clamp(42px, 7vw, 82px);
}

.experience-panel,
.closing-note,
.refined-resume,
.refined-contact,
.ledger-item,
.link-directory a,
.refined-proof article {
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.88);
  box-shadow: var(--shadow);
}

.experience-panel,
.closing-note,
.refined-resume,
.refined-contact,
.ledger-item,
.link-directory a {
  padding: clamp(22px, 4vw, 36px);
}

.closing-note {
  max-width: 980px;
  margin-top: clamp(28px, 5vw, 64px);
}

.work-ledger {
  display: grid;
  gap: 16px;
}

.ledger-item {
  display: grid;
  grid-template-columns: minmax(220px, 0.48fr) minmax(0, 1fr);
  gap: clamp(20px, 5vw, 72px);
  align-items: start;
}

.ledger-item h2 {
  font-size: clamp(30px, 4.4vw, 58px);
}

.featured-ledger {
  background: rgba(255, 250, 242, 0.95);
}

.media-summary {
  border-top: 1px solid var(--line);
}

.about-editorial {
  align-items: start;
}

.about-copy-block p {
  font-size: clamp(25px, 3vw, 43px);
  line-height: 1.14;
  color: var(--ink);
}

.refined-proof {
  grid-template-columns: repeat(3, 1fr);
}

.refined-proof article {
  display: grid;
  gap: 12px;
  padding: clamp(20px, 3vw, 28px);
}

.refined-proof strong {
  font-size: clamp(21px, 2.2vw, 29px);
}

.link-directory {
  display: grid;
  gap: 12px;
}

.link-directory a {
  display: grid;
  grid-template-columns: 0.22fr minmax(220px, 0.5fr) minmax(0, 1fr);
  gap: clamp(14px, 4vw, 54px);
  align-items: baseline;
  color: inherit;
  text-decoration: none;
}

.link-directory strong {
  font-size: clamp(24px, 3.8vw, 52px);
  line-height: 1;
}

.link-directory em {
  font-style: normal;
}

.contact-editorial {
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.58fr);
  align-items: start;
}

.refined-contact {
  display: grid;
  gap: 10px;
}

.refined-contact a {
  color: inherit;
  font-size: clamp(19px, 2vw, 25px);
  overflow-wrap: anywhere;
}

@media (max-width: 860px) {
  .home-statement,
  .about-editorial,
  .contact-editorial,
  .page-intro.two-column-intro,
  .editorial-feature,
  .experience-columns,
  .ledger-item,
  .link-directory a,
  .refined-proof,
  .focus-row {
    grid-template-columns: 1fr;
  }

  .compact-portrait {
    width: min(58vw, 200px);
    justify-self: start;
  }

  .focus-row a {
    min-height: 140px;
  }

  .refined-gallery img,
  .refined-gallery img:first-child {
    height: 150px;
    grid-column: auto;
  }
}

/* 2026-06-02 refinement pass: simpler copy-led pages */
.about-longform {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  gap: clamp(28px, 7vw, 92px);
  align-items: start;
}

.about-text-stack {
  display: grid;
  gap: 22px;
  max-width: 860px;
}

.about-text-stack p {
  color: var(--muted);
  font-size: clamp(19px, 1.65vw, 25px);
  line-height: 1.45;
}

.sticky-resume {
  position: sticky;
  top: 96px;
}

.refined-work-list {
  gap: 12px;
}

.refined-work-list .ledger-item {
  grid-template-columns: minmax(240px, 0.44fr) minmax(0, 1fr);
  min-height: 220px;
}

.ledger-copy {
  display: grid;
  gap: 18px;
}

.text-link {
  width: fit-content;
  color: var(--clay);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.small-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.refined-social-links a {
  min-height: 132px;
  align-items: center;
}

.refined-social-links strong {
  font-size: clamp(28px, 4.8vw, 64px);
}

.page-hero .deck {
  max-width: 780px;
}

.ledger-item,
.link-directory a,
.experience-panel,
.closing-note,
.refined-resume,
.refined-contact,
.refined-proof article {
  box-shadow: 0 14px 45px rgba(17, 16, 14, 0.06);
}

@media (max-width: 860px) {
  .about-longform,
  .refined-work-list .ledger-item {
    grid-template-columns: 1fr;
  }

  .sticky-resume {
    position: static;
  }

  .refined-social-links a {
    min-height: auto;
  }
}

/* Set + Production page refinement */
.compact-intro {
  max-width: 980px;
  padding-bottom: clamp(30px, 5vw, 56px);
}

.compact-intro p {
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(24px, 2.8vw, 40px);
  line-height: 1.18;
}

.betterme-section {
  align-items: center;
}

.floating-gallery {
  gap: 14px;
}

.floating-gallery img,
.floating-gallery img:first-child {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.floating-gallery img {
  height: 138px;
  object-fit: contain;
}

.floating-gallery img:first-child {
  height: 176px;
}

.production-story-list {
  display: grid;
  gap: clamp(34px, 6vw, 76px);
  border-top: 1px solid var(--line);
}

.production-story {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.64fr);
  gap: clamp(24px, 6vw, 76px);
  align-items: center;
}

.production-story.reverse .story-copy {
  order: 2;
}

.production-story.text-only-story {
  display: block;
  max-width: 860px;
}

.production-story.text-only-story .story-copy {
  max-width: 760px;
}

.story-copy {
  display: grid;
  gap: 18px;
}

.story-copy p {
  color: var(--muted);
}

.image-slot {
  min-height: 250px;
  border: 1px dashed rgba(17, 16, 14, 0.22);
  background: rgba(255, 250, 242, 0.34);
}

.pending-slot {
  display: grid;
  place-items: center;
}

.pending-slot span {
  color: rgba(17, 16, 14, 0.46);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .production-story,
  .production-story.reverse .story-copy {
    grid-template-columns: 1fr;
    order: initial;
  }

  .floating-gallery img,
  .floating-gallery img:first-child {
    height: 140px;
  }

  .image-slot {
    min-height: 180px;
  }
}

/* Video + Photo embedded media pass */
.media-showcase {
  display: grid;
  gap: clamp(48px, 8vw, 92px);
}

.media-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 78px);
  align-items: start;
  padding-top: clamp(24px, 5vw, 54px);
  border-top: 1px solid var(--line);
}

.media-section:first-child {
  border-top: 0;
  padding-top: 0;
}

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

.media-copy p:not(.eyebrow) {
  color: var(--muted);
}

.embed-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 285px), 1fr));
  gap: clamp(14px, 2vw, 22px);
  overflow: visible;
  padding-bottom: 0;
}

.single-embed {
  grid-template-columns: minmax(min(100%, 300px), 420px);
}

.instagram-embed-frame,
.embed-slot {
  width: 100%;
  height: 560px;
}

.instagram-embed-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  background: white;
  box-shadow: 0 14px 45px rgba(17, 16, 14, 0.06);
}

.instagram-embed-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.quiet-slot {
  border: 1px dashed rgba(17, 16, 14, 0.18);
  background: rgba(255, 250, 242, 0.34);
}

@media (max-width: 860px) {
  .media-section {
    grid-template-columns: 1fr;
  }

  .embed-carousel,
  .single-embed {
    grid-template-columns: 1fr;
  }

  .instagram-embed-frame,
  .embed-slot {
    height: 520px;
  }
}

/* Social page account-panel refinement */
.social-stack {
  display: grid;
  gap: 12px;
}

.social-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr);
  gap: clamp(18px, 5vw, 70px);
  align-items: end;
  min-height: 168px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.88);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 14px 45px rgba(17, 16, 14, 0.06);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.social-panel span {
  grid-column: 1 / -1;
  color: var(--clay);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.social-panel strong {
  font-size: clamp(32px, 6vw, 82px);
  line-height: 0.95;
}

.social-panel em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.45;
}

.social-panel:hover {
  transform: translateY(-3px);
  border-color: rgba(152, 75, 54, 0.38);
  background: white;
}

.featured-social {
  background: rgba(255, 250, 242, 0.96);
}

@media (max-width: 860px) {
  .social-panel {
    grid-template-columns: 1fr;
    min-height: 140px;
  }
}

/* Homepage editorial index pass */
.home-page-index {
  display: grid;
  gap: 14px;
  border-top: 1px solid var(--line);
}

.home-index-row {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.58fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: stretch;
  min-height: 260px;
  padding: clamp(18px, 3vw, 30px) 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}

.home-index-copy {
  display: grid;
  align-content: center;
  gap: 14px;
}

.home-index-copy p:not(.eyebrow) {
  max-width: 540px;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.4;
}

.home-index-row figure {
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.home-index-row img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 220ms ease;
}

.home-index-row:hover img {
  transform: scale(1.035);
}

.home-index-row:hover h2 {
  color: var(--clay);
}

@media (max-width: 860px) {
  .home-index-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .home-index-row img {
    min-height: 220px;
  }
}

/* Social page: content-page row layout */
.social-media-list {
  display: grid;
  gap: 14px;
  border-top: 1px solid var(--line);
}

.social-media-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(22px, 5vw, 70px);
  align-items: end;
  min-height: 190px;
  padding: clamp(22px, 4vw, 38px) 0;
  border-bottom: 1px solid var(--line);
}

.social-media-copy {
  display: grid;
  gap: 14px;
}

.social-media-copy h2 {
  max-width: 920px;
}

.social-media-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.4;
}

.social-action {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.featured-social-row .social-action {
  border-color: var(--clay);
  background: var(--clay);
}

@media (max-width: 860px) {
  .social-media-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .social-action {
    width: fit-content;
  }
}

/* Contact form and social action refinement */
.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.46fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.9);
  box-shadow: 0 14px 45px rgba(17, 16, 14, 0.06);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span,
.contact-details-plain dt {
  color: var(--clay);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  width: fit-content;
  min-height: 46px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: white;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 900;
  padding: 11px 18px;
  text-transform: uppercase;
}

.contact-details-plain {
  display: grid;
  gap: 18px;
}

.contact-details-plain p,
.contact-details-plain dd {
  color: var(--muted);
}

.contact-details-plain dl {
  display: grid;
  gap: 14px;
  margin: 12px 0 0;
}

.contact-details-plain div {
  display: grid;
  gap: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.contact-details-plain dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: clamp(19px, 2vw, 25px);
}

.film-direct-link {
  margin-top: -12px;
}

@media (max-width: 860px) {
  .contact-form-layout {
    grid-template-columns: 1fr;
  }

  .social-actions {
    justify-content: flex-start;
  }
}

.photo-section {
  grid-template-columns: 1fr;
}

.photo-section .media-copy {
  max-width: 780px;
}

.photo-section .embed-carousel {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1180px) {
  .photo-section .embed-carousel {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 285px), 1fr));
  }
}
