/* =========================================================
   Wings of Hope — Shevet Almog memorial landing page
   Palette derived from the shevet logo: pink / cream / brown
   ========================================================= */

:root {
  --pink: #E94B8C;
  --pink-soft: #F5B5CB;
  --pink-pale: #FBE2EA;
  --cream-bg: #FBF6F3;
  --cream-warm: #F8D8DC;
  --brown: #6B4423;
  --brown-soft: #A6826A;
  --brown-deep: #4A2E16;
  --text: #2A1B0E;
  --text-soft: #5A4633;

  --font-he-display: 'Rubik', system-ui, sans-serif;
  --font-he-body: 'Heebo', 'Rubik', system-ui, sans-serif;
  --font-en-display: 'Quicksand', 'Rubik', system-ui, sans-serif;
  --font-en-body: 'Inter', system-ui, sans-serif;

  --maxw: 720px;
  --maxw-wide: 1180px;
  --radius: 28px;
  --radius-sm: 14px;
  --shadow-soft: 0 10px 40px -12px rgba(107, 68, 35, 0.18);
  --shadow-card: 0 18px 50px -16px rgba(107, 68, 35, 0.25);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream-bg);
  color: var(--text);
  font-family: var(--font-he-body);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }

/* ---------- Background gradient + texture ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 80% -10%, var(--pink-pale) 0%, transparent 60%),
    radial-gradient(900px 500px at -10% 30%, var(--cream-warm) 0%, transparent 55%),
    linear-gradient(180deg, var(--cream-bg) 0%, #FFF9F4 50%, var(--cream-bg) 100%);
  z-index: -2;
  pointer-events: none;
}

/* ---------- Floating feathers ---------- */
.feather-field {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.feather {
  position: absolute;
  width: 42px;
  height: auto;
  opacity: 0;
  animation: float-up 22s linear infinite;
  filter: drop-shadow(0 6px 12px rgba(233, 75, 140, 0.15));
}
.feather.f1 { left: 6%;  width: 38px; animation-duration: 26s; animation-delay: 0s; }
.feather.f2 { left: 18%; width: 60px; animation-duration: 32s; animation-delay: 4s; }
.feather.f3 { left: 34%; width: 30px; animation-duration: 28s; animation-delay: 9s; }
.feather.f4 { left: 52%; width: 52px; animation-duration: 34s; animation-delay: 2s; }
.feather.f5 { left: 68%; width: 34px; animation-duration: 24s; animation-delay: 13s; }
.feather.f6 { left: 81%; width: 58px; animation-duration: 30s; animation-delay: 6s; }
.feather.f7 { left: 93%; width: 30px; animation-duration: 36s; animation-delay: 17s; }

@keyframes float-up {
  0%   { transform: translateY(105vh) rotate(-8deg); opacity: 0; }
  10%  { opacity: 0.22; }
  50%  { transform: translateY(40vh) rotate(8deg);  opacity: 0.28; }
  90%  { opacity: 0.18; }
  100% { transform: translateY(-25vh) rotate(-6deg); opacity: 0; }
}

/* ---------- Layout helpers ---------- */
.section {
  padding: 96px 24px;
  position: relative;
}
.container {
  max-width: var(--maxw);
  margin: 0 auto;
}
.container-wide { max-width: var(--maxw-wide); }

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 60px;
  position: relative;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

/* Paper grain texture overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.42  0 0 0 0 0.27  0 0 0 0 0.14  0 0 0 0.12 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
  opacity: 0.55;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent, var(--cream-bg));
  pointer-events: none;
  z-index: 3;
}

/* Aurora — drifting watercolor blobs */
.hero-aurora {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  mix-blend-mode: multiply;
  opacity: 0.55;
  will-change: transform;
}
.aurora-blob-1 {
  top: -10%; left: -8%;
  width: 60vw; height: 60vw;
  max-width: 720px; max-height: 720px;
  background: radial-gradient(circle, var(--pink-soft) 0%, transparent 65%);
  animation: drift-a 22s ease-in-out infinite alternate;
}
.aurora-blob-2 {
  top: 10%; right: -12%;
  width: 55vw; height: 55vw;
  max-width: 700px; max-height: 700px;
  background: radial-gradient(circle, var(--cream-warm) 0%, transparent 65%);
  animation: drift-b 28s ease-in-out infinite alternate;
}
.aurora-blob-3 {
  bottom: -15%; left: 30%;
  width: 50vw; height: 50vw;
  max-width: 640px; max-height: 640px;
  background: radial-gradient(circle, #FAD9C8 0%, transparent 65%);
  animation: drift-c 26s ease-in-out infinite alternate;
  opacity: 0.45;
}
@keyframes drift-a {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 30px) scale(1.08); }
}
@keyframes drift-b {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-50px, 40px) scale(1.1); }
}
@keyframes drift-c {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -40px) scale(1.05); }
}

/* Light rays descending from above */
.hero-rays {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 80%;
  z-index: 1;
  pointer-events: none;
  background:
    conic-gradient(from 200deg at 50% 0%,
      transparent 0deg,
      rgba(255, 240, 230, 0.0) 25deg,
      rgba(255, 235, 220, 0.35) 60deg,
      rgba(255, 250, 240, 0.0) 95deg,
      rgba(245, 181, 203, 0.18) 130deg,
      rgba(255, 250, 240, 0.0) 160deg,
      transparent 200deg);
  filter: blur(30px);
  opacity: 0.85;
  animation: rays-shimmer 14s ease-in-out infinite alternate;
}
@keyframes rays-shimmer {
  0%   { opacity: 0.7; transform: translateX(-50%) scale(1) rotate(0deg); }
  100% { opacity: 0.95; transform: translateX(-50%) scale(1.05) rotate(-4deg); }
}

/* Giant wing silhouette behind the title */
.hero-wing-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -42%);
  width: 130%;
  max-width: 1400px;
  height: auto;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  animation: wing-bg-in 2.2s 0.4s cubic-bezier(.2,.8,.2,1) forwards;
}
@keyframes wing-bg-in {
  to { opacity: 1; }
}

/* Decorative top mark */
.hero-top-mark {
  position: absolute;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
  opacity: 0;
  animation: reveal-in 1s 0.2s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero-top-mark .mark-line {
  width: 40px;
  height: 1.5px;
  background: linear-gradient(to right, transparent, var(--brown-soft), transparent);
}
.hero-top-mark .mark-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 14px rgba(233, 75, 140, 0.5);
}

.hero-inner {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  position: relative;
  z-index: 4;
}

/* Halo behind the logo */
.hero-halo {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%,
      rgba(255, 220, 230, 0.7) 0%,
      rgba(248, 216, 220, 0.4) 30%,
      rgba(251, 226, 234, 0.18) 55%,
      transparent 75%);
  filter: blur(20px);
  z-index: -1;
  pointer-events: none;
  animation: halo-pulse 5s ease-in-out infinite;
}
@keyframes halo-pulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.85; }
  50%      { transform: translateX(-50%) scale(1.08); opacity: 1; }
}

.hero-logo {
  width: 168px;
  height: 168px;
  object-fit: contain;
  filter: drop-shadow(0 14px 32px rgba(107, 68, 35, 0.22))
          drop-shadow(0 0 24px rgba(233, 75, 140, 0.18));
  animation: gentle-breath 6s ease-in-out infinite;
  position: relative;
}
@keyframes gentle-breath {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.03); }
}

/* Hand-drawn divider under the title */
.hero-divider {
  width: 120px;
  color: var(--pink);
  opacity: 0.7;
  margin: -8px 0 -8px;
}
.hero-divider svg { width: 100%; height: auto; }

.hero-title-stack { display: flex; flex-direction: column; align-items: center; gap: 8px; }

.hero-title-he {
  font-family: var(--font-he-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 7vw, 4.6rem);
  letter-spacing: -0.02em;
  color: var(--brown-deep);
  margin: 0;
  line-height: 1.05;
  background: linear-gradient(180deg, var(--brown-deep) 0%, var(--pink) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-title-en {
  font-family: var(--font-en-display);
  font-weight: 500;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  color: var(--brown);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0;
}
.hero-tagline {
  font-family: var(--font-he-body);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--text-soft);
  margin: 0;
  max-width: 600px;
}
.hero-tagline .dot {
  color: var(--pink);
  margin: 0 12px;
  font-weight: 700;
}
.hero-byline {
  font-family: var(--font-he-body);
  font-size: 0.95rem;
  color: var(--brown-soft);
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.scroll-cue {
  margin-top: 16px;
  width: 22px;
  height: 38px;
  border: 2px solid var(--brown-soft);
  border-radius: 14px;
  position: relative;
  opacity: 0.7;
}
.scroll-cue span {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 7px;
  background: var(--pink);
  border-radius: 2px;
  animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%   { transform: translate(-50%, 0); opacity: 1; }
  80%  { transform: translate(-50%, 14px); opacity: 0; }
  100% { opacity: 0; }
}

/* ---------- Section headers ---------- */
.section-eyebrow {
  font-family: var(--font-en-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  text-align: center;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: "";
  width: 32px;
  height: 1.5px;
  background: var(--pink-soft);
  border-radius: 2px;
}
.section-title {
  font-family: var(--font-he-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-align: center;
  color: var(--brown-deep);
  margin: 0 0 48px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* ---------- Family section ---------- */
.family { padding-top: 60px; }

.names-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 4px;
  font-family: var(--font-he-display);
  font-weight: 600;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  color: var(--pink);
  margin: -24px 0 8px;
}
.names-row span { padding: 0 8px; }
.names-row i {
  font-style: normal;
  color: var(--brown-soft);
  font-weight: 400;
  align-self: center;
}
.names-meta {
  text-align: center;
  font-family: var(--font-en-display);
  font-weight: 500;
  color: var(--brown-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin: 0 0 48px;
}

/* ---------- Prose blocks ---------- */
.prose {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.85;
}
.prose.he { font-family: var(--font-he-body); color: var(--text); }
.prose.en {
  font-family: var(--font-en-body);
  color: var(--text-soft);
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px dashed var(--pink-soft);
  font-size: 0.98rem;
  line-height: 1.8;
}
.prose p { margin: 0 0 1.2em; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--brown-deep); font-weight: 700; }
.prose.en strong { color: var(--brown); font-weight: 600; }

/* ---------- Wings section ---------- */
.wings-section {
  background:
    radial-gradient(700px 300px at 50% 0%, var(--pink-pale) 0%, transparent 70%),
    transparent;
}
.wings-visual {
  max-width: 540px;
  margin: 0 auto 56px;
  opacity: 0.85;
}
.wings-visual svg {
  width: 100%;
  height: auto;
}
.wing-paths path {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: draw-wing 2.4s cubic-bezier(.65,0,.35,1) forwards;
}
.wings-visual.in-view .wing-paths path:nth-child(1) { animation-delay: 0.1s; }
.wings-visual.in-view .wing-paths path:nth-child(2) { animation-delay: 0.25s; }
.wings-visual.in-view .wing-paths path:nth-child(n+3) { animation-delay: 0.8s; animation-duration: 1.6s; }
.wings-visual:not(.in-view) .wing-paths path { animation: none; }
@keyframes draw-wing {
  to { stroke-dashoffset: 0; }
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.gallery-item {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--cream-warm);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  position: relative;
  aspect-ratio: 4 / 5;
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s;
}
.gallery-item.wide { grid-column: span 2; aspect-ratio: 16 / 11; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(.2,.8,.2,1);
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: attr(data-cap-he);
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px 16px 12px;
  font-family: var(--font-he-display);
  font-weight: 500;
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(to top, rgba(74, 46, 22, 0.85), transparent);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  text-align: right;
}
.gallery-item:hover::after { opacity: 1; }

@media (max-width: 720px) {
  .gallery { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-item.wide { grid-column: span 2; }
}
@media (max-width: 420px) {
  .gallery { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: auto; }
}

/* ---------- Quote ---------- */
.quote-section {
  padding: 80px 24px;
  background:
    radial-gradient(800px 400px at 50% 50%, var(--pink-pale) 0%, transparent 70%);
}
.quote-section blockquote {
  max-width: 760px;
  margin: 0 auto;
  font-family: var(--font-he-display);
  font-weight: 500;
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  line-height: 1.55;
  color: var(--brown-deep);
  text-align: center;
  position: relative;
  padding: 24px 16px;
}
.quote-mark {
  font-family: var(--font-he-display);
  color: var(--pink);
  font-size: 2.6em;
  line-height: 0;
  position: relative;
  top: 0.25em;
  margin: 0 0.08em;
  font-weight: 700;
  opacity: 0.7;
}
.quote-section cite {
  display: block;
  margin-top: 22px;
  font-family: var(--font-en-display);
  font-style: normal;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-soft);
}

/* ---------- CTA ---------- */
.cta-section {
  text-align: center;
  padding: 100px 24px 120px;
}
.cta-title {
  font-family: var(--font-he-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 2.8rem);
  color: var(--brown-deep);
  margin: 0 0 18px;
}
.cta-sub {
  max-width: 560px;
  margin: 0 auto 12px;
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.7;
}
.cta-sub-en {
  max-width: 560px;
  margin: 0 auto 40px;
  font-family: var(--font-en-body);
  font-size: 0.95rem;
  color: var(--brown-soft);
  line-height: 1.7;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--pink);
  color: #fff;
  font-family: var(--font-he-display);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 18px 36px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 14px 40px -10px rgba(233, 75, 140, 0.55);
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}
.cta-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.7s;
}
.cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 50px -10px rgba(233, 75, 140, 0.65);
  background: #D6377A;
}
.cta-button:hover::before { transform: translateX(100%); }
.cta-button svg { transform: scaleX(-1); }

/* ---------- Footer ---------- */
.footer {
  padding: 60px 24px 80px;
  text-align: center;
  background:
    linear-gradient(to bottom, transparent, var(--pink-pale) 100%);
}
.footer-logo {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  opacity: 0.85;
}
.footer-line {
  font-family: var(--font-he-body);
  color: var(--text-soft);
  margin: 0 0 10px;
  font-size: 0.95rem;
}
.footer-line strong { color: var(--brown-deep); font-weight: 600; }
.footer-zikaron {
  font-family: var(--font-he-display);
  color: var(--pink);
  font-weight: 600;
  font-size: 1.05rem;
  margin: 0;
  letter-spacing: 0.02em;
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal-in 1s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: var(--delay, 0s);
}
@keyframes reveal-in {
  to { opacity: 1; transform: translateY(0); }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(.2,.8,.2,1), transform 0.9s cubic-bezier(.2,.8,.2,1);
}
.reveal-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 12, 6, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 24px;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-content {
  margin: 0;
  max-width: min(1200px, 92vw);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox-content figcaption {
  color: var(--pink-soft);
  font-family: var(--font-he-display);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-align: center;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(8px);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--pink);
  transform: scale(1.08);
}
.lightbox-close { top: 24px; right: 24px; font-size: 26px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.08); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.08); }

@media (max-width: 640px) {
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 22px; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
  .lightbox-close { top: 12px; right: 12px; }
}

/* ---------- Mobile tweaks ---------- */
@media (max-width: 640px) {
  .section { padding: 72px 20px; }
  body { font-size: 16px; }
  .hero-logo { width: 130px; height: 130px; }
  .prose { font-size: 1rem; }
  .prose.en { font-size: 0.95rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .feather-field { display: none; }
  .reveal, .reveal-on-scroll { opacity: 1; transform: none; }
  .hero-logo, .hero-halo, .hero-rays, .aurora-blob { animation: none; }
  .hero-wing-bg { opacity: 1; }
}

/* ---------- Mobile: tighten hero decorations ---------- */
@media (max-width: 640px) {
  .hero-halo { width: 240px; height: 240px; top: 0; }
  .hero-top-mark { top: 24px; }
  .hero-top-mark .mark-line { width: 28px; }
  .hero-wing-bg { width: 180%; }
  .aurora-blob { filter: blur(60px); }
}
