:root {
  /* Layout */
  --container-max: 1320px;
  --page-x: 56px;

  /* Section spacing */
  --section-y: 96px;
  --section-y-compact: 80px;

  /* Internal spacing */
  --label-to-title: 14px;
  --title-to-intro: 20px;
  --intro-to-content: 48px;

  /* Colors */
  --yellow: #FFD129;
  --text: #171717;
  --text-muted: #6C6761;
  --meta-brown: #74452F;
  --border: #ECE3D5;
  --cream: #FFF9EC;

  /* Radius */
  --radius-large: 18px;
  --radius-card: 14px;
  --radius-small: 12px;
  --radius-pill: 999px;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/montserrat-600.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/montserrat-700.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("assets/fonts/montserrat-800.ttf") format("truetype");
}

@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/nunito-sans-400.ttf") format("truetype");
}

@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/nunito-sans-600.ttf") format("truetype");
}

@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/nunito-sans-700.ttf") format("truetype");
}

@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("assets/fonts/nunito-sans-800.ttf") format("truetype");
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  overflow-x: clip;
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: "Nunito Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  width: 100%;
  align-items: center;
  gap: 24px;
  min-height: 64px;
  padding: 10px var(--page-x);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(232, 225, 207, 0.82);
  backdrop-filter: blur(14px);
}

.brand,
.nav,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 13px;
}

.nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  text-decoration: none;
}

.nav a:hover,
.nav a:focus {
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  gap: 5px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 28px rgba(23, 23, 23, 0.1);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.language-switch {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: #fff;
  box-shadow: 0 12px 26px rgba(23, 23, 23, 0.08);
}

.language-switch button {
  min-width: 46px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.language-switch button.active {
  background: var(--text);
  color: #fff;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--page-x);
}

main {
  display: flex;
  flex-direction: column;
}

.hero-panel,
.section {
  min-height: auto;
}

.hero-panel {
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  min-height: min(900px, 88vh);
  padding: clamp(82px, 7vw, 112px) 0 clamp(42px, 5vw, 68px);
  background: #fff;
}

.hero-image {
  position: absolute;
  inset: 0;
  margin: 0;
}

.hero-panel::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.96) 30%, rgba(255, 255, 255, 0.64) 48%, rgba(255, 255, 255, 0.12) 66%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.16) 28%, rgba(255, 255, 255, 0) 50%);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - (var(--page-x) * 2)));
  margin-left: max(var(--page-x), calc((100vw - var(--container-max)) / 2 + var(--page-x)));
  padding-top: clamp(8px, 2vw, 26px);
}

.eyebrow {
  position: relative;
  margin: 0 0 14px;
  padding-left: 18px;
  color: var(--meta-brown);
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  position: absolute;
  top: 0.32em;
  left: 0;
  width: 6px;
  height: 24px;
  content: "";
  background: var(--yellow);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Montserrat, Arial, sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 800;
}

h1 {
  max-width: 660px;
  font-size: clamp(64px, 5vw, 88px);
  line-height: 0.98;
  letter-spacing: 0;
}

#hero-title {
  max-width: 660px;
}

#hero-title br {
  display: block;
}

h2 {
  max-width: 900px;
  font-size: clamp(42px, 3.5vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  font-size: clamp(20px, 1.55vw, 24px);
  line-height: 1.18;
}

p {
  margin: 12px 0 0;
  color: var(--text-muted);
}

.lead {
  max-width: 560px;
  margin-top: 28px;
  color: #35312d;
  font-size: 18px;
  line-height: 1.45;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 11px 24px;
  border: 0;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(23, 23, 23, 0.1);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.external-arrow {
  display: inline-block;
  margin-left: 8px;
  font-size: 1em;
  line-height: 1;
  transform: translateY(-0.02em);
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(23, 23, 23, 0.12);
}

.primary {
  background: var(--yellow);
}

.secondary {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-proof {
  display: grid;
  grid-template-columns: clamp(270px, 21vw, 360px) minmax(250px, 340px);
  gap: clamp(30px, 3.6vw, 52px);
  align-items: center;
  margin-top: 58px;
}

.experience-wheel {
  position: relative;
  display: grid;
  width: clamp(270px, 21vw, 360px);
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 20px 45px rgba(23, 23, 23, 0.08);
}

.experience-wheel svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-92deg);
}

.wheel-bg,
.wheel-one,
.wheel-two {
  fill: none;
  stroke-linecap: round;
}

.wheel-bg {
  stroke: #f5ecd6;
  stroke-width: 9;
}

.wheel-one {
  stroke: var(--yellow);
  stroke-width: 9;
  stroke-dasharray: 492 24;
  stroke-dashoffset: 0;
}

.wheel-two {
  stroke: #e0d3bd;
  stroke-width: 9;
  stroke-dasharray: 293 147;
  stroke-dashoffset: -10;
}

.wheel-center {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  color: var(--text);
  text-align: center;
}

.wheel-center strong {
  display: inline-flex;
  align-items: baseline;
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(66px, 5.3vw, 92px);
  font-weight: 800;
  line-height: 0.82;
}

.counter-plus {
  position: relative;
  top: -0.03em;
  margin-left: 0.02em;
  font-size: 1em;
  line-height: 0.82;
}

.wheel-center .wheel-years,
.wheel-center small {
  display: block;
  font-weight: 800;
}

.wheel-center .wheel-years {
  margin-top: 14px;
  font-size: 14px;
}

.wheel-center small {
  position: relative;
  margin-top: 2px;
  font-size: 13px;
}

.wheel-center small::after {
  display: block;
  width: 38px;
  height: 4px;
  margin: 14px auto 0;
  content: "";
  background: var(--yellow);
}

.experience-lines {
  display: grid;
  gap: clamp(16px, 2.1vw, 24px);
}

.experience-lines article {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.experience-lines article::before {
  position: absolute;
  top: 50%;
  right: calc(100% + 8px);
  width: clamp(48px, 5vw, 86px);
  height: 1px;
  content: "";
  background: var(--yellow);
}

.experience-lines article:nth-child(2)::before {
  background: #e0d3bd;
}

.experience-lines article:nth-child(3)::before {
  background: #f5ecd6;
}

.line-dot {
  position: absolute;
  top: calc(50% - 5px);
  right: calc(100% + 2px);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--yellow);
}

.experience-lines article:nth-child(2) .line-dot {
  background: #e0d3bd;
}

.experience-lines article:nth-child(3) .line-dot {
  background: #f5ecd6;
  border: 1px solid #e0d3bd;
}

.line-dot.muted {
  background: #f5ecd6;
}

.line-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--text);
  font-weight: 800;
}

.line-icon.soft {
  background: #f5ecd6;
  color: #8a7a62;
}

.transformation-icon {
  background: #e0d3bd;
  color: #6f604d;
}

.line-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.experience-lines h3 {
  font-size: clamp(19px, 1.5vw, 23px);
}

.experience-lines strong {
  display: block;
  margin-top: 3px;
  color: var(--text);
  font-weight: 800;
}

.experience-lines p {
  max-width: 300px;
  margin-top: 3px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.34;
}

.section {
  display: grid;
  border-top: 1px solid var(--border);
  height: auto;
  min-height: 0;
  padding-block: var(--section-y);
}

.section--compact {
  padding-block: var(--section-y-compact);
}

.section-header {
  max-width: 1180px;
}

.section-eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--meta-brown);
  margin-bottom: var(--label-to-title);
}

.section-title {
  font-size: clamp(42px, 3.5vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 800;
  margin: 0;
}

.title-nowrap {
  white-space: nowrap;
}

.section-intro {
  max-width: 820px;
  margin-top: var(--title-to-intro);
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.55;
}

.case-heading .section-intro,
.resource-heading .section-intro,
.cv-section-head .section-intro {
  max-width: 920px;
}

.cv-section-head .section-title {
  font-size: clamp(38px, 3.1vw, 48px);
}

.section-content {
  margin-top: var(--intro-to-content);
}

.section-overview {
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #e0d3bd;
}

.section-overview::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: calc((100vw - min(100vw, var(--container-max))) / 2 + min(100vw, var(--container-max)) / 5);
  background: var(--yellow);
  content: "";
}

.section-overview .container {
  position: relative;
  z-index: 1;
  padding-block: 0;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.overview-card {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 184px;
  padding: 28px 26px 24px;
  color: var(--text);
  text-align: center;
  text-decoration: none;
}

.overview-card[href="#contact"] {
  background: var(--yellow);
}

.overview-card + .overview-card {
  border-left: 1px solid rgba(116, 69, 47, 0.18);
}

.overview-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.62);
}

.overview-card[href="#contact"] .overview-icon {
  background: #fff;
}

.overview-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--text);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.overview-card strong {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;
}

.overview-card p {
  max-width: 165px;
  margin: 0;
  color: rgba(23, 23, 23, 0.68);
  font-size: 14px;
  line-height: 1.35;
}

.overview-arrow {
  margin-top: 18px;
  color: var(--text);
  font-size: 24px;
  line-height: 1;
}

.overview-card:hover .overview-arrow,
.overview-card:focus-visible .overview-arrow {
  transform: translateX(4px);
}

.overview-arrow {
  transition: transform 160ms ease;
}

.timeline-section {
  position: relative;
  overflow: visible;
  background: #fff;
}

.cases-section {
  background: #fff;
}

.section-image-strip {
  border-top: 1px solid var(--border);
  background: #fff;
  padding-block: 0;
}

.section-image-strip .container {
  width: 100vw;
  max-width: none;
  margin-inline: calc(50% - 50vw);
  padding-inline: 0;
}

.section-image-strip img {
  display: block;
  width: 100%;
  height: clamp(140px, 15vw, 210px);
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  box-shadow: none;
}

.case-heading {
  max-width: 1320px;
  margin: 0;
}

.resource-heading {
  max-width: 1320px;
}

.case-heading .section-title,
.resource-heading .section-title {
  font-size: clamp(38px, 3.1vw, 48px);
}

.resource-section {
  background: #fff;
}

.resource-section .container {
  display: block;
}

.dark-button {
  background: var(--text);
  color: #fff;
}

.resource-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.resource-card {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(23, 23, 23, 0.04);
}

.resource-card h3 {
  font-size: clamp(20px, 1.55vw, 24px);
}

.featured-resource {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  color: var(--text);
  text-decoration: none;
}

.featured-resource > span {
  padding-top: 4px;
}

.featured-resource img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-small);
  background: var(--cream);
}

.featured-resource strong {
  display: block;
  color: var(--text);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.25;
}

.featured-resource small {
  display: block;
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
}

.resource-link-list {
  display: grid;
  border-top: 1px solid var(--border);
}

.resource-link-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  min-width: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}

.resource-link-list .external-arrow {
  color: var(--text-muted);
}

.resource-card .button {
  justify-self: start;
  margin-top: 4px;
}

.resource-card .dark-button {
  background: #fff;
  color: var(--text);
}

.workbook-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(460px, 1.06fr);
  align-items: start;
  gap: clamp(28px, 3vw, 48px);
  margin-top: 18px;
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(23, 23, 23, 0.04);
}

.workbook-copy {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
}

.workbook-copy h3 {
  font-size: clamp(20px, 1.55vw, 24px);
}

.workbook-intro {
  max-width: 540px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.workbook-list {
  display: grid;
  gap: 14px;
  margin-top: 4px;
  padding: 0;
  list-style: none;
}

.workbook-list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.workbook-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--meta-brown);
  font-size: 13px;
  font-weight: 800;
}

.workbook-list li:nth-child(1) .workbook-icon {
  background: var(--yellow);
  color: var(--text);
}

.workbook-list li:nth-child(2) .workbook-icon {
  background: #ff7d68;
  color: var(--text);
}

.workbook-list strong {
  display: block;
  color: var(--text);
  font-size: 14px;
  line-height: 1.35;
}

.workbook-list small {
  display: block;
  margin-top: 3px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.workbook-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  min-height: 48px;
  margin-top: 8px;
  padding: 13px 24px;
  border: 0;
  border-radius: var(--radius-pill);
  background: #e7e2da;
  color: var(--text-muted);
  box-shadow: 0 12px 26px rgba(23, 23, 23, 0.08);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.workbook-gallery {
  display: grid;
  align-self: start;
  align-items: stretch;
  justify-self: end;
  width: min(100%, 680px);
  min-width: 0;
}

.workbook-image-button,
.workbook-more-button {
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: var(--radius-small);
  background: transparent;
  cursor: zoom-in;
}

.workbook-thumbs img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-small);
  background: var(--cream);
}

.workbook-thumbs {
  display: grid;
  grid-template-columns: minmax(0, 1.58fr) repeat(2, minmax(82px, 0.56fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
  height: clamp(280px, 25vw, 390px);
}

.workbook-thumbs img {
  border: 1px solid var(--border);
}

.workbook-thumbs .workbook-image-button:first-child {
  grid-row: 1 / -1;
}

.workbook-thumbs .workbook-more-button {
  display: none;
}

.workbook-thumbs .workbook-image-button:not(:first-child) img,
.workbook-more-button {
  aspect-ratio: 1 / 1;
}

.workbook-more-button {
  min-height: 100%;
  place-items: center;
  align-content: center;
  gap: 3px;
  border: 1px solid var(--border);
  background: var(--cream);
  color: var(--text);
}

.workbook-more-button span {
  font-family: Montserrat, Arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.workbook-more-button small {
  max-width: 72px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.15;
}

.workbook-lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  align-items: center;
  gap: 14px;
  padding: 32px;
  background: rgba(23, 23, 23, 0.88);
}

.workbook-lightbox[hidden] {
  display: none;
}

.workbook-lightbox figure {
  display: grid;
  gap: 12px;
  justify-items: center;
  max-height: calc(100vh - 64px);
  margin: 0;
}

.workbook-lightbox img {
  max-width: 100%;
  max-height: calc(100vh - 116px);
  object-fit: contain;
  border-radius: var(--radius-small);
  background: #fff;
}

.workbook-lightbox figcaption {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.workbook-lightbox button {
  border: 0;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.workbook-lightbox-close,
.workbook-lightbox-nav {
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  cursor: pointer;
}

.workbook-lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  font-size: 28px;
  line-height: 1;
}

.workbook-lightbox-nav {
  width: 54px;
  height: 54px;
  font-size: 34px;
}

.featured-resource:hover strong,
.featured-resource:focus strong,
.resource-link-list a:hover,
.resource-link-list a:focus,
.workbook-image-button:hover,
.workbook-image-button:focus-visible {
  color: var(--meta-brown);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 30px;
}

.compact-heading {
  margin-bottom: 22px;
}

.cv-section-head {
  margin-bottom: 0;
}

.certification-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(28px, 5vw, 64px);
  max-width: 1120px;
  padding: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  list-style: none;
}

.certification-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 4px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(224, 211, 189, 0.62);
}

.certification-list li:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.certification-list time {
  color: var(--meta-brown);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}

.certification-list strong {
  display: block;
  color: var(--text);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.25;
}

.certification-list small {
  display: block;
  margin-top: 1px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.certification-list em {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 9px;
  color: var(--text-muted);
  font-style: normal;
  font-size: 0;
  font-weight: 700;
}

.certification-list em span,
.pill-list li,
.case-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--cream);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.cv-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}

.cv-thread span,
.panel-icon {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffe6a3;
  color: var(--text);
  font-weight: 900;
}

.cv-explorer {
  display: block;
  min-width: 0;
}

.cv-thread {
  position: relative;
  display: grid;
  justify-items: center;
  padding-top: 6px;
  padding-bottom: 6px;
}

.cv-thread::before {
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 50%;
  width: 2px;
  content: "";
  background: var(--yellow);
  transform: translateX(-50%);
}

.cv-thread span {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  margin: 10px 0;
  border: 1px solid rgba(107, 63, 36, 0.16);
  font-size: 17px;
}

.cv-tabs {
  display: grid;
  gap: 10px;
}

.cv-tabs button {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  gap: 14px;
  align-items: center;
  width: 100%;
  min-height: 58px;
  padding: 12px 18px;
  border: 0;
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  text-align: left;
  box-shadow: 0 10px 26px rgba(23, 23, 23, 0.08);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.cv-tabs button span {
  display: block;
  color: var(--text);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.cv-tab-icon {
  justify-self: end;
  width: 20px;
  height: 20px;
  color: var(--text);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  opacity: 0.74;
}

.cv-tabs button.active .cv-tab-icon {
  opacity: 0.9;
}

.cv-tabs button strong,
.cv-tabs button small {
  display: none;
}

.cv-tabs button strong {
  font-family: Montserrat, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.cv-tabs button small {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.cv-tabs button::after {
  display: none;
}

.cv-tabs button:hover,
.cv-tabs button:focus {
  transform: translateX(2px);
  box-shadow: 0 10px 24px rgba(23, 23, 23, 0.06);
}

.cv-tabs button.active {
  background: var(--yellow);
}

.cv-tabs button.active::after {
  display: none;
}

.cv-panels {
  min-width: 0;
  align-self: stretch;
}

.cv-panel {
  position: relative;
  min-height: 100%;
  min-width: 0;
  padding: clamp(8px, 1.4vw, 18px) 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.panel-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  padding-right: 0;
}

.panel-head > div {
  min-width: 0;
}

.panel-head h3,
.panel-head p,
.panel-head small {
  overflow-wrap: anywhere;
}

.station-type {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: var(--yellow);
  color: var(--text);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.panel-icon {
  display: none;
}

.panel-head p,
.panel-head small {
  display: block;
  color: var(--text);
  font-weight: 700;
}

.panel-head p {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 16px;
}

.panel-head small {
  margin-top: 4px;
  color: var(--text-muted);
}

.training-split {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.training-split h4 {
  margin: 0 0 10px;
  color: var(--meta-brown);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cv-detail-block {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(224, 211, 189, 0.82);
}

.cv-detail-block h4 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--meta-brown);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cv-detail-block h4 > .cv-detail-icon,
.cv-detail-toggle .cv-detail-icon {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--meta-brown);
  line-height: 1;
}

.cv-detail-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.cv-detail-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 12px;
  padding: 4px 0;
  border: 0;
  background: transparent;
  color: var(--meta-brown);
  font: inherit;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}

.cv-detail-arrow {
  display: block;
  width: 0;
  height: 0;
  margin-left: auto;
  color: var(--text);
  border-top: 7px solid currentColor;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  font-size: 0;
  transition: transform 0.18s ease;
}

.cv-detail-toggle[aria-expanded="true"] .cv-detail-arrow {
  transform: rotate(180deg);
}

.certificate-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.certificate-grid[hidden] {
  display: none;
}

.certificate-grid li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.35;
}

.certificate-grid li::before {
  position: absolute;
  top: 0.65em;
  left: 2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
}

.certificate-line {
  display: block;
  font-family: "Nunito Sans", Arial, sans-serif;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
}

.certificate-line small {
  color: var(--text-muted);
  font: inherit;
  font-weight: 400;
}

.training-split .check-list {
  margin-top: 0;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.pill-list li {
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list[hidden] {
  display: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-weight: 600;
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  color: var(--yellow);
  content: "✓";
  font-size: 16px;
  font-weight: 900;
}

.case-accordion {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.case-panel {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.case-panel h3 {
  max-width: 780px;
  margin-top: 16px;
  font-size: 30px;
  line-height: 1.15;
}

.case-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.case-kicker {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  background: var(--yellow);
  color: var(--text);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.case-subtitle {
  color: var(--text-muted);
  font-size: 18px;
  font-weight: 600;
}

.case-subtitle {
  margin-top: 8px;
}

.case-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(18px, 2.5vw, 26px);
}

.case-columns article {
  min-height: 168px;
  padding: 22px;
  border: 0;
  border-left: 3px solid var(--yellow);
  border-radius: var(--radius-small);
  background: #fffdfa;
}

.case-columns span {
  display: block;
  margin-bottom: 10px;
  color: var(--text-muted);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.case-columns p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

.case-columns h4 {
  margin: 0 0 8px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.28;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 20px;
  padding-top: 18px;
  padding-right: 0;
  border-top: 1px solid var(--border);
}

.case-tags span {
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
}

.case-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 18px;
}

.case-pagination button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--text);
  cursor: pointer;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(23, 23, 23, 0.08);
}

.case-pagination button.active {
  background: var(--yellow);
}

.legal-page {
  padding-top: 64px;
}

.legal-hero {
  border-top: 0;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--meta-brown);
  font-weight: 700;
  text-decoration: none;
}

.legal-content {
  display: grid;
  gap: 56px;
  max-width: 920px;
}

.legal-content article {
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.legal-content h2 {
  font-size: clamp(28px, 3vw, 38px);
}

.legal-content h3 {
  margin-top: 28px;
  font-size: 18px;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.65;
}

.legal-content a {
  color: var(--meta-brown);
}

.legal-notice {
  padding: 18px 20px;
  border-left: 4px solid var(--yellow);
  background: var(--cream);
  color: var(--text) !important;
  font-weight: 700;
}

.site-footer {
  padding: clamp(44px, 5vw, 70px) 0 clamp(24px, 3vw, 34px);
  background: #101010;
  color: #fff;
}

.footer-wrap {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(300px, 1.05fr) minmax(240px, 0.72fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
  width: min(100%, var(--container-max));
  margin: 0 auto;
  padding-right: var(--page-x);
  padding-left: var(--page-x);
}

.footer-identity {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-identity .brand-mark {
  flex: 0 0 auto;
  box-shadow: none;
}

.footer-identity strong,
.footer-social h2 {
  display: block;
  margin: 0;
  color: #fff;
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(18px, 1.25vw, 22px);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0;
}

.footer-identity p,
.footer-statement p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.65;
}

.footer-statement {
  min-height: 112px;
  margin: 0;
  padding: 0 clamp(26px, 4vw, 48px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-statement > span {
  display: block;
  height: 30px;
  color: rgba(224, 211, 189, 0.5);
  font-family: Georgia, serif;
  font-size: 68px;
  line-height: 0.85;
}

.footer-statement p {
  max-width: 360px;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-social {
  justify-self: end;
  text-align: center;
}

.footer-social-links {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
}

.footer-social-links a {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.footer-social-links svg {
  width: 23px;
  height: 23px;
}

.footer-social-links svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social-links a:hover,
.footer-social-links a:focus {
  border-color: var(--yellow);
  color: var(--text);
  background: var(--yellow);
  transform: translateY(-2px);
}

.footer-legal {
  display: flex;
  gap: 34px;
  align-items: center;
  grid-column: 1 / -1;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.footer-legal a:hover,
.footer-legal a:focus {
  color: var(--yellow);
}

.footer-copy {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 1380px) {
  .cv-layout {
    grid-template-columns: minmax(160px, 200px) minmax(0, 1fr);
  }

  .cv-panels {
    grid-column: auto;
  }

  .cv-panel {
    min-height: auto;
  }

}

@media (max-width: 1024px) {
  :root {
    --page-x: 32px;
    --section-y: 80px;
    --section-y-compact: 72px;
  }
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    align-items: flex-start;
    grid-template-columns: 1fr auto;
    gap: 16px;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 14px 18px;
    font-size: 13px;
  }

  .language-switch {
    grid-column: 1 / -1;
    width: 100%;
  }

  .language-switch button {
    min-width: 0;
  }

  .overview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 22px;
  }

  .overview-card:nth-child(4) {
    border-left: 0;
  }

  .hero-panel,
  .section {
    min-height: auto;
  }

  .hero-panel {
    padding: 72px 0 40px;
  }

  .hero-panel::before {
    background: rgba(255, 255, 255, 0.84);
  }

  .hero-image img {
    object-position: 70% center;
  }

  .hero-content {
    width: min(720px, calc(100% - (var(--page-x) * 2)));
    margin: 0 auto;
  }

  .hero-proof {
    grid-template-columns: 230px minmax(0, 1fr);
  }

  .experience-lines article::before,
  .line-dot {
    display: none;
  }

  .case-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .resource-showcase {
    grid-template-columns: 1fr;
  }

  .case-accordion {
    padding: 0;
  }

  .case-panel {
    min-height: auto;
  }

  .footer-wrap {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.9fr);
  }

  .footer-identity {
    grid-column: 1 / -1;
  }

  .footer-statement {
    border-left: 0;
    padding-left: 0;
  }

  .footer-social {
    justify-items: start;
  }

  .cv-section-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cv-layout {
    grid-template-columns: minmax(145px, 180px) minmax(0, 1fr);
  }

  .cv-tabs {
    grid-template-columns: 1fr;
  }

  .cv-thread {
    display: none;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .site-header {
    position: sticky;
    top: 0;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 8px;
    min-height: 58px;
    padding: 8px var(--page-x);
  }

  .brand {
    grid-column: 1;
    min-width: 0;
    gap: 9px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .brand span:last-child {
    overflow: hidden;
    font-size: 18px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .menu-toggle {
    display: inline-grid;
    grid-column: 3;
    grid-row: 1;
  }

  .nav {
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 6px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    background: #fff;
    box-shadow: 0 20px 40px rgba(23, 23, 23, 0.08);
    scrollbar-width: none;
  }

  .site-header.menu-open .nav {
    display: grid;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 44px;
    padding: 12px 16px;
    border: 0;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    background: #fff;
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    white-space: normal;
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .language-switch {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    width: auto;
    box-shadow: none;
  }

  .language-switch button {
    width: 48px;
    min-width: 48px;
    height: 34px;
    font-size: 12px;
  }

  .section-title,
  .case-heading .section-title,
  .resource-heading .section-title,
  .cv-section-head .section-title {
    font-size: 30px;
    line-height: 1.08;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    min-height: 46px;
    padding: 11px 20px;
    font-size: 14px;
    width: 100%;
  }

  .section-overview .container {
    padding-inline: 0;
    padding-block: 0;
  }

  .section-overview::after {
    display: none;
  }

  .overview-grid {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .overview-card {
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    justify-items: start;
    min-height: 0;
    padding: 16px var(--page-x);
    text-align: left;
  }

  .overview-card + .overview-card,
  .overview-card:nth-child(4) {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .overview-icon {
    width: 42px;
    height: 42px;
    margin: 0;
  }

  .overview-icon svg {
    width: 22px;
    height: 22px;
  }

  .overview-card strong {
    margin: 0 0 4px;
    font-size: 14px;
  }

  .overview-card p {
    max-width: none;
    font-size: 13px;
  }

  .overview-arrow {
    margin: 0;
    font-size: 22px;
  }

  .hero-panel {
    display: block;
    padding: 0 0 42px;
    background: #fff;
  }

  .hero-panel::before {
    content: none;
  }

  .hero-image {
    position: relative;
    height: clamp(320px, 86vw, 460px);
    overflow: hidden;
    background: #f8f4ec;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% center;
  }

  .hero-content {
    width: calc(100% - (var(--page-x) * 2));
    max-width: calc(100vw - (var(--page-x) * 2));
    margin: 0 var(--page-x);
    padding-top: 28px;
  }

  .eyebrow {
    margin-bottom: 12px;
    padding-left: 14px;
    font-size: 12px;
    line-height: 1.25;
  }

  .eyebrow::before {
    top: 0.05em;
    width: 5px;
    height: 22px;
  }

  .lead {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.48;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 22px;
    justify-items: start;
    margin-top: 0;
  }

  .experience-wheel {
    width: min(248px, 72vw);
  }

  .experience-lines {
    gap: 16px;
  }

  .experience-lines article {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .line-icon {
    width: 48px;
    height: 48px;
  }

  .line-icon svg {
    width: 24px;
    height: 24px;
  }

  .experience-lines h3,
  .experience-lines strong {
    font-size: 20px;
    line-height: 1.12;
  }

  .experience-lines p {
    font-size: 14px;
    line-height: 1.42;
  }

  .cv-tabs {
    grid-template-columns: 1fr;
  }

  .cv-layout {
    grid-template-columns: 1fr;
  }

  .cv-tabs .cv-panel {
    margin: 0 0 12px;
    padding: 22px 18px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    background: #fff;
    box-shadow: 0 18px 38px rgba(23, 23, 23, 0.07);
  }

  .cv-tabs button {
    grid-template-columns: minmax(0, 1fr) 22px;
    min-height: auto;
    padding: 14px;
  }

  .cv-tabs button span {
    grid-column: auto;
  }

  .certificate-grid,
  .check-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cv-detail-block {
    margin-top: 20px;
    padding-top: 18px;
  }

  .cv-detail-block h4 {
    display: block;
    width: 100%;
  }

  .cv-detail-toggle {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) 14px;
    min-height: 44px;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 12px;
    letter-spacing: 0.07em;
    white-space: nowrap;
  }

  .cv-detail-block h4 > .cv-detail-icon,
  .cv-detail-toggle .cv-detail-icon {
    width: 24px;
    height: 24px;
  }

  .cv-detail-icon svg {
    width: 22px;
    height: 22px;
  }

  .cv-detail-arrow {
    margin-left: 0;
    justify-self: end;
  }

  .certificate-grid {
    padding-left: 0;
  }

  .certificate-grid li {
    font-size: 13px;
    line-height: 1.42;
  }

  .certificate-line {
    font-size: 13px;
  }

  .check-list li {
    padding-left: 22px;
    font-size: 14px;
    line-height: 1.45;
  }

  .cv-panel {
    padding: 22px 18px;
  }

  .panel-head {
    grid-template-columns: 1fr;
    padding-right: 0;
  }

  .panel-head h3 {
    font-size: 22px;
    line-height: 1.15;
  }

  .panel-head p {
    font-size: 15px;
    line-height: 1.45;
  }

  .panel-icon {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .case-panel h3 {
    font-size: 21px;
  }

  .case-columns {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .case-columns article {
    min-height: auto;
    padding: 18px;
  }

  .case-columns h4 {
    font-size: 15px;
  }

  .case-columns p {
    font-size: 14px;
    line-height: 1.48;
  }

  .case-tags {
    padding-right: 0;
    padding-bottom: 72px;
  }

  .case-pagination {
    right: 22px;
    bottom: 22px;
    gap: 7px;
  }

  .case-pagination button {
    width: 42px;
    height: 42px;
    font-size: 13px;
  }

  .certification-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .certification-list li {
    grid-template-columns: 1fr;
  }

  .certification-list li:nth-last-child(2) {
    border-bottom: 1px solid rgba(224, 211, 189, 0.62);
  }

  .certification-list strong {
    font-size: 13px;
  }

  .certification-list small {
    font-size: 11px;
  }

  .featured-resource {
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
  }

  .featured-resource img {
    width: 118px;
    height: 82px;
  }

  .resource-card h3 {
    font-size: 22px;
  }

  .resource-feature-title {
    font-size: 17px;
    line-height: 1.24;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-identity {
    align-items: flex-start;
  }

  .footer-statement {
    min-height: 0;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .footer-social {
    justify-self: start;
    text-align: left;
  }

  .footer-social-links {
    justify-content: flex-start;
  }

  .footer-legal {
    flex-wrap: wrap;
    gap: 16px 24px;
  }

  .footer-copy {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  :root {
    --page-x: 20px;
    --section-y: 64px;
    --section-y-compact: 56px;
  }

  .section-title {
    font-size: 28px;
    line-height: 1.08;
  }

  .title-nowrap {
    white-space: normal;
  }

  h1 {
    font-size: clamp(35px, 10vw, 44px);
    line-height: 1.04;
  }

  .section-intro {
    font-size: 16px;
    line-height: 1.55;
  }

  .section-content {
    margin-top: 34px;
  }

  .hero-image {
    height: clamp(300px, 92vw, 420px);
  }

  .hero-image img {
    object-position: 74% center;
  }

  .section-image-strip {
    padding-block: 0;
  }

  .section-image-strip img {
    height: 132px;
    border-radius: 0;
  }

  .resource-card {
    padding: 18px;
  }

  .resource-card,
  .workbook-showcase,
  .case-panel,
  .cv-panel {
    border-radius: var(--radius-card);
  }

  .workbook-showcase {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .workbook-gallery {
    grid-template-columns: 1fr;
    justify-self: stretch;
    width: 100%;
  }

  .workbook-main-image {
    min-height: 190px;
    max-height: none;
    aspect-ratio: 4 / 3;
  }

  .workbook-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 6px;
    height: auto;
    min-height: 0;
  }

  .workbook-thumbs .workbook-image-button:first-child {
    grid-row: auto;
  }

  .workbook-thumbs .workbook-image-button:nth-of-type(n + 4) {
    display: none;
  }

  .workbook-thumbs .workbook-more-button {
    display: grid;
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1 / 1;
  }

  .workbook-thumbs img {
    aspect-ratio: 1 / 1;
  }

  .resource-link-list a {
    gap: 8px;
    font-size: 13px;
  }

  .workbook-lightbox {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 8px;
    padding: 18px;
  }

  .workbook-lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 28px;
  }

  .workbook-lightbox-close {
    top: 12px;
    right: 12px;
  }
}

@media (max-width: 430px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
  }

  .language-switch {
    grid-column: 2;
    grid-row: 1;
    height: auto;
  }

  .language-switch button {
    width: 42px;
    min-width: 42px;
    height: 32px;
  }

  .brand span:last-child {
    font-size: 16px;
  }

  .menu-toggle {
    grid-column: 3;
    grid-row: 1;
    width: 38px;
    height: 38px;
  }

  .nav {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .nav a {
    min-height: 42px;
    padding: 11px 14px;
    font-size: 13px;
  }

  .hero-image {
    height: clamp(292px, 104vw, 390px);
  }

  .hero-image img {
    object-position: 76% center;
  }

  h1 {
    font-size: clamp(33px, 9.8vw, 39px);
  }

  .lead {
    font-size: 15.5px;
  }

  .experience-wheel {
    width: min(226px, 78vw);
  }

  .wheel-center {
    width: 72%;
    height: 72%;
  }

  .wheel-number {
    font-size: 82px;
  }

  .case-accordion {
    padding: 0;
  }

  .case-panel-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-kicker {
    font-size: 13px;
  }

  .case-subtitle {
    font-size: 16px;
  }

  .case-columns p {
    font-size: 14px;
  }

  .case-tags {
    padding-bottom: 0;
  }

  .case-pagination {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .featured-resource {
    grid-template-columns: 1fr;
  }

  .featured-resource img {
    width: 100%;
    height: auto;
    max-height: 180px;
  }

  .resource-link-list a {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .cv-tabs button {
    gap: 8px;
  }

  .cv-tabs button strong {
    font-size: 15px;
  }

  .cv-tabs button small {
    font-size: 12px;
  }

}

/* Use case rewrite: compact, anonymized, and language-aware. */
#cases .case-rewrite-header {
  max-width: 1120px;
}

#cases .case-rewrite-title {
  max-width: 1180px;
}

.case-rewrite-card {
  background: transparent;
}

.case-rewrite-kicker {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-pill, 999px);
  background: var(--yellow, #ffd129);
  color: var(--text, #171717);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  padding: 10px 16px;
  text-transform: uppercase;
}

.case-rewrite-card h3 {
  max-width: 900px;
  margin: 22px 0 0;
  color: var(--text, #171717);
  font-size: clamp(28px, 2.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.case-rewrite-subtitle {
  max-width: 900px;
  margin: 12px 0 0;
  color: var(--text-muted, #6c6761);
  font-size: 18px;
  line-height: 1.45;
}

.case-rewrite-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.case-rewrite-step {
  min-height: 236px;
  border-left: 4px solid var(--yellow, #ffd129);
  border-radius: var(--radius-card, 14px);
  background: #fffdf9;
  padding: 24px;
}

.case-rewrite-step-label {
  margin: 0;
  color: #7a746d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.case-rewrite-step h4 {
  margin: 14px 0 10px;
  color: var(--text, #171717);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.24;
}

.case-rewrite-step p:last-child {
  margin: 0;
  color: var(--text, #171717);
  font-size: 15px;
  line-height: 1.55;
}

.case-rewrite-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-top: 28px;
  border-top: 1px solid var(--border, #ece3d5);
  padding-top: 22px;
}

.case-rewrite-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.case-rewrite-tags li {
  list-style: none;
  border: 1px solid var(--border, #ece3d5);
  border-radius: var(--radius-pill, 999px);
  background: var(--cream, #fff9ec);
  color: var(--text, #171717);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 8px 12px;
}

.case-rewrite-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.case-rewrite-nav button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--text, #171717);
  box-shadow: 0 10px 26px rgba(23, 23, 23, 0.08);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

.case-rewrite-nav button.active {
  background: var(--yellow, #ffd129);
}

@media (max-width: 900px) {
  .case-rewrite-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .case-rewrite-step {
    min-height: 0;
  }

  .case-rewrite-footer {
    grid-template-columns: 1fr;
  }

  .case-rewrite-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .case-rewrite-card h3 {
    font-size: 28px;
  }

  .case-rewrite-subtitle {
    font-size: 16px;
  }

  .case-rewrite-step {
    padding: 20px;
  }

  .case-rewrite-nav {
    gap: 8px;
  }

  .case-rewrite-nav button {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }
}
/* Final anonymised use case module */
#cases {
  border-bottom: 1px solid var(--border);
}

.use-case-final-header {
  max-width: 1180px;
}

.use-case-final-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  padding: clamp(28px, 4vw, 52px);
  background: #fff;
  box-shadow: 0 18px 48px rgba(23, 23, 23, 0.05);
}

.case-final-kicker {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 22px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--yellow);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.use-case-final-panel h3 {
  margin: 0;
  max-width: 920px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.case-final-subtitle {
  margin: 10px 0 30px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.45;
}

.case-final-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.case-final-grid section {
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius-card);
  padding: 22px 22px 24px;
  background: rgba(255, 249, 236, 0.62);
}

.case-final-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-final-grid h4 {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.case-final-grid p {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
}

.case-final-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.case-final-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.case-final-nav button {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--text);
  box-shadow: 0 8px 22px rgba(23, 23, 23, 0.08);
  font-weight: 800;
  cursor: pointer;
}

.case-final-nav button.active {
  background: var(--yellow);
}

@media (max-width: 980px) {
  .case-final-grid {
    grid-template-columns: 1fr;
  }

  .case-final-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-final-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .use-case-final-panel {
    margin-inline: calc(var(--page-x) * -0.25);
    padding: 24px 18px;
  }

  .use-case-final-panel h3 {
    font-size: 28px;
  }

  .case-final-subtitle {
    font-size: 16px;
  }

  .case-final-grid section {
    padding: 18px;
  }

  .case-final-grid h4 {
    font-size: 17px;
  }

  .case-final-grid p {
    font-size: 15px;
  }
}
