:root {
  --ink: #071b23;
  --ink-2: #102d37;
  --ink-3: #173b46;
  --paper: #f2efe7;
  --paper-2: #e8e2d7;
  --white: #fcfbf8;
  --copper: #a45a3a;
  --copper-dark: #7f402b;
  --gold: #c8a775;
  --slate: #526168;
  --line: rgba(7, 27, 35, 0.16);
  --line-light: rgba(255, 255, 255, 0.22);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1240px, calc(100vw - 64px));
  --header-height: 104px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  max-width: 100%;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }

p { margin: 0 0 1.25rem; }

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1.25rem;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  hyphens: none;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

h1 { font-size: clamp(2.97rem, 6.3vw, 6.53rem); }
h2 { font-size: clamp(2.12rem, 4vw, 4.24rem); }
h3 { font-size: clamp(1.45rem, 2.25vw, 2.15rem); }

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

::selection { color: var(--white); background: var(--copper); }

.shell { width: var(--shell); max-width: 100%; margin-inline: auto; }
.shell--narrow { max-width: 780px; }
.section { padding-block: clamp(88px, 10vw, 160px); }
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 99999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.eyebrow {
  margin-bottom: 1.5rem;
  color: var(--copper);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow--light { color: var(--gold); }

.lead {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.25vw, 2.05rem);
  line-height: 1.4;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.45rem;
  border: 1px solid transparent;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button--copper { color: var(--white); background: var(--copper); }
.button--copper:hover { background: var(--copper-dark); }
.button--ink { color: var(--white); background: var(--ink); }
.button--ink:hover { background: var(--ink-3); }
.button--paper { color: var(--ink); background: var(--paper); }
.button--paper:hover { color: var(--white); background: var(--copper); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}
.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translate(3px, -3px); }
.text-link--light { color: var(--white); }

/* Header */
.site-header {
  position: absolute;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid var(--line-light);
  transition: background 180ms ease, height 180ms ease, box-shadow 180ms ease;
}
.site-header.is-scrolled {
  position: fixed;
  height: 82px;
  background: rgba(7, 27, 35, 0.97);
  box-shadow: 0 14px 40px rgba(2, 12, 16, 0.16);
  backdrop-filter: blur(12px);
}
.admin-bar .site-header { top: 32px; }
.site-header__inner { display: flex; height: 100%; align-items: center; gap: 2rem; }
.site-header__inner > * { min-width: 0; }
.logo-blend {
  --logo-surround: var(--ink);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--logo-surround);
  box-shadow: 0 0 20px 8px var(--logo-surround);
}
.logo-blend::after {
  position: absolute;
  z-index: 1;
  inset: -1px;
  background:
    linear-gradient(90deg, var(--logo-surround) 0%, transparent 15%, transparent 85%, var(--logo-surround) 100%),
    linear-gradient(180deg, var(--logo-surround) 0%, transparent 9%, transparent 91%, var(--logo-surround) 100%);
  content: "";
  pointer-events: none;
}
.brand {
  display: block;
  width: auto;
  height: calc(100% - 7.2px);
  aspect-ratio: 3 / 2;
  flex: 0 0 auto;
  transition: height 180ms ease;
}
.site-header.is-scrolled .brand { height: calc(100% - 9.4px); }
.logo-blend--header, .logo-blend--footer { background: transparent; box-shadow: none; }
.logo-blend--header { --logo-surround: #071b23; }
.logo-blend--header::after, .logo-blend--footer::after { display: none; }
.brand__image {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.site-nav { display: flex; align-items: center; gap: 1.15rem; margin-left: auto; }
.site-nav__list { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); padding: 0; margin: 0; list-style: none; }
.site-nav a {
  position: relative;
  display: block;
  padding: 0.65rem 0;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.site-nav a:hover::after,
.site-nav .current-menu-item > a::after { transform: scaleX(1); transform-origin: left; }
.language-switcher { display: flex; align-items: center; gap: .35rem; }
.site-nav .language-switcher__link {
  display: grid;
  width: 32px;
  height: 26px;
  padding: 3px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  opacity: .68;
  transition: border-color 180ms ease, opacity 180ms ease, background 180ms ease;
}
.site-nav .language-switcher__link::after { display: none; }
.site-nav .language-switcher__link:hover,
.site-nav .language-switcher__link.is-active { border-color: var(--gold); background: rgba(255,255,255,.08); opacity: 1; }
.language-flag { display: block; width: 22px; height: 14px; border: 1px solid rgba(255,255,255,.42); box-shadow: 0 1px 4px rgba(0,0,0,.22); }
.language-flag--pl { background: linear-gradient(to bottom, #fff 0 50%, #dc143c 50% 100%); }
.language-flag--gb {
  background:
    linear-gradient(33deg, transparent 43%, #fff 43% 57%, transparent 57%),
    linear-gradient(-33deg, transparent 43%, #fff 43% 57%, transparent 57%),
    linear-gradient(90deg, transparent 38%, #fff 38% 62%, transparent 62%),
    linear-gradient(transparent 34%, #fff 34% 66%, transparent 66%),
    linear-gradient(90deg, transparent 44%, #c8102e 44% 56%, transparent 56%),
    linear-gradient(transparent 42%, #c8102e 42% 58%, transparent 58%),
    #012169;
}
.header-contact {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(255,255,255,.6);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}
.header-contact:hover { color: var(--ink); background: var(--white); }
.menu-toggle { display: none; }

/* Hero */
.hero {
  position: relative;
  min-height: max(720px, 94svh);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.hero__media,
.hero__media picture,
.hero__media img,
.hero__veil { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__media img { object-fit: cover; object-position: center 44%; }
.hero__veil {
  background:
    linear-gradient(90deg, rgba(3,17,23,.95) 0%, rgba(3,17,23,.76) 38%, rgba(3,17,23,.16) 72%, rgba(3,17,23,.22) 100%),
    linear-gradient(0deg, rgba(3,17,23,.45), transparent 40%);
}
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: max(720px, 94svh);
  flex-direction: column;
  justify-content: center;
  padding-top: var(--header-height);
}
.hero__kicker {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,.76);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.hero__kicker span { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }
.hero h1 { max-width: none; margin-bottom: 2rem; font-size: clamp(3.15rem, 6.66vw, 6.71rem); letter-spacing: -0.035em; white-space: nowrap; }
.hero__title-line { display: block; }
.hero__intro { max-width: 620px; color: rgba(255,255,255,.82); font-size: clamp(1.05rem, 1.45vw, 1.28rem); line-height: 1.65; }
.hero__actions { display: flex; align-items: center; gap: 2rem; margin-top: 1.4rem; }
.hero__signature {
  position: absolute;
  z-index: 2;
  right: max(32px, calc((100vw - 1240px) / 2));
  bottom: 42px;
  display: grid;
  padding-left: 1rem;
  border-left: 2px solid var(--copper);
  text-align: left;
}
.hero__signature span { font-family: var(--serif); font-size: 1.15rem; }
.hero__signature small { color: rgba(255,255,255,.7); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; }

.values-ticker {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.values-ticker__track {
  display: flex;
  width: max-content;
  animation: values-ticker 38s linear infinite;
  will-change: transform;
}
.values-ticker__group { display: flex; flex: 0 0 auto; align-items: center; min-height: 112px; }
.values-ticker span { padding-inline: 2.4rem; font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 2rem); white-space: nowrap; }
.values-ticker i { color: var(--copper); font-style: normal; }
@keyframes values-ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Intro */
.intro-section { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .85fr); gap: clamp(3rem, 9vw, 9rem); }
.intro-grid > * { min-width: 0; }
.intro-grid h2 { max-width: 720px; }
.intro-copy { padding-top: 3.4rem; }
.intro-copy > p:not(.lead) { color: var(--slate); }
.intro-copy .text-link { margin-top: 1rem; }

/* Practices */
.practices { color: var(--white); background: var(--ink-2); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1fr) 360px; align-items: end; gap: 4rem; margin-bottom: clamp(3.5rem, 6vw, 6rem); }
.section-heading > * { min-width: 0; }
.section-heading h2 { max-width: 840px; }
.section-heading > p { color: rgba(255,255,255,.65); }
.section-heading--ink > p { color: var(--slate); }
.practice-list { border-top: 1px solid var(--line-light); }
.practice-card {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 2rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--line-light);
  transition: padding 200ms ease, background 200ms ease;
}
.practice-card:hover { padding-inline: 1.25rem; background: rgba(255,255,255,.035); }
.practice-card__number { align-self: start; padding-top: .5rem; color: var(--gold); font-size: .65rem; letter-spacing: .1em; }
.practice-card h3 { margin-bottom: .45rem; font-size: clamp(1.75rem, 3vw, 3rem); }
.practice-card p { max-width: 760px; margin: 0; color: rgba(255,255,255,.65); }
.practice-card__arrow { display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid var(--line-light); font-size: 1.1rem; transition: color 180ms ease, background 180ms ease; }
.practice-card:hover .practice-card__arrow { color: var(--ink); background: var(--gold); }
.practice-card--expanded { grid-template-columns: 80px minmax(0, 1fr); }
.practice-card__topics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem 2rem;
  max-width: 900px;
  padding: 0;
  margin: 1.25rem 0 0;
  color: rgba(255,255,255,.67);
  list-style: none;
}
.practice-card__topics li { position: relative; padding-left: 1rem; }
.practice-card__topics li::before { position: absolute; top: .78em; left: 0; width: 4px; height: 4px; border-radius: 50%; background: var(--copper); content: ""; }

/* Profile */
.profile { background: var(--white); }
.profile__grid { display: grid; grid-template-columns: minmax(320px, .78fr) minmax(0, 1.12fr); align-items: start; gap: clamp(3rem, 8vw, 8rem); }
.profile__grid > * { min-width: 0; }
.profile__portrait { position: relative; width: 100%; margin: 0; }
.profile__portrait::before { position: absolute; z-index: -1; top: -24px; right: -24px; width: 58%; height: 42%; background: var(--paper-2); content: ""; }
.profile__portrait img { width: 100%; aspect-ratio: 4 / 5.2; object-fit: cover; object-position: center 28%; }
.profile__content h2 { max-width: 720px; }
.profile__content > p:not(.lead) { color: var(--slate); }
.profile__bio > p:not(.lead) { color: var(--slate); }
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin: 3rem 0; background: var(--line); }
.facts div { padding: 1.5rem 1rem 1.5rem 0; background: var(--white); }
.facts dt { margin-bottom: .5rem; font-family: var(--serif); font-size: clamp(2rem, 3vw, 3.25rem); line-height: 1; }
.facts dd { margin: 0; color: var(--slate); font-size: .76rem; line-height: 1.5; }

/* Method */
.method { background: var(--paper); }
.method__heading { display: grid; grid-template-columns: 1fr 2fr; margin-bottom: 5rem; }
.method__heading .eyebrow { padding-top: .8rem; }
.method__steps { display: grid; grid-template-columns: repeat(3, 1fr); padding: 0; margin: 0; border-top: 1px solid var(--line); list-style: none; }
.method__steps li { min-height: 290px; padding: 2rem 2.5rem 1rem 0; border-right: 1px solid var(--line); }
.method__steps li + li { padding-left: 2.5rem; }
.method__steps li:last-child { border-right: 0; }
.method__steps span { display: block; margin-bottom: 3.5rem; color: var(--copper); font-size: .68rem; font-weight: 700; letter-spacing: .1em; }
.method__steps p { color: var(--slate); }

/* Quote */
.insight { padding-block: 0; color: var(--white); background: var(--ink); }
.insight__grid { display: grid; width: 100%; max-width: none; grid-template-columns: 43% 57%; }
.insight__grid > * { min-width: 0; }
.insight__image { min-height: 720px; margin: 0; overflow: hidden; }
.insight__image img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.insight__quote { display: flex; max-width: 760px; flex-direction: column; justify-content: center; padding: clamp(4rem, 8vw, 9rem); }
.insight blockquote { margin: 0 0 2rem; font-family: var(--serif); font-size: clamp(2.2rem, 4.1vw, 4.65rem); line-height: 1.16; }
.insight__quote > p:last-child { color: rgba(255,255,255,.5); font-size: .7rem; letter-spacing: .06em; }

/* Knowledge */
.knowledge { background: var(--white); }
.editorial-heading { margin-bottom: clamp(3.5rem, 6vw, 6rem); }
.editorial-heading h2 { width: 100%; max-width: none; margin: 0; }
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3.2vw, 3.5rem); }
.posts-grid--six { row-gap: clamp(4rem, 7vw, 7rem); }
.post-card__image { display: block; margin-bottom: 1.5rem; overflow: hidden; background: var(--paper); }
.post-card__image img { width: 100%; aspect-ratio: 1.42 / 1; object-fit: cover; transition: transform 350ms ease; }
.post-card:hover .post-card__image img { transform: scale(1.025); }
.post-card__fallback { display: grid; aspect-ratio: 1.42 / 1; place-items: center; color: var(--paper-2); background: var(--ink-2); font-family: var(--serif); font-size: 6rem; }
.post-card__meta { margin-bottom: .8rem; color: var(--copper); font-size: .65rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.post-card h3 { font-size: clamp(1.45rem, 2.1vw, 2rem); }
.post-card h3 a:hover { color: var(--copper); }
.post-card > p:not(.post-card__meta) { color: var(--slate); }
.post-card--placeholder { max-width: 440px; padding: 2rem; background: var(--paper); }
.home-conferences { background: var(--paper); }
.post-card__video { aspect-ratio: 1.42 / 1; background: var(--ink-2); }
.post-card__video iframe, .post-card__video video { display: block; width: 100%; height: 100%; border: 0; background: #000; object-fit: contain; }

.final-cta { color: var(--white); background: var(--copper); }
.final-cta__inner { display: flex; align-items: end; justify-content: space-between; gap: 4rem; }
.final-cta h2 { max-width: 850px; margin: 0; }

/* Footer */
.site-footer { padding-top: clamp(80px, 9vw, 140px); color: var(--white); background: #041319; }
.site-footer__grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: 6rem; padding-bottom: clamp(80px, 9vw, 130px); }
.site-footer__grid > *, .site-footer__bottom > * { min-width: 0; }
.site-footer__lead h2 { max-width: 750px; }
.site-footer__lead > p:last-child { max-width: 620px; color: rgba(255,255,255,.62); }
.site-footer__contact { display: grid; align-content: center; gap: 1.5rem; }
.contact-person { display: grid; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line-light); }
.contact-person > span { margin-bottom: .4rem; color: var(--gold); font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.contact-person strong { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; }
.contact-person small { color: rgba(255,255,255,.58); }
.contact-link, .site-footer address { display: grid; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line-light); font-family: var(--serif); font-size: 1.4rem; font-style: normal; overflow-wrap: anywhere; }
.contact-link span, .site-footer address span { margin-bottom: .4rem; color: var(--gold); font-family: var(--sans); font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.contact-link:hover { color: var(--gold); }
.site-footer__bottom { display: grid; grid-template-columns: 1.3fr 1fr auto; align-items: end; gap: 3rem; padding-block: 2rem; border-top: 1px solid var(--line-light); color: rgba(255,255,255,.58); font-size: .7rem; }
.site-footer__bottom strong { color: var(--white); font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.footer-brand { --logo-surround: #041319; display: block; width: 144px; aspect-ratio: 3 / 2; }
.footer-brand__image { position: relative; z-index: 0; width: 100%; height: 100%; object-fit: cover; }
.site-footer__bottom p { margin: 0; }
.footer-menu { display: flex; flex-wrap: wrap; gap: 1.2rem; padding: 0; margin: 0; list-style: none; }
.footer-menu a:hover { color: var(--white); }

/* Inner pages */
.page-hero { padding: calc(var(--header-height) + 100px) 0 100px; color: var(--white); background: var(--ink); }
.page-hero__inner { display: grid; min-height: 260px; align-content: end; }
.page-hero h1 { max-width: 980px; margin: 0; font-size: clamp(3.06rem, 6.3vw, 6.3rem); }
.page-hero p:last-child { max-width: 640px; color: rgba(255,255,255,.68); }
.page-hero--blog { background: linear-gradient(125deg, var(--ink), var(--ink-3)); }
.entry--page { padding-block: clamp(80px, 9vw, 140px); }
.entry__content { max-width: 820px; margin-inline: auto; font-size: 1.08rem; }
.entry__content > * + * { margin-top: 1.5rem; }
.entry__content h2, .entry__content h3 { margin-top: 2.5rem; }
.entry__content a, .article__body a { color: var(--copper); text-decoration: underline; text-underline-offset: .2em; }
.entry__content ul, .entry__content ol, .article__body ul, .article__body ol { padding-left: 1.3rem; }
.entry__content blockquote, .article__body blockquote { padding: 1.5rem 0 1.5rem 2rem; margin: 2.5rem 0; border-left: 3px solid var(--copper); font-family: var(--serif); font-size: 1.5rem; }
.article__header {
  position: relative;
  display: grid;
  min-height: clamp(460px, 58vw, 700px);
  align-items: end;
  overflow: hidden;
  padding: calc(var(--header-height) + 80px) 0 clamp(64px, 7vw, 100px);
  color: var(--white);
  background: #646b6e;
}
.article__header-media, .article__header-media img, .article__header-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.article__header-media img { object-fit: cover; object-position: center; }
.article__header-shade { z-index: 1; background: linear-gradient(0deg, rgba(4, 18, 24, .9) 0%, rgba(4, 18, 24, .63) 58%, rgba(4, 18, 24, .48) 100%); }
.article__header--plain .article__header-shade { background: linear-gradient(125deg, rgba(54, 60, 63, .96), rgba(91, 98, 101, .92)); }
.article__header-content { position: relative; z-index: 2; }
.article__header-copy { max-width: 980px; }
.article__header h1 { margin-bottom: 0; color: var(--white); font-size: clamp(1.98rem, 3.42vw, 3.42rem); line-height: 1.08; }
.article__meta { color: var(--gold); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.article__lead { max-width: 780px; margin-top: 1.5rem; color: rgba(255,255,255,.78); font-family: var(--serif); font-size: 1.35rem; }
.article__body { padding-block: clamp(70px, 8vw, 120px); font-size: 1.08rem; }
.article__body > * + * { margin-top: 1.45rem; }
.article__body h2, .article__body h3 { margin-top: 2.75rem; }
.article__footer { padding-bottom: 100px; }
.article__tags a { display: inline-block; padding: .45rem .7rem; margin: .2rem; background: var(--paper); font-size: .7rem; }
.post-navigation { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.post-navigation .nav-links { display: flex; justify-content: space-between; gap: 2rem; }
.post-navigation a { color: var(--copper); }
.archive-section { min-height: 50vh; }
.pagination { margin-top: 4rem; }
.nav-links { display: flex; gap: .6rem; }
.page-numbers { display: grid; min-width: 42px; height: 42px; place-items: center; border: 1px solid var(--line); }
.page-numbers.current { color: var(--white); background: var(--ink); }
.conference-archive { min-height: 50vh; background: var(--white); }
.conference-list { display: grid; gap: clamp(5rem, 9vw, 9rem); }
.conference-entry { padding-bottom: clamp(5rem, 9vw, 9rem); border-bottom: 1px solid var(--line); }
.conference-entry:last-child { padding-bottom: 0; border-bottom: 0; }
.conference-entry__header {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 5rem);
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.conference-entry__meta {
  padding-top: .8rem;
  color: var(--copper);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.conference-entry__header h2 { max-width: 920px; margin: 0; font-size: clamp(2.08rem, 4vw, 4.16rem); }
body.category-konferencje-i-szkolenia .conference-list { gap: clamp(2.5rem, 4.5vw, 4.5rem); }
body.category-konferencje-i-szkolenia .conference-entry { padding-bottom: clamp(2.5rem, 4.5vw, 4.5rem); }
body.category-konferencje-i-szkolenia .conference-entry__header h2 { font-size: clamp(1.25rem, 2.4vw, 2.5rem); }
.conference-entry__header a:hover { color: var(--copper); }
.conference-entry__cover { margin: 0 0 clamp(2.5rem, 5vw, 4.5rem); overflow: hidden; background: var(--paper); }
.conference-entry__cover img { width: 100%; max-height: 760px; object-fit: cover; }
.conference-entry__content { max-width: 920px; margin-left: auto; font-size: 1.08rem; }
.conference-entry__content > * + * { margin-top: 1.45rem; }
.conference-entry__content h2, .conference-entry__content h3 { margin-top: 2.75rem; }
.conference-entry__content a { color: var(--copper); text-decoration: underline; text-underline-offset: .2em; }
.conference-entry__content img, .conference-entry__content video { max-width: 100%; height: auto; }
.conference-entry__content iframe { display: block; width: 100%; max-width: 100%; height: auto; aspect-ratio: 16 / 9; border: 0; }
.conference-entry__content .wp-block-embed__wrapper { position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; background: var(--ink); }
.conference-entry__content .wp-block-embed__wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.conference-entry__content .wp-block-gallery { gap: 1rem; }
.conference-entry__content blockquote { padding: 1.5rem 0 1.5rem 2rem; margin: 2.5rem 0; border-left: 3px solid var(--copper); font-family: var(--serif); font-size: 1.5rem; }
.not-found { display: grid; min-height: 80vh; align-items: center; padding: calc(var(--header-height) + 80px) 0 100px; background: var(--paper); }
.not-found h1 { font-size: clamp(2.7rem, 6.3vw, 5.4rem); }
.not-found .search-form { display: flex; margin: 2rem 0; }
.search-field { min-height: 52px; flex: 1; padding: .8rem 1rem; border: 1px solid var(--line); background: var(--white); }
.search-submit { min-height: 52px; padding: .8rem 1rem; border: 0; color: var(--white); background: var(--copper); }

/* WordPress alignments */
.alignwide { width: min(1040px, 100%); max-width: none; margin-right: auto; margin-left: auto; }
.alignfull { width: 100vw; max-width: none; margin-left: calc(50% - 50vw); }

@media (min-width: 861px) {
  .profile__portrait { position: sticky; top: 112px; }
}

@media (max-width: 1280px) {
  .header-contact { display: none; }
  .site-nav__list { gap: clamp(.65rem, 1.3vw, 1rem); }
  .site-nav a { font-size: .63rem; letter-spacing: .075em; }
}

@media (max-width: 1120px) {
  :root { --shell: min(100% - 48px, 1120px); }
  .header-contact { display: none; }
  .profile__grid { gap: 4rem; }
  .facts { grid-template-columns: 1fr; background: none; }
  .facts div { padding: 1rem 0; border-bottom: 1px solid var(--line); }
  .insight__quote { padding-inline: 5vw; }
}

@media (max-width: 860px) {
  :root { --shell: min(100% - 36px, 760px); --header-height: 82px; }
  .brand, .site-header.is-scrolled .brand { height: calc(100% - 9.4px); }
  .admin-bar .site-header { top: 46px; }
  .site-header, .site-header.is-scrolled { height: var(--header-height); }
  .menu-toggle {
    position: relative;
    z-index: 1002;
    display: grid;
    width: 48px;
    height: 48px;
    margin-left: auto;
    place-content: center;
    gap: 7px;
    border: 1px solid var(--line-light);
    color: inherit;
    background: transparent;
  }
  .menu-toggle span:not(.screen-reader-text) { display: block; width: 22px; height: 1px; background: currentColor; transition: transform 180ms ease; }
  .menu-open .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    z-index: 1001;
    inset: 0;
    display: grid;
    padding: calc(var(--header-height) + 50px) 24px 50px;
    place-items: center;
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }
  .menu-open .site-nav { opacity: 1; pointer-events: auto; }
  .site-nav__list { display: grid; gap: .75rem; text-align: center; }
  .site-nav a { font-family: var(--serif); font-size: 1rem; font-weight: 400; letter-spacing: 0; text-transform: none; }
  .site-nav .language-switcher__link { width: 38px; height: 30px; padding: 4px; }
  .hero { min-height: 780px; }
  .hero__content { min-height: 780px; justify-content: end; padding-bottom: 100px; }
  .hero__media img { object-position: 66% center; }
  .hero__veil { background: linear-gradient(0deg, rgba(3,17,23,.98) 0%, rgba(3,17,23,.82) 48%, rgba(3,17,23,.1) 100%); }
  h2 { font-size: clamp(1.88rem, 6vw, 3.28rem); }
  .hero h1 { font-size: clamp(2.79rem, 9.9vw, 4.86rem); }
  .hero__signature { display: none; }
  .values-ticker__group { min-height: 94px; }
  .intro-grid, .profile__grid, .site-footer__grid { grid-template-columns: 1fr; }
  .intro-copy { padding-top: 0; }
  .section-heading { grid-template-columns: 1fr; gap: 1rem; }
  .section-heading > p { max-width: 620px; }
  .profile__portrait { max-width: 560px; }
  .profile__portrait::before { right: 0; }
  .profile__portrait img { aspect-ratio: 4 / 4.8; }
  .method__heading { grid-template-columns: 1fr; }
  .method__steps { grid-template-columns: 1fr; }
  .method__steps li, .method__steps li + li { min-height: 0; padding: 2rem 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .method__steps span { margin-bottom: 1.5rem; }
  .insight__grid { grid-template-columns: 1fr; }
  .insight__image { min-height: 620px; }
  .insight__quote { max-width: none; padding: 5rem max(18px, calc((100% - var(--shell)) / 2)); }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .conference-entry__header { grid-template-columns: 1fr; gap: .5rem; }
  .conference-entry__meta { padding-top: 0; }
  .conference-entry__content { margin-left: 0; }
  .final-cta__inner { align-items: start; flex-direction: column; }
  .site-footer__grid { gap: 3rem; }
  .site-footer__bottom { grid-template-columns: 1fr; align-items: start; }
  .alignfull { width: 100%; margin-left: 0; }
}

@media (max-width: 600px) {
  :root { --shell: calc(100% - 32px); }
  body { font-size: 16px; }
  .button { max-width: 100%; white-space: normal; text-align: center; }
  .hero { min-height: 740px; }
  .hero__content { min-height: 740px; padding-bottom: 72px; }
  h2 { font-size: clamp(1.64rem, 8.4vw, 2.08rem); }
  .hero__kicker { display: block; margin-bottom: 1.25rem; line-height: 1.7; }
  .hero__kicker span { display: none; }
  .hero h1 { font-size: clamp(1.7rem, 8.7vw, 3.06rem); }
  .hero__intro { font-size: 1rem; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 1.4rem; }
  .practice-card { grid-template-columns: 34px 1fr; gap: 1rem; }
  .practice-card__arrow { display: none; }
  .practice-card h3 { font-size: 1.7rem; }
  .practice-card__topics { grid-template-columns: 1fr; gap: .45rem; }
  .profile__portrait img { aspect-ratio: 4 / 5.5; }
  .insight__image { min-height: 520px; }
  .insight blockquote { font-size: 2rem; }
  .posts-grid { grid-template-columns: 1fr; }
  .article__header { min-height: 430px; padding-top: calc(var(--header-height) + 58px); padding-bottom: 54px; }
  .article__header h1 { font-size: clamp(1.76rem, 7.83vw, 2.3rem); }
  .article__lead { font-size: 1.15rem; }
  .conference-entry__header h2 { font-size: clamp(1.64rem, 8.4vw, 2.24rem); }
  body.category-konferencje-i-szkolenia .conference-entry__header h2 { font-size: clamp(.98rem, 5.04vw, 1.34rem); }
  .page-hero { padding-top: calc(var(--header-height) + 70px); }
  .page-hero__inner { min-height: 190px; }
  .post-navigation .nav-links { flex-direction: column; }
}

@supports not (overflow: clip) {
  html, body { overflow-x: hidden; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .values-ticker__track { width: auto; animation: none; }
  .values-ticker__group { flex-wrap: wrap; justify-content: center; padding: 1.25rem; }
  .values-ticker__group + .values-ticker__group { display: none; }
  .values-ticker span { padding: .5rem 1rem; white-space: normal; }
}
