/* ===========================
   $LIFE — How Life Feels
   Design System & Styles
   =========================== */

:root {
  /* Base — cinematic dark */
  --bg: #0A0806;
  --bg-elev: #12100C;
  --bg-surface: #1A1712;
  --bg-warm: #221C14;

  /* Golden backlight */
  --gold: #E8A940;
  --gold-bright: #F5C46A;
  --gold-soft: #C9901F;
  --gold-deep: #8F6314;
  --gold-glow: rgba(232, 169, 64, 0.22);
  --gold-glow-soft: rgba(232, 169, 64, 0.08);
  --amber-warm: #D88A2E;
  --ember: #B86A1A;

  /* Text */
  --text-primary: #F5EBD8;
  --text-secondary: #B8A684;
  --text-muted: #6E6147;
  --text-dim: #47402F;

  /* Borders */
  --border: rgba(232, 169, 64, 0.14);
  --border-soft: rgba(232, 169, 64, 0.07);
  --border-strong: rgba(232, 169, 64, 0.35);

  /* Fonts */
  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* ===========================
   RESET & BASE
   =========================== */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

::selection {
  background: var(--gold-deep);
  color: var(--text-primary);
}

/* ===========================
   GLOBAL AMBIENT EFFECTS
   =========================== */

/* Film grain */
.film-grain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* Vignette */
.vignette {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.55) 100%);
}

/* Cursor glow */
.cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow-soft) 0%, transparent 70%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 2;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.6s ease-out;
}

.cursor-glow.visible {
  opacity: 1;
}

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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 68px;
  z-index: 100;
  transition: background 0.4s ease-out, backdrop-filter 0.4s ease-out;
}

.nav.scrolled {
  background: rgba(10, 8, 6, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--gold);
  letter-spacing: -0.02em;
  position: relative;
  z-index: 10;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  transition: color 0.25s ease-out;
  position: relative;
  z-index: 10;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-ca-btn {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  border: 1px solid var(--border-strong);
  padding: 8px 20px;
  border-radius: 2px;
  letter-spacing: 0.04em;
  transition: all 0.25s ease-out;
  position: relative;
  z-index: 10;
}

.nav-ca-btn:hover {
  background: var(--gold);
  color: var(--bg);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  height: 28px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--gold);
  transition: all 0.3s ease-out;
}

.nav-burger.open span:first-child {
  transform: rotate(45deg) translate(2px, 2px);
}

.nav-burger.open span:last-child {
  transform: rotate(-45deg) translate(2px, -2px);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--bg);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-out;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.mobile-menu-link {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 36px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: -0.02em;
  transition: opacity 0.25s ease-out;
}

.mobile-menu-link:hover {
  opacity: 0.7;
}

.mobile-menu-ca {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--gold);
  border: 1px solid var(--border-strong);
  padding: 12px 28px;
  border-radius: 2px;
  margin-top: 20px;
  transition: all 0.25s ease-out;
}

.mobile-menu-ca:hover {
  background: var(--gold);
  color: var(--bg);
}

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

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Fallback gradient when no hero image */
.hero-bg.no-image {
  background: radial-gradient(ellipse at 60% 30%, var(--gold-deep) 0%, var(--bg) 70%);
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10,8,6,0.35) 0%, rgba(10,8,6,0.15) 40%, rgba(10,8,6,0.85) 100%);
}

.hero-golden-haze {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  mix-blend-mode: screen;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 1100px;
  width: 100%;
  padding: 0 32px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-eyebrow.visible {
  animation: fadeSlideUp 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(64px, 9vw, 160px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--text-primary);
}

.hero-word {
  display: block;
  opacity: 0;
  transform: translateY(30px);
}

.hero-word.visible {
  animation: fadeSlideUp 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 640px;
  margin-top: 32px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(20px);
}

.hero-subtitle.visible {
  animation: fadeSlideUp 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 48px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-ctas.visible {
  animation: fadeSlideUp 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.btn-primary {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--bg);
  background: var(--gold);
  padding: 16px 32px;
  border-radius: 2px;
  letter-spacing: 0.02em;
  transition: all 0.25s ease-out;
  position: relative;
  z-index: 10;
}

.btn-primary:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--gold-glow);
}

.btn-secondary {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 16px 32px;
  border-radius: 2px;
  letter-spacing: 0.02em;
  transition: all 0.25s ease-out;
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 10;
}

.btn-secondary:hover {
  background: rgba(232, 169, 64, 0.1);
  transform: translateY(-2px);
}

.hero-ca {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 24px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-ca.visible {
  animation: fadeSlideUp 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--gold);
  opacity: 0.4;
  position: relative;
  overflow: hidden;
}

.scroll-dot {
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  position: absolute;
  left: -1px;
  animation: scrollDot 2.5s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { top: 0; }
  50% { top: 37px; }
}

/* ===========================
   THE FEELING
   =========================== */

.feeling {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.feeling-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  z-index: 2;
  pointer-events: none;
  opacity: 0.5;
}

.feeling-inner {
  position: relative;
  z-index: 5;
  max-width: 1200px;
  width: 100%;
  padding: 120px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feeling-label {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 60px;
}

.feeling-line-top,
.feeling-line-bottom {
  width: 80px;
  height: 1px;
  background: var(--border);
  transition: opacity 0.6s ease-out;
}

.feeling-line-top {
  margin-bottom: 60px;
}

.feeling-line-bottom {
  margin-top: 60px;
}

.feeling-line-top.pulse,
.feeling-line-bottom.pulse {
  animation: linePulse 0.6s ease-out;
}

@keyframes linePulse {
  0% { opacity: 0.4; }
  50% { opacity: 1; }
  100% { opacity: 0.4; }
}

.feeling-display {
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  cursor: pointer;
}

.feeling-prefix {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 3.3vw, 53px);
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.feeling-phrase {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 96px);
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 100%;
  transition: opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.feeling-phrase.fade-out {
  opacity: 0;
  transform: translateY(-20px);
}

.feeling-phrase.fade-in {
  opacity: 0;
  transform: translateY(20px);
}

.feeling-controls {
  margin-top: 80px;
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 600px;
  justify-content: space-between;
}

.feeling-controls-row {
  display: flex;
  gap: 12px;
}

.feeling-ctrl {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-strong);
  padding: 10px 18px;
  border-radius: 2px;
  letter-spacing: 0.04em;
  transition: all 0.25s ease-out;
  position: relative;
  z-index: 10;
}

.feeling-ctrl:hover {
  background: rgba(232, 169, 64, 0.1);
  border-color: var(--gold);
}

.feeling-counter {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-muted);
}

.feeling-footnote {
  color: var(--text-dim);
  font-size: 12px;
  margin-top: 60px;
}

/* ===========================
   THE PILL
   =========================== */

.pill {
  position: relative;
  z-index: 5;
  padding: 160px 24px;
}

.pill-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.pill-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-bottom: 24px;
}

.pill-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(40px, 5vw, 72px);
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.pill-body {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
}

.pill-body em {
  font-style: italic;
  color: var(--text-primary);
}

.pill-image {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pill-card {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px var(--border-strong), 0 30px 80px rgba(0,0,0,0.6);
  border-radius: 2px;
}

.pill-card-inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.pill-card-inner.no-image {
  background: radial-gradient(ellipse at center, var(--gold-deep) 0%, var(--bg-warm) 100%);
}

.pill-caption {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 20px;
}

/* ===========================
   THE RITUAL
   =========================== */

.ritual {
  position: relative;
  z-index: 5;
  background: var(--bg-elev);
  padding: 140px 24px;
}

.ritual-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.ritual-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-bottom: 16px;
}

.ritual-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(36px, 4.5vw, 64px);
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 80px;
}

.ritual-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.ritual-card {
  padding: 40px 32px;
  border: 1px solid var(--border);
  background: var(--bg-warm);
  border-radius: 2px;
  text-align: left;
  transition: all 0.25s ease-out;
}

.ritual-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 0 40px var(--gold-glow-soft);
}

.ritual-number {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: 80px;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 24px;
}

.ritual-card-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: 22px;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.ritual-card-body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}

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

.footer {
  position: relative;
  z-index: 5;
  padding: 80px 24px 60px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 48px;
  color: var(--text-muted);
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-link {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-secondary);
  transition: color 0.25s ease-out;
  position: relative;
  z-index: 10;
}

.footer-link:hover {
  color: var(--gold);
}

.footer-bottom {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-dim);
}

/* ===========================
   AUDIO CONTROL
   =========================== */

.audio-control {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  transition: all 0.25s ease-out;
  cursor: pointer;
}

.audio-control:hover {
  border-color: var(--border-strong);
}

.audio-control.hidden {
  display: none;
}

.audio-control.playing {
  animation: audioPulse 2.4s infinite;
}

@keyframes audioPulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--gold-glow); }
  50% { box-shadow: 0 0 0 12px transparent; }
}

.audio-icon {
  width: 20px;
  height: 20px;
}

.audio-icon-on {
  color: var(--gold);
  display: none;
}

.audio-icon-off {
  color: var(--text-muted);
  display: block;
}

.audio-control.playing .audio-icon-on {
  display: block;
}

.audio-control.playing .audio-icon-off {
  display: none;
}

.audio-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  right: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-secondary);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 2px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease-out;
}

.audio-control:hover .audio-tooltip {
  opacity: 1;
}

/* ===========================
   TOAST
   =========================== */

.toast {
  position: fixed;
  top: 88px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold);
  background: var(--bg-surface);
  border: 1px solid var(--border-strong);
  padding: 12px 28px;
  border-radius: 2px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===========================
   SCROLL REVEAL
   =========================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

/* ===========================
   RESPONSIVE — <1024
   =========================== */

@media (max-width: 1024px) {
  .cursor-glow {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .nav-ca-btn {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .nav {
    height: 56px;
  }
}

/* ===========================
   RESPONSIVE — <768
   =========================== */

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(56px, 14vw, 88px);
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary {
    text-align: center;
    justify-content: center;
  }

  .feeling-phrase {
    font-size: clamp(28px, 7vw, 44px);
  }

  .feeling-prefix {
    font-size: clamp(16px, 3.5vw, 24px);
  }

  .feeling-controls {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .feeling-controls-row {
    order: 1;
  }

  .feeling-counter {
    order: 2;
  }

  .pill-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .pill-image {
    order: -1;
  }

  .ritual-cards {
    grid-template-columns: 1fr;
  }

  .audio-control {
    width: 44px;
    height: 44px;
  }

  .footer-title {
    font-size: 36px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 20px;
  }
}

/* ===========================
   RESPONSIVE — <480
   =========================== */

@media (max-width: 480px) {
  .film-grain {
    display: none;
  }

  .hero-content {
    padding: 0 20px;
  }

  .feeling-inner {
    padding: 80px 20px;
  }

  .pill {
    padding: 80px 20px;
  }

  .ritual {
    padding: 80px 20px;
  }

  .footer {
    padding: 60px 20px 40px;
  }

  .feeling-display {
    min-height: 30vh;
  }
}

/* ===========================
   REDUCED MOTION
   =========================== */

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

  .hero-eyebrow,
  .hero-word,
  .hero-subtitle,
  .hero-ctas,
  .hero-ca {
    opacity: 1;
    transform: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .feeling-phrase {
    transition: opacity 0.01ms !important;
    transform: none !important;
  }
}
