/* ==========================================================================
   FIRE, WATER, EARTH PRODUCTIONS - CORE STYLESHEET
   Design tokens
   -------------
   Colour   : void #0B0A08, charcoal #16130F, ember #FF5722, ember-deep #C22A0D,
              tide #2F8F8F, tide-deep #163C40, clay #C98A3D, bone #F2ECE1, smoke #A89E90
   Type     : Fraunces (display, serif, dramatic optical weight)
              Inter (body/UI)
              IBM Plex Mono (eyebrows, labels, data)
   Layout   : full-bleed sections, generous vertical rhythm, off-grid image bleeds
   Signature: the "Elemental Core" - three blurred, morphing colour fields
              (fire / water / earth) that breathe behind key headlines and
              reappear as a loader + section divider motif throughout.
   ========================================================================== */

:root {
  --void: #0b0a08;
  --charcoal: #16130f;
  --charcoal-2: #1d1912;
  --ember: #ff5722;
  --ember-deep: #c22a0d;
  --tide: #2f8f8f;
  --tide-deep: #163c40;
  --clay: #c98a3d;
  --bone: #f2ece1;
  --smoke: #a89e90;
  --smoke-dim: #6f6a5f;
  --line: rgba(242, 236, 225, 0.12);

  --font-display: "Space Grotesk", "Inter", -apple-system, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --rail-color: rgba(242, 236, 225, 0.1);

  --container: 1280px;
  --gutter: clamp(1.5rem, 4vw, 4rem);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

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

html { scroll-behavior: smooth; }

body {
  background: var(--void);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--ember); color: var(--void); }

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--smoke);
}



h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.display-1 {
  font-size: clamp(2.8rem, 7.5vw, 6.4rem);
  font-weight: 700;
}

.display-2 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 700;
}

.display-3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
}

.no-caps { text-transform: none; }

p.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--smoke);
  max-width: 42em;
  font-weight: 300;
}

.italic { font-style: italic; }

.text-ember { color: var(--ember); }
.text-tide { color: var(--tide); }
.text-clay { color: var(--clay); }

/* ==========================================================================
   PRELOADER - elemental core convergence
   ========================================================================== */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--void);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__core {
  position: relative;
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preloader__logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255, 140, 60, 0.35)) drop-shadow(0 0 32px rgba(60, 140, 255, 0.25));
  animation: logoPulse 2.4s var(--ease-in-out) infinite;
}

@keyframes logoPulse {
  0%, 100% { transform: scale(0.96); opacity: 0.88; }
  50% { transform: scale(1.03); opacity: 1; }
}

.preloader__label {
  margin-top: 1.6rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  color: var(--smoke);
  white-space: nowrap;
}

/* ==========================================================================
   ELEMENTAL CORE - reusable ambient signature (SVG filter driven)
   ========================================================================== */

.elemental-core {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.elemental-core__field {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  mix-blend-mode: screen;
  opacity: 0.55;
  will-change: transform;
}

.elemental-core__field--fire {
  width: 42vw;
  height: 42vw;
  background: radial-gradient(circle at 30% 30%, var(--ember) 0%, transparent 70%);
  top: -10%;
  left: -8%;
  animation: driftFire 18s var(--ease-in-out) infinite;
}

.elemental-core__field--water {
  width: 38vw;
  height: 38vw;
  background: radial-gradient(circle at 60% 40%, var(--tide) 0%, transparent 70%);
  bottom: -14%;
  right: -6%;
  animation: driftWater 22s var(--ease-in-out) infinite;
}

.elemental-core__field--earth {
  width: 30vw;
  height: 30vw;
  background: radial-gradient(circle at 50% 50%, var(--clay) 0%, transparent 70%);
  top: 40%;
  left: 40%;
  animation: driftEarth 26s var(--ease-in-out) infinite;
}

@keyframes driftFire {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(6vw, 8vh) scale(1.15); }
}
@keyframes driftWater {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-7vw, -6vh) scale(1.1); }
}
@keyframes driftEarth {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-4vw, 6vh) scale(0.9); }
}

/* ember particles */
.embers {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.ember-particle {
  position: absolute;
  bottom: -10px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 6px 1px var(--ember);
  opacity: 0;
  animation: emberRise linear infinite;
}

@keyframes emberRise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.9; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-110vh) translateX(var(--drift, 20px)); opacity: 0; }
}

/* ==========================================================================
   GRID RAILS - vertical column dividers (signature structural motif)
   ========================================================================== */

.grid-rails {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  max-width: var(--container);
  margin: 0 auto;
  left: 0;
  right: 0;
  padding: 0 var(--gutter);
}

.grid-rails::before,
.grid-rails::after,
.grid-rails span {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--rail-color);
}

.grid-rails::before { left: 25%; }
.grid-rails::after { left: 75%; }
.grid-rails span { left: 50%; }

@media (max-width: 760px) {
  .grid-rails { display: none; }
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.4rem 0;
  transition: background 0.4s var(--ease-out), padding 0.4s var(--ease-out), border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(11, 10, 8, 0.86);
  backdrop-filter: blur(10px);
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  z-index: 110;
}

.brand__mark {
  width: auto;
  height: 58px;
  position: relative;
  flex-shrink: 0;
}

.brand__mark img {
  width: auto;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand__name b { font-weight: 600; }
.brand__name em { font-style: italic; color: var(--smoke); font-size: 0.85em; }

@media (max-width: 540px) {
  .brand__mark { height: 44px; }
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.nav-desktop a {
  position: relative;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: var(--bone);
  padding: 0.3rem 0;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--ember);
  transition: width 0.35s var(--ease-out);
}

.nav-desktop a:hover::after,
.nav-desktop a.is-active::after {
  width: 100%;
}

.nav-desktop a.is-active { color: var(--ember); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.9rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: border-color 0.3s, background 0.3s, color 0.3s, transform 0.3s;
  white-space: nowrap;
}

.btn:hover {
  border-color: var(--ember);
  transform: translateY(-2px);
}

.btn--solid {
  background: var(--ember);
  border-color: var(--ember);
  color: var(--void);
}

.btn--solid:hover {
  background: var(--bone);
  border-color: var(--bone);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  z-index: 110;
}

.nav-toggle span {
  height: 1px;
  background: var(--bone);
  transition: transform 0.35s var(--ease-out), opacity 0.25s;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--void);
  z-index: 105;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  transform: translateY(-100%);
  transition: transform 0.55s var(--ease-in-out);
}

.nav-mobile.is-open { transform: translateY(0); }

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 2rem;
}

/* ==========================================================================
   HERO - video
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--void);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}

.hero__media video,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,10,8,0.55) 0%, rgba(11,10,8,0.35) 40%, rgba(11,10,8,0.92) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 var(--gutter) 5.5rem;
}

.hero__kicker {
  margin-bottom: 1.6rem;
}

.hero__title {
  color: var(--bone);
  max-width: 16em;
}

.hero__title .line { display: block; overflow: hidden; }
.hero__title .line span { display: inline-block; }

.hero__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2.6rem;
}

.hero__lede { max-width: 30em; }

@media (max-width: 760px) {
  .hero__content { padding-top: 8rem; }
}

@media (max-width: 540px) {
  .hero__content { padding-top: 7rem; }
}

/* ==========================================================================
   SECTIONS - general rhythm
   ========================================================================== */

.section {
  position: relative;
  padding: clamp(4.5rem, 10vh, 8.5rem) 0;
}

.section--alt {
  background: var(--charcoal);
}

.section--tight { padding: clamp(3rem, 6vh, 5rem) 0; }

.section__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 6vh, 4.5rem);
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
}

.reveal.is-visible {
  animation: revealUp 0.9s var(--ease-out) forwards;
}

@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

.slide-left {
  opacity: 0;
  transform: translateX(-80px);
}
.slide-left.is-visible {
  animation: slideInLeft 1s var(--ease-out) forwards;
}
@keyframes slideInLeft {
  to { opacity: 1; transform: translateX(0); }
}

.slide-right {
  opacity: 0;
  transform: translateX(80px);
}
.slide-right.is-visible {
  animation: slideInRight 1s var(--ease-out) forwards;
}
@keyframes slideInRight {
  to { opacity: 1; transform: translateX(0); }
}

.stagger-sides > * { opacity: 0; }
.stagger-sides > *:nth-child(odd) { transform: translateX(-70px); }
.stagger-sides > *:nth-child(even) { transform: translateX(70px); }
.stagger-sides.is-visible > *:nth-child(odd) { animation: slideInLeft 0.95s var(--ease-out) forwards; }
.stagger-sides.is-visible > *:nth-child(even) { animation: slideInRight 0.95s var(--ease-out) forwards; }
.stagger-sides.is-visible > *:nth-child(1) { animation-delay: 0s; }
.stagger-sides.is-visible > *:nth-child(2) { animation-delay: 0.12s; }
.stagger-sides.is-visible > *:nth-child(3) { animation-delay: 0.24s; }
.stagger-sides.is-visible > *:nth-child(4) { animation-delay: 0.36s; }
.stagger-sides.is-visible > *:nth-child(5) { animation-delay: 0.48s; }
.stagger-sides.is-visible > *:nth-child(6) { animation-delay: 0.6s; }

.stagger > * { opacity: 0; transform: translateY(24px); }
.stagger.is-visible > * { animation: revealUp 0.8s var(--ease-out) forwards; }
.stagger.is-visible > *:nth-child(1) { animation-delay: 0s; }
.stagger.is-visible > *:nth-child(2) { animation-delay: 0.1s; }
.stagger.is-visible > *:nth-child(3) { animation-delay: 0.2s; }
.stagger.is-visible > *:nth-child(4) { animation-delay: 0.3s; }
.stagger.is-visible > *:nth-child(5) { animation-delay: 0.4s; }
.stagger.is-visible > *:nth-child(6) { animation-delay: 0.5s; }

/* ==========================================================================
   TRIPTYCH - elemental philosophy
   ========================================================================== */

.triptych {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.triptych__panel {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(2rem, 4vw, 3.2rem);
  position: relative;
  overflow: hidden;
  transition: background 0.5s;
}

.triptych__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 0;
}

.triptych__panel--fire::before { background: radial-gradient(circle at 30% 20%, rgba(255,87,34,0.18), transparent 70%); }
.triptych__panel--water::before { background: radial-gradient(circle at 30% 20%, rgba(47,143,143,0.22), transparent 70%); }
.triptych__panel--earth::before { background: radial-gradient(circle at 30% 20%, rgba(201,138,61,0.2), transparent 70%); }

.triptych__panel:hover::before { opacity: 1; }

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

.triptych__index {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--smoke-dim);
  display: block;
  margin-bottom: 2.2rem;
}

.triptych__title {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin-bottom: 1rem;
}

.triptych__panel p { color: var(--smoke); font-size: 0.98rem; }

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

/* ==========================================================================
   STATS
   ========================================================================== */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--line);
  padding-top: 3rem;
}

.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--ember);
  line-height: 1;
}

.stat__label {
  margin-top: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--smoke);
}

@media (max-width: 760px) {
  .stats { grid-template-columns: repeat(2, 1fr); row-gap: 2.4rem; }
}

.floating-still {
  display: none;
  position: absolute;
  top: -6rem;
  right: 0;
  width: 180px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--line);
}

@media (min-width: 900px) {
  .floating-still { display: block; }
}

/* ==========================================================================
   CARDS - services / grid
   ========================================================================== */

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 3vw, 3rem); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }

@media (max-width: 900px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

.service-row {
  display: grid;
  grid-template-columns: 90px 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2.4rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.4s var(--ease-out);
}

.service-row:hover { padding-left: 1rem; }

.service-row:first-of-type { border-top: 1px solid var(--line); }

.service-row__index {
  font-family: var(--font-mono);
  color: var(--smoke-dim);
  font-size: 0.85rem;
}

.service-row__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.service-row__desc { color: var(--smoke); font-size: 0.95rem; }

@media (max-width: 760px) {
  .service-row { grid-template-columns: 1fr; gap: 0.6rem; }
}

.pillar-card {
  border: 1px solid var(--line);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  transition: border-color 0.4s, transform 0.4s var(--ease-out);
}

.pillar-card:hover { border-color: var(--ember); transform: translateY(-6px); }

.pillar-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.6rem;
}

.pillar-card h3 { font-size: 1.35rem; margin-bottom: 0.8rem; }
.pillar-card p { color: var(--smoke); font-size: 0.94rem; }

/* ==========================================================================
   TICKET CARD - scalloped-edge image frame (signature motif)
   ========================================================================== */

.ticket-card {
  --scallop-bg: var(--void);
  position: relative;
  border: 1px solid var(--bone);
  padding: 10px 10px 20px;
  background: var(--void);
}

.ticket-card__frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.ticket-card__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.ticket-card:hover .ticket-card__frame img { transform: scale(1.06); }

.ticket-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 16px;
  background-image: radial-gradient(circle at 8px 0, var(--scallop-bg) 8px, transparent 8.5px);
  background-size: 16px 16px;
  background-repeat: repeat-x;
  background-position: left bottom;
}

.ticket-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.4rem, 3vw, 2rem) 0;
  border-bottom: 1px solid var(--line);
}

.ticket-meta__title {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.ticket-meta__date {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  white-space: nowrap;
  text-align: right;
}

.ticket-meta__sub {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  color: var(--smoke);
  margin-top: 0.4rem;
  text-transform: none;
}

.bracket {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--smoke);
  text-transform: none;
}

.bracket::before { content: "[ "; color: var(--smoke-dim); }
.bracket::after { content: " ]"; color: var(--smoke-dim); }

.bracket-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}

/* ==========================================================================
   QUOTE / CTA BLOCK
   ========================================================================== */

.quote-block {
  position: relative;
  text-align: center;
  padding: clamp(4rem, 10vh, 7rem) 0;
  background: var(--charcoal-2);
}

.quote-block blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.6rem, 4vw, 3rem);
  max-width: 20em;
  margin: 0 auto;
  line-height: 1.25;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--charcoal-2);
  padding: clamp(4rem, 12vh, 8rem) 0;
  text-align: center;
}

.cta-banner__inner { position: relative; z-index: 2; }

.cta-banner .display-1 { margin-bottom: 2rem; }

/* ==========================================================================
   FORMS - contact / newsletter
   ========================================================================== */

.form-grid {
  display: grid;
  gap: 1.4rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.field label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--smoke);
}

.field input,
.field textarea,
.field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 0.8rem 0.2rem;
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--ember);
  outline: none;
}

.field textarea { resize: vertical; min-height: 120px; }

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
@media (max-width: 620px) { .form-row-2 { grid-template-columns: 1fr; } }

.form-status {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  min-height: 1.4em;
}

.form-status[data-state="success"] { color: var(--tide); }
.form-status[data-state="error"] { color: var(--ember); }
.form-status[data-state="sending"] { color: var(--smoke); }

.newsletter {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(3rem, 6vh, 4.5rem) 0;
}

.newsletter__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.newsletter__copy { max-width: 30em; }

.newsletter-form {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  flex: 1;
  min-width: 280px;
  max-width: 460px;
}

.newsletter-form input[type="email"],
.newsletter-form input[type="text"] {
  flex: 1;
  min-width: 140px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  color: var(--bone);
  font-family: var(--font-body);
}

.newsletter-form input[type="email"]:focus,
.newsletter-form input[type="text"]:focus {
  border-color: var(--ember);
  outline: none;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  padding: clamp(3.5rem, 8vh, 6rem) 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}

.footer-logo {
  width: auto;
  height: 48px;
  object-fit: contain;
  margin-bottom: 0.9rem;
  opacity: 0.92;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.footer-col a, .footer-col p {
  display: block;
  color: var(--bone);
  font-size: 0.92rem;
  margin-bottom: 0.7rem;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--ember); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.6rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--smoke-dim);
  letter-spacing: 0.04em;
}

.footer-socials { display: flex; gap: 0.9rem; }
.footer-socials a,
.social-icon-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--bone);
  flex-shrink: 0;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.footer-socials a:hover,
.social-icon-row a:hover {
  border-color: var(--ember);
  color: var(--ember);
  background: rgba(255, 87, 34, 0.08);
}
.footer-socials a svg,
.social-icon-row a svg {
  width: 18px;
  height: 18px;
}
.social-icon-row { display: flex; gap: 0.9rem; flex-wrap: wrap; }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   PAGE HEADER (inner pages)
   ========================================================================== */

.page-header {
  position: relative;
  padding: clamp(8rem, 20vh, 11rem) 0 clamp(3rem, 6vh, 4.5rem);
  overflow: hidden;
  background: var(--charcoal);
  border-bottom: 1px solid var(--line);
}

.page-header__crumb {
  margin-bottom: 1.4rem;
}

/* ==========================================================================
   MISC UTILITIES
   ========================================================================== */

.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; } .mb-3 { margin-bottom: 3rem; }
.flex { display: flex; }
.gap-1 { gap: 1rem; }
.center-text { text-align: center; }

hr.rule { border: none; border-top: 1px solid var(--line); }

.tag-list { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.tag-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--smoke);
}

.value-list li {
  display: flex;
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

.value-list li:first-child { border-top: 1px solid var(--line); }

.value-list .num {
  font-family: var(--font-mono);
  color: var(--ember);
  font-size: 0.85rem;
  flex-shrink: 0;
  padding-top: 0.2rem;
}

/* ==========================================================================
   STARFIELD - soft floating stars drifting across the whole site
   ========================================================================== */

.stars-field {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.star {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: var(--bone);
  will-change: transform, opacity;
  animation: starTwinkle var(--twinkle-dur, 4s) ease-in-out infinite,
             starDrift var(--drift-dur, 60s) linear infinite;
}

@keyframes starTwinkle {
  0%, 100% { opacity: var(--min-op, 0.15); }
  50% { opacity: var(--max-op, 0.9); }
}

@keyframes starDrift {
  from { transform: translate(0, 0); }
  to { transform: translate(var(--drift-x, 40px), var(--drift-y, -60px)); }
}

@media (prefers-reduced-motion: reduce) {
  .star { animation: none; opacity: 0.4; }
}

@media (max-width: 700px) {
  .stars-field { opacity: 0.7; }
}

/* responsive nav switch */
@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
}

/* ==========================================================================
   SCROLL PROGRESS RAIL - thin reel of film feeding across the top
   ========================================================================== */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 200;
  background: transparent;
  pointer-events: none;
}

.scroll-progress__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--ember), var(--clay), var(--tide));
  transform-origin: left;
  transition: width 0.08s linear;
}

/* ==========================================================================
   CUSTOM CURSOR - dot + trailing ring, magnetised toward interactive targets
   ========================================================================== */

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 300;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--bone);
  transition: opacity 0.2s;
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid var(--bone);
  opacity: 0.7;
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out),
    opacity 0.3s, border-color 0.3s, background 0.3s;
}

.cursor-ring.is-active {
  width: 64px;
  height: 64px;
  background: rgba(255, 87, 34, 0.12);
  border-color: var(--ember);
}

body.has-custom-cursor,
body.has-custom-cursor a,
body.has-custom-cursor button {
  cursor: none;
}

@media (max-width: 900px), (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
  body.has-custom-cursor, body.has-custom-cursor a, body.has-custom-cursor button {
    cursor: auto;
  }
}

/* ==========================================================================
   MARQUEE - auto-scrolling ticker band (signature rhythm break)
   ========================================================================== */

.marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(1.1rem, 2.4vw, 1.6rem) 0;
  background: var(--charcoal);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

.marquee:hover .marquee__track { animation-play-state: paused; }

.marquee__item {
  display: flex;
  align-items: center;
  gap: 0.9em;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.6vw, 1.9rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--bone);
  padding: 0 1.4rem;
  white-space: nowrap;
}

.marquee__item span.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ember);
  flex-shrink: 0;
}

.marquee__item em {
  font-style: italic;
  color: var(--smoke);
}

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

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

/* ==========================================================================
   CURTAIN REVEAL - cinematic wipe-in for imagery
   ========================================================================== */

.curtain-reveal {
  position: relative;
  overflow: hidden;
}

.curtain-reveal img {
  transform: scale(1.15);
  transition: transform 1.4s var(--ease-out);
}

.curtain-reveal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--void);
  transform-origin: right;
  transform: scaleX(1);
  transition: transform 1.05s var(--ease-in-out);
  z-index: 2;
}

.curtain-reveal.is-visible img { transform: scale(1); }
.curtain-reveal.is-visible::after { transform: scaleX(0); }

/* ==========================================================================
   PRODUCTIONS CAROUSEL - horizontal scroll-snap with arrow controls
   ========================================================================== */

.carousel {
  position: relative;
}

.carousel__track {
  display: flex;
  gap: clamp(1.2rem, 2.4vw, 2rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0.5rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.carousel__track::-webkit-scrollbar { display: none; }

.carousel__track > * {
  scroll-snap-align: start;
  flex: 0 0 clamp(230px, 30vw, 320px);
}

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
}

.carousel__arrows {
  display: flex;
  gap: 0.8rem;
}

.carousel__arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.carousel__arrow:hover { border-color: var(--ember); transform: translateY(-2px); }
.carousel__arrow:disabled { opacity: 0.3; pointer-events: none; }
.carousel__arrow svg { width: 16px; height: 16px; stroke: var(--bone); fill: none; stroke-width: 1.6; }

.carousel__progress {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--smoke);
}

.carousel__progress b { color: var(--bone); }
