/* ============================================================
   WAHAJ ARABIA — MAIN STYLESHEET
   styles.css · Brand tokens + Homepage + Shared components
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600;1,700&family=Source+Sans+3:wght@300;400;600;700&display=swap');

/* ── Brand Tokens ── */
:root {
  --wj-deep:        #1a0828;
  --wj-purple:      #36164a;
  --wj-purple-2:    #652981;
  --wj-violet:      #a75bd3;
  --wj-gold:        #bc8f2a;
  --wj-gold-light:  #cfb357;
  --wj-lavender:    #f5f0f8;
  --paper:          #fbfaf8;
  --ink:            #1a0d24;
  --ink-soft:       #3a3a3a;
  --ink-mute:       #6b6075;

  --nav-h: 72px;
  --section-pad: clamp(64px, 10vw, 120px);
  --max-w: 1200px;
  --radius: 2px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

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

body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--paper);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
.t-eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wj-gold);
}

.t-display {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}

.t-display--light {
  color: var(--paper);
}

.t-display--italic {
  font-style: italic;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.section {
  padding: var(--section-pad) 0;
}

.section--dark {
  background: var(--wj-deep);
  color: var(--paper);
}

.section--purple {
  background: var(--wj-purple);
  color: var(--paper);
}

.section--lavender {
  background: var(--wj-lavender);
}

/* ── Section Header ── */
.section-header {
  margin-bottom: clamp(40px, 6vw, 72px);
}

.section-header--centered {
  text-align: center;
}

.section-header .t-eyebrow {
  display: block;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 17px;
  color: var(--ink-mute);
  max-width: 560px;
}

.section-header--centered p {
  margin: 0 auto;
}

.section--dark .section-header p,
.section--purple .section-header p {
  color: rgba(245, 240, 248, 0.65);
}

/* ── Divider ── */
.gold-rule {
  width: 40px;
  height: 2px;
  background: var(--wj-gold);
  margin: 20px 0 0;
}

.gold-rule--centered {
  margin: 20px auto 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-out);
}

.btn:hover::before { transform: translateX(0); }

.btn--gold {
  background: var(--wj-gold);
  color: #fff;
}

.btn--gold:hover {
  background: var(--wj-gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(188, 143, 42, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(207, 179, 87, 0.5);
}

.btn--outline:hover {
  border-color: var(--wj-gold-light);
  color: var(--wj-gold-light);
  transform: translateY(-1px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(26, 8, 40, 0.25);
}

.btn--outline-dark:hover {
  border-color: var(--wj-gold);
  color: var(--wj-gold);
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.nav--transparent {
  background: transparent;
}

.nav--solid {
  background: var(--wj-deep);
  box-shadow: 0 1px 0 rgba(167, 91, 211, 0.15);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.nav__logo img {
  height: 36px;
  width: auto;
}

.nav__logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--paper);
  letter-spacing: 0.02em;
}

.nav__logo-text span {
  color: var(--wj-gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 240, 248, 0.75);
  transition: color 0.25s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--wj-gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out);
}

.nav__link:hover,
.nav__link--active {
  color: var(--paper);
}

.nav__link:hover::after,
.nav__link--active::after {
  transform: scaleX(1);
}

.nav__cta {
  padding: 10px 24px;
  font-size: 12px;
}

/* Mobile nav */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--paper);
  transition: all 0.3s var(--ease-out);
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav__mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--wj-deep);
  border-top: 1px solid rgba(167, 91, 211, 0.2);
  padding: 24px clamp(20px, 5vw, 60px) 32px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}

.nav__mobile-menu.open {
  display: flex;
}

.nav__mobile-link {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 240, 248, 0.75);
  padding: 12px 0;
  border-bottom: 1px solid rgba(167, 91, 211, 0.12);
  transition: color 0.25s;
}

.nav__mobile-link:hover { color: var(--wj-gold-light); }

@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--wj-deep);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 8, 40, 0.55) 0%,
    rgba(26, 8, 40, 0.2) 50%,
    rgba(26, 8, 40, 0.6) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.3s forwards;
}

.hero__eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--wj-gold);
}

.hero__tagline {
  font-size: clamp(40px, 7vw, 80px);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--paper);
  line-height: 1.08;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.9s var(--ease-out) 0.5s forwards;
}

.hero__tagline em {
  font-style: italic;
  color: var(--wj-gold-light);
}

.hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(245, 240, 248, 0.72);
  max-width: 500px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.9s var(--ease-out) 0.7s forwards;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.9s var(--ease-out) 0.9s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.4s forwards;
}

.hero__scroll-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 248, 0.4);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(188, 143, 42, 0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── INTRO STRIP ── */
.intro-strip {
  padding: 56px 0;
  background: var(--wj-purple);
  border-top: 1px solid rgba(167, 91, 211, 0.2);
  border-bottom: 1px solid rgba(167, 91, 211, 0.2);
}

.intro-strip__inner {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 60px);
  flex-wrap: wrap;
}

.intro-strip__divider {
  width: 1px;
  height: 48px;
  background: rgba(167, 91, 211, 0.35);
  flex-shrink: 0;
}

.intro-strip__item {
  flex: 1;
  min-width: 180px;
  text-align: center;
}

.intro-strip__item-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wj-gold);
  display: block;
  margin-bottom: 6px;
}

.intro-strip__item-value {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--paper);
  line-height: 1.2;
}

/* ── ABOUT STRIP ── */
.about-strip {
  padding: var(--section-pad) 0;
}

.about-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}

.about-strip__text .t-eyebrow {
  display: block;
  margin-bottom: 16px;
}

.about-strip__text h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 20px;
  color: var(--ink);
}

.about-strip__text h2 em {
  font-style: italic;
  color: var(--wj-purple-2);
}

.about-strip__text p {
  color: var(--ink-soft);
  margin-bottom: 16px;
  font-size: 16.5px;
}

.about-strip__text .btn {
  margin-top: 12px;
}

.about-strip__visual {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--wj-deep);
  overflow: hidden;
}

.about-strip__quote {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
}

.about-strip__quote blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--paper);
  line-height: 1.5;
  margin-bottom: 20px;
}

.about-strip__quote cite {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--wj-gold);
  font-style: normal;
}

.about-strip__bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 50%, rgba(167, 91, 211, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 85% 80%, rgba(188, 143, 42, 0.10) 0%, transparent 60%);
}

@media (max-width: 768px) {
  .about-strip__inner {
    grid-template-columns: 1fr;
  }
}

/* ── SERVICES PREVIEW ── */
.services-preview {
  padding: var(--section-pad) 0;
  background: var(--wj-lavender);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.service-card {
  background: var(--paper);
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  overflow: hidden;
  transition: background 0.35s var(--ease-out);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--wj-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  background: #fff;
}

.service-card__number {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  color: var(--wj-gold);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  display: block;
}

.service-card__icon {
  width: 32px;
  height: 32px;
  margin-bottom: 20px;
  color: var(--wj-purple-2);
}

.service-card h3 {
  font-size: clamp(17px, 2vw, 22px);
  margin-bottom: 12px;
  color: var(--ink);
}

.service-card p {
  font-size: 15px;
  color: var(--ink-mute);
  line-height: 1.65;
}

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

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

/* ── REACH SECTION (MAP) ── */
.reach-section {
  padding: var(--section-pad) 0;
  background: var(--wj-deep);
  overflow: hidden;
  position: relative;
}

.reach-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.reach-section__text .t-eyebrow {
  display: block;
  margin-bottom: 16px;
}

.reach-section__text h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--paper);
  margin-bottom: 20px;
}

.reach-section__text p {
  color: rgba(245, 240, 248, 0.65);
  margin-bottom: 32px;
  font-size: 16px;
}

.reach-cities {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reach-city {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reach-city__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wj-violet);
  flex-shrink: 0;
}

.reach-city__dot--hq {
  background: var(--wj-gold);
  box-shadow: 0 0 0 3px rgba(188, 143, 42, 0.25);
}

.reach-city__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--paper);
  letter-spacing: 0.05em;
}

.reach-city__label {
  font-size: 12px;
  color: rgba(245, 240, 248, 0.45);
  margin-left: auto;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Map canvas */
.reach-map {
  position: relative;
  width: 100%;
  aspect-ratio: 1.4/1;
}

#reach-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 840px) {
  .reach-section__inner {
    grid-template-columns: 1fr;
  }
  .reach-map {
    aspect-ratio: 1.6/1;
  }
}

/* ── PHILOSOPHY BAND ── */
.philosophy-band {
  padding: clamp(56px, 8vw, 100px) 0;
  background: var(--wj-purple-2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.philosophy-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(207, 179, 87, 0.18) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.5;
}

.philosophy-band__inner {
  position: relative;
}

.philosophy-band blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(24px, 4vw, 48px);
  color: var(--paper);
  max-width: 900px;
  margin: 0 auto 20px;
  line-height: 1.35;
}

.philosophy-band cite {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wj-gold-light);
  font-style: normal;
}

/* ── CAPABILITIES PREVIEW ── */
.capabilities-preview {
  padding: var(--section-pad) 0;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.capability-item {
  padding: 36px;
  border: 1px solid rgba(26, 8, 40, 0.08);
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.capability-item:hover {
  border-color: rgba(188, 143, 42, 0.3);
  box-shadow: 0 4px 24px rgba(26, 8, 40, 0.06);
}

.capability-item__category {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wj-gold);
  display: block;
  margin-bottom: 12px;
}

.capability-item h3 {
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 10px;
}

.capability-item p {
  font-size: 15px;
  color: var(--ink-mute);
  line-height: 1.65;
}

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

/* ── CTA BAND ── */
.cta-band {
  padding: clamp(64px, 10vw, 100px) 0;
  background: var(--wj-deep);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(101, 41, 129, 0.4) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band h2 {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--paper);
  margin-bottom: 16px;
  position: relative;
}

.cta-band p {
  color: rgba(245, 240, 248, 0.6);
  margin-bottom: 36px;
  font-size: 17px;
  position: relative;
}

.cta-band__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ── FOOTER ── */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(48px, 8vw, 80px) 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(24px, 4vw, 60px);
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245, 240, 248, 0.08);
  margin-bottom: 32px;
}

.footer__brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--paper);
  margin-bottom: 12px;
}

.footer__tagline {
  font-size: 13px;
  color: var(--wj-gold-light);
  letter-spacing: 0.08em;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  margin-bottom: 16px;
}

.footer__desc {
  font-size: 14px;
  color: rgba(245, 240, 248, 0.45);
  line-height: 1.7;
  max-width: 260px;
}

.footer__col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wj-gold);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(245, 240, 248, 0.55);
  transition: color 0.25s;
}

.footer__links a:hover { color: var(--paper); }

.footer__contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(245, 240, 248, 0.55);
  line-height: 1.5;
}

.footer__contact-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--wj-gold);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copyright {
  font-size: 13px;
  color: rgba(245, 240, 248, 0.3);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 12px;
  color: rgba(245, 240, 248, 0.3);
  transition: color 0.25s;
}

.footer__legal a:hover { color: rgba(245, 240, 248, 0.6); }

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

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

/* ── WHATSAPP FAB ── */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-fab svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Footer contact links (SEO/UX pass) */
.footer__contact-item a {
  color: inherit;
  transition: color 0.25s;
}
.footer__contact-item a:hover { color: var(--wj-gold-light); }
