* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black:      #0a0a0a;
  --white:      #f5f2ed;
  --gold:       #c8a96e;
  --gold-light: #e8d5a8;
  --mid:        #1a1a1a;
  --muted:      #666;
  --serif:      Georgia, 'Times New Roman', serif;
  --sans:       'Helvetica Neue', Helvetica, Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.6;
}

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

/* ── Nav ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 3rem;
  border-bottom: 1px solid rgba(200,169,110,0.15);
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(8px);
}

.nav-name {
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links { display: flex; gap: 2rem; list-style: none; }

.nav-links a {
  font-family: var(--sans);
  color: rgba(245,242,237,0.6);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

/* ── Section Label ── */
.section-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::after {
  content: '';
  flex: 1;
  max-width: 3rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

/* ── Hero — Home ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 3rem 5rem;
  position: relative;
  border-bottom: 1px solid rgba(200,169,110,0.2);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #0f0f0f 40%, #111008 100%);
}

.hero-accent {
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(to left, rgba(200,169,110,0.04) 0%, transparent 100%);
  pointer-events: none;
}

.hero-line {
  position: absolute;
  top: 30%;
  left: 0;
  width: 3rem;
  height: 1px;
  background: var(--gold);
}

.hero-content { position: relative; max-width: 900px; }

.hero-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.05;
  font-weight: normal;
  color: var(--white);
  margin-bottom: 2rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1rem;
  color: rgba(245,242,237,0.55);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 3rem;
}

.hero-cta {
  font-family: var(--sans);
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.75rem 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.hero-cta:hover {
  background: var(--gold);
  color: var(--black);
}

/* ── Hero — Subpage ── */
.hero-sub-page {
  padding: 10rem 3rem 5rem;
  border-bottom: 1px solid rgba(200,169,110,0.2);
  position: relative;
}

.hero-sub-page .hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #0f0f0f 40%, #111008 100%);
}

.hero-sub-page .hero-accent {
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(to left, rgba(200,169,110,0.04) 0%, transparent 100%);
  pointer-events: none;
}

.hero-sub-page .hero-content { position: relative; max-width: 800px; }

/* ── Sections ── */
section { padding: 6rem 3rem; }

/* ── Credentials ── */
.credentials { border-bottom: 1px solid rgba(200,169,110,0.12); }

.cred-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.cred-item {
  padding: 3rem;
  border-right: 1px solid rgba(200,169,110,0.12);
  border-bottom: 1px solid rgba(200,169,110,0.12);
}

.cred-item:nth-child(even) { border-right: none; }
.cred-item:nth-last-child(-n+2) { border-bottom: none; }

.cred-show {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cred-role {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.cred-desc {
  font-size: 0.9rem;
  color: rgba(245,242,237,0.5);
  line-height: 1.7;
}

/* ── About ── */
.about { border-bottom: 1px solid rgba(200,169,110,0.12); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}

.about-left h2 {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: normal;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 2rem;
}

.about-left h2 em {
  color: var(--gold-light);
  font-style: italic;
}

.awards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.award {
  font-family: var(--sans);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: rgba(245,242,237,0.5);
}

.award-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.about-right p {
  font-size: 1rem;
  color: rgba(245,242,237,0.65);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.about-right p:first-child {
  font-size: 1.15rem;
  color: rgba(245,242,237,0.85);
}

/* ── Video Grid ── */
.videos { border-bottom: 1px solid rgba(200,169,110,0.12); }

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 3.5rem 3rem;
}

.video-item {}

.video-embed {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--mid);
  border: 1px solid rgba(200,169,110,0.12);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-show {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.video-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: normal;
  color: var(--white);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.video-desc {
  font-size: 0.875rem;
  color: rgba(245,242,237,0.5);
  line-height: 1.7;
}

/* ── Contact ── */
.contact { text-align: center; }

.contact h2 {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: normal;
  color: var(--white);
  margin-bottom: 1rem;
}

.contact p {
  color: rgba(245,242,237,0.45);
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-link {
  font-family: var(--sans);
  display: inline-block;
  border: 1px solid rgba(200,169,110,0.4);
  color: var(--gold);
  padding: 0.75rem 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.contact-link:hover {
  background: var(--gold);
  color: var(--black);
}

/* ── Footer ── */
footer {
  border-top: 1px solid rgba(200,169,110,0.12);
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer span {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: rgba(245,242,237,0.25);
  letter-spacing: 0.05em;
}

/* ── Work Panels (homepage) ── */
.work-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(200,169,110,0.12);
  border-bottom: 1px solid rgba(200,169,110,0.12);
}

.work-panel {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  display: block;
  border-right: 1px solid rgba(200,169,110,0.12);
  background: #0f0f0e;
}

.work-panel:last-child { border-right: none; }

.work-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.work-panel:hover img { transform: scale(1.04); }

.work-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.1) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem 3rem;
  transition: background 0.3s;
}

.work-panel:hover .work-panel-overlay {
  background: linear-gradient(to top, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.2) 55%, transparent 100%);
}

.work-panel-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.work-panel-title {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: normal;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.work-panel-cta {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s, transform 0.25s;
}

.work-panel:hover .work-panel-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ── Headshot ── */
.headshot {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(200,169,110,0.12);
}

/* ── Show Logo ── */
.show-logo {
  display: block;
  height: 52px;
  max-width: 200px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 1.75rem;
  opacity: 0.88;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  nav { padding: 1.25rem 1.5rem; }
  .nav-links { gap: 1.25rem; }

  section { padding: 4rem 1.5rem; }

  .hero { padding: 0 1.5rem 4rem; }
  .hero-sub-page { padding: 8rem 1.5rem 4rem; }

  .cred-grid { grid-template-columns: 1fr; }
  .cred-item { border-right: none; }
  .cred-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(200,169,110,0.12); }
  .cred-item:last-child { border-bottom: none; }

  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-left h2 { font-size: 2rem; }

  .video-grid { grid-template-columns: 1fr; gap: 3rem; }

  footer { flex-direction: column; gap: 0.5rem; text-align: center; }
}
