/* =====================================================================
   JAMES MARCHIONI — Modern Marketing Talent Site
   Deep navy on sky blue. Massive condensed name. Confident.
   ===================================================================== */

/* ---- Tokens ---- */
:root {
  /* Palette — black/white/red, cinematic */
  --navy:         #0a0a0a;       /* primary surface — velvet black */
  --navy-deep:    #040404;       /* deepest black — footer, reel */
  --navy-soft:    #161616;       /* slightly off-black — section variation */
  --sky:          #0a0a0a;       /* main bg — velvet black (was off-white) */
  --sky-light:    #1a1a1a;       /* hero gradient top — for spotlight */
  --sky-deep:     #d4001a;       /* BLOOD RED — primary accent */
  --cream:        #f4efe6;       /* light text + occasional surface */
  --cream-deep:   #e8e0d0;
  --white:        #ffffff;
  --gold:         #d4001a;       /* RED — same as sky-deep */

  /* Type */
  --f-display:  "Anton", "Bebas Neue", "Helvetica Neue", sans-serif;
  --f-body:     "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max:       1600px;
  --gutter:    clamp(1.25rem, 4vw, 4rem);
  --section-y: clamp(4.5rem, 9vw, 8rem);

  --ease-out:        cubic-bezier(0.16, 1, 0.3, 1);
  --ease-cinematic:  cubic-bezier(0.65, 0, 0.35, 1);
  --t-fast:  180ms;
  --t-mid:   400ms;
  --t-slow:  800ms;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* Magnetic snap between sections — proximity is gentle, doesn't trap mid-scroll */
  scroll-snap-type: y proximity;
  scroll-padding-top: 70px; /* clear the sticky topnav when snapping */
}
/* Section magnetism — sticky-anchor each major section to the top */
.hero,
.film,
.reel,
.about,
.gallery,
.press,
.contact,
.footer {
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-snap-type: none; scroll-behavior: auto; }
}
body, h1, h2, h3, h4, p, ul, ol, dd, dl, figure, blockquote { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, video { display: block; max-width: 100%; height: auto; }
button { background: none; border: 0; color: inherit; font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ---- Base ---- */
html, body {
  background: var(--sky);
  color: var(--cream);
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body { min-height: 100vh; overflow-x: hidden; position: relative; }

/* Film grain — fixed overlay across whole site */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch' seed='3'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 0.98 0 0 0 0 0.92 0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 260px 260px;
  opacity: 0.08;
  mix-blend-mode: overlay;
}

/* Vignette — corners darken, focus toward center */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, 0.45) 100%);
}

@media (prefers-reduced-motion: reduce) {
  body::before { opacity: 0.04; }
}

::selection { background: var(--navy); color: var(--cream); }

.skip-link {
  position: absolute; top: 0; left: 0;
  transform: translateY(-110%);
  background: var(--navy); color: var(--cream);
  padding: 0.75rem 1rem;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  z-index: 9999;
  transition: transform var(--t-fast) var(--ease-out);
}
.skip-link:focus { transform: translateY(0); }

:focus-visible { outline: 2px solid var(--navy); outline-offset: 4px; }

/* ============ TOP NAV ============ */
.topnav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  color: var(--cream);
  padding: 0.85rem var(--gutter);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  border-bottom: 1px solid rgba(244, 239, 230, 0.08);
}

/* Left: profile icons */
.topnav__social {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}
.topnav__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: opacity var(--t-fast) var(--ease-out), transform var(--t-fast) var(--ease-out);
}
.topnav__social a:hover { opacity: 0.78; transform: translateY(-1px); }
.topnav__social a:nth-child(1) svg { width: 38px; height: auto; display: block; }   /* IMDb pill */
.topnav__social a:nth-child(2) svg { width: 22px; height: 22px; display: block; }   /* Instagram outline */

/* Center: nav links */
.topnav__nav {
  display: none;
  flex: 1;
  justify-content: center;
  gap: clamp(1.4rem, 3vw, 3rem);
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.topnav__nav a {
  color: var(--cream);
  transition: color var(--t-fast) var(--ease-out);
  position: relative;
}
.topnav__nav a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -8px;
  width: 0; height: 2px;
  background: var(--sky-deep);
  transform: translateX(-50%);
  transition: width var(--t-mid) var(--ease-out);
}
.topnav__nav a:hover { color: var(--white); }
.topnav__nav a:hover::after { width: 100%; }
@media (min-width: 880px) { .topnav__nav { display: inline-flex; } }

/* Right: hamburger */
.topnav__menu-btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 44px; height: 36px;
  padding: 0;
  align-items: center;
  margin-left: auto;
}
.topnav__menu-btn span {
  display: block;
  width: 22px; height: 2px;
  background: var(--cream);
}
@media (min-width: 880px) {
  .topnav__menu-btn { display: none; }
}

/* ============ STATUS BANNER — red strip ============ */
.status-banner {
  background: var(--sky-deep);
  color: var(--cream);
  text-align: center;
  padding: 0.85rem var(--gutter);
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 60;
}
.status-banner p { margin: 0; }
.status-banner strong { font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.status-banner a {
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
  transition: color var(--t-fast) var(--ease-out);
}
.status-banner a:hover { color: var(--navy); }

/* ============ MOBILE MENU ============ */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--navy);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-mid) var(--ease-out), visibility var(--t-mid) var(--ease-out);
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu__inner { height: 100%; display: flex; flex-direction: column; padding: 1.4rem var(--gutter) 3rem; }
.mobile-menu__head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(244, 240, 232, 0.2);
}
.mobile-menu__brand {
  font-family: var(--f-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--cream);
}
.mobile-menu__close {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--cream);
  border-radius: 999px;
}
.mobile-menu__close:hover { background: var(--cream); color: var(--navy); }
.mobile-menu__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
}
.mobile-menu__nav a {
  display: block;
  padding: 0.7rem 0;
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 9vw, 4rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--cream);
  border-bottom: 1px solid rgba(244, 240, 232, 0.15);
  transition: color var(--t-fast), padding-left var(--t-mid);
}
.mobile-menu__nav a:hover { color: var(--gold); padding-left: 0.8rem; }
.mobile-menu__foot {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(244, 240, 232, 0.15);
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 240, 232, 0.7);
}
.mobile-menu__foot a:hover { color: var(--cream); }

/* ============ TYPE & SECTION HELPERS ============ */
.eyebrow {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.2rem;
  display: inline-block;
}
.eyebrow--dark { color: var(--navy); }
.eyebrow--light { color: var(--cream); }

.section-head {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head--light .section-title { color: var(--cream); }
.section-head--center { text-align: center; }

.section-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
  color: var(--cream);
}
.section-title--light { color: var(--cream); }
.section-title--dark  { color: var(--navy); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 999px;
  transition: background var(--t-mid) var(--ease-out),
              color var(--t-mid) var(--ease-out),
              border-color var(--t-mid) var(--ease-out),
              transform var(--t-mid) var(--ease-out);
}
.btn--cream {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
}
.btn--cream:hover {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
  transform: translateY(-2px);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 5rem) var(--gutter) 0;
  background:
    radial-gradient(ellipse 900px 700px at 75% 42%, rgba(212, 0, 26, 0.14), transparent 65%),
    radial-gradient(ellipse 800px 600px at 75% 45%, rgba(255, 240, 220, 0.06), transparent 70%),
    linear-gradient(180deg, var(--sky-light) 0%, var(--sky) 50%, var(--navy-deep) 100%);
  overflow: hidden;
  /* Film-reticle cursor — director's viewfinder */
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'><circle cx='16' cy='16' r='13' fill='none' stroke='%23d4001a' stroke-width='1.2' opacity='0.95'/><circle cx='16' cy='16' r='1.6' fill='%23d4001a'/><line x1='16' y1='3' x2='16' y2='10' stroke='%23d4001a' stroke-width='1.2'/><line x1='16' y1='22' x2='16' y2='29' stroke='%23d4001a' stroke-width='1.2'/><line x1='3' y1='16' x2='10' y2='16' stroke='%23d4001a' stroke-width='1.2'/><line x1='22' y1='16' x2='29' y2='16' stroke='%23d4001a' stroke-width='1.2'/></svg>") 16 16, crosshair;
}
/* Mouse-following red spotlight overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle 480px at var(--mx, 75%) var(--my, 45%),
    rgba(212, 0, 26, 0.28),
    rgba(212, 0, 26, 0.10) 30%,
    transparent 65%
  );
  mix-blend-mode: screen;
  z-index: 1;
  opacity: 0.9;
}
/* Restore pointer cursor on interactive elements inside the hero */
.hero a,
.hero button,
.hero input,
.hero textarea {
  cursor: pointer;
}
.hero textarea,
.hero input { cursor: text; }
@media (prefers-reduced-motion: reduce), (hover: none) {
  .hero { cursor: auto; }
  .hero::after { opacity: 0.7; }
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='2.5' numOctaves='1' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.2 0 0 0 0 0.35 0 0 0 0.3 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
  opacity: 0.55;
  mix-blend-mode: overlay;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  min-height: 65vh;
}
@media (min-width: 880px) {
  .hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 5vw, 5rem);
    min-height: 75vh;
  }
}

.hero__left {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 0;
}
@media (min-width: 880px) {
  .hero__left { align-items: flex-start; text-align: left; padding: 4rem 0; }
}

.hero__name {
  font-family: var(--f-display);
  font-weight: 400;
  color: var(--cream);
  text-transform: uppercase;
  font-size: clamp(4.5rem, 11vw, 9.5rem);
  line-height: 0.88;
  letter-spacing: -0.005em;
  text-shadow:
    3px 3px 0 var(--sky-deep),
    0 6px 24px rgba(0, 0, 0, 0.5);
}
.hero__name span { display: block; }

.social {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.6rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 880px) { .social { justify-content: flex-start; } }
.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  color: var(--cream);
  transition: transform var(--t-fast) var(--ease-out),
              color var(--t-fast) var(--ease-out);
}
.social a svg { width: 100%; height: 100%; }
.social a:hover {
  transform: translateY(-3px);
  color: var(--white);
}

.hero__pose {
  position: relative;
  z-index: 2;
  display: block;
  margin: clamp(1rem, 3vw, 2.5rem) auto -0.5rem;
  width: auto;
  height: auto;
  max-height: clamp(360px, 55vh, 620px);
  max-width: min(92%, 320px);
  object-fit: contain;
  /* drop shadow tuned for the cinematic black + blood-red palette */
  filter:
    drop-shadow(0 18px 22px rgba(0, 0, 0, 0.6))
    drop-shadow(0 0 14px rgba(212, 0, 26, 0.18));
  animation: heroFloat 6s var(--ease-cinematic) infinite alternate;
}
@media (prefers-reduced-motion: reduce) {
  .hero__pose { animation: none; }
}

.hero__right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  padding: 1rem 0;
}
/* Framed rectangular portrait — used when source image has a background.
   For the full Jay-Pharoah cut-out effect, process the image through
   remove.bg, save as a transparent PNG, and apply .hero__portrait--cutout
   instead (see below). */
.hero__portrait-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 2 / 3;
  border-radius: 4px;
  overflow: hidden;
  background: var(--navy-deep);
  box-shadow:
    0 40px 80px -20px rgba(0, 0, 0, 0.75),
    0 0 80px -10px rgba(212, 0, 26, 0.18),
    0 0 0 1px rgba(244, 239, 230, 0.10);
  animation: heroFloat 6s var(--ease-cinematic) infinite alternate;
}
.hero__portrait-frame::after {
  /* Soft inner highlight along the top edge — gives the photo a "framed print" feel */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), transparent 30%);
  pointer-events: none;
}
.hero__portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Cut-out-PNG variant — uncomment / apply when you have a transparent PNG.
.hero__portrait--cutout {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 30px rgba(5, 16, 38, 0.3));
  animation: heroFloat 6s var(--ease-cinematic) infinite alternate;
}
*/
@keyframes heroFloat {
  from { transform: translateY(0); }
  to   { transform: translateY(-8px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__portrait-frame { animation: none; }
}

/* Hero callout — like SEE JAY LIVE */
.hero__callout {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem 1rem;
  padding: 1.5rem var(--gutter) 2rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.4) 100%);
  font-family: var(--f-display);
  font-weight: 400;
  color: var(--cream);
  text-transform: uppercase;
  font-size: clamp(2.6rem, 8vw, 6.5rem);
  letter-spacing: -0.005em;
  line-height: 1;
}
.hero__callout-name {
  color: var(--sky-deep);
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.6);
}

/* ============ FILMOGRAPHY ============ */
.film {
  background: var(--navy-soft);
  color: var(--cream);
  padding: var(--section-y) 0;
}
.film__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (min-width: 720px) { .film__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
@media (min-width: 1200px) { .film__grid { grid-template-columns: repeat(4, 1fr); } }
/* When showing exactly 3 cards, balance them across the width */
@media (min-width: 1200px) {
  .film__grid.film__grid--three {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1300px;
  }
}

.film-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  transition: transform var(--t-mid) var(--ease-out),
              box-shadow var(--t-mid) var(--ease-out);
  display: flex;
  flex-direction: column;
}
.film-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(5, 16, 38, 0.25);
}
.film-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.film-card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--navy);
}
.film-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-cinematic);
}
.film-card:hover .film-card__media img { transform: scale(1.06); }
.film-card__tag {
  position: absolute;
  top: 1rem; left: 1rem;
  padding: 0.45rem 0.85rem;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--f-body);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  border-radius: 2px;
  box-shadow: 0 4px 14px -4px rgba(0, 0, 0, 0.45);
}
.film-card__tag--cream {
  background: var(--cream);
  color: var(--navy);
  border: none;
  box-shadow: 0 4px 14px -4px rgba(0, 0, 0, 0.35);
}
.film-card__tag--upcoming {
  background: var(--sky-deep);
  color: var(--cream);
  box-shadow: 0 4px 14px -4px rgba(212, 0, 26, 0.55);
}
.film-card__body { padding: 1.4rem 1.4rem 1.7rem; display: flex; flex-direction: column; gap: 0.3rem; flex: 1; }
.film-card__year {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sky-deep);
}
.film-card__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1.05;
  color: var(--navy);
  margin-top: 0.2rem;
}
.film-card__role {
  font-size: 0.95rem;
  color: var(--navy-soft);
}
.film-card__cta {
  margin-top: auto;
  padding-top: 1rem;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky-deep);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity var(--t-mid) var(--ease-out), transform var(--t-mid) var(--ease-out);
}
.film-card:hover .film-card__cta,
.film-card:focus-within .film-card__cta {
  opacity: 1;
  transform: translateY(0);
}

.film__foot {
  max-width: var(--max);
  margin: 2.5rem auto 0;
  padding: 0 var(--gutter);
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: rgba(244, 239, 230, 0.65);
  text-align: center;
}
.film__foot a {
  color: var(--cream);
  border-bottom: 1px solid currentColor;
}
.film__foot a:hover { color: var(--sky-deep); }

/* ============ REEL ============ */
.reel {
  background: var(--navy);
  color: var(--cream);
  padding: var(--section-y) 0;
}
.reel__frame {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.reel__player {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--navy-deep);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(244, 240, 232, 0.15);
}
.reel__player video,
.reel__player iframe {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
}
.reel__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, rgba(5, 16, 38, 0.2), rgba(5, 16, 38, 0.55));
  transition: opacity var(--t-mid) var(--ease-out);
}
.reel__play svg {
  width: 30px; height: 30px;
  color: var(--navy);
  background: var(--cream);
  padding: 22px 20px 22px 26px;
  border-radius: 50%;
  box-sizing: content-box;
  transition: transform var(--t-mid) var(--ease-out), background var(--t-mid);
}
.reel__play:hover svg { transform: scale(1.08); background: var(--white); }
.reel__player.is-playing .reel__play { opacity: 0; pointer-events: none; }

.reel__cap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.2rem;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 240, 232, 0.75);
}
.reel__cap a {
  color: var(--cream);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color var(--t-fast);
}
.reel__cap a:hover { color: var(--gold); }

/* ============ ABOUT ============ */
.about {
  background: var(--sky);
  color: var(--cream);
  padding: var(--section-y) 0;
}
.about__inner { max-width: var(--max); margin: 0 auto; }
.about__head {
  padding: 0 var(--gutter);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding: 0 var(--gutter);
  align-items: start;
}
@media (min-width: 900px) {
  .about__grid { grid-template-columns: 0.85fr 1.15fr; gap: clamp(3rem, 6vw, 6rem); }
}
.about__portrait {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--navy-soft);
  border-radius: 4px;
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(244, 239, 230, 0.08);
}
.about__portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-cinematic);
}
.about__portrait:hover img { transform: scale(1.03); }

.about__body { display: flex; flex-direction: column; gap: 1.3rem; }
.about__body p {
  font-size: clamp(1rem, 1.1vw, 1.18rem);
  line-height: 1.7;
  max-width: 60ch;
  color: rgba(244, 239, 230, 0.85);
}
.about__body em {
  font-style: normal;
  font-weight: 700;
  color: var(--cream);
}
.about__lede {
  font-family: var(--f-display) !important;
  font-size: clamp(2rem, 3.5vw, 3rem) !important;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1 !important;
  color: var(--cream) !important;
  max-width: 24ch !important;
  margin-bottom: 0.8rem;
}
.about__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(244, 239, 230, 0.2);
}
@media (min-width: 560px) { .about__stats { grid-template-columns: repeat(4, 1fr); } }
.about__stats dt {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky-deep);
  margin-bottom: 0.5rem;
}
.about__stats dd {
  font-family: var(--f-display);
  font-size: 1.5rem;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: -0.005em;
}

.about__skills {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(244, 239, 230, 0.12);
}
@media (min-width: 560px) {
  .about__skills {
    flex-direction: row;
    align-items: baseline;
    gap: 1.5rem;
  }
}
.about__skills-label {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky-deep);
  flex-shrink: 0;
}
.about__skills-list {
  font-family: var(--f-display);
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  color: var(--cream);
  letter-spacing: -0.005em;
}

/* ============ GALLERY ============ */
.gallery {
  background: var(--navy);
  color: var(--cream);
  padding: var(--section-y) 0;
}
.gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (min-width: 640px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .gallery__item,
  .gallery__item--wide { aspect-ratio: 3 / 4; }
}
@media (min-width: 980px) {
  .gallery__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
  }
}
.gallery__item {
  overflow: hidden;
  background: var(--navy-deep);
  border-radius: 6px;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-cinematic), filter var(--t-mid);
}
.gallery__item:hover img { transform: scale(1.05); }

/* ============ PRESS ============ */
.press {
  background: var(--navy-soft);
  color: var(--cream);
  padding: var(--section-y) 0;
}
.press__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (min-width: 880px) { .press__grid { grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 4vw, 3.5rem); } }

.press-quote {
  padding: 2rem;
  background: var(--white);
  border-left: 4px solid var(--sky-deep);
  border-radius: 0 6px 6px 0;
}
.press-quote p {
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 1.7vw, 1.6rem);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.press-quote cite {
  display: block;
  font-style: normal;
  font-family: var(--f-body);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--navy-soft);
}
.press-quote cite strong {
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

/* ============ CONTACT ============ */
.contact {
  position: relative;
  background: var(--navy);
  color: var(--cream);
  padding: var(--section-y) 0;
  overflow: hidden;
}
.contact__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(111, 167, 216, 0.18), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(228, 191, 56, 0.06), transparent 70%);
  pointer-events: none;
}
.contact__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  padding: 0 var(--gutter);
}
@media (min-width: 880px) { .contact__grid { grid-template-columns: 0.85fr 1.15fr; } }

.contact__rep { display: flex; flex-direction: column; gap: 2.2rem; }
.contact__rep-block { display: flex; flex-direction: column; gap: 0.4rem; }
.contact__rep-label {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact__rep-name {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 2.6vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--cream);
}
.contact__rep-link {
  font-size: 1.05rem;
  color: var(--cream);
  border-bottom: 1px solid rgba(244, 240, 232, 0.3);
  align-self: flex-start;
  padding-bottom: 1px;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.contact__rep-link:hover { color: var(--gold); border-color: var(--gold); }
.contact__rep-socials { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.contact__rep-socials a {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(244, 240, 232, 0.3);
  border-radius: 999px;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.contact__rep-socials a:hover {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 2.5rem;
  background: rgba(244, 240, 232, 0.05);
  border: 1px solid rgba(244, 240, 232, 0.2);
  border-radius: 12px;
}
@media (max-width: 640px) { .contact__form { padding: 1.6rem; } }
.contact__form-intro {
  font-family: var(--f-display);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.contact__form-bot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 240, 232, 0.7);
}
.field input, .field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(244, 240, 232, 0.25);
  padding: 0.7rem 0;
  font-size: 1rem;
  color: var(--cream);
  transition: border-color var(--t-fast);
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.contact__submit { align-self: flex-start; margin-top: 0.5rem; }
.contact__status {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  min-height: 1.2rem;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--navy-deep);
  color: var(--cream);
  padding: clamp(3rem, 5vw, 4rem) var(--gutter) 2rem;
  border-top: 1px solid rgba(244, 240, 232, 0.1);
}
.footer__inner { max-width: var(--max); margin: 0 auto; }
.footer__top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(244, 240, 232, 0.1);
}
@media (min-width: 720px) {
  .footer__top { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer__sig {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--cream);
}
.footer__nav {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer__nav a { color: rgba(244, 240, 232, 0.65); }
.footer__nav a:hover { color: var(--cream); }

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  padding-top: 1.5rem;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(244, 240, 232, 0.55);
}
@media (min-width: 720px) {
  .footer__bottom { flex-direction: row; align-items: center; }
}
.footer__social { display: flex; gap: 1.5rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; }
.footer__social a { color: var(--cream); }
.footer__social a:hover { color: var(--gold); }

/* ============ MOTION ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-cinematic),
              transform 0.8s var(--ease-cinematic);
}
[data-reveal].is-revealed { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
