/* ============================================================
   Ronik Services Ltd
   Premium dark marketing site — Rwanda flag palette on deep navy.
   Sister design to RK Bold Finance Ltd (rkbf.pro).
   Sections:
     1. Design tokens (CSS variables)
     2. Base / reset
     3. Layout helpers
     4. Buttons
     5. Animated background
     6. Nav
     7. Hero (+ sun-ray motif, stat counters)
     8. Flag-strip divider
     9. Sections / shared heading
    10. About
    11. Investments
    12. Why Rwanda
    13. Operations
    14. Highlights
    15. Contact
    16. Footer
    17. Scroll-reveal + counters
    18. Responsive
    19. Reduced motion
============================================================ */

/* ---------- 1. Design tokens ---------- */
:root {
  /* Base surfaces */
  --bg:        #070b14;   /* near-black navy */
  --bg-2:      #0a1020;
  --surface:   rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border:    rgba(255, 255, 255, 0.10);
  --border-2:  rgba(255, 255, 255, 0.18);

  /* Text */
  --text:      #eaf0ff;
  --muted:     #9aa6bf;
  --muted-2:   #6b7794;

  /* Rwanda flag accents */
  --blue:      #00A1DE;   /* sky blue — primary */
  --blue-lt:   #4fc3f0;
  --yellow:    #FAD201;   /* sun yellow — secondary */
  --green:     #20603D;   /* green — tertiary */
  --green-lt:  #3a9366;

  /* Gradients */
  --grad:        linear-gradient(120deg, #00A1DE 0%, #38c0ee 100%);
  --grad-text:   linear-gradient(110deg, #4fc3f0 0%, #00A1DE 55%, #7fe0c0 100%);
  --grad-sun:    linear-gradient(120deg, #FAD201, #ffb000);
  --grad-flag:   linear-gradient(90deg, #00A1DE 0%, #00A1DE 33%, #FAD201 33%, #FAD201 66%, #20603D 66%, #20603D 100%);

  /* Effects */
  --glass-blur: blur(14px);
  --shadow: 0 24px 60px -24px rgba(3, 8, 24, 0.9);
  --glow: 0 0 0 1px rgba(0, 161, 222, 0.4), 0 18px 50px -12px rgba(0, 161, 222, 0.45);

  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1160px;

  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-display: 'Space Grotesk', var(--font-body);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 2. Base / reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--font-display); line-height: 1.1; margin: 0; font-weight: 600; }
p { margin: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }

::selection { background: rgba(0, 161, 222, 0.35); color: #fff; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--blue); color: #061021; padding: 10px 16px; border-radius: 0 0 8px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* Visible focus for keyboard users */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--yellow); outline-offset: 3px; border-radius: 6px;
}

/* ---------- 3. Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: clamp(72px, 11vw, 140px) 0; position: relative; }

.kicker {
  text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.78rem; font-weight: 600;
  color: var(--blue); margin-bottom: 14px;
}

.section__head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 64px); }
.section__title { font-size: clamp(1.8rem, 4vw, 2.75rem); letter-spacing: -0.02em; }
.section__intro { color: var(--muted); font-size: 1.08rem; margin-top: 18px; }
.section__note { color: var(--muted-2); font-size: 0.85rem; margin-top: 26px; font-style: italic; }

.glass {
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--radius);
}

/* ---------- 4. Buttons ---------- */
.btn {
  --pad-y: 12px; --pad-x: 22px;
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  border: 1px solid transparent; cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
  will-change: transform;
}
.btn--sm { --pad-y: 9px; --pad-x: 18px; font-size: 0.88rem; }
.btn--lg { --pad-y: 15px; --pad-x: 30px; font-size: 1rem; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--grad); color: #061021;
  box-shadow: var(--glow);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(0,161,222,.6), 0 26px 60px -14px rgba(0,161,222,.55); }

.btn--ghost { background: var(--surface); color: var(--text); border-color: var(--border-2); }
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--blue); background: var(--surface-2); }

/* ---------- 5. Animated background ---------- */
.bg-fx { position: fixed; inset: 0; z-index: -1; overflow: hidden; background:
    radial-gradient(1200px 600px at 70% -10%, rgba(0,161,222,.12), transparent 60%),
    radial-gradient(900px 500px at 10% 20%, rgba(32,96,61,.12), transparent 55%),
    var(--bg);
}
.grid-overlay {
  position: absolute; inset: -2px;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 80%);
}
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.45; will-change: transform; }
.blob--blue   { width: 520px; height: 520px; background: #0077a8; top: -120px; left: -80px; animation: float1 18s var(--ease) infinite; }
.blob--green  { width: 460px; height: 460px; background: #20603D; top: 30%; right: -120px; animation: float2 22s var(--ease) infinite; }
.blob--yellow { width: 320px; height: 320px; background: #b58900; bottom: -100px; left: 30%; opacity: .30; animation: float3 26s var(--ease) infinite; }

@keyframes float1 { 50% { transform: translate(60px, 80px) scale(1.1); } }
@keyframes float2 { 50% { transform: translate(-70px, 40px) scale(1.05); } }
@keyframes float3 { 50% { transform: translate(40px, -60px) scale(1.12); } }

/* ---------- 6. Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(7, 11, 20, 0.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a:not(.btn) { color: var(--muted); font-size: 0.95rem; font-weight: 500; transition: color .2s; }
.nav__links a:not(.btn):hover { color: var(--text); }

/* Logo wordmark */
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo__dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--grad-sun);
  box-shadow: 0 0 12px rgba(250,210,1,.7), 0 0 0 3px rgba(250,210,1,.14);
}
.logo__text { font-family: var(--font-display); font-weight: 700; letter-spacing: 0.01em; font-size: 1.2rem; color: var(--text); }
.logo__text-thin { font-weight: 500; color: var(--muted); margin-left: 5px; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav__toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none; flex-direction: column; gap: 6px; padding: 16px 24px 24px;
  background: rgba(7,11,20,.96); border-bottom: 1px solid var(--border);
}
.nav__mobile a:not(.btn) { padding: 12px 8px; color: var(--muted); border-bottom: 1px solid var(--border); }
.nav__mobile.is-open { display: flex; }

/* ---------- 7. Hero ---------- */
.hero { position: relative; padding: clamp(128px, 17vw, 180px) 0 clamp(64px, 9vw, 104px); overflow: hidden; }
.hero__container { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 1; }

/* Sun-ray motif */
.sunrays {
  position: absolute; top: clamp(-140px, -12vw, -80px); left: 50%; transform: translateX(-50%);
  width: min(920px, 130vw); aspect-ratio: 1; z-index: 0; pointer-events: none;
  mask-image: radial-gradient(circle at 50% 45%, #000 20%, transparent 62%);
  -webkit-mask-image: radial-gradient(circle at 50% 45%, #000 20%, transparent 62%);
  opacity: .8;
}
.sunrays svg { width: 100%; height: 100%; }
.sunrays__spin { transform-origin: 300px 300px; animation: spin 42s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.sun-core { transform-origin: 300px 300px; animation: sunPulse 5s ease-in-out infinite; }
@keyframes sunPulse { 0%, 100% { transform: scale(1); opacity: .85; } 50% { transform: scale(1.14); opacity: 1; } }

/* Centered headline */
.hero__head { text-align: center; max-width: 880px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: var(--muted); margin-bottom: 22px;
  border: 1px solid var(--border); padding: 7px 14px; border-radius: 999px; background: var(--surface);
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 12px var(--yellow); }

.hero__title { font-size: clamp(2.3rem, 6vw, 4.2rem); letter-spacing: -0.03em; }
.hero__title-grad {
  display: block; background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__tagline { margin: 22px auto 0; font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--muted); max-width: 52ch; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: clamp(28px, 4vw, 44px); justify-content: center; }

/* Hero stat counters */
.hero__stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  width: 100%; max-width: 980px; margin-top: clamp(44px, 6vw, 72px);
}
.hstat { padding: 26px 22px; text-align: center; }
.hstat__word {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1.1;
  letter-spacing: -0.01em;
  background: var(--grad-sun); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hstat__label { color: var(--muted); margin-top: 12px; font-size: 0.9rem; }

.scroll-hint { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); width: 26px; height: 42px; border: 1px solid var(--border-2); border-radius: 14px; display: grid; place-items: start center; padding-top: 8px; z-index: 1; }
.scroll-hint span { width: 4px; height: 8px; border-radius: 4px; background: var(--yellow); animation: scrolldot 1.6s infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* ---------- 8. Flag-strip divider ---------- */
.flag-strip { height: 4px; width: 100%; background: var(--grad-flag); opacity: .9; }

/* ---------- 9. Sections shared ---------- */

/* ---------- 10. About ---------- */
.about__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
.about__lead p { color: var(--muted); font-size: 1.1rem; margin-bottom: 18px; }
.about__lead strong { color: var(--text); }
.about__lead a { color: var(--blue); }
.about__creds { font-size: 0.92rem !important; color: var(--muted-2) !important; border-top: 1px solid var(--border); padding-top: 16px; margin-top: 22px; }
.about__points { display: grid; gap: 16px; }
.about__points li { padding: 22px 24px; transition: transform .3s var(--ease), border-color .3s; }
.about__points li:hover { transform: translateX(6px); border-color: var(--border-2); }
.about__points h3 { font-size: 1.1rem; margin-bottom: 6px; }
.about__points p { color: var(--muted); font-size: 0.95rem; }

/* ---------- 11. Investments ---------- */
.investments__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.invest-card { overflow: hidden; display: flex; flex-direction: column; transition: transform .35s var(--ease), border-color .35s, box-shadow .35s; }
.invest-card:hover { transform: translateY(-8px); border-color: var(--border-2); box-shadow: var(--shadow); }
.invest-card__media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.invest-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.invest-card:hover .invest-card__media img { transform: scale(1.06); }
.invest-card__tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: 0.74rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; color: #061021;
  background: var(--blue); border: 1px solid rgba(255,255,255,.25);
}
.invest-card__tag--green { background: var(--green-lt); color: #041a10; }
.invest-card__body { padding: 26px 28px 30px; }
.invest-card__body h3 { font-size: 1.5rem; margin-bottom: 8px; }
.invest-card__lead { color: var(--blue-lt); font-size: 0.98rem; font-weight: 600; margin-bottom: 14px; }
.invest-card__body > p { color: var(--muted); font-size: 0.98rem; }
.invest-card__list { margin-top: 18px; display: grid; gap: 10px; }
.invest-card__list li { position: relative; padding-left: 26px; color: var(--muted); font-size: 0.92rem; }
.invest-card__list li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  color: var(--yellow); font-weight: 700; font-size: 0.9rem;
}

/* ---------- 12. Why Rwanda ---------- */
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card { padding: 28px 24px; transition: transform .3s var(--ease), border-color .3s, background .3s; }
.why-card:hover { transform: translateY(-6px); border-color: var(--border-2); background: var(--surface-2); }
.why-card__icon {
  width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px;
  font-size: 1.6rem; margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(0,161,222,.22), rgba(32,96,61,.18));
  border: 1px solid var(--border-2);
}
.why-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.why-card p { color: var(--muted); font-size: 0.93rem; }

/* ---------- 12b. Investor Support (reuses .why-card) ---------- */
.investor__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ---------- 13. Operations ---------- */
.operations__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.op-card { padding: 30px 28px; position: relative; overflow: hidden; transition: transform .3s var(--ease), border-color .3s; }
.op-card:hover { transform: translateY(-6px); border-color: var(--border-2); }
.op-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--grad-flag); opacity: .85; }
.op-card__icon {
  width: 56px; height: 56px; display: grid; place-items: center; border-radius: 14px;
  font-size: 1.7rem; margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(250,210,1,.18), rgba(0,161,222,.14));
  border: 1px solid var(--border-2);
}
.op-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.op-card p { color: var(--muted); font-size: 0.95rem; }

/* ---------- 14. Highlights ---------- */
.highlights__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.highlight-card { padding: 28px 26px; position: relative; overflow: hidden; transition: transform .3s var(--ease), border-color .3s; }
.highlight-card:hover { transform: translateY(-6px); border-color: var(--border-2); }
.highlight-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--grad); opacity: .8; }
.highlight-card__label { display: inline-block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 600; color: var(--yellow); margin-bottom: 14px; }
.highlight-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.highlight-card p { color: var(--muted); font-size: 0.95rem; }

/* ---------- 15. Contact ---------- */
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.contact__lead { color: var(--muted); margin-top: 18px; font-size: 1.08rem; max-width: 44ch; }
.contact__channels { margin-top: 30px; display: grid; gap: 14px; }
.contact__channels li { display: flex; gap: 16px; align-items: baseline; }
.contact__channels span:first-child { width: 80px; color: var(--muted-2); font-size: 0.85rem; text-transform: uppercase; letter-spacing: .08em; flex: 0 0 auto; }
.contact__channels a { color: var(--blue); }
.contact__sister { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); color: var(--muted); font-size: 0.92rem; }
.contact__sister a { color: var(--blue); }

.contact__form { padding: 32px 30px; display: grid; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 0.9rem; font-weight: 500; color: var(--muted); }
.field input, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: var(--radius-sm);
  background: rgba(7,11,20,.5); border: 1px solid var(--border); color: var(--text);
  font-family: inherit; font-size: 0.98rem; transition: border-color .2s, background .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus { border-color: var(--blue); background: rgba(7,11,20,.7); outline: none; }
.field textarea { resize: vertical; min-height: 120px; }
.field.is-invalid input, .field.is-invalid textarea { border-color: #f87171; }
.field__error { color: #f87171; font-size: 0.82rem; min-height: 1em; }
.form-status { font-size: 0.92rem; margin-top: 4px; min-height: 1.2em; }
.form-status.is-success { color: #3ad29a; }
.form-status.is-error { color: #f87171; }

/* Honeypot (anti-spam) — hidden from humans and assistive tech */
.hp-field { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* "I'm not a robot" checkbox */
.field--check { gap: 6px; }
.checkbox { display: inline-flex; align-items: center; gap: 11px; cursor: pointer; font-size: 0.95rem; color: var(--muted); user-select: none; }
.checkbox input { position: absolute; opacity: 0; width: 0; height: 0; }
.checkbox__box {
  width: 22px; height: 22px; flex: 0 0 auto; border-radius: 6px;
  border: 1px solid var(--border-2); background: rgba(7,11,20,.5);
  display: grid; place-items: center; transition: background .2s, border-color .2s;
}
.checkbox__box::after {
  content: ""; width: 6px; height: 11px; margin-top: -2px;
  border: solid #061021; border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0); transition: transform .2s var(--ease);
}
.checkbox input:checked + .checkbox__box { background: var(--grad); border-color: transparent; }
.checkbox input:checked + .checkbox__box::after { transform: rotate(45deg) scale(1); }
.checkbox input:focus-visible + .checkbox__box { outline: 2px solid var(--yellow); outline-offset: 2px; }
.field--check.is-invalid .checkbox__box { border-color: #f87171; }

/* ---------- 16. Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 0 0 32px; background: rgba(7,11,20,.5); position: relative; }
.footer__strip { height: 4px; width: 100%; background: var(--grad-flag); opacity: .9; margin-bottom: 56px; }
.footer__inner { display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; align-items: start; }
.footer__brand { max-width: 420px; }
.footer__brand p { color: var(--muted); margin-top: 16px; font-size: 0.95rem; }
.footer__links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer__links a { color: var(--muted); font-size: 0.95rem; transition: color .2s; }
.footer__links a:hover { color: var(--text); }

.footer__related { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--border); }
.footer__related-label { text-transform: uppercase; letter-spacing: .14em; font-size: 0.72rem; font-weight: 600; color: var(--muted-2); }
.footer__related a { color: var(--blue); font-size: 0.92rem; }

.footer__bottom { display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--muted-2); font-size: 0.85rem; }

/* ---------- 17. Scroll-reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in-view { opacity: 1; transform: none; }
/* Stagger items within a grid */
[data-reveal]:nth-child(2) { transition-delay: .08s; }
[data-reveal]:nth-child(3) { transition-delay: .16s; }
[data-reveal]:nth-child(4) { transition-delay: .24s; }

/* ---------- 18. Responsive ---------- */
@media (max-width: 900px) {
  .about__grid, .contact__inner { grid-template-columns: 1fr; }
  .investments__grid { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .why__grid, .investor__grid { grid-template-columns: repeat(2, 1fr); }
  .operations__grid, .highlights__grid { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
}
@media (max-width: 560px) {
  .hero__stats, .why__grid, .investor__grid { grid-template-columns: 1fr; }
  .container { padding: 0 18px; }
}

/* ---------- 19. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .blob { animation: none; }
  .sunrays__spin, .sun-core { animation: none; }
}
