/* ==========================================================================
   HALCYON HOMEOPATHY — styles.css
   ========================================================================== */

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

.skip-link {
  position: absolute; top: -40px; left: 0;
  background: #2e3530; color: #ffffff;
  padding: 10px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; z-index: 1000;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; outline: 2px solid #c8904a; outline-offset: 2px; }

/* Body-text colour lock — applied everywhere paragraph text appears */
p,
.section-body,
.svc-desc, .svc-conditions,
.phil-body,
.proc-body,
.gk-body,
.hero-body { color: #4a4e58; }

:root {
  --white:        #ffffff;
  --frost:        #f8f9f6;
  --pale-sage:    #f2f4f0;
  --stone-sage:   #eaece7;
  --stone-dk:     #d8dcd4;
  --pewter:       #c4c9be;
  --pewter-mid:   #8a9490;
  --mineral:      #787870;
  --body-text:    #4a4e58;
  --body:         #4a4e58;
  --logo-main:    #4e5850;
  --logo-sub:     #6a7870;
  --deep-pine:    #2e3530;
  --forest:       #1a201c;
  --sea-glass:    #5a8c8a;
  --sea-glass-dk: #3d6e6c;
  --amber:        #c8904a;
  --sky:          #6a9ab8;

  --nav-h: 61px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', serif;
  background: var(--stone-sage);
  color: #4a4e58;
  font-size: 15px;
  line-height: 1.7;
  overflow-x: clip; /* clip does NOT create a scroll container, safe for position:fixed on iOS */
  -webkit-font-smoothing: antialiased;
}

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

/* ── NAV ──────────────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 48px;
  background: var(--white);
  border-bottom: 0.5px solid var(--stone-dk);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 22px; color: var(--logo-main);
  text-decoration: none; letter-spacing: 0.01em;
}
.nav-logo em { font-style: italic; color: var(--logo-sub); }

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #4e5850; text-decoration: none;
  transition: color 0.2s;
  position: relative; padding: 6px 0;
}
.nav-links a:hover, .nav-links a.is-active { color: var(--sea-glass); }
.nav-links a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1.5px; background: var(--sea-glass);
}

.nav-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #ffffff; background: #5a8c8a;
  padding: 14px 32px; text-decoration: none;
  border-bottom: 2.5px solid #3d6e6c;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.nav-cta:hover { background: #3d6e6c; border-bottom-color: #2a4e4c; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-toggle span {
  width: 22px; height: 1.5px; background: var(--logo-main);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.page-body { padding-top: var(--nav-h); }

/* ── SECTION PRIMITIVES ───────────────────────────────────────────────── */
section { border-bottom: 0.5px solid var(--stone-dk); }

.section-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #4e5850; margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.section-tag::before {
  content: ''; display: inline-block;
  width: 14px; height: 0.5px; background: #4e5850;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1.15; color: var(--deep-pine);
  margin-bottom: 16px; font-weight: 400;
}
.section-title em { font-style: italic; color: var(--amber); }

.section-body {
  font-size: 20px; line-height: 1.85;
  color: #4a4e58; font-weight: 300;
  max-width: 640px;
}
.section-body + .section-body { margin-top: 16px; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ── HERO ─────────────────────────────────────────────────────────────── */
#home {
  display: grid; grid-template-columns: 55% 45%;
  min-height: calc(100vh - var(--nav-h));
}
.hero-left {
  background: var(--stone-sage);
  padding: 140px 96px 80px 128px;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 0.5px solid var(--stone-dk);
}
.hero-h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(48px, 4vw, 64px); line-height: 1.07;
  color: var(--deep-pine); margin-bottom: 24px; font-weight: 400;
}
.hero-h1 em { font-style: italic; color: var(--amber); }
.hero-body {
  font-size: 24px; line-height: 1.85; color: var(--body-text);
  max-width: 660px; margin-bottom: 52px; font-weight: 300;
}
.hero-quote-panel {
  margin-top: 0;
  border-top: 0.5px solid var(--stone-dk);
  padding-top: 32px;
}
.hero-quote-inner {
  border-left: 1.5px solid #8abcba;
  padding-left: 20px;
  max-width: 560px;
}
.hero-quote-text {
  font-family: 'DM Serif Display', serif;
  font-size: 17px; font-style: italic; color: var(--sea-glass);
  line-height: 1.65; margin-bottom: 12px;
}
.hero-quote-cite {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mineral);
}

.hero-right {
  background: var(--pale-sage);
  position: relative; overflow: hidden;
  min-height: calc(100vh - var(--nav-h));
}
.hero-photo { position: absolute; inset: 0; }
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 30%;
  opacity: 0.9; filter: saturate(0.85);
}
.hero-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 70%, rgba(248,249,246,0.7) 100%);
  pointer-events: none;
}

/* ── DATA STRIP ───────────────────────────────────────────────────────── */
.data-strip {
  display: flex; background: var(--white);
  border-top: 2px solid var(--mineral);
  border-bottom: 0.5px solid var(--stone-dk);
}
.strip-cell {
  flex: 1; padding: 16px 28px;
  border-right: 0.5px solid var(--stone-dk);
  display: flex; flex-direction: column; justify-content: center;
}
.strip-cell:last-child { border-right: none; }
.strip-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--pewter-mid); display: block; margin-bottom: 8px;
}
.strip-val {
  font-family: 'DM Serif Display', serif;
  font-size: 16px; color: #6a7870;
}

/* ── MARQUEE ──────────────────────────────────────────────────────────── */
.marquee {
  background: var(--mineral); padding: 11px 0;
  overflow: hidden; white-space: nowrap;
  border-bottom: 0.5px solid #686860;
}
.marquee-inner { display: inline-block; animation: marquee 38s linear infinite; }
.m-item {
  display: inline-block;
  font-family: 'DM Serif Display', serif;
  font-size: 14px; font-style: italic; color: #e8e0d0;
  margin: 0 1.5rem;
}
.m-rule {
  display: inline-block; width: 16px; height: 1.5px;
  background: var(--amber); vertical-align: middle; margin: 0 1rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── TRANSITION BAND ──────────────────────────────────────────────────── */
.transition-band {
  background: var(--mineral); padding: 11px 48px;
  display: flex; justify-content: center; align-items: center;
  border-bottom: 0.5px solid #686860;
}
.band-val {
  font-family: 'DM Serif Display', serif;
  font-size: 15px; font-style: italic; color: #e8e0d0;
  letter-spacing: 0.02em;
}

/* ── METHOD / WHAT IS HOMEOPATHY ──────────────────────────────────────── */
#method {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 2px solid var(--mineral);
}
.method-photo { position: relative; overflow: hidden; }
.method-photo img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.9; filter: saturate(0.7);
}
.method-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 80%, rgba(248,249,246,0.45) 100%);
}
.method-text {
  position: relative;
  padding: 120px 80px 64px 80px; background: #f8f9f6;
  border-left: 0.5px solid var(--stone-dk);
  display: flex; flex-direction: column; justify-content: flex-start;
  min-height: 100%; align-self: stretch;
}
.method-text .section-title { margin-top: 4px; margin-bottom: 28px; }
.method-text .section-body { max-width: 100%; color: #4a4e58; }

/* ── SERVICES ─────────────────────────────────────────────────────────── */
#services {
  background: #d8dcd4; padding: 72px 52px;
  border-top: 2px solid var(--mineral);
}
.services-header { margin-bottom: 40px; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--pewter); border: 1px solid var(--pewter);
}
.svc-card {
  background: #ffffff; padding: 2.2rem 2rem;
  display: flex; flex-direction: column;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}
.svc-card:hover {
  background: #f2f4f0;
  transform: translateY(-3px);
  box-shadow: 0 4px 24px rgba(46,53,48,0.1);
  border-bottom: 2px solid #5a8c8a;
  position: relative; z-index: 1;
}
.svc-num {
  font-family: 'DM Serif Display', serif;
  font-size: 16px; font-style: italic; color: var(--amber);
  margin-bottom: 10px; letter-spacing: 0.05em;
}
.svc-name {
  font-family: 'DM Serif Display', serif;
  font-size: 23px; color: var(--mineral); margin-bottom: 8px;
}
.svc-price {
  font-family: 'DM Serif Display', serif;
  font-size: 22px; font-style: italic; color: var(--deep-pine);
  margin-bottom: 14px;
}
.svc-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; line-height: 1.82; color: var(--body-text);
  font-weight: 300;
}
.svc-note { margin-top: 10px; color: #4a4e58; }
.svc-divider {
  width: 100%; height: 1px; background: var(--pewter);
  margin: 20px 0 16px;
}
.svc-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #2e3530;
}
.svc-conditions {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; line-height: 1.7; font-style: italic;
  color: #4a4e58; font-weight: 300;
  margin-top: 6px;
}

/* ── ABOUT ────────────────────────────────────────────────────────────── */
#about {
  display: grid; grid-template-columns: 420px 1fr;
  border-top: 2px solid var(--mineral);
}
.about-photo-col {
  background: #eaece7;
  border-right: 0.5px solid var(--stone-dk);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 64px 40px;
}
.about-photo-frame-wrap {
  width: 340px; height: 340px; border-radius: 50%;
  border: 1.5px solid #787870; padding: 7px;
  margin-bottom: 16px; cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-photo-frame-wrap:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 24px rgba(46,53,48,0.18);
}
.about-photo-frame {
  width: 100%; height: 100%; border-radius: 50%;
  overflow: hidden; border: 1px solid #787870;
}
.about-photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
}
.about-amber-rule {
  width: 40px; height: 1.5px; background: var(--amber);
  margin: 16px auto 14px;
}
.about-name {
  font-family: 'DM Serif Display', serif;
  font-size: 24px; color: var(--deep-pine);
  text-align: center; margin-bottom: 6px;
}
.about-title-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mineral); text-align: center;
}
.about-text {
  background: var(--white);
  padding: 64px 72px;
  display: flex; flex-direction: column; justify-content: flex-start;
}
.about-text .section-body { max-width: 100%; color: #4a4e58; line-height: 1.85; }
.about-text .section-body + .section-body { margin-top: 1.1em; }

/* ── PRINCIPLES ───────────────────────────────────────────────────────── */
#practice {
  background: var(--white);
  padding: 72px 52px;
  display: grid; grid-template-columns: 1fr 2fr; gap: 5rem;
  align-items: start;
  border-top: 2px solid var(--mineral);
}
.practice-sticky { position: sticky; top: calc(var(--nav-h) + 24px); }
.phil-items { display: flex; flex-direction: column; }
.phil-item {
  display: grid; grid-template-columns: 44px 1fr; gap: 1.5rem;
  padding: 1.2rem 0;
  border-top: 0.5px solid var(--stone-dk);
}
.phil-item:first-child { border-top: none; }
.phil-num {
  font-family: 'DM Serif Display', serif;
  font-size: 18px; font-style: italic; color: var(--amber);
  padding-top: 4px;
}
.phil-name {
  font-family: 'DM Serif Display', serif;
  font-size: 21px; color: var(--mineral);
  margin-bottom: 10px;
}
.phil-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; line-height: 1.85;
  color: #4a4e58; font-weight: 300;
}
.phil-body sup { font-size: 0.6em; color: var(--amber); }
.phil-footnote {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; color: var(--pewter-mid);
  margin-top: 24px; letter-spacing: 0.04em;
}

/* ── PROCESS / VISIT ──────────────────────────────────────────────────── */
#visit {
  background: var(--stone-sage);
  padding: 72px 52px;
  display: grid; grid-template-columns: 1fr 2fr; gap: 5rem;
  align-items: start;
  border-top: 2px solid var(--mineral);
}
.visit-sticky { position: sticky; top: calc(var(--nav-h) + 24px); }
.proc-items { display: flex; flex-direction: column; }
.proc-item {
  display: grid; grid-template-columns: 44px 1fr; gap: 1.5rem;
  padding: 2rem 0;
  border-top: 0.5px solid var(--stone-dk);
}
.proc-item:first-child { border-top: none; }
.proc-num {
  font-family: 'DM Serif Display', serif;
  font-size: 22px; font-style: italic; color: var(--amber);
  padding-top: 4px;
}
.proc-name {
  font-family: 'DM Serif Display', serif;
  font-size: 22px; color: var(--deep-pine);
  margin-bottom: 10px;
}
.proc-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; line-height: 1.82;
  color: #4a4e58; font-weight: 300;
}

/* ── GOOD TO KNOW ─────────────────────────────────────────────────────── */
#contact {
  background: #d8dcd4; padding: 72px 52px;
  border-top: 2px solid var(--mineral);
}
.gk-header { margin-bottom: 40px; }
.gk-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.gk-card {
  background: var(--white);
  padding: 2.2rem 2.4rem;
  border-left: 2px solid var(--mineral);
}
.gk-title {
  font-family: 'DM Serif Display', serif;
  font-size: 22px; color: #2e3530;
  margin-bottom: 12px;
}
.gk-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; line-height: 1.82;
  color: #4a4e58; font-weight: 300;
}
.gk-contact {
  margin-top: 16px;
  font-family: 'DM Serif Display', serif;
  font-size: 18px; color: #4a4e58;
  line-height: 1.7;
}
.gk-contact a { color: #4a4e58; text-decoration: none; transition: color 0.2s; }
.gk-contact a:hover { color: var(--sea-glass-dk); }

/* ── BOOKING ──────────────────────────────────────────────────────────── */
#booking {
  background: var(--deep-pine);
  padding: 72px 52px;
  border-top: 2px solid var(--mineral);
}
.booking-header { margin-bottom: 40px; max-width: 760px; }
#booking .section-tag { color: var(--pewter-mid); }
#booking .section-tag::before { background: #686860; }
#booking .section-title { color: #e8e4d8; }
#booking .section-title em { color: var(--amber); }
#booking .section-body { color: #ffffff; }
.booking-iframe {
  width: 100%; min-height: 700px; display: block;
  border: none; background: var(--forest);
}

/* ── FOOTER ───────────────────────────────────────────────────────────── */
footer {
  background: var(--mineral);
  padding: 48px 52px;
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem;
  align-items: center;
}
.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 22px; color: #d8d8d0;
}
.footer-logo em { font-style: italic; color: #e8e0d0; }
.footer-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; color: #c0c0b8;
  letter-spacing: 0.08em; margin-top: 6px;
}
.footer-links {
  display: flex; gap: 1.5rem; list-style: none; justify-content: center;
}
.footer-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #d8d8d0; text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-right {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; color: #c0c0b8;
  letter-spacing: 0.09em; text-align: right;
}

/* ── LIGHTBOX ─────────────────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(46,53,48,0.85);
  display: none; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease;
}
.lightbox.is-open { display: flex; opacity: 1; }
.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  background: none; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #e8e4d8;
}
.lightbox-frame-wrap {
  width: 420px; height: 420px; border-radius: 50%;
  border: 1.5px solid #c4c9be; padding: 8px;
  background: rgba(0,0,0,0.2);
  transform: scale(0.95); transition: transform 0.3s ease;
}
.lightbox.is-open .lightbox-frame-wrap { transform: scale(1); }
.lightbox-frame {
  width: 100%; height: 100%; border-radius: 50%;
  overflow: hidden; border: 0.5px solid #8a9490;
}
.lightbox-frame img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}

/* ── RESPONSIVE ───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-left { padding: 96px 64px 64px 64px; }
  #practice, #visit { gap: 3rem; }
  #about { grid-template-columns: 360px 1fr; }
  .about-text { padding: 56px 48px; }
}

@media (max-width: 768px) {
  nav {
    padding: 0 16px;
    height: 52px;
    gap: 0;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
  }
  :root { --nav-h: 52px; }
  .nav-logo { font-size: 14px; flex-shrink: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 140px; }
  .nav-links {
    position: fixed; top: 52px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--white);
    border-bottom: 0.5px solid var(--stone-dk);
    padding: 8px 24px 20px;
    transform: translateY(-100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 8px 20px rgba(46,53,48,0.06);
    z-index: 9998;
  }
  .nav-links.is-open {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }
  .nav-links li { border-top: 0.5px solid var(--stone-dk); }
  .nav-links a { display: block; padding: 14px 0; }
  .nav-toggle { display: flex; }
  .nav-cta { padding: 8px 12px; font-size: 10px; white-space: nowrap; flex-shrink: 0; border-bottom-width: 1.5px; }

  #home {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-right {
    order: -1;
    height: 280px;
    min-height: 280px;
    max-height: 280px;
    position: relative;
    overflow: hidden;
    z-index: 0;
  }
  .hero-left { order: 0; }
  #home { margin-top: 0; }
  .hero-left { padding: 48px 24px; }
  .hero-h1 { font-size: clamp(36px, 8vw, 48px); }
  .hero-body { font-size: 19px; margin-bottom: 36px; }

  .data-strip { flex-wrap: wrap; }
  .strip-cell { flex: 1 1 50%; border-right: none; border-bottom: 0.5px solid var(--stone-dk); }
  .strip-cell:nth-child(odd) { border-right: 0.5px solid var(--stone-dk); }
  .strip-cell:nth-last-child(-n+2) { border-bottom: none; }

  #method { grid-template-columns: 1fr; }
  .method-photo { min-height: 280px; }
  .method-text { padding: 48px 24px; border-left: none; border-top: 0.5px solid var(--stone-dk); }

  #services { padding: 56px 24px; }
  .services-grid { grid-template-columns: 1fr; }

  #about { grid-template-columns: 1fr; }
  .about-photo-col { padding: 56px 24px; border-right: none; border-bottom: 0.5px solid var(--stone-dk); }
  .about-photo-frame-wrap { width: 240px; height: 240px; }
  .about-text { padding: 48px 24px; }

  #practice, #visit { grid-template-columns: 1fr; gap: 2rem; padding: 56px 24px; }
  .practice-sticky, .visit-sticky { position: static; }

  #contact, #booking { padding: 56px 24px; }
  .gk-grid { grid-template-columns: 1fr; }

  .booking-iframe { min-height: 600px; }

  footer {
    grid-template-columns: 1fr;
    text-align: center; padding: 40px 24px; gap: 1.25rem;
  }
  .footer-links { flex-wrap: wrap; }
  .footer-right { text-align: center; }

  .lightbox-frame-wrap { width: 80vw; height: 80vw; max-width: 360px; max-height: 360px; }
  .lightbox-close { top: 16px; right: 16px; }
}

@media (max-width: 480px) {
  .section-title { font-size: 30px; }
  .section-body, .svc-desc, .gk-body, .phil-body, .proc-body { font-size: 18px; }
  .hero-quote-text { font-size: 16px; }
}

/* ── 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;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none !important; }
}






