:root {
  --font-geist-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-geist-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --ink: #171916;
  --ink-soft: #2b2e29;
  --paper: #f6f4ee;
  --paper-warm: #eeebe2;
  --white: #fffefa;
  --yellow: #f2c33d;
  --yellow-soft: #ffe695;
  --sage: #dbe2d7;
  --line: rgba(23, 25, 22, 0.15);
  --muted: #666961;
  --shell: min(1240px, calc(100vw - 64px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 12px 18px;
  background: var(--yellow);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(23, 25, 22, 0.92);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.header-inner {
  height: 88px;
  display: flex;
  align-items: center;
  gap: 36px;
}

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

.brand-mark {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 18px;
  letter-spacing: 0.12em;
}

.brand-copy small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  content: "";
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--yellow);
  transition: right 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: white;
}

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

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 24px;
  border: 1px solid var(--yellow);
  background: var(--yellow);
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button span {
  font-size: 18px;
  transition: transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: transparent;
  color: var(--yellow);
}

.button:hover span,
.button:focus-visible span {
  transform: translate(3px, -3px);
}

.button-small {
  min-height: 46px;
  padding-inline: 20px;
  margin-left: 8px;
  font-size: 13px;
}

.mobile-menu {
  display: none;
  margin-left: auto;
}

.hero {
  position: relative;
  min-height: 840px;
  display: flex;
  overflow: hidden;
  padding: 160px 0 96px;
  background: var(--ink);
  color: var(--white);
}

.hero::before {
  position: absolute;
  content: "";
  inset: 88px 0 auto;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  pointer-events: none;
}

.hero-orb-one {
  width: 480px;
  height: 480px;
  right: -180px;
  top: 140px;
  border: 1px solid rgba(242, 195, 61, 0.22);
}

.hero-orb-two {
  width: 260px;
  height: 260px;
  right: 110px;
  bottom: -170px;
  background: rgba(242, 195, 61, 0.06);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.75fr);
  align-items: center;
  gap: 9vw;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 1px;
  background: var(--yellow);
}

.eyebrow.dark {
  color: var(--muted);
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.55);
}

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

h1 {
  max-width: 820px;
  margin-bottom: 30px;
  font-size: clamp(58px, 6.15vw, 96px);
  font-weight: 570;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

h1 em,
h2 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

h1 em {
  color: var(--yellow);
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.text-link,
.underlined-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
}

.text-link {
  color: rgba(255, 255, 255, 0.75);
}

.text-link span {
  color: var(--yellow);
  font-size: 18px;
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateY(4px);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
}

.proof-avatars {
  display: flex;
  padding-left: 9px;
}

.proof-avatars span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-left: -9px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--paper-warm);
  color: var(--ink);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  font-weight: 700;
}

.proof-avatars span:nth-child(2) {
  background: var(--yellow-soft);
}

.proof-avatars span:nth-child(3) {
  background: var(--sage);
}

.hero-proof p {
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1.35;
}

.hero-proof strong {
  font-size: 12px;
  font-weight: 620;
}

.hero-proof p span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.hero-panel {
  position: relative;
  width: 100%;
  max-width: 500px;
  min-height: 590px;
  justify-self: end;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.025)),
    #22251f;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.24);
}

.hero-panel::before {
  position: absolute;
  content: "";
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent, black, transparent);
}

.panel-topline,
.panel-main,
.panel-list,
.panel-contact {
  position: relative;
  z-index: 2;
}

.panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 27px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.72);
}

.status-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8ecf76;
  box-shadow: 0 0 0 4px rgba(142,207,118,.11);
}

.panel-main {
  padding: 44px 0 34px;
}

.panel-main p {
  margin-bottom: 4px;
  color: rgba(255,255,255,.46);
  font-family: Georgia, serif;
  font-size: 24px;
  font-style: italic;
}

.panel-main strong {
  font-size: 42px;
  font-weight: 560;
  letter-spacing: -0.045em;
}

.panel-list {
  border-top: 1px solid rgba(255,255,255,.1);
}

.panel-list > div {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 13px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.check {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(242,195,61,.4);
  color: var(--yellow);
  font-size: 12px;
}

.panel-list p {
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1.3;
}

.panel-list strong {
  font-size: 13px;
  font-weight: 580;
}

.panel-list small {
  margin-top: 2px;
  color: rgba(255,255,255,.38);
  font-size: 10px;
}

.panel-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
  padding: 17px 20px;
  background: var(--yellow);
  color: var(--ink);
}

.panel-contact > span:first-child {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.panel-contact small {
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.panel-contact strong {
  margin-top: 2px;
  font-size: 16px;
}

.panel-contact > span:last-child {
  font-size: 22px;
  transition: transform 180ms ease;
}

.panel-contact:hover > span:last-child,
.panel-contact:focus-visible > span:last-child {
  transform: translate(4px, -4px);
}

.corner-note {
  position: absolute;
  z-index: 1;
  right: -22px;
  bottom: -64px;
  color: rgba(255,255,255,.025);
  font-size: 220px;
  font-weight: 800;
  line-height: 1;
}

.trust-bar {
  border-bottom: 1px solid var(--line);
  background: var(--yellow);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  min-height: 128px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 32px;
  border-left: 1px solid rgba(23,25,22,.18);
}

.trust-grid > div:last-child {
  border-right: 1px solid rgba(23,25,22,.18);
}

.trust-grid strong {
  font-size: clamp(27px, 2.8vw, 42px);
  font-weight: 580;
  letter-spacing: -.05em;
  white-space: nowrap;
}

.trust-grid span {
  max-width: 100px;
  color: rgba(23,25,22,.62);
  font-size: 12px;
  line-height: 1.35;
}

.section {
  padding: 128px 0;
}

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

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 11vw;
}

h2 {
  max-width: 750px;
  margin-bottom: 0;
  font-size: clamp(44px, 5.1vw, 76px);
  font-weight: 550;
  letter-spacing: -.057em;
  line-height: 1.02;
}

h2 em {
  color: #555950;
}

.heading-line {
  display: block;
}

.heading-line + .heading-line {
  margin-top: .025em;
}

.keep-together {
  white-space: nowrap;
}

.intro-copy {
  padding-top: 54px;
}

.intro-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.intro-copy .large-copy {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.48;
  letter-spacing: -.02em;
}

.founder-note {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 18px;
  margin: 28px 0 20px;
  padding: 22px;
  border-left: 3px solid var(--yellow);
  background: var(--paper-warm);
}

.founder-initials {
  width: 64px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--ink);
  color: var(--yellow);
  font-family: Georgia, serif;
  font-size: 20px;
  font-style: italic;
  box-shadow: 0 8px 22px rgba(23, 25, 22, 0.18);
}

.founder-initials img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-note p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
}

.founder-note strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 13px;
}

.underlined-link {
  margin-top: 16px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--ink);
}

.underlined-link span {
  transition: transform 180ms ease;
}

.underlined-link:hover span,
.underlined-link:focus-visible span {
  transform: translate(3px, -3px);
}

.services {
  background: var(--ink);
  color: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  align-items: end;
  gap: 10vw;
  margin-bottom: 66px;
}

.section-heading > p {
  margin: 0 0 5px;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
}

.section-heading h2 em {
  color: var(--yellow);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.15);
  border-left: 1px solid rgba(255,255,255,.15);
}

.service-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border-right: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(255,255,255,.15);
  overflow: hidden;
  transition: background 230ms ease;
}

.service-card::before {
  position: absolute;
  content: "";
  right: -80px;
  top: -80px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  transition: transform 300ms ease, border-color 300ms ease;
}

.service-card:hover {
  background: #20231e;
}

.service-card:hover::before {
  transform: scale(1.4);
  border-color: rgba(242,195,61,.28);
}

.service-card h3 {
  max-width: 280px;
  margin: 38px 0 18px;
  font-size: 30px;
  font-weight: 560;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.service-card > p {
  margin-bottom: 24px;
  color: rgba(255,255,255,.5);
  font-size: 15px;
  line-height: 1.7;
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding: 5px 8px;
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.48);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.service-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.11);
  color: rgba(255,255,255,.72);
  font-size: 12px;
}

.service-card > a span {
  color: var(--yellow);
  font-size: 18px;
  transition: transform 180ms ease;
}

.service-card > a:hover span,
.service-card > a:focus-visible span {
  transform: translate(3px, -3px);
}

.online-section {
  border-bottom: 1px solid var(--line);
  background: var(--sage);
}

.online-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 10vw;
  align-items: start;
}

.online-copy h2 {
  font-size: clamp(42px, 4.8vw, 68px);
}

.online-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 30px 0 26px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.online-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(23,25,22,.2);
}

.online-steps article {
  padding: 32px 0;
  border-bottom: 1px solid rgba(23,25,22,.2);
}

.online-steps strong {
  font-size: 22px;
  font-weight: 580;
  letter-spacing: -.02em;
}

.online-steps p {
  max-width: 610px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

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

.outcomes-grid {
  display: grid;
  grid-template-columns: .9fr 1fr;
  align-items: center;
  gap: 10vw;
}

.outcomes-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.outcomes-visual::before,
.outcomes-visual::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(23,25,22,.18);
  border-radius: 50%;
}

.outcomes-visual::before {
  width: 560px;
  height: 560px;
}

.outcomes-visual::after {
  width: 400px;
  height: 400px;
}

.visual-card {
  position: relative;
  z-index: 2;
  box-shadow: 0 34px 80px rgba(23,25,22,.18);
}

.visual-card-main {
  width: min(420px, 82%);
  min-height: 480px;
  display: flex;
  flex-direction: column;
  padding: 42px;
  background: var(--ink);
  color: var(--white);
  transform: rotate(-3deg);
}

.visual-card-main > small {
  color: rgba(255,255,255,.34);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: .1em;
}

.visual-line {
  width: 100%;
  height: 1px;
  display: block;
  margin-top: 17px;
  background: rgba(255,255,255,.12);
}

.visual-line-short {
  width: 48%;
  margin-top: 62px;
  background: var(--yellow);
}

.visual-chart {
  height: 180px;
  display: flex;
  align-items: end;
  gap: 18px;
  margin: 50px 0 38px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.13);
}

.visual-chart i {
  flex: 1;
  height: 35%;
  background: rgba(255,255,255,.1);
}

.visual-chart i:nth-child(2) { height: 52%; }
.visual-chart i:nth-child(3) { height: 46%; }
.visual-chart i:nth-child(4) { height: 72%; background: rgba(242,195,61,.38); }
.visual-chart i:nth-child(5) { height: 92%; background: var(--yellow); }

.visual-card-main strong {
  margin-top: auto;
  font-family: Georgia, serif;
  font-size: 27px;
  font-style: italic;
  font-weight: 400;
}

.visual-card-float {
  position: absolute;
  z-index: 3;
  right: -10px;
  bottom: 72px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 280px;
  padding: 18px;
  background: var(--white);
}

.visual-card-float > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  font-weight: 700;
}

.visual-card-float p {
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1.35;
}

.visual-card-float strong {
  font-size: 12px;
}

.visual-card-float small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}

.outcomes-copy h2 {
  max-width: 680px;
}

.outcomes-copy h2 em {
  color: var(--ink);
}

.outcomes-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin: 30px 0 42px;
  color: rgba(23,25,22,.67);
  font-size: 17px;
  line-height: 1.7;
}

.benefit-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(23,25,22,.22);
  list-style: none;
}

.benefit-list li {
  padding: 25px 0;
  border-bottom: 1px solid rgba(23,25,22,.22);
}

.benefit-list strong {
  font-size: 19px;
  letter-spacing: -.02em;
}

.benefit-list p {
  margin: 7px 0 0;
  color: rgba(23,25,22,.58);
  font-size: 14px;
}

.process,
.team-section,
.faq-section {
  background: var(--paper);
}

.dark-heading > p {
  color: var(--muted);
}

.dark-heading h2 em {
  color: #555950;
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.process-list article {
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

.process-list article div {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
}

.process-list h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 560;
  letter-spacing: -.03em;
}

.process-list p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.team-section {
  padding-top: 20px;
}

.team-heading {
  align-items: end;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.team-card {
  position: relative;
  grid-column: auto;
  min-height: 370px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--paper-warm);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.team-card:nth-child(even) {
  background: var(--sage);
}

.team-card-wide {
  grid-column: auto;
}

.team-card:nth-child(4) {
  grid-column: auto;
  background: var(--yellow-soft);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 45px rgba(23,25,22,.09);
}

.person-avatar {
  width: 136px;
  height: 136px;
  display: grid;
  place-items: center;
  border: 7px solid rgba(255,255,255,.58);
  border-radius: 50%;
  background: var(--ink);
  color: var(--yellow);
  box-shadow: 0 12px 30px rgba(23,25,22,.14);
  font-family: Georgia, serif;
  font-size: 34px;
  font-style: italic;
  overflow: hidden;
}

.person-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 570;
  letter-spacing: -.03em;
}

.team-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 11px;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 10vw;
}

.faq-intro {
  position: sticky;
  top: 140px;
  align-self: start;
}

.faq-intro h2 {
  font-size: clamp(42px, 4.3vw, 66px);
}

.faq-intro > p:last-child {
  margin-top: 26px;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 30px;
  align-items: center;
  gap: 18px;
  padding: 29px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 550;
  list-style: none;
}

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

.faq-list summary i,
.faq-list summary i::after {
  width: 16px;
  height: 1px;
  display: block;
  background: var(--ink);
}

.faq-list summary i::after {
  content: "";
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.faq-list details[open] summary i::after {
  transform: rotate(0);
}

.faq-list details > p {
  max-width: 680px;
  margin: -5px 48px 30px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.contact-section {
  padding: 126px 0;
  background: var(--ink);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr .62fr;
  align-items: start;
  gap: 8vw;
}

.contact-copy h2 {
  max-width: 740px;
}

.contact-copy h2 em {
  color: var(--yellow);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 30px 0 40px;
  color: rgba(255,255,255,.58);
  font-size: 17px;
  line-height: 1.7;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.contact-form {
  display: grid;
  gap: 18px;
  max-width: 720px;
  padding-top: 4px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 620;
  letter-spacing: .02em;
}

.contact-form label > span {
  color: var(--yellow);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 0;
  padding: 13px 14px;
  background: rgba(255,255,255,.06);
  color: var(--white);
  outline: 0;
  transition: border-color 160ms ease, background 160ms ease;
}

.contact-form select {
  color-scheme: dark;
}

.contact-form textarea {
  min-height: 136px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--yellow);
  background: rgba(255,255,255,.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,.35);
}

.form-privacy {
  margin: 0;
  color: rgba(255,255,255,.48);
  font-size: 10px;
  line-height: 1.6;
}

.form-privacy a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-submit {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
}

.form-submit .button {
  border: 0;
  cursor: pointer;
}

.form-submit small {
  max-width: 330px;
  color: rgba(255,255,255,.42);
  font-size: 9px;
  line-height: 1.55;
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--yellow);
}

.contact-phone {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.contact-phone small {
  color: rgba(255,255,255,.4);
  font-size: 10px;
}

.contact-phone strong {
  margin-top: 3px;
  font-size: 16px;
}

.contact-card {
  position: relative;
  min-height: 600px;
  padding: 34px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 35px 100px rgba(0,0,0,.28);
}

.contact-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 50px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.contact-card-top > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  font-size: 22px;
  font-weight: 800;
}

.contact-card-top small {
  font-size: 10px;
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.contact-detail {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.contact-detail small {
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-detail a {
  font-size: 14px;
  font-weight: 570;
}

.contact-note {
  margin: 28px 0 0;
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 14px;
  font-style: italic;
}

.other-numbers {
  margin-top: 16px;
  color: var(--muted);
  font-size: 11px;
}

.other-numbers summary {
  width: fit-content;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.other-numbers a {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 570;
}

footer {
  padding: 72px 0 26px;
  background: #10120f;
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: .6fr 1.4fr;
  gap: 7vw;
  padding-bottom: 66px;
}

.footer-identity {
  align-self: start;
}

.footer-brand {
  align-self: start;
}

.footer-identity > p {
  max-width: 260px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.42);
  font-size: 11px;
  line-height: 1.65;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-links small {
  margin-bottom: 8px;
  color: rgba(255,255,255,.35);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.footer-links a,
.footer-links p {
  margin: 0;
  color: rgba(255,255,255,.66);
  font-size: 12px;
  line-height: 1.65;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.32);
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 30px;
}

.footer-bottom a {
  transition: color 180ms ease;
}

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

.footer-credit strong {
  color: rgba(255,255,255,.72);
  font-weight: 600;
}

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

/* Dokumenty prawne */
.legal-page {
  background: var(--paper);
}

.legal-hero {
  padding: 174px 0 88px;
  background: var(--ink);
  color: var(--white);
}

.legal-hero .eyebrow {
  margin-bottom: 28px;
}

.legal-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(50px, 7vw, 96px);
  font-weight: 520;
  letter-spacing: -.065em;
  line-height: .98;
}

.legal-hero h1 em {
  color: var(--yellow);
  font-family: Georgia, serif;
  font-weight: 400;
}

.legal-hero-copy {
  max-width: 760px;
  margin: 34px 0 0;
  color: rgba(255,255,255,.66);
  font-size: 18px;
  line-height: 1.7;
}

.legal-date {
  display: inline-flex;
  margin-top: 28px;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.52);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-body {
  padding: 96px 0 124px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 780px);
  justify-content: space-between;
  gap: 8vw;
}

.legal-summary {
  position: sticky;
  top: 120px;
  align-self: start;
  padding: 24px;
  border-top: 4px solid var(--yellow);
  background: var(--paper-warm);
}

.legal-summary > small {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.legal-summary h2 {
  margin: 14px 0 18px;
  font-size: 20px;
  letter-spacing: -.025em;
  line-height: 1.3;
}

.legal-summary p,
.legal-summary a {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.legal-summary a {
  display: inline-block;
  margin-top: 14px;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
}

.legal-content > section {
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
}

.legal-content > section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
  margin-bottom: 0;
}

.legal-content h2 {
  max-width: none;
  margin: 0 0 20px;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 570;
  letter-spacing: -.04em;
  line-height: 1.12;
}

.legal-content h3 {
  margin: 28px 0 10px;
  font-size: 17px;
  line-height: 1.35;
}

.legal-content p,
.legal-content li {
  color: #53574f;
  font-size: 15px;
  line-height: 1.78;
}

.legal-content p {
  margin: 0 0 16px;
}

.legal-content ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.legal-content li + li {
  margin-top: 9px;
}

.legal-content a {
  border-bottom: 1px solid currentColor;
  color: var(--ink);
}

.legal-content a:hover,
.legal-content a:focus-visible {
  color: #8a6800;
}

.legal-callout {
  margin: 24px 0;
  padding: 22px 24px;
  border-left: 3px solid var(--yellow);
  background: #fff4c7;
}

.legal-callout p:last-child {
  margin-bottom: 0;
}

.legal-company-data {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 24px 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.legal-company-data div {
  min-height: 92px;
  padding: 18px;
  background: var(--white);
}

.legal-company-data small {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.legal-company-data strong {
  font-size: 14px;
  font-weight: 620;
  line-height: 1.5;
}

.mobile-call {
  display: none;
}

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

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 48px, 1000px);
  }

  .header-inner {
    gap: 24px;
  }

  .desktop-nav {
    gap: 22px;
  }

  .hero-grid {
    grid-template-columns: 1fr 410px;
    gap: 50px;
  }

  h1 {
    font-size: 64px;
  }

  .hero-panel {
    min-height: 560px;
  }

  .trust-grid > div {
    padding: 0 20px;
  }

  .service-card {
    min-height: 460px;
    padding: 28px;
  }

  .outcomes-grid,
  .contact-grid {
    gap: 60px;
  }

  .visual-card-float {
    right: -20px;
  }

  .footer-top {
    grid-template-columns: .55fr 1.45fr;
    gap: 44px;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 38px;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 40px, 820px);
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu {
    display: block;
    position: relative;
  }

  .mobile-menu summary {
    width: 44px;
    height: 44px;
    display: grid;
    align-content: center;
    gap: 7px;
    padding: 10px;
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    width: 24px;
    height: 1px;
    display: block;
    background: white;
    transition: transform 180ms ease;
  }

  .mobile-menu[open] summary span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .mobile-menu[open] summary span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu nav {
    position: absolute;
    right: 0;
    top: 56px;
    width: min(320px, calc(100vw - 40px));
    display: flex;
    flex-direction: column;
    padding: 12px;
    background: var(--paper);
    color: var(--ink);
    box-shadow: 0 22px 50px rgba(0,0,0,.24);
  }

  .mobile-menu nav a {
    padding: 13px 14px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }

  .mobile-menu nav a:last-child {
    margin-top: 8px;
    border: 0;
    background: var(--yellow);
    font-weight: 620;
  }

  .hero {
    min-height: auto;
    padding: 146px 0 80px;
  }

  .hero-grid,
  .intro-grid,
  .online-grid,
  .outcomes-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 60px;
  }

  h1 {
    max-width: 760px;
    font-size: clamp(60px, 10vw, 82px);
  }

  .hero-panel {
    max-width: 650px;
    min-height: 530px;
    justify-self: stretch;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid > div:nth-child(3) {
    border-top: 1px solid rgba(23,25,22,.18);
  }

  .trust-grid > div:nth-child(4) {
    border-top: 1px solid rgba(23,25,22,.18);
    border-right: 1px solid rgba(23,25,22,.18);
  }

  .section {
    padding: 96px 0;
  }

  .intro-grid {
    gap: 30px;
  }

  .intro-copy {
    max-width: 680px;
    padding-top: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading > p {
    max-width: 620px;
  }

  .online-grid {
    gap: 54px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    min-height: 420px;
  }

  .outcomes-grid {
    gap: 70px;
  }

  .outcomes-visual {
    width: min(620px, 100%);
    order: 2;
  }

  .outcomes-copy {
    order: 1;
  }

  .visual-card-float {
    right: 20px;
  }

  .process-list article div {
    gap: 36px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-card,
  .team-card-wide,
  .team-card:nth-child(4) {
    grid-column: auto;
  }

  .faq-grid {
    gap: 46px;
  }

  .faq-intro {
    position: static;
  }

  .contact-grid {
    gap: 70px;
  }

  .contact-card {
    max-width: 620px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .legal-summary {
    position: static;
    max-width: 520px;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 32px);
  }

  html {
    scroll-padding-top: 76px;
  }

  body {
    padding-bottom: 64px;
  }

  .header-inner {
    height: 76px;
  }

  .brand-mark {
    width: 38px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .hero {
    padding: 122px 0 62px;
  }

  .hero-orb-one {
    width: 360px;
    height: 360px;
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 9px;
  }

  h1 {
    margin-bottom: 24px;
    font-size: clamp(46px, 14vw, 62px);
    letter-spacing: -.06em;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .founder-note {
    grid-template-columns: 48px 1fr;
    padding: 18px;
  }

  .founder-initials {
    width: 48px;
    height: 48px;
  }

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

  .form-submit {
    gap: 10px;
  }

  .button {
    width: 100%;
  }

  .text-link {
    justify-content: center;
  }

  .hero-proof {
    margin-top: 36px;
  }

  .hero-proof p span {
    max-width: 220px;
  }

  .hero-panel {
    min-height: 500px;
    padding: 22px;
  }

  .panel-main {
    padding: 36px 0 26px;
  }

  .panel-main p {
    font-size: 20px;
  }

  .panel-main strong {
    font-size: 34px;
  }

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

  .trust-grid > div {
    min-height: 106px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: 16px;
  }

  .trust-grid > div:nth-child(2) {
    border-right: 1px solid rgba(23,25,22,.18);
  }

  .trust-grid strong {
    font-size: 34px;
  }

  .trust-grid span {
    max-width: none;
    font-size: 10px;
  }

  .section {
    padding: 76px 0;
  }

  h2 {
    font-size: clamp(39px, 12vw, 54px);
  }

  .intro-copy .large-copy {
    font-size: 20px;
  }

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

  .service-card {
    min-height: 385px;
  }

  .outcomes-visual {
    min-height: 500px;
  }

  .outcomes-visual::before {
    width: 430px;
    height: 430px;
  }

  .outcomes-visual::after {
    width: 310px;
    height: 310px;
  }

  .visual-card-main {
    width: 88%;
    min-height: 410px;
    padding: 30px;
  }

  .visual-chart {
    height: 150px;
    gap: 12px;
    margin: 36px 0 28px;
  }

  .visual-card-float {
    right: -5px;
    bottom: 35px;
    min-width: 255px;
  }

  .process-list article {
    padding: 34px 0;
  }

  .process-list article div {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .team-card,
  .team-card-wide {
    grid-column: auto;
    min-height: 330px;
  }

  .faq-list summary {
    grid-template-columns: 1fr 20px;
    gap: 12px;
    padding: 24px 0;
    font-size: 15px;
  }

  .faq-list details > p {
    margin: 0 20px 26px 0;
  }

  .contact-section {
    padding: 80px 0;
  }

  .contact-card {
    min-height: auto;
    padding: 24px;
  }

  .contact-detail {
    grid-template-columns: 70px 1fr;
  }

  footer {
    padding-top: 56px;
  }

  .footer-top,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-top {
    gap: 50px;
  }

  .footer-links {
    gap: 32px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .footer-bottom div {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
  }

  .legal-page {
    padding-bottom: 0;
  }

  .legal-hero {
    padding: 132px 0 66px;
  }

  .legal-hero h1 {
    margin-bottom: 0;
    font-size: clamp(44px, 14vw, 64px);
  }

  .legal-hero-copy {
    margin-top: 26px;
    font-size: 16px;
  }

  .legal-body {
    padding: 68px 0 86px;
  }

  .legal-layout {
    gap: 44px;
  }

  .legal-summary {
    padding: 20px;
  }

  .legal-content > section {
    padding-bottom: 38px;
    margin-bottom: 38px;
  }

  .legal-company-data {
    grid-template-columns: 1fr;
  }

  .mobile-call {
    position: fixed;
    z-index: 90;
    left: 0;
    right: 0;
    bottom: 0;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    background: var(--yellow);
    color: var(--ink);
    font-size: 12px;
    font-weight: 650;
    box-shadow: 0 -8px 30px rgba(23,25,22,.12);
  }

  .mobile-call span {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .service-card,
  .team-card,
  .process-list article,
  .faq-list details {
    animation: rise-in linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 28%;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
