/* ==========================================================================
   GTRX — Sound Translated Into Space
   ========================================================================== */

@font-face {
  font-family: 'PP Monument';
  src: url('../fonts/PPMonumentNormal-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'PP Monument';
  src: url('../fonts/PPMonumentNormal-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'PP Monument';
  src: url('../fonts/PPMonumentNormal-Black.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'PP Monument';
  src: url('../fonts/PPMonumentNormal-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'PP Monument';
  src: url('../fonts/PPMonumentNormal-RegularItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'PP Monument Condensed';
  src: url('../fonts/PPMonumentCondensed-Black.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  /* palette */
  --void: #0a0a0a;
  --carbon: #1a1a1a;
  --carbon-2: #232323;
  --titanium: #8a8a8a;
  --titanium-dim: #5c5c5c;
  --bone: #f2eee8;
  --midnight: #162033;

  /* type */
  --font-display: 'PP Monument', -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --font-sans: 'PP Monument', -apple-system, 'Helvetica Neue', Arial, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --section-pad: clamp(5rem, 12vw, 10rem);
}

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

html {
  scroll-behavior: smooth;
  background: var(--void);
}

body {
  background: var(--void);
  color: var(--bone);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol { list-style: none; }

button { font-family: inherit; cursor: pointer; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: -100px; left: 1rem;
  background: var(--bone);
  color: var(--void);
  padding: 0.75rem 1.25rem;
  z-index: 1000;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

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

/* ==========================================================================
   Type scale
   ========================================================================== */

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--titanium);
  margin-bottom: 1.5rem;
}

.display-lg {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--bone);
}

.display-md {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.005em;
  color: var(--bone);
}

.display-sm {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.2;
  color: var(--bone);
  margin-bottom: 1.25rem;
}

.lede {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.5;
  color: var(--bone);
  margin: 1.5rem 0;
}

.body-text {
  font-size: 1rem;
  font-weight: 300;
  color: var(--titanium);
  max-width: 32rem;
  line-height: 1.8;
}

.text-link {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bone);
  position: relative;
  padding-bottom: 2px;
  background-image: linear-gradient(var(--bone), var(--bone));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size 0.4s var(--ease);
}
.text-link:hover { background-size: 100% 1px; }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.1rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--bone);
  color: var(--void);
  border-color: var(--bone);
}
.btn-primary:hover {
  background: transparent;
  color: var(--bone);
}

.btn-ghost {
  background: transparent;
  color: var(--bone);
  border-color: rgba(242, 238, 232, 0.35);
}
.btn-ghost:hover {
  border-color: var(--bone);
  background: rgba(242, 238, 232, 0.06);
}

.btn-pill {
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  border-color: rgba(242, 238, 232, 0.3);
  font-size: 0.7rem;
}
.btn-pill:hover {
  border-color: var(--bone);
  background: rgba(242, 238, 232, 0.06);
}

/* ==========================================================================
   Layout helpers
   ========================================================================== */

.section-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(8px);
  transition:
    opacity 1.4s var(--ease),
    transform 1.4s var(--ease),
    filter 1.4s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ==========================================================================
   Header
   ========================================================================== */

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

.site-header.scrolled {
  padding: 1.1rem 0;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(242, 238, 232, 0.08);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
}
.logo-img {
  height: 18px;
  width: auto;
  display: block;
  transform: translateX(5%);
}

.primary-nav {
  display: flex;
  gap: 2.75rem;
}
.primary-nav a {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--titanium);
  transition: color 0.3s var(--ease);
}
.primary-nav a:hover { color: var(--bone); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 24px;
  background: none;
  border: none;
}
.menu-toggle span {
  display: block;
  height: 1px;
  width: 100%;
  background: var(--bone);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 450;
  background: var(--void);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0.45s var(--ease);
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--bone);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  animation: hero-zoom 45s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes hero-zoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.35) 35%, rgba(10,10,10,0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 46rem;
  padding: 0 1.5rem;
  transform: none;
}
.hero-content.reveal { transform: translateY(0); transition-delay: 0.15s; filter: none; }

/* Staggered cinematic entrance for hero children */
.hero-content > * {
  opacity: 0;
  animation: hero-rise 1.7s var(--ease) forwards;
}
.hero-content > *:nth-child(1) { animation-delay: 0.25s; }
.hero-content > *:nth-child(2) { animation-delay: 0.55s; }
.hero-content > *:nth-child(3) { animation-delay: 0.95s; }
.hero-content > *:nth-child(4) { animation-delay: 1.25s; }
.hero-content > *:nth-child(5) { animation-delay: 1.6s; }

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(26px); filter: blur(10px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}

.hero-title {
  display: flex;
  justify-content: center;
}
.hero-logo-img {
  height: clamp(3rem, 9vw, 5.5rem);
  width: auto;
  transform: translateX(5%);
}

.hero-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  margin-top: 1.5rem;
  color: var(--bone);
}

.hero-support {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--titanium);
  max-width: 30rem;
  margin: 1.5rem auto 0;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.75rem;
}

/* ==========================================================================
   Philosophy
   ========================================================================== */

.philosophy {
  padding: var(--section-pad) 0;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 4rem;
  align-items: center;
}

.philosophy-visual {
  display: flex;
  justify-content: center;
}

.eclipse-mark {
  --p: 0.5; /* scroll progress 0..1, set by JS */
  width: clamp(140px, 20vw, 220px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #050505 55%, transparent 56%),
              radial-gradient(circle at 50% 50%, rgba(242,213,158,0.55), rgba(242,213,158,0) 60%);
  box-shadow: 0 0 calc(40px + var(--p) * 110px) calc(4px + var(--p) * 14px) rgba(242,213,158, calc(0.04 + var(--p) * 0.1));
  transform: scale(calc(0.72 + var(--p) * 0.42)) rotate(calc(var(--p) * 18deg));
  position: relative;
  will-change: transform, box-shadow;
}
.eclipse-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 40px 6px rgba(0,0,0,0.9);
}

/* ==========================================================================
   Collection
   ========================================================================== */

.collection { padding: var(--section-pad) 0 6rem; }

.collection-intro {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 5rem;
}
.collection-intro .lede { margin-left: auto; margin-right: auto; }

.product-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  max-width: 1240px;
  margin: 0 auto;
  padding: 4rem clamp(1.5rem, 5vw, 4rem);
}
.product-feature--reverse { direction: rtl; }
.product-feature--reverse > * { direction: ltr; }

.product-visual {
  aspect-ratio: 1 / 1;
  background: var(--carbon);
  border: 1px solid rgba(242,238,232,0.07);
  position: relative;
  overflow: hidden;
}
.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: kenburns 22s ease-in-out infinite alternate;
  will-change: transform;
}
.product-visual:hover img {
  filter: brightness(1.08);
  transition: filter 0.8s var(--ease);
}

@keyframes kenburns {
  from { transform: scale(1)    translateY(0); }
  to   { transform: scale(1.09) translateY(-8px); }
}

/* Candle — breathing flame glow */
.fx-flame {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 60%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(242, 190, 120, 0.32) 0%, rgba(242, 190, 120, 0.08) 40%, transparent 68%);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: flame-flicker 4.5s ease-in-out infinite;
}
@keyframes flame-flicker {
  0%, 100% { opacity: 0.75; transform: translate(-50%, -50%) scale(1); }
  18%      { opacity: 1;    transform: translate(-50%, -51%) scale(1.06); }
  34%      { opacity: 0.68; transform: translate(-51%, -50%) scale(0.97); }
  55%      { opacity: 0.95; transform: translate(-49%, -50%) scale(1.04); }
  72%      { opacity: 0.8;  transform: translate(-50%, -49%) scale(0.99); }
}

/* Mist — cool haze drifting across the frame */
.fx-haze {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 60% 40% at 30% 65%, rgba(180, 200, 230, 0.10), transparent 70%),
    radial-gradient(ellipse 50% 35% at 70% 35%, rgba(200, 210, 235, 0.07), transparent 70%);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: haze-drift 16s ease-in-out infinite alternate;
}

@keyframes haze-drift {
  from { transform: translateX(-4%) translateY(2%); }
  to   { transform: translateX(4%)  translateY(-3%); }
}

/* Mist — a fine spray puff every few seconds, dissolving like dust in light */
.fx-spray {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  mix-blend-mode: screen;
}
.fx-spray span {
  --dx: -70px;
  --dy: -10px;
  position: absolute;
  top: 15%;
  left: 62%;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(205, 220, 240, 0.34), transparent 70%);
  filter: blur(7px);
  opacity: 0;
  animation: spray-burst 8s ease-out infinite;
}
/* One burst = six droplets fanning left from the nozzle in a cone */
.fx-spray span:nth-child(1) { --dx: -78px;  --dy: -34px; animation-delay: 0s;    width: 22px; height: 22px; }
.fx-spray span:nth-child(2) { --dx: -104px; --dy: -14px; animation-delay: 0.07s; }
.fx-spray span:nth-child(3) { --dx: -118px; --dy:   6px; animation-delay: 0.13s; width: 30px; height: 30px; }
.fx-spray span:nth-child(4) { --dx: -96px;  --dy:  26px; animation-delay: 0.2s;  }
.fx-spray span:nth-child(5) { --dx: -66px;  --dy:  42px; animation-delay: 0.27s; width: 22px; height: 22px; }
.fx-spray span:nth-child(6) { --dx: -58px;  --dy:   2px; animation-delay: 0.34s; width: 42px; height: 42px; filter: blur(12px); }

@keyframes spray-burst {
  0%   { opacity: 0;    transform: translate(-50%, -50%) translate(0, 0) scale(0.35); }
  2.5% { opacity: 0.85; }
  16%  { opacity: 0;    transform: translate(-50%, -50%) translate(var(--dx), var(--dy)) scale(2.3); }
  100% { opacity: 0;    transform: translate(-50%, -50%) translate(var(--dx), var(--dy)) scale(2.3); }
}

/* Incense — smoke rising and dissolving */
.fx-smoke {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  mix-blend-mode: screen;
}
.fx-smoke span {
  position: absolute;
  bottom: 30%;
  left: 50%;
  width: 34px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(220, 220, 225, 0.16), transparent 70%);
  filter: blur(8px);
  opacity: 0;
  animation: smoke-rise 9s ease-out infinite;
}
.fx-smoke span:nth-child(2) { animation-delay: 3s;  left: 47%; }
.fx-smoke span:nth-child(3) { animation-delay: 6s;  left: 53%; }

@keyframes smoke-rise {
  0%   { opacity: 0;    transform: translate(-50%, 0)      scaleY(0.6) rotate(0deg); }
  12%  { opacity: 0.85; }
  60%  { opacity: 0.35; transform: translate(-64%, -120px) scaleY(1.4) rotate(-7deg); }
  100% { opacity: 0;    transform: translate(-38%, -220px) scaleY(1.9) rotate(6deg); }
}

.product-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--titanium-dim);
  margin-bottom: 1rem;
}

.product-notes {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--titanium);
  margin-bottom: 1.25rem;
}

.product-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}
.price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--bone);
}

.collection-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ==========================================================================
   Ritual
   ========================================================================== */

.ritual {
  padding: var(--section-pad) 0;
  background: var(--carbon);
  border-top: 1px solid rgba(242,238,232,0.06);
  border-bottom: 1px solid rgba(242,238,232,0.06);
}

.ritual-intro { text-align: center; margin-bottom: 5rem; }

.ritual-flow { position: relative; }

/* A thread of light draws itself between the three steps */
.ritual-line {
  position: absolute;
  top: 74px; /* crosses at icon height */
  left: 8%;
  width: 84%;
  height: 2px;
  overflow: visible;
  pointer-events: none;
}
.ritual-line path {
  fill: none;
  stroke: rgba(242, 213, 158, 0.28);
  stroke-width: 1;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 2.6s var(--ease) 0.4s;
}
.ritual-line.is-drawn path { stroke-dashoffset: 0; }

.ritual-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.ritual-step {
  text-align: center;
  padding: 0 1rem;
  border-left: 1px solid rgba(242,238,232,0.08);
}
.ritual-step:first-child { border-left: none; }

.ritual-index {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--titanium-dim);
  margin-bottom: 1.5rem;
}

.ritual-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  color: var(--bone);
  margin-bottom: 1.5rem;
}
.ritual-icon svg { width: 100%; height: 100%; }

.ritual-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.ritual-text {
  font-size: 0.9rem;
  color: var(--titanium);
  max-width: 16rem;
  margin: 0 auto;
  line-height: 1.7;
}

.ritual-link {
  display: inline-block;
  margin-top: 1.25rem;
}

/* ==========================================================================
   Story
   ========================================================================== */

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.story-visual {
  position: relative;
  min-height: 32rem;
  overflow: hidden;
}
.story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--section-pad) clamp(1.5rem, 6vw, 5rem);
}
.story-copy .lede { max-width: 30rem; }
.story-copy .body-text { margin-top: 0.5rem; }

/* Pinned scroll scene: the portrait holds while the story unfolds line by line */
.story-scene {
  position: relative;
  height: 280vh;
}
.story--pinned {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 560px;
}
.story--pinned .story-visual {
  min-height: 0;
}
.story--pinned .story-visual img {
  animation: story-zoom 30s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes story-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

.story-line {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(8px);
  transition:
    opacity 1.1s var(--ease),
    transform 1.1s var(--ease),
    filter 1.1s var(--ease);
}
.story-line.is-lit {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.story-line--question.is-lit {
  transition-duration: 1.6s;
}

/* ==========================================================================
   Newsletter
   ========================================================================== */

.newsletter {
  position: relative;
  padding: calc(var(--section-pad) + 2rem) 1.5rem;
  text-align: center;
  overflow: hidden;
}
.newsletter-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.newsletter-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.94) 75%);
}

.newsletter-content {
  position: relative;
  z-index: 1;
  max-width: 34rem;
  margin: 0 auto;
}
.newsletter-content .eyebrow { display: flex; justify-content: center; }
.newsletter-content .lede { margin: 0.5rem auto 2.5rem; max-width: 26rem; }

.form-message {
  margin-top: 1.25rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--titanium);
  min-height: 1.2em;
}
.form-message.is-success { color: var(--bone); }
.form-message.is-error { color: #c98b8b; }

/* ==========================================================================
   Utilities
   ========================================================================== */

.is-hidden { display: none !important; }
.is-visible-block { display: block !important; }

/* ==========================================================================
   Page hero (subpages)
   ========================================================================== */

.page-hero {
  padding: calc(var(--section-pad) + 3.5rem) 0 4rem;
  text-align: center;
}
.page-hero .eyebrow { display: flex; justify-content: center; }
.page-hero .lede { max-width: 30rem; margin: 1.5rem auto 0; }

/* ==========================================================================
   Contact
   ========================================================================== */

.contact-section { padding-bottom: var(--section-pad); }

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.contact-direct {
  margin-top: 2rem;
}
.contact-direct-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--titanium-dim);
  margin-bottom: 0.6rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.checkbox-field {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--titanium);
  cursor: pointer;
}
.checkbox-field input {
  width: 16px;
  height: 16px;
  accent-color: var(--bone);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  transition: opacity 0.3s var(--ease);
}
.form-grid.is-hidden { display: none; }

.form-field { display: flex; flex-direction: column; gap: 0.6rem; }
.form-field--full { grid-column: 1 / -1; }

.form-field label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--titanium-dim);
}
.form-field label .optional {
  text-transform: none;
  letter-spacing: 0;
  color: var(--titanium-dim);
}

.form-field input,
.form-field textarea {
  background: transparent;
  border: 1px solid rgba(242,238,232,0.3);
  color: var(--bone);
  padding: 0.9rem 1.1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  border-radius: 2px;
  resize: vertical;
  transition: border-color 0.3s var(--ease);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--bone);
}

.contact-form .btn { align-self: flex-start; }

.contact-success {
  display: none;
  padding: 3rem 0;
}
.contact-success.is-visible-block { display: block; }
.contact-success .display-sm { margin-bottom: 1rem; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--void);
  border-top: 1px solid rgba(242,238,232,0.08);
  padding: 5rem clamp(1.5rem, 5vw, 4rem) 2.5rem;
}

.footer-top {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
  padding-bottom: 4rem;
}

.footer-brand .logo-img { height: 22px; }

.footer-brand p {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--titanium);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 4.5rem;
  flex-wrap: wrap;
}

.footer-heading {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--titanium-dim);
  margin-bottom: 1.25rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.footer-col a {
  font-size: 0.9rem;
  color: var(--titanium);
  transition: color 0.3s var(--ease);
}
.footer-col a:hover { color: var(--bone); }
.footer-col a.is-soon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: default;
}
.footer-col a.is-soon span {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--titanium-dim);
  border: 1px solid rgba(242,238,232,0.15);
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
}
.footer-col a.is-soon:hover { color: var(--titanium); }

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(242,238,232,0.08);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--titanium-dim);
}

/* ==========================================================================
   Cinematic: atmosphere overlays
   ========================================================================== */

.vignette {
  position: fixed;
  inset: 0;
  z-index: 880;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(0, 0, 0, 0.34) 100%);
}

.film-grain {
  position: fixed;
  inset: -100px;
  z-index: 890;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 0.9s steps(4) infinite;
}

@keyframes grain-shift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-32px, 18px); }
  50%  { transform: translate(24px, -26px); }
  75%  { transform: translate(-18px, -34px); }
  100% { transform: translate(0, 0); }
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 870;
  width: 340px;
  height: 340px;
  margin: -170px 0 0 -170px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(242, 213, 158, 0.075), transparent 65%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
  will-change: transform;
}
.cursor-glow.is-active { opacity: 1; }

@media (pointer: coarse) {
  .cursor-glow { display: none; }
}

/* ==========================================================================
   Cinematic: Sound presence
   ========================================================================== */

.sound-toggle {
  position: fixed;
  bottom: 1.75rem;
  left: 1.75rem;
  z-index: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 1.1rem;
  background: rgba(10, 10, 10, 0.55);
  border: 1px solid rgba(242, 238, 232, 0.18);
  border-radius: 999px;
  color: var(--titanium);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.4s var(--ease), color 0.4s var(--ease);
}
.sound-toggle:hover {
  border-color: var(--bone);
  color: var(--bone);
}
.sound-toggle .sound-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eq {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 14px;
}
.eq span {
  width: 2px;
  height: 4px;
  background: currentColor;
  transition: height 0.4s var(--ease);
}
.sound-toggle[aria-pressed="true"] {
  color: var(--bone);
  border-color: rgba(242, 238, 232, 0.4);
}
.sound-toggle[aria-pressed="true"] .eq span {
  animation: eq-dance 1.1s ease-in-out infinite;
}
.sound-toggle[aria-pressed="true"] .eq span:nth-child(1) { animation-delay: 0s; }
.sound-toggle[aria-pressed="true"] .eq span:nth-child(2) { animation-delay: 0.25s; }
.sound-toggle[aria-pressed="true"] .eq span:nth-child(3) { animation-delay: 0.5s; }
.sound-toggle[aria-pressed="true"] .eq span:nth-child(4) { animation-delay: 0.12s; }

@keyframes eq-dance {
  0%, 100% { height: 4px; }
  35%      { height: 14px; }
  65%      { height: 8px; }
}

.hero-waveform {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  height: 34px;
  opacity: 0.5;
}
.hero-waveform span {
  width: 2px;
  height: 15%;
  background: var(--bone);
  border-radius: 1px;
  transition: height 0.25s ease-out;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 900px) {
  .primary-nav { display: none; }
  .menu-toggle { display: flex; }
  .header-actions .btn-pill { display: none; }

  .philosophy-grid { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .philosophy-text .lede br { display: none; }
  .philosophy-visual { order: -1; }

  .product-feature,
  .product-feature--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    text-align: center;
    gap: 2.5rem;
  }
  .product-meta { justify-content: center; }
  .product-visual { width: 100%; max-width: 22rem; margin: 0 auto; }

  .ritual-line { display: none; }
  .ritual-steps { grid-template-columns: 1fr; gap: 3.5rem; }
  .ritual-step { border-left: none; border-top: 1px solid rgba(242,238,232,0.08); padding-top: 3rem; }
  .ritual-step:first-child { border-top: none; padding-top: 0; }

  .story { grid-template-columns: 1fr; }
  .story-visual { min-height: 22rem; }

  /* No pinning on small screens — story reads as a normal section */
  .story-scene { height: auto; }
  .story--pinned { position: static; height: auto; min-height: 0; }
  .story--pinned .story-visual { min-height: 22rem; }
  .story-line { opacity: 1; transform: none; filter: none; }

  .footer-top { flex-direction: column; gap: 3rem; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .contact-form .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .hero-content > * { animation: none; opacity: 1; }
  .eclipse-mark { transform: none; }
  .sound-toggle[aria-pressed="true"] .eq span { animation: none; }
  .product-visual img,
  .story--pinned .story-visual img,
  .hero-video,
  .film-grain,
  .fx-flame, .fx-haze, .fx-smoke span, .fx-spray span { animation: none; }
  .cursor-glow { display: none; }
  .story-scene { height: auto; }
  .story--pinned { position: static; height: auto; min-height: 0; }
  .story-line { opacity: 1; transform: none; filter: none; transition: none; }
}
