:root {
  --ink: #f5efe7;
  --muted: rgba(245, 239, 231, 0.66);
  --dim: rgba(245, 239, 231, 0.42);
  --black: #050505;
  --charcoal: #0b0a09;
  --smoke: #171412;
  --gold: #c8a46c;
  --gold-soft: rgba(200, 164, 108, 0.18);
  --line: rgba(245, 239, 231, 0.14);
  --panel: rgba(14, 12, 11, 0.58);
  --font-sans: "Manrope", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 56% 0%, rgba(9, 42, 70, 0.5), transparent 34%),
    radial-gradient(circle at 74% 7%, rgba(200, 164, 108, 0.18), transparent 26%),
    radial-gradient(circle at 12% 24%, rgba(108, 76, 53, 0.22), transparent 32%),
    linear-gradient(180deg, #02060a 0%, #050b10 38%, #0a0807 100%);
  font-family: var(--font-sans);
  font-weight: 600;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

#sceneCanvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 0.72;
  pointer-events: none;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 20;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(260px, 1fr);
  gap: clamp(18px, 2.6vw, 48px);
  align-items: center;
  padding: 25px clamp(28px, 3.2vw, 58px);
  color: rgba(245, 239, 231, 0.9);
  background: linear-gradient(180deg, rgba(2, 6, 10, 0.62), rgba(2, 6, 10, 0));
  backdrop-filter: none;
}

.brand {
  display: grid;
  gap: 2px;
  width: max-content;
  text-transform: uppercase;
}

.brand span {
  color: #e4c48c;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
}

.brand small {
  color: rgba(228, 196, 140, 0.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.desktop-nav {
  display: flex;
  gap: clamp(18px, 2.2vw, 38px);
  align-items: center;
  justify-content: center;
  color: rgba(245, 239, 231, 0.82);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.desktop-nav a,
.header-actions a {
  position: relative;
  transition: color 220ms ease;
}

.desktop-nav a.is-active {
  color: #e4c48c;
}

.desktop-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -16px;
  height: 2px;
  background: #c9974d;
}

.desktop-nav a:hover,
.header-actions a:hover {
  color: var(--gold);
}

.header-actions {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 22px;
  color: rgba(245, 239, 231, 0.72);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 17px;
}

.social-links a {
  color: rgba(245, 239, 231, 0.78);
  font-size: 11px;
}

.spotlight-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 22px;
  color: #e8ca91;
  border: 1px solid rgba(201, 151, 77, 0.7);
  border-radius: 4px;
}

.menu-button {
  display: grid;
  gap: 7px;
  width: 44px;
  padding: 9px 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  height: 1px;
  background: currentColor;
}

.mobile-nav {
  display: none;
}

.section {
  --ink: #1b1713;
  --muted: rgba(27, 23, 19, 0.66);
  --dim: rgba(27, 23, 19, 0.42);
  --line: rgba(27, 23, 19, 0.13);
  color: var(--ink);
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 82% 10%, rgba(213, 169, 96, 0.18), transparent 30%),
    radial-gradient(ellipse at 16% 92%, rgba(213, 169, 96, 0.11), transparent 36%),
    linear-gradient(180deg, #fbf7ef 0%, #f4ecdf 100%);
  border-top: 1px solid rgba(173, 128, 63, 0.16);
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section::before {
  content: "";
  position: absolute;
  left: max(18px, calc((100vw - var(--max)) / 2 - 36px));
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(173, 128, 63, 0.34), transparent);
  opacity: 0.5;
}

.section::after {
  content: "";
  position: absolute;
  left: max(13px, calc((100vw - var(--max)) / 2 - 41px));
  top: 112px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 24px rgba(200, 164, 108, 0.38);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 108px 0 32px;
  overflow: hidden;
  background: #02060a;
}

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

.hero-lines {
  display: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: start center;
  overflow: hidden;
  background: #02060a;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 6, 10, 0.18) 0%, rgba(2, 6, 10, 0.09) 34%, transparent 58%),
    linear-gradient(180deg, rgba(2, 6, 10, 0.12), transparent 32%, rgba(2, 6, 10, 0.1));
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: min(calc(100% - clamp(54px, 8vw, 150px)), 1720px);
  min-width: 0;
  min-height: calc(100vh - 140px);
  display: grid;
  grid-template-columns: minmax(0, 720px);
  gap: 0;
  align-items: start;
}

.hero-copy {
  position: relative;
  z-index: 3;
  min-width: 0;
  max-width: 720px;
  padding-top: clamp(74px, 10vh, 116px);
}

.eyebrow,
.chapter {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 {
  display: grid;
  position: relative;
  padding-bottom: 26px;
  font-size: clamp(74px, 7.75vw, 150px);
  line-height: 0.84;
}

h1 span {
  white-space: nowrap;
}

h1 span:last-child {
  color: #bba16f;
  -webkit-text-stroke: 0;
  text-shadow: 0 0 44px rgba(200, 164, 108, 0.12);
}

.hero-copy h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(430px, 88%);
  height: 1px;
  background: linear-gradient(90deg, #c9974d, rgba(201, 151, 77, 0.5), transparent);
}

h2 {
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.92;
}

h3 {
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1;
}

.hero-text {
  max-width: 500px;
  margin: 24px 0 0;
  color: rgba(245, 239, 231, 0.86);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
}

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

.button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  overflow: hidden;
  border: 1px solid rgba(201, 151, 77, 0.5);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    color 260ms ease;
}

.button::before {
  content: "";
  position: relative;
  z-index: 1;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid currentColor;
}

.button::after {
  content: "";
  position: absolute;
  inset: -40% -80%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transform: translateX(-60%) rotate(12deg);
  transition: transform 700ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 164, 108, 0.62);
}

.button:hover::after {
  transform: translateX(62%) rotate(12deg);
}

.button.primary {
  color: #0d0b09;
  border-color: rgba(243, 220, 168, 0.88);
  background:
    linear-gradient(135deg, rgba(255, 240, 198, 0.96), rgba(193, 146, 76, 0.98)),
    #d9b36d;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    inset 0 -10px 22px rgba(110, 75, 30, 0.16),
    0 18px 55px rgba(200, 164, 108, 0.26);
}

.button.ghost {
  color: rgba(245, 239, 231, 0.9);
  background: rgba(3, 9, 14, 0.34);
  backdrop-filter: blur(4px);
}

.hero-imdb {
  display: inline-flex;
  margin-top: 28px;
  color: rgba(245, 239, 231, 0.78);
  border-bottom: 1px solid rgba(201, 151, 77, 0.7);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.portrait-world {
  display: none;
}

.portrait-world::before {
  display: none;
}

.portrait-orbit {
  display: none;
}

.orbit-one {
  inset: 11% 7% 11% 10%;
}

.orbit-two {
  inset: 18% 19% 16% 2%;
  animation-duration: 24s;
  animation-direction: reverse;
}

.portrait-main,
.portrait-echo {
  position: absolute;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02);
  transition: transform 500ms ease;
}

.portrait-main {
  right: 2%;
  top: 8%;
  z-index: 3;
  width: min(560px, 90%);
  height: 78%;
  object-position: 52% 20%;
  border-radius: 0;
  box-shadow:
    0 34px 88px rgba(0, 0, 0, 0.38),
    0 0 70px rgba(200, 164, 108, 0.08);
  border: 1px solid rgba(245, 239, 231, 0.1);
  -webkit-mask-image: none;
  mask-image: none;
  transform: none;
}

.portrait-echo {
  display: none;
}

.echo-left {
  left: 0;
  bottom: 6%;
  transform: translateZ(-70px) rotateY(12deg) rotate(-5deg);
}

.echo-right {
  right: 2%;
  top: 1%;
  transform: translateZ(-130px) rotateY(-12deg) rotate(4deg);
}

.portrait-meta {
  position: absolute;
  left: 16%;
  bottom: 8%;
  z-index: 4;
  display: flex;
  gap: 8px;
}

.portrait-meta span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: rgba(245, 239, 231, 0.78);
  background: rgba(5, 5, 5, 0.38);
  border: 1px solid rgba(245, 239, 231, 0.16);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.hero-index {
  display: none;
}

.hero .hero-copy.reveal {
  opacity: 1;
  transform: none;
}

.hero-index span {
  min-height: 68px;
  display: grid;
  gap: 2px;
  align-content: center;
  padding: 13px 16px;
  color: rgba(245, 239, 231, 0.64);
  background: linear-gradient(135deg, rgba(245, 239, 231, 0.09), rgba(245, 239, 231, 0.025));
  border: 1px solid rgba(245, 239, 231, 0.1);
  backdrop-filter: blur(16px);
  font-size: 12px;
}

.hero-index strong {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  line-height: 1;
}

.reels-section .section-head::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.section-head {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) minmax(260px, 0.5fr);
  gap: 30px;
  align-items: start;
  margin-bottom: 36px;
  padding: 22px 0 26px;
  border-bottom: 1px solid rgba(201, 151, 77, 0.26);
}

.section-head h2 {
  max-width: 650px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.04;
  text-shadow: 0 16px 60px rgba(201, 151, 77, 0.14);
}

.reels-section .section-head h2,
.photos-head h2 {
  white-space: normal;
}

.section-head p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.profile-head,
.reels-section .section-head {
  grid-template-columns: 180px minmax(0, 760px);
  align-items: center;
  padding-top: 34px;
  padding-bottom: 30px;
}

.profile-head h2 {
  align-self: center;
  max-width: 760px;
}

.reels-section {
  margin-top: 0;
  padding-top: 72px;
  background:
    radial-gradient(ellipse at 50% 8%, rgba(201, 151, 77, 0.16), transparent 42%),
    radial-gradient(ellipse at 80% 70%, rgba(255, 255, 255, 0.56), transparent 48%),
    linear-gradient(180deg, #f8f2e8 0%, #efe4d4 100%);
}

.reels-section::after {
  opacity: 0.34;
}

.reels-section .section-head {
  position: relative;
  z-index: 1;
}

.reels-section .section-head::before {
  content: "";
  position: absolute;
  left: 200px;
  right: 0;
  top: -72px;
  height: 140px;
  z-index: -1;
  background: radial-gradient(ellipse at 36% 50%, rgba(200, 164, 108, 0.075), transparent 64%);
  filter: blur(14px);
}

.reels-section .section-head::after {
  inset: -150px -9vw -120px -7vw;
  background:
    radial-gradient(ellipse at 52% 18%, rgba(200, 164, 108, 0.075), transparent 40%),
    radial-gradient(ellipse at 8% 12%, rgba(245, 239, 231, 0.024), transparent 32%);
}

.reel-stage {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.85fr;
  gap: 18px;
  align-items: end;
  perspective: 1200px;
}

.reel-panel {
  position: relative;
  min-height: 540px;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(201, 151, 77, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(245, 239, 231, 0.06), rgba(4, 12, 18, 0.72)),
    rgba(3, 8, 13, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 34px 100px rgba(0, 0, 0, 0.45);
  transform: rotateY(-4deg);
  transition:
    transform 460ms ease,
    border-color 460ms ease;
}

.reel-panel::before,
.profile-card::before,
.cv-card::before,
.credits::before,
.contact-panel::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230, 190, 122, 0.92), transparent);
  pointer-events: none;
}

.reel-panel:nth-child(3) {
  transform: rotateY(5deg);
}

.reel-panel.big {
  min-height: 640px;
  transform: rotateY(0deg) translateZ(40px);
}

.reel-panel:hover {
  border-color: rgba(200, 164, 108, 0.52);
  transform: translateY(-8px) rotateY(0deg) translateZ(55px);
}

.reel-image {
  position: absolute;
  inset: 0;
}

.reel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 24%;
  filter: saturate(0.9) contrast(1.06) brightness(0.9);
  transition: transform 800ms ease;
}

.reel-panel:hover .reel-image img {
  transform: scale(1.06);
}

.reel-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 30%, rgba(2, 6, 10, 0.22) 54%, rgba(2, 6, 10, 0.94)),
    radial-gradient(ellipse at 50% 100%, rgba(201, 151, 77, 0.16), transparent 46%);
  pointer-events: none;
}

.reel-image span {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  color: rgba(245, 239, 231, 0.72);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  pointer-events: none;
}

.cv-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.cv-card,
.credits,
.contact-panel {
  position: relative;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.6), rgba(244, 233, 214, 0.76)),
    rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(173, 128, 63, 0.24);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(79, 49, 18, 0.12);
  backdrop-filter: blur(14px);
}

.cv-card {
  position: sticky;
  top: 110px;
  padding: 28px;
}

dl {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
}

dl div {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(27, 23, 19, 0.1);
}

dt {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

dd {
  margin: 5px 0 0;
  color: rgba(27, 23, 19, 0.72);
}

.credits {
  padding: 10px 0;
}

.credits-head,
.credit-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
  padding: 18px 24px;
}

.credits-head {
  color: var(--gold);
  border-bottom: 1px solid rgba(27, 23, 19, 0.12);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.credit-row {
  border-bottom: 1px solid rgba(27, 23, 19, 0.09);
  transition:
    background 220ms ease,
    transform 220ms ease;
}

.credit-row:hover {
  background: rgba(200, 164, 108, 0.08);
  transform: translateX(6px);
}

.credit-row strong {
  font-family: var(--font-serif);
  font-size: 25px;
  font-weight: 600;
}

.credit-row span {
  color: var(--muted);
}

.gallery-section {
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 4%, rgba(201, 151, 77, 0.16), transparent 40%),
    radial-gradient(ellipse at 14% 82%, rgba(255, 255, 255, 0.58), transparent 42%),
    linear-gradient(180deg, #f5ecdd, #fbf7ef);
}

.headshot-wall {
  width: min(calc(100% - 40px), 1360px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.8fr 1.08fr 0.86fr;
  grid-auto-rows: 230px;
  gap: 16px;
  perspective: 1400px;
}

.photo-plane {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(245, 239, 231, 0.12);
  background: rgba(245, 239, 231, 0.05);
  transform: translateZ(0) rotateX(0deg);
  transition:
    transform 500ms ease,
    border-color 500ms ease,
    filter 500ms ease;
}

.photo-plane.tall {
  grid-row: span 2;
}

.photo-plane.wide {
  grid-column: span 2;
}

.photo-plane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 24%;
  filter: saturate(0.78) contrast(1.08) brightness(0.84);
  transition: transform 900ms ease;
}

.photo-plane:nth-child(1) img {
  object-position: 48% 18%;
}

.photo-plane:nth-child(2) img {
  object-position: 50% 18%;
}

.photo-plane:nth-child(3) img {
  object-position: 54% 20%;
}

.photo-plane:nth-child(4) img {
  object-position: 48% 20%;
}

.photo-plane:nth-child(5) img {
  object-position: 50% 18%;
}

.photo-plane:hover {
  z-index: 2;
  border-color: rgba(200, 164, 108, 0.6);
  transform: translateZ(80px) rotateX(2deg);
}

.photo-plane:hover img {
  transform: scale(1.08);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: 42px;
}

.contact-section {
  padding-bottom: 88px;
  background:
    radial-gradient(ellipse at 82% 24%, rgba(201, 151, 77, 0.16), transparent 38%),
    linear-gradient(180deg, #fbf7ef, #efe4d4);
}

.contact-section h2 {
  max-width: 580px;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.08;
}

.contact-panel {
  display: grid;
  gap: 26px;
  padding: 34px;
  overflow: hidden;
}

.email-link {
  width: 100%;
  min-width: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.2vw, 43px);
  line-height: 1.08;
  border-bottom: 1px solid rgba(200, 164, 108, 0.5);
  overflow-wrap: anywhere;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 15px;
  border: 1px solid rgba(245, 239, 231, 0.13);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 0.8fr) auto auto;
  align-items: end;
  gap: 24px;
  padding: 28px clamp(20px, 3vw, 42px);
  color: var(--dim);
  border-top: 1px solid rgba(245, 239, 231, 0.1);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer strong {
  color: rgba(245, 239, 231, 0.82);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.site-footer p,
.site-footer small {
  margin: 0;
  color: var(--dim);
  font-size: 12px;
  line-height: 1.45;
  text-transform: none;
  letter-spacing: 0;
}

.profiles-section {
  padding-top: 96px;
  background:
    radial-gradient(ellipse at 72% 16%, rgba(201, 151, 77, 0.12), transparent 34%),
    radial-gradient(ellipse at 8% 78%, rgba(11, 56, 92, 0.2), transparent 36%),
    linear-gradient(180deg, #03080d, #071018);
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.profile-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(245, 239, 231, 0.085), rgba(3, 12, 19, 0.74)),
    rgba(3, 8, 13, 0.74);
  border: 1px solid rgba(201, 151, 77, 0.2);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    background 260ms ease;
}

.profile-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(circle at 20% 0%, rgba(201, 151, 77, 0.15), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 56%);
  opacity: 0.82;
  pointer-events: none;
}

.profile-card > * {
  position: relative;
  z-index: 1;
}

.profile-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 164, 108, 0.52);
  background:
    linear-gradient(145deg, rgba(200, 164, 108, 0.16), rgba(245, 239, 231, 0.045)),
    rgba(8, 7, 6, 0.68);
}

.profile-card span {
  color: #e5c78e;
  font-family: var(--font-serif);
  font-size: 34px;
  line-height: 1;
}

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

.profile-card a {
  width: max-content;
  color: var(--gold);
  border-bottom: 1px solid rgba(200, 164, 108, 0.52);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.primary-profile {
  box-shadow: 0 24px 80px rgba(200, 164, 108, 0.1);
}

.contact-section .contact-grid > div > p,
.cv-intro {
  margin: 12px 0 0;
  color: var(--muted);
}

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

.tag-list li {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: rgba(245, 239, 231, 0.72);
  border: 1px solid rgba(245, 239, 231, 0.12);
  background: rgba(245, 239, 231, 0.045);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compact-tags {
  margin-top: 16px;
}

.cv-cta {
  width: 100%;
  margin-top: 26px;
}

.photos-head {
  align-items: start;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 22px;
}

.gallery-filter {
  min-height: 38px;
  padding: 0 14px;
  color: rgba(245, 239, 231, 0.68);
  background: rgba(245, 239, 231, 0.035);
  border: 1px solid rgba(245, 239, 231, 0.12);
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    color 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.gallery-filter:hover,
.gallery-filter.is-active {
  color: #0d0b09;
  background: linear-gradient(135deg, #f3dca8, #b98d51);
  border-color: rgba(200, 164, 108, 0.72);
}

.gallery-grid {
  width: min(calc(100% - 40px), 1360px);
  margin: 0 auto;
  columns: 4 260px;
  column-gap: 14px;
  perspective: none;
}

.gallery-card {
  position: relative;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  margin: 0 0 14px;
  border: 1px solid rgba(201, 151, 77, 0.17);
  border-radius: 8px;
  background: rgba(3, 8, 13, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  break-inside: avoid;
  transform: translateZ(0);
  transition:
    opacity 260ms ease,
    transform 520ms ease,
    border-color 520ms ease,
    filter 520ms ease;
}

.gallery-card.tall {
  grid-row: auto;
}

.gallery-card.wide {
  grid-column: auto;
}

.gallery-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
  filter: saturate(0.82) contrast(1.06) brightness(0.88);
  transition: transform 900ms ease;
}

.gallery-card[data-category="full-body"] {
  background:
    radial-gradient(ellipse at 50% 22%, rgba(200, 164, 108, 0.08), transparent 42%),
    rgba(8, 7, 6, 0.58);
}

.gallery-card[data-category="full-body"] img {
  object-fit: contain;
  object-position: center bottom;
  padding: 0;
}

.gallery-card:nth-child(5n + 2) img {
  object-position: center center;
}

.gallery-card:nth-child(5n + 4) img {
  object-position: center center;
}

.gallery-card[data-category="full-body"] img {
  object-fit: contain;
  object-position: center bottom;
  padding: 0;
}

.gallery-card:hover {
  z-index: 2;
  border-color: rgba(200, 164, 108, 0.6);
  transform: translateY(-7px) translateZ(55px);
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-card[data-category="full-body"]:hover img {
  transform: scale(1.02);
}

.gallery-card.is-hidden {
  display: none;
}

.profiles-section,
.reels-section,
.cv-section,
.gallery-section,
.contact-section {
  color: #1b1713;
  background:
    radial-gradient(ellipse at 82% 10%, rgba(213, 169, 96, 0.16), transparent 32%),
    radial-gradient(ellipse at 14% 88%, rgba(255, 255, 255, 0.62), transparent 40%),
    linear-gradient(180deg, #fbf7ef 0%, #efe4d4 100%);
}

.reel-stage {
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.78fr);
  grid-template-rows: repeat(2, minmax(250px, 1fr));
  align-items: stretch;
  perspective: none;
}

.reel-panel,
.reel-panel:nth-child(3),
.reel-panel.big {
  min-height: 0;
  transform: none;
  background:
    linear-gradient(145deg, rgba(15, 24, 34, 0.88), rgba(8, 7, 6, 0.92)),
    #050505;
}

.reel-panel.big {
  grid-row: 1 / 3;
}

.reel-panel:hover,
.reel-panel:nth-child(3):hover,
.reel-panel.big:hover {
  transform: translateY(-6px);
}

.reel-image video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #050505;
}

.profile-card,
.cv-card,
.credits,
.contact-panel {
  color: #1b1713;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.66), rgba(244, 233, 214, 0.72)),
    rgba(255, 255, 255, 0.44);
  border-color: rgba(173, 128, 63, 0.24);
  box-shadow: 0 28px 80px rgba(79, 49, 18, 0.12);
}

.profile-card:hover {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(238, 220, 188, 0.8)),
    rgba(255, 255, 255, 0.58);
}

.profile-card span {
  color: #9b6b2f;
}

dd,
.credit-row span {
  color: rgba(27, 23, 19, 0.68);
}

dl div,
.credits-head,
.credit-row {
  border-color: rgba(27, 23, 19, 0.11);
}

.tag-list li,
.gallery-filter,
.contact-links a {
  color: rgba(27, 23, 19, 0.66);
  border-color: rgba(173, 128, 63, 0.2);
  background: rgba(255, 255, 255, 0.36);
}

.gallery-card,
.gallery-card[data-category="full-body"] {
  background:
    radial-gradient(ellipse at 50% 22%, rgba(200, 164, 108, 0.1), transparent 42%),
    rgba(255, 255, 255, 0.46);
  box-shadow: 0 24px 70px rgba(79, 49, 18, 0.13);
}

.gallery-card img {
  filter: saturate(0.96) contrast(1.02) brightness(1);
}

.site-footer {
  color: rgba(27, 23, 19, 0.56);
  background: #efe4d4;
  border-top-color: rgba(173, 128, 63, 0.2);
}

.site-footer strong {
  color: #1b1713;
}

.site-footer p,
.site-footer small {
  color: rgba(27, 23, 19, 0.56);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 800ms ease,
    transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slow-orbit {
  from {
    transform: rotateX(64deg) rotateZ(0deg);
  }

  to {
    transform: rotateX(64deg) rotateZ(360deg);
  }
}

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

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .social-links {
    display: none;
  }

  .hero-grid,
  .section-head,
  .cv-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 40px;
  }

  .portrait-world {
    min-height: 560px;
  }

  .hero-index,
  .reel-stage {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .reel-panel,
  .reel-panel.big,
  .reel-panel:nth-child(3) {
    min-height: 520px;
    transform: none;
  }

  .cv-card {
    position: relative;
    top: auto;
  }

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

  .photo-plane.wide {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

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

  .header-actions a {
    display: none;
  }

  .hero {
    min-height: auto;
    display: block;
    padding: 0 0 66px;
  }

  .hero-media {
    position: relative;
    align-items: start;
    padding-top: 66px;
  }

  .hero-media video,
  .hero-media img {
    height: auto;
    max-height: none;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    object-position: center top;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, transparent 0%, rgba(2, 6, 10, 0.18) 28%, rgba(2, 6, 10, 0.94) 47%, #02060a 100%),
      linear-gradient(90deg, rgba(2, 6, 10, 0.18), transparent 72%);
  }

  .hero-grid {
    min-height: auto;
    padding-top: 24px;
  }

  h1 {
    font-size: 68px;
  }

  h2 {
    font-size: 46px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .portrait-world {
    min-height: 480px;
  }

  .portrait-main {
    width: 88%;
    height: 78%;
  }

  .portrait-echo {
    width: 190px;
    height: 280px;
  }

  .hero-index {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 78px 0;
  }

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

  .credits-head,
  .credit-row {
    grid-template-columns: 1fr;
  }

  .headshot-wall {
    grid-template-columns: 1fr;
    grid-auto-rows: 420px;
  }

  .photo-plane.tall,
  .photo-plane.wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 980px) {
  .mobile-nav.is-open {
    grid-column: 1 / -1;
    display: grid;
    gap: 12px;
    padding: 14px 0 4px;
    border-top: 1px solid rgba(245, 239, 231, 0.12);
  }

  .mobile-nav a {
    min-height: 40px;
    display: flex;
    align-items: center;
    color: rgba(245, 239, 231, 0.78);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

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

  .profile-grid {
    grid-template-columns: 1fr;
  }

  .reels-section .section-head h2,
  .photos-head h2 {
    white-space: normal;
  }

  .gallery-grid {
    columns: 3 220px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 640px) {
  .brand {
    max-width: 190px;
  }

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

  h1 {
    max-width: 100%;
    overflow-wrap: normal;
  }

  .hero-text {
    width: 100%;
    max-width: min(330px, calc(100vw - 48px));
    font-size: 15px;
    overflow-wrap: anywhere;
  }

  .reels-section .section-head h2,
  .photos-head h2 {
    font-size: clamp(22px, 6vw, 27px);
    white-space: normal;
  }

  .hero-index {
    grid-template-columns: 1fr;
  }

  .profile-card {
    min-height: 220px;
    padding: 22px;
  }

  .profile-card span {
    font-size: 30px;
  }

  .gallery-grid {
    width: min(calc(100% - 28px), var(--max));
    columns: 1;
  }

  .gallery-card,
  .gallery-card.tall,
  .gallery-card.wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  .filter-bar {
    width: min(calc(100% - 28px), var(--max));
  }
}
