:root {
  --ink: #0b0a08;
  --charcoal: #14120f;
  --graphite: #221d17;
  --marble: #31291f;
  --paper: #f5efe5;
  --muted: rgba(245, 239, 229, 0.7);
  --quiet: rgba(245, 239, 229, 0.48);
  --gold: #b8873a;
  --gold-soft: #d4ac62;
  --line: rgba(245, 239, 229, 0.16);
  --line-strong: rgba(212, 172, 98, 0.42);
  --danger: #d5967b;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --motion-hero-heading-duration: 720ms;
  --motion-hero-copy-duration: 700ms;
  --motion-hero-copy-delay: 150ms;
  --motion-hero-cta-duration: 640ms;
  --motion-hero-cta-delay: 330ms;
  --motion-hero-media-duration: 900ms;
  --motion-hero-extra-delay: 400ms;
  --motion-reveal-duration: 520ms;
  --motion-reveal-stagger: 70ms;
  --trust-build-duration: 1650ms;
  --trust-build-stagger: 160ms;
  --motion-parallax-max: 7;
  --motion-parallax-lerp: 0.085;
  --motion-ambient-duration: 26s;
  --motion-ambient-opacity: 0.28;
  --motion-ambient-opacity-low: 0.16;
  --motion-ambient-opacity-end: 0.22;
  --motion-ambient-secondary-opacity: 0.34;
  --motion-spotlight-size: 260px;
  --motion-spotlight-opacity: 0.16;
  --motion-spotlight-lerp: 0.16;
  --motion-card-lift: -3px;
  --motion-card-scale: 1.008;
  --motion-cta-shine-duration: 480ms;
  --motion-scroll-parallax-range: 22;
  --motion-scroll-parallax-lerp: 0.1;
  --motion-line-duration: 1000ms;
  --font-display: Georgia, "Times New Roman", serif;
  --font-ui: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[hidden] {
  display: none !important;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 22% 12%, rgba(184, 135, 58, 0.14), transparent 28rem),
    linear-gradient(180deg, var(--ink), #100e0b 38%, var(--charcoal));
  font-family: var(--font-ui);
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  background-image: linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 100% 5px;
  mix-blend-mode: overlay;
  opacity: 0.16;
}

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

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

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

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

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-160%);
  transition: transform 180ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  border-bottom: 1px solid rgba(245, 239, 229, 0.12);
  background: linear-gradient(180deg, rgba(11, 10, 8, 0.82), rgba(11, 10, 8, 0.58));
  backdrop-filter: blur(18px);
}

.nav {
  width: min(100% - 56px, 1420px);
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 2.4vw, 36px);
}

.brand {
  display: grid;
  gap: 6px;
  align-items: center;
  justify-items: center;
  min-width: max-content;
}

.brand-logo {
  display: block;
  width: clamp(168px, 13vw, 236px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.brand-mark {
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1;
}

.brand span:last-child {
  color: var(--quiet);
  font-size: 0.64rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.nav-toggle {
  display: none;
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  touch-action: manipulation;
}

.nav-button span,
.nav-button span::before,
.nav-button span::after {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--paper);
  transition: transform 220ms var(--ease);
}

.nav-button span::before,
.nav-button span::after {
  content: "";
  position: relative;
}

.nav-button span::before {
  top: -6px;
}

.nav-button span::after {
  top: 5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(13px, 1.35vw, 24px);
  color: var(--muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links > a:not(.nav-cta)::after,
.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--gold-soft);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}

.nav-links > a:not(.nav-cta):hover::after,
.nav-links > a:not(.nav-cta)[aria-current="page"]::after,
.nav-dropdown-toggle:hover::after,
.nav-dropdown.has-current .nav-dropdown-toggle::after,
.nav-dropdown.is-open .nav-dropdown-toggle::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  inset: 100% 0 auto;
  height: 16px;
}

.nav-dropdown-toggle {
  appearance: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
  cursor: pointer;
}

.nav-dropdown-toggle span {
  color: var(--gold-soft);
  font-size: 0.9rem;
  line-height: 1;
  transition: transform 220ms var(--ease);
}

.nav-dropdown.is-open .nav-dropdown-toggle span,
.nav-dropdown:hover .nav-dropdown-toggle span {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  z-index: 10;
  display: grid;
  width: 260px;
  padding: 9px;
  border: 1px solid var(--line-strong);
  background: rgba(16, 14, 12, 0.98);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.42);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms var(--ease), visibility 180ms var(--ease), transform 180ms var(--ease);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  padding: 13px 15px;
  border-left: 1px solid transparent;
  color: var(--muted);
  line-height: 1.35;
  transition: color 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease);
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a[aria-current="page"] {
  border-left-color: var(--gold-soft);
  color: var(--paper);
  background: rgba(212, 172, 98, 0.08);
}

.nav-cta {
  margin-left: 2px;
  min-width: 164px;
  box-shadow: inset 0 0 0 1px rgba(245, 239, 229, 0.08), 0 14px 36px rgba(0, 0, 0, 0.24);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--line-strong);
  color: var(--paper);
  background: linear-gradient(135deg, rgba(184, 135, 58, 0.16), rgba(11, 10, 8, 0.54));
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
  transition: border-color 220ms var(--ease), background 220ms var(--ease), transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.nav-cta:hover,
.button:hover {
  border-color: var(--gold-soft);
  background: linear-gradient(135deg, rgba(212, 172, 98, 0.24), rgba(11, 10, 8, 0.66));
  box-shadow: inset 0 0 0 1px rgba(245, 239, 229, 0.12), 0 18px 42px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.button-light {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.button-light:hover {
  color: var(--paper);
}

.hero {
  position: relative;
  min-height: 74vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: 124px 0 48px;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(11, 10, 8, 0.86), rgba(11, 10, 8, 0.54) 43%, rgba(11, 10, 8, 0.2)),
    linear-gradient(180deg, transparent 64%, var(--ink));
}

.hero-media,
.page-hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media {
  object-position: 68% center;
}

.container {
  width: min(100% - 48px, 1420px);
  margin: 0 auto;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 34px;
}

.hero-copy {
  grid-column: 1 / 8;
}

.eyebrow {
  color: var(--gold-soft);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin: 0 0 18px;
}

h1,
h2,
h3,
.footer-heading {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

h1 {
  font-size: clamp(2.55rem, 5vw, 5.9rem);
  max-width: 980px;
}

h2,
.footer-heading {
  font-size: clamp(2.35rem, 4vw, 4.9rem);
}

h3 {
  font-size: clamp(1.55rem, 2.1vw, 2.45rem);
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.42rem);
  line-height: 1.55;
}

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

.hero-facts {
  grid-column: 1 / 11;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 32px;
  border: 1px solid var(--line);
  background: var(--line);
}

.fact {
  min-height: 138px;
  padding: 25px;
  background: rgba(11, 10, 8, 0.58);
  backdrop-filter: blur(12px);
}

.fact strong {
  display: block;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
}

.fact span {
  display: block;
  max-width: 320px;
  margin-top: 12px;
  color: var(--quiet);
  font-size: 0.92rem;
}

.section {
  padding: clamp(78px, 10vw, 150px) 0;
}

.section-rule {
  border-top: 1px solid var(--line);
}

.section-heading {
  grid-column: 1 / 7;
}

.section-copy {
  grid-column: 8 / 13;
}

.startup-scope {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 42%, rgba(184, 135, 58, 0.11), transparent 22rem),
    radial-gradient(circle at 84% 22%, rgba(184, 135, 58, 0.08), transparent 26rem),
    linear-gradient(180deg, rgba(245, 239, 229, 0.016), transparent 38%);
}

.startup-scope::before {
  content: "";
  position: absolute;
  inset: 8% 0 10%;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 50%, rgba(245, 239, 229, 0.06) 50.1%, rgba(245, 239, 229, 0.06) 50.2%, transparent 50.3%);
  opacity: 0.35;
}

.startup-scope .grid {
  align-items: start;
  row-gap: 28px;
}

.startup-scope .section-heading h2 {
  max-width: 16ch;
  font-size: clamp(2.55rem, 4.25vw, 5rem);
  line-height: 1.04;
  text-wrap: balance;
}

.startup-scope .section-kicker {
  max-width: 500px;
  margin-top: 26px;
}

.startup-scope .section-copy {
  position: relative;
}

.startup-scope .section-copy .lead {
  margin: 0;
  padding: clamp(22px, 2.2vw, 32px);
  border: 1px solid rgba(212, 172, 98, 0.28);
  background:
    linear-gradient(135deg, rgba(245, 239, 229, 0.08), rgba(11, 10, 8, 0.24)),
    rgba(11, 10, 8, 0.48);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(9px);
  color: rgba(245, 239, 229, 0.88);
  font-size: clamp(1.24rem, 1.72vw, 1.78rem);
  line-height: 1.48;
}

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

.scope-tags li {
  list-style: none;
  padding: 9px 14px;
  border: 1px solid rgba(212, 172, 98, 0.34);
  background: rgba(11, 10, 8, 0.42);
  color: rgba(245, 239, 229, 0.72);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.section-kicker {
  max-width: 440px;
  margin: 28px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(212, 172, 98, 0.28);
  color: rgba(245, 239, 229, 0.58);
  font-size: 1rem;
  line-height: 1.7;
}

.premium-scope {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(184, 135, 58, 0.11), transparent 23rem),
    linear-gradient(180deg, rgba(245, 239, 229, 0.018), transparent 42%);
}

.premium-scope::before {
  content: "";
  position: absolute;
  inset: 10% auto 8% 4%;
  width: min(34vw, 520px);
  pointer-events: none;
  border-left: 1px solid rgba(212, 172, 98, 0.22);
  border-bottom: 1px solid rgba(212, 172, 98, 0.12);
  opacity: 0.55;
}

.service-index {
  margin-top: 56px;
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) minmax(250px, 420px) 48px;
  gap: 24px;
  align-items: center;
  min-height: 132px;
  border-bottom: 1px solid var(--line);
  transition: background 220ms var(--ease), border-color 220ms var(--ease);
}

.service-row:hover {
  background: rgba(245, 239, 229, 0.035);
  border-color: var(--line-strong);
}

.service-row small {
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 2rem;
}

.service-row p {
  color: var(--muted);
}

.arrow {
  color: var(--gold-soft);
  font-size: 1.6rem;
  transition: transform 220ms var(--ease);
}

.service-row:hover .arrow {
  transform: translateX(8px);
}

.service-row-debt {
  background: linear-gradient(90deg, rgba(245, 239, 229, 0.025), transparent 72%);
}

.service-subheading {
  margin: 34px 0 0;
  padding: 24px 0 14px;
  border-bottom: 1px solid var(--line);
  color: var(--quiet);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.service-row-compact {
  min-height: 108px;
  opacity: 0.78;
}

.service-row-compact:hover {
  opacity: 1;
}

.trust-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 28%, rgba(184, 135, 58, 0.1), transparent 24rem),
    linear-gradient(180deg, rgba(245, 239, 229, 0.018), transparent 46%);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 58px;
  border: 1px solid var(--line);
  background: var(--line);
}

.trust-card {
  min-height: 318px;
  display: grid;
  align-content: start;
  padding: clamp(24px, 2.4vw, 34px);
  background:
    linear-gradient(180deg, rgba(245, 239, 229, 0.04), rgba(245, 239, 229, 0.012)),
    rgba(20, 18, 15, 0.86);
}

.trust-section {
  overflow-x: clip;
}

.motion-enabled .trust-build.motion-reveal:not(.is-revealed) .trust-card {
  transition: none;
}

.motion-enabled .trust-build.motion-reveal.is-revealed .trust-card {
  transition:
    opacity var(--trust-build-duration) cubic-bezier(0.22, 0.61, 0.36, 1),
    transform var(--trust-build-duration) cubic-bezier(0.22, 0.61, 0.36, 1),
    background 380ms var(--ease),
    box-shadow 380ms var(--ease);
}

.motion-enabled .trust-build.motion-reveal.is-revealed .trust-card:nth-child(1),
.motion-enabled .trust-build.motion-reveal.is-revealed .trust-card:nth-child(4) {
  transition-delay: 0ms;
}

.motion-enabled .trust-build.motion-reveal.is-revealed .trust-card:nth-child(2),
.motion-enabled .trust-build.motion-reveal.is-revealed .trust-card:nth-child(3) {
  transition-delay: var(--trust-build-stagger);
}

.motion-enabled .trust-build.motion-reveal:not(.is-revealed) .trust-card:nth-child(1) {
  opacity: 0.28;
  transform: translate3d(-105vw, 24px, 0);
}

.motion-enabled .trust-build.motion-reveal:not(.is-revealed) .trust-card:nth-child(2) {
  opacity: 0.28;
  transform: translate3d(-105vw, 24px, 0);
}

.motion-enabled .trust-build.motion-reveal:not(.is-revealed) .trust-card:nth-child(3) {
  opacity: 0.28;
  transform: translate3d(105vw, 24px, 0);
}

.motion-enabled .trust-build.motion-reveal:not(.is-revealed) .trust-card:nth-child(4) {
  opacity: 0.28;
  transform: translate3d(105vw, 24px, 0);
}

.trust-build .trust-card.is-story-current,
.trust-build .trust-card.is-story-active {
  background:
    linear-gradient(180deg, rgba(245, 239, 229, 0.04), rgba(245, 239, 229, 0.012)),
    rgba(20, 18, 15, 0.86);
}

@media (hover: hover) and (pointer: fine) {
  html:not(.suppress-card-hover) .trust-build.motion-reveal-complete .trust-card:hover {
    z-index: 1;
    background:
      linear-gradient(180deg, rgba(212, 172, 98, 0.13), rgba(245, 239, 229, 0.022)),
      rgba(28, 24, 19, 0.96);
    box-shadow:
      inset 0 2px 0 rgba(212, 172, 98, 0.58),
      0 18px 42px rgba(0, 0, 0, 0.22);
    transform: translate3d(0, -3px, 0);
  }
}

.trust-card span,
.context-card small {
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.trust-card h3 {
  margin-top: 38px;
  font-size: clamp(1.45rem, 1.7vw, 2rem);
  line-height: 1.08;
}

.trust-card p,
.context-card p,
.work-steps p,
.deliverables-list p {
  color: var(--muted);
}

.specifics-section {
  background: rgba(245, 239, 229, 0.018);
}

.work-steps {
  counter-reset: work-step;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.work-steps li {
  counter-increment: work-step;
  position: relative;
  list-style: none;
  min-height: 116px;
  padding: 24px 0 24px 86px;
  border-bottom: 1px solid var(--line);
}

.work-steps li::before {
  content: "0" counter(work-step);
  position: absolute;
  top: 28px;
  left: 0;
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
}

.work-steps strong,
.deliverables-list strong {
  display: block;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 1.7vw, 2rem);
  font-weight: 400;
  line-height: 1.08;
}

.work-steps p,
.deliverables-list p {
  margin: 10px 0 0;
}

.deliverables-section {
  background:
    linear-gradient(135deg, rgba(184, 135, 58, 0.055), rgba(245, 239, 229, 0.018)),
    rgba(11, 10, 8, 0.28);
}

.deliverables-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.deliverables-list > div {
  min-height: 202px;
  padding: clamp(24px, 2.4vw, 34px);
  background: rgba(20, 18, 15, 0.84);
}

.contexts-section {
  position: relative;
  overflow: hidden;
}

.context-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 54px;
}

.context-card {
  min-height: 360px;
  padding: clamp(24px, 2.6vw, 38px);
  border: 1px solid rgba(212, 172, 98, 0.24);
  background:
    linear-gradient(180deg, rgba(245, 239, 229, 0.055), rgba(245, 239, 229, 0.018)),
    rgba(20, 18, 15, 0.68);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.context-card h3 {
  margin-top: 24px;
  font-size: clamp(1.42rem, 1.8vw, 2.15rem);
  line-height: 1.12;
}

.editorial-pair {
  align-items: center;
}

.editorial-pair .image-panel {
  grid-column: 1 / 8;
  grid-row: 1;
}

.editorial-pair .text-panel {
  grid-column: 8 / 12;
  grid-row: 1;
}

.image-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--graphite);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.94);
  transition: transform 240ms var(--ease);
}

.image-panel:hover img {
  transform: scale(1.025);
}

.caption {
  position: absolute;
  inset: auto 18px 18px;
  padding: 8px 11px;
  border: 1px solid rgba(245, 239, 229, 0.18);
  background: rgba(11, 10, 8, 0.58);
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  backdrop-filter: blur(10px);
}

.text-panel p,
.section-copy p {
  color: var(--muted);
}

.text-panel h2,
.contact-panel h2 {
  font-size: clamp(2.1rem, 3.2vw, 4rem);
}

.list-lines {
  display: grid;
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.list-lines li {
  list-style: none;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.list-lines strong {
  color: var(--paper);
}

.list-lines p {
  margin: 10px 0 0;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: rgba(245, 239, 229, 0.03);
}

.metric {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric b {
  display: block;
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 2.35rem;
  font-weight: 400;
  line-height: 1;
}

.metric span {
  color: var(--quiet);
  font-size: 0.9rem;
}

.contact-band {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(184, 135, 58, 0.08), rgba(245, 239, 229, 0.03));
}

.contact-panel {
  grid-column: 1 / 5;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-item {
  display: grid;
  gap: 6px;
  padding: 18px 0;
  border-top: 1px solid rgba(245, 239, 229, 0.14);
  color: var(--paper);
  text-decoration: none;
}

.contact-item span,
.contact-meta {
  color: var(--quiet);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-item strong {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 1.6vw, 1.65rem);
  font-weight: 400;
  line-height: 1.18;
}

.contact-item[href] strong {
  color: var(--gold-soft);
}

.contact-item[href]:hover strong {
  color: var(--paper);
}

.contact-meta {
  margin: 6px 0 0;
  line-height: 1.6;
  text-transform: none;
  letter-spacing: 0;
}

.contact-form {
  grid-column: 6 / 12;
  display: grid;
  gap: 20px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label,
.check {
  color: var(--muted);
  font-size: 0.86rem;
}

.label-note,
.field-hint {
  color: var(--quiet);
  font-size: 0.78rem;
}

.field-hint {
  margin: 0;
  line-height: 1.5;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: var(--paper);
  background: rgba(11, 10, 8, 0.28);
  padding: 14px 0;
  transition: border-color 240ms var(--ease), background 240ms var(--ease);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(245, 239, 229, 0.38);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--gold-soft);
  background: rgba(11, 10, 8, 0.46);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

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

.full {
  grid-column: 1 / -1;
}

.check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.check input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--gold);
}

.check a,
.form-note a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.form-note {
  color: var(--quiet);
  font-size: 0.86rem;
}

.success-panel {
  grid-column: 1 / 8;
  padding: clamp(120px, 16vh, 180px) 0 72px;
}

.success-panel h1 {
  max-width: 760px;
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 7vw, 6.6rem);
  font-weight: 400;
  line-height: 0.95;
}

.success-panel .lead {
  max-width: 660px;
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.success-details {
  grid-column: 9 / 13;
  align-self: end;
  margin-bottom: 72px;
  border-top: 1px solid var(--line);
}

.success-details p {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.success-details a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  background: rgba(245, 239, 229, 0.035);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 1.7vw, 1.85rem);
  line-height: 1.18;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

.page-hero {
  position: relative;
  min-height: 62vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: 150px 0 72px;
}

.page-hero .hero-copy {
  grid-column: 1 / 9;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 44px;
  border: 1px solid var(--line);
  background: var(--line);
}

.process-step {
  min-height: 245px;
  padding: 27px;
  background: rgba(20, 18, 15, 0.95);
}

.process-step span {
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 2.1rem;
}

.process-step p {
  color: var(--muted);
}

.split-list {
  grid-column: 6 / 12;
  counter-reset: premium-list;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid rgba(212, 172, 98, 0.24);
  background:
    linear-gradient(135deg, rgba(245, 239, 229, 0.065), rgba(11, 10, 8, 0.22)),
    rgba(20, 18, 15, 0.74);
  box-shadow: inset 0 1px 0 rgba(245, 239, 229, 0.06), 0 28px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(10px);
}

.split-list li {
  counter-increment: premium-list;
  position: relative;
  min-height: 132px;
  display: grid;
  align-content: end;
  list-style: none;
  margin: 0;
  padding: 48px 20px 20px;
  border: 1px solid rgba(245, 239, 229, 0.1);
  background:
    linear-gradient(180deg, rgba(245, 239, 229, 0.045), rgba(245, 239, 229, 0.015)),
    rgba(11, 10, 8, 0.42);
  color: rgba(245, 239, 229, 0.76);
  font-size: clamp(0.96rem, 1vw, 1.06rem);
  line-height: 1.55;
  transition: border-color 220ms var(--ease), transform 220ms var(--ease), background 220ms var(--ease);
}

.split-list li::before {
  content: "0" counter(premium-list);
  position: absolute;
  top: 18px;
  left: 20px;
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.split-list li::after {
  content: "";
  position: absolute;
  top: 23px;
  right: 20px;
  width: 34px;
  height: 1px;
  background: rgba(212, 172, 98, 0.48);
}

.split-list li:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 172, 98, 0.42);
  background:
    linear-gradient(180deg, rgba(184, 135, 58, 0.095), rgba(245, 239, 229, 0.02)),
    rgba(11, 10, 8, 0.48);
}

.service-start {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 22%, rgba(184, 135, 58, 0.09), transparent 22rem),
    linear-gradient(180deg, rgba(245, 239, 229, 0.012), transparent 48%);
}

.decision-panel {
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(212, 172, 98, 0.28);
  background:
    linear-gradient(135deg, rgba(245, 239, 229, 0.07), rgba(11, 10, 8, 0.26)),
    rgba(20, 18, 15, 0.78);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.25);
}

.decision-panel h3 {
  font-size: clamp(1.75rem, 2.4vw, 3rem);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
}

.check-list li {
  position: relative;
  list-style: none;
  padding-left: 30px;
  color: rgba(245, 239, 229, 0.74);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 12px;
  height: 1px;
  background: var(--gold-soft);
}

.cta-paths {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 48px;
  border: 1px solid var(--line);
  background: var(--line);
}

.check-card {
  min-height: 240px;
  padding: clamp(22px, 2vw, 28px);
  background: rgba(20, 18, 15, 0.94);
}

.check-card span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.check-card h3 {
  font-size: clamp(1.34rem, 1.65vw, 2rem);
}

.check-card p {
  color: var(--muted);
}

.site-footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(96px, 10vw, 150px) 0 34px;
  min-height: 620px;
  display: grid;
  align-items: center;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    image-set(
      url("../assets/images/optimized/footer-kontakt-960.jpg") 1x,
      url("../assets/images/optimized/footer-kontakt-1600.jpg") 2x
    ) center / cover no-repeat;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 34%, rgba(184, 135, 58, 0.12), transparent 24rem),
    linear-gradient(90deg, rgba(11, 10, 8, 0.98) 0%, rgba(11, 10, 8, 0.86) 45%, rgba(11, 10, 8, 0.66) 100%),
    linear-gradient(180deg, rgba(20, 18, 15, 0.96), transparent 34%, rgba(11, 10, 8, 0.88));
}

.footer-main {
  grid-column: 1 / 7;
  align-self: center;
}

.footer-logo {
  display: block;
  width: clamp(158px, 15vw, 250px);
  height: auto;
  margin: 0 0 16px;
  opacity: 0.96;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.34));
}

.footer-heading {
  max-width: 850px;
  text-wrap: balance;
}

.footer-data {
  grid-column: 8 / 13;
  display: grid;
  align-self: center;
  gap: 0;
  color: var(--paper);
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(212, 172, 98, 0.34);
  background:
    linear-gradient(135deg, rgba(245, 239, 229, 0.075), rgba(11, 10, 8, 0.56)),
    rgba(11, 10, 8, 0.52);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
}

.footer-data span,
.footer-data a {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(245, 239, 229, 0.14);
  color: rgba(245, 239, 229, 0.78);
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  line-height: 1.35;
}

.footer-data .footer-address {
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 2.25rem);
  font-weight: 400;
  line-height: 1.05;
}

.footer-data small {
  margin-top: 8px;
  color: var(--gold-soft);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  line-height: 1.3;
}

.footer-data a {
  color: var(--gold-soft);
  transition: color 240ms var(--ease), transform 240ms var(--ease);
}

.footer-data a:last-child,
.footer-data span:last-child {
  border-bottom: 0;
}

.footer-data a:hover {
  color: var(--paper);
  transform: translateX(6px);
}

.footer-bottom {
  margin-top: clamp(58px, 7vw, 92px);
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--quiet);
  font-size: 0.84rem;
}

.footer-links a {
  color: rgba(245, 239, 229, 0.8);
  text-decoration: none;
  transition: color 220ms var(--ease);
}

.footer-links a:hover {
  color: var(--gold-soft);
}

.motion-enabled:not(.motion-runtime-ready):not(.motion-fallback) :is(.hero, .page-hero, .credit-hero) :is(.eyebrow, h1) {
  opacity: 0;
  transform: translate3d(0, 25px, 0);
}

.motion-enabled:not(.motion-runtime-ready):not(.motion-fallback) :is(.hero, .page-hero, .credit-hero) .lead {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
}

.motion-enabled:not(.motion-runtime-ready):not(.motion-fallback) :is(.hero, .page-hero, .credit-hero) .hero-actions {
  opacity: 0;
  transform: scale(0.96);
}

.motion-enabled:not(.motion-runtime-ready):not(.motion-fallback) :is(.hero, .page-hero, .credit-hero) :is(.hero-media, .hero-facts, .credit-hero-media img),
.motion-enabled:not(.motion-runtime-ready):not(.motion-fallback) .page-hero > img {
  opacity: 0;
  transform: scale(0.96);
}

.motion-enabled .hero-motion-heading,
.motion-enabled .hero-motion-copy,
.motion-enabled .hero-motion-actions,
.motion-enabled .hero-motion-extra,
.motion-enabled .hero-motion-media {
  will-change: opacity, transform;
}

.motion-enabled .hero-motion-heading {
  opacity: 0;
  transform: translate3d(0, 25px, 0);
  transition:
    opacity var(--motion-hero-heading-duration) var(--ease),
    transform var(--motion-hero-heading-duration) var(--ease);
}

.motion-enabled .hero-motion-copy {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition:
    opacity var(--motion-hero-copy-duration) var(--ease) var(--motion-hero-copy-delay),
    transform var(--motion-hero-copy-duration) var(--ease) var(--motion-hero-copy-delay);
}

.motion-enabled .hero-motion-actions {
  opacity: 0;
  transform: scale(0.96);
  transform-origin: left center;
  transition:
    opacity var(--motion-hero-cta-duration) var(--ease) var(--motion-hero-cta-delay),
    transform var(--motion-hero-cta-duration) var(--ease) var(--motion-hero-cta-delay);
}

.motion-enabled .hero-motion-extra {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition:
    opacity var(--motion-hero-copy-duration) var(--ease) var(--motion-hero-extra-delay),
    transform var(--motion-hero-copy-duration) var(--ease) var(--motion-hero-extra-delay);
}

.motion-enabled .hero-motion-media {
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  --hero-scroll-y: 0px;
  opacity: 0;
  transform: translate3d(var(--hero-shift-x), calc(var(--hero-shift-y) + var(--hero-scroll-y)), 0) scale(0.96);
  transform-origin: center;
  transition:
    opacity var(--motion-hero-media-duration) var(--ease),
    transform var(--motion-hero-media-duration) var(--ease);
}

.motion-enabled .is-hero-visible .hero-motion-heading,
.motion-enabled .is-hero-visible .hero-motion-copy,
.motion-enabled .is-hero-visible .hero-motion-actions,
.motion-enabled .is-hero-visible .hero-motion-extra {
  opacity: 1;
  transform: none;
}

.motion-enabled .is-hero-visible .hero-motion-media {
  opacity: 1;
  transform: translate3d(var(--hero-shift-x), calc(var(--hero-shift-y) + var(--hero-scroll-y)), 0) scale(1.006);
}

.motion-enabled .is-parallax-ready .hero-motion-media {
  transition: none;
}

.motion-enabled .is-hero-complete :is(.hero-motion-heading, .hero-motion-copy, .hero-motion-actions, .hero-motion-extra) {
  will-change: auto;
}

.motion-enabled .motion-reveal-item {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity var(--motion-reveal-duration) var(--ease),
    transform var(--motion-reveal-duration) var(--ease);
  transition-delay: calc(var(--motion-order, 0) * var(--motion-reveal-stagger));
  will-change: opacity, transform;
}

.motion-enabled .is-revealed > .motion-reveal-item {
  opacity: 1;
  transform: none;
}

.motion-enabled .is-revealed.motion-reveal-complete > .motion-reveal-item {
  will-change: auto;
}

/* Second-level motion: ambient light, card spotlight and premium details. */
.ambient-host,
.ambient-section-glow {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.ambient-light {
  --ambient-left: 72%;
  --ambient-top: 28%;
  position: absolute;
  z-index: 0;
  top: var(--ambient-top);
  left: var(--ambient-left);
  width: min(76vw, 980px);
  height: min(56vw, 720px);
  border-radius: 50%;
  pointer-events: none;
  opacity: var(--motion-ambient-opacity);
  background: radial-gradient(
    ellipse at center,
    rgba(229, 192, 121, 0.42) 0%,
    rgba(184, 135, 58, 0.18) 38%,
    rgba(184, 135, 58, 0) 72%
  );
  filter: blur(62px);
  mix-blend-mode: screen;
  transform: translate3d(-52%, -48%, 0) scale(0.94);
  animation: ambient-drift var(--motion-ambient-duration) ease-in-out infinite alternate;
  will-change: transform, opacity;
}

.ambient-light--alt {
  --ambient-left: 28%;
  --ambient-top: 66%;
  animation-direction: alternate-reverse;
}

.ambient-light--secondary {
  --ambient-left: 18%;
  --ambient-top: 76%;
  width: min(58vw, 760px);
  height: min(44vw, 580px);
  opacity: var(--motion-ambient-secondary-opacity);
  animation-duration: 25s;
  animation-direction: alternate-reverse;
}

:is(.hero, .page-hero, .credit-hero) > .ambient-light {
  z-index: -1;
}

.ambient-section-glow > .container,
.credit-hero.ambient-host > :not(.ambient-light) {
  position: relative;
  z-index: 1;
}

@keyframes ambient-drift {
  0% {
    opacity: var(--motion-ambient-opacity-low);
    transform: translate3d(-54%, -48%, 0) scale(0.92);
  }

  52% {
    opacity: var(--motion-ambient-opacity);
    transform: translate3d(-46%, -55%, 0) scale(1.04);
  }

  100% {
    opacity: var(--motion-ambient-opacity-end);
    transform: translate3d(-50%, -44%, 0) scale(1.09);
  }
}

.depth-section {
  box-shadow:
    inset 0 74px 100px -118px rgba(212, 172, 98, 0.28),
    inset 0 -74px 100px -118px rgba(0, 0, 0, 0.9);
}

.spotlight-card {
  --spotlight-x: 50%;
  --spotlight-y: 50%;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 420ms var(--ease),
    border-color 420ms var(--ease),
    box-shadow 420ms var(--ease),
    background-color 420ms var(--ease);
}

.spotlight-card > * {
  position: relative;
  z-index: 1;
}

.spotlight-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(
    circle var(--motion-spotlight-size) at var(--spotlight-x) var(--spotlight-y),
    rgb(212 172 98 / var(--motion-spotlight-opacity)),
    rgb(212 172 98 / 0.045) 36%,
    transparent 70%
  );
  transition: opacity 320ms var(--ease);
}

.spotlight-card.is-spotlight-active::after {
  opacity: 1;
}

.button-light,
.nav-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.button-light::before,
.nav-cta::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -45% auto -45% -42%;
  width: 32%;
  pointer-events: none;
  opacity: 0.65;
  background: linear-gradient(100deg, transparent, rgba(255, 245, 222, 0.28), transparent);
  transform: translate3d(-190%, 0, 0) skewX(-18deg);
}

.credit-icon {
  transition: transform 300ms var(--ease), color 300ms var(--ease);
}

.motion-line-host {
  position: relative;
}

.section-line-motion {
  position: absolute;
  z-index: 3;
  top: -1px;
  left: 50%;
  width: min(calc(100% - 48px), 1420px);
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(212, 172, 98, 0.75) 22%, rgba(212, 172, 98, 0.34) 78%, transparent);
  transform: translateX(-50%) scaleX(0);
  transform-origin: left center;
  transition: transform var(--motion-line-duration) var(--ease);
}

.motion-line-host.is-line-visible > .section-line-motion {
  transform: translateX(-50%) scaleX(1);
}

@media (hover: hover) and (pointer: fine) {
  .motion-enabled .spotlight-card:hover {
    border-color: rgba(212, 172, 98, 0.42);
    box-shadow:
      inset 0 1px 0 rgba(255, 242, 210, 0.07),
      0 18px 40px rgba(0, 0, 0, 0.2),
      0 0 34px rgba(184, 135, 58, 0.12);
    transform: translate3d(0, var(--motion-card-lift), 0) scale(var(--motion-card-scale));
  }

  .motion-enabled .spotlight-card:hover .credit-icon {
    color: var(--gold-soft);
    transform: translate3d(0, -2px, 0) rotate(3deg) scale(1.05);
  }

  .button-light:hover,
  .nav-cta:hover {
    box-shadow:
      0 10px 26px rgba(0, 0, 0, 0.2),
      0 0 22px rgba(212, 172, 98, 0.12);
  }

  .button-light:hover::before,
  .nav-cta:hover::before {
    transform: translate3d(520%, 0, 0) skewX(-18deg);
    transition: transform var(--motion-cta-shine-duration) var(--ease);
  }
}

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

  .hero-motion-heading,
  .hero-motion-copy,
  .hero-motion-actions,
  .hero-motion-extra,
  .hero-motion-media,
  .motion-reveal-item {
    opacity: 1 !important;
    transform: none !important;
    transition-delay: 0ms !important;
  }

  .ambient-light {
    animation: none !important;
    opacity: 0.18;
    transform: translate3d(-50%, -50%, 0) scale(1) !important;
    will-change: auto;
  }

  .spotlight-card,
  .spotlight-card:hover,
  .credit-icon,
  .spotlight-card:hover .credit-icon {
    transform: none !important;
  }

  .spotlight-card::after,
  .button-light::before,
  .nav-cta::before {
    display: none;
  }

  .section-line-motion {
    transform: translateX(-50%) scaleX(1) !important;
  }
}

@media (max-width: 720px) {
  .ambient-light {
    width: 150vw;
    height: 105vw;
    filter: blur(36px);
    opacity: 0.12;
    animation: none;
    transform: translate3d(-50%, -50%, 0) scale(1);
    will-change: auto;
  }

  .spotlight-card::after {
    display: none;
  }

  .section-line-motion {
    width: calc(100% - 30px);
  }

  .motion-enabled .motion-reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1120px) {
  .nav {
    min-height: 72px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-button {
    display: flex;
  }

  .nav-links {
    position: fixed;
    inset: 72px 0 auto;
    display: grid;
    gap: 0;
    padding: 18px 24px 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(11, 10, 8, 0.96);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    transform: translateY(-125%);
    transition: transform 220ms var(--ease);
  }

  .nav-links > a,
  .nav-links .nav-cta,
  .nav-dropdown-toggle {
    padding: 16px 0;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown::before {
    display: none;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    padding: 0 0 8px 14px;
    border: 0;
    border-left: 1px solid rgba(212, 172, 98, 0.28);
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
  }

  .nav-dropdown-menu a {
    padding: 12px 16px;
  }

  .nav-toggle:checked ~ .nav-links {
    transform: translateY(0);
  }

  .nav-toggle:focus-visible + .nav-button {
    outline: 2px solid var(--gold-soft);
    outline-offset: 4px;
  }

  .nav-toggle:checked + .nav-button span {
    transform: rotate(45deg);
  }

  .nav-toggle:checked + .nav-button span::before {
    transform: translateY(6px) rotate(90deg);
  }

  .nav-toggle:checked + .nav-button span::after {
    transform: translateY(-6px) rotate(90deg);
  }

  .grid,
  .container.grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-facts,
  .section-heading,
  .section-copy,
  .editorial-pair .image-panel,
  .editorial-pair .text-panel,
  .contact-panel,
  .contact-form,
  .success-panel,
  .success-details,
  .page-hero .hero-copy,
  .split-list,
  .footer-main,
  .footer-data {
    grid-column: 1;
    grid-row: auto;
  }

  .hero {
    min-height: 700px;
  }

  .hero-facts,
  .metric-strip,
  .process,
  .checklist-grid,
  .trust-grid,
  .context-grid {
    grid-template-columns: 1fr;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-card,
  .context-card {
    min-height: auto;
  }

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

  .service-row {
    grid-template-columns: 54px 1fr 32px;
    min-height: auto;
    padding: 24px 0;
  }

  .service-row p {
    grid-column: 2 / 4;
    margin: 0;
  }

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

  .success-panel {
    padding: 108px 0 24px;
  }

  .success-details {
    margin-bottom: 40px;
  }

  .split-list {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .startup-scope .section-heading h2 {
    max-width: 100%;
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .startup-scope .section-copy .lead {
    font-size: 1.22rem;
    padding: 20px;
  }

  .cta-paths {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .nav,
  .container {
    width: min(100% - 30px, 1420px);
  }

  .hero {
    min-height: 640px;
    padding-bottom: 38px;
  }

  .hero-media {
    object-position: 72% center;
  }

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

  .button,
  .nav-cta {
    width: 100%;
  }

  .brand-logo {
    width: clamp(136px, 46vw, 176px);
  }

  .footer-logo {
    width: clamp(138px, 52vw, 210px);
  }

  .work-steps li {
    padding-left: 0;
    padding-top: 74px;
  }

  .work-steps li::before {
    top: 24px;
  }
}

/* Kredyty dla Firm */
.service-row-credit {
  grid-template-columns: 96px minmax(0, 1fr) minmax(250px, 420px) minmax(138px, auto);
  background: linear-gradient(90deg, rgba(184, 135, 58, 0.07), transparent 72%);
}

.credit-offer-label {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  white-space: nowrap;
}

.credit-offer-label b {
  font-size: 1.45rem;
  font-weight: 400;
}

.breadcrumbs {
  padding-top: 108px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 16px 0 18px;
  color: var(--quiet);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.breadcrumbs li {
  list-style: none;
}

.breadcrumbs li + li::before {
  content: "/";
  margin-right: 8px;
  color: rgba(212, 172, 98, 0.54);
}

.breadcrumbs a:hover {
  color: var(--gold-soft);
}

.credit-hero {
  padding-bottom: clamp(48px, 6vw, 82px);
}

.credit-hero-media,
.graphic-link-wrap {
  position: relative;
}

.credit-hero-media {
  width: min(100% - 48px, 1600px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(212, 172, 98, 0.24);
  background: #090908;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.credit-hero-media img,
.graphic-link-wrap img,
.credit-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.visual-cta {
  position: absolute;
  z-index: 2;
  display: block;
  border: 1px solid transparent;
  background: transparent;
}

.visual-cta:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
  border-color: var(--gold-soft);
  background: rgba(184, 135, 58, 0.08);
}

.visual-cta-hero {
  left: 4.45%;
  top: 83.8%;
  width: 34.1%;
  height: 8.2%;
}

.visual-cta-products {
  left: 4.45%;
  top: 84.9%;
  width: 32.5%;
  height: 8.5%;
}

.visual-cta-process {
  left: 4.45%;
  top: 79.2%;
  width: 32%;
  height: 8.8%;
}

.credit-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding-top: 30px;
}

.credit-intro .eyebrow {
  margin-bottom: 10px;
}

.credit-intro .lead {
  max-width: 790px;
  margin: 0;
}

.credit-intro .hero-actions {
  flex: 0 0 auto;
  justify-content: flex-end;
  margin-top: 0;
}

@media (min-width: 621px) {
  .credit-intro h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 54px;
  border: 1px solid var(--line);
  background: var(--line);
}

.audience-tile {
  min-height: 172px;
  display: grid;
  align-content: space-between;
  gap: 24px;
  padding: clamp(22px, 2vw, 30px);
  background: rgba(20, 18, 15, 0.94);
}

.audience-tile span {
  color: var(--gold-soft);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}

.audience-tile strong {
  color: rgba(245, 239, 229, 0.9);
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 1.4vw, 1.62rem);
  font-weight: 400;
  line-height: 1.18;
}

.credit-solutions {
  background:
    radial-gradient(circle at 88% 14%, rgba(184, 135, 58, 0.1), transparent 28rem),
    rgba(245, 239, 229, 0.012);
}

.finance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 56px;
  border: 1px solid var(--line);
  background: var(--line);
}

.finance-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(26px, 2.6vw, 40px);
  background:
    linear-gradient(180deg, rgba(245, 239, 229, 0.045), rgba(245, 239, 229, 0.012)),
    rgba(20, 18, 15, 0.94);
  transition: background 220ms var(--ease);
}

.finance-card:hover {
  background:
    linear-gradient(180deg, rgba(184, 135, 58, 0.1), rgba(245, 239, 229, 0.018)),
    rgba(20, 18, 15, 0.96);
}

.credit-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  fill: none;
  stroke: var(--gold-soft);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.finance-card h3 {
  font-size: clamp(1.48rem, 1.9vw, 2.25rem);
}

.finance-card p {
  margin-bottom: 28px;
  color: var(--muted);
}

.text-button {
  margin-top: auto;
  padding: 10px 0;
  border: 0;
  color: var(--gold-soft);
  background: transparent;
  cursor: pointer;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.72rem;
}

.text-button span {
  display: inline-block;
  margin-left: 8px;
  transition: transform 200ms var(--ease);
}

.text-button:hover span {
  transform: translateX(5px);
}

.credit-feature {
  align-items: center;
}

.credit-figure {
  position: relative;
  grid-column: 1 / 8;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0a0908;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.credit-feature-copy {
  grid-column: 9 / 13;
}

.credit-feature-copy .lead {
  margin-bottom: 30px;
}

.benefits-section {
  background: linear-gradient(135deg, rgba(184, 135, 58, 0.065), rgba(245, 239, 229, 0.02));
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.benefits-list > div {
  min-height: 146px;
  display: grid;
  align-content: space-between;
  padding: 22px;
  background: rgba(20, 18, 15, 0.9);
}

.benefits-list span {
  color: var(--gold-soft);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}

.benefits-list p {
  margin: 24px 0 0;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 1.45vw, 1.65rem);
  line-height: 1.2;
}

.light-product-section {
  background:
    radial-gradient(circle at 82% 28%, rgba(184, 135, 58, 0.08), transparent 30rem),
    rgba(245, 239, 229, 0.012);
}

.light-product-section .graphic-link-wrap {
  border: 1px solid rgba(11, 10, 8, 0.15);
  box-shadow: 0 28px 70px rgba(11, 10, 8, 0.16);
}

.graphic-action,
.process-action {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.light-product-section .graphic-action .button {
  border-color: var(--paper);
  color: var(--ink);
  background: var(--paper);
}

.light-product-section .graphic-action .button:hover {
  color: var(--ink);
  background: #d4ac62;
}

.process-section {
  background:
    radial-gradient(circle at 78% 34%, rgba(184, 135, 58, 0.09), transparent 28rem),
    rgba(11, 10, 8, 0.24);
}

.process-graphic {
  margin-top: 54px;
  overflow: hidden;
  border: 1px solid rgba(212, 172, 98, 0.28);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.credit-process {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.credit-process li {
  min-height: 205px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: clamp(24px, 2.4vw, 34px);
  list-style: none;
  background: rgba(20, 18, 15, 0.95);
}

.credit-process li > span {
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1;
}

.credit-process h3 {
  font-size: clamp(1.35rem, 1.65vw, 1.9rem);
}

.credit-process p {
  margin: 12px 0 0;
  color: var(--muted);
}

.document-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.document-list li {
  position: relative;
  list-style: none;
  padding: 17px 0 17px 25px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.document-list li::before {
  content: "";
  position: absolute;
  top: 1.75em;
  left: 0;
  width: 10px;
  height: 1px;
  background: var(--gold-soft);
}

.document-note {
  margin-top: 26px;
  padding: 20px;
  border-left: 2px solid var(--gold-soft);
  background: rgba(184, 135, 58, 0.08);
  color: rgba(245, 239, 229, 0.82);
}

.credit-form-section {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 28%, rgba(184, 135, 58, 0.14), transparent 26rem),
    linear-gradient(135deg, rgba(184, 135, 58, 0.07), rgba(245, 239, 229, 0.025));
}

.credit-contact-panel {
  align-self: start;
  position: sticky;
  top: 118px;
}

.form-assurance {
  display: grid;
  gap: 12px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--quiet);
  font-size: 0.88rem;
}

.form-assurance p {
  margin: 0;
}

.form-assurance strong {
  color: var(--paper);
}

.credit-form {
  padding: clamp(24px, 3.5vw, 46px);
  border: 1px solid rgba(212, 172, 98, 0.26);
  background: rgba(11, 10, 8, 0.48);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.optional-company-details {
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  background: rgba(245, 239, 229, 0.025);
}

.optional-company-details summary {
  position: relative;
  padding: 17px 52px 17px 18px;
  color: var(--paper);
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}

.optional-company-details summary::-webkit-details-marker {
  display: none;
}

.optional-company-details summary span {
  margin-left: 8px;
  color: var(--quiet);
  font-size: 0.72rem;
  font-weight: 400;
}

.optional-company-details summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  color: var(--gold-soft);
  font-size: 1.15rem;
  transform: translateY(-50%);
  transition: transform 260ms var(--ease);
}

.optional-company-details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.optional-company-details > .form-grid {
  padding: 6px 18px 20px;
  border-top: 1px solid var(--line);
}

.amount-field {
  position: relative;
}

.amount-field input {
  padding-right: 52px;
}

.amount-field span {
  position: absolute;
  top: 50%;
  right: 0;
  color: var(--quiet);
  font-size: 0.75rem;
  transform: translateY(-50%);
}

.turnover-inputs {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 14px;
}

.radio-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.radio-fieldset legend {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.86rem;
}

.radio-row {
  display: flex;
  gap: 12px;
}

.radio-row label {
  min-width: 100px;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  color: var(--paper);
  background: rgba(245, 239, 229, 0.03);
  cursor: pointer;
}

.radio-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.character-hint {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.form-submit-row {
  display: grid;
  gap: 14px;
}

.submit-button {
  position: relative;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.submit-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: credit-spin 700ms linear infinite;
}

.submit-button.is-loading .submit-spinner {
  display: block;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  font-size: 0.9rem;
}

.form-status.is-success {
  padding: 14px 16px;
  border: 1px solid rgba(116, 179, 131, 0.46);
  color: #bfe1c7;
  background: rgba(59, 119, 73, 0.16);
}

.form-status.is-error {
  padding: 14px 16px;
  border: 1px solid rgba(213, 150, 123, 0.5);
  color: #efbca6;
  background: rgba(124, 59, 42, 0.16);
}

.finance-disclaimer {
  padding: 26px 0;
  border-top: 1px solid rgba(212, 172, 98, 0.28);
  border-bottom: 1px solid var(--line);
  color: var(--quiet);
  background: #0a0908;
  font-size: 0.84rem;
}

.finance-disclaimer p {
  max-width: 1120px;
  margin: 0;
}

@keyframes credit-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1120px) {
  .breadcrumbs {
    padding-top: 88px;
  }

  .credit-intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .credit-intro .hero-actions {
    justify-content: flex-start;
  }

  .audience-grid,
  .finance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .credit-feature-copy,
  .credit-figure {
    grid-column: 1;
  }

  .credit-feature-copy {
    margin-top: 16px;
  }

  .credit-contact-panel {
    position: static;
  }

  .service-row-credit {
    grid-template-columns: 54px 1fr 32px;
  }

  .credit-offer-label span {
    display: none;
  }
}

@media (max-width: 620px) {
  .breadcrumbs {
    padding-top: 74px;
  }

  .credit-hero-media {
    width: 100%;
    border-right: 0;
    border-left: 0;
  }

  .credit-hero-media img,
  .graphic-link-wrap img,
  .credit-figure img {
    aspect-ratio: 16 / 9;
  }

  .visual-cta {
    display: none;
  }

  .credit-intro {
    width: min(100% - 30px, 1420px);
    padding-top: 26px;
  }

  .credit-intro h1 {
    margin-bottom: 16px;
    font-size: clamp(2.55rem, 13vw, 4.2rem);
  }

  .credit-intro .hero-actions {
    width: 100%;
  }

  .audience-grid,
  .finance-grid,
  .benefits-list,
  .credit-process,
  .document-list {
    grid-template-columns: 1fr;
  }

  .audience-tile,
  .finance-card {
    min-height: auto;
  }

  .credit-process li {
    grid-template-columns: 44px 1fr;
  }

  .turnover-inputs {
    grid-template-columns: 1fr;
  }

  .radio-row {
    align-items: stretch;
    flex-direction: column;
  }

  .graphic-action .button,
  .process-action .button {
    width: 100%;
  }

  .credit-form {
    padding: 22px 18px;
  }
}

/* Premium UX system: semantic storytelling, navigation and conversion guidance. */
.section-dock {
  position: fixed;
  z-index: 8;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.section-dock-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 16px 11px;
  border: 1px solid rgba(245, 239, 229, 0.1);
  background: rgba(9, 8, 7, 0.62);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
}

.section-dock-item {
  position: relative;
  list-style: none;
}

.section-dock-link {
  position: relative;
  display: grid;
  place-items: center;
  width: 14px;
  height: 14px;
}

.section-dock-dot {
  width: 5px;
  height: 5px;
  border: 1px solid rgba(245, 239, 229, 0.42);
  border-radius: 50%;
  background: transparent;
  transition: width 300ms var(--ease), height 300ms var(--ease), border-color 300ms var(--ease), background 300ms var(--ease), box-shadow 300ms var(--ease);
}

.section-dock-link.is-active .section-dock-dot {
  width: 9px;
  height: 9px;
  border-color: var(--gold-soft);
  background: var(--gold-soft);
  box-shadow: 0 0 18px rgba(212, 172, 98, 0.72);
}

.section-dock-label {
  position: absolute;
  top: 50%;
  right: calc(100% + 14px);
  width: max-content;
  max-width: 220px;
  padding: 7px 10px;
  border: 1px solid rgba(212, 172, 98, 0.22);
  color: rgba(245, 239, 229, 0.82);
  background: rgba(9, 8, 7, 0.94);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translate3d(8px, -50%, 0);
  pointer-events: none;
  transition: opacity 240ms var(--ease), transform 240ms var(--ease);
}

.section-dock-link:hover .section-dock-label,
.section-dock-link:focus-visible .section-dock-label {
  opacity: 1;
  transform: translate3d(0, -50%, 0);
}

.site-header.is-scrolled {
  border-color: rgba(212, 172, 98, 0.2);
  background: rgba(9, 8, 7, 0.91);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px) saturate(1.08);
}

.site-header.is-scrolled .nav {
  min-height: 68px;
}

.segmented-control {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.segment-button {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(245, 239, 229, 0.16);
  color: rgba(245, 239, 229, 0.66);
  background: rgba(11, 10, 8, 0.46);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 260ms var(--ease), border-color 260ms var(--ease), background 260ms var(--ease), box-shadow 260ms var(--ease), transform 260ms var(--ease);
}

.segment-button:hover {
  color: var(--paper);
  border-color: rgba(212, 172, 98, 0.48);
  transform: translateY(-1px);
}

.segment-button[aria-pressed="true"] {
  color: var(--ink);
  border-color: var(--gold-soft);
  background: var(--gold-soft);
  box-shadow: 0 10px 28px rgba(184, 135, 58, 0.2);
}

/* Homepage: a guided story instead of a sequence of equal blocks. */
.service-story-layout {
  display: grid;
  grid-template-columns: minmax(280px, 4.2fr) minmax(0, 7.8fr);
  gap: clamp(46px, 7vw, 110px);
  align-items: start;
  margin-top: 18px;
}

.service-story-intro {
  position: sticky;
  top: 118px;
  padding-top: 22px;
}

.service-story-intro .section-heading,
.service-story-intro .section-copy {
  grid-column: auto;
}

.service-story-intro .section-copy {
  margin-top: 30px;
}

.service-story-layout .service-index {
  position: relative;
  margin-top: 0;
}

.service-story-layout .service-index::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: linear-gradient(var(--gold-soft), rgba(212, 172, 98, 0.12));
  transform: scaleY(var(--service-progress, 0));
  transform-origin: top center;
  transition: transform 160ms linear;
}

.service-story-layout .service-row {
  grid-template-columns: 64px minmax(0, 1fr) 38px;
  min-height: 172px;
  padding: 26px 24px;
  opacity: 0.68;
  transform: translate3d(0, 10px, 0);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease), background 320ms var(--ease), border-color 320ms var(--ease);
}

.service-story-layout .service-row p {
  grid-column: 2 / 3;
  margin: 0;
}

.service-story-layout .service-row .arrow {
  grid-column: 3;
  grid-row: 1 / 3;
}

.service-story-layout .service-row.is-story-active {
  opacity: 1;
  transform: none;
}

.service-story-layout .service-row.is-story-current {
  background: linear-gradient(90deg, rgba(184, 135, 58, 0.11), rgba(245, 239, 229, 0.018));
  border-color: rgba(212, 172, 98, 0.42);
}

.story-steps,
.dossier-build {
  position: relative;
}

.story-steps::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: linear-gradient(var(--gold-soft), rgba(212, 172, 98, 0.08));
  transform: scaleY(var(--work-progress, 0));
  transform-origin: top center;
}

.story-steps li,
.dossier-build > div {
  opacity: 0.7;
  transition: opacity 460ms var(--ease), transform 460ms var(--ease), border-color 460ms var(--ease), background 460ms var(--ease);
}

.story-steps li.is-story-active,
.dossier-build > div.is-story-active {
  opacity: 1;
}

.story-steps li.is-story-current {
  padding-left: 98px;
  background: linear-gradient(90deg, rgba(184, 135, 58, 0.09), transparent 72%);
}

.dossier-build::after {
  content: "";
  position: absolute;
  z-index: 3;
  right: -1px;
  bottom: -1px;
  left: -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-soft), rgba(212, 172, 98, 0.16));
  transform: scaleX(var(--dossier-progress, 0));
  transform-origin: left center;
}

.dossier-build > div.is-story-current {
  background: linear-gradient(145deg, rgba(184, 135, 58, 0.12), rgba(20, 18, 15, 0.9));
  border-color: rgba(212, 172, 98, 0.35);
}

.evidence-build,
.benefits-build,
.scope-build {
  position: relative;
}

.evidence-build::after,
.benefits-build::after,
.scope-build::after {
  content: "";
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-soft), rgba(212, 172, 98, 0.12));
  transform: scaleX(var(--evidence-progress, 0));
  transform-origin: left center;
}

.benefits-build::after {
  transform: scaleX(var(--benefits-progress, 0));
}

.scope-build::after {
  transform: scaleX(var(--scope-progress, 0));
}

.evidence-build > *,
.benefits-build > *,
.scope-build > * {
  opacity: 0.42;
  transition: opacity 460ms var(--ease), transform 460ms var(--ease), border-color 460ms var(--ease), background 460ms var(--ease);
}

.evidence-build > *.is-story-active,
.benefits-build > *.is-story-active,
.scope-build > *.is-story-active {
  opacity: 1;
}

.evidence-build > *.is-story-current,
.benefits-build > *.is-story-current,
.scope-build > *.is-story-current {
  border-color: rgba(212, 172, 98, 0.4);
  background-color: rgba(184, 135, 58, 0.09);
}

.context-selector {
  width: min(100% - 48px, 1420px);
  margin: 46px auto 0;
}

.context-grid {
  transition: gap 420ms var(--ease);
}

.context-card {
  transition: opacity 420ms var(--ease), filter 420ms var(--ease), transform 420ms var(--ease), border-color 420ms var(--ease), box-shadow 420ms var(--ease);
}

.context-card.is-context-muted {
  opacity: 0.28;
  filter: saturate(0.45);
  transform: scale(0.985);
}

.context-card.is-context-selected {
  border-color: rgba(212, 172, 98, 0.58);
  box-shadow: 0 30px 78px rgba(0, 0, 0, 0.3), 0 0 48px rgba(184, 135, 58, 0.11);
  transform: translateY(-4px);
}

.credibility-rail {
  position: relative;
}

.credibility-rail::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-soft), rgba(212, 172, 98, 0.12));
  transform: scaleX(var(--metric-progress, 0));
  transform-origin: left center;
}

.credibility-rail .metric {
  opacity: 0.42;
  transition: opacity 460ms var(--ease), background 460ms var(--ease);
}

.credibility-rail .metric.is-story-active {
  opacity: 1;
}

.credibility-rail .metric.is-story-current {
  background: rgba(184, 135, 58, 0.08);
}

/* Credits: clear promise in the first viewport and user-controlled scope. */
@media (min-width: 1121px) {
  .credit-experience .credit-hero {
    position: relative;
    min-height: min(860px, calc(100vh - 42px));
    display: grid;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    padding: 96px 0 58px;
  }

  .credit-experience .credit-hero::after {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    pointer-events: none;
    background:
      linear-gradient(90deg, #0b0a08 0%, rgba(11, 10, 8, 0.98) 26%, rgba(11, 10, 8, 0.82) 43%, rgba(11, 10, 8, 0.14) 72%),
      linear-gradient(180deg, transparent 65%, #0b0a08 100%);
  }

  .credit-experience .credit-hero.ambient-host > .credit-hero-media {
    position: absolute;
    z-index: -1;
    inset: 96px 24px 34px 34%;
    width: auto;
    margin: 0;
    border-color: rgba(212, 172, 98, 0.18);
  }

  .credit-experience .credit-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 63% center;
  }

  .credit-experience .credit-hero.ambient-host > .credit-intro {
    position: relative;
    z-index: 2;
    display: block;
    width: min(100% - 48px, 1420px);
    padding-top: 0;
  }

  .credit-experience .credit-intro > div:first-child {
    width: min(58%, 800px);
  }

  .credit-experience .credit-intro h1 {
    position: static;
    width: auto;
    height: auto;
    margin: 0 0 24px;
    overflow: visible;
    clip: auto;
    white-space: normal;
    font-size: clamp(3.4rem, 5.4vw, 6.9rem);
    text-wrap: balance;
  }

  .credit-experience .credit-intro .lead {
    max-width: 680px;
    color: rgba(245, 239, 229, 0.82);
  }

  .credit-experience .credit-intro > .hero-actions {
    justify-content: flex-start;
    margin-top: 34px;
  }
}

.credit-mode-control--hero {
  margin-top: 28px;
}

.credit-mode-control--solutions {
  width: min(100% - 48px, 1420px);
  margin: 44px auto -18px;
}

.finance-card.solution-enter,
.audience-tile:not([hidden]) {
  animation: solution-enter 380ms var(--ease) both;
}

@keyframes solution-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0) scale(0.993);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.comparison-story {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 3vw, 44px);
  bottom: clamp(18px, 3vw, 44px);
  left: clamp(18px, 3vw, 44px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(212, 172, 98, 0.28);
  background: rgba(245, 239, 229, 0.12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.comparison-story::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-soft), rgba(212, 172, 98, 0.2));
  transform: scaleX(var(--comparison-progress, 0));
  transform-origin: left center;
}

.comparison-step {
  display: grid;
  gap: 7px;
  padding: 19px 22px;
  color: rgba(245, 239, 229, 0.52);
  background: rgba(11, 10, 8, 0.76);
  opacity: 0.58;
  transition: color 420ms var(--ease), background 420ms var(--ease), opacity 420ms var(--ease);
}

.comparison-step span {
  color: var(--gold-soft);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
}

.comparison-step strong {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.3vw, 1.4rem);
  font-weight: 400;
}

.comparison-step.is-story-active {
  color: var(--paper);
  opacity: 1;
}

.comparison-step.is-story-current {
  background: rgba(68, 50, 25, 0.8);
}

.process-story-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
  margin-top: 56px;
}

.process-story-layout::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(var(--gold-soft), rgba(212, 172, 98, 0.1));
  transform: scaleY(var(--process-story-progress, 0));
  transform-origin: top center;
}

.process-story-layout .process-graphic {
  position: sticky;
  top: 104px;
  margin-top: 0;
}

.process-story-layout .process-graphic img {
  min-height: 560px;
  object-fit: cover;
}

.process-visual-meta {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 16px;
  padding: 18px 20px;
  border: 1px solid rgba(212, 172, 98, 0.34);
  background: rgba(9, 8, 7, 0.78);
  backdrop-filter: blur(16px);
}

.process-visual-meta span {
  grid-column: 1 / -1;
  color: var(--gold-soft);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.process-visual-meta strong {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 400;
}

.process-visual-meta i {
  align-self: center;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-soft), transparent);
}

.process-story-layout .credit-process {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0;
  border: 0;
  background: transparent;
}

.process-story-layout .credit-process li {
  min-height: 168px;
  border-bottom: 1px solid var(--line);
  background: rgba(20, 18, 15, 0.62);
  opacity: 0.64;
  transform: translate3d(0, 8px, 0);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease), background 520ms var(--ease), border-color 520ms var(--ease);
}

.process-story-layout .credit-process li.is-story-active {
  opacity: 1;
  transform: none;
}

.process-story-layout .credit-process li.is-story-current {
  border-color: rgba(212, 172, 98, 0.48);
  background: linear-gradient(110deg, rgba(184, 135, 58, 0.16), rgba(20, 18, 15, 0.86));
}

.document-progress,
.form-completion {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.document-progress > div,
.form-completion > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--quiet);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.document-progress strong,
.form-completion strong {
  color: var(--gold-soft);
}

.document-progress i,
.form-completion i {
  height: 2px;
  background: linear-gradient(90deg, var(--gold-soft), rgba(212, 172, 98, 0.18));
  transform: scaleX(var(--document-progress, 0));
  transform-origin: left center;
  transition: transform 420ms var(--ease);
}

.form-completion i {
  transform: scaleX(var(--form-progress, 0));
}

.document-list li[role="checkbox"] {
  cursor: pointer;
  transition: color 260ms var(--ease), background 260ms var(--ease), padding-left 260ms var(--ease);
}

.document-list li[role="checkbox"]::before {
  top: 1.35em;
  width: 15px;
  height: 15px;
  border: 1px solid rgba(212, 172, 98, 0.52);
  background: transparent;
}

.document-list li.is-checked {
  padding-left: 34px;
  color: var(--paper);
  background: rgba(184, 135, 58, 0.07);
}

.document-list li.is-checked::before {
  content: "✓";
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--gold-soft);
  font-size: 0.7rem;
}

.faq-filters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 22px;
}

.faq-filters .segment-button {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 10px 12px;
  text-align: center;
  white-space: normal;
}

.faq-list details {
  transition: border-color 320ms var(--ease), background 320ms var(--ease), box-shadow 320ms var(--ease);
}

.faq-list details.is-open {
  border-color: rgba(212, 172, 98, 0.36);
  background: linear-gradient(110deg, rgba(184, 135, 58, 0.08), rgba(245, 239, 229, 0.025));
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.18);
}

.faq-list summary {
  position: relative;
  padding-right: 58px;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  color: var(--gold-soft);
  font-family: var(--font-ui);
  font-size: 1.2rem;
  transform: translateY(-50%);
  transition: transform 280ms var(--ease);
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

/* Service pages: distinct process rhythm and useful self-diagnosis. */
.service-experience .page-hero .hero-copy {
  padding-bottom: 12px;
}

.hero-scroll-cue {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  color: rgba(245, 239, 229, 0.46);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-scroll-cue::before {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-soft), transparent);
  transform-origin: left center;
  animation: cue-line 2.8s var(--ease) infinite;
}

@keyframes cue-line {
  0%, 100% { transform: scaleX(0.35); opacity: 0.45; }
  48% { transform: scaleX(1); opacity: 1; }
}

.process-build {
  position: relative;
  isolation: isolate;
}

.process-build::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: -1px;
  right: -1px;
  left: -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-soft), rgba(212, 172, 98, 0.12));
  transform: scaleX(var(--process-progress, 0));
  transform-origin: left center;
}

.process-build .process-step {
  position: relative;
  opacity: 0.7;
  transform: translate3d(0, 8px, 0);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease), background 520ms var(--ease), box-shadow 520ms var(--ease);
}

.process-build .process-step::after {
  content: "";
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-soft), transparent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 620ms var(--ease);
}

.process-build .process-step.is-story-active {
  opacity: 1;
  transform: none;
}

.process-build .process-step.is-story-active::after {
  transform: scaleX(1);
}

.process-build .process-step.is-story-current {
  background: linear-gradient(145deg, rgba(184, 135, 58, 0.16), rgba(20, 18, 15, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 243, 218, 0.06), 0 24px 54px rgba(0, 0, 0, 0.2);
}

/* Każda podstrona ma jeden charakterystyczny, ale spokojny moment procesu. */
.service-advisory .signature-process {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-advisory .signature-process .process-step {
  min-height: 180px;
}

.service-debt .signature-process .process-step {
  border-top: 2px solid rgba(212, 172, 98, 0.12);
}

.service-debt .signature-process .process-step.is-story-current {
  border-top-color: var(--gold-soft);
}

.service-company .signature-process .process-step > span:first-child {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(212, 172, 98, 0.34);
  color: var(--gold-soft);
}

.checklist-build .check-card {
  opacity: 0.42;
  transform: translate3d(0, 14px, 0);
  transition: opacity 480ms var(--ease), transform 480ms var(--ease), border-color 480ms var(--ease), background 480ms var(--ease);
}

.checklist-build .check-card.is-story-active {
  opacity: 1;
  transform: none;
}

.checklist-build .check-card.is-story-current {
  border-color: rgba(212, 172, 98, 0.42);
  background: rgba(184, 135, 58, 0.08);
}

.service-start .check-list li[role="checkbox"] {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 9px 12px 9px 38px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: color 260ms var(--ease), border-color 260ms var(--ease), background 260ms var(--ease), transform 260ms var(--ease);
}

.service-start .check-list li[role="checkbox"]::before {
  top: 50%;
  left: 12px;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(212, 172, 98, 0.52);
  background: transparent;
  transform: translateY(-50%);
}

.service-start .check-list li[role="checkbox"].is-selected {
  color: var(--paper);
  border-color: rgba(212, 172, 98, 0.3);
  background: rgba(184, 135, 58, 0.09);
  transform: translateX(4px);
}

.service-start .check-list li[role="checkbox"].is-selected::before {
  content: "✓";
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--gold-soft);
  font-size: 0.66rem;
}

.diagnostic-summary {
  margin: 18px 0 0;
  color: var(--gold-soft);
  font-size: 0.8rem;
}

.cinematic-panel {
  overflow: hidden;
}

.cinematic-panel img {
  height: calc(100% + 36px);
  min-height: 100%;
  transform: translate3d(0, var(--cinematic-shift, 0px), 0) scale(1.035);
  will-change: transform;
}

.field.is-focused label {
  color: var(--gold-soft);
}

.field.is-focused input,
.field.is-focused select,
.field.is-focused textarea {
  box-shadow: 0 12px 34px rgba(184, 135, 58, 0.07);
}

/* Legal pages: functional navigation takes priority over decorative motion. */
.legal-toc {
  position: sticky;
  z-index: 7;
  top: 68px;
  border-top: 1px solid rgba(212, 172, 98, 0.16);
  border-bottom: 1px solid rgba(245, 239, 229, 0.12);
  background: rgba(11, 10, 8, 0.91);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.legal-toc-inner {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.legal-toc-title {
  flex: 0 0 auto;
  color: var(--gold-soft);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-toc-links {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  overflow-x: auto;
  scrollbar-width: none;
}

.legal-toc-links::-webkit-scrollbar {
  display: none;
}

.legal-toc-link {
  flex: 0 0 auto;
  padding: 9px 12px;
  border: 1px solid transparent;
  color: rgba(245, 239, 229, 0.5);
  font-size: 0.72rem;
  transition: color 240ms var(--ease), border-color 240ms var(--ease), background 240ms var(--ease);
}

.legal-toc-link:hover,
.legal-toc-link.is-active {
  color: var(--paper);
  border-color: rgba(212, 172, 98, 0.28);
  background: rgba(184, 135, 58, 0.08);
}

.legal-experience main > .section:not(.contact-band) {
  scroll-margin-top: 150px;
  padding-top: clamp(62px, 7vw, 105px);
  padding-bottom: clamp(62px, 7vw, 105px);
}

/* Confirmation page: calm closure and clear next steps. */
.confirmation-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
  color: var(--gold-soft);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.confirmation-mark span {
  position: relative;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212, 172, 98, 0.52);
  border-radius: 50%;
  box-shadow: 0 0 34px rgba(184, 135, 58, 0.16);
}

.confirmation-mark span::before,
.confirmation-mark span::after {
  content: "";
  position: absolute;
  height: 1px;
  background: var(--gold-soft);
  transform-origin: left center;
  animation: confirm-stroke 760ms var(--ease) both;
}

.confirmation-mark span::before {
  top: 22px;
  left: 10px;
  width: 10px;
  transform: rotate(44deg) scaleX(0);
  animation-delay: 240ms;
}

.confirmation-mark span::after {
  top: 26px;
  left: 17px;
  width: 18px;
  transform: rotate(-48deg) scaleX(0);
  animation-delay: 580ms;
}

@keyframes confirm-stroke {
  to { transform: rotate(var(--confirm-angle, 44deg)) scaleX(1); }
}

.confirmation-mark span::after {
  --confirm-angle: -48deg;
}

.success-timeline {
  position: relative;
  display: grid;
  gap: 0;
  max-width: 700px;
  margin: 38px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.success-timeline li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
  list-style: none;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(12px);
  animation: success-step 620ms var(--ease) forwards;
}

.success-timeline li:nth-child(2) { animation-delay: 140ms; }
.success-timeline li:nth-child(3) { animation-delay: 280ms; }

.success-timeline span {
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.success-timeline p {
  margin: 0;
  color: var(--muted);
}

@keyframes success-step {
  to { opacity: 1; transform: none; }
}

@media (max-width: 1120px) {
  .section-dock {
    display: none;
  }

  .service-story-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-story-intro {
    position: static;
  }

  .service-story-layout .service-row {
    opacity: 1;
    transform: none;
  }

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

  .process-story-layout .process-graphic {
    position: relative;
    top: auto;
  }

  .process-story-layout .process-graphic img {
    min-height: 0;
  }

  .process-story-layout .credit-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cinematic-panel img {
    height: 100%;
    transform: none;
    will-change: auto;
  }

  .legal-toc {
    top: 72px;
  }
}

@media (min-width: 621px) and (max-width: 1120px) {
  .credit-experience .credit-intro h1 {
    position: static;
    width: auto;
    height: auto;
    margin: 0 0 20px;
    overflow: visible;
    clip: auto;
    white-space: normal;
    font-size: clamp(3rem, 7.4vw, 5rem);
  }
}

@media (max-width: 720px) {
  .site-header.is-scrolled .nav {
    min-height: 64px;
  }

  .segmented-control {
    display: grid;
    grid-template-columns: 1fr;
  }

  .segment-button {
    width: 100%;
    text-align: left;
  }

  .faq-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-filters .segment-button {
    min-height: 48px;
    padding: 10px 12px;
    font-size: 0.65rem;
  }

  .credit-mode-control--solutions,
  .context-selector {
    width: min(100% - 30px, 1420px);
  }

  .credit-mode-control,
  .context-selector {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .credit-mode-control::-webkit-scrollbar,
  .context-selector::-webkit-scrollbar {
    display: none;
  }

  .credit-mode-control .segment-button,
  .context-selector .segment-button {
    flex: 0 0 auto;
    width: auto;
    white-space: nowrap;
  }

  .service-story-layout .service-row {
    grid-template-columns: 46px minmax(0, 1fr) 28px;
    min-height: 0;
    padding: 24px 8px 24px 14px;
  }

  .service-story-layout .service-row p {
    grid-column: 1 / -1;
  }

  .context-card.is-context-muted {
    display: none;
  }

  .comparison-story {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: 1fr;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    backdrop-filter: none;
  }

  .comparison-step {
    padding: 15px 17px;
  }

  .process-story-layout {
    width: min(100% - 30px, 1420px);
    margin-top: 36px;
  }

  .process-story-layout .credit-process {
    grid-template-columns: 1fr;
  }

  .process-story-layout .credit-process li {
    min-height: 0;
    opacity: 1;
    transform: none;
  }

  .process-story-layout::before,
  .process-visual-meta {
    display: none;
  }

  .process-build .process-step,
  .checklist-build .check-card,
  .story-steps li,
  .dossier-build > div,
  .evidence-build > *,
  .benefits-build > *,
  .scope-build > * {
    opacity: 1;
    transform: none;
  }

  .service-advisory .signature-process {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    top: 64px;
  }

  .legal-toc-inner {
    min-height: 54px;
    gap: 12px;
  }

  .legal-toc-title {
    display: none;
  }

  .legal-toc-links {
    margin-right: -15px;
    padding-right: 15px;
  }

  .success-timeline li {
    grid-template-columns: 38px 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cue::before,
  .finance-card.solution-enter,
  .audience-tile:not([hidden]),
  .confirmation-mark span::before,
  .confirmation-mark span::after,
  .success-timeline li {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .service-story-layout .service-row,
  .story-steps li,
  .dossier-build > div,
  .evidence-build > *,
  .benefits-build > *,
  .scope-build > *,
  .process-build .process-step,
  .checklist-build .check-card,
  .process-story-layout .credit-process li {
    opacity: 1 !important;
    transform: none !important;
  }
}
