:root {
  color-scheme: dark;
  --bg: #0b0908;
  --bg2: #14100d;
  --panel: #17120f;
  --text: #f3eee6;
  --muted: #aa9d8d;
  --line: rgba(243, 238, 230, 0.13);
  --soft: rgba(197, 128, 74, 0.11);
  --accent: #c5804a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(197,128,74,.18), transparent 28vw),
    radial-gradient(circle at 80% 18%, rgba(79,124,151,.12), transparent 30vw),
    linear-gradient(180deg, var(--bg), #080706 72%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.01em;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}
body.no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 30px;
  background: rgba(11,9,8,.58);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(243,238,230,.06);
}
.brand, nav a {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(243,238,230,.88);
}
.brand::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 99px;
  background: var(--accent);
  vertical-align: 1px;
}
nav { display: flex; gap: 20px; }
nav a { color: var(--muted); }
nav a:hover, .brand:hover { color: var(--text); }

main { width: 100%; }
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(280px, .68fr) minmax(340px, 1.32fr);
  gap: 6vw;
  align-items: center;
  padding: 104px 7vw 70px;
}
.hero-copy { max-width: 430px; position: relative; z-index: 1; }
.kicker, .section-head p {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: .17em;
  text-transform: uppercase;
}
h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 7vw, 96px);
  line-height: .88;
  font-weight: 400;
  letter-spacing: -0.055em;
}
.hero-copy > p:not(.kicker) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
}
.hero-copy::after {
  content: "Arizona / Los Angeles";
  display: block;
  margin-top: 42px;
  color: rgba(243,238,230,.32);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 13px;
}
.hero-links { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.hero-links a, .resume-button {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-size: 12px;
  background: rgba(255,255,255,.02);
}
.hero-links a:first-child, .resume-button:hover { border-color: rgba(197,128,74,.48); background: var(--soft); }
.hero-links a:hover { background: var(--soft); border-color: rgba(197,128,74,.44); }
.hero-photo {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
  position: relative;
}
.hero-photo::before {
  content: "";
  position: absolute;
  inset: -18px 22px 18px -18px;
  border: 1px solid rgba(197,128,74,.26);
  border-radius: 26px;
  z-index: -1;
}
.hero-photo img {
  max-height: 78svh;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0,0,0,.42);
}

.section {
  padding: 92px 7vw;
  border-top: 1px solid var(--line);
  position: relative;
}
.section:nth-of-type(even) { background: rgba(255,255,255,.018); }
.section-head {
  display: grid;
  grid-template-columns: minmax(140px, 22vw) 1fr;
  align-items: end;
  gap: 24px;
  margin-bottom: 34px;
}
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 4vw, 50px);
  line-height: .98;
  font-weight: 400;
  letter-spacing: -0.045em;
}
.video-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  background: #000;
  border: 1px solid var(--line);
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.about-grid { display: grid; grid-template-columns: 1fr; }
.about-copy {
  max-width: 620px;
  margin-left: min(22vw + 24px, 360px);
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}
.about-copy p { margin: 0 0 14px; }
.about-copy p:first-child { color: var(--text); }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
}
.photo-card {
  grid-column: span 3;
  border: 0;
  padding: 0;
  background: var(--panel);
  cursor: zoom-in;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(243,238,230,.08);
}
.photo-card:nth-child(1), .photo-card:nth-child(8) { grid-column: span 4; }
.photo-card:nth-child(5), .photo-card:nth-child(6) { grid-column: span 5; }
.photo-card:nth-child(7) { grid-column: span 2; }
.photo-card img {
  height: 31vw;
  min-height: 250px;
  max-height: 520px;
  object-fit: cover;
  filter: saturate(.82) contrast(1.03);
  transition: transform .45s ease, filter .45s ease;
}
.photo-card:hover img { transform: scale(1.03); filter: saturate(1) contrast(1.06); }
.shallow-thumb img { object-position: 58% 32%; }

.resume-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(197,128,74,.08), rgba(255,255,255,.025) 34%, rgba(79,124,151,.05));
}
h3 {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text);
}
ul { list-style: none; padding: 0; margin: 0; }
li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}
li em { color: var(--muted); font-style: normal; }
.resume-card p { color: var(--muted); margin: 0 0 12px; max-width: 500px; }
.resume-button { margin-top: 10px; }

.contact-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.contact-links a:not(.imdb-logo) {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -0.045em;
}
.imdb-logo {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 9px;
  border-radius: 5px;
  background: #f5c518;
  color: #000;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.04em;
}
footer {
  padding: 26px 7vw 42px;
  color: var(--muted);
  font-size: 12px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.92);
  padding: 54px 72px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  width: auto;
  max-width: 92vw;
  max-height: 88svh;
  border-radius: 10px;
  object-fit: contain;
}
.lightbox button {
  position: absolute;
  border: 0;
  color: var(--text);
  background: rgba(255,255,255,.08);
  cursor: pointer;
}
.lightbox-close {
  top: 20px;
  right: 24px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  font-size: 26px;
  line-height: 1;
}
.lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 64px;
  border-radius: 999px;
  font-size: 42px;
  line-height: 1;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox button:hover { background: rgba(255,255,255,.16); }

@media (max-width: 860px) {
  .site-header { padding: 16px 18px; }
  nav { gap: 12px; }
  nav a { font-size: 10px; }
  .hero { grid-template-columns: 1fr; padding: 86px 18px 42px; gap: 34px; }
  .hero-photo { order: -1; }
  .hero-photo::before { inset: -10px 14px 10px -10px; }
  .hero-photo img { max-height: none; height: 62svh; width: 100%; object-position: center top; }
  .section { padding: 64px 18px; }
  .section-head { grid-template-columns: 1fr; gap: 6px; }
  .about-copy { margin-left: 0; font-size: 16px; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .photo-card, .photo-card:nth-child(1), .photo-card:nth-child(5), .photo-card:nth-child(6), .photo-card:nth-child(7), .photo-card:nth-child(8) { grid-column: span 1; }
  .photo-card img { height: 62vw; min-height: 210px; }
  .resume-card { grid-template-columns: 1fr; padding: 20px; gap: 28px; }
  .contact-links { align-items: flex-start; flex-direction: column; }
  .lightbox { padding: 48px 14px; }
  .lightbox-arrow { width: 38px; height: 54px; font-size: 34px; background: rgba(0,0,0,.4); }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

@media (max-width: 520px) {
  nav a:nth-child(2), nav a:nth-child(3) { display: none; }
  h1 { font-size: 50px; }
}


/* v7 custom refinements */
.hero-photo img {
  width: 100%;
  height: min(74svh, 780px);
  object-position: center 23%;
}

.editorial-grid {
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  gap: clamp(8px, 1vw, 14px);
}
.editorial-grid .photo-card {
  min-height: 260px;
  background: #100d0b;
}
.editorial-grid .photo-card img {
  height: 100%;
  min-height: 100%;
  max-height: none;
}
.editorial-grid .feature { grid-column: span 7; grid-row: span 2; aspect-ratio: 16 / 10; }
.editorial-grid .portrait { grid-column: span 3; aspect-ratio: 4 / 5; }
.editorial-grid .portrait-main { grid-column: span 5; aspect-ratio: 4 / 5; }
.editorial-grid .wide { grid-column: span 4; aspect-ratio: 16 / 10; }
.editorial-grid .warm { grid-column: span 5; aspect-ratio: 5 / 4; }
.editorial-grid .feature img { object-position: 62% 35%; }
.editorial-grid .portrait-main img { object-position: center 18%; }
.editorial-grid .portrait:nth-of-type(4) img { object-position: center 20%; }
.editorial-grid .wide:nth-of-type(3) img { object-position: 54% center; }
.editorial-grid .wide:nth-of-type(5) img { object-position: 64% 35%; }
.editorial-grid .wide:nth-of-type(7) img { object-position: center center; }
.editorial-grid .warm img { object-position: center center; }

@media (max-width: 860px) {
  .hero-photo img { height: 60svh; object-position: center 18%; }
  .editorial-grid { grid-template-columns: repeat(2, 1fr); }
  .editorial-grid .photo-card,
  .editorial-grid .feature,
  .editorial-grid .portrait,
  .editorial-grid .portrait-main,
  .editorial-grid .wide,
  .editorial-grid .warm { grid-column: span 1; aspect-ratio: 4 / 5; }
  .editorial-grid .feature, .editorial-grid .wide { aspect-ratio: 16 / 11; }
}
