:root {
  --black: #111111;
  --charcoal: #1e1e1e;
  --ink: #f7f4ec;
  --white: #ffffff;
  --muted: #b9b6ad;
  --gold: #c8a45d;
  --gold-soft: rgba(200, 164, 93, 0.18);
  --line: rgba(255, 255, 255, 0.12);
  --panel: rgba(255, 255, 255, 0.045);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(17, 17, 17, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.95rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(9px, 1.12vw, 18px);
  color: rgba(247, 244, 236, 0.78);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  transition: color 180ms ease;
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  padding: 10px;
}

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

.section-band {
  position: relative;
  padding: clamp(78px, 9vw, 132px) clamp(20px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  min-width: 0;
}

.narrow {
  width: min(100%, 870px);
}

.hero {
  min-height: 96vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  align-items: center;
  gap: clamp(36px, 6vw, 96px);
  padding-top: 112px;
  overflow: hidden;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.98) 0%, rgba(17, 17, 17, 0.78) 44%, rgba(17, 17, 17, 0.35) 100%),
    radial-gradient(circle at 20% 25%, rgba(200, 164, 93, 0.12), transparent 34%);
  pointer-events: none;
}

.hero-copy,
.hero-portrait,
.hero-signature {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.02;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 850px;
  font-size: clamp(4rem, 10vw, 9.4rem);
  font-weight: 800;
}

h1 span {
  display: block;
}

h2 {
  max-width: 940px;
  font-size: clamp(2.35rem, 5vw, 5.2rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.hero-lede {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(247, 244, 236, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  overflow-wrap: anywhere;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.btn.primary {
  background: var(--gold);
  color: var(--black);
}

.btn.secondary {
  color: var(--gold);
}

.hero-portrait {
  align-self: end;
  justify-self: center;
  width: min(100%, 460px);
}

.hero-portrait img {
  width: 100%;
  height: min(72vh, 760px);
  object-fit: cover;
  object-position: 50% 20%;
  border: 1px solid rgba(200, 164, 93, 0.42);
  filter: contrast(1.06);
}

.hero-signature {
  position: absolute;
  left: clamp(20px, 4vw, 56px);
  right: clamp(20px, 4vw, 56px);
  bottom: 24px;
  display: flex;
  gap: 18px;
  color: rgba(247, 244, 236, 0.58);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.statement {
  background: var(--charcoal);
}

.photo-stream {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.95), rgba(30, 30, 30, 0.94)),
    repeating-linear-gradient(90deg, rgba(200, 164, 93, 0.06) 0 1px, transparent 1px 92px);
}

.photo-stream:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 18%, rgba(200, 164, 93, 0.09) 18% 19%, transparent 19% 100%),
    linear-gradient(60deg, transparent 0 72%, rgba(255, 255, 255, 0.055) 72% 73%, transparent 73% 100%);
  pointer-events: none;
}

.photo-stream-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.photo-stream-copy h2 {
  font-size: clamp(2.25rem, 4vw, 4.7rem);
}

.photo-slider {
  position: relative;
  min-width: 0;
}

.slider-frame {
  position: relative;
  min-height: clamp(460px, 56vw, 650px);
  border: 1px solid rgba(200, 164, 93, 0.3);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.slider-frame:before,
.slider-frame:after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(200, 164, 93, 0.16);
  pointer-events: none;
  z-index: 3;
}

.slider-frame:after {
  inset: auto 22px 22px auto;
  width: 86px;
  height: 86px;
  border-left: 0;
  border-top: 0;
}

.slider-orbit {
  position: absolute;
  inset: 0;
  perspective: 1400px;
}

.slider-photo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(42vw, 320px);
  aspect-ratio: 3 / 4.4;
  margin: 0;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.72) rotateY(24deg);
  transition: opacity 600ms ease, transform 700ms ease, filter 700ms ease;
  filter: saturate(0.75) contrast(1.12) brightness(0.62);
  will-change: transform, opacity;
}

.slider-photo:before {
  content: attr(data-index);
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 30px;
  border: 1px solid rgba(200, 164, 93, 0.7);
  background: rgba(17, 17, 17, 0.72);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
}

.slider-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(247, 244, 236, 0.16);
}

.slider-photo.is-active {
  z-index: 5;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.08) rotateY(0deg);
  filter: saturate(0.95) contrast(1.08) brightness(0.98);
}

.slider-photo.is-next {
  z-index: 4;
  opacity: 0.74;
  transform: translate(calc(-50% + 190px), calc(-50% + 18px)) scale(0.86) rotateY(-18deg);
}

.slider-photo.is-prev {
  z-index: 4;
  opacity: 0.74;
  transform: translate(calc(-50% - 190px), calc(-50% - 18px)) scale(0.86) rotateY(18deg);
}

.slider-photo.is-far-next {
  z-index: 3;
  opacity: 0.36;
  transform: translate(calc(-50% + 320px), calc(-50% - 46px)) scale(0.66) rotateY(-28deg);
}

.slider-photo.is-far-prev {
  z-index: 3;
  opacity: 0.36;
  transform: translate(calc(-50% - 320px), calc(-50% + 46px)) scale(0.66) rotateY(28deg);
}

.slider-scanline {
  position: absolute;
  inset: 0;
  z-index: 6;
  height: 28%;
  background: linear-gradient(180deg, transparent, rgba(200, 164, 93, 0.13), transparent);
  animation: scanline 4.8s linear infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}

.slider-console {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
  color: rgba(247, 244, 236, 0.62);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.slider-console strong {
  color: var(--gold);
}

@keyframes scanline {
  0% {
    transform: translateY(-110%);
  }

  100% {
    transform: translateY(370%);
  }
}

.statement p:not(.section-kicker),
.section-heading p,
.law-layout p,
.legacy-section p,
.contact-layout p {
  color: rgba(247, 244, 236, 0.76);
  font-size: 1.05rem;
}

.statement p:not(.section-kicker) {
  max-width: 760px;
}

.split-section {
  background:
    linear-gradient(180deg, rgba(30, 30, 30, 0.82), rgba(17, 17, 17, 1));
}

.section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 48px;
}

.section-heading.wide {
  grid-template-columns: 1fr minmax(280px, 430px);
  align-items: end;
}

.bio-grid,
.case-grid,
.books-grid,
.insight-grid,
.metrics-grid,
.contact-layout {
  display: grid;
  gap: 22px;
}

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

.bio-grid article,
.case-grid article,
.insight-grid article,
.law-panel,
.coming-soon {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: clamp(22px, 3vw, 34px);
}

.article-number {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-weight: 800;
}

.bio-grid p,
.timeline li,
.case-grid p,
.book p,
.coming-soon p {
  color: rgba(247, 244, 236, 0.72);
}

.role-list,
.law-panel ul,
.timeline ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: rgba(247, 244, 236, 0.78);
}

.principles {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  margin-top: 24px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(200, 164, 93, 0.42);
  background: linear-gradient(135deg, rgba(200, 164, 93, 0.14), rgba(255, 255, 255, 0.035));
}

.principles ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding-left: 22px;
  color: var(--white);
  font-weight: 700;
}

.sales-section {
  background: #151515;
}

.timeline {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.timeline article {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.timeline time,
.company,
.meta {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.company {
  margin: 0 0 8px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 38px 0;
}

.expertise-grid span {
  min-height: 78px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(200, 164, 93, 0.28);
  background: rgba(200, 164, 93, 0.08);
  color: var(--white);
  font-weight: 800;
  text-align: center;
}

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

.law-section {
  background: linear-gradient(135deg, #111111 0%, #202020 100%);
}

.law-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.62fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}

.law-panel li + li {
  margin-top: 10px;
}

.books-section {
  background: var(--charcoal);
}

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

.book {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--line);
}

.book-cover {
  min-height: 242px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid rgba(200, 164, 93, 0.5);
  background:
    linear-gradient(160deg, rgba(200, 164, 93, 0.24), rgba(0, 0, 0, 0.2)),
    #121212;
}

.book-cover.alternate {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(200, 164, 93, 0.18)),
    #111111;
}

.book-cover span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.book-cover strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.08;
}

.book a {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}

.coming-soon {
  display: grid;
  grid-template-columns: 160px 190px 1fr;
  align-items: center;
  gap: 22px;
  margin-top: 22px;
}

.coming-soon span {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.coming-soon strong {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
}

.venture-table {
  border-top: 1px solid var(--line);
}

.venture-table > div {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 0.45fr 0.75fr 1.45fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  color: rgba(247, 244, 236, 0.76);
}

.venture-table .table-head {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.insights-section {
  background: #151515;
}

.cinematics-section,
.cinematics-hero {
  background:
    linear-gradient(135deg, rgba(200, 164, 93, 0.12), transparent 42%),
    #111111;
}

.cinematics-page .site-header + main {
  padding-top: 0;
}

.cinematics-hero {
  min-height: 74vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
}

.cinematics-hero h1 {
  font-size: clamp(4rem, 11vw, 10rem);
}

.media-lab {
  background: var(--charcoal);
}

.media-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
  margin-bottom: 34px;
}

.media-note {
  max-width: 720px;
  color: rgba(247, 244, 236, 0.76);
  font-size: 1.05rem;
}

.upload-panel {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(17, 17, 17, 0.42);
}

.upload-drop {
  display: grid;
  gap: 12px;
  min-height: 260px;
  place-items: center;
  padding: 24px;
  border: 1px dashed rgba(200, 164, 93, 0.55);
  background: rgba(200, 164, 93, 0.07);
  text-align: center;
  cursor: pointer;
}

.upload-drop input {
  width: 100%;
  max-width: 250px;
  color: rgba(247, 244, 236, 0.72);
}

.upload-drop span,
.upload-drop small {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.upload-drop strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.upload-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.media-placeholder,
.media-item {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  background: var(--panel);
}

.media-placeholder span,
.media-item span {
  color: var(--gold);
  font-weight: 800;
}

.media-placeholder p,
.media-item p {
  color: rgba(247, 244, 236, 0.72);
}

.media-item img,
.media-item video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0b0b0b;
}

.media-item h3 {
  margin-top: 16px;
  overflow-wrap: anywhere;
}

.cinematic-gallery-section {
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.98), rgba(30, 30, 30, 0.92)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 72px);
}

.cinematic-intro {
  margin-bottom: clamp(34px, 5vw, 64px);
}

.cinematic-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 92px;
  gap: clamp(10px, 1.5vw, 18px);
}

.cinematic-tile {
  position: relative;
  grid-column: span 3;
  grid-row: span 4;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--panel);
}

.cinematic-tile.feature {
  grid-column: span 6;
  grid-row: span 6;
}

.cinematic-tile.tall {
  grid-column: span 3;
  grid-row: span 6;
}

.cinematic-tile.wide {
  grid-column: span 6;
  grid-row: span 4;
}

.cinematic-tile.compact {
  grid-column: span 3;
  grid-row: span 3;
}

.cinematic-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08);
  transform: scale(1.01);
  transition: transform 500ms ease, filter 500ms ease;
}

.cinematic-tile:hover img {
  filter: saturate(1) contrast(1.12);
  transform: scale(1.055);
}

.cinematic-tile figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: rgba(247, 244, 236, 0.86);
  font-size: 0.72rem;
  font-weight: 800;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.8);
  text-transform: uppercase;
}

.cinematic-tile figcaption span {
  color: var(--gold);
}

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

.insight-grid article {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.insight-grid span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.metrics-grid div {
  min-height: 178px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border-top: 1px solid var(--gold);
  background: rgba(255, 255, 255, 0.035);
}

.metrics-grid strong {
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1;
}

.metrics-grid span {
  color: rgba(247, 244, 236, 0.68);
  font-weight: 800;
  text-transform: uppercase;
}

.legacy-section {
  background:
    linear-gradient(rgba(17, 17, 17, 0.76), rgba(17, 17, 17, 0.96)),
    linear-gradient(135deg, rgba(200, 164, 93, 0.18), transparent 44%);
  text-align: center;
}

.legacy-section p {
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

.contact-section {
  background: var(--charcoal);
}

.contact-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(17, 17, 17, 0.42);
}

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

.contact-form span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 4vw, 56px);
  color: rgba(247, 244, 236, 0.58);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

  .site-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 24px;
    background: rgba(17, 17, 17, 0.98);
    border-bottom: 1px solid var(--line);
  }

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

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

  .hero,
  .section-heading.wide,
  .bio-grid,
  .principles,
  .law-layout,
  .books-grid,
  .media-layout,
  .photo-stream-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 118px;
  }

  .hero-portrait {
    justify-self: start;
    width: min(100%, 380px);
  }

  .hero-portrait img {
    height: 520px;
  }

  .photo-stream-copy {
    max-width: 720px;
  }

  .slider-frame {
    min-height: 560px;
  }

  .slider-photo {
    width: min(58vw, 300px);
  }

  .slider-photo.is-next {
    transform: translate(calc(-50% + 142px), calc(-50% + 18px)) scale(0.82) rotateY(-16deg);
  }

  .slider-photo.is-prev {
    transform: translate(calc(-50% - 142px), calc(-50% - 18px)) scale(0.82) rotateY(16deg);
  }

  .slider-photo.is-far-next,
  .slider-photo.is-far-prev {
    opacity: 0.18;
  }

  .cinematic-gallery {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 86px;
  }

  .cinematic-tile,
  .cinematic-tile.compact {
    grid-column: span 2;
    grid-row: span 4;
  }

  .cinematic-tile.feature,
  .cinematic-tile.wide {
    grid-column: span 4;
  }

  .cinematic-tile.tall {
    grid-column: span 2;
  }

  .expertise-grid,
  .case-grid,
  .insight-grid,
  .media-grid,
  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .book,
  .coming-soon {
    grid-template-columns: 1fr;
  }

  .book-cover {
    width: 180px;
  }

  .cinematics-page .hero-lede,
  .cinematics-page .media-note {
    max-width: min(100%, 260px);
    font-size: 1rem;
  }

  .cinematics-hero h1 {
    font-size: clamp(3.3rem, 14vw, 4rem);
  }

  .venture-table {
    display: grid;
    gap: 18px;
    border-top: 0;
  }

  .venture-table > div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px;
    border: 1px solid var(--line);
  }

  .venture-table .table-head {
    display: none;
  }
}

@media (max-width: 640px) {
  .brand span:last-child {
    display: none;
  }

  .section-band {
    padding: 70px 18px;
  }

  .hero {
    display: block;
    min-height: auto;
    padding-top: 108px;
  }

  h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(3.05rem, 15vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 2.7rem);
  }

  .cinematics-hero h1 {
    font-size: clamp(3.3rem, 14vw, 4rem);
  }

  .cinematics-page .hero-lede,
  .cinematics-page .media-note {
    max-width: calc(100vw - 64px);
  }

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

  .hero-lede {
    max-width: 100%;
  }

  .hero-actions,
  .site-footer,
  .hero-signature {
    flex-direction: column;
  }

  .hero-signature {
    position: static;
    margin-top: 26px;
  }

  .hero-portrait img {
    height: 420px;
  }

  .hero-portrait {
    width: 100%;
    max-width: 330px;
    margin: 52px auto 0;
  }

  .photo-stream-layout {
    gap: 28px;
  }

  .slider-frame {
    min-height: 440px;
  }

  .slider-photo {
    width: min(72vw, 245px);
  }

  .slider-photo.is-active {
    transform: translate(-50%, -50%) scale(1);
  }

  .slider-photo.is-next {
    transform: translate(calc(-50% + 92px), calc(-50% + 18px)) scale(0.72) rotateY(-14deg);
  }

  .slider-photo.is-prev {
    transform: translate(calc(-50% - 92px), calc(-50% - 18px)) scale(0.72) rotateY(14deg);
  }

  .slider-photo.is-far-next,
  .slider-photo.is-far-prev {
    opacity: 0;
  }

  .slider-console {
    align-items: flex-start;
    flex-direction: column;
  }

  .cinematic-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 82px;
  }

  .cinematic-tile,
  .cinematic-tile.feature,
  .cinematic-tile.tall,
  .cinematic-tile.wide,
  .cinematic-tile.compact {
    grid-column: span 1;
    grid-row: span 4;
  }

  .cinematic-tile.feature,
  .cinematic-tile.wide {
    grid-column: span 2;
    grid-row: span 4;
  }

  .timeline article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .expertise-grid,
  .case-grid,
  .insight-grid,
  .media-grid,
  .metrics-grid,
  .principles ol {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }
}
