:root {
  --bg: #f7f4ef;
  --ink: #1d2528;
  --muted: #5d6669;
  --card: #fffdf9;
  --accent: #24384a;
  --line: #ddd6ca;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 18px 5vw;
  background: rgba(247,244,239,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.logo {
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  text-decoration: none;
}
nav { display: flex; flex-wrap: wrap; gap: 18px; }
nav a {
  font-family: Arial, sans-serif;
  font-size: 14px;
  text-decoration: none;
  color: var(--muted);
}
nav a:hover { color: var(--ink); }

.hero {
  min-height: calc(100vh - 70px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5vw;
  padding: 56px 5vw;
}
.hero-text h1 {
  font-size: clamp(54px, 8vw, 112px);
  line-height: .9;
  margin: 0 0 18px;
}
.hero-text h2 {
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.1;
  margin: 0 0 18px;
  color: var(--accent);
}
.eyebrow {
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}
.location { color: var(--muted); font-size: 18px; }
.hero-image img {
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(0,0,0,.18);
}

.buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.button {
  display: inline-block;
  font-family: Arial, sans-serif;
  text-decoration: none;
  padding: 12px 18px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-weight: 700;
  background: transparent;
}
.button.primary {
  background: var(--accent);
  color: white;
}
.button:hover { transform: translateY(-1px); }

.section {
  padding: 72px 5vw;
  border-top: 1px solid var(--line);
}
.section-heading {
  max-width: 900px;
  margin-bottom: 30px;
}
.section-heading.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  margin: 0;
}
.two-col {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 6vw;
}
.two-col p, .resume p, .contact p {
  font-size: 18px;
}
.reel-section { text-align: center; }
.video-wrap {
  position: relative;
  width: 100%;
  max-width: 980px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,.16);
  margin: 0 auto;
}
.video-wrap iframe {
  width: 100%;
  height: 100%;
}
.reel-buttons, .resume-buttons { justify-content: center; }

.credits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
}
.card h3 {
  margin-top: 0;
  font-size: 24px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 20px;
}

.contact {
  text-align: center;
  padding-top: 82px;
  padding-bottom: 92px;
}
.contact h2 {
  font-size: clamp(34px, 5vw, 58px);
}
footer {
  padding: 28px 5vw;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-family: Arial, sans-serif;
  font-size: 14px;
}

@media (max-width: 850px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero, .two-col {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
  }
  .credits-grid, .gallery {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1000px) {
  .gallery { grid-template-columns: repeat(4, 1fr); }
}
