/* ============================================================
   ANADI — Prototype B: Embodied / Earthy
   ============================================================
   Aesthetic: real photographs, warm overlays, Ken Burns,
   tactile film-grain feel, scroll parallax.
   ============================================================ */

:root {
  /* Brand palette — same source, warmer working values */
  --bg-deep: #1C1230;
  --bg: #2A1B47;
  --bg-soft: #3D2A5A;
  --warm: #5A2E2A;
  --warm-soft: #7A3F35;
  --gold: #C9A668;
  --gold-warm: #D4A84A;
  --gold-deep: #8B6E2A;
  --cream: #F0E6D2;
  --cream-mute: #D6C9AE;
  --ink: #F5F0E8;
  --ink-mute: #C9BCA3;
  --ink-faint: #8D8268;
  --sage: #6B8270;

  /* Typography — Fraunces is variable, configured per use */
  --font-display: "Fraunces", "Lora", Georgia, serif;
  --font-body: "Inria Serif", "Source Serif Pro", Georgia, serif;
  --font-handwritten: "Caveat", "Reenie Beanie", cursive;

  --max-w: 1280px;
  --max-text: 62ch;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 300;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ---------- Subtle film grain overlay ---------- */

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' /%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.65'/%3E%3C/svg%3E");
}

/* ---------- Nav ---------- */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(28, 18, 48, 0.7) 0%, transparent 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .4s ease;
}
.nav.scrolled {
  background: rgba(28, 18, 48, 0.92);
  border-bottom: 1px solid rgba(201, 166, 104, 0.15);
}

.nav-brand {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; color: var(--ink);
}
.nav-brand-mark {
  width: 40px; height: 40px;
  background: url('../../../docs/branding/anadi-logo.png') center/cover no-repeat;
  border-radius: 50%;
}
.nav-brand-name {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.16em;
}
.nav-brand-sub {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
}

.nav-links {
  display: flex; gap: 36px; list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--cream-mute);
  text-decoration: none;
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 50;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  transition: color .3s ease;
  position: relative;
}
.nav-links a::after {
  content: ""; position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .35s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--bg-deep);
  padding: 11px 26px;
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 50;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 999px;
  transition: all .35s ease;
  font-weight: 500;
}
.nav-cta:hover { background: var(--cream); transform: translateY(-1px); }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav { padding: 16px 20px; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: ken-burns 28s ease-in-out infinite alternate;
  filter: brightness(0.72) saturate(0.95);
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 18, 48, 0.4) 0%, rgba(28, 18, 48, 0.3) 40%, rgba(28, 18, 48, 0.85) 100%),
    linear-gradient(135deg, rgba(90, 46, 42, 0.25) 0%, rgba(42, 27, 71, 0.45) 100%);
  pointer-events: none;
}

@keyframes ken-burns {
  0% { transform: scale(1.0) translate(0, 0); }
  100% { transform: scale(1.12) translate(-2%, -1%); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 64px 96px;
  max-width: 920px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}
.hero-eyebrow::before {
  content: "❀";
  margin-right: 14px;
  font-size: 14px;
}

.hero h1 {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 80, "wght" 300;
  font-size: clamp(46px, 7vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
  color: var(--cream);
}
.hero h1 em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 300;
  color: var(--gold);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.5vw, 22px);
  color: var(--cream-mute);
  line-height: 1.6;
  max-width: 58ch;
  margin-bottom: 44px;
}

@media (max-width: 880px) {
  .hero-content { padding: 0 24px 56px; }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 50;
  font-size: 15px;
  letter-spacing: 0.04em;
  padding: 15px 32px;
  text-decoration: none;
  border-radius: 999px;
  transition: all .35s ease;
  cursor: pointer;
  font-weight: 500;
}
.btn--primary {
  background: var(--gold);
  color: var(--bg-deep);
  border: 1px solid var(--gold);
}
.btn--primary:hover { background: var(--cream); border-color: var(--cream); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 240, 232, 0.4);
}
.btn--ghost:hover { border-color: var(--cream); background: rgba(245, 240, 232, 0.08); }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Sections ---------- */

main { background: var(--bg-deep); }
section { padding: 120px 0; position: relative; }

.page {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 880px) {
  .page { padding-left: 24px; padding-right: 24px; }
}

.eyebrow {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "—";
  margin-right: 12px;
  color: var(--gold-deep);
}

h2 {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 80, "wght" 300;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  color: var(--cream);
}
h2 em { font-style: italic; color: var(--gold); }

h3 {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 80;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--cream);
  font-weight: 400;
}
h4 {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 80;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--cream);
}

p {
  color: var(--ink-mute);
  margin-bottom: 22px;
  max-width: var(--max-text);
  font-weight: 300;
}
p.lead {
  font-size: 22px;
  color: var(--cream);
  font-weight: 300;
  max-width: 52ch;
  line-height: 1.55;
}
p strong { color: var(--cream); font-weight: 500; }

a { color: var(--gold); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--cream); }

ul, ol { color: var(--ink-mute); padding-left: 0; list-style: none; max-width: var(--max-text); }
ul li {
  position: relative;
  padding: 12px 0 12px 26px;
  font-weight: 300;
}
ul li::before {
  content: "❀";
  position: absolute; left: 0; top: 14px;
  color: var(--gold);
  font-size: 11px;
}

hr.divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-deep) 50%, transparent 100%);
  margin: 100px auto;
  max-width: 240px;
  opacity: 0.5;
}

/* ---------- Three paths section ---------- */

.paths-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.paths-intro p.lead { margin-bottom: 0; }

.paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.path {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--cream);
  display: block;
  aspect-ratio: 3 / 4;
}
.path-photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55) saturate(0.85);
  transition: filter .8s ease, transform .8s ease;
}
.path:hover .path-photo {
  filter: brightness(0.7) saturate(1);
  transform: scale(1.05);
}
.path::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(28,18,48,0.9) 100%);
  pointer-events: none;
}
.path-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px 32px 32px;
  z-index: 2;
}
.path-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 14px;
}
.path h3 { color: var(--cream); margin-bottom: 12px; }
.path p { color: var(--cream-mute); font-size: 16px; margin-bottom: 18px; max-width: none; }
.path-link {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 50;
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

@media (max-width: 880px) {
  .paths-intro { grid-template-columns: 1fr; gap: 24px; }
  .paths { grid-template-columns: 1fr; }
  .path { aspect-ratio: 4 / 5; }
}

/* ---------- About ---------- */

.about {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.about-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.9);
}
.about-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(28,18,48,0.5) 100%);
}
.about-caption {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-faint);
  margin-top: 14px;
}
.about-quote {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-style: italic;
  font-size: 32px;
  line-height: 1.3;
  color: var(--gold);
  margin: 36px 0;
  max-width: 24ch;
  font-weight: 300;
}

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

/* ---------- Testimonials ---------- */

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial {
  padding: 36px;
  background: linear-gradient(180deg, rgba(90,46,42,0.15) 0%, rgba(42,27,71,0.4) 100%);
  border: 1px solid rgba(201, 166, 104, 0.18);
  position: relative;
  border-radius: 4px;
}
.testimonial::before {
  content: "“";
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: var(--gold);
  position: absolute;
  top: 12px; left: 18px;
  opacity: 0.4;
}
.testimonial p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  color: var(--cream);
  margin: 0 0 22px;
  font-weight: 300;
  max-width: none;
}
.testimonial-by {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
}

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

/* ---------- Service hero ---------- */

.service-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 0;
}
.service-hero .hero-photo { position: absolute; inset: 0; z-index: 0; }
.service-hero .hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
  animation: ken-burns 32s ease-in-out infinite alternate;
  filter: brightness(0.7) saturate(0.9);
}
.service-hero .hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(28,18,48,0.3) 0%, rgba(28,18,48,0.4) 50%, rgba(28,18,48,0.95) 100%);
}
.service-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 64px 80px;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
}
.service-hero h1 {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 80, "wght" 300;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 26px;
  color: var(--cream);
}
.service-hero h1 em { font-style: italic; color: var(--gold); }
.service-hero .lead { font-size: clamp(18px, 1.5vw, 22px); color: var(--cream-mute); }

.service-meta {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 28px 32px;
  background: rgba(28,18,48,0.7);
  border: 1px solid rgba(201,166,104,0.25);
  border-radius: 4px;
}
.service-meta dt {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 3px;
}
.service-meta dd {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 80;
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 18px;
  font-weight: 400;
}
.service-meta dd:last-child { margin-bottom: 0; }

@media (max-width: 880px) {
  .service-hero-content { grid-template-columns: 1fr; padding: 0 24px 56px; gap: 32px; }
}

/* ---------- Support / modality grids ---------- */

.support-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
  margin-top: 36px;
}
.support-list li {
  font-size: 17px;
  padding: 16px 0 16px 26px;
  border-bottom: 1px solid rgba(201,166,104,0.1);
}
.support-list li::before { top: 18px; }

@media (max-width: 720px) { .support-list { grid-template-columns: 1fr; gap: 0; } }

.modalities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.modality {
  padding: 0;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(58, 40, 78, 0.4);
  border: 1px solid rgba(201,166,104,0.15);
}
.modality-photo {
  aspect-ratio: 5 / 3;
  background-size: cover;
  background-position: center;
  filter: brightness(0.85) saturate(0.9);
}
.modality-body { padding: 28px; }
.modality h4 { color: var(--gold); margin-bottom: 12px; }
.modality p { font-size: 16px; margin-bottom: 0; max-width: none; }

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

/* ---------- Mystical-specific ---------- */

.callout {
  border-left: 3px solid var(--gold);
  background: linear-gradient(90deg, rgba(201,166,104,0.08) 0%, transparent 100%);
  padding: 32px 36px;
  margin: 50px 0;
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 80;
  font-size: 19px;
  font-style: italic;
  line-height: 1.55;
  color: var(--cream);
  font-weight: 300;
}
.callout strong { color: var(--gold); font-style: normal; font-weight: 500; }

.offerings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.offering {
  position: relative;
  display: block;
  text-decoration: none;
  color: var(--cream);
  background: rgba(58,40,78,0.5);
  border: 1px solid rgba(201,166,104,0.18);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .4s ease, border-color .4s ease;
}
.offering:hover { transform: translateY(-4px); border-color: var(--gold); }
.offering-photo {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  filter: brightness(0.65) saturate(0.95);
}
.offering-body { padding: 32px 28px; }
.offering-tag {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 14px;
}
.offering h3 { color: var(--cream); margin-bottom: 12px; }
.offering p { font-size: 15px; color: var(--cream-mute); margin-bottom: 20px; max-width: none; }
.offering-meta {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 13px;
  color: var(--gold);
}
.offering[data-status="soon"] { opacity: 0.7; }

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

/* ---------- Retreat days ---------- */

.week-days {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
}
.day-row {
  display: grid;
  grid-template-columns: 200px 1.2fr 1fr;
  gap: 48px;
  padding: 40px 0;
  border-top: 1px solid rgba(201,166,104,0.18);
  align-items: start;
}
.day-row:last-child { border-bottom: 1px solid rgba(201,166,104,0.18); }
.day-label-block {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144;
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.day-num {
  display: block;
  font-style: normal;
  font-size: 72px;
  line-height: 0.9;
  color: var(--cream);
  margin-bottom: 8px;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 80;
}
.day-content h4 { color: var(--cream); margin-bottom: 12px; }
.day-content p { margin-bottom: 0; color: var(--ink-mute); }
.day-photo {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7) saturate(0.9);
  border-radius: 2px;
}

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

/* ---------- Online stripe (home) ---------- */

.stripe {
  position: relative;
  overflow: hidden;
}
.stripe-photo {
  position: absolute;
  inset: 0;
  background: url('../../../docs/whatsapp data/s3/7.jpeg') center/cover no-repeat;
  filter: brightness(0.4) saturate(0.85);
}
.stripe-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(28,18,48,0.7) 0%, rgba(90,46,42,0.5) 100%);
}
.stripe-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding: 80px 0;
}
.stripe h3 { margin-bottom: 12px; color: var(--cream); }
.stripe p { margin-bottom: 0; max-width: 56ch; color: var(--cream-mute); }
@media (max-width: 880px) { .stripe-inner { grid-template-columns: 1fr; } }

/* ---------- Stub ---------- */

.stub {
  min-height: 80vh;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  padding: 120px 32px 80px;
}
.stub-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35) saturate(0.9);
}
.stub-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,18,48,0.5) 0%, rgba(28,18,48,0.9) 100%);
}
.stub-content { position: relative; z-index: 2; }
.stub h1 {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 80, "wght" 300;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  max-width: 18ch;
  margin: 0 auto 22px;
  color: var(--cream);
}
.stub h1 em { font-style: italic; color: var(--gold); }
.stub p { max-width: 52ch; margin: 0 auto 28px; color: var(--cream-mute); }

/* ---------- Footer ---------- */

footer {
  border-top: 1px solid rgba(201,166,104,0.15);
  padding: 64px 32px 32px;
  color: var(--ink-faint);
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
footer .footer-mark {
  width: 40px; height: 40px;
  background: url('../../../docs/branding/anadi-logo.png') center/cover no-repeat;
  border-radius: 50%;
  margin: 0 0 18px;
  opacity: 0.8;
}
footer p {
  color: var(--ink-faint);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  margin: 0 0 8px;
  max-width: none;
}
footer .footer-links {
  display: flex; justify-content: center; gap: 28px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  max-width: none;
}
footer .footer-links li { padding: 0; }
footer .footer-links li::before { display: none; }
footer .footer-links a {
  color: var(--ink-faint);
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
}
footer .footer-links a:hover { color: var(--gold); }

/* ---------- Reveal on scroll ---------- */

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1.2s ease, transform 1.2s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 0.12s; }
.reveal:nth-child(3) { transition-delay: 0.24s; }
.reveal:nth-child(4) { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-photo img, .service-hero .hero-photo img { animation: none; }
  body::before { display: none; }
}
