/* ═══════════════════════════════════════════════════════════════════
   ConneryFilm — Headshots.  Page-scoped styling.

   Everything here is prefixed .hs- so it can never leak into the
   wedding/corporate pages, which share styles.css.  Colours, spacing
   and easing all come from the site tokens so this reads as the same
   brand, just turned up.

   Motion rule for this page: every entrance is opacity + a short
   translate, driven by .is-in added by hs.js.  Nothing animates that
   the visitor did not scroll to, and prefers-reduced-motion turns the
   whole lot off at the bottom of this file.
   ═══════════════════════════════════════════════════════════════════ */

/* ── Reveal primitives ─────────────────────────────────────────────
   One class, four directions.  hs.js observes [data-hs-rev] and adds
   .is-in; --d is the per-item stagger it sets. */
[data-hs-rev] {
  opacity: 0;
  transform: translate3d(var(--rx, 0), var(--ry, 26px), 0) scale(var(--rs, 1));
  transition: opacity .9s var(--ease) var(--d, 0ms), transform 1.05s var(--ease) var(--d, 0ms);
}
[data-hs-rev].is-in { opacity: 1; transform: none; }
/* Once the entrance has played, take the element back off the
   compositor entirely — a page this long should not be holding
   sixty promoted layers open for animations that already finished. */
[data-hs-rev].hs-settled, .hs-kin.hs-settled .hs-w > i {
  transition: none; transform: none; filter: none; will-change: auto;
}
.hs-kin.hs-settled .hs-w { overflow: visible; }
[data-hs-rev="left"]  { --rx: -34px; --ry: 0; }
[data-hs-rev="right"] { --rx:  34px; --ry: 0; }
[data-hs-rev="zoom"]  { --ry: 14px; --rs: .94; }
[data-hs-rev="blur"]  { filter: blur(9px); transition: opacity .9s var(--ease) var(--d,0ms), transform 1.05s var(--ease) var(--d,0ms), filter .9s var(--ease) var(--d,0ms); }
[data-hs-rev="blur"].is-in { filter: none; }

/* Line-by-line headline mask.  hs.js wraps each word in
   <span class="hs-w"><i>word</i></span> so the inner <i> can slide up
   out of an overflow-hidden box — the classic film-title reveal. */
.hs-kin { display: block; }
.hs-w { display: inline-block; overflow: hidden; vertical-align: bottom; padding: 0 .06em; margin: 0 -.06em; }
.hs-w > i {
  display: inline-block; font-style: inherit;
  transform: translateY(110%) rotate(3deg);
  transition: transform 1.15s cubic-bezier(.16,.84,.28,1) var(--wd, 0ms);
}
.is-in .hs-w > i, .hs-kin.is-in .hs-w > i { transform: none; }

/* ── Hero ──────────────────────────────────────────────────────── */
.hs-hero {
  position: relative; overflow: hidden;
  min-height: 100svh; display: flex; align-items: center;
  padding: calc(76px + var(--space-4)) 0 var(--space-5);
}
/* The studio: one warm key light from the upper left, a cold rim from
   the right, and a slow breathing motion so the page is never static. */
.hs-hero__light {
  position: absolute; inset: -20% -10%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(58% 52% at 22% 26%, rgba(195,162,100,.20) 0%, rgba(195,162,100,.06) 42%, transparent 72%),
    radial-gradient(46% 60% at 86% 66%, rgba(120,150,190,.14) 0%, transparent 68%),
    radial-gradient(70% 70% at 50% 120%, rgba(138,103,27,.14) 0%, transparent 70%);
  animation: hs-breathe 16s ease-in-out infinite alternate;
}
@keyframes hs-breathe {
  from { transform: translate3d(-1.5%, -1%, 0) scale(1); opacity: .85; }
  to   { transform: translate3d(2%, 1.5%, 0) scale(1.09); opacity: 1; }
}
/* Barn-door slats — a faint suggestion of light through a grid, drifting. */
.hs-hero__slats {
  position: absolute; inset: -30%; z-index: 0; pointer-events: none; opacity: .5;
  background: repeating-linear-gradient(104deg,
    transparent 0 78px, rgba(244,241,234,.028) 78px 80px,
    transparent 80px 190px, rgba(195,162,100,.03) 190px 191px);
  animation: hs-slats 34s linear infinite;
}
@keyframes hs-slats { to { transform: translate3d(-190px, 90px, 0); } }

.hs-hero .wrap { position: relative; z-index: 2; }
.hs-hero__grid { display: grid; gap: var(--space-5); align-items: center; }
@media (min-width: 1000px) { .hs-hero__grid { grid-template-columns: 1.06fr .94fr; gap: var(--space-4); } }

.hs-eyebrow {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--sans); font-size: 11.5px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--champagne); margin: 0 0 22px;
}
.hs-eyebrow::before {
  content: ""; width: 34px; height: 1px; background: var(--champagne); opacity: .7;
  transform-origin: left; animation: hs-rule 1.4s var(--ease) .3s both;
}
@keyframes hs-rule { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.hs-hero h1 {
  font-family: var(--serif); font-weight: 400; color: var(--ivory);
  font-size: clamp(36px, 5.6vw, 66px); line-height: 1.06; letter-spacing: -.015em;
  margin: 0 0 22px; max-width: 15ch;
}
.hs-hero h1 em { font-style: italic; color: var(--champagne); }
.hs-hero .hs-lede {
  font-family: var(--sans); font-size: clamp(15px, 1.65vw, 17.5px); line-height: 1.8;
  color: var(--muted-dk); max-width: 52ch; margin: 0 0 30px;
}
.hs-cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hs-hero__meta {
  display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 26px;
  font-family: var(--sans); font-size: 12.5px; letter-spacing: .06em; color: var(--muted);
}
.hs-hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hs-hero__meta svg { width: 14px; height: 14px; stroke: var(--champagne); fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

/* Hero stage — the visual half.  Works with zero photographs: it is a
   lit portrait frame with a moving highlight.  When headshot frames
   exist, hs.js drops them straight into .hs-stage__slot. */
.hs-stage { position: relative; aspect-ratio: 4/5; max-width: 520px; width: 100%; margin: 0 auto; }
@media (max-width: 999px) { .hs-stage { max-width: 330px; } }
.hs-stage__slot {
  position: absolute; inset: 0; border-radius: 16px; overflow: hidden;
  background: linear-gradient(158deg, #1b1b1f 0%, #101013 52%, #0b0b0d 100%);
  box-shadow: 0 46px 120px rgba(0,0,0,.62), inset 0 0 0 1px rgba(195,162,100,.20);
}
.hs-stage__slot img, .hs-stage__slot video { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Sweeping key light across the empty frame. */
.hs-stage__slot::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(118deg, transparent 34%, rgba(195,162,100,.16) 50%, transparent 66%);
  transform: translateX(-60%); animation: hs-sweep 7.5s var(--ease) infinite;
}
.hs-stage.has-photo .hs-stage__slot::after { animation-duration: 11s; opacity: .5; }
@keyframes hs-sweep { 0%,12% { transform: translateX(-70%);} 62%,100% { transform: translateX(80%);} }

/* The gold reticle that frames the face — pure CSS corners. */
.hs-stage__reticle { position: absolute; inset: 26px; pointer-events: none; }
.hs-stage__reticle i {
  position: absolute; width: 30px; height: 30px;
  border: 1.5px solid var(--champagne); opacity: .78;
}
.hs-stage__reticle i:nth-child(1) { top: 0; left: 0; border-right: 0; border-bottom: 0; animation: hs-corner 1s var(--ease) .5s both; }
.hs-stage__reticle i:nth-child(2) { top: 0; right: 0; border-left: 0; border-bottom: 0; animation: hs-corner 1s var(--ease) .62s both; }
.hs-stage__reticle i:nth-child(3) { bottom: 0; left: 0; border-right: 0; border-top: 0; animation: hs-corner 1s var(--ease) .74s both; }
.hs-stage__reticle i:nth-child(4) { bottom: 0; right: 0; border-left: 0; border-top: 0; animation: hs-corner 1s var(--ease) .86s both; }
@keyframes hs-corner { from { opacity: 0; transform: scale(.4); } to { opacity: .78; transform: none; } }

/* Little "REC"-style caption under the stage. */
.hs-stage__tag {
  position: absolute; left: 0; bottom: -34px;
  font-family: var(--sans); font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted); display: inline-flex; align-items: center; gap: 9px;
}
.hs-stage__tag b { width: 7px; height: 7px; border-radius: 50%; background: var(--champagne); animation: hs-pulse 2.2s ease-in-out infinite; }
@keyframes hs-pulse { 0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(195,162,100,.5);} 60% { opacity: .45; box-shadow: 0 0 0 7px rgba(195,162,100,0);} }

/* Scroll cue */
.hs-scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3;
  font-family: var(--sans); font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--muted); display: grid; justify-items: center; gap: 10px; opacity: .85;
}
.hs-scroll-cue i { display: block; width: 1px; height: 46px; background: linear-gradient(var(--champagne), transparent); }
.hs-scroll-cue i::after { content: ""; display: block; width: 1px; height: 14px; background: var(--champagne); animation: hs-drop 2.1s var(--ease) infinite; }
@keyframes hs-drop { 0% { transform: translateY(-14px); opacity: 0; } 30% { opacity: 1; } 100% { transform: translateY(46px); opacity: 0; } }
@media (max-width: 999px) { .hs-scroll-cue { display: none; } }

/* ── Marquee of value props ───────────────────────────────────── */
.hs-marquee {
  border-block: 1px solid rgba(195,162,100,.18);
  background: rgba(23,23,26,.5); overflow: hidden; padding: 16px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.hs-marquee__track { display: flex; width: max-content; animation: hs-march 38s linear infinite; }
.hs-marquee:hover .hs-marquee__track { animation-play-state: paused; }
.hs-marquee__track span {
  display: inline-flex; align-items: center; gap: 16px; padding: 0 26px; white-space: nowrap;
  font-family: var(--sans); font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--ivory-dim);
}
.hs-marquee__track span::after { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--champagne); opacity: .8; }
@keyframes hs-march { to { transform: translateX(-50%); } }

/* ── Numbers strip ────────────────────────────────────────────── */
.hs-figures { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(195,162,100,.16); }
@media (min-width: 820px) { .hs-figures { grid-template-columns: repeat(4, 1fr); } }
.hs-fig { background: var(--obsidian); padding: 34px 20px; text-align: center; position: relative; overflow: hidden; }
.hs-fig::before {
  content: ""; position: absolute; inset: auto 0 0 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
  transform: scaleX(0); transition: transform .9s var(--ease);
}
.hs-fig.is-in::before { transform: scaleX(1); }
.hs-fig b {
  display: block; font-family: var(--serif); font-weight: 400; color: var(--champagne);
  font-size: clamp(30px, 4.4vw, 46px); line-height: 1; margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.hs-fig span { font-family: var(--sans); font-size: 11px; letter-spacing: .17em; text-transform: uppercase; color: var(--muted); line-height: 1.7; }

/* ── Generic section heading for this page ───────────────────── */
.hs-head { max-width: 720px; margin: 0 0 var(--space-4); }
.hs-head--mid { margin-inline: auto; text-align: center; }
.hs-head h2 {
  font-family: var(--serif); font-weight: 400; color: var(--ivory);
  font-size: clamp(28px, 4.6vw, 48px); line-height: 1.12; letter-spacing: -.01em; margin: 0 0 16px;
}
.hs-head h2 em { font-style: italic; color: var(--champagne); }
.hs-head p {
  font-family: var(--sans); font-size: clamp(14.5px, 1.5vw, 16.5px); line-height: 1.85;
  color: var(--muted-dk); margin: 0; max-width: 60ch;
}
.hs-head--mid p { margin-inline: auto; }

/* ── Audience cards ───────────────────────────────────────────── */
.hs-who { display: grid; gap: 16px; }
@media (min-width: 700px) { .hs-who { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1060px) { .hs-who { grid-template-columns: repeat(4, 1fr); } }
.hs-who__card {
  position: relative; overflow: hidden; border-radius: 16px; padding: 30px 26px 32px;
  background: linear-gradient(162deg, #17171A 0%, #0F0F12 100%);
  border: 1px solid #26262B;
  transition: border-color .45s var(--ease), transform .45s var(--ease), box-shadow .45s var(--ease);
}
.hs-who__card:hover { border-color: rgba(195,162,100,.5); transform: translateY(-6px); box-shadow: 0 26px 60px rgba(0,0,0,.45); }
/* Gold sheen that crosses on hover. */
.hs-who__card::after {
  content: ""; position: absolute; top: 0; left: -75%; width: 50%; height: 100%;
  background: linear-gradient(104deg, transparent, rgba(195,162,100,.10), transparent);
  transform: skewX(-18deg); transition: left .85s var(--ease); pointer-events: none;
}
.hs-who__card:hover::after { left: 135%; }
.hs-who__ico { width: 40px; height: 40px; margin-bottom: 18px; stroke: var(--champagne); fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.hs-who__card h3 { font-family: var(--sans); font-size: 16px; font-weight: 600; color: var(--ivory); margin: 0 0 10px; letter-spacing: .01em; }
.hs-who__card p { font-family: var(--sans); font-size: 13.5px; line-height: 1.82; color: var(--muted-dk); margin: 0 0 16px; }
.hs-who__card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }
.hs-who__card li { font-family: var(--sans); font-size: 12.5px; color: var(--muted); display: flex; gap: 9px; line-height: 1.6; }
.hs-who__card li::before { content: ""; flex: 0 0 auto; width: 5px; height: 5px; margin-top: 7px; border-radius: 50%; background: var(--champagne); opacity: .75; }

/* ── The difference: sticky media, scrolling copy ─────────────── */
.hs-diff { display: grid; gap: var(--space-4); }
@media (min-width: 980px) { .hs-diff { grid-template-columns: .95fr 1.05fr; gap: var(--space-5); align-items: start; } }
.hs-diff__sticky { position: relative; }
@media (min-width: 980px) { .hs-diff__sticky { position: sticky; top: 120px; } }
.hs-diff__panel {
  position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 1/1;
  background: linear-gradient(158deg, #1b1b1f, #0b0b0d);
  box-shadow: 0 40px 100px rgba(0,0,0,.55), inset 0 0 0 1px rgba(195,162,100,.16);
  display: grid; place-items: center; padding: 34px; text-align: center;
}
.hs-diff__panel .hs-diff__num {
  font-family: var(--serif); font-size: clamp(64px, 12vw, 128px); color: var(--champagne);
  line-height: 1; opacity: .16; position: absolute; inset: auto auto 18px 26px;
}
.hs-diff__panel figure { margin: 0; position: relative; z-index: 1; }
.hs-diff__panel figcaption {
  font-family: var(--sans); font-size: 13px; line-height: 1.8; color: var(--ivory-dim); margin-top: 18px;
}
.hs-diff__icons { position: relative; width: 128px; height: 128px; margin: 0 auto 4px; }
.hs-diff__icons svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  stroke: var(--champagne); fill: none; stroke-width: 1; stroke-linecap: round; stroke-linejoin: round;
  opacity: 0; transform: scale(.86) rotate(-4deg);
  transition: opacity .5s var(--ease), transform .6s var(--ease);
}
.hs-diff__icons svg.is-on { opacity: 1; transform: none; }
/* A soft pool of light under the glyph so the panel is never a flat void. */
.hs-diff__panel::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(46% 40% at 50% 42%, rgba(195,162,100,.15), transparent 70%);
}
.hs-diff__panel::after {
  content: ""; position: absolute; left: 12%; right: 12%; bottom: 16%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(195,162,100,.45), transparent);
}

.hs-diff__list { display: grid; gap: 2px; }
.hs-diff__item {
  border-top: 1px solid #232329; padding: 30px 0 32px;
  transition: border-color .5s var(--ease);
}
.hs-diff__item:last-child { border-bottom: 1px solid #232329; }
.hs-diff__item.is-active { border-color: rgba(195,162,100,.45); }
.hs-diff__item h3 {
  font-family: var(--serif); font-weight: 400; color: var(--ivory);
  font-size: clamp(21px, 2.6vw, 28px); line-height: 1.3; margin: 0 0 12px;
  display: flex; gap: 16px; align-items: baseline;
}
.hs-diff__item h3 b {
  font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .2em;
  color: var(--champagne); flex: 0 0 auto; opacity: .85;
}
.hs-diff__item p { font-family: var(--sans); font-size: 14.5px; line-height: 1.88; color: var(--muted-dk); margin: 0; padding-left: 40px; }
@media (max-width: 620px) { .hs-diff__item p { padding-left: 0; } }

/* ── Before / after comparison ────────────────────────────────── */
.hs-compare {
  position: relative; max-width: 880px; margin: 0 auto; border-radius: 16px; overflow: hidden;
  aspect-ratio: 4/3; background: #101013; box-shadow: 0 40px 100px rgba(0,0,0,.5);
  cursor: ew-resize; touch-action: pan-y; user-select: none;
}
.hs-compare img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hs-compare__after { clip-path: inset(0 0 0 var(--split, 50%)); }
.hs-compare__bar { position: absolute; top: 0; bottom: 0; left: var(--split, 50%); width: 2px; background: var(--champagne); z-index: 3; }
.hs-compare__knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%; background: rgba(10,10,11,.86);
  border: 1.5px solid var(--champagne); display: grid; place-items: center; gap: 3px;
  grid-auto-flow: column; box-shadow: 0 8px 26px rgba(0,0,0,.5);
}
.hs-compare__knob svg { width: 20px; height: 20px; stroke: var(--champagne); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hs-compare__label {
  position: absolute; bottom: 16px; z-index: 4; font-family: var(--sans); font-size: 10.5px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--ivory);
  background: rgba(10,10,11,.72); padding: 7px 13px; border-radius: 999px;
  border: 1px solid rgba(195,162,100,.35); backdrop-filter: blur(5px);
}
.hs-compare__label.is-l { left: 16px; } .hs-compare__label.is-r { right: 16px; }

/* ── Packages ─────────────────────────────────────────────────── */
.hs-plans { display: grid; gap: 18px; align-items: stretch; }
@media (min-width: 900px) { .hs-plans { grid-template-columns: repeat(3, 1fr); } }
.hs-plan {
  position: relative; display: flex; flex-direction: column; border-radius: 18px; padding: 34px 28px 32px;
  background: linear-gradient(168deg, #17171A 0%, #0E0E11 100%);
  border: 1px solid #26262B;
  transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.hs-plan:hover { transform: translateY(-6px); border-color: rgba(195,162,100,.42); box-shadow: 0 30px 70px rgba(0,0,0,.5); }
.hs-plan--feature { border-color: rgba(195,162,100,.55); background: linear-gradient(168deg, #1D1B16 0%, #101013 100%); }
@media (min-width: 900px) { .hs-plan--feature { transform: scale(1.035); } .hs-plan--feature:hover { transform: scale(1.035) translateY(-6px); } }
.hs-plan__flag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--champagne); color: var(--obsidian); font-family: var(--sans);
  font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; white-space: nowrap;
}
.hs-plan h3 { font-family: var(--serif); font-weight: 400; font-size: 27px; color: var(--ivory); margin: 0 0 6px; }
.hs-plan__for { font-family: var(--sans); font-size: 12px; letter-spacing: .13em; text-transform: uppercase; color: var(--champagne); margin: 0 0 22px; }
.hs-plan__price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.hs-plan__price b { font-family: var(--serif); font-weight: 400; font-size: 44px; color: var(--ivory); line-height: 1; font-variant-numeric: tabular-nums; }
.hs-plan__price span { font-family: var(--sans); font-size: 12.5px; color: var(--muted); }
.hs-plan__note { font-family: var(--sans); font-size: 12.5px; color: var(--muted); margin: 0 0 24px; line-height: 1.7; }
.hs-plan ul { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 12px; flex: 1 1 auto; }
.hs-plan li { display: flex; gap: 12px; font-family: var(--sans); font-size: 13.5px; line-height: 1.65; color: var(--ivory-dim); }
.hs-plan li svg { flex: 0 0 auto; width: 15px; height: 15px; margin-top: 3px; stroke: var(--champagne); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.hs-plan .btn { width: 100%; justify-content: center; text-align: center; }
.hs-addons {
  margin-top: var(--space-4); display: grid; gap: 12px; padding: 26px 28px; border-radius: 14px;
  border: 1px dashed rgba(195,162,100,.32); background: rgba(23,23,26,.42);
}
@media (min-width: 760px) { .hs-addons { grid-template-columns: repeat(2, 1fr); column-gap: 40px; } }
.hs-addons h4 { grid-column: 1/-1; font-family: var(--sans); font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--champagne); margin: 0 0 4px; }
.hs-addons div { display: flex; justify-content: space-between; gap: 18px; font-family: var(--sans); font-size: 13.5px; color: var(--ivory-dim); border-bottom: 1px solid #202024; padding-bottom: 10px; }
.hs-addons div b { color: var(--ivory); font-weight: 500; white-space: nowrap; }

/* ── Session timeline ─────────────────────────────────────────── */
.hs-flow { position: relative; max-width: 800px; margin: 0 auto; padding-left: 54px; }
@media (max-width: 620px) { .hs-flow { padding-left: 38px; } }
.hs-flow__rail { position: absolute; left: 15px; top: 8px; bottom: 8px; width: 2px; background: #232329; overflow: hidden; }
@media (max-width: 620px) { .hs-flow__rail { left: 7px; } }
.hs-flow__rail i { display: block; width: 100%; height: 100%; background: linear-gradient(var(--champagne), var(--gold-deep)); transform-origin: top; transform: scaleY(var(--p, 0)); }
.hs-step { position: relative; padding: 0 0 40px; }
.hs-step:last-child { padding-bottom: 0; }
.hs-step__dot {
  position: absolute; left: -54px; top: 3px; width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid #2E2E35; background: var(--obsidian); display: grid; place-items: center;
  font-family: var(--sans); font-size: 11px; color: var(--muted); font-weight: 600;
  transition: border-color .5s var(--ease), color .5s var(--ease), background .5s var(--ease), box-shadow .5s var(--ease);
}
@media (max-width: 620px) { .hs-step__dot { left: -38px; width: 24px; height: 24px; font-size: 10px; } }
.hs-step.is-active .hs-step__dot { border-color: var(--champagne); color: var(--obsidian); background: var(--champagne); box-shadow: 0 0 0 6px rgba(195,162,100,.13); }
.hs-step h3 { font-family: var(--sans); font-size: 16px; font-weight: 600; color: var(--ivory); margin: 0 0 4px; }
.hs-step__when { font-family: var(--sans); font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--champagne); margin: 0 0 10px; }
.hs-step p { font-family: var(--sans); font-size: 14px; line-height: 1.85; color: var(--muted-dk); margin: 0; }

/* ── Wardrobe / prep grid ─────────────────────────────────────── */
.hs-prep { display: grid; gap: 18px; }
@media (min-width: 780px) { .hs-prep { grid-template-columns: repeat(3, 1fr); } }
.hs-prep__col { border-radius: 16px; padding: 28px 26px; background: rgba(23,23,26,.5); border: 1px solid #232329; }
.hs-prep__col h3 { font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--champagne); margin: 0 0 18px; }
.hs-prep__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.hs-prep__col li { display: flex; gap: 12px; font-family: var(--sans); font-size: 13.5px; line-height: 1.75; color: var(--ivory-dim); }
.hs-prep__col li svg { flex: 0 0 auto; width: 15px; height: 15px; margin-top: 4px; fill: none; stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; }
.hs-prep__col--yes li svg { stroke: #7BBF8E; }
.hs-prep__col--no  li svg { stroke: #C97C6E; }
.hs-prep__col--tip li svg { stroke: var(--champagne); }

/* ── Type guide (actors) ──────────────────────────────────────── */
.hs-types { display: grid; gap: 14px; }
@media (min-width: 640px) { .hs-types { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .hs-types { grid-template-columns: repeat(3, 1fr); } }
.hs-type {
  border-radius: 14px; padding: 24px 22px; border: 1px solid #232329;
  background: linear-gradient(160deg, rgba(23,23,26,.8), rgba(14,14,17,.8));
  transition: border-color .4s var(--ease), transform .4s var(--ease);
}
.hs-type:hover { border-color: rgba(195,162,100,.42); transform: translateY(-4px); }
.hs-type b { display: block; font-family: var(--sans); font-size: 12px; letter-spacing: .17em; text-transform: uppercase; color: var(--champagne); margin-bottom: 10px; }
.hs-type p { font-family: var(--sans); font-size: 13.5px; line-height: 1.8; color: var(--muted-dk); margin: 0; }

/* ── Studio ───────────────────────────────────────────────────── */
.hs-studio { display: grid; gap: var(--space-4); align-items: center; }
@media (min-width: 940px) { .hs-studio { grid-template-columns: 1fr 1fr; gap: var(--space-5); } }
.hs-studio__facts { list-style: none; margin: var(--space-3) 0 0; padding: 0; display: grid; gap: 16px; }
.hs-studio__facts li { display: flex; gap: 14px; font-family: var(--sans); font-size: 14px; line-height: 1.75; color: var(--ivory-dim); }
.hs-studio__facts svg { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 2px; stroke: var(--champagne); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.hs-studio__card {
  border-radius: 18px; padding: 34px 30px; border: 1px solid rgba(195,162,100,.22);
  background: linear-gradient(158deg, rgba(29,27,22,.9), rgba(14,14,17,.9));
  box-shadow: 0 34px 80px rgba(0,0,0,.45);
}
.hs-studio__card h3 { font-family: var(--serif); font-weight: 400; font-size: 26px; color: var(--ivory); margin: 0 0 8px; }
.hs-studio__card p { font-family: var(--sans); font-size: 14px; line-height: 1.85; color: var(--muted-dk); margin: 0 0 22px; }
.hs-areas { display: flex; flex-wrap: wrap; gap: 8px; }
.hs-areas span {
  font-family: var(--sans); font-size: 12px; color: var(--muted); padding: 7px 13px;
  border-radius: 999px; border: 1px solid #2A2A30; transition: border-color .3s var(--ease), color .3s var(--ease);
}
.hs-areas span:hover { border-color: rgba(195,162,100,.45); color: var(--ivory-dim); }

/* ── FAQ accordion ────────────────────────────────────────────── */
.hs-faq { max-width: 840px; margin: 0 auto; }
.hs-q { border-bottom: 1px solid #232329; }
.hs-q__btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  background: none; border: 0; padding: 24px 2px; cursor: pointer; text-align: left;
  font-family: var(--sans); font-size: clamp(15px, 1.7vw, 17px); font-weight: 500; color: var(--ivory);
  transition: color .3s var(--ease);
}
.hs-q__btn:hover { color: var(--champagne); }
.hs-q__sign { position: relative; flex: 0 0 auto; width: 18px; height: 18px; }
.hs-q__sign::before, .hs-q__sign::after {
  content: ""; position: absolute; inset: 50% 0 auto 0; height: 1.5px; background: var(--champagne);
  transition: transform .42s var(--ease);
}
.hs-q__sign::after { transform: rotate(90deg); }
.hs-q.is-open .hs-q__sign::after { transform: rotate(0); }
.hs-q__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .48s var(--ease); }
.hs-q.is-open .hs-q__body { grid-template-rows: 1fr; }
.hs-q__body > div { overflow: hidden; }
.hs-q__body p {
  font-family: var(--sans); font-size: 14.5px; line-height: 1.9; color: var(--muted-dk);
  margin: 0; padding: 0 44px 26px 2px;
}
.hs-q__body p + p { padding-top: 14px; }

/* ── Closing CTA ──────────────────────────────────────────────── */
.hs-final { position: relative; overflow: hidden; text-align: center; padding-block: var(--space-5); }
.hs-final__glow {
  position: absolute; inset: -40% -10%; pointer-events: none; z-index: 0;
  background: radial-gradient(50% 46% at 50% 46%, rgba(195,162,100,.17), transparent 70%);
  animation: hs-breathe 14s ease-in-out infinite alternate;
}
.hs-final .wrap { position: relative; z-index: 1; }
.hs-final h2 { font-family: var(--serif); font-weight: 400; color: var(--ivory); font-size: clamp(30px, 5.2vw, 56px); line-height: 1.1; margin: 0 auto 18px; max-width: 17ch; }
.hs-final h2 em { font-style: italic; color: var(--champagne); }
.hs-final p { font-family: var(--sans); font-size: 15.5px; line-height: 1.85; color: var(--muted-dk); max-width: 54ch; margin: 0 auto 32px; }
.hs-final .hs-cta-row { justify-content: center; }
.hs-final__fine { font-size: 12.5px !important; color: var(--muted) !important; margin-top: 26px !important; }

@media (max-width: 900px) { .hs-final { padding-block: var(--space-4); } }

/* ── Magnetic buttons (desktop pointers only) ────────────────── */
.hs-mag { transition: transform .35s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease); }

/* ── Sticky mobile booking bar ───────────────────────────────── */
.hs-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
  display: none; gap: 10px; padding: 11px 14px calc(11px + env(safe-area-inset-bottom));
  background: rgba(10,10,11,.92); backdrop-filter: blur(10px);
  border-top: 1px solid rgba(195,162,100,.24);
  transform: translateY(110%); transition: transform .45s var(--ease);
}
.hs-bar.is-up { transform: none; }
.hs-bar .btn { flex: 1 1 0; justify-content: center; text-align: center; font-size: 13px; padding: 13px 10px; }
@media (max-width: 860px) { .hs-bar { display: flex; } body.hs-page { padding-bottom: 0; } }

/* ── Reduced motion: strip everything moving ─────────────────── */
@media (prefers-reduced-motion: reduce) {
  [data-hs-rev], [data-hs-rev].is-in { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }
  .hs-w > i { transform: none !important; transition: none !important; }
  .hs-hero__light, .hs-hero__slats, .hs-stage__slot::after, .hs-stage__reticle i,
  .hs-marquee__track, .hs-scroll-cue i::after, .hs-stage__tag b, .hs-final__glow,
  .hs-diff__glyph .hs-dash { animation: none !important; }
  .hs-eyebrow::before { animation: none !important; transform: none !important; }
  .hs-compare, .hs-plan, .hs-who__card, .hs-type { transition: none !important; }
}

/* ── Recent frames gallery ────────────────────────────────────
   Ships hidden; hs.js unhides it once manifest.json lists files. */
.hs-gal__grid { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px)  { .hs-gal__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1080px) { .hs-gal__grid { grid-template-columns: repeat(4, 1fr); } }
.hs-gal__item { margin: 0; position: relative; border-radius: 12px; overflow: hidden; background: #101013; }
.hs-gal__item img {
  display: block; width: 100%; height: 100%; aspect-ratio: 4/5; object-fit: cover;
  transition: transform .9s var(--ease), filter .5s var(--ease);
}
.hs-gal__item:hover img { transform: scale(1.045); }
.hs-gal__item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 26px 14px 12px;
  background: linear-gradient(transparent, rgba(10,10,11,.86));
  font-family: var(--sans); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ivory-dim); opacity: 0; transform: translateY(8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.hs-gal__item:hover figcaption { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .hs-gal__item img, .hs-gal__item figcaption { transition: none !important; }
  .hs-gal__item figcaption { opacity: 1; transform: none; }
}


/* ── The slate ────────────────────────────────────────────────
   What sits in the hero frame until real headshot frames exist.
   Deliberately a film slate rather than a placeholder: this is a
   film company, and it makes the empty frame read as art direction
   instead of a missing image. hs.js removes it when a photo loads. */
.hs-slate { position: absolute; inset: 0; display: flex; flex-direction: column; }
.hs-stage.has-photo .hs-slate { display: none; }
.hs-slate__bar { display: flex; height: 34px; flex: 0 0 auto; overflow: hidden; transform: skewX(-14deg) translateX(-6px); width: 106%; }
.hs-slate__bar i { flex: 1 1 0; background: var(--champagne); }
.hs-slate__bar i:nth-child(even) { background: #0E0E11; }
.hs-slate__body {
  flex: 1 1 auto; display: flex; flex-direction: column; justify-content: center;
  padding: 26px 32px 30px; gap: 14px;
}
@media (max-width: 480px) { .hs-slate__body { padding: 20px 22px 24px; } }
.hs-slate__mark {
  font-family: var(--sans); font-size: 10.5px; letter-spacing: .34em; text-transform: uppercase;
  color: var(--champagne); margin: 0; opacity: .9;
}
.hs-slate__title {
  font-family: var(--serif); font-weight: 400; font-style: italic; color: var(--ivory);
  font-size: clamp(30px, 4.4vw, 44px); line-height: 1; margin: 0 0 4px;
}
.hs-slate__rows { margin: 0; display: grid; gap: 0; border-top: 1px solid rgba(195,162,100,.22); }
.hs-slate__rows > div {
  display: flex; justify-content: space-between; gap: 16px; padding: 9px 0;
  border-bottom: 1px solid rgba(195,162,100,.14);
}
.hs-slate__rows dt {
  font-family: var(--sans); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted);
}
.hs-slate__rows dd { margin: 0; font-family: var(--sans); font-size: 12.5px; color: var(--ivory-dim); }
.hs-slate__foot {
  margin: 2px 0 0; font-family: var(--sans); font-size: 10px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--muted);
}
.hs-slate__foot b { color: var(--champagne); font-weight: 500; font-variant-numeric: tabular-nums; }


/* ── Journal links ────────────────────────────────────────── */
.hs-reads { display: grid; gap: 2px; max-width: 900px; margin: 0 auto; }
.hs-read {
  display: grid; gap: 6px; padding: 22px 20px; border-radius: 12px;
  border: 1px solid transparent; border-bottom-color: #232329;
  text-decoration: none; transition: border-color .35s var(--ease), background .35s var(--ease),
                                     transform .35s var(--ease);
}
.hs-read:hover { background: rgba(23,23,26,.6); border-color: rgba(195,162,100,.35); transform: translateX(4px); }
.hs-read b {
  font-family: var(--serif); font-weight: 400; font-size: clamp(17px, 2.1vw, 21px);
  color: var(--ivory); line-height: 1.35;
}
.hs-read:hover b { color: var(--champagne); }
.hs-read span { font-family: var(--sans); font-size: 13.5px; line-height: 1.7; color: var(--muted-dk); }
@media (prefers-reduced-motion: reduce) { .hs-read { transition: none !important; } }
