/* ============================================================
   DOMINI DESIGN — STYLE.CSS
   Editorial Worship Quarterly · 2026
   ============================================================ */

:root {
  /* Palette */
  --paper-tan: #efe6d2;
  --paper-white: #faf7f0;
  --paper-deep: #e4d8be;
  --ink: #0f0e0d;
  --ink-soft: #2a2826;
  --vermillion: #e94b30;
  --vermillion-deep: #c93b21;
  --gold-deep: #b8843a;
  --gold-soft: #d2a360;
  --hairline: rgba(15, 14, 13, 0.18);
  --hairline-strong: rgba(15, 14, 13, 0.4);

  /* Type */
  --display: 'Fraunces', 'Times New Roman', serif;
  --sans: 'General Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Spatial */
  --gutter: clamp(20px, 4vw, 64px);
  --section-y: clamp(80px, 12vw, 200px);
  --masthead-h: 68px;
  --hero-top: clamp(64px, 7vw, 104px);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

/* ============================================================
   SKIP LINK — visually hidden until focused
   ============================================================ */

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--paper-tan);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--vermillion);
  transform: translateY(-200%);
  transition: transform 0.25s var(--ease);
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: none;
}

/* ============================================================
   GLOBAL FOCUS — keyboard-only visible focus ring
   ============================================================ */

:focus-visible {
  outline: 2px solid var(--vermillion);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Suppress default outline only when focus-visible is supported;
   focus-visible above replaces it with a high-contrast ring. */
:focus:not(:focus-visible) {
  outline: none;
}

section[id] {
  scroll-margin-top: 80px;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper-tan);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ============================================================
   GRAIN — paper texture overlay
   ============================================================ */

.grain {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.45;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' seed='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.09 0 0 0 0 0.08 0 0 0 0.45 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 180px 180px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  letter-spacing: -0.025em;
  line-height: 0.95;
  color: var(--ink);
}

em {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  color: var(--vermillion);
  font-weight: 400;
}

p { color: var(--ink-soft); }

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.4s var(--ease);
}

a:hover { opacity: 0.6; }

/* Buttons that wear anchor-style CTA classes: strip default UA chrome so they
   render identically to the <a> versions. Zero-specificity reset via :where()
   so any class-based styling that follows wins automatically. */
:where(button.masthead__cta, button.tier__cta, button.contact-cta, button.footer__call, button.btn) {
  font: inherit;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: inherit;
  -webkit-appearance: none;
  appearance: none;
}

/* footer "Call" button needs to inline-match the surrounding anchor links */
.footer__call {
  position: relative;
  display: inline-block;
  padding: 4px 0;
  letter-spacing: inherit;
  text-transform: inherit;
  text-decoration: inherit;
  transition: opacity 0.4s var(--ease);
}

.footer__call::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--vermillion);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.5s var(--ease);
}

.footer__call:hover { color: var(--paper-tan); opacity: 1; }
.footer__call:hover::after { transform: scaleX(1); transform-origin: left center; }

::selection {
  background: var(--vermillion);
  color: var(--paper-tan);
}

/* ============================================================
   MASTHEAD / NAV
   ============================================================ */

.masthead {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: stretch;
  height: 68px;
  background: color-mix(in srgb, var(--paper-tan) 92%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
  animation: fadeDown 0.9s var(--ease) both;
}

.masthead__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 var(--gutter);
}

.masthead__brand img {
  width: auto;
  display: block;
  transition: opacity 0.4s var(--ease);
}

.masthead__icon {
  height: 26px;
}

.masthead__wordmark {
  height: 14px;
}

.masthead__brand:hover { opacity: 1; }
.masthead__brand:hover img { opacity: 0.75; }

.masthead__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  padding-right: 32px;
  font-family: var(--sans);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.2em;
}

.masthead__nav a {
  position: relative;
  padding: 4px 0;
}

.masthead__nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--vermillion);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.5s var(--ease);
}

.masthead__nav a:hover { opacity: 1; }
.masthead__nav a:hover::after,
.masthead__nav a:focus-visible::after { transform: scaleX(1); transform-origin: left center; }
.masthead__nav a:focus-visible { opacity: 1; outline: none; }

.masthead__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 clamp(28px, 3vw, 44px);
  background: var(--ink);
  color: var(--paper-tan);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.4s var(--ease);
}

.masthead__cta:hover {
  background: var(--vermillion);
  color: var(--paper-tan);
  opacity: 1;
}

.masthead__cta span {
  transition: transform 0.4s var(--ease);
}

.masthead__cta:hover span { transform: translateX(4px); }

@media (max-width: 880px) {
  :root { --masthead-h: 60px; }
  .masthead { height: 60px; }
  .masthead__nav { display: none; }
  .masthead__icon { height: 22px; }
  .masthead__wordmark { height: 12px; }
  .masthead__cta { padding: 0 22px; font-size: 10px; }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  min-height: calc(100vh - var(--masthead-h));
  padding: var(--hero-top) var(--gutter) clamp(40px, 4.5vw, 68px);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 48px);
  overflow: hidden;
  transition: color 0.6s var(--ease);
}

/* Hover-reveal video background */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s var(--ease);
}

.hero__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 14, 13, 0.55);
}

/* Make all hero content sit above the bg */
.hero__bar,
.hero__title,
.hero__foot { position: relative; z-index: 1; }
.hero__marginalia { z-index: 1; }

/* Reverence trigger styling */
.hero__reverence {
  cursor: pointer;
  outline: none;
}

.hero__reverence:focus-visible {
  text-decoration: underline;
  text-decoration-color: var(--vermillion);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.08em;
}

/* When triggered, the hero inverts to dark with cream text */
.hero.is-revealed { color: var(--paper-tan); }
.hero.is-revealed .hero__bg { opacity: 1; }
.hero.is-revealed .hero__title { color: var(--paper-tan); }
.hero.is-revealed em { color: var(--vermillion); }
.hero.is-revealed .hero__eyebrow,
.hero.is-revealed .hero__lede,
.hero.is-revealed .hero__marginalia { color: var(--paper-tan); }
.hero.is-revealed .hero__eyebrow-accent { color: var(--vermillion); }
.hero.is-revealed .hero__rule { background: var(--vermillion); }
.hero.is-revealed .hero__foot { border-top-color: rgba(239, 230, 210, 0.35); }

/* Buttons invert too */
.hero.is-revealed .btn--primary {
  background: var(--paper-tan);
  color: var(--ink);
}
.hero.is-revealed .btn--primary:hover {
  background: var(--vermillion);
  color: var(--paper-tan);
}
.hero.is-revealed .btn--ghost {
  background: transparent;
  color: var(--paper-tan);
  border-color: rgba(239, 230, 210, 0.5);
}
.hero.is-revealed .btn--ghost:hover {
  background: var(--paper-tan);
  color: var(--ink);
  border-color: var(--paper-tan);
}

/* Smooth color transition on all relevant elements */
.hero,
.hero__title,
.hero__title em,
.hero__eyebrow,
.hero__eyebrow-accent,
.hero__lede,
.hero__marginalia,
.hero__rule,
.hero__foot,
.btn--primary,
.btn--ghost {
  transition: color 0.6s var(--ease), background 0.6s var(--ease), border-color 0.6s var(--ease);
}

.hero__bar {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-soft);
  animation: fadeUp 1s var(--ease) 0.1s both;
}

.hero__eyebrow {
  white-space: nowrap;
}

.hero__eyebrow-accent {
  color: var(--vermillion);
}

.hero__rule {
  flex: 1;
  height: 1px;
  background: var(--vermillion);
  max-width: 200px;
}

.hero__title {
  font-size: clamp(54px, 10.5vw, 180px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.035em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  animation: fadeUp 1.1s var(--ease) 0.2s both;
}

.hero__foot {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(30px, 6vw, 100px);
  align-items: end;
  margin-top: auto;
  padding-top: clamp(36px, 4vw, 60px);
  border-top: 1px solid var(--hairline);
  animation: fadeUp 1.1s var(--ease) 0.4s both;
}

.hero__lede {
  font-family: var(--sans);
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.5;
  max-width: 480px;
  color: var(--ink-soft);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-self: end;
}

.hero__marginalia {
  position: absolute;
  right: var(--gutter);
  top: var(--hero-top);
  text-align: right;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  line-height: 1.7;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: none;
}

@media (min-width: 1100px) {
  .hero__marginalia { display: block; }
}

@media (max-width: 720px) {
  .hero__foot { grid-template-columns: 1fr; align-items: start; }
  .hero__cta { justify-self: start; }
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn--primary {
  background: var(--ink);
  color: var(--paper-tan);
}

.btn--primary:hover {
  background: var(--vermillion);
  opacity: 1;
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--hairline-strong);
}

.btn--ghost:hover {
  background: var(--ink);
  color: var(--paper-tan);
  opacity: 1;
  border-color: var(--ink);
}

/* Unified italic Fraunces arrow for all CTAs */
.cta-arrow {
  display: inline-block;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-size: 1.6em;
  line-height: 0.7;
  vertical-align: -0.1em;
  transition: transform 0.4s var(--ease);
  color: inherit;
}

.btn:hover .cta-arrow,
.masthead__cta:hover .cta-arrow,
.featured__cta:hover .cta-arrow,
.tier__cta:hover .cta-arrow,
.contact-cta:hover .cta-arrow,
.letter__cta:hover .cta-arrow {
  transform: translateX(6px);
}

/* ============================================================
   FEATURED — dark spotlight
   ============================================================ */

.featured {
  --pin-progress: 0;
  background: var(--ink);
  color: var(--paper-tan);
  padding: 0;
  margin-top: 0;
  position: relative;
  min-height: 180vh;
}

.featured__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  padding: clamp(40px, 6vw, 100px) var(--gutter);
  overflow: hidden;
}


.featured__inner {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: end;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}

.featured__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 2px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: zoom-in;
  display: block;
  box-shadow: 0 40px 100px -40px rgba(0, 0, 0, 0.6);
}

.featured__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(calc(1 + var(--pin-image, 0) * 0.15));
  transition: filter 0.6s var(--ease);
  will-change: transform;
}

.featured__media {
  opacity: calc(0.35 + var(--pin-image, 0) * 0.65);
  will-change: opacity;
}

.featured__media:hover img { filter: brightness(1.05); }

.featured__copy {
  padding-bottom: 8px;
}

.featured__copy > * {
  will-change: transform, opacity;
}

.featured__media-hint {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: clamp(56px, 5vw, 72px);
  height: clamp(56px, 5vw, 72px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--paper-tan);
  color: var(--ink);
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  line-height: 0.7;
  opacity: 0;
  transform: translate(8px, 8px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), background 0.4s var(--ease);
  pointer-events: none;
}

.featured__media:hover .featured__media-hint {
  opacity: 1;
  transform: translate(0, 0);
  background: var(--vermillion);
  color: var(--paper-tan);
}

.featured__tag {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vermillion);
  margin-bottom: 20px;
  opacity: var(--pin-tag, 0);
  transform: translateY(calc((1 - var(--pin-tag, 0)) * 16px));
}

.featured__title {
  font-size: clamp(80px, 11vw, 200px);
  font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 80;
  line-height: 0.88;
  letter-spacing: -0.045em;
  margin-bottom: 18px;
  color: var(--paper-tan);
  opacity: var(--pin-title, 0);
  transform: translateY(calc((1 - var(--pin-title, 0)) * 40px));
}

.featured__eyebrow {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--paper-deep);
  margin-bottom: 20px;
  font-variation-settings: 'opsz' 18, 'SOFT' 100;
  opacity: var(--pin-eyebrow, 0);
  transform: translateY(calc((1 - var(--pin-eyebrow, 0)) * 20px));
}

.featured__desc {
  font-size: 16px;
  max-width: 380px;
  color: var(--paper-deep);
  margin-bottom: 28px;
  opacity: var(--pin-desc, 0);
  transform: translateY(calc((1 - var(--pin-desc, 0)) * 20px));
}

.featured__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: transparent;
  color: var(--paper-tan);
  border: 1px solid rgba(239, 230, 210, 0.4);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  opacity: var(--pin-cta, 0);
  transform: translateY(calc((1 - var(--pin-cta, 0)) * 20px));
}

.featured__cta:hover {
  background: var(--vermillion);
  border-color: var(--vermillion);
  color: var(--paper-tan);
}

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

/* ============================================================
   SECTION HEAD
   ============================================================ */

.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(20px, 4vw, 60px);
  align-items: start;
  padding: 0 0 clamp(50px, 7vw, 90px);
  border-bottom: 1px solid var(--hairline);
  margin-bottom: clamp(40px, 6vw, 80px);
}

.section-head--centered {
  display: block;
  text-align: center;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.section-head__num {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vermillion);
}

.section-head__title {
  font-size: clamp(40px, 6.5vw, 96px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  grid-column: 2 / 3;
}

.section-head--centered .section-head__title {
  grid-column: auto;
  margin-top: 16px;
}

.section-head__desc {
  grid-column: 2 / 3;
  margin-top: 28px;
  font-size: 17px;
  max-width: 580px;
  color: var(--ink-soft);
}

.section-head--centered .section-head__desc {
  grid-column: auto;
  margin: 24px auto 0;
}

@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; }
  .section-head__title, .section-head__desc { grid-column: 1; }
}

/* ============================================================
   WORK / CAMPAIGNS — horizontal scrolling galleries
   ============================================================ */

.work {
  padding: var(--section-y) 0;
}

.work .section-head {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.campaign {
  margin-bottom: clamp(80px, 10vw, 140px);
}

.campaign:last-child { margin-bottom: 0; }

.campaign__head {
  padding: 0 var(--gutter) clamp(28px, 3vw, 44px);
  margin-bottom: clamp(20px, 2.5vw, 36px);
}

.campaign__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: clamp(22px, 2.5vw, 36px);
  padding-bottom: clamp(20px, 2.5vw, 32px);
  border-bottom: 1px solid var(--hairline);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.campaign__num { color: var(--vermillion); }

.campaign__title-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
}

.campaign__title {
  font-size: clamp(44px, 6vw, 90px);
  font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 60;
  letter-spacing: -0.03em;
  line-height: 0.94;
}

.campaign__desc {
  font-size: 16px;
  max-width: 520px;
  color: var(--ink-soft);
  padding-bottom: 6px;
}

/* The scroller — hangs off the right edge */
.campaign__scroller {
  display: flex;
  align-items: stretch;
  gap: clamp(12px, 1.4vw, 20px);
  padding: 0 var(--gutter);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--gutter);
  scrollbar-width: thin;
  scrollbar-color: var(--hairline-strong) transparent;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding-bottom: 20px;
}

.campaign__scroller::-webkit-scrollbar { height: 4px; }
.campaign__scroller::-webkit-scrollbar-track { background: transparent; }
.campaign__scroller::-webkit-scrollbar-thumb { background: var(--hairline-strong); border-radius: 999px; }

.campaign__slide {
  flex: 0 0 auto;
  height: clamp(440px, 56vh, 640px);
  border: none;
  padding: 0;
  background: var(--paper-deep);
  overflow: hidden;
  border-radius: 2px;
  scroll-snap-align: start;
  cursor: zoom-in;
  position: relative;
  display: block;
  transition: transform 0.5s var(--ease);
  box-shadow: 0 20px 40px -25px rgba(15, 14, 13, 0.3);
}

.campaign__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--ease);
}

.campaign__slide:hover img { transform: scale(1.04); }
.campaign__slide:hover { opacity: 1; }

.campaign__slide--portrait { aspect-ratio: 4 / 5; }
.campaign__slide--square { aspect-ratio: 1 / 1; }
.campaign__slide--wide { aspect-ratio: 16 / 9; }

@media (max-width: 880px) {
  .campaign__title-row { grid-template-columns: 1fr; gap: 18px; }
  .campaign__slide { height: clamp(320px, 50vh, 480px); }
}

/* ============================================================
   PROCESS
   ============================================================ */

.process {
  padding: var(--section-y) var(--gutter) 0;
  background: var(--paper-white);
}

/* Pinned video — expands full-bleed, holds, then columns slide up over it */
.process__cinema {
  --pin-progress: 0;
  --pin-expand: 0;
  --pin-reveal: 0;
  position: relative;
  height: 300vh;
  margin: clamp(4px, 0.8vw, 12px) calc(-1 * var(--gutter)) 0;
}

.process__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--paper-white);
}

.process__video-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.process__video {
  width: calc((100vw - var(--gutter) * 2) + (var(--pin-expand) * var(--gutter) * 2));
  height: calc(((100vw - var(--gutter) * 2) * 9 / 21) + var(--pin-expand) * (100vh - (100vw - var(--gutter) * 2) * 9 / 21));
  max-height: 100vh;
  max-width: 100vw;
  object-fit: cover;
  display: block;
  will-change: width, height;
}

/* Columns layer — sits at bottom of viewport, video stays visible above */
.process__columns-layer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(60px, 7vw, 100px) var(--gutter) clamp(48px, 6vw, 80px);
  background: linear-gradient(
    to top,
    rgba(15, 14, 13, 0.92) 0%,
    rgba(15, 14, 13, 0.78) 60%,
    rgba(15, 14, 13, 0) 100%
  );
  opacity: var(--pin-reveal, 0);
  transform: translateY(calc((1 - var(--pin-reveal, 0)) * 60px));
  will-change: transform, opacity;
}

.process__columns-layer .process__list {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.process__columns-layer .process__step {
  color: var(--paper-tan);
  border-top: 1px solid rgba(239, 230, 210, 0.2);
  transform-origin: top center;
  position: relative;
  transition: border-top-color 0.35s var(--ease);
  padding-top: 32px;
}

/* Vermillion progress bar that fills the top edge on the active step */
.process__columns-layer .process__step::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  height: 2px;
  background: var(--vermillion);
  width: var(--step-active, 0%);
  transition: none;
}

.process__columns-layer .process__step:nth-child(1) {
  opacity: var(--step-0-opacity, 0.28);
  transform: translateY(calc((1 - var(--step-0-opacity, 0.28)) * 12px));
}
.process__columns-layer .process__step:nth-child(2) {
  opacity: var(--step-1-opacity, 0.28);
  transform: translateY(calc((1 - var(--step-1-opacity, 0.28)) * 12px));
}
.process__columns-layer .process__step:nth-child(3) {
  opacity: var(--step-2-opacity, 0.28);
  transform: translateY(calc((1 - var(--step-2-opacity, 0.28)) * 12px));
}
.process__columns-layer .process__step:nth-child(4) {
  opacity: var(--step-3-opacity, 0.28);
  transform: translateY(calc((1 - var(--step-3-opacity, 0.28)) * 12px));
}

/* Each step's vermillion bar width tracks its individual active progress */
.process__columns-layer .process__step:nth-child(1)::before {
  width: calc(var(--step-0-active, 0) * 100%);
}
.process__columns-layer .process__step:nth-child(2)::before {
  width: calc(var(--step-1-active, 0) * 100%);
}
.process__columns-layer .process__step:nth-child(3)::before {
  width: calc(var(--step-2-active, 0) * 100%);
}
.process__columns-layer .process__step:nth-child(4)::before {
  width: calc(var(--step-3-active, 0) * 100%);
}

.process__columns-layer .process__num {
  color: var(--vermillion);
}

.process__columns-layer .process__title {
  color: var(--paper-tan);
}

.process__columns-layer .process__step p {
  color: var(--paper-deep);
}

@media (max-width: 720px) {
  .process__cinema { height: 320vh; }
  .process__columns-layer { padding: 60px var(--gutter) 40px; }
}

.process__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 50px);
  counter-reset: process;
}

.process__step {
  position: relative;
  padding-top: 28px;
  border-top: 1px solid var(--hairline-strong);
}

.process__num {
  font-family: var(--display);
  font-style: italic;
  font-size: 26px;
  color: var(--vermillion);
  font-variation-settings: 'opsz' 36, 'SOFT' 100;
  display: block;
  margin-bottom: 14px;
}

.process__title {
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.process__step p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}

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

/* ============================================================
   PRICING
   ============================================================ */

.pricing {
  padding: var(--section-y) var(--gutter);
}

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
  align-items: stretch;
}

.tier {
  background: var(--paper-white);
  padding: clamp(28px, 3vw, 44px);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  position: relative;
}

.tier:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px rgba(15, 14, 13, 0.25);
}

.tier--featured {
  background: var(--ink);
  color: var(--paper-tan);
  border-color: var(--ink);
}

.tier--featured h3, .tier--featured p, .tier--featured li { color: var(--paper-tan); }

.tier--featured::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 3px;
  background: var(--vermillion);
  border-radius: 4px 4px 0 0;
}

.tier__head { margin-bottom: 28px; }

.tier__index {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: block;
  margin-bottom: 14px;
}

.tier__index--featured { color: var(--vermillion); }

.tier__name {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  font-variation-settings: 'opsz' 60, 'SOFT' 60;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.tier__sub {
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
  font-variation-settings: 'opsz' 18, 'SOFT' 100;
}

.tier--featured .tier__sub { color: var(--paper-deep); }

.tier__price {
  font-family: var(--display);
  font-size: clamp(64px, 7vw, 100px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 12px 0 6px;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  color: inherit;
}

.tier__currency {
  font-size: 0.45em;
  vertical-align: top;
  margin-right: 4px;
  color: var(--vermillion);
}

.tier__period {
  font-size: 0.3em;
  color: var(--ink-soft);
  margin-left: 4px;
  vertical-align: middle;
}

.tier--featured .tier__period { color: var(--paper-deep); }

.tier__cadence {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--hairline);
}

.tier--featured .tier__cadence {
  color: var(--paper-deep);
  border-bottom-color: rgba(239, 230, 210, 0.18);
}

.tier__list {
  list-style: none;
  flex: 1;
  margin-bottom: 28px;
}

.tier__list li {
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid var(--hairline);
  color: var(--ink-soft);
}

.tier--featured .tier__list li {
  border-bottom-color: rgba(239, 230, 210, 0.14);
  color: var(--paper-tan);
}

.tier__list li:last-child { border-bottom: none; }

.tier__cta {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--ink);
  padding-top: 8px;
  border-top: 1px solid var(--hairline-strong);
  transition: color 0.4s var(--ease), padding-left 0.4s var(--ease);
}

.tier__cta:hover { color: var(--vermillion); opacity: 1; padding-left: 8px; }

.tier__cta--featured { color: var(--vermillion); border-top-color: var(--vermillion); }
.tier__cta--featured:hover { color: var(--paper-tan); padding-left: 8px; }

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

/* ============================================================
   ABOUT — photo + copy + overlapping pull quote
   ============================================================ */

.about {
  padding: 0;
  background: var(--paper-white);
  position: relative;
  overflow: hidden;
}

.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  min-height: clamp(720px, 92vh, 1000px);
  position: relative;
}

.about__photo {
  grid-column: 1;
  grid-row: 1 / 3;
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__photo figcaption {
  position: absolute;
  top: clamp(28px, 3vw, 44px);
  left: clamp(28px, 3vw, 44px);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--paper-tan);
  padding: 6px 12px;
  background: rgba(15, 14, 13, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.about__copy {
  grid-column: 2;
  grid-row: 1;
  padding: clamp(60px, 8vw, 120px) clamp(40px, 5vw, 80px) clamp(40px, 5vw, 80px);
  align-self: start;
}

.about__copy .section-head__num {
  display: block;
  margin-bottom: clamp(28px, 3vw, 44px);
}

.about__title {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  margin-bottom: clamp(28px, 3vw, 40px);
  max-width: 14ch;
}

.about__copy p {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 480px;
  color: var(--ink-soft);
}

.about__signoff {
  font-family: var(--display);
  font-style: italic;
  font-size: 15px !important;
  color: var(--ink-soft);
  margin-top: 24px !important;
  font-variation-settings: 'opsz' 18, 'SOFT' 100;
}

/* The pull quote that overlaps the photo + copy seam */
.about__pull {
  grid-column: 1 / 3;
  grid-row: 2;
  justify-self: center;
  align-self: end;
  width: min(720px, 88%);
  margin: 0 0 clamp(40px, 5vw, 70px);
  background: var(--ink);
  color: var(--paper-tan);
  padding: clamp(56px, 6.5vw, 80px) clamp(32px, 4vw, 56px) clamp(28px, 3.5vw, 44px);
  position: relative;
  border-left: 2px solid var(--vermillion);
  box-shadow: 0 40px 80px -30px rgba(15, 14, 13, 0.5);
}

.about__pull p {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.4;
  color: var(--paper-tan);
  font-variation-settings: 'opsz' 36, 'SOFT' 100;
  margin: 0;
  max-width: none;
}

.about__pull-mark {
  position: absolute;
  left: clamp(20px, 2.5vw, 36px);
  top: clamp(14px, 1.8vw, 28px);
  font-size: clamp(72px, 8vw, 110px);
  color: var(--vermillion);
  line-height: 0.6;
  font-family: var(--display);
  font-style: italic;
}

@media (max-width: 880px) {
  .about__layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: auto;
  }
  .about__photo {
    grid-column: 1;
    grid-row: 1;
    aspect-ratio: 4 / 5;
  }
  .about__copy {
    grid-column: 1;
    grid-row: 2;
    padding: clamp(40px, 6vw, 60px) var(--gutter);
  }
  .about__pull {
    grid-column: 1;
    grid-row: 3;
    width: calc(100% - 32px);
    margin: 0 16px clamp(32px, 5vw, 50px);
  }
}

/* ============================================================
   BEGIN / CONTACT — magazine back cover
   ============================================================ */

.contact {
  background: var(--ink);
  color: var(--paper-tan);
  padding: 0;
  overflow: hidden;
  position: relative;
}

.contact__marquee {
  border-top: 1px solid rgba(239, 230, 210, 0.18);
  border-bottom: 1px solid rgba(239, 230, 210, 0.18);
  padding: clamp(24px, 3vw, 44px) 0;
  margin-bottom: clamp(60px, 8vw, 120px);
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.contact__marquee-track {
  display: flex;
  align-items: center;
  gap: clamp(30px, 4vw, 64px);
  white-space: nowrap;
  width: max-content;
  animation: marquee 38s linear infinite;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(56px, 8.5vw, 144px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--paper-tan);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  line-height: 1;
}

.contact__mark {
  color: var(--vermillion);
  font-style: normal;
  font-size: 0.45em;
  vertical-align: middle;
  display: inline-block;
  transform: translateY(-0.1em);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .contact__marquee-track { animation: none; }
}

.contact__body {
  padding: 0 var(--gutter);
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.contact__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--vermillion);
  margin-bottom: clamp(36px, 4vw, 56px);
}

.contact__dash {
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--vermillion);
}

.contact__title {
  font-family: var(--display);
  font-size: clamp(72px, 12vw, 220px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  color: var(--paper-tan);
  margin-bottom: clamp(40px, 5vw, 64px);
}

.contact__title em {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  color: var(--vermillion);
}

.contact__copy {
  max-width: 620px;
  margin: 0 auto clamp(56px, 7vw, 88px);
}

.contact__copy p {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.7;
  letter-spacing: 0.005em;
  color: var(--paper-deep);
  margin-bottom: 18px;
}

.contact__copy p:last-child { margin-bottom: 0; }

.contact__copy em {
  color: var(--paper-tan);
  font-style: normal;
  font-weight: 500;
}

.contact__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
  margin: clamp(60px, 8vw, 120px) 0 0;
  text-align: left;
}

.contact-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(36px, 4vw, 64px) clamp(36px, 5vw, 80px);
  border: 1px solid rgba(239, 230, 210, 0.22);
  border-left: none;
  border-right: none;
  background: transparent;
  color: var(--paper-tan);
  overflow: hidden;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), color 0.5s var(--ease);
}

.contact-cta--primary { border-right: 1px solid var(--paper-tan); }
.contact-cta--secondary { border-left: none; }

@media (max-width: 720px) {
  .contact-cta { padding: clamp(28px, 5vw, 40px); }
  .contact-cta--primary { border-right: none; border-bottom: 1px solid var(--paper-tan); }
}

.contact-cta--primary {
  background: var(--paper-tan);
  border-color: var(--paper-tan);
  color: var(--ink);
}

.contact-cta__label {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  line-height: 1;
  color: inherit;
}

.contact-cta .cta-arrow {
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.6;
}

.contact-cta:hover {
  background: var(--vermillion);
  border-color: var(--vermillion);
  color: var(--paper-tan);
  opacity: 1;
}

.contact-cta:hover .cta-arrow { transform: translateX(10px); }

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

/* ============================================================
   FOOTER — quiet colophon
   ============================================================ */

.footer {
  background: var(--ink);
  color: var(--paper-deep);
  padding: clamp(40px, 5vw, 64px) var(--gutter);
  border-top: 1px solid rgba(239, 230, 210, 0.14);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 60px);
  max-width: 1600px;
  margin: 0 auto;
}

.footer__brand {
  display: block;
  justify-self: start;
}

.footer__brand img {
  width: 42px;
  height: auto;
  display: block;
  opacity: 0.92;
  transition: opacity 0.4s var(--ease);
}

.footer__brand:hover { opacity: 1; }
.footer__brand:hover img { opacity: 1; }

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 1.5vw, 20px);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer__nav a {
  position: relative;
  padding: 4px 0;
  color: var(--paper-deep);
  transition: color 0.4s var(--ease);
}

.footer__nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--vermillion);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.5s var(--ease);
}

.footer__nav a:hover {
  color: var(--paper-tan);
  opacity: 1;
}

.footer__nav a:hover::after,
.footer__nav a:focus-visible::after,
.footer__call:focus-visible::after { transform: scaleX(1); transform-origin: left center; }
.footer__nav a:focus-visible,
.footer__call:focus-visible { color: var(--paper-tan); opacity: 1; outline: none; }

.footer__nav span {
  color: rgba(239, 230, 210, 0.3);
  font-size: 12px;
}

.footer__credo {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  line-height: 1.5;
  color: var(--paper-deep);
  text-align: right;
  justify-self: end;
  font-variation-settings: 'opsz' 18, 'SOFT' 100;
}

.footer__credo span {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(239, 230, 210, 0.5);
  margin-top: 4px;
}

@media (max-width: 880px) {
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
  .footer__brand { justify-self: center; }
  .footer__credo { text-align: center; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll-triggered reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 14, 13, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: clamp(20px, 5vw, 80px);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.lightbox.is-open { opacity: 1; }

.lightbox[hidden] { display: none; }

.lightbox__stage {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.lightbox__figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 2vw, 24px);
  max-width: 100%;
  max-height: 100%;
}

.lightbox__img {
  max-width: 100%;
  max-height: calc(100vh - 200px);
  width: auto;
  height: auto;
  display: block;
  border-radius: 2px;
  box-shadow: 0 40px 100px -40px rgba(0, 0, 0, 0.8);
  transform: scale(0.96);
  opacity: 0;
  animation: lightboxIn 0.5s var(--ease) forwards;
}

.lightbox.is-open .lightbox__img { animation: lightboxIn 0.5s var(--ease) forwards; }

@keyframes lightboxIn {
  to { opacity: 1; transform: scale(1); }
}

.lightbox__caption {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper-deep);
}

.lightbox__counter { color: var(--vermillion); }
.lightbox__title { color: var(--paper-tan); }

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: transparent;
  border: 1px solid rgba(239, 230, 210, 0.18);
  color: var(--paper-tan);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease);
  padding: 0;
}

.lightbox__close {
  top: clamp(20px, 4vw, 40px);
  right: clamp(20px, 4vw, 40px);
  width: 48px;
  height: 48px;
}

.lightbox__prev,
.lightbox__next {
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
}

.lightbox__prev { left: clamp(20px, 3vw, 40px); }
.lightbox__next { right: clamp(20px, 3vw, 40px); }

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: var(--vermillion);
  border-color: var(--vermillion);
  opacity: 1;
  transform: translateY(-50%) scale(1.05);
}

.lightbox__close:hover { transform: scale(1.05); }

@media (max-width: 720px) {
  .lightbox__prev, .lightbox__next { width: 44px; height: 44px; }
  .lightbox__close { width: 40px; height: 40px; }
  .lightbox__img { max-height: calc(100vh - 160px); }
}

/* ============================================================
   BOOKING MODAL
   ============================================================ */

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: rgba(15, 14, 13, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: clamp(20px, 4vw, 60px);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  overflow-y: auto;
}

.modal.is-open { opacity: 1; }
.modal[hidden] { display: none; }

.modal__panel {
  position: relative;
  background: var(--paper-white);
  color: var(--ink);
  width: 100%;
  max-width: 860px;
  margin: auto;
  padding: clamp(36px, 5vw, 72px);
  box-shadow: 0 60px 120px -30px rgba(0, 0, 0, 0.7);
  transform: translateY(24px) scale(0.985);
  transition: transform 0.55s var(--ease);
  overflow: hidden;
}

.modal.is-open .modal__panel {
  transform: translateY(0) scale(1);
}

.modal__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' seed='5' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.09 0 0 0 0 0.08 0 0 0 0.25 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
  opacity: 0.4;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.modal__panel > * { position: relative; z-index: 1; }

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--hairline);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease);
  z-index: 2;
}

.modal__close:hover {
  background: var(--vermillion);
  border-color: var(--vermillion);
  color: var(--paper-tan);
}

.modal__head {
  margin-bottom: clamp(32px, 4vw, 48px);
  padding-bottom: clamp(24px, 3vw, 36px);
  border-bottom: 1px solid var(--hairline);
  max-width: 90%;
}

.modal__tag {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vermillion);
  margin-bottom: 18px;
}

.modal__title {
  font-family: var(--display);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}

.modal__title em {
  font-style: italic;
  color: var(--vermillion);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

.modal__lede {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 500px;
}

.modal__fieldset {
  border: none;
  padding: 0;
  margin: 0 0 clamp(28px, 3.5vw, 40px);
}

.modal__legend {
  display: block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vermillion);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hairline);
  width: 100%;
}

.modal__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 2vw, 28px);
  margin-bottom: clamp(18px, 2vw, 26px);
}

.modal__row:last-child { margin-bottom: 0; }

.modal__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: clamp(18px, 2vw, 26px);
}

.modal__field:last-child { margin-bottom: 0; }
.modal__field--full { grid-column: 1 / -1; }

.modal__field label,
.modal__field .modal__group-label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: block;
}

.modal__field label span {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  font-style: italic;
  font-family: var(--display);
  font-size: 13px;
  color: var(--ink-soft);
  margin-left: 4px;
}

.modal__field input[type='text'],
.modal__field input[type='email'],
.modal__field input[type='tel'],
.modal__field input[type='url'],
.modal__field input[type='date'],
.modal__field select,
.modal__field textarea {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hairline-strong);
  padding: 10px 0;
  appearance: none;
  border-radius: 0;
  outline: none;
  transition: border-color 0.35s var(--ease);
  width: 100%;
  -webkit-appearance: none;
}

.modal__field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%),
    linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%);
  background-position: calc(100% - 12px) 50%, calc(100% - 6px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 24px;
  cursor: pointer;
}

.modal__field textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--sans);
  line-height: 1.5;
}

.modal__field input:focus,
.modal__field select:focus,
.modal__field textarea:focus {
  border-bottom-color: var(--vermillion);
}

.modal__field ::placeholder {
  color: var(--ink-soft);
  opacity: 0.45;
  font-style: italic;
  font-family: var(--display);
}

.modal__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.modal__chips label {
  cursor: pointer;
  margin: 0;
}

.modal__chips input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.modal__chips span {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid var(--hairline-strong);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--ink);
  transition: all 0.3s var(--ease);
}

.modal__chips label:hover span {
  border-color: var(--ink);
}

.modal__chips input:checked + span {
  background: var(--ink);
  color: var(--paper-tan);
  border-color: var(--ink);
}

.modal__chips input:focus-visible + span {
  outline: 2px solid var(--vermillion);
  outline-offset: 2px;
}

.modal__foot {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
  margin-top: clamp(32px, 4vw, 48px);
  padding-top: clamp(24px, 3vw, 36px);
  border-top: 1px solid var(--hairline);
  flex-wrap: wrap;
}

.modal__submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: var(--ink);
  color: var(--paper-tan);
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.4s var(--ease);
}

.modal__submit .cta-arrow {
  font-size: 1.9em;
  line-height: 0.6;
}

.modal__submit:hover {
  background: var(--vermillion);
}

.modal__submit:hover .cta-arrow { transform: translateX(6px); }

.modal__hint {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  font-variation-settings: 'opsz' 18, 'SOFT' 100;
  margin: 0;
}

.modal__error {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  color: var(--vermillion);
  margin: 0;
  letter-spacing: 0.01em;
}

.modal__group-label {
  display: block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 12px;
}

/* Success state — swaps in after a successful Formspree submission */
.modal__success {
  text-align: left;
  padding: clamp(12px, 1.5vw, 20px) 0 clamp(8px, 1vw, 16px);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.modal__success.is-shown {
  opacity: 1;
  transform: translateY(0);
}

.modal__success-mark {
  display: inline-flex;
  width: clamp(56px, 6vw, 72px);
  height: clamp(56px, 6vw, 72px);
  color: var(--vermillion);
  margin-bottom: clamp(24px, 3vw, 36px);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.6s var(--ease) 0.15s, transform 0.6s var(--ease) 0.15s;
}

.modal__success-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.modal__success.is-shown .modal__success-mark {
  opacity: 1;
  transform: scale(1);
}

.modal__success .modal__tag {
  display: inline-block;
  margin-bottom: clamp(16px, 2vw, 22px);
}

.modal__success-title {
  font-family: var(--display);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.035em;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  margin-bottom: clamp(20px, 2.5vw, 28px);
  color: var(--ink);
}

.modal__success-title em {
  font-style: italic;
  color: var(--ink);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

/* When the success state is active, hide the original head so the
   confirmation moment stands alone */
.modal__panel:has(.modal__success.is-shown) .modal__head { display: none; }

.modal__success-text {
  font-family: var(--sans);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 0 clamp(28px, 3.5vw, 44px);
}

.modal__success-next {
  list-style: none;
  margin: 0 0 clamp(28px, 3.5vw, 44px);
  padding: clamp(20px, 2.5vw, 32px) 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.5vw, 20px);
}

.modal__success-next li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(16px, 1.8vw, 28px);
  align-items: baseline;
  font-family: var(--sans);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.55;
  color: var(--ink-soft);
}

.modal__success-step {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--vermillion);
  text-transform: uppercase;
  min-width: 2ch;
}

.modal__success-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 36px);
  flex-wrap: wrap;
  padding-top: clamp(16px, 2vw, 24px);
}

.modal__success-sign {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-soft);
  font-variation-settings: 'opsz' 18, 'SOFT' 100;
  margin: 0;
}

@media (max-width: 720px) {
  .modal { padding: 16px; }
  .modal__panel { padding: 32px 24px; }
  .modal__row { grid-template-columns: 1fr; }
  .modal__head { max-width: 100%; }
}

/* ============================================================
   REDUCED MOTION — WCAG 2.3.3
   Disable every non-essential animation/transition and snap
   content to its final, visible state so nothing is stuck
   off-screen, at 0 opacity, or behind a scroll-pin spacer.
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

  /* Sweeping reset — kill every animation/transition globally,
     then re-state the few things that must hold their final form. */
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    animation-delay: 0ms !important;
    transition-duration: 0.001ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }

  html { scroll-behavior: auto !important; }

  /* Scroll-triggered reveals — always visible */
  [data-reveal],
  [data-reveal].is-visible {
    opacity: 1 !important;
    transform: none !important;
  }

  /* Hero entrance fade-up — drop the keyframe animations */
  .hero__bar,
  .hero__title,
  .hero__foot,
  .masthead {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  /* Contact marquee — stop the infinite scroll */
  .contact__marquee-track {
    animation: none !important;
    transform: none !important;
  }

  /* Featured pinned scene — show the final image + copy state */
  .featured {
    --pin-progress: 1;
    --pin-image: 1;
    --pin-tag: 1;
    --pin-title: 1;
    --pin-eyebrow: 1;
    --pin-desc: 1;
    --pin-cta: 1;
    /* Collapse the spacer so we don't leave empty whitespace below */
    min-height: 100vh;
  }

  .featured__stage {
    position: relative;
    height: auto;
    min-height: 100vh;
  }

  .featured__media,
  .featured__media img,
  .featured__copy > * {
    opacity: 1 !important;
    transform: none !important;
    will-change: auto !important;
  }

  /* Process pinned cinema — collapse the 300vh spacer and show the
     video at its boxed state with the columns layer fully revealed.
     This prevents the long empty scroll-pin region. */
  .process__cinema {
    --pin-progress: 1;
    --pin-expand: 0;
    --pin-reveal: 1;
    height: auto;
  }

  .process__sticky {
    position: relative;
    height: auto;
    min-height: 0;
  }

  .process__video-layer {
    position: relative;
    inset: auto;
    padding-top: clamp(20px, 3vw, 40px);
  }

  .process__video {
    width: 100% !important;
    height: auto !important;
    max-height: none;
    aspect-ratio: 21 / 9;
    will-change: auto !important;
  }

  .process__columns-layer {
    position: relative;
    inset: auto;
    opacity: 1 !important;
    transform: none !important;
    background: var(--ink);
    will-change: auto !important;
  }

  /* Show every process step at full opacity, no transform, no bar tracking */
  .process__columns-layer .process__step {
    opacity: 1 !important;
    transform: none !important;
  }

  .process__columns-layer .process__step::before {
    width: 100% !important;
    transition: none !important;
  }

  /* Lightbox & modal — drop the scale/translate intros */
  .lightbox__img {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .modal__panel {
    transform: none !important;
  }

  /* Hover micro-effects that involve transforms — keep functionality,
     just zero out movement */
  .tier:hover,
  .featured__media:hover .featured__media-hint,
  .campaign__slide:hover img,
  .contact-cta:hover .cta-arrow,
  .btn:hover .cta-arrow,
  .masthead__cta:hover .cta-arrow,
  .featured__cta:hover .cta-arrow,
  .tier__cta:hover .cta-arrow,
  .modal__submit:hover .cta-arrow {
    transform: none !important;
  }

  .tier__cta:hover,
  .tier__cta--featured:hover {
    padding-left: 0 !important;
  }

  /* Hero hover-reveal video — leave the user-initiated reveal intact,
     but pause the looping video so it isn't motion-by-default. The
     toggle still works; it just doesn't autoplay continuously. */
  .hero__bg-video {
    animation-play-state: paused;
  }
}
