/* =========================================================
   #decoded — one-page site
   Palette: #0B1F4A (deep blue) · #F0A500 (gold) · #FFFFFF
   ========================================================= */

:root {
  --blue: #0B1F4A;
  --blue-800: #0e2758;
  --blue-700: #14306c;
  --blue-50: #f4f6fb;
  --gold: #F0A500;
  --gold-soft: #ffce66;
  --white: #FFFFFF;
  --ink: #0B1F4A;
  --ink-60: rgba(11, 31, 74, 0.62);
  --ink-40: rgba(11, 31, 74, 0.38);
  --ink-10: rgba(11, 31, 74, 0.10);
  --ink-06: rgba(11, 31, 74, 0.06);

  --radius: 14px;
  --radius-lg: 22px;

  --max: 1180px;
  --pad-x: clamp(20px, 5vw, 48px);

  --ease: cubic-bezier(.22, 1, .36, 1);

  --font-sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
}

/* ------ Reset ------ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; }
a { color: inherit; text-decoration: none; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ------ Layout helpers ------ */
.section__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 12vw, 140px) var(--pad-x);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 24px;
  font-weight: 600;
}
.eyebrow--light { color: rgba(255,255,255,0.7); }

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 5.4vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
  color: var(--ink);
  max-width: 900px;
}
.section__title .accent { color: var(--gold); }

.section__lede {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.65;
  color: var(--ink-60);
  max-width: 680px;
  margin: 0 0 64px;
}
.section__lede strong { color: var(--blue); }

/* ========================================================
   MEDIA SYSTEM — placeholder that works with or without img
   ======================================================== */
.media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #1a2b5a;
  isolation: isolate;
}
.media img,
.media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 2;
  transition: transform 1.2s var(--ease);
}
.media:hover img,
.media:hover video { transform: scale(1.04); }

/* Caption — only shown when real media is loaded (default hidden) */
.media__caption {
  position: absolute;
  left: 16px; bottom: 16px;
  z-index: 3;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(11,31,74,0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  pointer-events: none;
}
.media:not(.media--placeholder):hover .media__caption {
  opacity: 1;
  transform: translateY(0);
}

/* Placeholder appearance — animated gradient + label */
.media--placeholder {
  background:
    linear-gradient(135deg, var(--blue) 0%, #17306e 50%, var(--blue) 100%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0) 0 24px, rgba(255,255,255,0.025) 24px 48px);
  background-blend-mode: overlay;
  border: 1px dashed rgba(240, 165, 0, 0.35);
}
.media--placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(240,165,0,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(240,165,0,0.12) 0%, transparent 60%);
  animation: mediaGlow 8s ease-in-out infinite alternate;
}
@keyframes mediaGlow {
  0%   { transform: translate(0, 0); opacity: 0.85; }
  100% { transform: translate(2%, -1%); opacity: 1; }
}
.media--placeholder::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 28px;
  text-align: center;
  color: rgba(255,255,255,0.78);
  font-family: var(--font-display);
  font-size: clamp(11px, 1.1vw, 13px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.6;
}

/* ========================================================
   NAV
   ======================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad-x);
  background: rgba(255,255,255,0.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav.is-scrolled {
  background: rgba(255,255,255,0.92);
  border-bottom-color: var(--ink-10);
}

.nav__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--blue);
}
.nav__hash { color: var(--gold); }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 32px);
  font-size: 14px;
  font-weight: 500;
}
.nav__links a {
  color: var(--ink-60);
  transition: color .2s var(--ease);
}
.nav__links a:hover { color: var(--blue); }

.nav__cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: 10px 18px;
  border-radius: 999px;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.nav__cta:hover {
  background: var(--gold);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .nav__links a:not(.nav__cta) { display: none; }
}

/* ========================================================
   HERO
   ======================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
  padding-top: 90px;
}

.hero__bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--ink-06) 1px, transparent 1px),
    linear-gradient(90deg, var(--ink-06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 70% 30%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 30%, black 0%, transparent 70%);
}
.hero__glow {
  position: absolute;
  top: -20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(240,165,0,0.18) 0%, rgba(240,165,0,0) 60%);
  filter: blur(20px);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 40px var(--pad-x) 80px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-rows: auto auto auto;
  column-gap: clamp(32px, 5vw, 72px);
  row-gap: clamp(28px, 4vw, 48px);
  align-items: start;
}
.hero__header  { grid-column: 1 / -1; grid-row: 1; }
.hero__content { grid-column: 1; grid-row: 2; align-self: center; }
.hero__visual  { grid-column: 2; grid-row: 2; }

@media (max-width: 880px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__inner > .hero__header,
  .hero__inner > .hero__content,
  .hero__inner > .hero__visual,
  .hero__inner > .hero__meta { grid-column: 1; }
  .hero__inner > .hero__header  { grid-row: 1; }
  .hero__inner > .hero__content { grid-row: 2; }
  .hero__inner > .hero__visual  { grid-row: 3; }
  .hero__inner > .hero__meta    { grid-row: 4; }
}
@media (max-width: 520px) {
  .hero__inner > .hero__meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
  }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--ink-10);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-60);
  background: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(240,165,0,0.15);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(52px, 16vw, 220px);
  line-height: 0.88;
  letter-spacing: -0.055em;
  margin: 0;
  color: var(--blue);
  display: flex;
  align-items: baseline;
  white-space: nowrap;
  max-width: 100%;
}
.hero__title .hash {
  color: var(--gold);
  font-size: 0.78em;
  line-height: 1;
  transform: translateY(-0.06em);
  margin-right: -0.04em;
}
.hero__title .word {
  color: var(--blue);
}

.hero__tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--blue);
  margin: 0 0 24px;
  max-width: 760px;
}

.hero__lede {
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--ink-60);
  max-width: 620px;
  margin: 0 0 40px;
}
.hero__lede em {
  font-style: normal;
  color: var(--blue);
  font-weight: 600;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  cursor: pointer;
  border: 0;
}
.btn--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 6px 20px -8px rgba(11,31,74,0.5);
}
.btn--primary:hover {
  background: var(--gold);
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -10px rgba(240,165,0,0.6);
}
.btn--ghost {
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--ink-10);
}
.btn--ghost:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* Hero visual column */
.hero__visual {
  position: relative;
  height: clamp(380px, 50vw, 560px);
  width: 100%;
}
.hero__media {
  position: absolute;
  box-shadow: 0 30px 80px -30px rgba(11,31,74,0.35);
  animation: floatY 7s ease-in-out infinite alternate;
}
.hero__media--primary {
  top: 0; right: 0;
  width: 82%;
  height: 75%;
  border-radius: 24px;
  z-index: 2;
}
.hero__media--secondary {
  bottom: 0; left: 0;
  width: 52%;
  height: 45%;
  border-radius: 20px;
  z-index: 3;
  animation-delay: -2s;
  animation-duration: 8s;
}

@keyframes floatY {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

.hero__sticker {
  position: absolute;
  right: -10px;
  top: -18px;
  z-index: 4;
  background: var(--gold);
  color: var(--blue);
  padding: 10px 16px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px -10px rgba(240,165,0,0.6);
  transform: rotate(4deg);
  animation: wiggle 5s ease-in-out infinite;
}
@keyframes wiggle {
  0%, 100% { transform: rotate(4deg); }
  50%      { transform: rotate(-3deg); }
}

@media (max-width: 880px) {
  .hero__visual { height: clamp(320px, 80vw, 420px); }
  .hero__media--primary   { width: 78%; height: 72%; }
  .hero__media--secondary { width: 48%; height: 42%; }
}

.hero__meta {
  grid-column: 1 / -1;
  grid-row: 3;
  display: flex;
  gap: clamp(28px, 5vw, 60px);
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid var(--ink-10);
}
.hero__meta > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__meta strong {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--blue);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.hero__meta span {
  font-size: 13px;
  color: var(--ink-60);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ========================================================
   PROBLEM
   ======================================================== */
.section--problem { background: var(--white); }

.problem__layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.problem__intro { position: sticky; top: 110px; }

.problem__intro .section__title {
  margin-bottom: 24px;
}

.problem__lede {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.45;
  color: var(--ink);
  margin: 0;
  max-width: 440px;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}
.problem__lede strong { color: var(--blue); font-weight: 700; }

.problem__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.problem__item {
  position: relative;
  padding: 36px 0 36px 0;
  border-top: 1px solid var(--ink-10);
  display: grid;
  gap: 12px;
  transition: padding-left .4s var(--ease);
}
.problem__item:last-child {
  border-bottom: 1px solid var(--ink-10);
}
.problem__item::before {
  content: "";
  position: absolute;
  left: 0; top: -1px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .6s var(--ease);
}
.problem__item.is-in::before { width: 56px; }
.problem__item:hover { padding-left: 16px; }

.problem__label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.problem__head {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--blue);
  margin: 0;
  line-height: 1.15;
}

.problem__body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-60);
  margin: 0;
  max-width: 540px;
}

@media (max-width: 860px) {
  .problem__layout { grid-template-columns: 1fr; gap: 48px; }
  .problem__intro { position: static; }
}

/* ========================================================
   PROGRAM (4 lijnen)
   ======================================================== */
.section--program {
  background: linear-gradient(180deg, #ffffff 0%, #f4f6fb 100%);
}

.program__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.pcard {
  position: relative;
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--ink-10);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.pcard::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.pcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px -20px rgba(11,31,74,0.2);
  border-color: transparent;
}
.pcard:hover::before { transform: scaleX(1); }

.pcard__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.pcard__icon {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--blue);
  color: var(--gold);
  transition: transform .4s var(--ease), background .4s var(--ease);
}
.pcard__icon svg { width: 26px; height: 26px; }
.pcard:hover .pcard__icon {
  transform: rotate(-6deg) scale(1.06);
  background: var(--gold);
  color: var(--blue);
}
.pcard__tag {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-40);
}
.pcard h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--blue);
  margin: 0 0 12px;
  line-height: 1.2;
}
.pcard p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-60);
  margin: 0 0 20px;
}
.pcard__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.pcard__list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.pcard__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 12px; height: 2px;
  background: var(--gold);
  transform: translateY(-50%);
}

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

/* ========================================================
   SKILLS (wat jongeren leren)
   ======================================================== */
.section--skills { background: var(--white); }

.skills__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink-10);
  border-left: 1px solid var(--ink-10);
}
.skill {
  padding: 40px 28px;
  border-right: 1px solid var(--ink-10);
  border-bottom: 1px solid var(--ink-10);
  transition: background .3s var(--ease);
}
.skill:hover { background: var(--blue-50); }
.skill__num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 18px;
}
.skill h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--blue);
  margin: 0 0 10px;
  line-height: 1.2;
}
.skill p {
  font-size: 14px;
  color: var(--ink-60);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 960px) { .skills__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .skills__grid { grid-template-columns: 1fr; } }

/* ========================================================
   PORTFOLIO — eerder werk van Amalia
   ======================================================== */
.section--portfolio {
  background: linear-gradient(180deg, #f4f6fb 0%, #ffffff 100%);
}

/* -------- Activiteiten bento (videos) -------- */
.activities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: clamp(170px, 22vw, 240px);
  gap: 16px;
}

.activity {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: default;
  background: #1a2b5a;
  isolation: isolate;
}
.activity video,
.activity img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform .8s var(--ease);
}
.activity:hover video,
.activity:hover img { transform: scale(1.05); }

.activity::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(11,31,74,0) 40%, rgba(11,31,74,0.88) 100%);
  pointer-events: none;
}

.activity--feature { grid-column: span 2; grid-row: span 2; }
.activity--wide    { grid-column: span 2; }

.activity__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  padding: 22px 24px 20px;
  color: var(--white);
  transform: translateY(calc(100% - 82px));
  transition: transform .5s var(--ease);
}
.activity:hover .activity__caption { transform: translateY(0); }

.activity__meta {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 6px;
}

.activity__title {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--white);
  margin: 0 0 8px;
  line-height: 1.2;
}

.activity__desc {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  margin: 0;
  max-width: 520px;
}

.activity--feature .activity__caption {
  padding: 32px 36px 28px;
  transform: translateY(calc(100% - 82px));
}
.activity--feature .activity__title {
  font-size: clamp(22px, 2.4vw, 30px);
}

.portfolio__note {
  margin-top: 48px;
  padding: 20px 24px;
  border-radius: var(--radius);
  background: rgba(240,165,0,0.08);
  border: 1px solid rgba(240,165,0,0.25);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
  max-width: 760px;
}
.portfolio__note strong { color: var(--blue); }

@media (max-width: 820px) {
  .activities {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: clamp(180px, 40vw, 260px);
  }
  .activity--feature { grid-column: span 2; grid-row: span 2; }
  .activity--wide    { grid-column: span 2; }
}
@media (max-width: 520px) {
  .activities { grid-template-columns: 1fr; }
  .activity--feature,
  .activity--wide { grid-column: span 1; }
  .activity--feature { grid-row: span 2; }
  .activity__caption { transform: translateY(calc(100% - 56px)); }
  .activity__desc { font-size: 12px; }
}

/* ========================================================
   ABOUT / PROFIELEN (Amalia + Otwien)
   ======================================================== */
.section--about {
  background: linear-gradient(180deg, #f4f6fb 0%, #ffffff 100%);
}

.profiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 4vw, 40px);
  margin-bottom: 56px;
}

.profile {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: var(--radius-lg);
  padding: 32px 32px 36px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.profile:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px -20px rgba(11,31,74,0.25);
  border-color: transparent;
}

.profile__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 22px;
  border: 3px solid var(--gold);
  box-shadow: 0 8px 24px -10px rgba(11,31,74,0.3);
  flex-shrink: 0;
  overflow: hidden;
}
.profile__photo::before { display: none !important; }
.profile__photo::after { display: none !important; }
.profile__photo img {
  border-radius: 50%;
  object-position: center top;
}

.profile__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.profile__role {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.profile__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 30px);
  letter-spacing: -0.02em;
  color: var(--blue);
  margin: 0;
  line-height: 1.1;
}

.profile__bio {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-60);
  margin: 0;
}

.profile__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.profile__tags span {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--blue-50);
  color: var(--blue);
  border: 1px solid var(--ink-10);
}

.profile__link {
  align-self: flex-start;
  margin-top: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--blue);
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--ink-10);
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
}
.profile__link:hover {
  background: var(--gold);
  color: var(--blue);
  border-color: var(--gold);
  transform: translateX(3px);
}

.profile--alt .profile__role { color: var(--blue); }
.profile--alt .profile__link:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.about__facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px 20px;
  padding: 28px clamp(20px, 3vw, 36px);
  border-radius: var(--radius-lg);
  background: var(--blue-50);
  border: 1px solid var(--ink-10);
}
.about__facts > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about__facts span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-40);
  font-weight: 500;
}
.about__facts strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--blue);
  letter-spacing: -0.005em;
}

@media (max-width: 820px) {
  .profiles { grid-template-columns: 1fr; }
  .about__facts { grid-template-columns: repeat(2, 1fr); }
}

/* ========================================================
   CONTACT
   ======================================================== */
.section--contact {
  background: var(--blue);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section--contact::before {
  content: "";
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 1000px; height: 1000px;
  background: radial-gradient(circle, rgba(240,165,0,0.12) 0%, rgba(240,165,0,0) 60%);
  pointer-events: none;
}
.contact__inner { position: relative; z-index: 1; }

.contact__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
  color: var(--white);
}

.contact__lede {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  max-width: 620px;
  margin: 0 0 56px;
}

.contact__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ccard {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 28px 28px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
  position: relative;
}
.ccard:hover:not(.ccard--static) {
  background: rgba(240,165,0,0.1);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.ccard__label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.ccard__value {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-top: 4px;
}
.ccard__arrow {
  position: absolute;
  top: 26px; right: 26px;
  color: var(--gold);
  font-size: 18px;
  transition: transform .3s var(--ease);
}
.ccard:hover:not(.ccard--static) .ccard__arrow { transform: translate(4px, -4px); }

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

/* ========================================================
   FOOTER
   ======================================================== */
.footer {
  background: var(--blue);
  color: rgba(255,255,255,0.6);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__brand {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}
.footer__meta {
  display: flex;
  gap: 10px;
  font-size: 14px;
}

/* ========================================================
   REVEAL / ANIMATIONS
   ======================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition: none !important; }
}

/* ========================================================
   SELECTION
   ======================================================== */
::selection {
  background: var(--gold);
  color: var(--blue);
}
