:root {
  color-scheme: dark;
  --bg: #09080b;
  --surface: #121116;
  --surface-soft: #1c1a20;
  --text: #f7f6f8;
  --text-muted: #a9a5ae;
  --accent: #e8b14d;
  --accent-soft: #6b583e;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius: 28px;
  font-family: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top left, rgba(232, 177, 77, 0.15), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 30%),
    var(--bg);
  color: var(--text);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: rgba(9, 8, 11, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
}

.brand {
  position: absolute;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav {
  margin: 0 auto;
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.brand-mark {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), #c48f45);
  color: var(--bg);
  font-size: 1.4rem;
  font-weight: 800;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.site-header h1,
.section-header h2,
.hero h2,
.project-card h3,
.contact-copy p {
  margin: 0;
}

.site-header h1 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  border: none;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
}

.site-nav {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.site-nav a {
  color: var(--text-muted);
  font-family: 'Playfair Display', serif;
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 7rem 2rem 3rem;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 8, 11, 0.8) 0%, rgba(9, 8, 11, 0.35) 55%, rgba(9, 8, 11, 0.15) 100%);
  z-index: 1;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
  color: var(--text);
  text-align: right;
  margin-left: auto;
  padding-right: 0.5rem;
  padding-bottom: 1rem;
  transform: translateX(-45%);
}

.hero-copy h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.8rem, 6.2vw, 6.4rem);
  line-height: 0.95;
  margin: 0 0 1rem;
  white-space: nowrap;
}

.hero-copy .eyebrow {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  letter-spacing: 0.24em;
}

.hero-title {
  margin: 0;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247, 246, 248, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), #e7d39d);
  color: #09080b;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}


.section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.download-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.8rem;
  margin: 0 auto 1.5rem;
  max-width: 760px;
}

.download-links a {
  color: #09080b;
  background: linear-gradient(135deg, #e8b14d, #f0cb68);
  padding: 1rem 1.8rem;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(232, 177, 77, 0.18);
}

.download-links a:hover,
.download-links a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(232, 177, 77, 0.24);
}

.section-header {
  display: grid;
  gap: 1rem;
  max-width: 34rem;
  margin-bottom: 2.4rem;
}

.about .section-header {
  margin-bottom: 1rem;
  transform: translateY(80%);
}

.section-header h2 {
  font-size: clamp(2.2rem, 2.2vw, 3rem);
  line-height: 1.08;
}

.projects-header {
  max-width: 100%;
}

.projects-intro {
  font-size: clamp(0.74rem, 0.82vw, 0.9rem);
  line-height: 1.35;
  max-width: none;
}

.ship-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.12em;
  color: #63a8ff;
  letter-spacing: 0.02em;
}

.frog-toad-title {
  color: #74c365;
}

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

.projects-media-item {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.projects-media-item img,
.projects-media-item video {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.credits-title {
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.03em;
}

.about-grid,
.credits-grid,
.project-cards,
.gallery-grid,
.contact-block {
  display: grid;
  gap: 1.75rem;
}

.about-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 2rem;
}

.about-copy {
  display: flex;
  align-items: flex-start;
  transform: translateY(30%);
}

.about-copy p {
  font-family: 'Playfair Display', serif;
  font-size: 1.22rem;
  line-height: 2.1;
  color: var(--text);
  margin: 0;
  max-width: 42rem;
}

.ball-state-highlight {
  color: #e34a4a;
  font-size: 1.12em;
  font-weight: 700;
}

.dueling-highlight {
  color: #e34a4a;
  font-weight: 700;
}

.about-image-card {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 0%;
  aspect-ratio: 4 / 5;
}

.about-highlights {
  display: grid;
  gap: 1rem;
}

.about-highlights div {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 1.35rem;
}

.about-highlights strong {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--text);
}

.about-highlights span {
  color: var(--text-muted);
  line-height: 1.8;
}

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

.credits-grid article {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 2rem;
}

.credits-grid h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.credits-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
}

.credits-grid li {
  display: grid;
  grid-template-columns: minmax(220px, 1.6fr) minmax(180px, 1.2fr) minmax(180px, 1.2fr);
  gap: 1rem;
  align-items: baseline;
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.8;
}

.credit-show,
.credit-role,
.credit-theatre {
  min-width: 0;
}

.credit-show {
  font-weight: 600;
}

.role-highlight {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

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

.project-card {
  padding: 2rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.project-label {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.project-card h3 {
  margin-bottom: 0.9rem;
  font-size: 1.4rem;
}

.project-card p {
  color: var(--text-muted);
  line-height: 1.8;
}

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

.gallery-grid img {
  width: 100%;
  border-radius: 24px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.contact-block {
  grid-template-columns: 1fr;
}

.contact-email-inline {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
}

.contact-copy {
  display: grid;
  gap: 1.5rem;
}

.contact-meta {
  display: grid;
  gap: 1rem;
  justify-items: start;
}

.contact-meta div {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 0.55rem 0.8rem;
  width: fit-content;
}

.contact-meta strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.82rem;
  color: var(--text);
}

.contact-meta span {
  display: block;
  max-width: 15ch;
  overflow-wrap: anywhere;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-form label {
  display: grid;
  gap: 0.65rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 1rem 1.1rem;
  border-radius: 18px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(232, 177, 77, 0.55);
  box-shadow: 0 0 0 4px rgba(232, 177, 77, 0.12);
}

.site-footer {
  padding: 2rem;
  text-align: center;
  color: var(--text-muted);
}

.media-page {
  padding: 2rem 1.25rem 3rem;
}

.media-shell {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.media-header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.2rem 0 0.2rem;
}

.media-title {
  display: flex;
  justify-content: center;
  width: 100%;
}

.back-link {
  position: absolute;
  left: 0;
  top: 0rem;
  display: inline-flex;
  align-items: center;
  gap: 0rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.media-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.media-nav a {
  color: var(--text-muted);
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  transition: color 0.2s ease;
}

.media-nav a:hover,
.media-nav a:focus-visible {
  color: var(--text);
}

.media-header h1 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  max-width: 700px;
}

.soft-title {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.media-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.media-hero-copy {
  display: grid;
  gap: 1rem;
  align-content: center;
}

.media-hero-copy h2 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1.12;
}

.media-hero-copy p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 620px;
}

.media-hero-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 24px;
}

.reviews-flow {
  display: grid;
  gap: 1.1rem;
  padding-top: 0.5rem;
}

.review-box {
  width: min(88%, 980px);
  padding: 1.3rem 1.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.review-box:nth-child(even) {
  justify-self: end;
}

.review-source {
  margin: 0 0 0.55rem;
  color: var(--accent);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.review-title {
  margin: 0 0 0.55rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: #ffffff;
}

.review-featured {
  display: grid;
  grid-template-columns: minmax(140px, 230px) 1fr;
  gap: 1rem;
  align-items: start;
}

.review-featured--flip {
  grid-template-columns: 1fr;
}

.review-photo--landscape {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
  margin: 0 0 0.5rem;
  display: block;
  grid-template-columns: 1fr minmax(140px, 230px);
}

.review-featured-copy {
  display: grid;
  gap: 0.55rem;
}

.review-photo {
  width: 100%;
  max-width: 230px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 16px;
  margin: 0;
  display: block;
}

.review-photo-full {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  margin-top: 0.85rem;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.review-box-with-photo-right {
  display: grid;
  grid-template-columns: 1fr minmax(180px, 420px);
  gap: 1rem;
  align-items: start;
}

.review-box-with-photo-right .review-photo-full {
  margin-top: 0;
}

.review-text {
  margin: 0;
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  line-height: 1.65;
}

.word-highlight-purple {
  color: #b57bee;
  font-weight: 700;
  font-size: 1.2em;
}

.word-highlight-green {
  color: #59b86a;
  font-weight: 700;
  font-size: 1.2em;
}

.word-highlight-pink {
  color: #ff6fa8;
  font-weight: 700;
  font-size: 1.2em;
}

.word-highlight-red {
  color: #e14a4a;
  font-weight: 700;
  font-size: 1.2em;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 1.8rem;
  align-items: stretch;
}

.media-card {
  min-height: 340px;
}

.media-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.media-card:nth-child(2),
.media-card:nth-child(3),
.media-card:nth-child(5) {
  grid-column: span 1;
  grid-row: span 1;
}

.media-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.media-card {
  position: relative;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: rgba(255,255,255,0.03);
  padding: 0.35rem;
}

.media-hover-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: rgba(0, 0, 0, 0.55);
  color: white;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  text-align: center;
  padding: 1rem;
}

.media-caption-title {
  font-size: 1rem;
}

.media-caption-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: none;
  opacity: 0.9;
}

.media-card:hover .media-hover-overlay {
  opacity: 1;
}

.media-card-body {
  padding: 1.2rem 1.2rem 1.4rem;
  display: grid;
  gap: 0.6rem;
}

.media-pill {
  display: inline-flex;
  width: fit-content;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(232,177,77,0.16);
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
}

.media-card-body h3 {
  margin: 0;
  font-size: 1.1rem;
}

.media-card-body p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.96rem;
}

.videos-section {
  padding: 3rem 0 2rem;
  text-align: center;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 1000;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-content {
  display: grid;
  gap: 1rem;
  justify-items: center;
  max-width: min(100%, 1100px);
}

.lightbox-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #f0cb68);
  color: #09080b;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 12px 30px rgba(232, 177, 77, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lightbox-download:hover,
.lightbox-download:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(232, 177, 77, 0.24);
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  border: none;
  background: transparent;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.videos-title {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.video-item {
  display: grid;
  gap: 0.8rem;
}

.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.video-title {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  text-align: center;
  letter-spacing: 0.05em;
}

.gallery-section {
  padding: 3rem 0 2rem;
  text-align: center;
}

.gallery-title {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

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

.headshots-page {
  padding: 2rem 1.25rem 3rem;
}

.headshots-shell {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.headshots-hero {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.headshots-hero h2 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.08;
}

.headshots-hero p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 70ch;
}

.headshots-grid {
  column-count: 2;
  column-gap: 1.5rem;
}

.headshot-card {
  break-inside: avoid;
  display: grid;
  gap: 1rem;
  margin: 0 0 1.5rem;
  padding: 1rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.headshot-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 22px;
  cursor: zoom-in;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.headshot-card img:hover,
.headshot-card img:focus-visible {
  transform: scale(1.01);
}

.headshot-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #f0cb68);
  color: #09080b;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.headshot-download:hover,
.headshot-download:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(232, 177, 77, 0.24);
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .credits-grid,
  .project-cards,
  .projects-media,
  .gallery-grid,
  .contact-block,
  .media-hero {
    grid-template-columns: 1fr;
  }

  .review-box {
    width: 100%;
    justify-self: stretch;
  }

  .review-featured {
    grid-template-columns: 1fr;
  }

  .review-box-with-photo-right {
    grid-template-columns: 1fr;
  }

  .review-photo {
    max-width: 100%;
  }

  .headshots-grid {
    column-count: 1;
  }

  .credits-grid li {
    grid-template-columns: 1fr;
    gap: 0.15rem;
    line-height: 1.55;
  }
}

@media (max-width: 720px) {
  .site-header {
    flex-wrap: wrap;
    padding: 1.2rem 1.2rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    inset: 5rem 1.2rem auto auto;
    width: calc(100% - 2.4rem);
    padding: 1.5rem;
    flex-direction: column;
    border-radius: 24px;
    background: rgba(18, 17, 21, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
}
