/* ==========================================================================
   Gigi Indigo - Natural Luxury Model
   Editorial portfolio design system
   ========================================================================== */

/* ---- Reset & base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; color: inherit; }

/* ---- Tokens ---- */
:root {
  /* Palette: warm ivory canvas + ink + restrained gold + earth */
  --ivory: #f5f0e6;
  --ivory-pure: #faf6ec;
  --ivory-2: #ece4d3;
  --ink: #0e0d0b;
  --ink-soft: #2b2925;
  --mute: #7a7468;
  --mute-2: #a8a195;
  --rule: #d8cfbe;
  --rule-soft: #e6dfd0;
  --gold: #a8895c;
  --gold-deep: #8a6e43;
  --gold-glow: rgba(168, 137, 92, 0.18);
  --clay: #4a4138;
  --leaf: #5b6a52;

  --shadow-sm: 0 1px 2px rgba(14,13,11,.06), 0 2px 6px rgba(14,13,11,.04);
  --shadow-md: 0 8px 30px rgba(14,13,11,.10);
  --shadow-lg: 0 20px 60px rgba(14,13,11,.18);

  --r-xs: 2px;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 22px;
  --r-pill: 999px;

  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --max: 1320px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --gutter: clamp(1rem, 2vw, 2rem);

  --serif: 'Fraunces', 'Cormorant Garamond', 'Times New Roman', serif;
  --script: 'Italiana', 'Fraunces', serif;
  --sans: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --header-h: 88px;
}

@media (max-width: 760px) {
  :root { --header-h: 68px; }
}

/* ---- Base typography ---- */
body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: .005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-feature-settings: 'ss01' on, 'cv11' on;
}

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 380;
  letter-spacing: -0.018em;
  line-height: 1.05;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  color: var(--ink);
}

h1 { font-size: clamp(2.6rem, 7.5vw, 6rem); }
h2 { font-size: clamp(2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 2.6vw, 2.2rem); font-variation-settings: 'opsz' 96, 'SOFT' 30; }
h4 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); font-variation-settings: 'opsz' 48; line-height: 1.2; }
h5 { font-size: 1rem; font-variation-settings: 'opsz' 14; }

p { color: var(--ink-soft); }
p + p { margin-top: 1em; }

.script { font-family: var(--script); font-style: normal; font-weight: 400; letter-spacing: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .8em;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--mute);
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px; background: var(--gold);
}
.eyebrow.no-bar::before { display: none; }
.eyebrow.center { justify-content: center; }
.eyebrow.gold { color: var(--gold-deep); }

.lede {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 36;
  font-weight: 360;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.45;
  color: var(--ink-soft);
  letter-spacing: -0.01em;
}

.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 380; }

.skip-link {
  position: absolute; left: -9999px;
  background: var(--ink); color: var(--ivory); padding: .8rem 1.2rem;
  z-index: 200;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---- Layout ---- */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding-inline: var(--pad); }
.container-tight { width: 100%; max-width: 880px; margin: 0 auto; padding-inline: var(--pad); }
.container-wide { width: 100%; max-width: 1600px; margin: 0 auto; padding-inline: var(--pad); }

section { padding-block: clamp(4rem, 9vw, 8rem); position: relative; }
.section-tight { padding-block: clamp(2.5rem, 5vw, 4.5rem); }

.divider { height: 1px; background: var(--rule); border: 0; margin: 0; }
.dot { display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); vertical-align: middle; margin: 0 .9em; }

/* ---- Header ---- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled,
.site-header.solid {
  background: rgba(245, 240, 230, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--rule);
}
.site-header.dark:not(.scrolled) { color: var(--ivory); }
.site-header.dark:not(.scrolled) .brand-mark .underline { background: var(--ivory); }
.site-header.dark:not(.scrolled) .nav-primary a { color: var(--ivory); }
.site-header.dark:not(.scrolled) .nav-cta { border-color: rgba(250,246,236,.5); color: var(--ivory); }

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex; flex-direction: column; align-items: flex-start;
  line-height: 1;
}
.brand-mark {
  font-family: var(--script);
  font-size: 1.7rem;
  letter-spacing: .02em;
  position: relative;
}
.brand-mark .underline {
  display: block;
  width: 100%; height: 1px;
  background: var(--ink);
  margin-top: 6px;
  opacity: .85;
  transition: background .3s var(--ease);
}
.brand-sub {
  font-family: var(--sans);
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 6px;
}

.nav-primary { display: flex; justify-content: center; }
.nav-primary > ul {
  display: flex;
  gap: clamp(1rem, 2.4vw, 2.3rem);
  align-items: center;
}
.nav-primary a {
  position: relative;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 8px 2px;
  transition: color .3s var(--ease);
}
.nav-primary a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 2px;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav-primary a:hover::after,
.nav-primary a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.header-right { display: flex; justify-content: flex-end; align-items: center; gap: .9rem; }
.nav-cta {
  display: inline-flex; align-items: center; gap: .6em;
  padding: .7em 1.4em;
  border: 1px solid var(--ink);
  border-radius: var(--r-pill);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.nav-cta:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink); }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border: 1px solid var(--rule);
  border-radius: 50%;
}
.menu-toggle .bars { display: block; width: 18px; height: 10px; position: relative; }
.menu-toggle .bars::before,
.menu-toggle .bars::after {
  content: ''; position: absolute; left: 0; right: 0; height: 1px; background: currentColor;
  transition: transform .35s var(--ease), top .35s var(--ease);
}
.menu-toggle .bars::before { top: 2px; }
.menu-toggle .bars::after { top: 7px; }
.menu-toggle[aria-expanded="true"] .bars::before { top: 4px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .bars::after { top: 4px; transform: rotate(-45deg); }

@media (max-width: 980px) {
  .nav-primary, .header-right .nav-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-inner { grid-template-columns: 1fr auto; }
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 90;
  background: var(--ivory-pure);
  transform: translateY(-100%);
  transition: transform .55s var(--ease-out);
  display: flex; flex-direction: column;
  padding-top: var(--header-h);
  visibility: hidden;
}
.mobile-drawer.open { transform: translateY(0); visibility: visible; }
.mobile-drawer ul { padding: 2.5rem var(--pad); display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-drawer a {
  font-family: var(--serif);
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 380;
  letter-spacing: -0.02em;
  display: block;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1.25rem;
  position: relative;
}
.mobile-drawer a .num {
  font-family: var(--sans); font-size: .7rem; letter-spacing: .25em;
  color: var(--gold-deep); text-transform: uppercase;
  position: absolute; right: 0; top: 14px;
}
.mobile-drawer .drawer-foot {
  margin-top: auto;
  padding: 2rem var(--pad) 2.5rem;
  border-top: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 1rem;
  color: var(--mute);
}
.mobile-drawer .drawer-foot a { font-family: var(--sans); font-size: .85rem; letter-spacing: .02em; border: 0; padding: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: .75em;
  padding: 1.05em 2em;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  border: 1px solid currentColor;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn .arrow { transition: transform .4s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-ink { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.btn-ink:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--ivory); }
.btn-ghost-light { background: transparent; color: var(--ivory); border-color: rgba(250,246,236,.6); }
.btn-ghost-light:hover { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.btn-gold { background: var(--gold); color: var(--ivory); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); }

.link-ul {
  display: inline-flex; align-items: center; gap: .5em;
  position: relative;
  font-family: var(--sans); font-size: .75rem;
  letter-spacing: .22em; text-transform: uppercase; font-weight: 500;
  color: var(--ink);
  padding-bottom: 4px;
}
.link-ul::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: currentColor;
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.link-ul:hover::after { transform: scaleX(0); transform-origin: right; }
.link-ul .arrow { transition: transform .4s var(--ease); }
.link-ul:hover .arrow { transform: translate(3px, -3px); }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--ink);
  color: var(--ivory);
  overflow: hidden;
  display: grid;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,13,11,.55) 0%, rgba(14,13,11,.15) 40%, rgba(14,13,11,.7) 100%);
  z-index: 1;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
  filter: saturate(.92) contrast(1.02);
  transform: scale(1.06);
  will-change: transform;
}
.hero-inner {
  position: relative; z-index: 2;
  padding-top: calc(var(--header-h) + clamp(1.5rem, 4vw, 4rem));
  padding-bottom: clamp(2.5rem, 5vw, 5rem);
  width: 100%;
  display: grid;
  align-content: space-between;
  gap: 2rem;
  min-height: 100svh;
}
.hero-top {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 2rem;
}
.hero-meta {
  display: flex; flex-direction: column; gap: .25rem;
  font-family: var(--sans); font-size: .7rem; letter-spacing: .3em;
  text-transform: uppercase; color: rgba(250,246,236,.78);
}
.hero-meta strong { color: var(--ivory); font-weight: 500; }

.hero-title-wrap {
  max-width: 1200px;
}
.hero-title {
  color: var(--ivory);
  font-size: clamp(2.8rem, 8.6vw, 7rem);
  line-height: .96;
  font-weight: 360;
  letter-spacing: -0.025em;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}
.hero-title .it { font-style: italic; font-weight: 320; color: var(--gold); font-variation-settings: 'opsz' 144, 'SOFT' 100; }
.hero-title.small { font-size: clamp(1rem, 1.5vw, 1.3rem); font-style: italic; font-weight: 380;
  letter-spacing: 0.005em; margin-top: 1.4rem; line-height: 1.4; max-width: 640px;
  color: rgba(250,246,236,.85); font-variation-settings: 'opsz' 36; }

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: clamp(1.5rem, 4vw, 4rem);
}
.hero-desc {
  max-width: 460px;
  font-size: 1rem; line-height: 1.55;
  color: rgba(250,246,236,.82);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: clamp(1.5rem, 3vw, 3rem);
  text-align: right;
  border-top: 1px solid rgba(250,246,236,.2);
  padding-top: 1.2rem;
}
.hero-stat .num {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 360;
  font-style: italic;
  color: var(--gold);
}
.hero-stat .lab {
  display: block;
  font-family: var(--sans); font-size: .65rem;
  letter-spacing: .26em; text-transform: uppercase;
  color: rgba(250,246,236,.62);
  margin-top: .3em;
}

.hero-scroll {
  position: absolute; left: 50%; bottom: 1.6rem;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--sans); font-size: .65rem;
  letter-spacing: .35em; text-transform: uppercase;
  color: rgba(250,246,236,.78);
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
}
.hero-scroll .line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(250,246,236,.8));
  animation: scrollLine 2.4s var(--ease) infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 760px) {
  .hero-bottom { grid-template-columns: 1fr; }
  .hero-stats { text-align: left; justify-content: start; }
}

/* ---- Reveal animations ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }
.reveal-delay-4 { transition-delay: .48s; }

.split-line { overflow: hidden; display: block; }
.split-line > span { display: block; transform: translateY(110%); transition: transform 1.1s var(--ease-out); }
.split-line.in > span { transform: translateY(0); }

/* ---- Marquee ---- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 1.6rem 0;
  background: var(--ivory);
}
.marquee-track {
  display: flex; gap: 4rem; white-space: nowrap;
  animation: marquee 38s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: var(--serif); font-style: italic; font-weight: 380;
  font-size: clamp(1.4rem, 2.2vw, 2rem); color: var(--ink);
  display: inline-flex; align-items: center; gap: 4rem;
}
.marquee-item::after { content: '◆'; color: var(--gold); font-size: .55em; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---- About / Manifesto strip ---- */
.about-strip {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.about-strip .copy h2 { margin-top: 1rem; }
.about-strip .copy .lede { margin-top: 1.5rem; max-width: 540px; }
.about-strip .copy p.body { margin-top: 1.25rem; max-width: 560px; color: var(--ink-soft); line-height: 1.7; }
.about-strip .copy .sig {
  margin-top: 2rem;
  font-family: var(--script); font-size: 2rem;
  color: var(--gold-deep);
  letter-spacing: 0;
}
.about-strip .cta-row { margin-top: 2.5rem; display: flex; gap: 1rem; flex-wrap: wrap; }

.about-img {
  position: relative;
  aspect-ratio: 3/4;
  background-size: cover; background-position: center;
  overflow: hidden;
}
.about-img::after {
  content: ''; position: absolute; inset: auto auto -24px -24px;
  width: 60%; height: 60%;
  border: 1px solid var(--gold);
  z-index: -1;
}
.about-img.framed { padding: 1.2rem; background-clip: padding-box; }

@media (max-width: 880px) {
  .about-strip { grid-template-columns: 1fr; }
}

/* ---- Pillars (values) ---- */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.pillar {
  background: var(--ivory);
  padding: clamp(1.8rem, 3vw, 2.6rem) clamp(1.5rem, 2.5vw, 2.2rem);
  display: flex; flex-direction: column; gap: .9rem;
  position: relative;
  transition: background .4s var(--ease);
}
.pillar:hover { background: var(--ivory-pure); }
.pillar .num {
  font-family: var(--sans); font-size: .7rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gold-deep);
}
.pillar h3 { font-style: italic; font-size: clamp(1.4rem, 2vw, 1.8rem); }
.pillar p { font-size: .92rem; color: var(--mute); line-height: 1.65; }
@media (max-width: 920px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .pillars { grid-template-columns: 1fr; } }

/* ---- Editorial grid (home featured) ---- */
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1rem, 1.6vw, 1.6rem);
}
.ed-card {
  position: relative; overflow: hidden;
  background: var(--ivory-2);
  display: block;
}
.ed-card .img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1.2s var(--ease-out), filter .6s var(--ease);
}
.ed-card:hover .img { transform: scale(1.06); }
.ed-card .meta {
  position: absolute; left: 1.4rem; bottom: 1.2rem; right: 1.4rem;
  color: var(--ivory);
  display: flex; justify-content: space-between; align-items: flex-end;
  z-index: 2;
  font-family: var(--sans); font-size: .68rem; letter-spacing: .28em;
  text-transform: uppercase;
  opacity: 0; transform: translateY(8px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.ed-card::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 50%, rgba(14,13,11,.6) 100%);
  opacity: 0; transition: opacity .5s var(--ease);
}
.ed-card:hover::after { opacity: 1; }
.ed-card:hover .meta { opacity: 1; transform: translateY(0); }

.ed-a { grid-column: span 7; aspect-ratio: 4/5; }
.ed-b { grid-column: span 5; aspect-ratio: 4/5; }
.ed-c { grid-column: span 5; aspect-ratio: 3/4; }
.ed-d { grid-column: span 4; aspect-ratio: 3/4; }
.ed-e { grid-column: span 3; aspect-ratio: 3/4; }
@media (max-width: 880px) {
  .ed-a, .ed-b, .ed-c, .ed-d, .ed-e { grid-column: span 12; aspect-ratio: 3/4; }
}

/* ---- Big quote ---- */
.quote-block {
  background: var(--ink); color: var(--ivory);
  padding-block: clamp(5rem, 10vw, 9rem);
  text-align: center;
  position: relative;
}
.quote-block::before {
  content: '"'; font-family: var(--serif); font-style: italic;
  font-size: 16rem; line-height: 1; color: var(--gold);
  position: absolute; top: 1rem; left: 50%; transform: translateX(-50%);
  opacity: .25;
}
.quote-block blockquote {
  font-family: var(--serif); font-weight: 360; font-variation-settings: 'opsz' 144, 'SOFT' 50;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  font-style: italic;
  line-height: 1.2;
  letter-spacing: -0.015em;
  max-width: 1000px; margin: 0 auto;
  color: var(--ivory);
  position: relative;
}
.quote-block cite {
  display: block; margin-top: 2rem;
  font-family: var(--sans); font-style: normal;
  font-size: .72rem; letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(250,246,236,.68);
}

/* ---- Services strip ---- */
.services-list { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--rule); }
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.4fr auto;
  gap: clamp(1rem, 3vw, 3rem);
  align-items: center;
  padding: clamp(1.8rem, 3vw, 2.4rem) 0;
  border-bottom: 1px solid var(--rule);
  transition: padding .35s var(--ease);
}
.service-row:hover { padding-left: 1rem; }
.service-row .num {
  font-family: var(--sans); font-size: .7rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold-deep);
}
.service-row h3 {
  font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic; font-weight: 380;
}
.service-row p { color: var(--mute); font-size: .95rem; max-width: 560px; }
.service-row .go {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  transition: background .4s var(--ease), color .4s var(--ease), transform .4s var(--ease);
}
.service-row:hover .go { background: var(--ink); color: var(--ivory); transform: rotate(-12deg); }
@media (max-width: 720px) {
  .service-row { grid-template-columns: 1fr; gap: .6rem; }
  .service-row .go { justify-self: end; }
}

/* ---- Journey timeline ---- */
.journey {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(2rem, 5vw, 5rem);
}
.journey-head { position: sticky; top: calc(var(--header-h) + 2rem); align-self: start; }
.journey-list { display: flex; flex-direction: column; gap: 0; }
.journey-step {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 2rem;
  padding-block: clamp(1.6rem, 3vw, 2.2rem);
  border-top: 1px solid var(--rule);
}
.journey-step:last-child { border-bottom: 1px solid var(--rule); }
.journey-step .when {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  color: var(--gold-deep);
}
.journey-step h3 { font-style: italic; font-size: clamp(1.3rem, 1.8vw, 1.6rem); }
.journey-step p { margin-top: .6rem; color: var(--ink-soft); }
@media (max-width: 880px) {
  .journey { grid-template-columns: 1fr; }
  .journey-step { grid-template-columns: 1fr; gap: .4rem; }
}

/* ---- Footer ---- */
.site-footer {
  background: var(--ink); color: var(--ivory);
  padding-top: clamp(4rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(250,246,236,.14);
}
.footer-brand { max-width: 360px; }
.footer-brand .word {
  font-family: var(--serif); font-style: italic; font-weight: 360;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.02em;
}
.footer-brand .word .it { color: var(--gold); }
.footer-brand p { color: rgba(250,246,236,.7); margin-top: 1.2rem; font-size: .95rem; }
.footer-brand .find-us { margin-top: 1.4rem; display: flex; gap: .8rem; }
.footer-brand .find-us a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(250,246,236,.28);
  display: flex; align-items: center; justify-content: center;
  color: var(--ivory);
  transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.footer-brand .find-us a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

.footer-col h5 {
  font-family: var(--sans);
  font-size: .68rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .8rem; }
.footer-col a {
  font-family: var(--serif); font-size: 1.1rem;
  color: rgba(250,246,236,.88);
  transition: color .3s var(--ease), letter-spacing .3s var(--ease);
}
.footer-col a:hover { color: var(--gold); letter-spacing: .02em; }

.footer-bottom {
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
  padding: 2rem 0 2.5rem;
  font-family: var(--sans);
  font-size: .72rem; letter-spacing: .12em;
  color: rgba(250,246,236,.55);
}
.footer-bottom a { color: rgba(250,246,236,.85); }
.footer-bottom a:hover { color: var(--gold); }
.pb-credit {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  transition: background .3s var(--ease);
}
.pb-credit:hover { background: rgba(168, 137, 92, .15); }
.pb-credit img {
  width: 22px; height: 22px;
  filter: invert(1) brightness(1.05);
  animation: pb-pulse 2.4s ease-in-out infinite;
  opacity: .85;
}
@keyframes pb-pulse {
  0%, 100% { opacity: .55; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.1); }
}
@media (prefers-reduced-motion: reduce) {
  .pb-credit img { animation: none; opacity: .85; }
}

@media (max-width: 880px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ---- Page hero (interior pages) ---- */
.page-hero {
  padding-top: calc(var(--header-h) + clamp(3rem, 7vw, 6rem));
  padding-bottom: clamp(2rem, 5vw, 4rem);
}
.page-hero .crumb {
  font-family: var(--sans); font-size: .7rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--mute);
  margin-bottom: 1.4rem;
}
.page-hero .crumb a:hover { color: var(--gold-deep); }
.page-hero h1 {
  font-size: clamp(2.8rem, 8vw, 6.4rem);
  line-height: .98;
  font-weight: 350;
  letter-spacing: -0.025em;
  font-variation-settings: 'opsz' 144, 'SOFT' 60;
}
.page-hero h1 .it { font-style: italic; color: var(--gold-deep); font-variation-settings: 'opsz' 144, 'SOFT' 100; }
.page-hero .lede { max-width: 720px; margin-top: 2rem; }

/* ---- Portfolio gallery ---- */
.filter-bar {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  padding-block: 1.6rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.filter-list { display: flex; flex-wrap: wrap; gap: .4rem; }
.filter-btn {
  font-family: var(--sans); font-size: .72rem; font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase;
  padding: .8em 1.4em;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  color: var(--mute); cursor: pointer;
  transition: all .3s var(--ease);
}
.filter-btn:hover { color: var(--ink); }
.filter-btn[aria-pressed="true"] {
  background: var(--ink); color: var(--ivory);
  border-color: var(--ink);
}
.filter-count { font-family: var(--sans); font-size: .72rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--mute); }
.filter-count strong { color: var(--ink); font-weight: 500; }

.gallery {
  columns: 3 320px;
  column-gap: clamp(.6rem, 1.2vw, 1.2rem);
}
.gallery .g-item {
  break-inside: avoid;
  margin-bottom: clamp(.6rem, 1.2vw, 1.2rem);
  background: var(--ivory-2);
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  display: block;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.gallery .g-item img {
  width: 100%; height: auto; display: block;
  transition: transform 1.1s var(--ease-out), filter .5s var(--ease);
}
.gallery .g-item:hover img { transform: scale(1.04); }
.gallery .g-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(14,13,11,.45) 100%);
  opacity: 0; transition: opacity .4s var(--ease);
  pointer-events: none;
}
.gallery .g-item:hover::after { opacity: 1; }
.gallery .g-item .tag {
  position: absolute; left: 1rem; bottom: 1rem;
  z-index: 2;
  font-family: var(--sans); font-size: .65rem; letter-spacing: .26em;
  text-transform: uppercase; color: var(--ivory);
  opacity: 0; transform: translateY(6px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.gallery .g-item:hover .tag { opacity: 1; transform: translateY(0); }
.gallery .g-item[hidden] { display: none; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(14,13,11,.96);
  display: none;
  align-items: center; justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 86vh;
  width: auto; height: auto;
  box-shadow: var(--shadow-lg);
}
.lightbox .lb-close,
.lightbox .lb-prev,
.lightbox .lb-next {
  position: absolute; width: 56px; height: 56px;
  border: 1px solid rgba(250,246,236,.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ivory);
  background: rgba(14,13,11,.4);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.lightbox .lb-close:hover,
.lightbox .lb-prev:hover,
.lightbox .lb-next:hover {
  background: var(--gold); border-color: var(--gold);
}
.lightbox .lb-close { top: 2rem; right: 2rem; }
.lightbox .lb-prev { left: 2rem; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 2rem; top: 50%; transform: translateY(-50%); }
.lightbox .lb-caption {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  color: rgba(250,246,236,.7);
  font-family: var(--sans); font-size: .72rem; letter-spacing: .24em;
  text-transform: uppercase;
}
@media (max-width: 720px) {
  .lightbox .lb-close { top: 1rem; right: 1rem; width: 44px; height: 44px; }
  .lightbox .lb-prev { left: .6rem; width: 44px; height: 44px; }
  .lightbox .lb-next { right: .6rem; width: 44px; height: 44px; }
}

/* ---- Services page detail cards ---- */
.service-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-block: clamp(3rem, 6vw, 6rem);
  border-top: 1px solid var(--rule);
}
.service-card.flip { grid-template-columns: 1fr 1.1fr; }
.service-card.flip .copy { order: 2; }
.service-card .img {
  aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  position: relative;
  overflow: hidden;
}
.service-card .img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(14,13,11,.3));
}
.service-card .num { color: var(--gold-deep); font-family: var(--sans);
  font-size: .72rem; letter-spacing: .3em; text-transform: uppercase; }
.service-card h2 { margin-top: .8rem; font-style: italic; }
.service-card .copy p { margin-top: 1.2rem; color: var(--ink-soft); max-width: 540px; }
.service-card ul.bullets { margin-top: 1.4rem; display: flex; flex-direction: column; gap: .7rem; }
.service-card ul.bullets li {
  position: relative; padding-left: 1.6rem;
  color: var(--ink-soft);
}
.service-card ul.bullets li::before {
  content: '✦'; position: absolute; left: 0; top: 1px;
  color: var(--gold); font-size: .8em;
}
.service-card .cta-row { margin-top: 2rem; }
@media (max-width: 880px) {
  .service-card, .service-card.flip { grid-template-columns: 1fr; }
  .service-card.flip .copy { order: 0; }
}

/* ---- Process steps ---- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.process-step .step-num {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--gold);
  font-variation-settings: 'opsz' 144;
  line-height: 1;
}
.process-step h4 { margin-top: 1rem; font-style: italic; }
.process-step p { margin-top: .6rem; color: var(--mute); font-size: .95rem; }
@media (max-width: 880px) { .process { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .process { grid-template-columns: 1fr; } }

/* ---- Stats / Comp card ---- */
.comp-card {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  background: var(--ivory-pure);
  border: 1px solid var(--rule);
  padding: clamp(1.5rem, 3vw, 2.8rem);
}
.comp-card .photo {
  aspect-ratio: 3/4;
  background-size: cover; background-position: center;
}
.comp-card .info { display: flex; flex-direction: column; gap: 1.5rem; }
.comp-card .info h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-style: italic; }
.comp-card .info h1 .reg { font-style: normal; color: var(--ink); display: block; font-size: .55em; letter-spacing: .04em; }
.measurements {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.measurements .m {
  display: flex; justify-content: space-between;
  padding: .85rem 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--sans);
}
.measurements .m .lab {
  font-size: .68rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--mute);
}
.measurements .m .val {
  font-family: var(--serif); font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
}
.measurements .m:nth-child(odd) { padding-right: 1rem; }
.measurements .m:nth-child(even) { padding-left: 1rem; }
@media (max-width: 720px) {
  .comp-card { grid-template-columns: 1fr; }
  .measurements { grid-template-columns: 1fr; }
  .measurements .m:nth-child(odd),
  .measurements .m:nth-child(even) { padding-inline: 0; }
}

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2.5rem, 6vw, 6rem);
}
.contact-grid .lhs h2 { font-style: italic; }
.contact-grid .lhs .lede { margin-top: 1.4rem; }
.contact-grid .lhs .channels {
  margin-top: 2.4rem;
  display: flex; flex-direction: column; gap: 1.4rem;
}
.channel {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.2rem; border: 1px solid var(--rule);
  background: var(--ivory-pure);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.channel:hover { border-color: var(--gold); }
.channel .ic {
  width: 44px; height: 44px; flex: none;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-deep);
}
.channel .body h4 { font-family: var(--sans); font-size: .72rem; letter-spacing: .26em;
  text-transform: uppercase; color: var(--mute); font-weight: 500; }
.channel .body p { margin-top: .3rem; font-family: var(--serif); font-size: 1.25rem; font-style: italic; color: var(--ink); }
.channel .body small { color: var(--mute); font-size: .8rem; display: block; margin-top: .25rem; }

.form-card {
  background: var(--ivory-pure);
  border: 1px solid var(--rule);
  padding: clamp(1.8rem, 4vw, 3rem);
}
.form-card h3 { font-style: italic; margin-bottom: 2rem; }
.field { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.3rem; }
.field label { font-family: var(--sans); font-size: .7rem; letter-spacing: .24em;
  text-transform: uppercase; color: var(--mute); font-weight: 500; }
.field label .req { color: var(--gold-deep); }
.input, .textarea, .select {
  width: 100%;
  background: var(--ivory);
  border: 1px solid var(--rule);
  padding: .95rem 1rem;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color .3s var(--ease), background .3s var(--ease);
  border-radius: var(--r-xs);
}
.input:focus, .textarea:focus, .select:focus {
  outline: none; border-color: var(--gold); background: white;
}
.textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }
.form-foot {
  margin-top: 1.4rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.form-note { font-size: .75rem; color: var(--mute); max-width: 280px; }
.form-msg { font-size: .9rem; padding: .8rem 1rem; border: 1px solid var(--rule); margin-bottom: 1rem; display: none; border-radius: var(--r-xs); }
.form-msg.success { display: block; background: rgba(91, 106, 82, .12); border-color: var(--leaf); color: var(--leaf); }
.form-msg.error { display: block; background: rgba(168, 137, 92, .12); border-color: var(--gold); color: var(--gold-deep); }
.hp { position: absolute; left: -9999px; }

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---- About page split ---- */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.intro-split .img-tall {
  aspect-ratio: 3/4;
  background-size: cover; background-position: center;
  position: sticky; top: calc(var(--header-h) + 2rem);
}
.intro-split .copy h2 { font-style: italic; }
.intro-split .copy p { margin-top: 1.4rem; color: var(--ink-soft); }
.intro-split .copy blockquote {
  margin: 2rem 0;
  padding-left: 1.4rem;
  border-left: 2px solid var(--gold);
  font-family: var(--serif); font-style: italic;
  font-size: 1.35rem;
  color: var(--ink);
}
@media (max-width: 880px) {
  .intro-split { grid-template-columns: 1fr; }
  .intro-split .img-tall { position: static; aspect-ratio: 4/5; }
}

/* ---- CTA panel ---- */
.cta-panel {
  background: var(--ink); color: var(--ivory);
  padding: clamp(4rem, 8vw, 7rem) var(--pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-panel::before, .cta-panel::after {
  content: ''; position: absolute; width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--gold-glow), transparent 60%);
  pointer-events: none;
}
.cta-panel::before { top: -180px; left: -120px; }
.cta-panel::after { bottom: -180px; right: -120px; }
.cta-panel .inner { position: relative; max-width: 800px; margin: 0 auto; }
.cta-panel h2 { color: var(--ivory); font-style: italic; }
.cta-panel h2 .it { color: var(--gold); }
.cta-panel .lede { color: rgba(250,246,236,.78); margin-top: 1.6rem; }
.cta-panel .cta-row { margin-top: 2.5rem; display: inline-flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ---- Demo badge (for-review only) ---- */
.demo-badge {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 150;
  background: var(--gold); color: var(--ink);
  font-family: var(--sans); font-size: .62rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  padding: .55rem .9rem;
  border-radius: var(--r-pill);
  box-shadow: 0 6px 20px rgba(14,13,11,.18);
  display: inline-flex; align-items: center; gap: .5em;
  text-decoration: none;
}
.demo-badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--ink);
  animation: demo-pulse 2s ease-in-out infinite;
}
@keyframes demo-pulse { 0%,100%{opacity:.55;transform:scale(1)} 50%{opacity:1;transform:scale(1.3)} }
@media (prefers-reduced-motion: reduce) { .demo-badge::before { animation: none; } }
@media (max-width: 640px) {
  .demo-badge { right: .8rem; bottom: .8rem; font-size: .55rem; padding: .45rem .75rem; }
}

/* ---- 404 ---- */
.err-page {
  min-height: 100svh;
  display: grid; place-content: center; text-align: center;
  padding: var(--header-h) var(--pad) 2rem;
}
.err-page .code {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(8rem, 24vw, 16rem); line-height: .9;
  color: var(--gold);
}
.err-page h1 { font-style: italic; margin-top: .5rem; }
.err-page p { max-width: 520px; margin: 1.4rem auto 2rem; color: var(--ink-soft); }

/* ---- Misc utilities ---- */
.center { text-align: center; }
.text-mute { color: var(--mute); }
.uppercase { text-transform: uppercase; letter-spacing: .22em; font-size: .72rem; }
.maxw-720 { max-width: 720px; }
.maxw-540 { max-width: 540px; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.flex-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.row-center { justify-content: center; align-items: center; }
.row-end { justify-content: flex-end; }

/* selection */
::selection { background: var(--gold); color: var(--ivory); }
::-moz-selection { background: var(--gold); color: var(--ivory); }

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .split-line > span { transform: none; }
}

/* ==========================================================================
   PORTFOLIO GLOW-UP  (presenter-first hero, showreel, range, credits, film)
   ========================================================================== */

/* ---- Presenter-first hero ---- */
.pf-hero {
  position: relative; min-height: 80svh;
  background: var(--ink); color: var(--ivory);
  overflow: hidden; display: grid;
}
.pf-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(14,13,11,.5) 0%, rgba(14,13,11,.2) 36%, rgba(14,13,11,.85) 100%);
}
.pf-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center 26%;
  filter: saturate(.94) contrast(1.02);
  transform: scale(1.06); will-change: transform;
}
.pf-hero-inner {
  position: relative; z-index: 2; align-self: end; width: 100%;
  padding-top: calc(var(--header-h) + clamp(2rem, 6vw, 5rem));
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.pf-hero .crumb {
  font-family: var(--sans); font-size: .7rem; letter-spacing: .28em;
  text-transform: uppercase; color: rgba(250,246,236,.72); margin-bottom: 1.4rem;
}
.pf-hero .crumb a:hover { color: var(--gold); }
.pf-hero-title {
  color: var(--ivory); max-width: 16ch;
  font-size: clamp(2.9rem, 9vw, 7rem); line-height: .95;
  font-weight: 350; letter-spacing: -.025em;
  font-variation-settings: 'opsz' 144, 'SOFT' 55;
}
.pf-hero-title .it { font-style: italic; color: var(--gold); font-weight: 320; font-variation-settings: 'opsz' 144, 'SOFT' 100; }
.pf-hero-lede {
  margin-top: 1.6rem; max-width: 640px;
  font-family: var(--serif); font-variation-settings: 'opsz' 36; font-weight: 360;
  font-size: clamp(1.1rem, 1.7vw, 1.4rem); line-height: 1.45;
  color: rgba(250,246,236,.9); letter-spacing: -.01em;
}
.pf-vitals {
  margin-top: 2.2rem; display: flex; flex-wrap: wrap;
  gap: clamp(1.4rem, 4vw, 3rem);
  border-top: 1px solid rgba(250,246,236,.22); padding-top: 1.4rem;
}
.pf-vitals span {
  display: flex; flex-direction: column; gap: .3rem;
  font-family: var(--sans); font-size: .6rem; letter-spacing: .26em;
  text-transform: uppercase; color: rgba(250,246,236,.6);
}
.pf-vitals strong {
  font-family: var(--serif); font-style: italic; font-weight: 360;
  font-size: clamp(1.1rem, 2vw, 1.5rem); letter-spacing: 0;
  color: var(--gold); text-transform: none;
}
.pf-hero-cta { margin-top: 2.4rem; display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---- Showreel ---- */
.reel-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 1.5rem; margin-bottom: clamp(2rem, 4vw, 3rem);
}
.reel-head h2 { max-width: 16ch; }
.reel-intro { max-width: 440px; color: var(--mute); font-size: .98rem; line-height: 1.6; }
.reel-intro .link-ul { margin-top: .9rem; }

.reel-card {
  position: relative; display: block; width: 100%; overflow: hidden;
  background: var(--ink); border: 0; cursor: pointer; color: var(--ivory);
  text-align: left; aspect-ratio: 3/4;
}
.reel-card::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, transparent 42%, rgba(14,13,11,.78) 100%);
}
.reel-poster {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center 26%;
  filter: brightness(.82) saturate(.97);
  transition: transform 1.1s var(--ease-out), filter .5s var(--ease);
}
.reel-card:hover .reel-poster { transform: scale(1.04); filter: brightness(.72); }
.reel-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  z-index: 2; width: 60px; height: 60px; border-radius: 50%;
  background: rgba(250,246,236,.16); border: 1px solid rgba(250,246,236,.6);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; color: var(--ivory);
  transition: background .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.reel-card:hover .reel-play { background: var(--gold); border-color: var(--gold); transform: translate(-50%,-50%) scale(1.06); }
.reel-play svg { margin-left: 3px; }
.reel-label {
  position: absolute; left: 1.1rem; right: 1.1rem; bottom: 1.1rem; z-index: 2;
  display: flex; flex-direction: column; gap: .1rem;
}
.reel-label strong { font-family: var(--serif); font-style: italic; font-weight: 380; font-size: clamp(1.05rem, 1.5vw, 1.4rem); color: var(--ivory); }
.reel-label span { font-family: var(--sans); font-size: .58rem; letter-spacing: .24em; text-transform: uppercase; color: rgba(250,246,236,.8); }
.reel-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.7rem, 1.2vw, 1.2rem); }
#showreel.pulse .reel-card { box-shadow: 0 0 0 3px var(--gold); }
@media (max-width: 900px) { .reel-row { grid-template-columns: repeat(2, 1fr); } }
.reel-feature {
  position: relative; display: block; width: 100%; overflow: hidden;
  background: var(--ink); border: 0; cursor: pointer; color: var(--ivory);
  text-align: left; aspect-ratio: 16/9; margin-bottom: clamp(.8rem, 1.4vw, 1.3rem);
}
.reel-feature::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, transparent 45%, rgba(14,13,11,.78) 100%);
}
.reel-feature .reel-play { width: 78px; height: 78px; }
.reel-feature:hover .reel-poster { transform: scale(1.04); filter: brightness(.72); }
.reel-feature:hover .reel-play { background: var(--gold); border-color: var(--gold); transform: translate(-50%,-50%) scale(1.06); }
.reel-feature .reel-label strong { font-size: clamp(1.4rem, 2.6vw, 2.2rem); }

/* ---- Range strip ---- */
.range-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: clamp(.6rem, 1vw, 1rem); }
.range-card { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--ivory-2); background-size: cover; background-position: center; }
.range-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(14,13,11,.72)); }
.range-card .range-tag { position: absolute; left: 1rem; right: 1rem; bottom: 1rem; z-index: 2; color: var(--ivory); display: flex; flex-direction: column; gap: .1rem; }
.range-tag strong { font-family: var(--serif); font-style: italic; font-weight: 380; font-size: 1.15rem; }
.range-tag span { font-family: var(--sans); font-size: .54rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(250,246,236,.8); }

/* ---- Credits ---- */
.credits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 clamp(2rem, 5vw, 5rem); border-top: 1px solid var(--rule); }
.credit { display: grid; grid-template-columns: 110px 1fr; gap: 1.4rem; align-items: baseline; padding: 1.4rem 0; border-bottom: 1px solid var(--rule); }
.credit dt { font-family: var(--sans); font-size: .68rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-deep); }
.credit dd { margin: 0; color: var(--ink-soft); font-size: 1rem; line-height: 1.5; }
@media (max-width: 760px) { .credits { grid-template-columns: 1fr; } .credit { grid-template-columns: 1fr; gap: .3rem; padding: 1.1rem 0; } }

/* ---- Archive head + sticky filter ---- */
.archive-head { margin-bottom: 1.4rem; }
.filter-bar.sticky-filter {
  position: sticky; top: calc(var(--header-h) - 1px); z-index: 40;
  background: rgba(245,240,230,.94);
  -webkit-backdrop-filter: saturate(140%) blur(12px); backdrop-filter: saturate(140%) blur(12px);
}
.filter-btn.jump { color: var(--gold-deep); }
.filter-btn.jump:hover { color: var(--ivory); background: var(--gold); border-color: var(--gold); }

/* ---- Animated filtering ---- */
.gallery .g-item.is-hidden { opacity: 0; transform: scale(.96); }

/* ---- Video lightbox ---- */
.lb-video { display: none; }
.lightbox.video img { display: none; }
.lightbox.video .lb-video { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.lightbox.video .lb-prev, .lightbox.video .lb-next { display: none; }
.lb-video .lb-frame { width: min(92vw, 1280px); aspect-ratio: 16/9; box-shadow: var(--shadow-lg); background: #000; }
.lb-video .lb-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.lb-video video { max-height: 86vh; max-width: 94vw; box-shadow: var(--shadow-lg); background: #000; }

/* ---- Print: clean spec sheet ---- */
@media print {
  .site-header, .mobile-drawer, .hero-scroll, .pf-hero-cta, .filter-bar,
  .reel-section, .range-section, #archive, .gallery, .cta-panel,
  .site-footer, .lightbox, .demo-badge, .skip-link, .reel-play, .reel-soon { display: none !important; }
  body { background: #fff; color: #000; }
  .pf-hero { min-height: auto; background: #fff; color: #000; display: block; }
  .pf-hero-bg, .pf-hero::before { display: none !important; }
  .pf-hero-inner { padding: 0; }
  .pf-hero .crumb { display: none; }
  .pf-hero-title { color: #000; font-size: 2.4rem; max-width: none; }
  .pf-hero-lede { color: #222; }
  .pf-vitals { border-color: #bbb; }
  .pf-vitals strong { color: #000; }
  .pf-vitals span { color: #444; }
  .credits-section { padding: 1rem 0 !important; }
  .credits-section .reel-head { display: block; margin-bottom: .5rem; }
  .credit dt, .credit dd { color: #000; }
  a { color: #000; text-decoration: none; }
}
