/* ============================================================
   kigle.me — Design System v2
   Colors: #1A1A2E (dark) · #E8460A (flame) · #F2F0EC (light)
   Typography: Space Grotesk (headings) + Inter (body)
   Magazine-style. Minimal text. Visual first.
   ============================================================ */

/* --- FONTS loaded via <link> in HTML head --- */

/* --- TOKENS ------------------------------------------------- */
:root {
  --c-dark:       #1A1A2E;
  --c-flame:      #E8460A;
  --c-light:      #F2F0EC;
  --c-dark-90:    rgba(26,26,46,0.90);
  --c-dark-70:    rgba(26,26,46,0.70);
  --c-dark-50:    rgba(26,26,46,0.50);
  --c-light-80:   rgba(242,240,236,0.80);
  --c-light-50:   rgba(242,240,236,0.50);
  --c-light-20:   rgba(242,240,236,0.20);
  --c-light-08:   rgba(242,240,236,0.08);
  --c-light-04:   rgba(242,240,236,0.04);
  --c-flame-80:   rgba(232,70,10,0.80);
  --c-flame-20:   rgba(232,70,10,0.20);
  --c-flame-08:   rgba(232,70,10,0.08);

  --font-head: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --nav-h: 60px;
  --ease-out: cubic-bezier(0.16,1,0.3,1);
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);
}

/* --- RESET -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--c-dark);
  color: var(--c-light);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  background: transparent;
  transition: background 400ms var(--ease-out), border-color 400ms;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: var(--c-dark-90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--c-light-08);
}
.nav__logo {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-light-50);
  transition: color 200ms;
}
.nav__logo:hover { color: var(--c-light); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__links a {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--c-light-50);
  transition: color 200ms;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--c-flame);
  transition: width 300ms var(--ease-out);
}
.nav__links a:hover,
.nav__links a.active { color: var(--c-light); }
.nav__links a.active::after,
.nav__links a:hover::after { width: 100%; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  padding: 4px 0;
}
.nav__toggle span {
  display: block;
  height: 1px;
  background: var(--c-light);
  transition: transform 300ms var(--ease-out), opacity 200ms;
  transform-origin: center;
}
.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); }

@media (max-width: 639px) {
  .nav { padding: 0 1.25rem; }
  .nav__toggle { display: flex; }
  .nav__links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--c-dark);
    border-bottom: 1px solid var(--c-light-08);
    padding: 1.5rem 1.25rem 2rem;
  }
  .nav__links a {
    display: block;
    width: 100%;
    padding: 0.75rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--c-light-08);
  }
  .nav__links a:last-child { border-bottom: none; }
  .nav__links.is-open { display: flex; }
}

/* ============================================================
   FLAME CLICK EFFECT
   ============================================================ */
.flame-burst {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--c-flame);
  transform: translate(-50%,-50%);
  animation: flame-particle 650ms var(--ease-out) forwards;
}
@keyframes flame-particle {
  0%   { opacity: 1; transform: translate(-50%,-50%) scale(1); }
  100% { opacity: 0; transform: translate(calc(-50% + var(--tx,0px)), calc(-50% + var(--ty,0px))) scale(0.1); }
}
.flame-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  width: 0; height: 0;
  border-radius: 50%;
  border: 1.5px solid var(--c-flame);
  transform: translate(-50%,-50%);
  animation: flame-ring 550ms var(--ease-out) forwards;
}
@keyframes flame-ring {
  0%   { width: 0; height: 0; opacity: 0.8; }
  100% { width: 72px; height: 72px; opacity: 0; }
}

/* ============================================================
   IMAGE PLACEHOLDER
   ============================================================ */
.img-placeholder {
  position: relative;
  background: #0f0f1e;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,70,10,0.06) 0%, transparent 60%);
}
.img-placeholder__label {
  position: relative;
  z-index: 1;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--c-light-20);
}
.img-placeholder__initials {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--font-head);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgba(232,70,10,0.08);
  user-select: none;
  pointer-events: none;
  line-height: 1;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 200ms, color 200ms, transform 150ms, box-shadow 200ms;
}
.btn:active { transform: scale(0.97); }
.btn--primary {
  background: var(--c-flame);
  color: var(--c-light);
}
.btn--primary:hover {
  background: #ff5318;
  box-shadow: 0 0 28px rgba(232,70,10,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--c-light);
  border: 1px solid var(--c-light-20);
}
.btn--outline:hover {
  border-color: var(--c-flame);
  color: var(--c-flame);
}
.btn--ghost {
  background: transparent;
  color: var(--c-light-50);
  border: none;
  padding-left: 0;
}
.btn--ghost:hover { color: var(--c-light); }
.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ============================================================
   TAGS
   ============================================================ */
.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
}
.tag--flame {
  background: var(--c-flame-08);
  border: 1px solid var(--c-flame-20);
  color: var(--c-flame);
}
.tag--muted {
  background: var(--c-light-04);
  border: 1px solid var(--c-light-08);
  color: var(--c-light-50);
}
.tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--c-light-08);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 639px) { .footer { padding: 1.5rem 1.25rem; } }
.footer__name {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-light-50);
}
.footer__copy { font-size: 0.72rem; color: var(--c-light-20); margin-top: 0.2rem; }
.footer__links { display: flex; gap: 1.5rem; }
.footer__links a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--c-light-50);
  transition: color 200ms;
}
.footer__links a:hover { color: var(--c-flame); }

/* ============================================================
   DIVIDER LINE
   ============================================================ */
.line-h {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--c-flame);
  margin-bottom: 1.5rem;
}
.line-h--full {
  width: 100%;
  background: var(--c-light-08);
  margin: 0;
}

/* ============================================================
   ===  INDEX.HTML — CUBE SCROLL  ===
   ============================================================ */

/* The cube scene lives in a tall scroll container */
.cube-scene {
  height: 500vh;
  position: relative;
}
.cube-viewport {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SVG warp dot-grid sits behind the cube */
.warp-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.warp-layer svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.warp-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(242,240,236,0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  filter: url(#warp-filter);
}

/* Geometric accent lines */
.geo-line {
  position: absolute;
  background: var(--c-light-08);
  pointer-events: none;
}
.geo-line--v {
  width: 1px;
  height: 100%;
  top: 0;
}
.geo-line--h {
  height: 1px;
  width: 100%;
  left: 0;
}

/* 3-D Cube — full viewport */
.cube-wrapper {
  position: relative;
  z-index: 10;
  perspective: 1800px;
  width: 100vw;
  height: 100vh;
}
.cube {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(0deg);
  /* GSAP will animate rotateY via inline style */
}
.cube-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
/* Face positions on Y-axis rotation (horizontal scroll, full viewport faces) */
.cube-face--front { transform: rotateY(  0deg) translateZ(50vw); }
.cube-face--right { transform: rotateY( 90deg) translateZ(50vw); }
.cube-face--back  { transform: rotateY(180deg) translateZ(50vw); }
.cube-face--left  { transform: rotateY(-90deg) translateZ(50vw); }

/* Face image fill */
.cube-face__bg {
  position: absolute;
  inset: 0;
  background: var(--c-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cube-face__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
/* Gradient overlay on all faces */
.cube-face__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.95) 0%, rgba(26,26,46,0.3) 60%, transparent 100%);
}

/* Face placeholder initials */
.cube-face__initials {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--font-head);
  font-size: clamp(5rem,18vw,14rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: rgba(232,70,10,0.07);
  user-select: none;
  line-height: 1;
}

/* Face content overlay */
.cube-face__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2.5rem;
}
.cube-face__num {
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-flame);
  margin-bottom: 0.5rem;
}
.cube-face__title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--c-light);
  margin-bottom: 0.75rem;
}
.cube-face__sub {
  font-size: 0.9rem;
  color: var(--c-light-50);
  margin-bottom: 1.5rem;
  max-width: 320px;
  line-height: 1.5;
}
.cube-face__cta {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--c-light);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--c-flame);
  padding-bottom: 2px;
  transition: color 200ms, gap 200ms;
}
.cube-face__cta:hover { color: var(--c-flame); gap: 0.85rem; }

/* Hero face (front) specific */
.cube-face--hero .cube-face__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-bottom: 4rem;
}
.cube-face--hero .cube-face__bg::after {
  background: linear-gradient(to top, rgba(26,26,46,0.85) 0%, rgba(26,26,46,0.2) 100%);
}

/* Hero name & tagline */
.hero-name {
  font-family: var(--font-head);
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--c-light);
  margin-bottom: 1rem;
}
.hero-name span {
  display: block;
  color: var(--c-flame);
}
.hero-tagline {
  font-size: clamp(0.85rem, 2vw, 1rem);
  color: var(--c-light-50);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-head);
  font-weight: 500;
  margin-bottom: 2.5rem;
}
.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-light-20);
  animation: hint-fade 2.5s ease-in-out infinite;
}
.scroll-hint__line {
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--c-flame), transparent);
}
@keyframes hint-fade {
  0%,100% { opacity: 0.4; }
  50%      { opacity: 1; }
}

/* Cube edge glow */
.cube-glow {
  position: absolute;
  inset: -2px;
  border: 1px solid var(--c-flame-20);
  pointer-events: none;
  border-radius: 2px;
}

/* Face progress dots */
.face-dots {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.face-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-light-20);
  transition: background 300ms, transform 300ms;
  cursor: pointer;
}
.face-dot.active {
  background: var(--c-flame);
  transform: scale(1.4);
}
@media (max-width: 639px) { .face-dots { display: none; } }

/* ============================================================
   ===  SUBPAGE SHARED  ===
   ============================================================ */

/* Full-screen hero */
.subpage-hero {
  position: relative;
  height: 100vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.subpage-hero__bg {
  position: absolute;
  inset: 0;
  background: var(--c-dark);
}
.subpage-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.subpage-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.98) 0%, rgba(26,26,46,0.4) 60%, transparent 100%);
}
.subpage-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 3rem 4rem;
  max-width: 900px;
}
@media (max-width: 639px) {
  .subpage-hero__content { padding: 0 1.25rem 3rem; }
}
.subpage-hero__label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-flame);
  margin-bottom: 1rem;
}
.subpage-hero__title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: var(--c-light);
  margin-bottom: 1.5rem;
}
.subpage-hero__sub {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  color: var(--c-light-50);
  max-width: 500px;
  line-height: 1.65;
}

/* Placeholder for hero image */
.hero-img-placeholder {
  position: absolute;
  inset: 0;
  background: #0d0d1c;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-placeholder__initials {
  font-family: var(--font-head);
  font-size: clamp(8rem, 25vw, 22rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: rgba(232,70,10,0.06);
  user-select: none;
  line-height: 1;
}

/* Content sections */
.section {
  padding: 5rem 3rem;
}
.section--narrow {
  max-width: 760px;
  margin-inline: auto;
}
.section--wide {
  max-width: 1200px;
  margin-inline: auto;
}
@media (max-width: 639px) {
  .section { padding: 3.5rem 1.25rem; }
}
.section--alt { background: rgba(242,240,236,0.025); }

/* Section label + title */
.s-label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-flame);
  margin-bottom: 0.75rem;
}
.s-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--c-light);
  margin-bottom: 1.5rem;
}
.s-body {
  font-size: 1rem;
  color: var(--c-light-50);
  line-height: 1.75;
  max-width: 580px;
}

/* ============================================================
   ===  WHY.HTML  ===
   ============================================================ */

/* Radar / Spider Chart SVG */
.radar-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .radar-wrapper {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
  }
}
.radar-svg-container {
  flex-shrink: 0;
  width: min(100%, 420px);
}
.radar-svg-container svg { width: 100%; height: auto; }

.radar-legend {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1;
}
.radar-legend-item {}
.radar-legend-item__name {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-light);
  margin-bottom: 0.2rem;
}
.radar-legend-item__desc {
  font-size: 0.88rem;
  color: var(--c-light-50);
  line-height: 1.6;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--c-light-08);
}
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(5, 1fr); } }
.value-cell {
  background: var(--c-dark);
  padding: 2rem 1.5rem;
  transition: background 300ms;
}
.value-cell:hover { background: var(--c-flame-08); }
.value-cell__num {
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-flame);
  margin-bottom: 1rem;
}
.value-cell__name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-light);
  margin-bottom: 0.5rem;
}
.value-cell__desc {
  font-size: 0.82rem;
  color: var(--c-light-50);
  line-height: 1.6;
}

/* ============================================================
   ===  WORK.HTML  ===
   ============================================================ */

/* Big image reference cards */
.ref-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  background: var(--c-light-08);
}
@media (min-width: 768px) { .ref-cards { grid-template-columns: repeat(3, 1fr); } }

.ref-card-v2 {
  position: relative;
  background: var(--c-dark);
  aspect-ratio: 3/4;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  transition: filter 300ms;
}
.ref-card-v2:hover { filter: brightness(1.08); }

.ref-card-v2__bg {
  position: absolute;
  inset: 0;
  background: #0d0d1c;
}
.ref-card-v2__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.97) 0%, rgba(26,26,46,0.3) 70%, transparent 100%);
}
.ref-card-v2__initials {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(232,70,10,0.07);
  letter-spacing: -0.04em;
  line-height: 1;
  user-select: none;
}
.ref-card-v2__content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.75rem;
  width: 100%;
}
.ref-card-v2__brand {
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-flame);
  margin-bottom: 0.6rem;
}
.ref-card-v2__title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-light);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.ref-card-v2__list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.ref-card-v2__list li {
  font-size: 0.8rem;
  color: var(--c-light-50);
  padding-left: 0.85rem;
  position: relative;
  line-height: 1.5;
}
.ref-card-v2__list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--c-flame);
}

/* Competency row */
.competency-rows { display: flex; flex-direction: column; }
.competency-row {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--c-light-08);
}
.competency-row:first-child { border-top: 1px solid var(--c-light-08); }
.competency-row__num {
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-flame);
  flex-shrink: 0;
  width: 2rem;
}
.competency-row__title {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--c-light);
  flex-shrink: 0;
  min-width: 180px;
}
.competency-row__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-left: auto;
}
@media (max-width: 639px) {
  .competency-row { flex-wrap: wrap; gap: 0.75rem; }
  .competency-row__tags { margin-left: 0; }
}

/* Traits grid */
.traits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--c-light-08);
}
@media (min-width: 640px) { .traits-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .traits-grid { grid-template-columns: repeat(6, 1fr); } }
.trait-cell {
  background: var(--c-dark);
  padding: 1.75rem 1.25rem;
  transition: background 300ms;
}
.trait-cell:hover { background: var(--c-flame-08); }
.trait-cell__title {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-light);
  margin-bottom: 0.4rem;
}
.trait-cell__body {
  font-size: 0.78rem;
  color: var(--c-light-50);
  line-height: 1.6;
}

/* ============================================================
   ===  MAKE.HTML  ===
   ============================================================ */

/* Photo gallery grid */
.gallery-grid {
  display: grid;
  gap: 2px;
  background: var(--c-light-08);
}
.gallery-grid--3 { grid-template-columns: repeat(3, 1fr); }
.gallery-grid--2 { grid-template-columns: repeat(2, 1fr); }
.gallery-grid--featured {
  grid-template-columns: 2fr 1fr;
}
@media (max-width: 639px) {
  .gallery-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid--featured { grid-template-columns: 1fr; }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: #0d0d1c;
  display: flex;
  align-items: flex-end;
}
.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item__label {
  position: relative;
  z-index: 2;
  padding: 1rem 1.25rem;
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-light-20);
  background: linear-gradient(to top, rgba(26,26,46,0.8) 0%, transparent 100%);
  width: 100%;
}
.gallery-item--sqr { aspect-ratio: 1/1; }
.gallery-item--wide { aspect-ratio: 16/9; }
.gallery-item--tall { aspect-ratio: 3/4; }
.gallery-item--featured { aspect-ratio: 4/3; }
.gallery-item--sm { aspect-ratio: 4/5; }

.gallery-item__placeholder-label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-light-20);
  text-align: center;
  pointer-events: none;
}

/* Video placeholder */
.video-item {
  position: relative;
  background: #0a0a16;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}
.video-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.7) 0%, transparent 100%);
}
.video-item__play {
  position: relative;
  z-index: 2;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(232,70,10,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms, transform 200ms var(--ease-spring);
}
.video-item:hover .video-item__play {
  background: var(--c-flame);
  transform: scale(1.1);
}
.video-item__label {
  position: absolute;
  z-index: 2;
  bottom: 1rem; left: 1.25rem;
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-light-50);
}

/* Project title row */
.project-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--c-light-08);
  margin-bottom: 1.5rem;
}
.project-title-row__title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--c-light);
}
.project-title-row__meta {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-light-20);
}

/* ============================================================
   ===  MOVE.HTML  ===
   ============================================================ */

/* Split layout: image left, text right */
.split-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px) {
  .split-section { grid-template-columns: 1fr 1fr; }
  .split-section--reverse .split-img { order: 2; }
  .split-section--reverse .split-body { order: 1; }
}

.split-img {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: #0d0d1c;
}
.split-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.split-img__initials {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--font-head);
  font-size: 8rem;
  font-weight: 700;
  color: rgba(232,70,10,0.07);
  user-select: none;
  line-height: 1;
}

.split-body {
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .split-body { padding: 2.5rem 1.25rem; }
}
.split-body__label {
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-flame);
  margin-bottom: 0.75rem;
}
.split-body__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--c-light);
  margin-bottom: 1rem;
}
.split-body__text {
  font-size: 0.97rem;
  color: var(--c-light-50);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* Transfer skills — horizontal scroll strip */
.transfer-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--c-light-08);
}
@media (min-width: 640px) { .transfer-strip { grid-template-columns: repeat(4, 1fr); } }
.transfer-item {
  background: var(--c-dark);
  padding: 2.5rem 2rem;
  transition: background 300ms;
}
.transfer-item:hover { background: var(--c-flame-08); }
.transfer-item__num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--c-flame);
  margin-bottom: 0.4rem;
  line-height: 1;
}
.transfer-item__label {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-light);
  margin-bottom: 0.4rem;
}
.transfer-item__desc {
  font-size: 0.82rem;
  color: var(--c-light-50);
  line-height: 1.6;
}

/* Sport gallery strip */
.sport-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--c-light-08);
}
@media (max-width: 639px) { .sport-strip { grid-template-columns: repeat(2, 1fr); } }
.sport-strip-item {
  position: relative;
  aspect-ratio: 2/3;
  background: #0d0d1c;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.sport-strip-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.9) 0%, transparent 60%);
}
.sport-strip-item__label {
  position: relative;
  z-index: 2;
  padding: 1rem;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-light);
}
.sport-strip-item__placeholder {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(232,70,10,0.07);
  user-select: none;
}

/* ============================================================
   SHARED — CTA Section
   ============================================================ */
.cta-section {
  padding: 6rem 3rem;
  text-align: center;
  border-top: 1px solid var(--c-light-08);
}
@media (max-width: 639px) { .cta-section { padding: 4rem 1.25rem; } }
.cta-section__title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--c-light);
  margin-bottom: 1.25rem;
}
.cta-section__title span { color: var(--c-flame); }
.cta-section__sub {
  font-size: 1rem;
  color: var(--c-light-50);
  margin-bottom: 2rem;
  max-width: 420px;
  margin-inline: auto;
  margin-bottom: 2rem;
}
