*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
  background: #fff;
}

a {
  color: #000;
}

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

h1.page-title,
h2,
h3 {
  font-family: "Oranienbaum", Georgia, "Times New Roman", serif;
}

/* Header */
.site-header {
  padding: 1.5rem 1.25rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.wordmark {
  margin: 0;
  padding: 0.5rem 0 1.25rem;
  font-family: "Oswald", sans-serif;
  font-size: 4.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

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

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
}

.site-nav a {
  text-decoration: none;
  font-size: 1.2rem;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-bottom-color: #000;
}

/* Main */
main {
  flex: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.page-title {
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
}

/* Home */
.home-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
}

.home-hero img {
  max-height: 75vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* News */
.news-content {
  max-width: 42rem;
  margin: 0 auto;
}

.news-content time {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.news-content h2 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.news-content p {
  margin: 0 0 1rem;
}

/* HS / R split */
.hsr-split {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  justify-content: center;
}

.hsr-panel {
  flex: 1 1 280px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hsr-visual {
  width: 100%;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hsr-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hsr-visual--resume img,
.hsr-visual--headshot img {
  cursor: zoom-in;
}

.hsr-visual--resume img {
  object-fit: contain;
  background: #fafafa;
  border: 1px solid #ccc;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.hsr-visual a {
  display: block;
  width: 100%;
  height: 100%;
}

.hsr-visual--headshot img {
  object-fit: cover;
}

.btn-download {
  margin-top: 1rem;
  display: inline-block;
  padding: 0.55rem 1.25rem;
  font-family: inherit;
  font-size: 0.9rem;
  color: #000;
  background: #fff;
  border: 1px solid #000;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.btn-download:hover {
  background: #000;
  color: #fff;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.85);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: min(95vw, 900px);
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 8px 32px rgba(0, 0,  0, 0.4);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

/* Media */
.media-section {
  margin-bottom: 3rem;
}

.media-section h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 1.25rem;
  text-align: center;
}

.production-collage {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.production-collage .lightbox-trigger {
  display: block;
  flex: 0 0 140px;
  width: 140px;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f5f5f5;
  border: none;
  padding: 0;
  cursor: zoom-in;
  font: inherit;
  color: inherit;
  text-align: inherit;
}

.production-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s;
}

.production-collage .lightbox-trigger:hover img {
  transform: scale(1.03);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #111;
}

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

/* Contact */
.contact-split {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.contact-photo {
  flex: 1 1 280px;
  max-width: 480px;
}

.contact-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.contact-info {
  flex: 1 1 240px;
  max-width: 360px;
  text-align: center;
}

.contact-info h2 {
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0 0 1rem;
}

.contact-email {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.contact-email a {
  text-decoration: underline;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  color: #000;
  transition: opacity 0.15s;
}

.social-links a:hover {
  opacity: 0.6;
}

.social-links svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: currentColor;
}

/* Mobile */
@media (max-width: 640px) {
  .wordmark {
    font-size: 2rem;
    padding: 0.35rem 0 1rem;
  }

  .site-nav {
    gap: 0.5rem 1rem;
  }

  .site-nav a {
    font-size: 0.95rem;
  }

  .hsr-visual {
    height: 320px;
  }

  .hsr-panel--headshot {
    order: 2;
  }

  .hsr-panel--resume {
    order: 1;
  }

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

  .contact-split {
    flex-direction: column-reverse;
  }
}

@media (min-width: 641px) {
  .hsr-panel--resume {
    order: 1;
  }

  .hsr-panel--headshot {
    order: 2;
  }
}
