/* ==================================================================
   3FOLDS PROTOTYPE — v3 (brand-aligned)
   Brand: #F95921 orange, #0621A4 blue, #0A0A0A ink, #FAF7F2 paper
   Fonts: Clash Grotesk (display), Satoshi (body)
   Aligned with 3FOLDS Brand Guideline — Feb 2026
================================================================== */

:root {
  --orange: #F95921;
  --blue: #0621A4;
  --ink: #0A0A0A;
  --paper: #FAF7F2;
  --paper-2: #F2EDE3;
  --muted: #6B6B6B;
  --border: rgba(10,10,10,0.09);
  --border-dark: rgba(250,247,242,0.1);
}


/* ==================================================================
   ORIGAMI CONSTRUCTION GRID — dashed blue lines + diagonals
   Echoes the paper-folding guides used throughout the brand guideline
================================================================== */
.origami-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240'%3E%3Cg fill='none' stroke='%230621A4' stroke-width='0.6'%3E%3Cpath d='M0 0h240v240H0z'/%3E%3Cpath d='M120 0v240M0 120h240' stroke-dasharray='4 4'/%3E%3Cpath d='M0 0l240 240M240 0L0 240' stroke-dasharray='4 4' opacity='0.55'/%3E%3Cpath d='M60 0v240M180 0v240M0 60h240M0 180h240' stroke-dasharray='2 6' opacity='0.4'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 240px 240px;
  background-repeat: repeat;
  opacity: 0.22;
}
/* On-orange variant — lighter blue for contrast */
.origami-grid--on-orange {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240'%3E%3Cg fill='none' stroke='%230621A4' stroke-width='0.8'%3E%3Cpath d='M0 0h240v240H0z'/%3E%3Cpath d='M120 0v240M0 120h240' stroke-dasharray='4 4'/%3E%3Cpath d='M0 0l240 240M240 0L0 240' stroke-dasharray='4 4'/%3E%3Cpath d='M60 0v240M180 0v240M0 60h240M0 180h240' stroke-dasharray='2 6' opacity='0.55'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.35;
}
.origami-grid--paper { opacity: 0.12; }
.origami-grid--orange { opacity: 0.5; }

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

html, body { width: 100%; overflow-x: clip; }

body {
  font-family: 'Satoshi', sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  cursor: none;
}
@media (hover: none), (max-width: 900px) { body { cursor: auto; } }

a { color: inherit; text-decoration: none; }
button { background: none; border: none; font: inherit; color: inherit; }
img { display: block; max-width: 100%; height: auto; }

::selection { background: var(--orange); color: #fff; }

body.is-loading { overflow: hidden; }


/* ==================================================================
   GRAIN OVERLAY — adds film-grain texture over everything
================================================================== */
.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
}


/* ==================================================================
   CUSTOM CURSOR
================================================================== */
.cursor {
  position: fixed;
  top: 0; left: 0;
  z-index: 10000;
  pointer-events: none;
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity .3s;
}
.cursor.is-visible { opacity: 1; }

.cursor__dot {
  position: absolute;
  left: 0; top: 0;
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform .15s ease, opacity .2s;
}
.cursor__ring {
  position: absolute;
  left: 0; top: 0;
  width: 36px; height: 36px;
  border: 1px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), width .35s, height .35s, background .3s;
}
.cursor.is-hover .cursor__dot { transform: translate(-50%, -50%) scale(0); }
.cursor.is-hover .cursor__ring {
  width: 72px; height: 72px;
  background: rgba(255,255,255,0.1);
}

@media (hover: none), (max-width: 900px) { .cursor { display: none; } }


/* ==================================================================
   LOADER
================================================================== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: opacity .6s ease, visibility .6s;
}
.loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader__folds {
  position: absolute;
  inset: 0;
  display: flex;
}
.loader__folds .fold {
  flex: 1;
  background: var(--ink);
  transform-origin: top center;
  transition: transform 1.1s cubic-bezier(.86,.05,.2,1);
}
.loader.is-done .fold--1 { transform: translateY(-100%) rotateX(-80deg); }
.loader.is-done .fold--2 { transform: translateY(-100%); transition-delay: .08s; }
.loader.is-done .fold--3 { transform: translateY(-100%) rotateX(-80deg); transition-delay: .16s; }

.loader__text {
  position: relative;
  z-index: 2;
  display: flex;
  font-size: clamp(2rem, 8vw, 6rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}
.loader__text .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  animation: char-in .6s cubic-bezier(.7,.1,.3,1) forwards;
}
.loader__text .char:nth-child(1) { animation-delay: .05s; }
.loader__text .char:nth-child(2) { animation-delay: .15s; }
.loader__text .char:nth-child(3) { animation-delay: .22s; }
.loader__text .char:nth-child(4) { animation-delay: .29s; }
.loader__text .char:nth-child(5) { animation-delay: .36s; }
.loader__text .char:nth-child(6) { animation-delay: .43s; }
.loader__text .char--accent { color: var(--orange); }
@keyframes char-in { to { opacity: 1; transform: translateY(0); } }

.loader__caption {
  position: relative;
  z-index: 2;
  margin-top: 1.5rem;
  display: flex;
  gap: .75rem;
  align-items: center;
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.55);
  opacity: 0;
  animation: caption-in .9s .6s ease forwards;
}
.loader__caption em { color: var(--orange); font-style: normal; }
@keyframes caption-in { to { opacity: 1; } }

.loader__count {
  position: absolute;
  right: 2rem; bottom: 2rem;
  z-index: 3;
  font-size: 3rem;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: -0.03em;
}


/* ==================================================================
   HEADER
================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background .35s, backdrop-filter .35s, padding .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(250,247,242,0.75);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom-color: var(--border);
  padding: .5rem 0;
}

.site-header__inner {
  max-width: 1760px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 56px;
}
@media (min-width: 768px) {
  .site-header__inner { padding: 0 2rem; height: 60px; }
}

.brand {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
  position: relative;
}
.brand__mark {
  color: var(--orange);
  display: inline-block;
  font-weight: 700;
  margin-right: 1px;
  animation: brand-pulse 4s ease-in-out infinite;
}
.brand__word { display: inline-block; }
@keyframes brand-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.nav-links {
  display: none;
  gap: 2rem;
  font-size: .88rem;
  font-weight: 400;
}
@media (min-width: 900px) { .nav-links { display: flex; } }

.nav-link {
  position: relative;
  padding: .25em 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: width .35s cubic-bezier(.7,.1,.3,1);
}
.nav-link:hover::after { width: 100%; }

.header-cta {
  display: none;
  align-items: center;
  gap: .6rem;
  padding: .55rem 1.15rem;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  font-size: .82rem;
  position: relative;
  overflow: hidden;
  transition: background .3s, color .3s;
}
@media (min-width: 900px) { .header-cta { display: inline-flex; } }
.header-cta:hover { background: var(--orange); }
.header-cta__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  transition: background .3s;
  animation: dot-pulse 1.8s ease-in-out infinite;
}
.header-cta:hover .header-cta__dot { background: #fff; animation: none; }
@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(249,89,33,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(249,89,33,0); }
}

/* Menu button */
.menu-btn {
  width: 46px; height: 46px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  transition: background .3s;
}
@media (min-width: 900px) { .menu-btn { display: none; } }
.menu-btn span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: currentColor;
  transition: .3s;
}
.menu-btn.is-open span:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
.menu-btn.is-open span:nth-child(2) { transform: translateY(-3.25px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  color: var(--paper);
  z-index: 99;
  padding: 7rem 1.5rem 2rem;
  clip-path: circle(0% at calc(100% - 40px) 40px);
  transition: clip-path .7s cubic-bezier(.7,.1,.3,1);
}
.mobile-menu.is-open { clip-path: circle(150% at calc(100% - 40px) 40px); }

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-family: 'Clash Grotesk', sans-serif;
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 500;
  padding: .75rem 0;
  border-bottom: 1px solid var(--border-dark);
  letter-spacing: -0.02em;
}
.mobile-menu nav a .num {
  font-size: .8rem;
  color: var(--orange);
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
}


/* ==================================================================
   HERO
================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 7rem 1.5rem 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) { .hero { padding: 9rem 2rem 0; } }

.hero__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 1; }
.float-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}
.float-shape--1 {
  width: 500px; height: 500px;
  background: var(--orange);
  top: -10%; left: -5%;
  animation: float-1 18s ease-in-out infinite alternate;
}
.float-shape--2 {
  width: 600px; height: 600px;
  background: var(--blue);
  bottom: -20%; right: -10%;
  animation: float-2 22s ease-in-out infinite alternate;
  opacity: 0.25;
}
.float-shape--3 {
  width: 300px; height: 300px;
  background: var(--orange);
  top: 30%; right: 15%;
  animation: float-3 16s ease-in-out infinite alternate;
  opacity: 0.2;
}
@keyframes float-1 { to { transform: translate(100px, 60px) scale(1.15); } }
@keyframes float-2 { to { transform: translate(-120px, -80px) scale(1.1); } }
@keyframes float-3 { to { transform: translate(-200px, 150px) scale(0.9); } }

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1760px;
  width: 100%;
  margin: 0 auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 3rem;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2.5rem;
  font-weight: 500;
}
.hero__eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: dot-pulse 1.8s ease-in-out infinite;
}

.hero__slogan {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 600; /* fixed (650 → safer) */
  letter-spacing: -0.03em;
  line-height: 1.15;

  color: var(--ink); /* fallback */
  margin-bottom: 1.4rem;

  max-width: min(32ch, 100%); /* improved responsiveness */

  background: linear-gradient(90deg, var(--ink), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  /* polish */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}


.hero__title {
  font-size: clamp(3.5rem, 13vw, 17rem);
  font-weight: 600;
  line-height: .88;
  letter-spacing: -0.045em;
  margin: 0;
  position: relative;
}
.hero__amp { font-style: italic; font-weight: 400; color: var(--orange); }

.line {
  display: block;
  overflow: hidden;
  padding-bottom: .08em;
}
.line__inner {
  display: inline-block;
  transform: translateY(110%);
  will-change: transform;
}
.is-loaded .line__inner {
  transform: translateY(0);
  transition: transform 1.1s cubic-bezier(.7,.1,.3,1);
}
.is-loaded .line:nth-child(1) .line__inner { transition-delay: .2s; }
.is-loaded .line:nth-child(2) .line__inner { transition-delay: .35s; }
.is-loaded .line:nth-child(3) .line__inner { transition-delay: .5s; }

.line--rotate { color: var(--orange); }
.rot {
  position: relative;
  display: inline-block;
  vertical-align: top;
  height: 1em;
  overflow: hidden;
}
.rot__item {
  display: block;
  height: 1em;
  line-height: .9;
  animation: rotate-words-3 9s steps(3, end) infinite;
}
.line--rotate .rot__item {
  animation: rotate-words 14s steps(5, end) infinite;
}
@keyframes rotate-words-3 {
  0%, 28%   { transform: translateY(0); }
  33%, 61%  { transform: translateY(-100%); }
  66%, 100% { transform: translateY(-200%); }
}
@keyframes rotate-words {
  0%, 18% { transform: translateY(0); }
  20%, 38% { transform: translateY(-100%); }
  40%, 58% { transform: translateY(-200%); }
  60%, 78% { transform: translateY(-300%); }
  80%, 100% { transform: translateY(-400%); }
}

.hero__row {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  align-items: flex-end;
}
@media (min-width: 900px) {
  .hero__row { grid-template-columns: 1fr auto; }
}
.hero__blurb p {
  font-size: clamp(.95rem, 1.3vw, 1.15rem);
  max-width: 48ch;
  color: #333;
  margin-bottom: 1.25rem;
}
.hero__blurb p:last-child { margin-bottom: 0; }
.hero__blurb em { font-style: italic; color: var(--orange); font-weight: 500; }

/* Hero tagline stylised letters: orange "i", blue "we"
   (echoes brand guideline page 2 — "without i, there is no we") */
.hero__title .ltr-i,
.hero__title .ltr-we {
  font-style: italic;
  font-weight: 700;
  display: inline-block;
  transform: translateY(-.02em);
}
.hero__title .ltr-i {
  color: var(--orange);
  padding: 0 .04em;
}
.hero__title .ltr-we {
  color: var(--blue);
  padding: 0 .04em;
}

/* Hero "We [inspire/integrate/influence]" rotator */
.hero__method {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  font-weight: 500;
  letter-spacing: -.01em;
  margin-top: 1.5rem;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: .3em;
}
.hero__method .rot__item { color: var(--orange); font-style: italic; }

.hero__ctas {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 500;
  transition: transform .3s, background .3s, color .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.btn--dark { background: var(--ink); color: var(--paper); }
.btn--dark:hover { background: var(--orange); }
.btn--ghost { border: 1px solid var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }

/* Origami SVG — floats in top-right */
.hero__origami {
  position: absolute;
  top: 8%;
  right: -6%;
  width: 46%;
  max-width: 640px;
  pointer-events: none;
  opacity: .95;
  animation: hero-origami-float 14s ease-in-out infinite alternate;
  z-index: 1;
}
@keyframes hero-origami-float {
  from { transform: translateY(0) rotate(-3deg); }
  to { transform: translateY(30px) rotate(4deg); }
}
.hero__origami svg { width: 100%; height: auto; }
.hero__origami .ori {
  transform-origin: center;
  animation-duration: 8s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
}
.hero__origami .ori--1 { animation-name: ori-a; }
.hero__origami .ori--2 { animation-name: ori-b; animation-delay: -1.5s; }
.hero__origami .ori--3 { animation-name: ori-c; animation-delay: -3s; }
.hero__origami .ori--4 { animation-name: ori-d; animation-delay: -4.5s; }
.hero__origami .ori--5 { animation-name: ori-e; animation-delay: -2s; }
@keyframes ori-a { from { transform: translate(-4px,-4px); } to { transform: translate(6px,6px); } }
@keyframes ori-b { from { transform: translate(4px,-4px); } to { transform: translate(-8px,8px); } }
@keyframes ori-c { from { transform: translate(-4px,4px); } to { transform: translate(8px,-6px); } }
@keyframes ori-d { from { transform: translate(4px,4px) rotate(-2deg); } to { transform: translate(-6px,-6px) rotate(2deg); } }
@keyframes ori-e { from { transform: translate(0,-4px) scale(0.95); } to { transform: translate(4px,4px) scale(1.05); } }

@media (max-width: 899px) {
  .hero__origami { right: -40%; top: 14%; width: 100%; opacity: .45; }
}

/* Scroll cue */
.hero__scrollcue {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  padding-bottom: 1.5rem;
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
}
.scrollcue__bar {
  width: 48px; height: 1.5px;
  background: rgba(10,10,10,0.2);
  position: relative;
  overflow: hidden;
}
.scrollcue__bar span {
  position: absolute; left: 0; top: 0;
  width: 50%; height: 100%;
  background: var(--ink);
  animation: scrollcue 2s ease-in-out infinite;
}
@keyframes scrollcue {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}


/* ==================================================================
   TICKER
================================================================== */
.hero__ticker {
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--paper);
}
.ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding: 1.25rem 0;
  white-space: nowrap;
  animation: ticker-scroll 35s linear infinite;
  font-family: 'Clash Grotesk', sans-serif;
  font-size: clamp(.95rem, 1.4vw, 1.2rem);
  font-weight: 500;
  letter-spacing: .1em;
}
.ticker__track span { display: inline-block; }
.ticker__sep { color: var(--orange); }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ==================================================================
   MARQUEE DIVIDER (GIANT)
================================================================== */
.mq-divider {
  overflow: hidden;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--paper);
}
.mq-divider--dark {
  background: var(--ink);
  color: var(--paper);
  border-color: rgba(255,255,255,0.05);
}
.mq-divider--orange {
  background: var(--orange);
  color: var(--ink);
  border-color: rgba(0,0,0,0.1);
}
.mq-track {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}
.mq-track--left { animation: mq-scroll 28s linear infinite; }
.mq-track--right { animation: mq-scroll-r 32s linear infinite; }
.mq-star {
  color: var(--orange);
  font-size: .6em;
  opacity: .8;
}
.mq-divider--dark .mq-star { color: var(--orange); }
.mq-divider--orange .mq-star { color: var(--blue); opacity: 1; }

.mq-track .italic { font-style: italic; font-weight: 400; }

@keyframes mq-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes mq-scroll-r {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}


/* ==================================================================
   SECTION HEADER (shared)
================================================================== */
.section-header {
  max-width: 1760px;
  margin: 0 auto;
  padding: 6rem 1.5rem 3rem;
}
@media (min-width: 768px) { .section-header { padding: 8rem 2rem 4rem; } }

.section-kicker {
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.kicker-num { color: var(--orange); font-weight: 600; }

.section-title {
  font-size: clamp(2.8rem, 8.5vw, 8rem);
  font-weight: 600;
  line-height: .92;
  letter-spacing: -0.04em;
  margin: 0;
}
.section-title .italic { font-style: italic; font-weight: 500; color: var(--orange); }

.section-sub {
  margin-top: 1rem;
  font-size: .9rem;
  color: var(--muted);
}

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.7,.1,.3,1);
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-img {
  clip-path: inset(20% 0 0 0);
  opacity: 0;
  transition: clip-path .9s cubic-bezier(.7,.1,.3,1),
              opacity .6s ease;
}

.reveal-img.is-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
}

/* ==================================================================
   STATS
================================================================== */
.stats {
  background: var(--ink);
  color: var(--paper);
  padding: 4rem 1.5rem;
  border-top: 1px solid var(--border-dark);
}
@media (min-width: 768px) { .stats { padding: 5rem 2rem; } }

.stats__grid {
  max-width: 1760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1rem;
}
@media (min-width: 900px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }

.stat {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: 0 .5rem;
  border-left: 1px solid var(--border-dark);
  padding-left: 1.5rem;
  position: relative;
}
.stat__num {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
  display: inline-block;
}
.stat__plus {
  color: var(--orange);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-left: -.15em;
  font-family: 'Clash Grotesk', sans-serif;
  font-weight: 500;
  vertical-align: top;
  line-height: 1.3;
}
.stat__label {
  font-size: .82rem;
  color: rgba(250,247,242,0.55);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-top: .5rem;
}


/* ==================================================================
   WORK — FULLY RESPONSIVE FIXED GRID SCROLL
================================================================== */

.work {
  background: var(--paper);
}

/* =========================
   DESKTOP PINNED LAYOUT
========================= */
.work-pin {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.work-pin__track {
  display: flex;
  align-items: stretch;
  gap: 2.5rem;
  height: 100%;
  padding: 0 3rem;
  will-change: transform;
}

/* =========================
   UNIFORM CARD SYSTEM
   (IMPORTANT FIX HERE)
========================= */
.project {
  flex: 0 0 auto;
  width: 380px;              /* FIXED WIDTH */
  height: 520px;             /* FIXED HEIGHT → ALL SAME */
  display: flex;
  flex-direction: column;
  gap: 1rem;
  scroll-snap-align: start;
}

/* remove tall variation completely effect */
.project--tall {
  width: 380px;
  height: 520px;
}

/* =========================
   IMAGE CONSISTENCY FIX
========================= */
.project__media {
  width: 100%;
  height: 380px;             /* FIXED IMAGE HEIGHT */
  overflow: hidden;
  background: var(--paper-2);
  position: relative;
  border-radius: 2px;
}

.project__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.2s cubic-bezier(.7,.1,.3,1), filter .4s;
  filter: grayscale(25%) contrast(1.02);
}

.project:hover .project__media img {
  transform: scale(1.08);
  filter: grayscale(0) contrast(1.05);
}

/* overlay */
.project__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,10,10,0.55));
  opacity: 0;
  transition: opacity .4s;
}

.project:hover .project__media::after {
  opacity: 1;
}

/* =========================
   META SECTION (FIXED SPACE)
========================= */
.project__meta {
  padding: 0 0.2rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.project__meta h3 {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
}

.project__tag {
  font-size: .78rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .12em;
}

/* =========================
   CTA TILE (MATCH SIZE)
========================= */
.project--cta {
  width: 380px;
  height: 520px;
  display: flex;
}

.project__cta {
  width: 100%;
  height: 81%;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 2rem;
  border-radius: 2px;
  transition: background .3s;
}

.project--cta:hover .project__cta {
  background: var(--orange);
  color: var(--ink);
}

/* =========================
   MOBILE FIX (VERY IMPORTANT)
========================= */
@media (max-width: 899px) {

  .work-pin {
    height: auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .work-pin__track {
    padding: 2rem 1.5rem 3rem;
    gap: 1.2rem;
    height: auto;
  }

  .project,
  .project--tall,
  .project--cta {
    width: 82vw;
    height: 520px;
  }

  .project__media {
    height: 380px;
  }
}

/* hide scrollbar */
.work-pin__track::-webkit-scrollbar {
  display: none;
}

/* ==================================================================
   CLIENTS MARQUEE
================================================================== */
.clients {
  padding: 4rem 0;
  overflow: hidden;
  background: var(--paper);
}
.marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
  white-space: nowrap;
  animation: marquee-scroll 35s linear infinite;
}
.clients:hover .marquee__track { animation-play-state: paused; }

.logo {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: color .3s, transform .3s;
  display: inline-block;
}
.logo .amp { color: var(--orange); }
.logo:hover { color: var(--orange); transform: scale(1.05); }
.logo.italic, .logo .italic { font-style: italic; font-weight: 400; }
.logo-dot {
  color: var(--orange);
  font-size: 1.5rem;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ==================================================================
   SERVICES
================================================================== */
.services {
  background: var(--paper-2);
  padding-bottom: 4rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.services__wrap {
  max-width: 1760px;
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
  position: relative;
}
@media (min-width: 768px) { .services__wrap { padding: 0 2rem 3rem; } }

.services__list { position: relative; z-index: 2; }

.svc {
  border-top: 1px solid var(--ink);
  transition: padding .35s;
  cursor: pointer;
}
.svc:last-child { border-bottom: 1px solid var(--ink); }
.svc:hover { padding: 0 .75rem; }

.svc__row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 1.25rem;
  align-items: baseline;
  padding: 2rem 0;
  transition: color .3s;
}
.svc:hover .svc__row { color: var(--orange); }

.svc__num {
  font-size: .9rem;
  color: var(--muted);
  font-weight: 500;
  transition: color .3s;
}
.svc:hover .svc__num { color: var(--orange); }

.svc__name {
  font-size: clamp(1.6rem, 4.5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}
.svc__tags {
  font-size: .8rem;
  color: var(--muted);
  letter-spacing: .05em;
  display: none;
  transition: color .3s;
}
.svc:hover .svc__tags { color: var(--ink); }
@media (min-width: 1024px) { .svc__tags { display: inline; } }

.svc__plus {
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 300;
  transition: transform .45s cubic-bezier(.7,.1,.3,1);
  color: var(--ink);
}
.svc.is-open .svc__plus { transform: rotate(45deg); color: var(--orange); }

.svc__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height .5s cubic-bezier(.7,.1,.3,1);
}
.svc.is-open .svc__body { max-height: 600px; }
.svc__body > * { padding-bottom: .5rem; }

.svc__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin-left: auto;
}
@media (min-width: 1024px) { .svc__body { grid-template-columns: 2fr 1fr; } }
.svc__body p {
  font-size: 1.05rem;
  color: #2c2c2c;
  padding-bottom: 2rem;
}
.svc__body ul {
  list-style: none;
  display: grid;
  gap: .5rem;
  font-size: .9rem;
  color: var(--muted);
  padding-bottom: 2rem;
}
.svc__body li::before { content: "— "; color: var(--orange); }

/* Floating preview image */
.svc-preview {
  position: fixed;
  top: 0; left: 0;
  width: 300px;
  height: 380px;
  pointer-events: none;
  z-index: 50;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85);
  transition: opacity .25s, transform .3s cubic-bezier(.2,.8,.2,1);
}
.svc-preview.is-visible { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.svc-preview__img {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 3px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
@media (max-width: 899px) { .svc-preview { display: none; } }


/* ==================================================================
   MISSION / VISION — from brand guideline page 3
================================================================== */
.mv {
  position: relative;
  background: var(--orange);
  color: var(--paper);
  padding: 6rem 1.5rem;
  overflow: hidden;
}
@media (min-width: 768px) { .mv { padding: 8rem 2rem; } }

.mv__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 768px) {
  .mv__inner {
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
  }
}

.mv__card { text-align: center; }
.mv__label {
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 500;
  letter-spacing: .18em;
  margin-bottom: 2rem;
  opacity: .85;
}
.mv__text {
  font-size: clamp(1.15rem, 1.9vw, 1.75rem);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.01em;
  max-width: 30ch;
  margin: 0 auto;
}

.mv__divider {
  display: none;
  width: 1px;
  min-height: 160px;
  background: rgba(250,247,242,0.35);
  align-self: stretch;
}
@media (min-width: 768px) { .mv__divider { display: block; } }


/* ==================================================================
   OUR PILLARS — four folds, one purpose
================================================================== */
.pillars-head {
  max-width: 1760px;
  margin: 6rem auto 2.5rem;
  padding: 0;
}
.pillars-title {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-top: .75rem;
}
.pillars-title .italic { font-style: italic; font-weight: 500; color: var(--orange); }

.pillars {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--blue);
  border-left: 1px solid var(--blue);
}
@media (min-width: 600px) { .pillars { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .pillars { grid-template-columns: repeat(4, 1fr); } }

.pillar {
  position: relative;
  padding: 2rem 1.5rem 2.25rem;
  border-right: 1px solid var(--blue);
  border-bottom: 1px solid var(--blue);
  background: var(--paper);
  overflow: hidden;
  transition: background .4s;
}
.pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(249,89,33,0.06), transparent 60%);
  opacity: 0;
  transition: opacity .45s;
  pointer-events: none;
}
.pillar:hover::before { opacity: 1; }

.pillar__diagram {
  width: 72px;
  height: 72px;
  margin-bottom: 1rem;
  transition: transform .5s cubic-bezier(.7,.1,.3,1);
}
.pillar__diagram svg { width: 100%; height: 100%; }
.pillar:hover .pillar__diagram { transform: rotate(-8deg) scale(1.04); }

.pillar__num {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: .8rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: .05em;
}
.pillar__name {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 600;
  color: var(--orange);
  letter-spacing: -0.02em;
  margin-bottom: .25rem;
}
.pillar__sub {
  font-size: .95rem;
  font-style: italic;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 1rem;
}
.pillar__desc {
  font-size: .92rem;
  color: #2c2c2c;
  line-height: 1.55;
  max-width: 30ch;
}


/* ==================================================================
   ABOUT
================================================================== */
.about {
  padding: 7rem 1.5rem 6rem;
  max-width: 1760px;
  margin: 0 auto;
}
@media (min-width: 768px) { .about { padding: 9rem 2rem 7rem; } }

.about__head { margin-bottom: 2rem; }

.about__statement {
  font-size: clamp(2.2rem, 5.5vw, 5.5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 4rem;
  max-width: 1400px;
}
.about__statement .word {
  display: inline-block;
  opacity: 0.15;
  transition: opacity .35s ease;
}
.about__statement .word.is-visible { opacity: 1; }
.about__statement .word--accent {
  color: var(--orange);
  font-style: italic;
  font-weight: 500;
}
.about__statement .word--accent-blue {
  color: var(--blue);
  font-style: italic;
  font-weight: 500;
}

.about__body {
  display: grid;
  gap: 3rem;
  margin-bottom: 5rem;
}
@media (min-width: 900px) {
  .about__body { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
}
.about__text p {
  font-size: 1.05rem;
  max-width: 48ch;
  margin-bottom: 1.5rem;
}
.about__text em { font-style: italic; color: var(--orange); font-weight: 500; }

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  padding-bottom: .25rem;
  border-bottom: 1px solid currentColor;
  transition: gap .3s, color .3s;
}
.inline-link:hover { color: var(--orange); gap: .75rem; }

.about__image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
}
.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==================================================================
   our story 
================================================================== */
.story {
  padding: 7rem 1.5rem 6rem;
  max-width: 1760px;
  margin: 0 auto;
}
@media (min-width: 768px) { .story { padding: 9rem 2rem 7rem; } }

.story__head { margin-bottom: 2rem; }

.story__statement {
  font-size: clamp(2.2rem, 5.5vw, 5.5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 4rem;
  max-width: 1400px;
}
.story__statement .word {
  display: inline-block;
  transition: opacity .35s ease;
}
.story__statement .word.is-visible { opacity: 1; }
.story__statement .word--accent {
  color: var(--orange);
  font-style: italic;
  font-weight: 500;
}
.story__statement .word--accent-blue {
  color: var(--blue);
  font-style: italic;
  font-weight: 500;
}

.story__body {
  display: grid;
  gap: 3rem;
  margin-bottom: 5rem;
}
@media (min-width: 900px) {
  .story__body { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
}
.story__text p {
  font-size: 1.05rem;
  max-width: 48ch;
  margin-bottom: 1.5rem;
}
.story__text em { font-style: italic; color: var(--orange); font-weight: 500; }

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  padding-bottom: .25rem;
  border-bottom: 1px solid currentColor;
  transition: gap .3s, color .3s;
}
.inline-link:hover { color: var(--orange); gap: .75rem; }

.story__image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
}
.story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Values grid */
.values {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}
@media (min-width: 600px) { .values { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .values { grid-template-columns: repeat(4, 1fr); } }

.value {
  padding: 2.5rem 1.5rem;
  border-bottom: 1px solid var(--ink);
  border-right: 1px solid var(--ink);
  position: relative;
  overflow: hidden;
  transition: background .4s;
  min-height: 240px;
}
.value::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(100%);
  transition: transform .5s cubic-bezier(.7,.1,.3,1);
  z-index: 0;
}
.value:hover::before { transform: translateY(0); }
.value:hover { color: var(--paper); }
.value:hover .value__num { color: var(--orange); }
.value:hover .value__deco { color: var(--orange); transform: rotate(180deg) scale(1.4); }

.value > * { position: relative; z-index: 1; }
.value__num {
  display: block;
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  transition: color .3s;
}
.value__name {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: .75rem;
}
.value p {
  font-size: .9rem;
  color: var(--muted);
  transition: color .3s;
}
.value:hover p { color: rgba(250,247,242,0.7); }

.value__deco {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--orange);
  font-size: 1.25rem;
  transition: transform .5s, color .3s;
}


/* ==================================================================
   QUOTE
================================================================== */
.quote-section {
  background: var(--ink);
  color: var(--paper);
  padding: 8rem 1.5rem;
}
.quote-wrap {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.quote-kicker {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 2.5rem;
}
.quote-text {
  font-size: clamp(1.6rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 auto 3rem;
  max-width: 20ch;
}
.quote-cite {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}
.quote-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.cite-name {
  display: block;
  font-weight: 600;
  font-size: .95rem;
}
.cite-role {
  display: block;
  color: rgba(250,247,242,0.55);
  font-size: .82rem;
  margin-top: .15rem;
}


/* ==================================================================
   CTA
================================================================== */
.cta {
  background: var(--orange);
  color: var(--ink);
  padding: 7rem 1.5rem 6rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .cta { padding: 10rem 2rem 7rem; } }

.cta__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.cta__float {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.cta__float--1 {
  width: 400px; height: 400px;
  background: var(--blue);
  top: -10%; right: -5%;
  opacity: 0.4;
  animation: float-1 18s ease-in-out infinite alternate;
}
.cta__float--2 {
  width: 320px; height: 320px;
  background: var(--ink);
  bottom: -10%; left: 10%;
  opacity: 0.3;
  animation: float-2 22s ease-in-out infinite alternate;
}

.cta__inner {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.cta__kicker {
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.6);
  margin-bottom: 2rem;
  display: flex;
  gap: .6rem;
}
.cta__kicker .kicker-num { color: var(--ink); }

.cta__headline {
  font-size: clamp(3.5rem, 14vw, 15rem);
  font-weight: 600;
  line-height: .9;
  letter-spacing: -0.05em;
  margin: 0;
}
.cta__headline .italic { font-style: italic; font-weight: 500; }

.cta__email {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  font-size: clamp(1.3rem, 3vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  transition: gap .3s, color .3s;
  border-bottom: 1px solid var(--ink);
  padding-bottom: .5rem;
}
.cta__email:hover { gap: 1.5rem; }
.cta__email svg { transition: transform .35s; }
.cta__email:hover svg { transform: rotate(45deg); }

.cta__meta {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(10,10,10,0.25);
  font-size: .95rem;
}
@media (min-width: 768px) { .cta__meta { grid-template-columns: repeat(3, 1fr); } }
.cta__meta .label {
  display: block;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .7rem;
  color: rgba(10,10,10,0.6);
  margin-bottom: .25rem;
}


/* ==================================================================
   FOOTER
================================================================== */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 5rem 1.5rem 2rem;
  overflow: hidden;
}
@media (min-width: 768px) { .site-footer { padding: 6rem 2rem 2rem; } }

.footer__top {
  max-width: 1760px;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-dark);
}
@media (min-width: 768px) { .footer__top { grid-template-columns: 1.3fr 2fr; } }

.footer__logo { font-size: 2rem; font-weight: 600; letter-spacing: -0.02em; }
.footer__tagline {
  font-size: .9rem;
  color: rgba(250,247,242,0.55);
  margin-top: 1rem;
  max-width: 320px;
  font-weight: 300;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__col { display: flex; flex-direction: column; gap: .75rem; }
.footer__label {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.4);
  margin-bottom: .5rem;
}
.footer__col a {
  font-size: .95rem;
  color: rgba(250,247,242,0.9);
  transition: color .2s, transform .3s;
  align-self: flex-start;
}
.footer__col a:hover { color: var(--orange); transform: translateX(4px); }

.footer__huge {
  font-size: clamp(5rem, 26vw, 30rem);
  font-weight: 600;
  line-height: .82;
  letter-spacing: -0.05em;
  margin: 3rem 0 2rem;
  text-align: center;
  opacity: 0.1;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}
.footer__huge .brand__mark { color: var(--orange); }

.footer__bottom {
  max-width: 1760px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: rgba(250,247,242,0.5);
  flex-wrap: wrap;
  gap: 1rem;
}


/* ==================================================================
   RESPONSIVE TUNING
================================================================== */
@media (max-width: 767px) {
  .section-header { padding: 5rem 1.5rem 2rem; }
  .svc__row { grid-template-columns: auto 1fr auto; gap: 1rem; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__row { gap: 1.5rem; }
  .stats__grid { gap: 1.5rem 1rem; }
  .stat { padding-left: 1rem; }
}
@media (max-width: 480px) {
  .footer__cols { grid-template-columns: 1fr; gap: 1.5rem; }
  .loader__count { font-size: 2rem; right: 1.5rem; bottom: 1.5rem; }
  .loader__caption { font-size: .68rem; gap: .5rem; margin-top: 1rem; }
  .cta__meta { margin-top: 3rem; }
  .mv { padding: 5rem 1.25rem; }
  .mv__text { font-size: 1.1rem; }
  .pillar { padding: 1.75rem 1.25rem 2rem; }
  .hero__method { font-size: 1rem; margin-top: 1rem; }
}

/* Keep pillar-head aligned with page padding */
@media (min-width: 768px) {
  .pillars-head { margin: 8rem auto 3rem; }
}
