/* Tomasz Stelmach Marketing B2B — main stylesheet
 * Layout pattern: container / section / row / col (flexbox), à la Bootstrap Studio.
 * Design tokens come from assets/css/tokens.css — this file only consumes var(--...).
 */

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: #1B1C1E;
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}

/* ── Layout primitives ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-8);
}
.container--narrow {
  max-width: 760px;
}
.section {
  padding: var(--section-padding-y) var(--space-8);
}
.row {
  display: flex;
  gap: var(--space-6);
}
.col {
  flex: 1;
  min-width: 0;
}

/* ── Label ── */
.label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-brand);
  margin-bottom: var(--space-5);
}
.label--light {
  color: rgba(255, 255, 255, 0.45);
}

/* ── Button ── */
.btn {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.btn:hover {
  opacity: 0.82;
}
.btn--primary {
  background: var(--color-brand);
  color: #fff;
  border: 1.5px solid var(--color-brand);
  position: relative;
  overflow: hidden;
}
.btn--primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-20deg);
  animation: btn-shimmer 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btn-shimmer {
  0%   { left: -80%; }
  20%  { left: 130%; }
  100% { left: 130%; }
}
.btn--secondary {
  background: transparent;
  color: var(--color-navy);
  border: 1.5px solid var(--color-navy);
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.btn-group {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.btn-group--center {
  justify-content: center;
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background:var(--color-white);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(8px);
  box-shadow: none;
  transition: background-color 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.nav--scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: height 0.3s ease;
}
.nav__logo {
  height: 45px;
  transition: height 0.3s ease;
}
.nav--scrolled .nav__inner {
  height: 54px;
}
.nav--scrolled .nav__logo {
  height: 32px;
}
.nav__links {
  display: flex;
  gap: var(--space-8);
  align-items: center;
}
.nav__link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-sm);
  color: var(--color-gray-600);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav__link:hover {
  color: var(--color-brand);
}
.nav__link--active {
  color: var(--color-brand);
}
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--color-navy);
  border-radius: var(--radius-full);
  transition: transform 0.2s, opacity 0.2s;
}
.nav--menu-open .nav__toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav--menu-open .nav__toggle span:nth-child(2) {
  opacity: 0;
}
.nav--menu-open .nav__toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Hero ── */
.hero {
  background: var(--color-white);
  padding-top: 152px;
  padding-bottom: 96px;
  overflow: hidden;
}
.hero__row {
  align-items: center;
  gap: 80px;
}
.hero__content {
  flex: 1;
  min-width: 0;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 4.8vw, 4.25rem);
  line-height: 1.1;
  letter-spacing: var(--tracking-tighter);
  color: var(--color-navy);
  margin-bottom: var(--space-6);
  text-wrap: pretty;
}
.hero__title em {
  font-style: italic;
  color: var(--color-brand);
}
.hero__lead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-lg);
  line-height: 1.8;
  color: var(--color-gray-600);
  max-width: 580px;
  margin-bottom: var(--space-10);
}
.hero__photo {
  flex: 0 0 420px;
  position: relative;
}
.hero__photo-frame {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-warm-white);
}
.hero__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: filter 0.4s ease;
}
.hero__photo-frame:hover img {
  filter: brightness(1.08) contrast(1.05);
}

/* ── Problem ── */
.problem {
  background: var(--color-navy);
  position: relative;
  overflow: hidden;
}
.problem__watermark {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: auto;
  opacity: 0.05;
  filter: brightness(0) invert(1);
  pointer-events: none;
  user-select: none;
}
.problem__inner {
  max-width: 860px;
}
.problem__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  line-height: 1.15;
  color: #fff;
  margin-bottom: var(--space-8);
  letter-spacing: var(--tracking-tighter);
  text-wrap: pretty;
}
.problem__title em {
  color: var(--color-brand);
  font-style: italic;
}
.problem__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  max-width: 860px;
}
.problem__body p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-base);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.6);
}
.problem__body p + p {
  margin-top: var(--space-6);
}
.problem__quote {
  margin-top: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: -0.01em;
}

/* ── Section heading (shared by services / process / about) ── */
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.875rem, 3vw, 3rem);
  color: var(--color-navy);
  line-height: 1.15;
  letter-spacing: var(--tracking-tighter);
  margin-bottom: 64px;
}

/* ── Services ── */

.services__lead {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  line-height: 1.8;
  color: var(--color-gray-600);
  max-width: 720px;
  margin-bottom: 64px;   
}
.services .section-title {
  max-width: 760px;      
  margin-bottom: var(--space-6);  
}

.services {
  background: var(--color-white);
}
.services .section-title {
  max-width: 520px;
}
.services__grid {
  align-items: stretch;
}
.service-card {
  flex: 1;
  padding: var(--space-10);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-true-white);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  transition: box-shadow 0.25s;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
}
.service-card__num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-4xl);
  color: var(--color-brand);
  line-height: 1;
  letter-spacing: var(--tracking-tighter);
}
.service-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-xl);
  color: var(--color-navy);
  line-height: 1.2;
}
.service-card__body {
  position: relative;
  padding-top: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  flex-grow: 1;
}
.service-card__body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-border);
}
.service-card__body::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-brand);
  transition: width 0.4s ease;
}
.service-card:hover .service-card__body::after {
  width: 100%;
}
.service-card__body p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-sm);
  line-height: 1.85;
  color: var(--color-gray-600);
}

/* ── Process ── */
.process {
  background: var(--color-warm-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.process__timeline {
  position: relative;
  display: flex;
  margin-bottom: 32px;
}
.process__timeline::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, #4F8DC3 0%, #B8D401 33%, #D77E20 66%, #af1f25 100%);
  z-index: 0;
}
.process__node-col {
  flex: 1;
  display: flex;
  justify-content: center;
}
.process__node {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-sm);
  position: relative;
  z-index: 1;
}
.process__node--1 { border: 2px solid #4F8DC3; color: #4F8DC3; }
.process__node--2 { border: 2px solid #B8D401; color: #B8D401; }
.process__node--3 { border: 2px solid #D77E20; color: #D77E20; }
.process__node--4 { border: 2px solid #af1f25; color: #af1f25; }

.process__grid {
  gap: var(--space-4);
}
.process-card {
  flex: 1;
  padding: var(--space-6);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  background: var(--color-white);
}
.process-card__step {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.process-card--1 .process-card__step { color: #4F8DC3; }
.process-card--2 .process-card__step { color: #B8D401; }
.process-card--3 .process-card__step { color: #D77E20; }
.process-card--4 .process-card__step { color: #af1f25; }
.process-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-xl);
  color: var(--color-navy);
  line-height: 1.2;
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 14px;
}
.process-card__title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-border);
}
.process-card__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  transition: width 0.4s ease;
}
.process-card:hover .process-card__title::after {
  width: 100%;
}
.process-card--1 .process-card__title::after { background: #4F8DC3; }
.process-card--2 .process-card__title::after { background: #B8D401; }
.process-card--3 .process-card__title::after { background: #D77E20; }
.process-card--4 .process-card__title::after { background: #af1f25; }
.process-card__desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-sm);
  line-height: 1.85;
  color: var(--color-gray-600);
}

/* ── About ── */
.about {
  background: var(--color-white);
}
.about__row {
  align-items: flex-start;
  gap: 80px;
}
.about__photo {
  flex: 0 0 480px;
  position: relative;
}
.about__photo-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.about__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: filter 0.4s ease;
}
.about__photo-frame:hover img {
  filter: brightness(1.08) contrast(1.05);
}
.about__content {
  flex: 1;
  min-width: 0;
  /* padding-top: var(--space-4); */
}
.about__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.875rem, 3vw, 3rem);
  color: var(--color-navy);
  line-height: 1.15;
  letter-spacing: var(--tracking-tighter);
  margin-bottom: var(--space-8);
  text-wrap: pretty;
}
.about__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.about__body p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-base);
  line-height: 1.85;
  color: var(--color-gray-600);
}
.about__closing {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: var(--text-xl);
  color: var(--color-navy);
  line-height: 1.4;
  margin-top: var(--space-2);
}

/* ── CTA ── */
.cta {
  background: var(--color-navy);
}
.cta__inner {
  text-align: center;
}
.cta__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 4vw, 4rem);
  color: #fff;
  line-height: 1.1;
  letter-spacing: var(--tracking-tighter);
  margin-bottom: var(--space-6);
}
.cta__lead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto var(--space-10);
}

/* ── Blog hero ── */
.blog-hero {
  padding-top: 152px;
  padding-bottom: 0;
  background: var(--color-white);
  position: relative;
}
.blog-hero__inner {
  position: relative;
  padding-bottom: 64px;
}
.blog-hero__ghost-clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.blog-hero__ghost {
  position: absolute;
  left: -8px;
  bottom: -20px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(120px, 18vw, 220px);
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: rgba(11, 17, 32, 0.045);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}
.blog-hero__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: var(--tracking-tighter);
  color: var(--color-navy);
  text-wrap: pretty;
}
.blog-hero__title em {
  font-style: italic;
  color: var(--color-brand);
}

/* ── Blog listing ── */
.blog-list {
  padding-top: 0;
  background: var(--color-white);
}
.blog-grid {
  flex-wrap: wrap;
}
.blog-card {
  position: relative;
  flex: 0 1 calc(33.333% - var(--space-6));
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-true-white);
  transition: transform 0.25s, box-shadow 0.25s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.blog-card__image-wrapper {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-warm-white);
}
.blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.blog-card:hover .blog-card__image {
  transform: scale(1.08);
}
.blog-card__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-6);
  flex-grow: 1;
}
.blog-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-xl);
  color: var(--color-navy);
  line-height: 1.3;
  transition: color 0.2s;
}
.blog-card__title a::after {
  content: '';
  position: absolute;
  inset: 0;
}
.blog-card:hover .blog-card__title {
  color: var(--color-brand);
}
.blog-card__lead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-sm);
  line-height: 1.75;
  color: var(--color-gray-600);
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-card__meta {
  display: flex;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--color-gray-600);
  opacity: 0.7;
  margin-top: var(--space-2);
  padding-top: var(--space-2);
  border-top: 1px solid var(--color-border-subtle);
}

/* ── Breadcrumbs ── */
.breadcrumbs {
  padding-top: 0;
  padding-bottom: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-gray-600);
}
.breadcrumbs a {
  transition: color 0.2s;
}
.breadcrumbs a:hover {
  color: var(--color-brand);
}
.breadcrumbs__sep {
  color: var(--color-gray-400);
}
.breadcrumbs__current {
  color: var(--color-gray-600);
  opacity: 0.7;
}

/* ── Article header ── */
.article-header {
  padding-top: 0;
  padding-bottom: var(--space-10);
  background: var(--color-white);
}
.article-header__meta {
  display: flex;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-gray-600);
  opacity: 0.7;
  margin-bottom: var(--space-5);
}
.article-header__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: var(--tracking-tighter);
  color: var(--color-navy);
  text-wrap: pretty;
  margin-bottom: var(--space-4);
}
.article-header__lead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-lg);
  line-height: 1.8;
  color: var(--color-gray-600);
}
.article-header__lead em {
  font-style: italic;
}

/* ── Article hero image ── */
.article-hero {
  margin-top: 100px;
  padding-bottom: var(--space-4);
  background: var(--color-white);
}
.article-hero__frame {
  width: 100%;
  aspect-ratio: 21 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.article-hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Article body ── */
.article {
  padding-top: 0;
  padding-bottom: var(--section-padding-y-sm);
  background: var(--color-white);
}
.article-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-base);
  line-height: 1.85;
  color: var(--color-gray-700);
}
.article-body > * + * {
  margin-top: var(--space-6);
}
.article-body h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-3xl);
  color: var(--color-navy);
  line-height: 1.25;
  letter-spacing: var(--tracking-tight);
  margin-top: var(--space-12) !important;
}
.article-body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-xl);
  color: var(--color-navy);
  line-height: 1.3;
  margin-top: var(--space-8) !important;
}
.article-body h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--color-navy);
  margin-top: var(--space-8) !important;
}
.article-body strong {
  font-weight: 600;
  color: var(--color-navy);
}
.article-body ul {
  padding-left: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.article-body ul li {
  list-style: disc;
}
.article-body img {
  width: 100%;
  border-radius: var(--radius-md);
}
.article-body blockquote {
  border-left: 3px solid var(--color-brand);
  padding-left: var(--space-6);
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  line-height: 1.6;
  color: var(--color-navy);
}
.article-body hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: var(--space-8) 0;
}
.article__highlight {
  padding: var(--space-6) var(--space-8);
  border-left: 3px solid var(--color-brand);
  background: var(--color-warm-white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  line-height: 1.6;
  color: var(--color-navy);
}
.citation {
  color: var(--color-brand);
  cursor: help;
  font-style: normal;
}

/* ── Article related posts ── */
.article-related {
  background: var(--color-warm-white);
  border-top: 1px solid var(--color-border);
}

/* ── Footer ── */
.footer {
  background: var(--color-navy-mid);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 36px var(--space-8);
}
.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__copy {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.04em;
}
.footer__link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer__link:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero__row {
    flex-direction: column;
  }
  .hero__photo {
    display: none;
  }
  .services__grid {
    flex-direction: column;
  }
  .process__grid {
    flex-wrap: wrap;
  }
  .process__grid .process-card {
    flex: 1 1 calc(50% - var(--space-4));
  }
  .about__row {
    flex-direction: column;
  }
  .about__photo {
    order: -1;
    flex-basis: auto;
    width: 100%;
  }
  .blog-card {
    flex: 0 1 calc(50% - var(--space-6));
  }
  .article-hero__frame {
    aspect-ratio: 16 / 9;
  }
  .nav__links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #fff;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    padding: var(--space-2) var(--space-8) var(--space-4);
  }
  .nav--menu-open .nav__links {
    display: flex;
  }
  .nav__link {
    width: 100%;
    padding: var(--space-3) 0;
  }
  .nav__toggle {
    display: flex;
  }
}

@media (max-width: 600px) {
  .container {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }
  .hero .btn-group {
    flex-direction: column;
  }
  .hero .btn {
    width: 100%;
    justify-content: center;
  }
  .section {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
    padding-left: 0;
    padding-right: 0;
  }
  .process__grid {
    flex-direction: column;
  }
  .process__grid .process-card {
    flex: 1 1 100%;
  }
  .process__timeline {
    display: none;
  }
  .blog-card {
    flex: 1 1 100%;
  }
  .article-hero__frame {
    aspect-ratio: 4 / 3;
  }
  .breadcrumbs {
    flex-wrap: nowrap;
  }
  .breadcrumbs__current {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .nav__logo {
    height: 32px;
  }
  .blog-hero {
    padding-top: 90px;
    padding-bottom: 0;
  }
  .blog-hero__inner {
    padding-bottom: 32px;
  }
  .blog-hero__ghost {
    font-size: clamp(60px, 18vw, 220px);
    bottom: -5px;
  }
}
