/* ===== Variables ===== */
:root {
  --black: #16151a;
  --charcoal: #3a3941;
  --gray: #6f6d78;
  --line: #e7e5e2;
  --cream: #faf9f6;
  --white: #ffffff;
  --accent: #b06a4f;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1120px;
  --radius: 4px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }
a:focus-visible, button:focus-visible, video:focus-visible { outline: 3px solid var(--accent); outline-offset: 5px; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

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

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

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
}

.section-intro {
  color: var(--gray);
  font-size: 17px;
  max-width: 560px;
  margin-top: 14px;
}

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14.5px;
  font-weight: 500;
}

.nav-links a { color: var(--charcoal); transition: color 0.2s; }
.nav-links a:hover { color: var(--accent); }

.nav-cta {
  background: var(--black);
  color: var(--white) !important;
  padding: 9px 18px;
  border-radius: var(--radius);
}
.nav-cta:hover { background: var(--accent) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--black);
}

/* ===== Hero ===== */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  gap: 64px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 140px 32px 80px;
}

.hero-inner { flex: 1.1; }

.eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 22px;
}

.hero-sub {
  color: var(--gray);
  font-size: 18px;
  max-width: 480px;
  margin-bottom: 34px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 14.5px;
  font-weight: 600;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--black);
  color: var(--white);
}
.btn-primary:hover { background: var(--accent); }
.btn-outline {
  border: 1px solid var(--black);
  color: var(--black);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.hero-media { flex: 1; }

.hero-image-placeholder {
  aspect-ratio: 4/5;
  background: var(--cream);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 14px;
}

/* ===== Filled media (real photos/videos, not placeholders) ===== */
.hero-image-placeholder.is-filled,
.media-placeholder.is-filled {
  border-style: solid;
  border-color: var(--line);
  overflow: hidden;
}

.hero-image-placeholder.is-filled > img,
.media-placeholder.is-filled > img,
.media-placeholder.is-filled > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== Why Me ===== */
.why-me { padding: 100px 0; background: var(--cream); }
.why-me h2 { font-size: 34px; margin-top: 6px; max-width: 600px; }

/* Two columns (Tech Background / Acting & Story) with a "+" divider between
   them — the layout itself is the argument: two different backgrounds
   combining into one offer, resolved in .why-result below. */
.why-columns {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 56px;
}

.why-col-tag {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.why-col h3 {
  font-size: 25px;
  line-height: 1.28;
  margin-bottom: 16px;
  max-width: 420px;
}

.why-col-body { color: var(--charcoal); font-size: 16px; max-width: 440px; }

.why-divider {
  align-self: start;
  margin-top: 34px;
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--accent);
  line-height: 1;
}

.why-result {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 680px;
}

.why-result p { color: var(--charcoal); font-size: 17px; }

.why-result-tag {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}

/* ===== Showcase (Acting / UGC) ===== */
.showcase { padding: 100px 0; }
.showcase--alt { background: var(--white); }

.showcase h2 { font-size: 34px; margin-top: 6px; }

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.media-card { display: flex; flex-direction: column; gap: 14px; }

.media-placeholder {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--white);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 14px;
  transition: border-color 0.2s, color 0.2s;
}

/* Row labels — group UGC cards by category, same voice as .section-label */
.row-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin: 48px 0 20px;
}

.row-label + .media-grid { margin-top: 0; }

.media-card:hover .media-placeholder {
  border-color: var(--accent);
  color: var(--accent);
}

/* UGC clips are shot vertical (9:16) — give filled UGC cards a portrait frame
   instead of the default 16:10 placeholder ratio. Selector combines both
   classes so it wins on specificity regardless of source order. */
.media-placeholder.media-placeholder--portrait {
  aspect-ratio: 9/16;
}

.media-caption h3 { font-size: 17px; font-weight: 500; margin-bottom: 2px; transition: color 0.2s; }
.media-caption p { font-size: 14px; color: var(--gray); }

/* ===== Acting reel — asymmetric layout: one large vertical hero clip on
   the left, a stack of three compact cards on the right. ===== */
.reel-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  margin-top: 48px;
  align-items: start;
}

.reel-hero {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 0;
}

.reel-hero-media {
  position: relative;
  flex: 1;
  min-height: 0;
  aspect-ratio: 9/16;
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.reel-hero-media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.reel-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.reel-stack-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.reel-stack-media {
  position: relative;
  flex: 1;
  min-height: 0;
  aspect-ratio: 16/10;
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}

/* Horizontal clips shown at their native ratio, letterboxed rather than
   cropped, inside the more compact stack card */
.reel-stack-media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.reel-stack-item:hover .reel-stack-media { border-color: var(--accent); }

.reel-link-media {
  background: var(--cream);
  color: var(--accent);
}

.reel-link-logo {
  width: 25%;
  height: 25%;
  object-fit: contain;
  display: block;
}

.reel-link-arrow {
  position: absolute;
  top: 12px;
  right: 12px;
  line-height: 1;
  font-size: 18px;
  color: var(--gray);
}

.reel-link-card:hover .reel-link-media { border-color: var(--accent); background: var(--white); }
.reel-link-card:hover .reel-link-arrow { color: var(--accent); }
.reel-link-card:hover .media-caption h3 { color: var(--accent); }

/* ===== Services ===== */
.services { padding: 100px 0; }

.services-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}

.services h2 { font-size: 34px; margin-top: 6px; }

.services-list {
  display: grid;
  gap: 28px;
}

.service-item {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.service-item h3 { font-size: 18px; font-weight: 500; margin-bottom: 8px; }
.service-item p { color: var(--gray); font-size: 15px; }

/* ===== Contact ===== */
.contact {
  padding: 110px 0;
  background: var(--black);
  color: var(--white);
}

.contact .section-label { color: var(--accent); }
.contact h2 { font-size: 36px; color: var(--white); }
.contact .section-intro { color: #b8b6c0; }

.contact-inner { text-align: left; }

.contact-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact .btn-primary { background: var(--white); color: var(--black); }
.contact .btn-primary:hover { background: var(--accent); color: var(--white); }

.social-links { display: flex; gap: 24px; font-size: 14.5px; font-weight: 500; }
.social-links a { color: #d6d4dc; transition: color 0.2s; }
.social-links a:hover { color: var(--white); }

/* ===== Footer ===== */
.footer {
  padding: 28px 0;
  background: var(--black);
  color: #8a8892;
  border-top: 1px solid #2a2930;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #8a8892;
}

.footer-inner a { color: #8a8892; transition: color 0.2s; }
.footer-inner a:hover { color: var(--white); }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: 61px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 32px;
    gap: 20px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-150%);
    visibility: hidden;
    transition: transform 0.25s ease;
  }
  .nav-links.open { transform: translateY(0); visibility: visible; }
  .nav-toggle { display: flex; }

  .hero { flex-direction: column; padding-top: 120px; gap: 40px; }
  .hero h1 { font-size: 34px; }
  .hero-media { width: 100%; }
  .hero-image-placeholder { aspect-ratio: 4/5; max-width: 440px; margin: auto; }

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

  .why-columns { grid-template-columns: 1fr; gap: 28px; }
  .why-divider { margin-top: 0; text-align: center; }

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

  .reel-layout { grid-template-columns: 1fr; }
  .reel-hero-media { flex: none; width: min(100%, 39.375vh); margin: auto; aspect-ratio: 9/16; }

  .contact-actions { flex-direction: column; align-items: flex-start; gap: 24px; }
}

@media (max-width: 560px) {
  .hero, .why-me, .showcase, .services { padding-bottom: 64px; }
  .why-me, .showcase, .services { padding-top: 64px; }
  .social-links { flex-wrap: wrap; }
  .media-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 10px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
