/* =============================================================
   ændiz — style.css
   Global corporate performance consultancy
   ============================================================= */

/* =============================================================
   1. DESIGN TOKENS
   ============================================================= */
:root {
  --ink:        #0A0906;
  --paper:      #F6F3ED;
  --gold:       #B07D2A;
  --gold-light: #C9952F;
  --gold-pale:  #F0E4C8;
  --stone:      #5C5855;   /* darkened from #7A7670 → WCAG AA 5.2:1 on --paper */
  --mist:       #E2DDD4;
  --deep:       #141210;
  --mid:        #1E1C19;
  --off:        #2A2824;
  --transition: 0.25s ease;
  --radius:     4px;
}

/* =============================================================
   2. RESET & BASE
   ============================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--paper);
  color: var(--ink);
}

/* =============================================================
   3. SKIP LINK
   ============================================================= */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--gold);
  color: var(--deep);
  padding: 0.5rem 1.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

/* =============================================================
   4. SCREEN-READER ONLY UTILITY
   ============================================================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =============================================================
   5. NAVIGATION
   ============================================================= */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(20, 18, 16, 0.97);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  height: 68px;
  border-bottom: 1px solid rgba(176, 125, 42, 0.2);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.06em;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 2.25rem;
}

.nav-links a {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.125em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.125em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(176, 125, 42, 0.4);
  padding: 0.625rem 1.5rem;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--deep);
}

/* Hamburger toggle — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: #fff;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* =============================================================
   6. HERO
   ============================================================= */
.hero {
  min-height: 100vh;
  background: var(--deep);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 5rem 6.25rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 80% 50%,
    rgba(176, 125, 42, 0.06) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.hero-ghost {
  position: absolute;
  bottom: -60px;
  right: -40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(10rem, 28vw, 25rem);
  font-weight: 700;
  color: rgba(176, 125, 42, 0.03);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.04em;
}

.hero-eyebrow {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.375em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 300;
  color: #fff;
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin-bottom: 2.75rem;
  max-width: 860px;
}

.hero-headline em {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

.hero-sub {
  font-size: 1.3125rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  max-width: 540px;
  line-height: 1.9;
  margin-bottom: 3.5rem;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

/* =============================================================
   7. BUTTONS
   ============================================================= */
.btn-gold {
  background: var(--gold);
  color: var(--deep);
  padding: 1rem 2.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1875em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--transition);
  display: inline-block;
}

.btn-gold:hover {
  background: var(--gold-light);
}

.btn-line {
  color: rgba(255, 255, 255, 0.4);
  padding: 1rem 0;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.125em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: all var(--transition);
  display: inline-block;
}

.btn-line:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-dark {
  background: var(--deep);
  color: #fff;
  padding: 1.125rem 2.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1875em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition);
  display: inline-block;
}

.btn-dark:hover {
  background: var(--off);
}

/* =============================================================
   8. SECTION SHELL
   ============================================================= */
section {
  padding: clamp(3.75rem, 8vw, 7.5rem) clamp(1.25rem, 5vw, 5rem);
}

.sec-label {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.3125em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.sec-label::after {
  content: '';
  height: 1px;
  width: 36px;
  background: rgba(176, 125, 42, 0.5);
}

.sec-head {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3.625rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}

.sec-sub {
  font-size: 1.3125rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.85;
  max-width: 560px;
}

/* =============================================================
   9. INTRO STRIP
   ============================================================= */
.intro {
  background: var(--paper);
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.25rem, 5vw, 5rem);
  display: flex;
  gap: 5rem;
  align-items: center;
  border-bottom: 1px solid var(--mist);
}

.intro-left {
  flex: 1;
  min-width: 0;
}

.intro-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.125rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
}

.intro-quote strong {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

.intro-right {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--mist);
  min-width: 0;
}

.intro-stat {
  background: var(--paper);
  padding: 2rem 1.75rem;
}

.intro-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 0.9;
  margin-bottom: 0.625rem;
}

.intro-desc {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.6;
}

/* =============================================================
   10. METHODOLOGY
   ============================================================= */
.method {
  background: var(--deep);
}

.method .sec-head {
  color: #fff;
}

.method .sec-sub {
  color: rgba(255, 255, 255, 0.35);
}

.method-intro {
  font-size: 1.25rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.9;
  max-width: 580px;
  margin-top: 3rem;
  margin-bottom: 4.5rem;
}

.method-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.125em;
  margin-bottom: 0.25rem;
}

.method-tagline {
  font-size: 0.6875rem;
  letter-spacing: 0.1875em;
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  margin-bottom: 4.5rem;
}

/* =============================================================
   11. PILLARS
   ============================================================= */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.pillar {
  background: var(--mid);
  padding: 3rem 2.25rem 2.75rem;
  border-top: 3px solid transparent;
  transition: border-color var(--transition), background var(--transition);
  position: relative;
  overflow: hidden;
}

.pillar::after {
  content: attr(data-n);
  position: absolute;
  bottom: -24px;
  right: -8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 8.75rem;
  font-weight: 700;
  color: rgba(176, 125, 42, 0.05);
  line-height: 1;
  pointer-events: none;
}

.pillar:hover {
  border-color: var(--gold);
  background: #232018;
}

.pillar-n {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.pillar-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.pillar-desc {
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.pillar-outputs {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.25rem;
}

.pillar-output {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.25);
  padding: 0.25rem 0;
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
}

.pillar-output::before {
  content: '—';
  color: var(--gold);
  font-size: 0.625rem;
  flex-shrink: 0;
}

/* =============================================================
   12. HOW IT WORKS
   ============================================================= */
.how {
  background: var(--paper);
}

.how-grid {
  margin-top: 4.5rem;
}

.how-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--mist);
  border-left: 3px solid transparent;
  align-items: start;
  transition: background var(--transition), border-left-color var(--transition), padding-left var(--transition);
}

.how-row:first-child {
  border-top: 1px solid var(--mist);
}

.how-row:hover {
  background: rgba(176, 125, 42, 0.04);
  border-left-color: var(--gold);
  padding-left: 1.25rem;
}

.how-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.75rem;
  font-weight: 300;
  color: rgba(176, 125, 42, 0.28);
  line-height: 1;
  padding-top: 0.375rem;
  transition: color var(--transition);
}

.how-row:hover .how-num {
  color: rgba(176, 125, 42, 0.55);
}

/* Header row: phase label on left, duration badge on right */
.how-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.875rem;
  flex-wrap: wrap;
}

.how-phase {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.how-duration {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--deep);
  background: var(--gold-pale);
  border: 1px solid rgba(176, 125, 42, 0.45);
  padding: 0.3rem 0.75rem;
  white-space: nowrap;
}

.how-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.625rem, 2.5vw, 2.25rem);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.875rem;
  line-height: 1.05;
}

.how-desc {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.9;
}

/* =============================================================
   13. WHO WE SERVE
   ============================================================= */
.who {
  background: var(--off);
}

.who .sec-head {
  color: #fff;
}

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

.client {
  background: var(--mid);
  padding: 3rem 2.25rem;
  border-bottom: 3px solid transparent;
  transition: border-color var(--transition);
}

.client:hover {
  border-color: var(--gold);
}

.client-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.875rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.client-desc {
  font-size: 1.1875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.client-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.signal {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.125em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(176, 125, 42, 0.25);
  padding: 0.3125rem 0.625rem;
}

/* =============================================================
   14. VALUES
   ============================================================= */
.values {
  background: var(--paper);
}

.vals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 4rem;
  border: 1px solid var(--mist);
}

.val {
  padding: 3.25rem 2.5rem;
  border-right: 1px solid var(--mist);
}

.val:last-child {
  border-right: none;
}

.val-word {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.875rem;
}

.val-tag {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.1875em;
  text-transform: uppercase;
  color: var(--stone);
  display: block;
  margin-bottom: 1rem;
}

.val-desc {
  font-size: 1.1875rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.85;
}

/* =============================================================
   15. MANIFESTO
   ============================================================= */
.manifesto {
  background: var(--deep);
  padding: clamp(5rem, 12vw, 10rem) clamp(1.25rem, 5vw, 5rem);
  text-align: center;
}

.mfst-rule {
  width: 1px;
  height: 60px;
  background: rgba(176, 125, 42, 0.3);
  margin: 0 auto 3rem;
}

.mfst-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.375rem, 3vw, 2.75rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.35;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.mfst-quote strong {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

.mfst-attr {
  font-size: 0.625rem;
  letter-spacing: 0.3125em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 3rem;
}

.mfst-rule2 {
  width: 1px;
  height: 60px;
  background: rgba(176, 125, 42, 0.3);
  margin: 0 auto;
}

/* =============================================================
   16. CTA
   ============================================================= */
.cta {
  background: var(--gold);
  padding: clamp(3.75rem, 8vw, 6.25rem) clamp(1.25rem, 5vw, 5rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3.75rem;
  flex-wrap: wrap;
}

.cta-head {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  color: var(--deep);
  line-height: 1.1;
  max-width: 480px;
}

.cta-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.cta-contact {
  font-size: 1.1875rem;
  font-weight: 300;
  color: rgba(20, 18, 16, 0.55);
}

/* =============================================================
   17. FOOTER
   ============================================================= */
footer {
  background: var(--ink);
  padding: 3.5rem clamp(1.25rem, 5vw, 5rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.ft-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.25rem;
  font-weight: 300;
  color: #fff;
}

.ft-logo span {
  color: var(--gold);
}

.ft-tag {
  font-size: 0.625rem;
  letter-spacing: 0.1875em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.18);
  margin-top: 0.375rem;
}

.ft-right {
  text-align: right;
}

.ft-right p {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.22);
  line-height: 2.1;
}

.ft-right .ft-spacer {
  margin-top: 0.5rem;
}

.ft-right a {
  color: var(--gold);
  text-decoration: none;
}

.ft-right a:hover {
  text-decoration: underline;
}

/* =============================================================
   18. ANIMATIONS
   ============================================================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow { animation: fadeUp 0.7s 0.15s both; }
.hero-headline { animation: fadeUp 0.7s 0.30s both; }
.hero-sub      { animation: fadeUp 0.7s 0.45s both; }
.hero-actions  { animation: fadeUp 0.7s 0.60s both; }

/* =============================================================
   19. FOCUS STYLES — ACCESSIBILITY
   ============================================================= */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius);
}

/* =============================================================
   20. RESPONSIVE — TABLET (≤ 1024px)
   ============================================================= */
@media (max-width: 1024px) {
  nav {
    padding: 0 2.5rem;
  }

  .hero {
    padding: 0 2.5rem 5rem;
  }

  .intro {
    flex-direction: column;
    gap: 3rem;
  }

  .intro-right {
    width: 100%;
  }

  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-row {
    grid-template-columns: 64px 1fr;
    gap: 1.5rem;
  }

  .clients {
    grid-template-columns: repeat(2, 1fr);
  }

  .clients .client:last-child {
    grid-column: 1 / -1;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
  }

  .cta-right {
    align-items: flex-start;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .ft-right {
    text-align: left;
  }
}

/* =============================================================
   21. RESPONSIVE — MOBILE (≤ 768px)
   ============================================================= */
@media (max-width: 768px) {
  /* Nav */
  nav {
    padding: 0 1.25rem;
    height: 60px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 18, 16, 0.98);
    padding: 2.5rem 1.5rem;
    gap: 0;
    z-index: 99;
    overflow-y: auto;
  }

  .nav-links.is-open a {
    font-size: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color var(--transition);
  }

  .nav-links.is-open a:last-child {
    border-bottom: none;
  }

  .nav-links.is-open a:hover {
    color: var(--gold);
  }

  .nav-toggle {
    display: flex;
  }

  /* Hero */
  .hero {
    padding: 5rem 1.25rem 3.5rem;
  }

  .hero-ghost {
    display: none;
  }

  .hero-sub {
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  /* Intro */
  .intro-right {
    grid-template-columns: 1fr 1fr;
  }

  /* Pillars */
  .pillars {
    grid-template-columns: 1fr;
  }

  /* How it works */
  .how-row {
    grid-template-columns: 1fr;
    border-left: none;
    padding-left: 0;
  }

  .how-row:hover {
    padding-left: 0;
    border-left: none;
  }

  .how-num {
    display: none;
  }

  .how-duration {
    font-size: 0.5625rem;
    letter-spacing: 0.1em;
  }

  /* Clients */
  .clients {
    grid-template-columns: 1fr;
  }

  .clients .client:last-child {
    grid-column: auto;
  }

  /* Values */
  .vals {
    grid-template-columns: 1fr;
  }

  .val {
    border-right: none;
    border-bottom: 1px solid var(--mist);
  }

  .val:last-child {
    border-bottom: none;
  }

  /* CTA */
  .btn-dark {
    width: 100%;
    text-align: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Footer */
  .ft-right {
    text-align: left;
  }
}

/* =============================================================
   22. RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================= */
@media (max-width: 480px) {
  .intro-right {
    grid-template-columns: 1fr;
  }

  .intro-stat {
    padding: 1.5rem 1.25rem;
  }

  .pillar {
    padding: 2rem 1.25rem;
  }

  .client {
    padding: 2rem 1.25rem;
  }

  .val {
    padding: 2rem 1.25rem;
  }

  .vals {
    margin-top: 2.5rem;
  }
}

/* =============================================================
   23. REDUCED MOTION
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
