:root {
  --bg: #faf7ee;
  --text: #000000;
  --muted: #6d6475;
  --soft: #f1f1f1;
  --white: #ffffff;
  --accent: #fdbd12;
  --accent-green: #1abc9c;
  --shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  --radius: 12px;
  --container: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Inter", serif, sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(253, 189, 18, 0.13), transparent 26%),
    radial-gradient(circle at bottom right, rgba(26, 188, 156, 0.08), transparent 22%),
    var(--bg);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
p,
ul {
  margin: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.big-title {
  font-size: 60px;
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 700;
}

h2 {
  font-size: 46px;
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 600;
}

h3 {
  font-size: 30px;
  line-height: 32px;
  font-weight: 600;
}

h5 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}

.large-paragraph {
  font-size: 21px;
  line-height: 35px;
}

.home-header {
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  padding: 16px 0 0;
  pointer-events: none;
}

.home-header .container {
  pointer-events: auto;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.18));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-weight: 800;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text span:last-child {
  color: var(--muted);
}

.header-actions {
  display: flex;
  gap: 48px;
}

.header-link {
  display: inline-flex;
  align-items: center;
  color: rgba(0, 0, 0, 0.76);
}

.header-link:hover {
  color: #000;
}

.hero {
  position: relative;
  min-height: 80vh;
  padding: 128px 0 72px;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background-image: linear-gradient(to bottom, rgba(250, 247, 238, 0), rgb(250, 247, 238));
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  gap: 64px;
  align-items: center;
  width: 100%;
}

.hero-copy {
  width: 100%;
  max-width: none;
  padding-top: 12px;
}

.pre-heading {
  margin-bottom: 12px;
  max-width: 24ch;
  color: #6b6272;
}

.big-title span {
  color: #f7a600;
}

.hero .intro {
  margin-top: 36px;
  max-width: 760px;
  color: #2e2734;
  font-size: 18px;
  line-height: 1.72;
}

.hero-support {
  max-width: 720px;
  margin-top: 18px;
  color: #5f5667;
  font-size: 17px;
  line-height: 1.7;
}

.hero-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: #121016;
  color: #fff;
  box-shadow: 0 16px 30px rgba(18, 16, 22, 0.18);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.82);
  color: #181218;
  border: 1px solid rgba(19, 16, 23, 0.08);
  box-shadow: 0 14px 28px rgba(18, 16, 22, 0.08);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px 10px 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.hero-badge img {
  width: 56px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
}

.hero-badge span {
  font-weight: 600;
}

.hero-image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  height: min(66vh, 680px);
  min-height: 500px;
  pointer-events: none;
  align-self: end;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 10% 10% 10% 10%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(253, 189, 18, 0.22), rgba(253, 189, 18, 0) 56%),
    radial-gradient(circle at 72% 48%, rgba(26, 188, 156, 0.14), rgba(26, 188, 156, 0) 48%),
    rgba(255, 255, 255, 0.42);
  box-shadow: 0 30px 80px rgba(89, 72, 36, 0.1);
  filter: blur(12px);
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 12% 6% 12% 6%;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.16) 68%, transparent 78%);
  filter: blur(2px);
}

.hero-image img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  filter: saturate(0.98) contrast(1.03) drop-shadow(0 28px 36px rgba(29, 22, 12, 0.18));
}

.about-section,
.logo-strip,
.cv-section,
.expertise-section,
.footer-contact,
.focus-section,
.featured-section,
.closing-section {
  position: relative;
  padding: 76px 0;
}

.proof-section,
.results-section,
.trajectory-section {
  position: relative;
  padding: 32px 0 76px;
}

.section-intro {
  max-width: 820px;
}

.section-intro .large-paragraph {
  margin-top: 24px;
}

.pill-title {
  display: inline-block;
  padding: 4px 8px;
  margin-bottom: 12px;
  border-radius: 40px;
  background: var(--accent-green);
  color: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.proof-grid,
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.proof-card,
.result-card,
.trajectory-card {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 24px 56px rgba(30, 23, 16, 0.08);
}

.proof-card,
.result-card {
  min-height: 220px;
  padding: 28px;
}

.proof-kicker,
.result-kicker,
.trajectory-kicker {
  margin-bottom: 10px;
  color: #d29100;
  font-size: 12px;
  line-height: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-card h3,
.result-card h3 {
  margin-bottom: 14px;
  font-size: 30px;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.proof-card p:last-child,
.result-card p:last-child,
.trajectory-copy p {
  color: #4d4556;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
}

.focus-card {
  min-height: 240px;
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(247, 242, 234, 0.88));
  box-shadow: 0 24px 56px rgba(30, 23, 16, 0.08);
}

.focus-label,
.featured-kicker,
.closing-kicker,
.deep-dive-kicker {
  margin-bottom: 10px;
  color: #d29100;
  font-size: 12px;
  line-height: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.focus-card h3 {
  margin-bottom: 14px;
  font-size: 30px;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.focus-card p:last-child {
  color: #4d4556;
}

.about-card {
  position: relative;
  min-height: 250px;
  padding: 32px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 50px rgba(28, 22, 17, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(28, 22, 17, 0.1);
}

.about-art {
  width: 100%;
  margin-bottom: 22px;
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.card-title {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}

.logo-strip-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 20px 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.logo-strip-inner > p {
  min-width: 280px;
}

.logo-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.logo-list img {
  height: 44px;
  width: auto;
  border-radius: 14px;
  filter: grayscale(1) contrast(1.05);
  opacity: 0.82;
}

.trajectory-card {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  padding: 34px;
}

.trajectory-copy {
  max-width: 760px;
}

.trajectory-copy h2 {
  margin-bottom: 14px;
  font-size: 40px;
}

.trajectory-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 230px;
}

.featured-grid {
  display: grid;
  gap: 24px;
  margin-top: 42px;
}

.featured-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 248, 223, 0.92), rgba(245, 239, 227, 0.92));
  box-shadow: 0 24px 60px rgba(28, 22, 17, 0.08);
}

.featured-card-alt {
  background: linear-gradient(180deg, rgba(236, 243, 239, 0.92), rgba(227, 235, 229, 0.92));
}

.featured-copy h3 {
  margin-bottom: 14px;
  font-size: 38px;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.featured-copy p:nth-of-type(2) {
  color: #4d4556;
}

.featured-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 20px 48px rgba(30, 23, 16, 0.08);
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.loopbaan-hero {
  padding-bottom: 12px;
}

.story-timeline-page {
  margin-top: 0;
}

.cv-content {
  margin-top: 76px;
}

.story-timeline {
  display: grid;
  grid-template-columns: minmax(300px, 0.34fr) minmax(0, 0.66fr);
  gap: 40px;
  margin-top: 76px;
}

.story-intro {
  position: sticky;
  top: 110px;
  align-self: start;
  padding: 32px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.54));
  box-shadow: 0 26px 60px rgba(28, 22, 17, 0.08);
}

.story-intro h3 {
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.story-intro-label {
  margin-bottom: 10px;
  color: #8d819d;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.story-intro h3 {
  margin-bottom: 14px;
}

.story-intro p:last-child {
  color: #5f5667;
}

.story-rail {
  position: relative;
  display: grid;
  gap: 34px;
  padding-left: 42px;
}

.story-rail::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 10px;
  width: 2px;
  background: linear-gradient(180deg, #fdbd12 0%, rgba(253, 189, 18, 0.12) 100%);
}

.story-item {
  position: relative;
  display: block;
}

.story-item::before {
  content: "";
  position: absolute;
  left: -42px;
  top: 18px;
  width: 20px;
  height: 20px;
  border: 4px solid #fdbd12;
  border-radius: 50%;
  background: var(--bg);
}

.story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  margin: 0 0 14px;
  padding-top: 0;
  padding-right: 0;
}

.story-period {
  font-weight: 700;
  line-height: 1.3;
  font-size: 15px;
}

.story-place {
  color: #8d819d;
  line-height: 1.4;
  font-size: 15px;
}

.story-card {
  position: relative;
  padding: 32px 34px 54px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(245, 241, 233, 0.88));
  box-shadow: 0 24px 60px rgba(41, 31, 18, 0.08);
  overflow: visible;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.story-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 70px rgba(41, 31, 18, 0.12);
}

.story-toggle {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.story-toggle-copy {
  display: block;
  padding-right: 0;
}

.story-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: #8d819d;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-snippet {
  display: block;
  max-width: 60ch;
  color: #5f5667;
  font-size: 16px;
  line-height: 1.6;
}

.story-toggle-icon {
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  transform: translateX(-50%);
}

.story-toggle-icon::before,
.story-toggle-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  background: #181218;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.story-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.story-card:not(.is-collapsed) .story-toggle-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.story-item-accent .story-card {
  background: linear-gradient(180deg, #fff8df, #f5efe3);
}

.story-logo {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 88px;
  height: 88px;
  padding: 8px;
  border-radius: 18px;
  background: #fff;
  object-fit: contain;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.1);
  transform: rotate(4deg);
}

.story-logo-compact {
  padding: 10px;
}

.story-card h3 {
  max-width: min(28ch, calc(100% - 116px));
  margin-bottom: 16px;
  font-size: 32px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  padding-right: 96px;
}

.story-card p {
  max-width: 66ch;
  color: #2b2530;
  font-size: 17px;
  line-height: 1.72;
}

.story-body {
  display: grid;
  gap: 0;
  overflow: hidden;
  max-height: 1200px;
  opacity: 1;
  transition: max-height 260ms ease, opacity 180ms ease, margin-top 260ms ease;
}

.story-card.is-collapsed .story-body {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
}

.story-card:not(.is-collapsed) .story-body {
  margin-top: 14px;
}

.story-card p + p,
.story-points {
  margin-top: 14px;
}

.story-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 240px));
  gap: 18px;
  align-items: start;
  margin-top: 22px;
}

.story-figure {
  margin: 0;
}

.story-media-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.story-figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.story-media-button:hover img {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(28, 22, 17, 0.14);
  filter: saturate(1.02);
}

.story-media-hint {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
}

.story-figure figcaption {
  margin-top: 8px;
  color: #6f6578;
  font-size: 14px;
  line-height: 21px;
}

.story-note {
  color: #7d7285;
  font-style: italic;
}

.story-points {
  padding: 0;
  list-style: none;
}

.story-points li {
  position: relative;
  padding-left: 18px;
  color: #5b5462;
}

.story-points li + li {
  margin-top: 6px;
}

.story-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fdbd12;
}

.cv-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cv-item {
  position: relative;
  margin-bottom: 36px;
  border-radius: var(--radius);
  background: var(--soft);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cv-item:last-child {
  margin-bottom: 0;
}

.cv-item:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.cv-toggle {
  position: relative;
  display: block;
  width: 100%;
  min-height: 136px;
  padding: 26px 112px 24px 36px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.cv-toggle::after {
  content: "+";
  position: absolute;
  right: calc(50% - 12px);
  bottom: -12px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow);
  color: #8d819d;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.cv-item.is-open .cv-toggle::after {
  content: "–";
}

.cv-text {
  display: block;
  max-width: min(100%, 760px);
}

.cv-thumb {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 72px;
  height: 72px;
  padding: 4px;
  border-radius: 14px;
  background: #fff;
  object-fit: cover;
  box-shadow: var(--shadow);
  transform: rotate(6deg);
  transition: transform 180ms ease;
}

.cv-item:nth-child(even) .cv-thumb {
  top: 50%;
  right: auto;
  left: -18px;
  transform: translateY(-50%) rotate(-6deg);
}

.cv-item:hover .cv-thumb {
  transform: rotate(6deg) scale(1.04);
}

.cv-item:nth-child(even):hover .cv-thumb {
  transform: translateY(-50%) rotate(-6deg) scale(1.04);
}

.cv-role {
  display: block;
  font-size: 21px;
  line-height: 35px;
  font-weight: 600;
}

.cv-meta {
  display: block;
  margin-bottom: 8px;
  color: #8d819d;
}

.cv-summary {
  display: block;
  color: #8d819d;
  max-width: 90%;
}

.cv-item:not(.is-open) .cv-summary {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.cv-detail {
  display: none;
  padding: 0 36px 34px;
}

.cv-item.is-open .cv-detail {
  display: block;
}

.cv-item.is-open .cv-toggle {
  padding-bottom: 16px;
}

.cv-columns {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}

.cv-columns > div:first-child {
  flex-basis: 30%;
}

.cv-columns > div:last-child {
  flex-basis: 70%;
}

.cv-columns > div {
  padding: 18px 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.62);
}

.cv-columns strong {
  display: block;
  margin-bottom: 6px;
}

.cv-columns ul {
  margin: 0;
  padding: 0 0 0 20px;
  list-style: none;
}

.cv-columns li {
  margin-bottom: 3px;
}

.cv-columns li::before {
  content: "\2022";
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  color: var(--accent);
  font-weight: 700;
}

.cv-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 76px;
}

.overview-card {
  position: relative;
  min-height: 156px;
  padding: 28px;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(30, 23, 16, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.overview-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 56px rgba(30, 23, 16, 0.1);
}

.overview-number {
  position: absolute;
  right: 10px;
  bottom: -60px;
  color: #8d819d;
  opacity: 0.15;
  font-size: 180px;
  line-height: 210px;
  font-weight: 800;
}

.overview-title {
  margin-bottom: 8px;
  color: #8d819d;
  font-weight: 600;
}

.center-title {
  margin-bottom: 16px;
  text-align: center;
}

.expertise-intro {
  max-width: 860px;
  margin: 0 auto 48px;
  text-align: center;
}

.expertise-lead {
  max-width: 760px;
  margin: 0 auto;
  color: #62586b;
  font-size: 18px;
  line-height: 1.7;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.work-card {
  position: relative;
  display: flex;
  min-height: 344px;
  align-items: stretch;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(246, 240, 229, 0.92), rgba(236, 229, 216, 0.92));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 24px 60px rgba(30, 23, 16, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.work-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 30px 70px rgba(30, 23, 16, 0.1);
}

.work-card:nth-child(2n) {
  background: linear-gradient(180deg, rgba(235, 241, 237, 0.92), rgba(224, 232, 225, 0.92));
}

.work-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  min-height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding: 138px 28px 28px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.14), rgba(255, 252, 247, 0.74) 36%, rgba(255, 252, 247, 0.98) 58%);
}

.work-card-content::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 22px;
  width: 124px;
  height: 124px;
  border-radius: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.2;
  pointer-events: none;
}

.work-card:nth-child(1) .work-card-content::before {
  background-image: url("assets/illustrations/disc-radar.svg");
}

.work-card:nth-child(2) .work-card-content::before {
  background-image: url("assets/illustrations/api-flow.svg");
}

.work-card:nth-child(3) .work-card-content::before {
  background-image: url("assets/illustrations/ai-orbit.svg");
}

.work-card:nth-child(4) .work-card-content::before {
  background-image: url("assets/illustrations/change-wave.svg");
}

.work-card-content > * {
  position: relative;
  z-index: 1;
}

.work-card-content p:last-child {
  color: #3c3443;
  font-size: 16px;
  line-height: 1.62;
}

.work-grid .work-card:nth-child(2n) .work-card-content {
  right: auto;
  left: auto;
}

.work-kicker {
  margin-bottom: 8px;
  color: #d29100;
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.work-card::before {
  content: "";
  position: absolute;
  inset: auto auto 24px 24px;
  width: 148px;
  height: 148px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
  opacity: 0.7;
  filter: blur(2px);
}

.work-card-content h3 {
  min-height: 72px;
  margin-bottom: 14px;
  max-width: 18ch;
  font-size: 31px;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.work-card-content p:last-child {
  min-height: 78px;
}

.footer-contact {
  padding-top: 108px;
}

.footer-contact-inner {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: flex-start;
  padding: 30px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 60px rgba(28, 22, 17, 0.08);
}

.footer-name {
  font-weight: 600;
}

.footer-role {
  color: var(--muted);
}

.footer-links {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 8px;
}

.footer-copy {
  max-width: 520px;
}

.closing-card {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  align-items: center;
  padding: 38px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(18, 16, 22, 0.96), rgba(42, 35, 28, 0.92));
  color: #fff;
  box-shadow: 0 28px 72px rgba(18, 16, 22, 0.22);
}

.closing-copy {
  max-width: 760px;
}

.closing-copy h2 {
  margin-bottom: 16px;
}

.closing-copy p:last-child {
  color: rgba(255, 255, 255, 0.76);
}

.closing-actions {
  display: flex;
  min-width: 250px;
  flex-direction: column;
  gap: 14px;
}

.closing-card .button-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 14, 10, 0.68);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1080px);
  transform: translateY(16px) scale(0.985);
  transition: transform 220ms ease;
}

.lightbox.is-open .lightbox-dialog {
  transform: translateY(0) scale(1);
}

.lightbox-figure {
  margin: 0;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.28);
}

.lightbox-image {
  width: 100%;
  max-height: min(78vh, 900px);
  border-radius: 20px;
  object-fit: contain;
  background: linear-gradient(180deg, rgba(250, 247, 238, 0.92), rgba(245, 241, 233, 0.92));
}

.lightbox-caption {
  margin-top: 12px;
  padding: 0 4px 4px;
  color: #5a5161;
  font-size: 15px;
  line-height: 1.6;
}

.lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.18);
  color: #161117;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.page-shell,
.page-shell-inner,
.site-nav,
.panel-accent,
.panel-dark,
.panel-large,
.timeline-layout,
.timeline-intro,
.hero-aside,
.hero-highlights,
.intro-grid,
.vision-grid,
.contact-grid,
.timeline,
.expertise-grid,
.site-footer,
.inner-main,
.inner-hero,
.expertise-card,
.panel,
.contact-card {
  all: unset;
}

.page-shell-inner {
  display: block;
}

.site-header:not(.home-header) {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 32px), var(--container));
  margin: 16px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.18));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}

.site-header:not(.home-header) .site-nav {
  display: flex;
  gap: 18px;
}

.site-header:not(.home-header) .site-nav a {
  color: rgba(0, 0, 0, 0.76);
}

.site-header:not(.home-header) .site-nav a:hover {
  color: #000;
}

.site-header:not(.home-header) .site-nav a[aria-current="page"] {
  font-weight: 700;
  color: #000;
}

.inner-main {
  display: block;
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 40px 0 80px;
}

.section + .section {
  margin-top: 28px;
}

.inner-hero {
  display: block;
  padding: 80px 0 40px;
}

.inner-hero .eyebrow {
  display: inline-block;
  padding: 4px 8px;
  margin-bottom: 12px;
  border-radius: 40px;
  background: var(--accent-green);
  color: #fff;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
}

.inner-hero h1 {
  font-size: 56px;
  line-height: 60px;
  letter-spacing: -2px;
  font-weight: 700;
}

.lead {
  max-width: 760px;
  margin-top: 24px;
  font-size: 21px;
  line-height: 35px;
  color: #000;
}

.inner-hero-art {
  display: block;
  width: min(100%, 720px);
  margin-top: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.prose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.prose-grid .panel {
  display: block;
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 42px rgba(28, 22, 17, 0.08);
}

.deep-dive-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.deep-dive-card,
.mini-case-card {
  padding: 30px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 54px rgba(28, 22, 17, 0.08);
}

.deep-dive-card h2,
.mini-case-card h2 {
  margin-bottom: 14px;
  font-size: 34px;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.mini-case-strip {
  display: block;
}

.mini-case-card p:last-child {
  color: #4d4556;
}

.mini-contact {
  padding-top: 8px;
}

.mini-contact p {
  color: #4f4a54;
}

.mini-contact a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.disc-summary-grid,
.disc-metrics-grid,
.disc-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.disc-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.disc-summary-card,
.disc-metric-card,
.disc-note-card,
.disc-panel-highlight {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 54px rgba(28, 22, 17, 0.08);
}

.disc-summary-card,
.disc-metric-card {
  min-height: 220px;
  padding: 28px;
}

.disc-note-card {
  padding: 34px;
}

.disc-kicker {
  margin-bottom: 10px;
  color: #d29100;
  font-size: 12px;
  line-height: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.disc-summary-card h2,
.disc-note-card h2 {
  margin-bottom: 14px;
  font-size: 34px;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.disc-metric-card h3 {
  margin-bottom: 14px;
  font-size: 30px;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.disc-list {
  padding-left: 18px;
}

.disc-list li + li {
  margin-top: 10px;
}

.disc-panel-highlight {
  padding: 30px;
}

.disc-panel-highlight p + p {
  margin-top: 14px;
}

.disc-note-section {
  padding-top: 24px;
}

@media (max-width: 1200px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
    gap: 40px;
  }

  .proof-grid,
  .results-grid,
  .focus-grid,
  .deep-dive-grid {
    grid-template-columns: 1fr;
  }

  .disc-summary-grid,
  .disc-metrics-grid,
  .disc-columns {
    grid-template-columns: 1fr;
  }

  .trajectory-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .featured-card {
    grid-template-columns: 1fr;
  }

  .trajectory-actions {
    min-width: 0;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-image {
    min-height: 440px;
    height: min(58vh, 560px);
  }

  .story-timeline {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .story-gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .hero {
    min-height: 0;
    padding: 92px 0 44px;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
    padding-top: 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-image {
    width: 100%;
    height: 46vh;
    min-height: 320px;
    max-width: 420px;
    margin: 0 auto;
  }

  .hero-image::before {
    inset: 10% 10% 10% 10%;
  }

  .about-grid,
  .story-timeline,
  .cv-overview-grid,
  .footer-contact-inner,
  .prose-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .story-intro {
    position: static;
  }

  .story-item {
    display: block;
  }

  .story-meta {
    margin-bottom: 12px;
  }

  .logo-strip-inner {
    display: block;
  }

  .logo-strip-inner > p {
    min-width: 0;
    margin-bottom: 20px;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .closing-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .closing-actions {
    min-width: 0;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-actions {
    gap: 12px;
  }

  .work-card-content,
  .work-grid .work-card:nth-child(2n) .work-card-content {
    position: relative;
    inset: auto;
    width: 100%;
    left: auto;
    right: auto;
    bottom: auto;
    min-height: 0;
    margin: 0;
    padding: 112px 22px 24px;
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.16), rgba(255, 252, 247, 0.8) 34%, rgba(255, 252, 247, 0.98) 56%);
  }

  .work-card-content::before {
    top: 18px;
    right: 18px;
    width: 96px;
    height: 96px;
    opacity: 0.18;
  }

  .work-card-content h3,
  .work-card-content p:last-child {
    min-height: 0;
  }

  .expertise-intro {
    margin-bottom: 32px;
  }

  .expertise-lead {
    font-size: 16px;
    line-height: 1.65;
  }

  .cv-toggle {
    min-height: 0;
    padding-right: 36px;
  }

  .cv-thumb {
    position: static;
    display: block;
    margin-top: 18px;
    width: 84px;
    height: 60px;
    transform: none;
  }

  .story-logo {
    top: 18px;
    right: 18px;
    width: 68px;
    height: 68px;
    transform: none;
  }

  .story-media-button {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .home-header {
    padding-top: 12px;
    pointer-events: auto;
  }

  .header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 24px;
  }

  .container {
    padding: 0 18px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-text strong {
    font-size: 14px;
    line-height: 1.2;
  }

  .brand-text span:last-child {
    font-size: 14px;
  }

  .header-actions {
    width: 100%;
    gap: 12px 18px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .header-link {
    font-size: 13px;
  }

  .home-header .header-actions .header-link:last-child {
    display: none;
  }

  .hero {
    padding: 28px 0 52px;
  }

  .hero-badges {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 28px;
  }

  .big-title,
  .inner-hero h1 {
    font-size: 32px;
    line-height: 1.02;
  }

  h2 {
    font-size: 34px;
    line-height: 1.06;
  }

  .large-paragraph,
  .lead {
    font-size: 18px;
    line-height: 30px;
  }

  .button {
    width: 100%;
  }

  .featured-card,
  .focus-card,
  .deep-dive-card,
  .mini-case-card,
  .closing-card {
    padding: 24px;
  }

  .featured-copy h3,
  .deep-dive-card h2,
  .mini-case-card h2 {
    font-size: 28px;
    line-height: 1.08;
  }

  .hero-image {
    height: 28vh;
    min-height: 220px;
    max-width: 320px;
    margin-top: 8px;
  }

  .pre-heading {
    max-width: none;
  }

  .about-grid,
  .cv-overview-grid,
  .prose-grid {
    grid-template-columns: 1fr;
  }

  .trajectory-actions {
    flex-direction: column;
    width: 100%;
  }

  .story-rail {
    gap: 22px;
    padding-left: 24px;
  }

  .story-rail::before {
    left: 6px;
  }

  .story-item::before {
    left: -24px;
  }

  .story-card {
    padding: 24px 22px 48px;
  }

  .story-toggle-copy {
    padding-right: 0;
  }

  .story-toggle-icon {
    bottom: -16px;
  }

  .story-meta {
    gap: 2px 10px;
    margin-bottom: 10px;
  }

  .story-period {
    font-size: 14px;
  }

  .story-place {
    font-size: 13px;
  }

  .story-card h3 {
    max-width: none;
    padding-right: 0;
  }

  .story-logo {
    position: static;
    display: block;
    margin-bottom: 16px;
    width: 76px;
    height: 76px;
  }

  .cv-toggle,
  .cv-detail,
  .work-card-content {
    padding-left: 24px;
    padding-right: 24px;
  }

  .work-card {
    min-height: 0;
  }

  .work-card-content {
    padding-top: 104px;
    padding-bottom: 22px;
  }

  .work-card-content h3 {
    font-size: 26px;
    line-height: 1.06;
  }

  .logo-list {
    justify-content: center;
  }

  .logo-list img {
    height: 34px;
  }

  .lightbox {
    padding: 16px;
  }

  .lightbox-figure {
    padding: 14px;
    border-radius: 22px;
  }

  .lightbox-close {
    top: -10px;
    right: -4px;
    width: 42px;
    height: 42px;
  }

  .footer-contact {
    padding-top: 60px;
  }

  .footer-contact-inner {
    padding: 22px;
  }

  .site-header:not(.home-header) {
    width: min(calc(100% - 24px), var(--container));
    border-radius: 28px;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 12px 14px;
  }

  .site-header:not(.home-header) .site-nav {
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .site-header:not(.home-header) .site-nav a {
    font-size: 14px;
  }
}
