/*
Theme Name: Kamil Godawski
Theme URI: https://kamilgodawski.com/
Author: Kamil Godawski
Description: Autorski motyw dla psychologa, badacza i trenera. Zawiera stronę główną, blog, szkolenia, obszary, projekty, social media oraz dokumenty prawne.
Version: 1.3.0
Requires at least: 6.2
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: kamilgodawski
*/

:root {
  --navy: #1e2a7a;
  --navy-deep: #0d1b5a;
  --coral: #ff6f4d;
  --coral-deep: #ea580c;
  --yellow: #ffd147;
  --sky: #dbeafe;
  --sky-strong: #93c5fd;
  --lavender: #edf0ff;
  --paper: #f5f6ff;
  --white: #ffffff;
  --ink: #182055;
  --body: #374151;
  --muted: #667085;
  --line: #dfe3f3;
  --shadow-sm: 0 8px 24px rgba(22, 31, 88, 0.08);
  --shadow-md: 0 24px 55px rgba(22, 31, 88, 0.14);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--navy-deep);
  background: var(--yellow);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

a:hover {
  color: var(--coral-deep);
  background-color: rgba(255, 209, 71, 0.18);
  box-shadow: 0 0 0 3px rgba(255, 209, 71, 0.18);
}

button,
input,
textarea,
select {
  font: inherit;
}

img {
  max-width: 100%;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3rem, 5.4vw, 5.1rem);
  line-height: 1.02;
}

h2 {
  font-size: clamp(1.95rem, 3.6vw, 3.55rem);
  line-height: 1.08;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  line-height: 1.2;
}

h4 {
  font-size: 1rem;
}

.shell {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(78px, 10vw, 136px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--coral-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow svg {
  width: 18px;
  height: 18px;
}

.eyebrow-inverse {
  color: var(--yellow);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 220ms ease, color 220ms ease, background-color 220ms ease,
    border-color 220ms ease, box-shadow 220ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
  transition: transform 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover svg {
  transform: translateX(3px);
}

.button:focus-visible,
.round-link:focus-visible,
.menu-button:focus-visible,
.carousel-controls button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.button-primary {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 10px 28px rgba(255, 111, 77, 0.28);
}

.button-primary:hover {
  color: var(--white);
  background: var(--coral-deep);
  box-shadow: 0 16px 32px rgba(234, 88, 12, 0.3);
}

.button-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--navy);
}

.button-secondary:hover {
  color: var(--navy);
  background: var(--sky);
}

.button-light {
  color: var(--navy-deep);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.button-light:hover {
  color: var(--navy-deep);
  background: var(--yellow);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(30, 42, 122, 0.1);
  background: rgba(245, 246, 255, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 94px;
  align-items: center;
  gap: 30px;
}

.brand {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  display: grid;
  width: 52px;
  height: 52px;
  overflow: visible;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.brand-mark-image {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 5px 8px rgba(30, 42, 122, 0.18));
}

.brand-copy {
  display: grid;
  line-height: 1.25;
}

.brand-copy strong {
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 700;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.035em;
}

.desktop-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: clamp(14px, 1.6vw, 25px);
}

.desktop-nav a {
  position: relative;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 100%;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  transition: right 220ms ease;
}

.desktop-nav a:hover::after {
  right: 0;
}

.header-cta {
  min-height: 48px;
  padding: 11px 19px;
  font-size: 0.82rem;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
}

.mobile-nav {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  padding-top: clamp(68px, 8vw, 110px);
  background:
    radial-gradient(circle at 7% 4%, rgba(255, 209, 71, 0.26), transparent 25%),
    radial-gradient(circle at 94% 92%, rgba(147, 197, 253, 0.4), transparent 27%),
    var(--paper);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  gap: clamp(42px, 6vw, 90px);
}

.hero-copy h1 {
  max-width: 800px;
  margin: 26px 0 26px;
}

.hero-copy h1 em {
  position: relative;
  display: inline;
  color: var(--coral);
  font-style: normal;
}

.hero-copy h1 em::after {
  position: absolute;
  z-index: -1;
  right: -8px;
  bottom: 5px;
  left: -8px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 209, 71, 0.5);
  content: "";
  transform: rotate(-1deg);
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 31px;
  color: #414b6d;
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-proof {
  display: flex;
  margin-top: 42px;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-proof i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
}

.hero-visual {
  position: relative;
  min-height: 590px;
}

.portrait-frame {
  position: absolute;
  inset: 0 2% 0 4%;
  overflow: hidden;
  border-radius: 48% 48% 28px 28px;
}

.portrait-frame::after {
  position: absolute;
  right: 3%;
  bottom: 3%;
  left: 3%;
  height: 20%;
  border-radius: 28px;
  background: linear-gradient(180deg, transparent, rgba(13, 27, 90, 0.08));
  content: "";
}

.portrait-backdrop {
  position: absolute;
  inset: 8% 2% 3%;
  border: 1px solid rgba(30, 42, 122, 0.12);
  border-radius: 48% 48% 28px 28px;
  background: linear-gradient(165deg, rgba(255, 209, 71, 0.88), rgba(255, 111, 77, 0.92) 68%);
  transform: rotate(2deg);
}

.portrait-frame img {
  position: absolute;
  z-index: 2;
  right: 2%;
  bottom: -2%;
  width: 96%;
  height: 96%;
  object-fit: contain;
}

.floating-note {
  position: absolute;
  z-index: 3;
  display: flex;
  max-width: 240px;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border: 1px solid rgba(30, 42, 122, 0.1);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.floating-note p {
  min-width: 0;
  flex: 1 1 auto;
  margin: 0;
  color: var(--navy);
  font-size: 0.77rem;
  font-weight: 600;
  line-height: 1.45;
}

.floating-note span,
.floating-note svg {
  flex: 0 0 auto;
  color: var(--coral);
  font-size: 0.83rem;
  font-weight: 800;
}

.floating-note > svg {
  display: block;
  width: 18px;
  min-width: 18px;
  max-width: 18px;
  height: 18px;
  min-height: 18px;
  max-height: 18px;
  flex: 0 0 18px;
}

.floating-note-top {
  top: 15%;
  left: -7%;
}

.floating-note-bottom {
  right: -5%;
  bottom: 11%;
  width: 240px;
}

.hero-orb {
  position: absolute;
  border: 1px solid rgba(30, 42, 122, 0.08);
  border-radius: 50%;
}

.hero-orb-one {
  top: 14%;
  left: -70px;
  width: 170px;
  height: 170px;
}

.hero-orb-two {
  right: -90px;
  bottom: 5%;
  width: 240px;
  height: 240px;
}

.reveal {
  animation: rise-in 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal-delay {
  animation-delay: 120ms;
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Intro */
.intro-strip {
  color: var(--white);
  background: var(--navy);
}

.intro-strip-grid {
  display: grid;
  padding-block: 47px;
  align-items: center;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.35fr);
  gap: clamp(36px, 5vw, 70px);
}

.intro-statement {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.77);
  font-size: clamp(1.18rem, 2vw, 1.62rem);
  line-height: 1.52;
}

.intro-statement span {
  display: block;
  color: var(--yellow);
  font-weight: 600;
}

.intro-principles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.intro-principles div {
  display: grid;
  min-height: 76px;
  padding-inline: clamp(12px, 1.4vw, 20px);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  align-content: center;
  gap: 3px;
}

.intro-principles strong {
  color: var(--coral);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.intro-principles span {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.35;
}

/* Shared section headings */
.section-heading h2 {
  margin: 20px 0 0;
}

.split-heading {
  display: grid;
  margin-bottom: clamp(45px, 6vw, 74px);
  align-items: end;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 65px;
}

.split-heading h2 {
  max-width: 840px;
}

.split-heading > p {
  margin: 0 0 6px;
  color: var(--muted);
  line-height: 1.75;
}

/* About */
.about {
  padding-block: clamp(58px, 6vw, 86px);
  background: var(--white);
}

.about-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(390px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(44px, 6vw, 90px);
}

.sticky-heading {
  align-self: start;
}

.about-title {
  margin-top: 14px;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  line-height: 1.08;
}

.about-title span {
  display: block;
  white-space: nowrap;
}

.about-visual {
  width: 100%;
  margin-top: 28px;
}

.about-visual img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  object-fit: contain;
}

.about-content {
  max-width: 700px;
}

.about-content > p {
  color: var(--muted);
  line-height: 1.7;
}

.about-content .about-lead {
  color: var(--ink);
  font-size: clamp(1.08rem, 1.55vw, 1.42rem);
  font-weight: 500;
  line-height: 1.55;
}

.about-content .about-detail {
  margin-block: 15px 0;
  font-size: 0.9rem;
}

.about-quote {
  display: grid;
  margin: 28px 0 24px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  grid-template-columns: auto 1fr;
  gap: 18px;
}

.about-quote svg {
  width: 28px;
  color: var(--coral);
}

.about-quote p {
  margin: 0;
  color: var(--navy);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.6;
}

.about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.about-trust {
  margin-top: 27px;
}

.about-trust > p {
  margin: 0 0 11px;
  color: var(--coral);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-trust-tag {
  display: inline-flex;
  min-height: 34px;
  padding: 7px 13px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: var(--paper);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.2;
}

a.about-trust-tag {
  gap: 6px;
  border-color: var(--coral);
  color: var(--navy-deep);
  background: var(--yellow);
  box-shadow: 0 7px 16px rgba(30, 42, 122, 0.14);
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

a.about-trust-tag::after {
  content: "↗";
  font-size: 0.82rem;
  line-height: 1;
  transition: transform 180ms ease;
}

a.about-trust-tag:hover {
  border-color: var(--navy);
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 9px 20px rgba(30, 42, 122, 0.2);
  transform: translateY(-2px);
}

a.about-trust-tag:hover::after {
  transform: translate(2px, -2px);
}

.about-links a,
.section-end-link a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
}

.about-links svg,
.section-end-link svg {
  width: 18px;
  transition: transform 180ms ease;
}

.about-links a:hover svg,
.section-end-link a:hover svg {
  transform: translate(3px, -3px);
}

/* Training cards */
.trainings {
  background: var(--paper);
}

.training-list {
  display: grid;
  gap: 18px;
}

.training-card {
  position: relative;
  display: grid;
  min-height: 290px;
  padding: clamp(29px, 4vw, 50px);
  overflow: hidden;
  border: 1px solid rgba(30, 42, 122, 0.09);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  grid-template-columns: 70px minmax(0, 1.05fr) minmax(300px, 0.82fr) 62px;
  gap: 30px;
  color: inherit;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.training-card::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 8px;
  background: var(--card-accent);
  content: "";
}

.training-card:hover {
  color: inherit;
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.training-card:hover .round-link,
.training-card:focus-visible .round-link {
  color: var(--white);
  background: var(--navy);
  transform: rotate(4deg) scale(1.05);
}

.training-coral { --card-accent: var(--coral); }
.training-blue { --card-accent: var(--navy); }
.training-yellow { --card-accent: var(--yellow); }

.training-index {
  color: var(--card-accent);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.training-eyebrow-row {
  display: flex;
  min-height: 26px;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.training-eyebrow-row small {
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--yellow);
  font-size: 0.59rem;
}

.training-main h3 {
  margin: 20px 0 15px;
}

.training-main > p {
  max-width: 570px;
  margin-bottom: 0;
  color: var(--muted);
}

.training-questions {
  display: flex;
  padding-left: 32px;
  border-left: 1px solid var(--line);
  flex-direction: column;
  justify-content: center;
  gap: 13px;
}

.training-questions p {
  display: grid;
  margin: 0;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.5;
  grid-template-columns: 19px 1fr;
  gap: 9px;
}

.training-questions svg {
  width: 18px;
  height: 18px;
  padding: 3px;
  border-radius: 50%;
  color: var(--white);
  background: var(--card-accent);
}

.training-questions > span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.035em;
}

.round-link {
  display: grid;
  width: 58px;
  height: 58px;
  margin: auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  background: var(--paper);
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.round-link:hover {
  color: var(--white);
  background: var(--navy);
  transform: rotate(4deg) scale(1.05);
}

/* Method */
.method {
  padding-block: clamp(48px, 5vw, 68px);
  color: var(--white);
  background: var(--navy-deep);
}

.method-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(36px, 5vw, 64px);
}

.method-visual {
  position: relative;
  width: min(400px, 100%);
  margin-inline: auto;
}

.method-visual::before {
  position: absolute;
  z-index: 0;
  inset: 12% -5% -7% 9%;
  border-radius: 44% 23% 35% 24%;
  background: var(--coral);
  content: "";
  transform: rotate(-5deg);
}

.method-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 55px rgba(2, 13, 78, 0.28);
  object-fit: contain;
}

.method-content h2 {
  max-width: 660px;
  margin: 14px 0 20px;
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.08;
}

.method-content ol {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-content li {
  display: grid;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  grid-template-columns: 38px 1fr;
  gap: 10px;
}

.method-content li > span {
  color: var(--coral);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.method-content li strong {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
  font-size: 0.84rem;
}

.method-content li p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.74rem;
  line-height: 1.45;
}

/* Expertise */
.expertise {
  padding-block: clamp(54px, 6vw, 82px);
  background: var(--white);
}

.expertise .split-heading {
  margin-bottom: clamp(30px, 4vw, 46px);
}

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

.expertise-card {
  display: flex;
  min-height: 308px;
  padding: clamp(24px, 2.7vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  flex-direction: column;
  cursor: pointer;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.expertise-card:hover {
  color: inherit;
  border-color: var(--sky-strong);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.expertise-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.expertise-card-head > span {
  color: var(--coral);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.expertise-card-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
}

.expertise-card-head svg {
  width: 17px;
}

.expertise-card h3 {
  margin: 22px 0 8px;
}

.expertise-lead {
  max-width: 520px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
}

.expertise-card ul {
  display: grid;
  margin: 20px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  gap: 7px;
}

.expertise-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

.expertise-card li::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.expertise-cta {
  align-items: flex-start;
  justify-content: center;
  color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 209, 71, 0.22), transparent 27%),
    var(--navy);
}

.expertise-cta:hover {
  color: rgba(255, 255, 255, 0.76);
  border-color: transparent;
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 209, 71, 0.29), transparent 31%),
    var(--navy);
}

.expertise-cta h3 {
  max-width: 470px;
  margin: 20px 0 15px;
  color: var(--white);
  font-size: clamp(1.65rem, 3vw, 2.65rem);
}

.expertise-cta > p {
  max-width: 490px;
  margin-bottom: 20px;
  font-size: 0.82rem;
}

.expertise-cta > .button {
  pointer-events: none;
}

.expertise-cta:hover .button-light {
  color: var(--navy-deep);
  background: var(--yellow);
}

/* Blog */
.blog-section {
  overflow: hidden;
  padding-block: clamp(48px, 5vw, 68px);
  background: var(--lavender);
}

.blog-heading {
  margin-bottom: clamp(22px, 3vw, 34px);
}

.blog-heading h2 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
}

.blog-heading > p {
  font-size: 0.84rem;
  line-height: 1.55;
}

.blog-carousel {
  position: relative;
}

.blog-viewport {
  overflow: hidden;
}

.carousel-controls {
  display: flex;
  margin-bottom: 10px;
  justify-content: flex-end;
  gap: 9px;
}

.carousel-controls button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.carousel-controls button:hover {
  color: var(--white);
  background: var(--navy);
}

.carousel-controls button svg {
  width: 16px;
  height: 16px;
}

.blog-track {
  display: grid;
  padding: 4px 0 12px;
  grid-auto-columns: calc((100% - 32px) / 3);
  grid-auto-flow: column;
  gap: 16px;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.blog-card {
  position: relative;
  display: flex;
  height: 430px;
  min-height: 430px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--navy);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  flex-direction: column;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.blog-card:hover {
  color: var(--navy);
  border-color: rgba(30, 42, 122, 0.18);
  background: var(--paper);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.blog-card-coral { --blog-accent: var(--coral); }
.blog-card-blue { --blog-accent: var(--navy); }
.blog-card-yellow { --blog-accent: var(--yellow); }
.blog-card-sky { --blog-accent: var(--sky-strong); }

.blog-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card-top span:last-child {
  padding-right: 0;
}

.blog-number {
  margin: 14px 0 8px;
  color: var(--blog-accent);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.blog-card h3 {
  display: -webkit-box;
  min-height: calc(1.32em * 2);
  margin-bottom: 9px;
  overflow: hidden;
  font-size: clamp(1.02rem, 1.3vw, 1.22rem);
  line-height: 1.32;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.blog-card > p {
  display: -webkit-box;
  margin-bottom: 10px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.blog-card-link {
  display: inline-flex;
  margin-top: auto;
  align-items: center;
  gap: 7px;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
}

.blog-card-link svg {
  width: 16px;
  height: 16px;
}

.section-end-link {
  display: flex;
  margin-top: 12px;
  justify-content: flex-end;
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  padding-top: clamp(75px, 9vw, 120px);
  scroll-margin-top: 96px;
  color: rgba(255, 255, 255, 0.74);
  background: var(--navy-deep);
}

.footer-glow {
  position: absolute;
  top: -260px;
  left: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 111, 77, 0.17);
  filter: blur(5px);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  padding-bottom: 75px;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 110px;
}

.footer-intro h2 {
  max-width: 780px;
  margin: 19px 0 24px;
  color: var(--white);
}

.footer-intro p {
  max-width: 680px;
  margin-bottom: 30px;
}

.footer-contact {
  display: flex;
  padding-left: 45px;
  border-left: 1px solid rgba(255, 255, 255, 0.17);
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  font-size: 0.85rem;
}

.footer-contact a,
.footer-email-copy {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 500;
}

.footer-email-copy {
  width: fit-content;
  max-width: 100%;
  border-radius: 8px;
  cursor: copy;
  transition: color 180ms ease;
}

.footer-email-copy:hover,
.footer-email-copy:focus-visible {
  color: var(--yellow);
}

.footer-email-copy:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.footer-email-address {
  overflow-wrap: anywhere;
  -webkit-user-select: text;
  user-select: text;
}

.footer-copy-icon {
  display: grid;
  width: 30px;
  height: 30px;
  margin-left: 2px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  place-items: center;
  color: var(--yellow);
  background: rgba(255, 255, 255, 0.08);
  flex: 0 0 auto;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}

.footer-email-copy:hover .footer-copy-icon,
.footer-email-copy:focus-visible .footer-copy-icon {
  border-color: var(--yellow);
  color: var(--navy-deep);
  background: var(--yellow);
  transform: translateY(-1px);
}

.footer-contact svg {
  width: 20px;
}

.footer-copy-icon svg {
  width: 15px;
  height: 15px;
}

.footer-kicker {
  margin-bottom: 9px;
  color: var(--yellow);
  font-size: 1rem;
  font-weight: 700;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 78px;
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  font-size: 0.72rem;
}

.footer-bottom > div {
  display: flex;
  gap: 24px;
}

.footer-bottom a:hover {
  color: var(--white);
}

.site-footer a:hover {
  color: var(--yellow);
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.copy-toast {
  position: fixed;
  z-index: 1000;
  right: 24px;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  display: flex;
  max-width: min(420px, calc(100vw - 32px));
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  align-items: center;
  gap: 10px;
  color: var(--white);
  background: var(--navy-deep);
  box-shadow: var(--shadow-md);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

.copy-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.copy-toast.is-error {
  background: #7f1d1d;
}

.copy-toast-icon {
  display: grid;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  place-items: center;
  color: var(--navy-deep);
  background: var(--yellow);
  flex: 0 0 auto;
}

.copy-toast-icon svg {
  width: 14px;
  height: 14px;
}

.copy-toast.is-error .copy-toast-icon {
  display: none;
}

/* Interior pages */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(82px, 10vw, 140px);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 209, 71, 0.26), transparent 24%),
    var(--paper);
}

.page-hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: clamp(55px, 8vw, 105px);
}

.page-hero h1 {
  margin: 24px 0;
}

.page-hero-copy > p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.page-hero-visual img {
  width: 100%;
}

.page-hero-actions {
  display: flex;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 13px;
}

.page-summary {
  padding-block: 45px;
  color: var(--white);
  background: var(--navy);
}

.page-summary .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.page-summary p {
  max-width: 800px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.page-summary strong {
  color: var(--yellow);
}

/* Responsive */
@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .header-cta {
    margin-left: auto;
  }

  .menu-button {
    display: grid;
  }

  .mobile-nav {
    display: grid;
    padding: 12px 24px 24px;
    border-top: 1px solid var(--line);
    background: var(--paper);
  }

  .mobile-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 600;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.8fr;
    gap: 35px;
  }

  .training-card {
    grid-template-columns: 52px minmax(0, 1fr) 54px;
  }

  .training-questions {
    padding: 25px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
    grid-column: 2 / 3;
  }

  .round-link {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .blog-track {
    grid-auto-columns: calc((100% - 16px) / 2);
  }
}

@media (max-width: 850px) {
  h1 {
    font-size: clamp(2.6rem, 9.5vw, 4.35rem);
  }

  .hero-grid,
  .page-hero-grid,
  .about-grid,
  .method-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-bottom: 70px;
  }

  .hero-visual {
    width: min(560px, 100%);
    min-height: 610px;
    margin: 0 auto;
  }

  .intro-strip-grid,
  .split-heading {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .intro-principles {
    max-width: 540px;
  }

  .about-grid {
    gap: 45px;
  }

  .about-visual {
    width: min(620px, 100%);
    margin-top: 28px;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .blog-track {
    grid-auto-columns: min(390px, 75vw);
  }

  .footer-grid {
    gap: 55px;
  }

  .footer-contact {
    padding: 34px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.17);
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 32px, 1240px);
  }

  .section-pad {
    padding-block: 75px;
  }

  .copy-toast {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    left: 16px;
    max-width: none;
    border-radius: 16px;
    justify-content: center;
  }

  .method.section-pad,
  .blog-section.section-pad {
    padding-block: 48px;
  }

  .expertise.section-pad {
    padding-block: 54px;
  }

  .header-inner {
    min-height: 80px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-copy strong {
    font-size: 0.94rem;
  }

  .brand-copy small {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .menu-button {
    margin-left: auto;
  }

  .hero {
    min-height: 0;
    padding-top: 62px;
  }

  .hero-copy h1 {
    margin-top: 20px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    gap: 9px;
  }

  .hero-visual {
    min-height: 470px;
  }

  .floating-note {
    max-width: 195px;
    padding: 11px 13px;
  }

  .floating-note-top {
    top: 11%;
    left: -2%;
  }

  .floating-note-bottom {
    right: -2%;
    bottom: 5%;
  }

  .intro-strip-grid {
    padding-block: 38px;
    gap: 26px;
  }

  .intro-principles {
    width: 100%;
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-principles div {
    min-height: 68px;
    padding: 11px 12px;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.17);
  }

  .intro-principles div:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .about-quote {
    padding: 22px;
  }

  .training-card {
    min-height: 0;
    padding: 29px 25px 29px 31px;
    grid-template-columns: 1fr 48px;
    gap: 24px 14px;
  }

  .training-index {
    grid-column: 1;
  }

  .training-main {
    grid-column: 1 / 3;
  }

  .training-questions {
    grid-column: 1 / 3;
  }

  .round-link {
    width: 48px;
    height: 48px;
    margin: 0;
    grid-column: 2;
    grid-row: 1;
  }

  .method-grid {
    gap: 26px;
  }

  .method-visual {
    width: min(250px, 100%);
  }

  .method-content li {
    padding-block: 9px;
    grid-template-columns: 34px 1fr;
  }

  .expertise-card {
    min-height: 0;
  }

  .expertise .split-heading,
  .blog-heading {
    gap: 22px;
  }

  .blog-track {
    margin-right: -16px;
    grid-auto-columns: 88vw;
  }

  .blog-card {
    height: 410px;
    min-height: 410px;
    padding: 18px;
  }

  .blog-card-top span:last-child {
    padding-right: 0;
  }

  .page-summary .shell,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Projects */
.project-hero-image {
  position: relative;
  display: grid;
  height: clamp(380px, 38vw, 520px);
  place-items: center;
}

.project-hero-image::before {
  position: absolute;
  z-index: 0;
  inset: 9% 2% 0 8%;
  border-radius: 49% 22% 42% 24%;
  background: var(--coral);
  content: "";
  transform: rotate(3deg);
}

.project-hero-image img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.summary-label {
  flex-shrink: 0;
  color: var(--coral);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-list-section {
  background: var(--white);
}

.project-list {
  display: grid;
  gap: 17px;
}

.project-card {
  position: relative;
  display: grid;
  color: inherit;
  min-height: 315px;
  padding: clamp(30px, 4vw, 50px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  grid-template-columns: 110px minmax(0, 1fr) 180px;
  gap: 40px;
  transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.project-card:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.project-card:hover {
  color: inherit;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

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

.project-meta > span {
  color: var(--coral);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.project-meta small {
  color: var(--muted);
  font-size: 0.75rem;
}

.project-copy {
  max-width: 750px;
}

.project-status {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--sky);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.project-copy h3 {
  margin: 22px 0 14px;
}

.project-copy > p {
  color: var(--muted);
}

.project-tags {
  display: flex;
  margin-top: 28px;
  flex-wrap: wrap;
  gap: 8px;
}

.project-tags span {
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
}

.project-symbol {
  position: relative;
  display: grid;
  width: 160px;
  height: 160px;
  margin: auto;
  place-items: center;
}

.project-symbol span {
  position: absolute;
  width: 93px;
  height: 93px;
  border: 2px solid var(--coral);
  border-radius: 50%;
}

.project-symbol span:nth-child(1) { transform: translate(-26px, -18px); }
.project-symbol span:nth-child(2) { border-color: var(--navy); transform: translate(28px, -14px); }
.project-symbol span:nth-child(3) { border-color: var(--yellow); transform: translate(1px, 31px); }

.project-collab {
  color: var(--white);
  background: var(--navy-deep);
}

.project-collab-grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: clamp(60px, 10vw, 145px);
}

.project-collab h2 {
  margin: 20px 0 0;
  color: var(--white);
}

.project-collab-details > p {
  color: rgba(255, 255, 255, 0.7);
}

.project-collab-details ul {
  display: grid;
  margin: 27px 0 34px;
  padding: 0;
  list-style: none;
  gap: 14px;
}

.project-collab-details li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--white);
  font-size: 0.9rem;
}

.project-collab-details li svg {
  flex: 0 0 auto;
  width: 19px;
  color: var(--yellow);
}

/* Project profiles */
.project-profile {
  overflow: clip;
  background: var(--white);
}

.project-profile-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 14%, rgba(255, 209, 71, 0.2), transparent 22%),
    radial-gradient(circle at 4% 90%, rgba(147, 197, 253, 0.15), transparent 29%),
    var(--navy-deep);
}

.project-profile-hero::after {
  position: absolute;
  right: -9vw;
  bottom: -20vw;
  width: min(44vw, 650px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.project-profile-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: min(760px, calc(100vh - 80px));
  align-items: center;
  padding-block: clamp(90px, 11vw, 150px);
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(50px, 9vw, 135px);
}

.project-profile-hero-copy {
  max-width: 850px;
}

.project-profile-back {
  display: flex;
  width: fit-content;
  align-items: center;
  margin-bottom: clamp(35px, 6vw, 72px);
  gap: 9px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 600;
}

.project-profile-back svg {
  width: 17px;
  height: 17px;
}

.project-profile-back:hover {
  color: var(--yellow);
  background: transparent;
  box-shadow: none;
}

.project-profile-hero h1 {
  max-width: 900px;
  margin: 19px 0 26px;
  color: var(--white);
  font-size: clamp(2.8rem, 5vw, 5.25rem);
  overflow-wrap: anywhere;
}

.project-profile-hero-copy > p {
  max-width: 750px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.23rem);
  line-height: 1.7;
}

.project-profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.project-profile-meta span {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.7rem;
  font-weight: 600;
}

.project-profile-mark {
  position: relative;
  width: min(360px, 100%);
  aspect-ratio: 1;
  margin-inline: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 42% 58% 44% 56%;
  background: rgba(255, 255, 255, 0.05);
  transform: rotate(-6deg);
}

.project-profile-number {
  position: absolute;
  inset: 50% auto auto 50%;
  color: var(--white);
  font-size: clamp(4.8rem, 9vw, 8.5rem);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 1;
  transform: translate(-53%, -50%) rotate(6deg);
}

.project-profile-number::before {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: -1;
  width: 112%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--project-accent, var(--coral));
  content: "";
  transform: translate(-48%, -50%);
}

.project-profile-orbit,
.project-profile-dot {
  position: absolute;
  display: block;
}

.project-profile-orbit {
  border: 2px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
}

.project-profile-orbit-one {
  inset: 12% 8%;
  transform: rotate(35deg) scaleY(0.42);
}

.project-profile-orbit-two {
  inset: 9% 18%;
  border-color: rgba(255, 209, 71, 0.72);
  transform: rotate(-40deg) scaleY(0.47);
}

.project-profile-dot {
  width: 18px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--yellow);
}

.project-profile-dot-one {
  top: 19%;
  right: 13%;
}

.project-profile-dot-two {
  bottom: 15%;
  left: 17%;
  width: 12px;
  background: var(--sky-strong);
}

.project-profile[data-project-tone="sky"] {
  --project-accent: var(--sky-strong);
}

.project-profile[data-project-tone="blue"] {
  --project-accent: #60a5fa;
}

.project-profile[data-project-tone="yellow"] {
  --project-accent: var(--yellow);
}

.project-profile[data-project-tone="yellow"] .project-profile-number,
.project-profile[data-project-tone="sky"] .project-profile-number,
.project-profile[data-project-tone="green"] .project-profile-number {
  color: var(--navy-deep);
}

.project-profile[data-project-tone="lavender"] {
  --project-accent: #a5b4fc;
}

.project-profile[data-project-tone="green"] {
  --project-accent: #5ee0b8;
}

.project-profile-promise {
  color: var(--white);
  background: var(--navy);
}

.project-profile-promise .shell {
  display: grid;
  align-items: center;
  padding-block: 29px;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 30px;
}

.project-profile-promise span {
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.project-profile-promise p {
  margin: 0;
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 500;
  line-height: 1.45;
}

.project-profile-intro-grid,
.project-profile-outcomes-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(55px, 10vw, 145px);
}

.project-profile-intro h2,
.project-profile-outcomes h2 {
  margin: 19px 0 0;
}

.project-profile-rich-copy {
  max-width: 740px;
}

.project-profile-rich-copy p {
  margin-bottom: 22px;
  color: var(--body);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.85;
}

.project-profile-rich-copy p:last-child {
  margin-bottom: 0;
}

.project-profile-features,
.project-profile-evidence {
  background: var(--lavender);
}

.project-profile-card-grid {
  display: grid;
  margin-top: clamp(45px, 7vw, 82px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

.project-profile-card-grid article {
  min-height: 290px;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
}

.project-profile-card-grid article > span {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--coral);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.project-profile-card-grid h3 {
  margin-bottom: 13px;
  font-size: clamp(1.15rem, 1.7vw, 1.48rem);
}

.project-profile-card-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.project-profile-evidence {
  padding-top: 0;
}

.project-profile-stats {
  display: grid;
  margin-top: clamp(42px, 7vw, 78px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.project-profile-stats > div {
  display: flex;
  min-height: 160px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  flex-direction: column;
  gap: 12px;
}

.project-profile-stats strong {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
}

.project-profile-stats span {
  color: var(--muted);
  font-size: 0.78rem;
}

.project-profile-table-wrap {
  max-width: 100%;
  margin-top: 24px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  -webkit-overflow-scrolling: touch;
}

.project-profile-table-wrap:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.project-profile-table {
  width: 100%;
}

.project-profile-table-wrap table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.project-profile-table-wrap th,
.project-profile-table-wrap td {
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.project-profile-table-wrap th {
  color: var(--navy);
  background: rgba(219, 234, 254, 0.58);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.project-profile-table-wrap td {
  color: var(--body);
  font-size: 0.83rem;
}

.project-profile-table-wrap tbody tr:last-child td {
  border-bottom: 0;
}

.project-profile-table-note {
  max-width: 900px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.7;
}

.project-profile-practice {
  color: var(--white);
  background: var(--navy-deep);
}

.project-profile-practice h2,
.project-profile-practice h3 {
  color: var(--white);
}

.project-profile-practice .split-heading > p {
  color: rgba(255, 255, 255, 0.66);
}

.project-profile-steps {
  display: grid;
  margin: clamp(44px, 7vw, 78px) 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  list-style: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-profile-steps li {
  display: grid;
  min-height: 190px;
  padding: 30px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 20px;
}

.project-profile-steps li:nth-child(even) {
  border-right: 0;
}

.project-profile-steps li > span {
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.project-profile-steps h3 {
  margin-bottom: 10px;
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
}

.project-profile-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.84rem;
  line-height: 1.72;
}

.project-profile-outcomes ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 12px;
}

.project-profile-outcomes li {
  display: flex;
  align-items: flex-start;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  gap: 15px;
}

.project-profile-outcomes li svg {
  flex: 0 0 auto;
  width: 20px;
  margin-top: 2px;
  color: var(--coral);
}

.project-profile-outcomes li span {
  color: var(--ink);
  font-size: 0.91rem;
  line-height: 1.65;
}

.project-profile-boundary {
  padding-block: clamp(55px, 7vw, 84px);
  background: var(--yellow);
}

.project-profile-boundary .shell {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(45px, 9vw, 130px);
}

.project-profile-boundary span {
  color: var(--navy-deep);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.project-profile-boundary h2 {
  margin: 12px 0 0;
  color: var(--navy-deep);
  font-size: clamp(1.65rem, 3vw, 2.8rem);
}

.project-profile-boundary p {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.8;
}

.project-profile-sources {
  background: var(--white);
}

.project-profile-sources .shell {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(40px, 8vw, 110px);
}

.project-profile-sources p {
  margin: 0 0 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.project-profile-cta {
  padding: 0 0 clamp(72px, 9vw, 120px);
  background: var(--white);
}

.project-profile-cta-card {
  display: grid;
  align-items: end;
  padding: clamp(38px, 6vw, 72px);
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 209, 71, 0.24), transparent 25%),
    var(--navy);
  grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.7fr);
  gap: 50px;
}

.project-profile-cta h2 {
  max-width: 780px;
  margin: 18px 0;
  color: var(--white);
}

.project-profile-cta p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.project-profile-cta-actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 18px;
}

.project-profile-cta-actions .button {
  width: 100%;
}

.text-link-inverse {
  display: inline-flex;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--coral);
  text-underline-offset: 4px;
}

.text-link-inverse:hover {
  color: var(--yellow);
  background: transparent;
  box-shadow: none;
}

/* Social media */
.social-hero {
  padding-block: clamp(90px, 11vw, 150px);
}

.social-hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  gap: clamp(50px, 8vw, 110px);
}

.social-hero-art {
  position: relative;
  min-height: 540px;
}

.social-hero-art::before {
  position: absolute;
  inset: 3% 3% 4%;
  border-radius: 47% 53% 28% 32%;
  background: var(--navy);
  content: "";
  transform: rotate(3deg);
}

.social-hero-art::after {
  position: absolute;
  right: -2%;
  bottom: 7%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
}

.social-mini-card {
  position: absolute;
  z-index: 2;
  display: flex;
  width: min(330px, 76%);
  min-height: 250px;
  padding: 29px;
  border-radius: 26px;
  box-shadow: var(--shadow-md);
  flex-direction: column;
  transform: rotate(-4deg);
}

.social-mini-card span {
  margin-bottom: auto;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.social-mini-card strong {
  font-size: 1.45rem;
  line-height: 1.35;
}

.social-mini-card small {
  margin-top: 18px;
  font-size: 0.68rem;
}

.social-mini-one {
  top: 9%;
  left: 2%;
  color: var(--white);
  background: var(--coral);
}

.social-mini-two {
  right: 0;
  bottom: 3%;
  color: var(--navy-deep);
  background: var(--yellow);
  transform: rotate(5deg);
}

.social-ping {
  position: absolute;
  z-index: 4;
  top: 44%;
  right: -3%;
  padding: 11px 16px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  font-size: 0.7rem;
  font-weight: 800;
  transform: rotate(-5deg);
}

.social-channels {
  background: var(--white);
}

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

.channel-card {
  display: flex;
  min-height: 600px;
  padding: clamp(32px, 5vw, 58px);
  border-radius: var(--radius-lg);
  flex-direction: column;
}

.channel-linkedin {
  color: rgba(255, 255, 255, 0.76);
  background: #0967a3;
}

.channel-instagram {
  color: var(--muted);
  background: linear-gradient(145deg, #fff2d0, #ffe1eb 47%, #e8ddff);
}

.channel-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 32px;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.93);
}

.channel-icon svg {
  width: 32px;
  height: 32px;
  color: var(--navy);
}

.channel-handle {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.channel-card h3 {
  margin: 19px 0 16px;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
}

.channel-linkedin h3 {
  color: var(--white);
}

.channel-card > p {
  max-width: 520px;
  font-size: 1rem;
}

.channel-card ul {
  display: grid;
  margin: 35px 0;
  padding: 25px 0 0;
  border-top: 1px solid currentColor;
  list-style: none;
  gap: 11px;
}

.channel-card li {
  position: relative;
  padding-left: 18px;
  font-size: 0.85rem;
}

.channel-card li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
}

.channel-instagram li::before {
  background: var(--coral);
}

.channel-card > a {
  display: inline-flex;
  margin-top: auto;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
}

.channel-card > a svg {
  width: 19px;
}

.social-collab {
  background: var(--paper);
}

.social-collab-card {
  display: grid;
  padding: clamp(40px, 6vw, 75px);
  border-radius: var(--radius-lg);
  color: rgba(255, 255, 255, 0.74);
  background: var(--navy);
  grid-template-columns: 1.12fr 0.68fr;
  gap: 85px;
}

.social-collab-card h2 {
  margin: 20px 0 0;
  color: var(--white);
}

.social-collab-card p {
  margin-bottom: 27px;
}

/* Gen Z training landing page */
.training-landing-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(80px, 9vw, 120px);
  color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 8% 5%, rgba(255, 111, 77, 0.24), transparent 28%),
    var(--navy);
}

.training-landing-hero::after {
  position: absolute;
  right: -100px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.training-landing-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: clamp(55px, 8vw, 110px);
}

.training-landing-copy h1 {
  margin: 25px 0;
  color: var(--white);
}

.training-landing-copy h1 em {
  color: var(--yellow);
  font-style: normal;
}

.training-landing-copy > p {
  max-width: 690px;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

.training-landing-actions {
  display: flex;
  margin-top: 33px;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.text-link-inverse {
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
}

.training-format-row {
  display: flex;
  margin-top: 42px;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--white);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.training-format-row i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
}

.training-landing-visual {
  position: relative;
  min-height: 600px;
}

.training-photo-wrap {
  position: absolute;
  inset: 3% 3% 2% 6%;
  overflow: hidden;
  border-radius: 46% 46% 28px 28px;
  background: var(--coral);
}

.training-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stereotype-card {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 220px;
  padding: 18px 20px;
  border-radius: 18px;
  color: var(--navy);
  background: var(--white);
  box-shadow: var(--shadow-md);
  gap: 7px;
}

.stereotype-card span {
  font-size: 0.73rem;
  line-height: 1.45;
}

.stereotype-card strong {
  color: var(--coral);
  font-size: 0.86rem;
}

.stereotype-one {
  top: 13%;
  left: -7%;
  transform: rotate(-4deg);
}

.stereotype-two {
  right: -4%;
  bottom: 12%;
  transform: rotate(4deg);
}

.training-thesis {
  color: var(--navy);
  background: var(--yellow);
}

.training-thesis-grid {
  display: grid;
  padding-block: 50px;
  align-items: center;
  grid-template-columns: 180px 1fr;
  gap: 45px;
}

.training-thesis-grid > span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.training-thesis-grid p {
  max-width: 950px;
  margin: 0;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  line-height: 1.55;
}

.training-problem {
  background: var(--white);
}

.training-problem-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(65px, 10vw, 145px);
}

.training-problem-copy > p {
  color: var(--muted);
  line-height: 1.82;
}

.training-problem-copy .large-copy {
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.63rem);
  font-weight: 500;
  line-height: 1.62;
}

.myth-note {
  display: grid;
  margin-top: 37px;
  padding: 26px 28px;
  border-left: 5px solid var(--coral);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--paper);
  grid-template-columns: 70px 1fr;
  gap: 20px;
}

.myth-note span {
  color: var(--coral);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.myth-note p {
  margin: 0;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
}

.outcomes {
  background: var(--paper);
}

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

.outcome-card {
  min-height: 360px;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.outcome-card > span {
  color: var(--coral);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.outcome-card h3 {
  margin: 45px 0 17px;
}

.outcome-card p {
  color: var(--muted);
  font-size: 0.88rem;
}

.program-detail {
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy-deep);
}

.program-detail-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(70px, 10vw, 150px);
}

.program-detail-copy h2 {
  margin: 20px 0 25px;
  color: var(--white);
}

.program-topics {
  margin: 0;
  padding: 0;
  list-style: none;
}

.program-topics li {
  display: grid;
  padding: 27px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  grid-template-columns: 60px 1fr;
  gap: 15px;
}

.program-topics li > span {
  color: var(--coral);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.program-topics strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
}

.program-topics p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.84rem;
}

.training-options {
  background: var(--white);
}

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

.options-grid article {
  min-height: 320px;
  padding: clamp(29px, 4vw, 43px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
}

.options-grid article > span {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--yellow);
  font-size: 0.68rem;
  font-weight: 800;
}

.options-grid h3 {
  margin: 44px 0 17px;
}

.options-grid p {
  color: var(--muted);
  font-size: 0.88rem;
}

.evidence-section {
  background: var(--lavender);
}

.evidence-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(65px, 9vw, 130px);
}

.evidence-grid h2 {
  margin: 20px 0 0;
}

.evidence-copy > p {
  color: var(--ink);
  font-size: 1.08rem;
}

.references-list {
  display: grid;
  margin-top: 35px;
  gap: 13px;
}

.references-list p {
  margin: 0;
  padding: 19px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 0.71rem;
  line-height: 1.65;
}

.training-final-cta {
  padding-block: 90px;
  background: var(--paper);
}

.training-final-card {
  display: flex;
  padding: clamp(40px, 6vw, 72px);
  border-radius: var(--radius-lg);
  align-items: center;
  justify-content: space-between;
  gap: 55px;
  color: rgba(255, 255, 255, 0.7);
  background: var(--coral);
}

.training-final-card h2 {
  max-width: 800px;
  margin: 19px 0 14px;
  color: var(--white);
}

.training-final-card p {
  margin: 0;
}

.training-final-card .button {
  flex: 0 0 auto;
}

.training-modules {
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 111, 77, 0.13), transparent 28%),
    var(--navy-deep);
}

.training-modules-heading h2 {
  color: var(--white);
}

.training-modules-heading > p {
  color: rgba(255, 255, 255, 0.7);
}

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

.training-module-card {
  position: relative;
  min-height: 410px;
  padding: clamp(30px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
}

.training-module-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--coral);
  content: "";
}

.training-module-card:nth-child(even)::before {
  background: var(--yellow);
}

.training-module-card > span {
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.training-module-card:nth-child(even) > span {
  color: var(--yellow);
}

.training-module-card h3 {
  margin: 35px 0 14px;
  color: var(--white);
}

.training-module-card p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
}

.training-module-card ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 10px;
}

.training-module-card li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
}

.training-module-card li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
  transform: translateY(-50%);
}

.training-module-card:nth-child(even) li::before {
  background: var(--yellow);
}

.training-gallery {
  background: var(--paper);
}

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

.training-gallery-grid figure {
  display: flex;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  flex-direction: column;
}

.training-gallery-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 12px;
  background: var(--white);
  object-fit: contain;
}

.training-gallery-grid figcaption {
  flex: 1;
  margin: 0;
  padding: 20px 24px 23px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.6;
}

.ai-training-hero {
  background:
    radial-gradient(circle at 88% 15%, rgba(255, 209, 71, 0.2), transparent 25%),
    radial-gradient(circle at 4% 92%, rgba(147, 197, 253, 0.17), transparent 28%),
    var(--navy-deep);
}

.ai-training-visual .training-photo-wrap {
  background: linear-gradient(145deg, var(--yellow), var(--coral));
}

@media (max-width: 900px) {
  .project-card {
    grid-template-columns: 75px 1fr;
  }

  .project-symbol {
    display: none;
  }

  .project-profile-hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .project-profile-hero-copy {
    max-width: 760px;
  }

  .project-profile-mark {
    width: min(310px, 72vw);
  }

  .project-profile-intro-grid,
  .project-profile-outcomes-grid,
  .project-profile-boundary .shell,
  .project-profile-sources .shell,
  .project-profile-cta-card {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .project-profile-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-profile-card-grid article {
    min-height: 245px;
  }

  .project-profile-card-grid article > span {
    margin-bottom: 36px;
  }

  .project-profile-cta-actions {
    width: min(360px, 100%);
  }

  .project-collab-grid,
  .social-hero-grid,
  .social-collab-card,
  .training-landing-grid,
  .training-problem-grid,
  .program-detail-grid,
  .evidence-grid {
    grid-template-columns: 1fr;
  }

  .social-hero-art,
  .training-landing-visual {
    width: min(560px, 100%);
    margin-inline: auto;
  }

  .social-collab-card,
  .training-problem-grid,
  .program-detail-grid,
  .evidence-grid {
    gap: 45px;
  }

  .training-landing-visual {
    min-height: 560px;
  }
}

@media (max-width: 700px) {
  .channel-grid,
  .outcome-grid,
  .options-grid,
  .training-module-grid,
  .training-gallery-grid {
    grid-template-columns: 1fr;
  }

  .channel-card {
    min-height: 520px;
  }

  .training-thesis-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .training-final-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .training-module-card {
    min-height: 0;
  }

  .project-profile-promise .shell {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .project-profile-promise p {
    padding: 0;
    border-left: 0;
  }

  .project-profile-stats,
  .project-profile-steps {
    grid-template-columns: 1fr;
  }

  .project-profile-steps li,
  .project-profile-steps li:nth-child(even) {
    min-height: 0;
    border-right: 0;
  }
}

@media (max-width: 540px) {
  .project-card {
    padding: 28px 24px;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .project-meta {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }

  .project-copy h3 {
    margin-top: 18px;
  }

  .project-profile-hero-grid {
    padding-block: 64px 72px;
    gap: 42px;
  }

  .project-profile-back {
    margin-bottom: 36px;
  }

  .project-profile-hero h1 {
    font-size: clamp(2.45rem, 11.8vw, 3.25rem);
  }

  .project-profile-mark {
    width: min(245px, 70vw);
  }

  .project-profile-card-grid {
    grid-template-columns: 1fr;
  }

  .project-profile-card-grid article {
    min-height: 0;
  }

  .project-profile-card-grid article > span {
    margin-bottom: 24px;
  }

  .project-profile-stats > div {
    min-height: 135px;
    padding: 25px;
  }

  .project-profile-steps li {
    padding: 25px 6px;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 13px;
  }

  .project-profile-outcomes li {
    padding: 19px;
  }

  .project-profile-cta-card {
    width: calc(100% - 32px);
    padding: 32px 24px;
    border-radius: var(--radius-md);
  }

  .social-hero-art {
    min-height: 470px;
  }

  .social-mini-card {
    width: 78%;
    min-height: 215px;
    padding: 24px;
  }

  .social-mini-card strong {
    font-size: 1.18rem;
  }

  .training-landing-visual {
    min-height: 455px;
  }

  .stereotype-card {
    width: 180px;
    padding: 14px;
  }

  .stereotype-one { left: -2%; }
  .stereotype-two { right: -2%; }

  .myth-note {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .outcome-card {
    min-height: 315px;
  }

  .training-final-cta {
    padding-block: 70px;
  }
}

/* Legal pages */
.legal-hero {
  padding: clamp(80px, 10vw, 135px) 0 55px;
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 209, 71, 0.19), transparent 24%),
    var(--navy);
}

.legal-hero-inner {
  max-width: 900px;
  margin-inline: auto;
}

.legal-hero h1 {
  margin: 20px 0 17px;
  color: var(--white);
}

.legal-hero p {
  margin-bottom: 35px;
}

.legal-tabs {
  display: inline-flex;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  gap: 4px;
}

.legal-tabs a {
  padding: 10px 17px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 600;
}

.legal-tabs a.active {
  color: var(--navy);
  background: var(--white);
}

.legal-document {
  background: var(--paper);
}

.legal-layout {
  display: grid;
  max-width: 1080px;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: clamp(45px, 8vw, 100px);
}

.legal-layout aside {
  position: sticky;
  top: 120px;
  height: fit-content;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.legal-layout aside span {
  display: block;
  margin-bottom: 9px;
  color: var(--coral);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-layout aside p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.6;
}

.legal-copy {
  min-width: 0;
}

.legal-copy .legal-intro {
  margin-bottom: 32px;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.75;
}

.legal-copy section {
  margin-bottom: 17px;
  padding: clamp(25px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.legal-copy h2 {
  margin-bottom: 23px;
  font-size: clamp(1.4rem, 2.3vw, 1.95rem);
  letter-spacing: -0.025em;
}

.legal-copy h3 {
  margin: 31px 0 12px;
  color: var(--ink);
  font-size: 0.92rem;
  letter-spacing: -0.01em;
}

.legal-copy p,
.legal-copy li,
.legal-copy dd {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.82;
}

.legal-copy a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-copy ol,
.legal-copy ul {
  display: grid;
  padding-left: 24px;
  gap: 7px;
}

.legal-copy strong {
  color: var(--ink);
}

.legal-copy dl {
  display: grid;
  margin: 0;
  gap: 10px;
}

.legal-copy dl > div {
  display: grid;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 150px 1fr;
  gap: 22px;
}

.legal-copy dt {
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
}

.legal-copy dd {
  margin: 0;
}

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

  .legal-layout aside {
    position: static;
  }
}

@media (max-width: 520px) {
  .legal-tabs {
    display: grid;
    border-radius: var(--radius-sm);
  }

  .legal-tabs a {
    text-align: center;
  }

  .legal-copy dl > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

/* WordPress integration */
.desktop-nav li,
.desktop-nav ul {
  display: contents;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav[hidden] {
  display: none !important;
}

.menu-icon-close {
  display: none;
}

.menu-button[aria-expanded="true"] .menu-icon-open {
  display: none;
}

.menu-button[aria-expanded="true"] .menu-icon-close {
  display: inline-flex;
}

.menu-button svg {
  width: 22px;
  height: 22px;
}

.blog-card-image {
  --blog-image-height: clamp(170px, 16vw, 210px);
  display: block;
  width: calc(100% + 40px);
  max-width: none;
  height: var(--blog-image-height);
  margin: -20px -20px 14px;
  border-radius: calc(var(--radius-md) - 1px) calc(var(--radius-md) - 1px) 0 0;
  background: var(--white);
  object-fit: contain;
  object-position: center;
  filter: saturate(0.88) contrast(0.97);
  flex: 0 0 var(--blog-image-height);
  transition: filter 220ms ease;
}

.blog-card.has-image .blog-number {
  margin-top: 14px;
}

.blog-card:hover .blog-card-image {
  filter: saturate(0.98) contrast(1);
}

.content-hero {
  padding: clamp(90px, 12vw, 160px) 0 clamp(65px, 8vw, 100px);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 209, 71, 0.28), transparent 28%),
    radial-gradient(circle at 8% 90%, rgba(147, 197, 253, 0.42), transparent 26%),
    var(--paper);
}

.content-hero .shell {
  max-width: 980px;
}

.content-hero h1 {
  max-width: 940px;
  margin: 18px 0 24px;
}

.content-hero p,
.archive-description {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.entry-section {
  background: var(--white);
}

.entry-content {
  max-width: 800px;
  color: var(--body);
}

.single-entry .entry-content {
  color: #344b80;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content h2 {
  margin: 2.2em 0 0.7em;
  font-size: clamp(1.55rem, 3vw, 2.55rem);
}

.entry-content h3 {
  margin: 1.8em 0 0.65em;
  font-size: clamp(1.2rem, 2.2vw, 1.72rem);
}

.entry-content p,
.entry-content li {
  font-size: 1rem;
  line-height: 1.82;
}

.entry-content a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--coral);
  text-underline-offset: 4px;
}

.entry-content img {
  height: auto;
  border-radius: var(--radius-md);
}

.blog-archive-hero {
  text-align: center;
}

.blog-archive-hero .shell {
  max-width: 960px;
}

.blog-archive-hero h1 {
  max-width: none;
  margin: 18px auto 28px;
  font-size: clamp(2.25rem, 4.8vw, 4rem);
}

.blog-archive-hero p {
  max-width: 820px;
  margin: 28px auto 0;
  color: var(--navy-deep);
  font-weight: 600;
}

.blog-archive-hero .archive-description {
  margin-inline: auto;
  text-align: center;
}

.blog-archive-hero .archive-description p {
  margin-inline: auto;
}

.search-form {
  display: flex;
  width: 100%;
  align-items: center;
  padding: 5px;
  border: 1px solid rgba(30, 42, 122, 0.42);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.search-form:focus-within {
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(147, 197, 253, 0.25);
}

.blog-archive-hero .search-form {
  max-width: 650px;
  margin: 0 auto;
}

.search-form label {
  min-width: 0;
  flex: 1;
}

.search-field {
  width: 100%;
  min-height: 50px;
  padding: 11px 17px;
  border: 0;
  border-radius: 15px;
  outline: 0;
  color: var(--ink);
  background: var(--white);
}

.search-field::placeholder {
  color: var(--muted);
  opacity: 1;
}

.search-submit {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 15px;
  color: var(--white);
  background: var(--coral);
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.search-submit:hover {
  background: var(--coral-deep);
  transform: translateY(-1px);
}

.search-submit svg {
  width: 21px;
  height: 21px;
}

.archive-section {
  background: var(--white);
}

.archive-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.archive-card {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  flex-direction: column;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.archive-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.archive-card-image {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  place-items: center;
  color: rgba(30, 42, 122, 0.2);
  background: linear-gradient(145deg, var(--sky), var(--lavender));
  font-size: 5rem;
  font-weight: 800;
  isolation: isolate;
}

.archive-card-image::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(101, 155, 225, 0.18);
  content: "";
  pointer-events: none;
}

.archive-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: cover;
  filter: saturate(0.86) contrast(0.96);
  transition: filter 220ms ease, transform 420ms ease;
}

.archive-card:hover .archive-card-image img {
  filter: saturate(0.95) contrast(1);
  transform: scale(1.025);
}

.archive-card-copy {
  display: flex;
  min-width: 0;
  padding: 24px;
  flex: 1;
  flex-direction: column;
}

.archive-card-meta {
  display: flex;
  min-width: 0;
  min-height: 32px;
  margin-bottom: 13px;
  align-items: flex-start;
  flex-wrap: wrap;
  color: var(--coral-deep);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.45;
  text-transform: uppercase;
  gap: 5px 11px;
}

.archive-card-meta a {
  text-decoration: underline;
  text-decoration-color: rgba(234, 88, 12, 0.35);
  text-underline-offset: 3px;
}

.archive-card-copy h2 {
  display: -webkit-box;
  min-height: calc(1.35em * 3);
  margin-bottom: 13px;
  overflow: hidden;
  font-size: clamp(1rem, 1.3vw, 1.22rem);
  line-height: 1.35;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.archive-card-copy p {
  display: -webkit-box;
  margin-bottom: 22px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.archive-card-link {
  display: inline-flex;
  margin-top: auto;
  align-items: center;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  gap: 8px;
}

.archive-card-link svg {
  width: 19px;
  height: 19px;
}

.archive-card-simple {
  min-height: 330px;
}

.archive-pagination {
  margin-top: 48px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nav-links .page-numbers {
  display: grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  padding-inline: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: var(--paper);
  font-size: 0.82rem;
  font-weight: 700;
}

.nav-links .current {
  color: var(--white);
  border-color: var(--coral);
  background: var(--coral);
}

.single-entry-hero {
  padding: clamp(90px, 11vw, 150px) 0 clamp(62px, 8vw, 96px);
  background:
    radial-gradient(circle at 86% 14%, rgba(255, 209, 71, 0.22), transparent 24%),
    var(--navy);
}

.single-entry-hero-inner {
  max-width: 960px;
}

.single-entry-hero h1 {
  max-width: 900px;
  margin: 20px 0 26px;
  color: var(--white);
  font-size: clamp(2.2rem, 4.1vw, 3.7rem);
  line-height: 1.06;
}

.single-entry-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.08rem;
}

.single-entry-meta {
  display: flex;
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  gap: 16px;
}

.single-entry-featured {
  max-width: 980px;
  margin-top: -42px;
}

.single-entry-featured img {
  width: 100%;
  max-height: 510px;
  border: 6px solid var(--white);
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.single-entry-layout {
  display: grid;
  padding-block: clamp(70px, 10vw, 125px);
  align-items: start;
  grid-template-columns: minmax(0, 760px) minmax(260px, 320px);
  gap: clamp(38px, 6vw, 78px);
}

.single-entry-layout > .entry-content {
  min-width: 0;
}

.post-toc {
  margin: 0 0 52px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(30, 42, 122, 0.13);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(219, 234, 254, 0.76), rgba(237, 240, 255, 0.94)),
    var(--lavender);
  box-shadow: var(--shadow-sm);
}

.post-toc-heading {
  display: flex;
  margin-bottom: 21px;
  align-items: flex-start;
  flex-direction: column;
  gap: 6px;
}

.post-toc-heading span {
  color: var(--coral-deep);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.post-toc-heading h2 {
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.2;
}

.post-toc ol {
  margin: 0;
  padding: 0;
  counter-reset: post-toc;
  columns: 2;
  column-gap: 32px;
  list-style: none;
}

.post-toc li {
  position: relative;
  min-width: 0;
  margin-bottom: 10px;
  padding-left: 31px;
  break-inside: avoid;
  counter-increment: post-toc;
  font-size: 0.84rem;
  line-height: 1.5;
}

.post-toc li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--coral-deep);
  content: counter(post-toc, decimal-leading-zero);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.post-toc .post-toc-level-3 {
  padding-left: 41px;
  color: var(--muted);
}

.post-toc .post-toc-level-3::before {
  left: 10px;
}

.post-toc a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}

.post-toc a:hover {
  color: var(--coral-deep);
}

.single-entry .entry-content blockquote {
  position: relative;
  margin: 2.5rem 0;
  padding: clamp(34px, 5vw, 52px) clamp(28px, 5vw, 52px) clamp(32px, 5vw, 48px) clamp(64px, 8vw, 86px);
  overflow: hidden;
  border: 1px solid rgba(30, 42, 122, 0.12);
  border-left: 6px solid var(--coral);
  border-radius: var(--radius-md);
  color: var(--navy-deep);
  background:
    radial-gradient(circle at 100% 0, rgba(147, 197, 253, 0.5), transparent 40%),
    var(--lavender);
  box-shadow: var(--shadow-sm);
}

.single-entry .entry-content blockquote::before {
  position: absolute;
  top: 20px;
  left: 24px;
  color: var(--coral);
  content: "“";
  font-family: Georgia, serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
}

.single-entry .entry-content blockquote p {
  color: var(--navy-deep);
  font-size: clamp(1rem, 1.6vw, 1.14rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.65;
}

.single-entry .entry-content blockquote p:last-child {
  margin-bottom: 0;
}

.single-entry .entry-content blockquote cite {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 600;
}

.single-entry .entry-content .wp-block-pullquote {
  padding: 0;
  border: 0;
}

.post-sidebar {
  display: grid;
  min-width: 0;
  align-self: start;
  gap: 20px;
}

@media (min-width: 901px) {
  .post-sidebar {
    position: sticky;
    max-height: calc(100vh - 126px);
    padding-right: 8px;
    overflow-y: auto;
    top: 102px;
    overscroll-behavior-y: contain;
    scrollbar-color: rgba(30, 42, 122, 0.28) transparent;
    scrollbar-width: thin;
  }

  .admin-bar .post-sidebar {
    max-height: calc(100vh - 158px);
    top: 134px;
  }
}

.post-sidebar-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--lavender);
  box-shadow: var(--shadow-sm);
}

.post-sidebar-label {
  display: block;
  margin-bottom: 7px;
  color: var(--coral-deep);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.post-sidebar-card h2 {
  margin-bottom: 19px;
  font-size: 1.08rem;
  line-height: 1.3;
}

.post-sidebar-search .search-form {
  padding: 4px;
  border-radius: 15px;
  box-shadow: none;
}

.post-sidebar-search .search-field {
  min-height: 44px;
  padding-inline: 12px;
  font-size: 0.76rem;
}

.post-sidebar-search .search-submit {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.post-sidebar-search .search-submit svg {
  width: 18px;
  height: 18px;
}

.post-sidebar-list {
  display: grid;
  gap: 13px;
}

.post-sidebar-item {
  display: grid;
  min-width: 0;
  align-items: center;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 12px;
}

.post-sidebar-thumb {
  display: grid;
  width: 68px;
  aspect-ratio: 1;
  overflow: hidden;
  place-items: center;
  border-radius: 12px;
  color: rgba(30, 42, 122, 0.38);
  background: var(--sky);
  font-size: 0.82rem;
  font-weight: 800;
}

.post-sidebar-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(0.96);
}

.post-sidebar-item-copy {
  display: block;
  min-width: 0;
}

.post-sidebar-item time {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.post-sidebar-item strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--navy);
  font-size: 0.74rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.post-sidebar-item:hover strong {
  color: var(--coral-deep);
}

.post-author-heading {
  display: grid;
  margin-top: 14px;
  align-items: center;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 14px;
}

.post-author-image {
  display: grid;
  width: 68px;
  height: 68px;
  overflow: hidden;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  color: var(--navy);
  background: var(--sky);
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.post-author-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.post-author-heading h2 {
  margin: 0 0 4px;
  font-size: 0.94rem;
}

.post-author-heading a {
  color: var(--coral-deep);
  font-size: 0.7rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-author-description {
  margin-top: 18px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.65;
  text-align: left;
}

.post-author-description p:last-child {
  margin-bottom: 0;
}

.single-entry-aside {
  padding: 25px;
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.75);
  background: var(--navy);
  box-shadow: var(--shadow-sm);
}

.single-entry-aside span {
  display: block;
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.single-entry-aside a {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-weight: 700;
  gap: 8px;
}

.single-entry-aside a:hover,
.single-entry-meta a:hover {
  color: var(--yellow);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.single-entry-aside svg {
  width: 18px;
  height: 18px;
}

.single-related-section {
  padding-block: clamp(72px, 9vw, 116px);
  background: var(--lavender);
}

.single-related-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.single-related-heading h2 {
  margin: 12px 0 0;
  font-size: clamp(1.7rem, 3.4vw, 2.8rem);
}

.single-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.single-related-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  flex-direction: column;
}

.single-related-image {
  display: grid;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  place-items: center;
  color: rgba(30, 42, 122, 0.28);
  background: var(--sky);
  font-size: 2rem;
  font-weight: 800;
}

.single-related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(0.96) sepia(0.04);
}

.single-related-copy {
  display: flex;
  min-width: 0;
  padding: 23px;
  flex: 1;
  flex-direction: column;
}

.single-related-copy time {
  margin-bottom: 9px;
  color: var(--coral-deep);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.single-related-copy h3 {
  display: -webkit-box;
  margin-bottom: 22px;
  overflow: hidden;
  font-size: 1rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

/* Rekrutacja Revisited */
.recruitment-hero {
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 111, 77, 0.42), transparent 27%),
    radial-gradient(circle at 7% 94%, rgba(255, 209, 71, 0.2), transparent 24%),
    var(--navy-deep);
}

.recruitment-visual .training-photo-wrap img {
  object-position: center 28%;
}

.recruitment-context-grid .outcome-card:nth-child(2),
.recruitment-context-grid .outcome-card:nth-child(3) {
  background: var(--white);
}

.recruitment-workshops {
  background:
    radial-gradient(circle at 0 40%, rgba(255, 111, 77, 0.1), transparent 26%),
    var(--paper);
}

.recruitment-workshop {
  position: relative;
  margin-top: 30px;
  padding: clamp(31px, 5.5vw, 67px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.recruitment-workshop::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 7px;
  background: var(--coral);
  content: "";
}

.recruitment-workshop-yellow::before {
  background: var(--yellow);
}

.recruitment-workshop-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  color: var(--coral-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  gap: 20px;
}

.recruitment-workshop-yellow .recruitment-workshop-head {
  color: #8a6400;
}

.recruitment-workshop-head small {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0;
}

.recruitment-workshop h3 {
  max-width: 840px;
  margin-bottom: 22px;
  font-size: clamp(1.7rem, 3.4vw, 3rem);
}

.recruitment-workshop-lead {
  max-width: 920px;
  margin-bottom: 42px;
  color: var(--body);
  font-size: 1.06rem;
}

.recruitment-workshop-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(35px, 7vw, 80px);
}

.recruitment-workshop-grid h4 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 1rem;
  letter-spacing: 0;
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  color: var(--body);
  gap: 12px;
}

.check-list svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--coral);
}

.recruitment-short-format {
  display: grid;
  align-items: center;
  margin-top: 30px;
  padding: 28px 32px;
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.75);
  background: var(--navy);
  grid-template-columns: auto 1fr auto;
  gap: 25px;
}

.recruitment-short-format span {
  color: var(--yellow);
  font-weight: 800;
}

.recruitment-short-format p {
  margin: 0;
}

.recruitment-short-format a {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-weight: 700;
  gap: 8px;
}

.recruitment-short-format svg {
  width: 19px;
  height: 19px;
}

.recruitment-no-list > li > span {
  color: var(--coral);
  font-size: 1.8rem;
}

.recruitment-about {
  background: var(--white);
}

.recruitment-about-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.06fr 0.75fr;
  gap: clamp(50px, 9vw, 120px);
}

.recruitment-about-grid-single {
  grid-template-columns: minmax(0, 900px);
  justify-content: center;
}

.recruitment-about-grid h2 {
  margin: 15px 0 25px;
}

.recruitment-about-grid .large-copy {
  color: var(--ink);
  font-size: 1.16rem;
  font-weight: 500;
}

.recruitment-about-image {
  position: relative;
  padding: 14px;
  border-radius: var(--radius-lg);
  background: var(--yellow);
  transform: rotate(2deg);
}

.recruitment-about-image img {
  display: block;
  width: 100%;
  max-height: 660px;
  border-radius: calc(var(--radius-lg) - 8px);
  object-fit: cover;
  transform: rotate(-2deg);
}

.recruitment-process {
  background: var(--paper);
}

.recruitment-process .shell > img {
  display: block;
  width: 100%;
  margin-top: 45px;
  border: 7px solid var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.faq-shell {
  max-width: 900px;
}

.faq-shell .section-heading {
  margin-bottom: 45px;
  text-align: center;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 23px 0;
  border: 0;
  color: var(--navy);
  background: transparent;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  gap: 25px;
}

.faq-item button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  transition: transform 220ms ease;
}

.faq-item.is-open button svg {
  transform: rotate(180deg);
}

.faq-panel {
  padding: 0 45px 22px 0;
  color: var(--muted);
}

.faq-panel p {
  margin: 0;
}

.not-found {
  min-height: 60vh;
}

@media (max-width: 900px) {
  .single-entry-layout,
  .recruitment-about-grid {
    grid-template-columns: 1fr;
  }

  .archive-grid,
  .single-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .post-sidebar {
    position: static;
    max-width: 760px;
    max-height: none;
    padding-right: 0;
    overflow: visible;
  }

  .recruitment-workshop-grid {
    grid-template-columns: 1fr;
  }

  .recruitment-short-format {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .header-cta {
    display: none;
  }

  .header-inner {
    gap: 12px;
  }

  .brand-copy small {
    display: none;
  }

  .blog-card-image {
    --blog-image-height: 170px;
    width: calc(100% + 36px);
    margin: -18px -18px 12px;
  }

  .archive-grid {
    grid-template-columns: 1fr;
  }

  .archive-card-image {
    height: auto;
  }

  .blog-archive-hero .search-form {
    align-items: center;
    padding: 4px;
    border-radius: 16px;
    flex-direction: row;
  }

  .blog-archive-hero .search-field {
    min-height: 44px;
    padding: 9px 13px;
    font-size: 0.84rem;
  }

  .blog-archive-hero .search-submit {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .blog-archive-hero .search-submit svg {
    width: 17px;
    height: 17px;
    display: block;
  }

  .archive-card-copy h2 {
    min-height: 0;
  }

  .post-toc-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .post-toc ol {
    columns: 1;
  }

  .single-related-grid {
    grid-template-columns: 1fr;
  }

  .single-entry .entry-content blockquote {
    padding: 62px 25px 29px;
  }

  .single-entry .entry-content blockquote::before {
    top: 14px;
    left: 23px;
  }

  .recruitment-workshop-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .recruitment-workshop {
    border-radius: var(--radius-md);
  }

  .faq-item button {
    padding-block: 19px;
  }
}
