/* ================================================================
   LVT Distribution — design system v2
   deep navy · off-white · LVT brand blue
   ================================================================ */

@font-face {
  font-family: 'Clash Display';
  src: url('../assets/fonts/ClashDisplay-500.woff2') format('woff2');
  font-weight: 500; font-display: swap;
}
@font-face {
  font-family: 'Clash Display';
  src: url('../assets/fonts/ClashDisplay-600.woff2') format('woff2');
  font-weight: 600; font-display: swap;
}
@font-face {
  font-family: 'Clash Display';
  src: url('../assets/fonts/ClashDisplay-700.woff2') format('woff2');
  font-weight: 700; font-display: swap;
}
@font-face {
  font-family: 'Switzer';
  src: url('../assets/fonts/Switzer-400.woff2') format('woff2');
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: 'Switzer';
  src: url('../assets/fonts/Switzer-500.woff2') format('woff2');
  font-weight: 500; font-display: swap;
}
@font-face {
  font-family: 'Switzer';
  src: url('../assets/fonts/Switzer-600.woff2') format('woff2');
  font-weight: 600; font-display: swap;
}

:root {
  --bg: #060b16;
  --bg-raise: #0b1424;
  --line: rgba(230, 238, 250, 0.12);
  --ink: #edf3fb;
  --ink-dim: #8b99af;
  --blue: #3f8fe0;
  --blue-bright: #62a9f0;
  --blue-deep: #1c4f8c;
  --display: 'Clash Display', 'Avenir Next', sans-serif;
  --body: 'Switzer', 'Helvetica Neue', sans-serif;
  --mono: 'SF Mono', 'Menlo', 'Cascadia Code', monospace;
  --pad: clamp(1.25rem, 5vw, 5rem);
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* while custom smooth scroll is active, the wrapper is transformed */
body.has-smooth #smooth { will-change: transform; }

#scene {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}
body.no-webgl #scene { display: none; }
body.no-webgl::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(60% 50% at 70% 40%, rgba(63, 143, 224, 0.14), transparent 70%),
    radial-gradient(40% 40% at 25% 70%, rgba(28, 79, 140, 0.12), transparent 70%);
}

#smooth { position: relative; z-index: 2; }

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

/* ================= preloader ================= */
body.is-loading { overflow: hidden; }
.loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
}
body:not(.is-loading) .loader { transform: translateY(-100%); }
.loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: opacity 0.3s;
}
body:not(.is-loading) .loader__inner,
body:not(.is-loading) .loader__pct { opacity: 0; }
.loader__icon {
  width: 4.4rem;
  filter: drop-shadow(0 0 18px rgba(63, 143, 224, 0.5));
  animation: loaderpulse 1.6s ease-in-out infinite;
}
@keyframes loaderpulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.loader__mark {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.3rem;
}
.loader__mark span { font-weight: 500; color: var(--blue-bright); }
.loader__bar {
  width: 13rem;
  height: 2px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.loader__bar span {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue-bright));
  transform: scaleX(0);
  transform-origin: left;
}
.loader__pct {
  position: absolute;
  right: var(--pad);
  bottom: 1.6rem;
  font-size: 1rem;
  transition: opacity 0.3s;
}
@media (prefers-reduced-motion: reduce) {
  .loader { display: none; }
  .loader__icon { animation: none; }
}

/* ================= custom cursor ================= */
body.has-cursor, body.has-cursor a, body.has-cursor button,
body.has-cursor [data-tilt], body.has-cursor label { cursor: none; }
body.has-cursor input, body.has-cursor textarea { cursor: text; }
.cur-dot, .cur-ring {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1500;
}
.cur-dot {
  width: 6px; height: 6px;
  margin: -3px 0 0 -3px;
  background: var(--blue-bright);
}
.cur-ring {
  width: 34px; height: 34px;
  margin: -17px 0 0 -17px;
  border: 1.5px solid rgba(98, 169, 240, 0.55);
  transition: width 0.3s, height 0.3s, margin 0.3s, background 0.3s, border-color 0.3s;
}
.cur-ring.is-hover {
  width: 52px; height: 52px;
  margin: -26px 0 0 -26px;
  background: rgba(63, 143, 224, 0.12);
  border-color: rgba(98, 169, 240, 0.9);
}

/* film grain */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 999;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 3%); }
}

/* cursor glow */
.cursor-glow {
  position: fixed;
  width: 34rem; height: 34rem;
  left: 0; top: 0;
  margin: -17rem 0 0 -17rem;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(63, 143, 224, 0.09) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.6s;
}
body.has-pointer .cursor-glow { opacity: 1; }

/* scroll progress */
.progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 200;
}
.progress span {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue-bright));
  transform: scaleX(0);
  transform-origin: left;
}

.micro {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* ================= nav ================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem var(--pad);
  transition: background 0.4s, border-color 0.4s, padding 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(6, 11, 22, 0.8);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}
.nav__mark {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}
.nav__mark img {
  width: 2.6rem;
  height: 2.6rem;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(63, 143, 224, 0.45));
}
.nav__mark span {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}
.nav__mark em {
  font-style: normal;
  font-weight: 500;
  color: var(--blue-bright);
}
.nav__links {
  display: flex;
  gap: clamp(1rem, 3vw, 2.2rem);
}
.nav__links a {
  color: var(--ink-dim);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.25s;
}
.nav__links a:hover { color: var(--ink); }
/* letter-roll hover (spans injected by JS) */
.nav__links a .roll {
  display: block;
  position: relative;
  overflow: hidden;
}
.nav__links a .roll span {
  display: block;
  transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1);
}
.nav__links a .roll span:last-child {
  position: absolute;
  top: 100%;
  left: 0;
  color: var(--blue-bright);
}
.nav__links a:hover .roll span { transform: translateY(-100%); }

/* ================= buttons ================= */
.btn {
  display: inline-block;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.92rem;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #2f6fc0);
  border: 1px solid rgba(98, 169, 240, 0.6);
  border-radius: 999px;
  padding: 0.85rem 1.9rem;
  text-decoration: none;
  transition: transform 0.45s cubic-bezier(0.22, 1.4, 0.36, 1),
              box-shadow 0.3s, color 0.25s, border-color 0.25s;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(63, 143, 224, 0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover {
  border-color: var(--blue);
  color: var(--blue-bright);
  box-shadow: none;
}
.btn--small { padding: 0.55rem 1.3rem; font-size: 0.82rem; }

/* ================= hero ================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__inner {
  position: relative;
  padding: 0 var(--pad);
  pointer-events: none;
}
.hero__inner a { pointer-events: auto; }
.hero__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(3.4rem, 12vw, 9.5rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 1.2rem 0 1.6rem;
}
.hero__line { display: block; }
.hero__line--outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--blue-bright);
}
.hero__lede {
  max-width: 34rem;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--ink-dim);
  margin-bottom: 2.2rem;
}
.hero__cta { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero__foot {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  justify-content: flex-end;
  padding: 1.4rem var(--pad);
}
.hero__scrollhint { animation: bob 2.4s ease-in-out infinite; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ================= sections ================= */
.section {
  position: relative;
  padding: clamp(5rem, 12vw, 9rem) var(--pad);
  border-top: 1px solid var(--line);
  max-width: 90rem;
  margin: 0 auto;
}
.section__watermark {
  position: absolute;
  top: 2rem;
  right: var(--pad);
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(7rem, 18vw, 16rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(98, 169, 240, 0.13);
  pointer-events: none;
  user-select: none;
}
.section__head {
  position: relative;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}
.section__head .micro { margin-bottom: 1.1rem; }
.section h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.1rem, 5.4vw, 4.2rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  max-width: 60rem;
}
.section h2 em {
  font-style: normal;
  color: var(--blue-bright);
}

/* split-text word masks */
.word-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}
.word {
  display: inline-block;
  transform: translateY(115%) rotate(2deg);
  transform-origin: left bottom;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.is-split-visible .word { transform: translateY(0) rotate(0); }

/* ================= cards (what we do) ================= */
.cards {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.4rem;
  position: relative;
}
.card {
  --mx: 50%;
  --my: 50%;
  grid-column: span 5;
  background:
    radial-gradient(120% 100% at 20% 0%, rgba(63, 143, 224, 0.09), transparent 55%),
    var(--bg-raise);
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  padding: 1.9rem 1.9rem 2.3rem;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  transition: border-color 0.35s, box-shadow 0.35s;
}
.card--wide { grid-column: span 7; }
.card:hover {
  border-color: rgba(98, 169, 240, 0.5);
  box-shadow: 0 20px 60px rgba(28, 79, 140, 0.25);
}
.card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(24rem circle at var(--mx) var(--my), rgba(63, 143, 224, 0.14), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
}
.card:hover::before { opacity: 1; }
.card > * { position: relative; }
.card__num {
  position: absolute;
  top: 1.5rem; right: 1.7rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--ink-dim);
}
.card__icon {
  display: grid;
  place-items: center;
  width: 3.1rem; height: 3.1rem;
  border-radius: 0.95rem;
  color: var(--blue-bright);
  background: rgba(63, 143, 224, 0.12);
  border: 1px solid rgba(98, 169, 240, 0.28);
  margin-bottom: 2.4rem;
  transition: background 0.35s, transform 0.35s;
}
.card__icon svg { width: 1.45rem; height: 1.45rem; }
.card:hover .card__icon {
  background: rgba(63, 143, 224, 0.22);
  transform: translateY(-2px);
}
.card h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 0.55rem;
}
.card p:not(.card__num) {
  font-size: 0.93rem;
  color: var(--ink-dim);
  max-width: 30rem;
}
.card__go {
  position: absolute;
  right: 1.7rem; bottom: 1.5rem;
  font-size: 1.25rem;
  color: var(--blue-bright);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.35s, transform 0.35s;
}
.card:hover .card__go { opacity: 1; transform: translateX(0); }

/* ================= stats ================= */
.stats {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: rgba(11, 20, 36, 0.55);
  overflow: hidden;
}
.stat {
  padding: 1.8rem 1rem;
  text-align: center;
}
.stat + .stat { border-left: 1px solid var(--line); }
.stat__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--blue-bright);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

/* ================= brands ================= */
.brands {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 1.4rem;
}
.brand {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  padding: clamp(1.8rem, 3.5vw, 2.8rem);
  background:
    radial-gradient(120% 100% at 80% 0%, rgba(63, 143, 224, 0.13), transparent 60%),
    var(--bg-raise);
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 3vw, 2.4rem);
  flex-wrap: wrap;
  transform-style: preserve-3d;
  will-change: transform;
  transition: border-color 0.35s, box-shadow 0.35s;
}
.brand:hover {
  border-color: rgba(98, 169, 240, 0.5);
  box-shadow: 0 20px 60px rgba(28, 79, 140, 0.25);
}
.brand__logo {
  flex: 0 0 auto;
  width: clamp(7.5rem, 12vw, 10rem);
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}
.brand__logo--light { background: #fff; }
.brand__logo--cream { background: #f6edd9; }
.brand__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.brand:hover .brand__logo img { transform: scale(1.07); }
.brand__text { flex: 1 1 14rem; }
.brand h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.05;
  margin: 0.3rem 0 0.5rem;
}
.brand h3 span {
  color: var(--blue-bright);
  font-weight: 500;
  font-style: italic;
}
.brand__text p:not(.micro) { color: var(--ink-dim); max-width: 26rem; }

/* ================= partner ================= */
.section--partner .partner__body { max-width: 62rem; }
.partner__lede {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  max-width: 46rem;
  margin-bottom: 2.4rem;
}
.partner__label { margin-bottom: 0.6rem; }
.ticks {
  list-style: none;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(1.5rem, 4vw, 4rem);
  border-top: 1px solid var(--line);
}
.ticks li {
  position: relative;
  padding: 1rem 0 1rem 2.1rem;
  color: var(--ink-dim);
  border-bottom: 1px solid var(--line);
  font-size: 0.97rem;
}
.ticks li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--blue-bright);
}
.ticks strong { color: var(--ink); font-weight: 600; }
.partner__allin {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  margin-bottom: 2rem;
}
.partner__allin em {
  font-style: normal;
  color: var(--blue-bright);
}
@media (max-width: 700px) {
  .ticks { grid-template-columns: 1fr; }
}

/* ================= team ================= */
.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.4rem;
}
.person {
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  padding: 1.2rem 1.2rem 1.8rem;
  background: var(--bg-raise);
  transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
}
.person:hover {
  border-color: rgba(98, 169, 240, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(28, 79, 140, 0.3);
}
.person__photo {
  border-radius: 0.8rem;
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
  margin-bottom: 1.3rem;
  background: var(--bg);
}
.person__photo img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  filter: saturate(0.75);
  transition: filter 0.5s;
  will-change: transform;
}
.person:hover .person__photo img { filter: saturate(1.05); }
.person h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.3rem;
  padding: 0 0.5rem;
}
.person__role {
  color: var(--ink-dim);
  font-size: 0.88rem;
  margin: 0.15rem 0 0.9rem;
  padding: 0 0.5rem;
}
.person a {
  color: var(--blue-bright);
  text-decoration: none;
  font-size: 0.88rem;
  margin: 0 0.5rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s;
  overflow-wrap: anywhere;
}
.person a:hover { border-bottom-color: var(--blue-bright); }
.person__note {
  font-size: 0.78rem;
  color: var(--ink-dim);
  margin-top: 0.3rem;
  font-style: italic;
  padding: 0 0.5rem;
}

/* ================= contact ================= */
.section--contact h2 {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

/* --- form --- */
.cform {
  background: rgba(11, 20, 36, 0.55);
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.cform__intro { margin-bottom: 1.6rem; }
.cform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.cform__field { margin-bottom: 1.1rem; min-width: 0; }
.cform__field label {
  display: block;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 0.45rem;
}
.cform__field input,
.cform__field textarea {
  width: 100%;
  background: rgba(6, 11, 22, 0.7);
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  padding: 0.85rem 1rem;
  color: var(--ink);
  font-family: var(--body);
  font-size: 0.95rem;
  transition: border-color 0.25s, box-shadow 0.25s;
  resize: vertical;
}
.cform__field input:focus,
.cform__field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(63, 143, 224, 0.18);
}
.cform__hp {
  position: absolute;
  left: -5000px;
  opacity: 0;
  pointer-events: none;
}
.cform__submit {
  width: 100%;
  border: 0;
  cursor: pointer;
  font-size: 0.95rem;
  margin-top: 0.3rem;
}
.cform__submit[disabled] { opacity: 0.55; cursor: wait; transform: none; }
.cform__status {
  margin-top: 0.9rem;
  font-size: 0.88rem;
  color: var(--ink-dim);
  min-height: 1.3em;
}
.cform__status.is-ok { color: #7fd8a2; }
.cform__status.is-err { color: #e8927c; }

/* --- direct contact column --- */
.contact-side { display: flex; flex-direction: column; }
.contact__row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition: padding-left 0.3s;
}
.contact__row:first-child { border-top: 1px solid var(--line); }
.contact__row:hover { padding-left: 0.6rem; }
.contact__row .micro { grid-column: 1 / -1; margin-bottom: 0.3rem; }
.contact__big {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  letter-spacing: -0.01em;
  overflow-wrap: anywhere;
}
.contact__row:hover .contact__big { color: var(--blue-bright); }
.contact__arrow {
  font-size: 1.25rem;
  color: var(--blue-bright);
  transition: transform 0.3s;
}
.contact__row:hover .contact__arrow { transform: translateX(6px); }
.addresses {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 3rem;
  padding-top: 1.6rem;
}
.addresses p {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.92rem;
  color: var(--ink-dim);
}

/* ================= footer ================= */
.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  border-top: 1px solid var(--line);
  padding: 1.6rem var(--pad);
  font-size: 0.85rem;
  color: var(--ink-dim);
}

/* ================= reveal animation ================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.19, 1, 0.22, 1),
              transform 0.9s cubic-bezier(0.22, 1.18, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) rotate(0) scale(1);
}
/* entrance variants — cards tilt in, brands slide from the sides */
.cards .card.reveal { transform: translateY(46px) scale(0.965) rotate(-1.1deg); }
.cards .card.reveal:nth-child(even) { transform: translateY(46px) scale(0.965) rotate(1.1deg); }
.brands .brand.reveal:nth-child(odd) { transform: translateX(-52px); }
.brands .brand.reveal:nth-child(even) { transform: translateX(52px); }
.cards .card.reveal.is-visible,
.brands .brand.reveal.is-visible { transform: none; }

/* team photo curtain wipe */
.person__photo { position: relative; }
.person__photo::after {
  content: '';
  position: absolute;
  inset: -1px;
  background: var(--bg-raise);
  transform: scaleY(1);
  transform-origin: top;
  transition: transform 1.1s cubic-bezier(0.76, 0, 0.24, 1) 0.15s;
}
.person.is-visible .person__photo::after { transform: scaleY(0); }

/* contact row hover sweep */
.contact__row { position: relative; overflow: hidden; }
.contact__row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(63, 143, 224, 0.1), transparent 65%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
}
.contact__row:hover::before { transform: scaleX(1); }

/* ================= reduced motion ================= */
@media (prefers-reduced-motion: reduce) {
  .grain, .hero__scrollhint { animation: none; }
  .reveal { opacity: 1; transform: none !important; transition: none; }
  .word { transform: none; transition: none; }
  .card, .brand { transform: none !important; }
  .cursor-glow, .cur-dot, .cur-ring { display: none; }
  .person__photo::after { display: none; }
  body.is-loading { overflow: auto; }
}

/* ================= responsive ================= */
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .card, .card--wide { grid-column: span 12; }
  .stat + .stat { border-left: 0; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(even) { border-left: 1px solid var(--line); }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
}
@media (max-width: 480px) {
  .cform__row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__mark span { display: none; }
  .hero__title { font-size: clamp(2.1rem, 10.5vw, 3.4rem); }
  .section__watermark { font-size: 6rem; top: 1rem; }
}
