:root {
  --cream: #F5F0E8;
  --ivory: #FAF7F2;
  --gold: #8B6E1E;
  --gold-light: #9A7A2A;
  --gold-pale: #E8D8B0;
  --burgundy: #6B1E2E;
  --burgundy-deep: #4A1220;
  --charcoal: #2A2420;
  --warm-grey: #2E2926;
  --film-grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--ivory);
  color: var(--charcoal);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: var(--film-grain);
  background-repeat: repeat;
  background-size: 256px 256px;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}
@media (max-width: 1024px) {
  body > * {
    max-width: 100%;
    overflow-x: hidden;
  }
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(42, 36, 32, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 150, 62, 0.3);
  transition: padding 0.4s ease;
}

nav.scrolled {
  padding: 14px 60px;
  border-bottom: 1px solid rgba(184, 150, 62, 0.4);
}

.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: #F5F0E8;
  text-decoration: none;
  text-transform: uppercase;
  margin-right: 60px;
}

.nav-links {
  display: flex;
  gap: 44px;
  list-style: none;
}

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #E8D8B0;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: #C8A84A; }
.nav-links a:hover::after { width: 100%; }

.hero {
  height: 100vh;
  min-height: 600px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ivory) 0%, var(--cream) 100%);
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 60px 60px 80px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 400;
  line-height: 0.95;
  color: var(--charcoal);
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}

.hero-name em {
  font-style: italic;
  color: var(--burgundy);
}

.hero-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 32px 0;
  opacity: 0;
  animation: fadeUp 1s ease 0.7s forwards;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: #2E2926;
  line-height: 1.7;
  max-width: 480px;
  white-space: normal;
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}

.hero-cta {
  display: flex;
  gap: 24px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 1s ease 1.1s forwards;
}

.btn-primary {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--charcoal);
  padding: 16px 36px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--charcoal);
}

.btn-primary:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.btn-secondary {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  transition: gap 0.3s ease;
}

.btn-secondary::after {
  content: '→';
  transition: transform 0.3s ease;
}

.btn-secondary:hover { gap: 16px; }

.hero-right {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0806;
  padding: 40px 40px 40px 20px;
}

.hero-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0,0,0,0.4);
}

.hero-video-wrapper::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(184, 150, 62, 0.3);
  z-index: 2;
  pointer-events: none;
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold-pale) 50%, var(--cream) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.hero-image-placeholder .placeholder-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--warm-grey);
  letter-spacing: 0.1em;
}

.hero-image-placeholder .placeholder-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  opacity: 0.3;
}

.hero-gold-bar {
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.marquee-strip {
  background: var(--charcoal);
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #F5F0E8;
  padding: 0 48px;
  white-space: nowrap;
}

.marquee-dot {
  color: var(--burgundy);
  padding: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.video-section {
  padding: 120px 80px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
  background: var(--ivory);
  position: relative;
}

.video-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-pale), transparent);
}

.video-intro {
  padding-right: 20px;
}

.section-label {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);

  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.section-heading em {
  font-style: italic;
  color: var(--burgundy);
}

.section-body {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.9;
  color: var(--warm-grey);
  margin-bottom: 36px;
}

.video-frame {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
}

.video-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid var(--gold-pale);
  z-index: 2;
  pointer-events: none;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1410 0%, #2d2018 50%, #1a1410 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-thumbnail .placeholder-note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: rgba(184, 150, 62, 0.4);
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  transition: all 0.3s ease;
  background: rgba(26, 20, 16, 0.6);
  backdrop-filter: blur(4px);
}

.video-frame:hover .play-btn {
  background: var(--gold);
  color: var(--charcoal);
  transform: translate(-50%, -50%) scale(1.08);
}

.video-caption {
  margin-top: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--warm-grey);
  letter-spacing: 0.08em;
  text-align: center;
}

.credentials {
  padding: 80px;
  background: var(--cream);
  border-top: 1px solid var(--gold-pale);
  border-bottom: 1px solid var(--gold-pale);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  text-align: center;
}

.credential-item {
  padding: 32px 20px;
  border: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.credential-item:hover {
  border-color: var(--gold-pale);
}

.credential-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;

  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 8px;
}

.credential-label {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--warm-grey);
}

.work-section {
  padding: 120px 80px;
}

.work-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.work-item {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream);
  cursor: pointer;
}

.work-item-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold-pale) 100%);
  transition: transform 0.6s ease;
  display: flex;
  align-items: flex-end;
  padding: 32px;
}

.work-item:hover .work-item-bg {
  transform: scale(1.04);
}

.work-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 36, 32, 0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 32px;
}

.work-item:hover .work-item-overlay { opacity: 1; }

.work-item-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #FAF7F2;
  margin-bottom: 4px;
}

.work-item-info p {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #E8C87A;
}

.work-placeholder-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--warm-grey);
  opacity: 0.6;
}

.bio-section .bio-body { color: #D4C9BB !important; }
.bio-section {
  padding: 120px 80px;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.bio-section::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 60px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20rem;
  color: rgba(184, 150, 62, 0.06);
  line-height: 1;
  pointer-events: none;
}

.bio-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.bio-inner .section-label { justify-content: center; }
.bio-inner .section-label::before { display: none; }

.bio-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);

  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
  margin: 32px 0;
}

.bio-body {
  font-family: 'Jost', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.9;
  color: var(--warm-grey);
  margin-bottom: 48px;
}

.bio-rule {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto 32px;
}
.bio-section .btn-secondary {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.credits-section {
  padding: 120px 80px;
  background: var(--ivory);
}

.credits-columns {
  display: flex;
  gap: 30px;
  margin-top: 60px;
}

.credits-column h3 {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gold-pale);
}

.credit-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(184, 150, 62, 0.15);
}

.credit-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 3px;
}

.credit-role {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--warm-grey);
  letter-spacing: 0.05em;
}

.credit-venue {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gold);
}

footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(184, 150, 62, 0.2);
  padding: 60px 80px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: var(--cream);
  text-decoration: none;
}

.footer-copy {
  display: block;
  width: 100%;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;

  color: var(--gold);
  letter-spacing: 0.1em;
}

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C8BEB8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--gold); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; height: auto; min-height: 100vh; }
  .hero-right { height: auto; padding: 20px 24px 40px; background: #0a0806; }
  .hero-video-wrapper { aspect-ratio: 16/9; }
  .hero-left { padding: 120px 40px 40px; }
  nav { padding: 24px 40px; }
  nav.scrolled { padding: 16px 40px; }
  .video-section { grid-template-columns: 1fr; padding: 80px 40px; }
  .credentials {
    padding: 20px;
  }
  .credentials-grid { grid-template-columns: repeat(2, 1fr); padding: 0; }
  .work-section { padding: 80px 40px; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .credits-columns { grid-template-columns: 1fr; padding: 60px 0; }
  .credits-section {padding: 100px 20px;}
  footer { flex-direction: column; gap: 32px; text-align: center; padding: 48px 40px; }
  .footer-links {
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
  }
}

.page-contact .hamburger span {
  background: #4A1220;
}
.page-contact nav {
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-pale);
}

.page-contact .nav-logo {
  color: var(--charcoal);
}

.page-contact .nav-links { display: flex; gap: 44px; list-style: none; }
.page-contact .nav-links a { font-family: 'Jost', sans-serif; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--charcoal); text-decoration: none; position: relative; transition: color 0.3s; }
.page-contact .nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s; }
.page-contact .nav-links a:hover, .nav-links a.active { color: #C8A84A; }
.page-contact .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.contact-hero {
  padding: 160px 80px 80px;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
}

.contact-hero::before {
  content: 'Contact';
  position: absolute;
  bottom: -60px;
  right: -20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16rem;

  color: rgba(184, 150, 62, 0.05);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

.contact-hero-inner {
  position: relative;
  z-index: 2;
}

.contact-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);

  line-height: 1;
  color: var(--cream);
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

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

.contact-main {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  min-height: 60vh;
}

.contact-left {
  background: var(--cream);
  padding: 80px 60px;
  border-right: 1px solid var(--gold-pale);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;

  font-style: italic;
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 36px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.contact-detail-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-detail-label {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-detail-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-detail-value:hover { color: var(--burgundy); }

.contact-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 48px 0;
}

.contact-social {
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.contact-social-label {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.social-link {
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;

  letter-spacing: 0.1em;
  color: var(--warm-grey);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s ease, gap 0.3s ease;
}

.social-link::before {
  content: '→';
  color: var(--gold);
  font-size: 0.7rem;
}

.social-link:hover {
  color: var(--charcoal);
  gap: 18px;
}

.contact-right {
  background: var(--ivory);
  padding: 80px 80px 80px 60px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.form-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;

  color: var(--charcoal);
  margin-bottom: 8px;
}

.form-subheading {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;

  color: var(--warm-grey);
  margin-bottom: 48px;
  letter-spacing: 0.05em;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full { grid-column: 1 / -1; }
.form-group.full.form-captcha {margin-bottom: 24px;}

.form-label {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-input,
.form-select,
.form-textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--gold-pale);
  padding: 12px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.3s ease;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--warm-grey);
  font-style: italic;
  font-size: 0.9rem;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-bottom-color: var(--gold);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B8963E' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  cursor: pointer;
  color: var(--warm-grey);
  font-style: italic;
}

.form-select option { color: var(--charcoal); font-style: normal; }

.form-textarea {
  resize: none;
  height: 120px;
  line-height: 1.7;
}

.form-note {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;

  color: var(--warm-grey);
  margin-bottom: 36px;
  font-style: italic;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn-submit {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--charcoal);
  padding: 18px 48px;
  border: 1px solid var(--charcoal);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.form-privacy {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;

  color: var(--warm-grey);
  font-style: italic;
}

.form-success {
  display: none;
  text-align: center;
  padding: 60px 40px;
}

.form-success.visible { display: block; }

.success-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}

.success-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;

  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.success-body {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;

  color: var(--warm-grey);
  line-height: 1.8;
}

.representation {
  background: var(--charcoal);
  padding: 60px 80px;
  display: flex;
  align-items: center;
  gap: 80px;
  border-top: 1px solid rgba(184, 150, 62, 0.2);
}

.rep-label {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.rep-rule {
  flex: 1;
  height: 1px;
  background: rgba(184, 150, 62, 0.2);
}

.rep-note {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: #C8BEB8;
  max-width: 500px;
}

@media (max-width: 1024px) {
  .contact-hero { padding: 120px 40px 60px; }
  .contact-main { grid-template-columns: 1fr; }
  .contact-left { padding: 60px 40px; border-right: none; border-bottom: 1px solid var(--gold-pale); }
  .contact-right { padding: 60px 40px; }
  .form-grid { grid-template-columns: 1fr; }
  .representation { flex-direction: column; gap: 24px; padding: 48px 40px; }
}

/*----About Page----*/
/* PAGE HERO */
.page-hero {
  padding: 160px 80px 80px;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  min-height: 38vh;
  display: flex;
  align-items: flex-end;
}
.page-hero::before {
  content: 'Bio';
  position: absolute;
  bottom: -60px; right: -10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18rem; font-weight: 300;
  color: rgba(184,150,62,0.05);
  line-height: 1; pointer-events: none;
}
.page-resume .page-hero::before {
  content: 'Resume';
}
.page-reels .page-hero::before {
  content: 'Reels';
}
.page-hero-inner { position: relative; z-index: 2; }
.page-eyebrow { font-family: 'Cinzel', serif; font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; opacity: 0; animation: fadeUp 0.8s ease 0.2s forwards; }
.page-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 300; line-height: 1; color: var(--cream); opacity: 0; animation: fadeUp 0.8s ease 0.4s forwards; }
.page-title em { font-style: italic; color: var(--gold-light); }

/* BIO LAYOUT */
.bio-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  min-height: 70vh;
}

.bio-left {
  position: sticky;
  top: 80px;
  align-self: start;
  padding: 80px 0 80px 80px;
}
.bio-photo {
  position: relative;
  overflow: hidden;
}
.bio-photo img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 3/4;
  filter: sepia(8%) contrast(1.02);
}
.bio-photo::after {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid var(--gold-pale);
  pointer-events: none;
}
.bio-photo-caption {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.92rem;
  font-style: italic;
  color: var(--warm-grey);
  margin-top: 14px;
  letter-spacing: 0.06em;
}
.bio-stats {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bio-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gold-pale);
}
.bio-stat:last-child { border-bottom: none; }
.bio-stat-label { font-family: 'Cinzel', serif; font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); }
.bio-stat-value { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--charcoal); }

/* RIGHT, text */
.bio-right {
  padding: 80px 80px 80px 60px;
  border-left: 1px solid var(--gold-pale);
}
.bio-section-label { font-family: 'Cinzel', serif; font-size: 0.6rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 32px; display: flex; align-items: center; gap: 16px; }
.bio-section-label::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.bio-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--charcoal);
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gold-pale);
}
.bio-section .bio-body, .bio-section ~ .bio-body, .bio-dark .bio-body {
  color: #D4C9BB;
}
.bio-body {
  font-family: 'Jost', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.95;
  color: #2E2926;
  margin-bottom: 28px;
}
.bio-body + .bio-body { margin-top: 0; }
.bio-rule { width: 48px; height: 1px; background: var(--gold); margin: 40px 0; }
.bio-subheading { font-family: 'Cinzel', serif; font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 20px; }
.skills-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 40px; margin-bottom: 40px; }
.skill-item { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--charcoal); padding: 10px 0; border-bottom: 1px solid rgba(184,150,62,0.15); display: flex; align-items: center; gap: 10px; }
.skill-item::before { content: '✦'; font-size: 0.5rem; color: var(--gold); }
.btn-primary { font-family: 'Cinzel', serif; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ivory); background: var(--charcoal); padding: 16px 36px; text-decoration: none; transition: all 0.3s; border: 1px solid var(--charcoal); display: inline-block; }
.btn-primary:hover { background: var(--burgundy); border-color: var(--burgundy); }

@media (max-width: 1024px) {
  .page-hero { padding: 120px 40px 60px; }
  .bio-layout { grid-template-columns: 1fr; }
  .bio-left { position: static; padding: 60px 40px 0; }
  .bio-right { padding: 40px 40px 60px; border-left: none; border-top: 1px solid var(--gold-pale); }
  .skills-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════
   HAMBURGER MENU
═══════════════════════════════ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #F5F0E8;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 20, 14, 0.98);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.close {
  position: absolute;
  right: 32px;
  top: 32px;
  width: 32px;
  height: 32px;
  opacity: 0.3;
}
.close:hover {
  opacity: 1;
}
.close:before, .close:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 33px;
  width: 2px;
  background-color: var(--gold-pale);
}
.close:before {
  transform: rotate(45deg);
}
.close:after {
  transform: rotate(-45deg);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #F5F0E8;
  text-decoration: none;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: #C8A84A; }
.mobile-menu-rule {
  width: 40px;
  height: 1px;
  background: #8B6E1E;
}

@media (max-width: 768px) {
  .hamburger, .page-contact .hamburger { display: flex; }
  .nav-links, .page-contact .nav-links { display: none; }
  nav, .page-contact nav { padding: 16px 24px; }
}
@media all and (max-width: 460px) {
  .mob-hide {display: none;}
}

.resume-header { padding: 60px 80px; background: var(--cream); border-bottom: 1px solid var(--gold-pale); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.resume-name-block h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 300; color: var(--charcoal); }
.resume-name-block p { font-family: 'Jost', sans-serif; font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--warm-grey); margin-top: 6px; }
.resume-vitals { display: flex; gap: 40px; flex-wrap: wrap; }
.resume-vital { display: flex; flex-direction: column; gap: 4px; }
.resume-vital-label { font-family: 'Cinzel', serif; font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); }
.resume-vital-value { font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; color: var(--charcoal); }
.btn-download { font-family: 'Cinzel', serif; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ivory); background: var(--charcoal); padding: 14px 28px; text-decoration: none; transition: all 0.3s; border: 1px solid var(--charcoal); display: inline-flex; align-items: center; gap: 10px; }
.btn-download:hover { background: var(--burgundy); border-color: var(--burgundy); }

.resume-body { padding: 0 80px 80px; }

.resume-section { padding: 60px 0; border-bottom: 1px solid var(--gold-pale); }
.resume-section:last-child { border-bottom: none; }
.resume-section-title { font-family: 'Cinzel', serif; font-size: 0.68rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 40px; display: flex; align-items: center; gap: 20px; }
.resume-section-title::after { content: ''; flex: 1; height: 1px; background: var(--gold-pale); }

.credit-table { width: 100%; border-collapse: collapse; }
.credit-table thead tr { border-bottom: 1px solid var(--gold-pale); }
.credit-table thead th { font-family: 'Cinzel', serif; font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--warm-grey); padding: 0 0 14px; text-align: left; font-weight: 400; }
.credit-table thead th:first-child { width: 35%; }
.credit-table thead th:nth-child(2) { width: 20%; }
.credit-table thead th:nth-child(3) { width: 20%; }
.credit-table thead th:last-child { width: 25%; }
.credit-table tbody tr { border-bottom: 1px solid rgba(184,150,62,0.12); transition: background 0.2s; }
.credit-table tbody tr:hover { background: rgba(245,240,232,0.6); }
.credit-table tbody td { padding: 16px 0; vertical-align: top; padding-right: 20px; }
.credit-title-cell { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 400; color: var(--charcoal); }
.credit-title-cell em { font-style: italic; }
.credit-role-cell { font-family: 'Jost', sans-serif; font-size: 0.92rem; color: var(--charcoal); }
.credit-type-cell { font-family: 'Jost', sans-serif; font-size: 0.88rem; color: var(--warm-grey); letter-spacing: 0.05em; }
.credit-venue-cell { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-style: italic; color: var(--gold); }

.skills-two-col { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; }
.skill-row { padding: 14px 20px 14px 0; border-bottom: 1px solid rgba(184,150,62,0.12); font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--charcoal); display: flex; align-items: center; gap: 10px; }
.skill-row::before { content: '✦'; font-size: 0.45rem; color: var(--gold); flex-shrink: 0; }

.training-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.training-item { padding: 24px 28px; background: var(--cream); }
.training-school { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 400; color: var(--charcoal); margin-bottom: 4px; }
.training-focus { font-family: 'Jost', sans-serif; font-size: 0.9rem; color: var(--warm-grey); }

@media (max-width: 1024px) {
  .resume-header { padding: 48px 40px; }
  .resume-body { padding: 0 40px 60px; }
  .skills-two-col { grid-template-columns: 1fr 1fr; }
  .training-grid { grid-template-columns: 1fr; }
  .page-resume .reveal.visible {
    overflow-x: scroll;
  }
}

.reel-tabs { display: flex; gap: 0; border-bottom: 1px solid rgba(184,150,62,0.2); padding: 0 80px; background: rgba(0,0,0,0.2); }
.reel-tab { font-family: 'Cinzel', serif; font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--warm-grey); padding: 20px 32px; cursor: pointer; border-bottom: 2px solid transparent; transition: all 0.3s; background: none; border-top: none; border-left: none; border-right: none; }
.reel-tab:hover { color: var(--gold-light); }
.reel-tab.active { color: var(--gold); border-bottom-color: var(--gold); }

.featured-reel { padding: 80px; }
.featured-video { position: relative; padding: 56.25% 0 0; background: #000; margin-bottom: 32px; }
.featured-video::before { content: ''; position: absolute; inset: -1px; border: 1px solid rgba(184,150,62,0.2); z-index: 2; pointer-events: none; }
.featured-video iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.featured-meta { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; }
.featured-info h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--charcoal); margin-bottom: 8px; }
.featured-info p { font-family: 'Jost', sans-serif; font-size: 0.82rem; color: var(--warm-grey); letter-spacing: 0.08em; }
.featured-link { font-family: 'Cinzel', serif; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); text-decoration: none; display: flex; align-items: center; gap: 10px; transition: gap 0.3s; white-space: nowrap; padding-top: 8px; }
.featured-link:hover { gap: 16px; }
.featured-link::after { content: '→'; }

.clips-section { padding: 0 80px 80px; }
.clips-label { font-family: 'Cinzel', serif; font-size: 0.6rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 32px; display: flex; align-items: center; gap: 20px; }
.clips-label::after { content: ''; flex: 1; height: 1px; background: rgba(184,150,62,0.2); }
.clips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.clip-item { position: relative; cursor: pointer; overflow: hidden; background: #111; }
.clip-thumb { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; transition: transform 0.5s ease, opacity 0.3s; opacity: 0.75; }
.clip-thumb-placeholder { width: 100%; aspect-ratio: 16/9; background: linear-gradient(135deg, #1a1410, #2d2018); display: flex; align-items: center; justify-content: center; }
.clip-item:hover .clip-thumb { transform: scale(1.05); opacity: 1; }
.clip-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(42,36,32,0.9) 0%, transparent 50%); display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; opacity: 0; transition: opacity 0.3s; }
.clip-item:hover .clip-overlay { opacity: 1; }
.clip-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 48px; height: 48px; border: 1px solid rgba(184,150,62,0.5); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1rem; background: rgba(10,8,6,0.4); transition: all 0.3s; }
.clip-item:hover .clip-play { background: var(--gold); color: var(--charcoal); border-color: var(--gold); transform: translate(-50%,-50%) scale(1.1); }
.clip-title { font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; font-weight: 400; color: var(--cream); margin-bottom: 4px; }
.clip-sub { font-family: 'Jost', sans-serif; font-size: 0.68rem; letter-spacing: 0.1em; color: var(--gold-light); text-transform: uppercase; }
.clip-placeholder-text { font-family: 'Cormorant Garamond', serif; font-size: 0.85rem; font-style: italic; color: var(--cream); text-align: center; }

.vimeo-cta { padding: 60px 80px; text-align: center; border-top: 1px solid rgba(184,150,62,0.15); }
.vimeo-cta p { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; color: var(--warm-grey); margin-bottom: 24px; }
.btn-vimeo { font-family: 'Cinzel', serif; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--charcoal); background: var(--gold); padding: 16px 40px; text-decoration: none; transition: all 0.3s; display: inline-block; }
.btn-vimeo:hover { background: var(--gold-light); }

#lightbox { display: none; position: fixed; inset: 0; z-index: 9000; align-items: center; justify-content: center; }
#lightbox-backdrop { position: absolute; inset: 0; background: rgba(20,14,10,0.95); backdrop-filter: blur(8px); }
.lightbox-inner { position: relative; z-index: 2; width: 90%; max-width: 960px; }
#lightbox-close { position: absolute; top: -44px; right: 0; background: none; border: none; color: var(--gold); font-family: 'Cinzel', serif; font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; cursor: pointer; display: flex; align-items: center; gap: 10px; padding: 8px 0; }
#lightbox-title { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-style: italic; color: var(--gold-pale); margin-bottom: 12px; letter-spacing: 0.08em; }
.lightbox-frame { position: relative; padding: 56.25% 0 0; background: #000; border: 1px solid rgba(184,150,62,0.2); }
.lightbox-frame iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
#lightbox-credit { font-family: 'Jost', sans-serif; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--warm-grey); margin-top: 12px; }

@media (max-width: 1024px) {
  .reel-tabs { padding: 0 40px; overflow-x: auto; }
  .featured-reel { padding: 48px 40px; }
  .clips-section { padding: 0 40px 60px; }
  .clips-grid { grid-template-columns: 1fr 1fr; }
  .vimeo-cta { padding: 48px 40px; }
}
