/* ==========================================================================
   Vantelle Modeling + Casting
   Design system — quiet editorial luxury with a confident edge.
   ========================================================================== */

:root {
  /* Core palette */
  --ink: #0C0C0D;
  --ivory: #F4F0E9;
  --champagne: #B49764;
  --oxblood: #55202A;
  --oxblood-hover: #6A2A35;
  --stone: #A69C90;
  --white: #FFFFFF;

  /* Derived neutrals */
  --rule: #D9D2C7;          /* hairline on ivory */
  --hair: #E4DDD1;          /* hairline inside form surfaces */
  --field-border: #CFC8BC;  /* input borders */
  --surface: #FBF9F5;       /* empty upload slot */
  --track: #EEE8DD;         /* progress track */
  --plate: #E7E1D6;         /* image placeholder */
  --body-strong: #332E28;
  --body-muted: #5C554C;
  --cap-meta: #CFC8BC;

  /* Type */
  --serif: 'Playfair Display', 'DM Serif Display', Georgia, serif;
  --sans: 'Manrope', Inter, Arial, sans-serif;

  /* Layout */
  --wrap: 1280px;
  --gutter: 40px;
  --hdr-h: 78px;
}

/* --------------------------------- Reset -------------------------------- */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, picture, svg, video, canvas { display: block; max-width: 100%; }
h1, h2, h3, p, dl, dd, figure { margin: 0; }
fieldset { margin: 0; padding: 0; border: 0; }
legend { padding: 0; }

a { color: inherit; text-decoration: none; transition: color .2s; }
a:hover { color: var(--champagne); }

::selection { background: var(--champagne); color: var(--ink); }
:focus-visible { outline: 2px solid var(--champagne); outline-offset: 2px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--ivory);
  padding: 14px 22px; font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
}
.skip-link:focus { left: 0; }

.wrap { max-width: var(--wrap); margin: 0 auto; }

/* Scroll-reveal (JS adds .is-in) */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s cubic-bezier(.2,.6,.2,1), transform .8s cubic-bezier(.2,.6,.2,1);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* --------------------------------- Type --------------------------------- */

.eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .3em;
  color: var(--stone);
}
.eyebrow--gold { color: var(--champagne); }
.eyebrow--rule { display: flex; align-items: center; gap: 14px; color: var(--champagne); }
.eyebrow__dash { display: block; width: 34px; height: 1px; background: var(--champagne); }
.eyebrow--centered {
  display: flex; align-items: center; justify-content: center; gap: 22px;
  font-size: 10.5px; letter-spacing: .28em;
}
.eyebrow__line { display: block; flex: 1; max-width: 120px; height: 1px; background: var(--rule); }

.opt {
  color: var(--stone);
  text-transform: none;
  letter-spacing: .02em;
  font-weight: 500;
}

/* -------------------------------- Buttons ------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 30px;
  border: 0;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, opacity .2s, transform .12s;
}
.btn:active { transform: translateY(1px); }
.btn:disabled, .btn[aria-disabled="true"] { opacity: .55; cursor: not-allowed; transform: none; }

.btn--ox { background: var(--oxblood); color: var(--ivory); }
.btn--ox:hover:not(:disabled) { background: var(--oxblood-hover); color: var(--ivory); }

.btn--ivory { background: var(--ivory); color: var(--ink); }
.btn--ivory:hover { background: var(--white); color: var(--ink); }

.btn--ghost { background: transparent; color: var(--ivory); border: 1px solid rgba(180,151,100,.55); }
.btn--ghost:hover { background: rgba(180,151,100,.14); border-color: var(--champagne); color: var(--ivory); }

.btn--ghostink { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn--ghostink:hover { background: rgba(12,12,13,.06); border-color: var(--ink); color: var(--ink); }

.btn--submit { gap: 12px; padding: 0 32px; }

.spinner {
  display: inline-block; width: 14px; height: 14px;
  border: 2px solid rgba(244,240,233,.35);
  border-top-color: var(--ivory);
  border-radius: 50%;
  animation: vspin .8s linear infinite;
}
.spinner[hidden] { display: none; }

/* -------------------------------- Header -------------------------------- */

.hdr {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.hdr[data-hdr="on"] {
  background: rgba(12,12,13,.9);
  border-bottom-color: rgba(180,151,100,.22);
  backdrop-filter: blur(12px);
}
.hdr__inner {
  max-width: 1360px; margin: 0 auto;
  height: var(--hdr-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 0 var(--gutter);
}
.hdr__brand { display: flex; align-items: center; min-height: 44px; }
.hdr__logo-full { height: 32px; width: auto; }
.hdr__logo-mark { display: none; align-items: center; gap: 10px; }
.hdr__logo-mark img { height: 34px; width: auto; }
.hdr__wordmark { font-family: var(--serif); font-size: 16px; letter-spacing: .32em; color: var(--ivory); }

.hdr__nav { display: flex; align-items: center; gap: 36px; }
.navlink {
  position: relative;
  color: var(--ivory);
  font-size: 13px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  padding: 6px 0;
}
.navlink::after {
  content: ""; position: absolute; left: 0; bottom: -5px;
  width: 0; height: 1px; background: var(--champagne);
  transition: width .25s ease;
}
.navlink:hover::after, .navlink:focus-visible::after { width: 100%; }

.hdr__actions { display: flex; align-items: center; gap: 14px; }
.hdr__cta { min-height: 44px; padding: 0 22px; font-size: 11.5px; }

.burger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center; gap: 6px;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid rgba(244,240,233,.35);
  border-radius: 2px;
  cursor: pointer;
}
.burger span { display: block; width: 18px; height: 1.5px; background: var(--ivory); }

/* ------------------------------ Mobile menu ----------------------------- */

.menu {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(12,12,13,.98);
  color: var(--ivory);
  display: flex; flex-direction: column;
  padding: 0 28px 28px;
  animation: vfade .25s ease both;
}
.menu[hidden] { display: none; }
.menu__bar { height: var(--hdr-h); display: flex; align-items: center; justify-content: space-between; }
.menu__brand { display: flex; align-items: center; gap: 10px; }
.menu__brand img { height: 34px; width: auto; }
.menu__close {
  display: inline-flex; align-items: center; gap: 8px;
  min-width: 44px; min-height: 44px; padding: 0 14px;
  background: transparent; border: 1px solid rgba(244,240,233,.35); border-radius: 2px;
  color: var(--ivory); font-family: var(--sans);
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  cursor: pointer;
}
.menu__nav { display: flex; flex-direction: column; margin-top: 8vh; }
.menu__nav a {
  display: flex; align-items: baseline; gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(244,240,233,.12);
}
.menu__num { font-size: 11px; letter-spacing: .22em; color: var(--champagne); }
.menu__word { font-family: var(--serif); font-size: clamp(34px, 9vw, 46px); line-height: 1; }
.menu__cta { margin-top: auto; min-height: 54px; font-size: 12px; letter-spacing: .18em; }
.menu__note { margin-top: 14px; font-size: 12px; color: var(--stone); text-align: center; }

/* --------------------------------- Hero --------------------------------- */

.hero { position: relative; background: var(--ink); color: var(--ivory); }
.hero__grid { display: grid; grid-template-columns: 46fr 54fr; min-height: 100svh; }

.hero__copy {
  position: relative;
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 64px 72px;
  min-height: 100svh;
  overflow: hidden;
}
.hero__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: .62;
}
.hero__body { position: relative; z-index: 1; }
.hero__title {
  margin-top: 30px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(46px, 5.6vw, 90px);
  line-height: 1.14;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.hero__title em { font-style: italic; }
.hero__lede {
  margin-top: 28px;
  max-width: 44ch;
  font-size: 16.5px; line-height: 1.75;
  color: rgba(244,240,233,.78);
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 44px; }

.hero__foot {
  position: relative; z-index: 1;
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-top: auto; padding-top: 56px;
}
.hero__index { font-size: 10.5px; font-weight: 600; letter-spacing: .26em; color: var(--stone); }
.hero__scroll { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hero__scroll span:first-child { font-size: 9.5px; font-weight: 600; letter-spacing: .3em; color: var(--stone); }
.hero__scroll-line {
  display: block; width: 1px; height: 44px;
  background: var(--champagne);
  animation: vcue 2.2s ease-in-out infinite;
}

.hero__media { position: relative; overflow: hidden; min-height: 100svh; }
.hero__media picture, .hero__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 16%;
}
.hero__media img { animation: vzoom 1.8s ease-out both; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(12,12,13,.5), rgba(12,12,13,0) 26%),
    linear-gradient(0deg, rgba(12,12,13,.28), rgba(12,12,13,0) 22%);
}
.hero__frame {
  position: absolute; right: 26px; bottom: 22px;
  font-size: 10px; letter-spacing: .24em;
  color: rgba(244,240,233,.65);
}

/* The tall oval from the monogram — the one intentional rounded motif. */
.oval { position: absolute; }
.oval--hero {
  left: -64px; bottom: 84px;
  width: 186px; height: 296px;
  border: 1px solid rgba(180,151,100,.7);
  border-radius: 93px / 148px;
}
.oval--about {
  right: -36px; bottom: -44px;
  width: 140px; height: 222px;
  border: 1px solid var(--champagne);
  border-radius: 70px / 111px;
}

/* -------------------------- Brand experience ---------------------------- */

.brands { background: var(--ivory); padding: 104px var(--gutter) 96px; }
.brands__inner { max-width: var(--wrap); margin: 0 auto; text-align: center; }
.brands__row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px 40px;
  margin: 40px auto 0;
  padding: 0;
  max-width: 920px;
}
.brands__item {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  line-height: 0;
}
.brands__logo {
  display: block;
  width: auto !important;
  max-width: 140px !important;
  height: 22px !important;
  object-fit: contain;
  object-position: center;
  opacity: .88;
}
.brands__logo--youngla { height: 12px !important; max-width: 132px !important; }
.brands__logo--lululemon { height: 28px !important; max-width: 180px !important; }
.brands__logo--calvin-klein { height: 20px !important; max-width: 148px !important; }
.brands__logo--saint-laurent { height: 28px !important; max-width: 132px !important; }
.brands__logo--skims { height: 20px !important; max-width: 112px !important; }
.brands__logo--love-island { height: 28px !important; max-width: 128px !important; }

@media (max-width: 720px) {
  .brands { padding: 72px var(--gutter) 64px; }
  .brands__row { gap: 22px 28px; margin-top: 30px; }
  .brands__logo { height: 18px !important; max-width: 110px !important; }
  .brands__logo--youngla { height: 10px !important; max-width: 110px !important; }
  .brands__logo--lululemon { height: 24px !important; max-width: 150px !important; }
  .brands__logo--calvin-klein { height: 16px !important; max-width: 120px !important; }
  .brands__logo--saint-laurent { height: 24px !important; max-width: 110px !important; }
  .brands__logo--skims { height: 16px !important; max-width: 96px !important; }
  .brands__logo--love-island { height: 24px !important; max-width: 108px !important; }
}

/* ---------------------------- Talent gallery ---------------------------- */

.talent { background: var(--ivory); padding: 56px var(--gutter) 150px; scroll-margin-top: 70px; }

.sechead { display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: end; }
.sechead__title {
  margin-top: 22px;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(38px, 4.6vw, 68px);
  line-height: 1.06; letter-spacing: -0.01em;
}
.sechead__intro { margin-bottom: 6px; font-size: 15px; line-height: 1.75; color: var(--body-muted); }

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
  margin-top: 80px;
  align-items: start;
}
.gcell {
  position: relative;
  display: block; width: 100%;
  padding: 0; border: 0;
  overflow: hidden;
  background: var(--plate);
  cursor: zoom-in;
}
.gcell picture, .gcell img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.gcell img { transition: transform .5s ease; }
.gcell:hover img, .gcell:focus-visible img { transform: scale(1.016); }

.gcell--a    { grid-column: span 5; aspect-ratio: 4/5; }
.gcell--b    { grid-column: span 4; aspect-ratio: 1/1;  margin-top: 92px; }
.gcell--c    { grid-column: span 3; aspect-ratio: 3/4;  margin-top: 156px; }
.gcell--wide { grid-column: span 7; aspect-ratio: 16/10; margin-top: 36px; }
.gcell--d    { grid-column: span 5; aspect-ratio: 4/5;  margin-top: 110px; }
.gcell--e    { grid-column: 5 / span 5; aspect-ratio: 4/5; margin-top: 36px; }

.gcap {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: block;
  padding: 44px 20px 16px;
  background: linear-gradient(0deg, rgba(12,12,13,.72), rgba(12,12,13,0));
  color: var(--ivory);
  text-align: left;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
}
.gcell:hover .gcap, .gcell:focus-visible .gcap { opacity: 1; transform: none; }
.gcap__name { display: block; font-family: var(--serif); font-size: 20px; }
.gcap__meta { display: block; margin-top: 4px; font-size: 10.5px; letter-spacing: .2em; color: var(--cap-meta); }

/* --------------------------------- About -------------------------------- */

.about { background: var(--ivory); padding: 0 var(--gutter) 160px; scroll-margin-top: 70px; }
.about__split { display: grid; grid-template-columns: 11fr 12fr; gap: 88px; align-items: center; }

.about__media { position: relative; padding: 60px 0 0 60px; }
.about__block { position: absolute; top: 0; left: 0; width: 76%; height: 86%; background: var(--oxblood); }
.about__media picture { position: relative; display: block; }
.about__media img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: 50% 12%;
}

.about__title {
  margin-top: 22px;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.08; letter-spacing: -0.01em;
  text-wrap: balance;
}
.about__body { margin-top: 18px; font-size: 16px; line-height: 1.8; color: var(--body-strong); }
.about__body:first-of-type { margin-top: 30px; }

.principles { margin-top: 44px; }
.principles > div {
  display: grid; grid-template-columns: 200px 1fr; gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--rule);
}
.principles > div:last-child { border-bottom: 1px solid var(--rule); }
.principles dt { font-family: var(--serif); font-size: 20px; }
.principles dd { margin: 0; align-self: center; font-size: 14.5px; color: var(--body-muted); }

/* -------------------------------- Casting ------------------------------- */

.casting {
  background: var(--ink); color: var(--ivory);
  padding: 150px var(--gutter);
  scroll-margin-top: 60px;
}
.casting__split { display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: start; }
.casting__intro { position: sticky; top: 118px; }
.casting__title {
  margin-top: 22px;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 4.6vw, 66px);
  line-height: 1.05;
}
.casting__body { margin-top: 28px; font-size: 16px; line-height: 1.8; color: rgba(244,240,233,.75); }
.casting__trust {
  margin-top: 36px; padding-top: 18px;
  border-top: 1px solid rgba(180,151,100,.35);
  font-size: 13.5px; line-height: 1.7;
  color: var(--champagne);
}
.casting__mark { height: 118px; width: auto; margin-top: 64px; opacity: .16; }

.card {
  background: var(--white);
  color: var(--ink);
  border-radius: 2px;
  padding: clamp(26px, 4vw, 46px);
  box-shadow: 0 40px 90px rgba(0,0,0,.4);
}

/* Step chrome */
.stepbar { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.stepbar__count { font-size: 10.5px; font-weight: 600; letter-spacing: .24em; color: var(--stone); }
.stepbar__name { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.progress { margin-top: 12px; height: 2px; background: var(--track); }
.progress__fill { height: 2px; background: var(--oxblood); transition: width .4s ease; }

.netfail {
  margin-top: 22px;
  background: var(--oxblood); color: var(--ivory);
  border-radius: 2px;
  padding: 16px 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  flex-wrap: wrap;
}
.netfail[hidden] { display: none; }
.netfail p { font-size: 13.5px; line-height: 1.6; max-width: 42ch; }
.netfail__retry {
  min-height: 40px; padding: 0 18px;
  border-color: rgba(244,240,233,.5);
  font-size: 11px;
}

.errbanner {
  margin-top: 22px;
  background: rgba(85,32,42,.07);
  border: 1px solid rgba(85,32,42,.35);
  color: var(--oxblood);
  border-radius: 2px;
  padding: 13px 16px;
  font-size: 13.5px; font-weight: 500;
}
.errbanner[hidden] { display: none; }

/* Fields */
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 34px; }
.fgrid--tight { margin-top: 26px; }
.field--full { grid-column: 1 / -1; }
.field--center { align-self: center; }
.field--intro { margin-top: 22px; }

.field label, .chips legend {
  display: block;
  font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 8px;
}
.field--sm label { font-size: 10.5px; margin-bottom: 7px; }

.field input, .field select, .field textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--field-border);
  border-radius: 2px;
  padding: 13px 14px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  transition: border-color .18s, box-shadow .18s;
}
.field select { padding: 13px 12px; }
.field textarea { line-height: 1.6; resize: vertical; }
.field--sm input { padding: 11px 12px; font-size: 14px; }

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--champagne);
  box-shadow: 0 0 0 3px rgba(180,151,100,.18);
}
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea {
  box-shadow: 0 0 0 2px rgba(85,32,42,.7);
}

.ferr { margin-top: 5px; font-size: 12.5px; font-weight: 500; color: var(--oxblood); min-height: 0; }
.ferr:empty { display: none; }
.ferr--check { margin: -4px 0 0 32px; }
.field__foot { display: flex; justify-content: space-between; gap: 12px; }
.counter { margin-top: 5px; font-size: 11.5px; color: var(--stone); }

/* Accordion */
.accordion { margin-top: 26px; border: 1px solid var(--hair); border-radius: 2px; }
.accordion__head {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; min-height: 48px;
  background: transparent; border: 0;
  padding: 15px 16px;
  font-family: var(--sans);
  font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}
.accordion__mark { font-size: 16px; color: var(--stone); }
.accordion__panel { padding: 2px 16px 18px; }
.accordion__panel[hidden] { display: none; }
.mgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* Chips */
.chips { margin-top: 26px; }
.chips legend { margin-bottom: 10px; }
.chips__row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--field-border);
  border-radius: 2px;
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px; font-weight: 500;
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s;
}
.chip:hover { border-color: var(--ink); }
.chip[aria-pressed="true"] { background: var(--ink); color: var(--ivory); border-color: var(--ink); }

/* Checkboxes */
.consents { margin-top: 34px; border-top: 1px solid var(--hair); padding-top: 24px; display: flex; flex-direction: column; gap: 6px; }
.check {
  display: flex; align-items: flex-start; gap: 12px;
  min-height: 44px;
  background: transparent; border: 0; padding: 6px 0;
  cursor: pointer; text-align: left;
  font-family: var(--sans);
}
.check__box {
  flex: none;
  display: flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; margin-top: 1px;
  background: var(--white);
  border: 1px solid var(--field-border);
  border-radius: 2px;
  font-size: 13px; line-height: 1;
  color: var(--white);
}
.check[aria-checked="true"] .check__box { background: var(--oxblood); border-color: var(--oxblood); }
.check[aria-checked="true"] .check__box::after { content: "✓"; }
.check__label { font-size: 13.5px; line-height: 1.65; color: var(--body-strong); }
.check__label a { text-decoration: underline; text-underline-offset: 3px; }

.privacy-note { margin-top: 18px; font-size: 12px; line-height: 1.7; color: var(--stone); }
.turnstile { margin-top: 20px; }
.turnstile[hidden] { display: none; }

/* Step actions */
.step[hidden] { display: none; }
.actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.actions--end { justify-content: flex-end; }
.actions--split { justify-content: space-between; align-items: center; margin-top: 30px; }
.actions--split .btn--ghostink { border-color: var(--field-border); padding: 0 24px; }

.sub { margin-top: 34px; font-family: var(--serif); font-weight: 400; font-size: 22px; }
.sub__note { margin-top: 8px; font-size: 13.5px; line-height: 1.7; color: var(--body-muted); }

/* ------------------------------- Uploaders ------------------------------ */

.photos { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }

.drop {
  position: relative;
  border: 1.5px dashed var(--field-border);
  border-radius: 2px;
  background: var(--surface);
  overflow: hidden;
}
.photos .drop { aspect-ratio: 1/1; }
.drop--video { margin-top: 16px; padding: 20px; }

.drop.is-dragging { border: 1.5px solid var(--champagne); background: rgba(180,151,100,.08); }
.drop.is-error    { border: 1.5px solid var(--oxblood); background: rgba(85,32,42,.04); }
.drop.is-uploading{ border: 1px solid var(--field-border); background: var(--surface); }
.photos .drop.is-done { border: 1px solid var(--ink); background: var(--ink); }

.drop__pad {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 16px; text-align: center;
}
.drop--video .drop__pad { position: static; padding: 14px 0; }
.drop__num { font-family: var(--serif); font-size: 17px; color: var(--champagne); }
.drop__label { font-size: 13px; font-weight: 600; color: var(--ink); }
.drop__hint { font-size: 11px; color: var(--stone); }
.drop__browse {
  min-height: 38px; padding: 0 16px;
  background: transparent; border: 1px solid var(--field-border); border-radius: 2px;
  font-family: var(--sans);
  font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink); cursor: pointer;
  transition: background .18s, border-color .18s;
}
.drop__browse:hover { background: rgba(12,12,13,.06); border-color: var(--ink); }
.drop--video .drop__browse { min-height: 40px; padding: 0 18px; }
.drop__err { font-size: 11.5px; font-weight: 500; color: var(--oxblood); line-height: 1.55; }
.drop__fname { font-size: 12px; font-weight: 600; color: var(--ink); word-break: break-all; }

.bar { height: 3px; background: var(--track); border-radius: 2px; overflow: hidden; }
.photos .bar { width: 76%; }
.drop--video .bar { width: 100%; }
.bar__fill {
  height: 3px;
  background: repeating-linear-gradient(45deg, #B49764 0 6px, #C8AE7D 6px 13px);
  background-size: 26px 26px;
  animation: vstripe .7s linear infinite;
  transition: width .25s ease;
}
.drop__pct { font-size: 11px; color: var(--stone); }

.drop__preview { position: absolute; inset: 0; background-size: cover; background-position: center; }
.drop__fallback {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  background: var(--ivory); padding: 14px; text-align: center;
}
.drop__fallback span:last-child { font-size: 11px; color: var(--stone); }

.drop__done {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: rgba(12,12,13,.78);
  color: var(--ivory);
  padding: 9px 12px;
}
.drop__done > span:first-child {
  font-size: 10.5px; letter-spacing: .06em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.drop__actions { display: flex; gap: 12px; flex: none; }
.linkbtn {
  background: none; border: 0; padding: 4px 0;
  font-family: var(--sans);
  font-size: 10.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer;
}
.linkbtn--replace { color: var(--champagne); }
.linkbtn--remove { color: var(--ivory); }

.vdone { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.vdone video {
  width: 190px; max-width: 100%;
  aspect-ratio: 16/10;
  background: var(--ink);
  border-radius: 2px;
  object-fit: cover;
}
.vdone__meta { flex: 1; min-width: 180px; }
.vdone__name { font-size: 12.5px; font-weight: 600; word-break: break-all; }
.vdone__sub { margin-top: 6px; font-size: 11.5px; color: var(--stone); }
.vdone__warn { margin-top: 6px; font-size: 11.5px; color: var(--oxblood); }
.vdone__actions { display: flex; gap: 16px; margin-top: 10px; }
.vdone__actions .linkbtn--replace { color: var(--oxblood); font-size: 11px; }
.vdone__actions .linkbtn--remove { color: var(--body-muted); font-size: 11px; }

.vupload { display: flex; flex-direction: column; gap: 10px; padding: 8px 2px; }
.vupload__name { font-size: 12.5px; font-weight: 600; word-break: break-all; }
.vupload__name span { color: var(--stone); font-weight: 500; }

/* -------------------------------- Success ------------------------------- */

.success { text-align: center; padding: 56px 10px; animation: vfade .4s ease both; }
.success[hidden] { display: none; }
.success svg { margin: 0 auto; }
.success h3 {
  margin-top: 26px;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(30px, 3.4vw, 40px);
}
.success p { margin: 18px auto 0; max-width: 48ch; font-size: 15px; line-height: 1.8; color: var(--body-muted); }
.success__ref { font-size: 12px !important; letter-spacing: .12em; color: var(--stone) !important; }

/* ------------------------------- Instagram ------------------------------ */

.ig { background: var(--ivory); padding: 150px 0 130px; scroll-margin-top: 70px; }
.ig__head {
  padding: 0 var(--gutter);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 40px;
}
.ig__title {
  margin-top: 22px;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(36px, 4.4vw, 62px);
  line-height: 1.06;
}
.ig__head .btn { min-height: 48px; padding: 0 24px; font-size: 11.5px; }

.ig__row {
  max-width: var(--wrap);
  margin: 64px auto 0;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr 1fr 1fr;
  gap: 18px;
  align-items: center;
}
.ig__tile { position: relative; overflow: hidden; aspect-ratio: 1/1; }
.ig__tile--lead { aspect-ratio: 4/5; }
.ig__tile picture, .ig__tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.ig__dots { display: none; justify-content: center; gap: 8px; margin-top: 22px; }
.ig__dots button {
  border: 0; padding: 0;
  height: 6px; width: 6px;
  border-radius: 3px;
  background: var(--field-border);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}
.ig__dots button[aria-selected="true"] { width: 26px; background: var(--champagne); }

/* --------------------------------- Footer ------------------------------- */

.foot {
  background: var(--ink); color: var(--ivory);
  padding: 110px var(--gutter) 44px;
  border-top: 1px solid rgba(180,151,100,.18);
}
.foot__grid { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr 1fr; gap: 56px; }
.foot__logo { height: 38px; width: auto; }
.foot__tag { margin-top: 24px; max-width: 300px; font-size: 15px; line-height: 1.75; color: rgba(244,240,233,.68); }
.foot__head { margin-bottom: 18px; font-size: 10px; font-weight: 600; letter-spacing: .26em; color: var(--stone); }
.foot__links { display: flex; flex-direction: column; gap: 12px; font-size: 14px; color: rgba(244,240,233,.85); }
.foot__links--wide { gap: 14px; }
.foot__links a { color: rgba(244,240,233,.85); }
.foot__mail { font-size: 13px; color: var(--champagne) !important; }
.foot__base {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  margin-top: 80px; padding-top: 26px;
  border-top: 1px solid rgba(244,240,233,.12);
}
.foot__base p { font-size: 12px; color: var(--stone); }
.foot__base img { height: 22px; width: auto; opacity: .45; }

/* -------------------------------- Lightbox ------------------------------ */

.lb {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(12,12,13,.95);
  display: flex; align-items: center; justify-content: center;
  animation: vfade .22s ease both;
}
.lb[hidden] { display: none; }
.lb__close {
  position: absolute; top: 20px; right: 22px;
  min-width: 44px; min-height: 44px; padding: 0 14px;
  background: transparent; border: 1px solid rgba(244,240,233,.35); border-radius: 2px;
  color: var(--ivory); font-size: 12px; letter-spacing: .14em; cursor: pointer;
}
.lb__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  min-width: 44px; min-height: 44px; padding: 0 10px;
  background: transparent; border: 0;
  color: var(--ivory);
  font-family: var(--serif); font-size: 38px;
  cursor: pointer;
}
.lb__nav--prev { left: 14px; }
.lb__nav--next { right: 14px; }
.lb__fig { max-width: 84vw; max-height: 86vh; display: flex; flex-direction: column; gap: 14px; }
.lb__img {
  width: min(84vw, 940px);
  height: min(76vh, 860px);
  object-fit: contain;
}
.lb__cap { display: flex; justify-content: space-between; gap: 16px; color: var(--ivory); }
.lb__name { font-family: var(--serif); font-size: 17px; }
.lb__meta { font-size: 10.5px; letter-spacing: .2em; color: var(--stone); padding-left: 10px; }
.lb__count { font-size: 11px; letter-spacing: .2em; color: var(--champagne); }

/* ------------------------------- Animations ----------------------------- */

@keyframes vzoom  { from { transform: scale(1.035); } to { transform: scale(1); } }
@keyframes vcue   { 0%, 100% { transform: scaleY(.25); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: top; } }
@keyframes vspin  { to { transform: rotate(360deg); } }
@keyframes vfade  { from { opacity: 0; } to { opacity: 1; } }
@keyframes vstripe{ to { background-position: 26px 0; } }

/* ------------------------------ Breakpoints ----------------------------- */

@media (max-width: 960px) {
  :root { --gutter: 24px; }

  .hdr__nav { display: none; }
  .burger { display: inline-flex; }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; min-height: 60vh; }
  .hero__copy { padding: 64px 24px 72px; min-height: 0; }
  .oval--hero, .oval--about { display: none; }

  .sechead { grid-template-columns: 1fr; gap: 22px; }

  .gallery { grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 48px; }
  .gcell { grid-column: auto; margin-top: 0; aspect-ratio: 4/5; }
  .gcell--wide { order: -1; grid-column: 1 / -1; aspect-ratio: 3/4; }
  /* Captions are hover-only on desktop; always visible where there is no hover. */
  .gcap { opacity: 1; transform: none; }

  .about__split, .casting__split { grid-template-columns: 1fr; gap: 56px; }
  .casting__intro { position: static; }
  .casting__mark { display: none; }

  .fgrid, .mgrid { grid-template-columns: 1fr; }

  .ig__head { flex-direction: column; align-items: flex-start; gap: 28px; }
  .ig__row {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 24px;
    scrollbar-width: none;
  }
  .ig__row::-webkit-scrollbar { display: none; }
  .ig__tile { flex: 0 0 68%; scroll-snap-align: center; aspect-ratio: 4/5; }
  .ig__dots { display: flex; }

  .foot__grid { grid-template-columns: 1fr; gap: 44px; }
  .foot__base { flex-direction: column; gap: 14px; align-items: flex-start; }
}

@media (max-width: 600px) {
  .photos { grid-template-columns: 1fr; }
  .hdr__cta { display: none; }
  .hdr__logo-full { display: none; }
  .hdr__logo-mark { display: flex; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .principles > div { grid-template-columns: 1fr; gap: 4px; }
}

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