/* Hollywood Headshots — portfolio site
   Gallery-wall restraint: white walls, ink type, photography is the hero. */

:root {
  --paper: #fcfcfb;
  --ink: #141414;
  --gray: #6e6e6a;
  --hairline: #e6e6e3;
  --night: #101010;
  --night-text: #d9d9d5;
  --display: "Didot", "Bodoni 72", "Playfair Display", Georgia, "Times New Roman", serif;
  --body: "Helvetica Neue", Helvetica, Arial, -apple-system, sans-serif;
  --pad: clamp(1.25rem, 5vw, 4.5rem);
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }
a:focus-visible,
video:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

/* ---------- type utilities ---------- */

.wordmark {
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  white-space: nowrap;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1.25rem;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.005em;
}

/* ---------- header ---------- */

.site-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.6rem var(--pad);
  border-bottom: 1px solid var(--hairline);
}

.site-header nav {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.site-header nav a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gray);
  transition: color 160ms ease;
}
.site-header nav a:hover { color: var(--ink); }

/* ---------- hero ---------- */

.hero {
  display: grid;
  grid-template-columns: minmax(20rem, 5fr) 6fr;
  align-items: end;
  gap: var(--pad);
  padding: clamp(3rem, 8vh, 6rem) 0 0 var(--pad);
}

.hero-copy { padding-bottom: clamp(2rem, 6vh, 5rem); max-width: 34rem; }

.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.6rem);
  margin-bottom: 1.5rem;
}

.hero-sub {
  color: var(--gray);
  font-size: 1.02rem;
  max-width: 30rem;
  margin-bottom: 2.25rem;
}

.hero-cta {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--ink);
  padding: 0.9rem 1.8rem;
  transition: background 160ms ease, color 160ms ease;
}
.hero-cta:hover { background: var(--ink); color: var(--paper); }

.hero-image { position: relative; }
.hero-image img { width: 100%; }

/* ---------- shared section chrome ---------- */

section { padding: clamp(4rem, 10vh, 7.5rem) var(--pad); }

.section-head {
  max-width: 38rem;
  margin-bottom: clamp(2.5rem, 6vh, 4rem);
}

.section-head h2, .section-head h3 {
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  margin-bottom: 1rem;
}

.section-head p { color: var(--gray); }

figcaption {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.7rem;
}

/* ---------- work grid ---------- */

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 2.25rem);
  align-items: start;
}

.grid figure:nth-child(3n+2) { margin-top: clamp(1.5rem, 4vw, 3.5rem); }

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

/* ---------- direction band (signature) ---------- */

.direction {
  padding: clamp(4rem, 12vh, 7rem) 0;
  margin: clamp(2rem, 5vh, 3.5rem) 0;
  text-align: center;
}

.direction-line {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.8rem, 4.4vw, 3.8rem);
  line-height: 1.15;
  max-width: 22ch;
  margin: 0 auto 1.75rem;
}

.direction-note {
  font-size: 0.85rem;
  color: var(--gray);
  max-width: 34rem;
  margin: 0 auto;
}

/* ---------- corporate ---------- */

.corporate { margin-top: clamp(4rem, 10vh, 7rem); }

/* ---------- range strip ---------- */

.range { border-top: 1px solid var(--hairline); }

.range-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(0.75rem, 1.8vw, 1.5rem);
  align-items: start;
}

.range-num {
  color: #b3b3ae;
  margin-right: 0.55em;
}

/* ---------- testimonials ---------- */

.words {
  background: var(--night);
  color: var(--night-text);
}

.words .section-head h2 { color: #fff; }
.words .section-head p { color: #8f8f8a; }
.words figcaption { color: #8f8f8a; }

.words a:focus-visible,
.words video:focus-visible { outline-color: #fff; }

.pull-quote {
  max-width: 46rem;
  margin-bottom: clamp(2.5rem, 6vh, 4rem);
}

.pull-quote p {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  line-height: 1.3;
  color: #fff;
  margin-bottom: 1rem;
}

.pull-quote cite {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #8f8f8a;
}

.video-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.video-row video { width: 100%; background: #000; }

/* ---------- on set ---------- */

.bts-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2.5vw, 2.25rem);
  align-items: start;
}

.bts-video { grid-column: 1 / -1; max-width: 52rem; }
.bts-video video { width: 100%; background: #000; }

/* ---------- story ---------- */

.story {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: var(--pad);
  align-items: center;
  border-top: 1px solid var(--hairline);
}

.story-copy { max-width: 34rem; }

.story h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  margin-bottom: 1.5rem;
}

.story p + p { margin-top: 1.1rem; }

.story-copy p { color: #3c3c39; }

.story-bridge {
  border-top: 1px solid var(--hairline);
  padding-top: 1.4rem;
  margin-top: 1.6rem;
  color: var(--gray) !important;
  font-size: 0.92rem;
}

/* ---------- footer ---------- */

.site-footer {
  border-top: 1px solid var(--hairline);
  padding: 2.5rem var(--pad) 3rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.site-footer p:last-child {
  font-size: 0.8rem;
  color: var(--gray);
  max-width: 30rem;
}

/* ---------- reveal motion ---------- */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-right: var(--pad);
  }
  .hero-copy { padding-bottom: 0; }
  .grid, .grid-three { grid-template-columns: repeat(2, 1fr); }
  .range-row { grid-template-columns: repeat(3, 1fr); }
  .grid figure:nth-child(3n+2) { margin-top: 0; }
  .grid figure:nth-child(2n) { margin-top: clamp(1.25rem, 4vw, 2.5rem); }
  .video-row { grid-template-columns: 1fr; }
  .story { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .grid, .grid-three, .bts-layout { grid-template-columns: 1fr; }
  .range-row { grid-template-columns: repeat(2, 1fr); }
  .grid figure:nth-child(2n) { margin-top: 0; }
  .site-header { justify-content: center; text-align: center; }
}
