:root {
  --yellow: #ffd600;
  --yellow-soft: #fff0a3;
  --ink: #151817;
  --ink-soft: #242a28;
  --paper: #eef1ed;
  --paper-bright: #fbfcf9;
  --muted: #69716c;
  --line: #d5dbd5;
  --line-dark: #3c4541;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid #b45cff;
  outline-offset: 5px;
}

.skip {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 20;
  padding: 14px 18px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 700;
}

.skip:focus {
  top: 12px;
}

.wrap {
  width: min(1280px, calc(100% - 80px));
  margin-right: auto;
  margin-left: auto;
}

.topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 40px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.topline span:nth-child(2) {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.header.wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1320px, calc(100% - 40px));
  min-height: 92px;
  padding: 20px 28px;
  background: var(--ink);
  color: #fff;
  border-right: 1px solid var(--ink);
  border-bottom: 4px solid var(--yellow);
  border-left: 1px solid var(--ink);
}

.logo {
  flex: 0 0 auto;
  font-size: 31px;
  font-weight: 900;
  letter-spacing: -1.8px;
  white-space: nowrap;
}

.logo span {
  color: var(--yellow);
}

.header nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  font-size: 13px;
}

.header nav a {
  color: #dce1dd;
  transition: color 0.2s ease;
}

.header nav a:hover,
.text-link:hover {
  color: #c29d00;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 20px;
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
  border-radius: 5px;
  box-shadow: 4px 4px 0 var(--yellow);
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--yellow);
  background: #292f2d;
}

.button span {
  font-size: 21px;
  line-height: 1;
}

.button.small {
  padding: 12px 16px;
  font-size: 13px;
  box-shadow: none;
}

.header .button.small {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
}

.header .button.small:hover {
  background: #ffe76a;
  box-shadow: 3px 3px 0 #fff;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1.5;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 24px;
  padding-top: 54px;
  padding-bottom: 46px;
}

.hero-copy {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 72px);
  background: var(--paper-bright);
  border: 1px solid var(--line);
  background-image: linear-gradient(rgba(21, 24, 23, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(21, 24, 23, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
}

.hero-copy::before {
  position: absolute;
  top: 0;
  right: 34px;
  width: 8px;
  height: 96px;
  background: var(--yellow);
  content: "";
}

.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
}

.square {
  width: 8px;
  height: 8px;
  background: var(--yellow);
}

h1,
h2,
h3 {
  font-weight: 750;
}

h1 {
  max-width: 780px;
  margin: 0 0 26px;
  color: var(--ink);
  font-size: clamp(48px, 5.1vw, 78px);
  letter-spacing: -3.8px;
  line-height: 1.02;
}

h1 span {
  color: #b79500;
}

.intro {
  max-width: 650px;
  margin: 0 0 30px;
  color: #4f5953;
  font-size: 18px;
  line-height: 1.65;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 7px;
  border-bottom: 1px solid #8b948e;
  font-size: 14px;
  font-weight: 700;
}

.location {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #282f2d;
  border: 1px solid var(--ink);
  border-radius: 16px 16px 4px 16px;
  box-shadow: 9px 9px 0 var(--yellow);
}

.hero-visual img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 34%, rgba(0, 0, 0, 0.78));
  content: "";
}

.image-top {
  position: absolute;
  z-index: 1;
  top: 24px;
  right: 24px;
  left: 24px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: #fff;
  font-size: 10px;
  letter-spacing: 1.2px;
  line-height: 1.5;
}

.image-label {
  position: absolute;
  z-index: 1;
  bottom: 34px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #fff;
  font-size: 23px;
  letter-spacing: -0.5px;
  line-height: 1.28;
}

.image-label strong {
  font-weight: 700;
}

.cross {
  color: var(--yellow);
  font-size: 56px;
  font-weight: 300;
}

.proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 16px;
  padding: 0;
  background: var(--paper-bright);
  border: 1px solid var(--line);
}

.proof div {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-height: 105px;
  padding: 25px 28px;
  border-left: 1px solid var(--line);
}

.proof div:first-child {
  border-left: 0;
}

.proof strong {
  color: var(--ink);
  font-size: 22px;
  letter-spacing: -0.5px;
}

.proof span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding-top: 94px;
  padding-bottom: 94px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 38px;
  padding-left: 22px;
  border-left: 5px solid var(--yellow);
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(35px, 3.4vw, 50px);
  letter-spacing: -2px;
  line-height: 1.1;
}

.section-heading > p {
  max-width: 390px;
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

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

.services article {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 30px;
  background: var(--paper-bright);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 6px 0 rgba(21, 24, 23, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.services article:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 0 rgba(21, 24, 23, 0.11);
}

.service-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 14px;
}

.service-top span:last-child {
  color: #aa8b00;
  font-size: 22px;
}

h3 {
  margin: 0 0 17px;
  color: var(--ink);
  font-size: 28px;
  letter-spacing: -0.8px;
  line-height: 1.15;
}

.services p {
  max-width: 320px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.tags {
  margin-top: auto;
  padding-top: 18px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.6;
}

.services .featured {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 7px 7px 0 var(--yellow);
}

.services .featured:hover {
  box-shadow: 9px 9px 0 var(--yellow);
}

.featured h3,
.featured h3 a {
  color: #fff;
}

.featured p,
.featured .service-top,
.featured .tags {
  color: #c7ceca;
}

.featured .service-top span:last-child {
  color: var(--yellow);
}

.featured .tags {
  border-color: var(--line-dark);
}

.mail-section {
  padding: 88px 0 42px;
  background: var(--ink);
  color: #fff;
}

.mail-section .eyebrow,
.mail-section .section-heading > p,
.mail-section h2 {
  color: #fff;
}

.mail-section .section-heading {
  border-color: var(--yellow);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  padding-top: 20px;
}

.steps article {
  padding-top: 18px;
  border-top: 1px solid var(--yellow);
}

.step-number {
  display: block;
  margin-bottom: 22px;
  color: var(--yellow);
  font-size: 14px;
}

.steps h3 {
  color: #fff;
  font-size: 22px;
}

.steps p {
  margin: 0;
  color: #b8c0bb;
  font-size: 16px;
  line-height: 1.65;
}

.mail-section .text-link {
  margin-top: 36px;
  color: var(--yellow);
  border-color: #79827c;
}

.mail-note {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 50px;
  padding: 24px 26px;
  background: var(--ink-soft);
  border: 1px solid var(--line-dark);
  border-left: 5px solid var(--yellow);
}

.mail-note > span {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
}

.mail-note p {
  flex: 1;
  margin: 0;
  color: #c1c8c3;
  font-size: 14px;
}

.mail-note a {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.mail-note a:hover {
  color: var(--yellow);
}

.partners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-top: 94px;
  padding-bottom: 94px;
  border-bottom: 1px solid var(--line);
}

.partners > div:last-child {
  align-self: center;
}

.partners p:not(.eyebrow) {
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.partners .text-link {
  color: #9b8000;
}

.faq {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  padding-top: 84px;
  padding-bottom: 92px;
}

.questions details {
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.questions details:first-child {
  padding-top: 0;
}

.questions summary {
  cursor: pointer;
  padding-right: 15px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.questions p {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.page-hero {
  position: relative;
  padding-top: 60px;
  padding-bottom: 68px;
  padding-left: clamp(24px, 4vw, 60px);
  border-bottom: 1px solid var(--line);
  border-left: 7px solid var(--yellow);
  background: var(--paper-bright);
  background-image: linear-gradient(rgba(21, 24, 23, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(21, 24, 23, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
}

.breadcrumb {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 14px;
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-underline-offset: 5px;
}

.page-hero .eyebrow {
  color: #8d7500;
}

.page-hero h1 {
  max-width: 990px;
  margin-bottom: 24px;
  font-size: clamp(42px, 5vw, 72px);
}

.page-hero .intro {
  max-width: 820px;
  margin-bottom: 30px;
}

.page-content {
  max-width: 980px;
  padding-top: 18px;
  padding-bottom: 70px;
}

.content-block {
  margin: 0 0 18px;
  padding: 34px 38px;
  background: var(--paper-bright);
  border: 1px solid var(--line);
  border-left: 4px solid var(--line);
  border-radius: 10px;
}

.content-block:hover {
  border-left-color: var(--yellow);
}

.content-block h2,
.related h2 {
  margin-bottom: 20px;
  font-size: 30px;
  letter-spacing: -0.7px;
  line-height: 1.2;
}

.content-block p,
.content-block li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.content-block p {
  margin: 0 0 17px;
}

.content-block p:last-child {
  margin-bottom: 0;
}

.content-block ul {
  margin: 0 0 20px;
  padding-left: 23px;
}

.content-block li {
  padding-left: 5px;
  margin: 9px 0;
}

.content-block li::marker {
  color: #a78800;
}

.content-block strong {
  color: var(--ink);
}

.content-block .text-link {
  color: #9b8000;
}

.content-block.questions {
  padding-bottom: 22px;
}

.content-block.questions details {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.content-block.questions details:last-child {
  border-bottom: 0;
}

.content-block.questions details:first-of-type {
  padding-top: 0;
}

.content-block.questions summary {
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.related {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 22px;
  margin-top: 24px;
  padding: 28px 32px;
  background: var(--ink);
  color: #fff;
  border-radius: 10px;
}

.related h2 {
  width: 100%;
  margin: 0 0 4px;
  color: #fff;
}

.related > a {
  color: var(--yellow);
  font-size: 15px;
  font-weight: 700;
}

.related > a:hover {
  color: #fff;
}

.contact {
  padding: 64px 0;
  background: var(--yellow);
  color: var(--ink);
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}

.contact .eyebrow,
.contact h2,
.contact p:not(.eyebrow) {
  color: var(--ink);
}

.contact h2 {
  font-size: clamp(43px, 4.5vw, 64px);
}

.contact p:not(.eyebrow) {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.5;
}

.contact-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.button.dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  box-shadow: 4px 4px 0 #fff;
}

.button.dark:hover {
  background: #2a312e;
  box-shadow: 6px 6px 0 #fff;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
  box-shadow: none;
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.contact-action > span {
  max-width: 340px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.contact-details a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

footer.wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  width: 100%;
  max-width: none;
  padding: 34px clamp(20px, 4vw, 64px);
  background: var(--ink);
  color: #fff;
}

footer .logo {
  font-size: 26px;
}

footer p {
  margin: 0 auto 0 0;
  color: #9da7a1;
  font-size: 12px;
}

footer > span,
footer > a:not(.logo) {
  color: #c6cdc8;
  font-size: 12px;
}

footer > a:not(.logo):hover {
  color: var(--yellow);
}

@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 56px);
  }

  .topline {
    padding-right: 28px;
    padding-left: 28px;
  }

  .header.wrap {
    width: calc(100% - 28px);
    padding-right: 22px;
    padding-left: 22px;
  }

  .header nav {
    gap: 18px;
  }

  h1 {
    letter-spacing: -3px;
  }

  .hero {
    gap: 18px;
  }

  .hero-copy {
    padding: 48px;
  }

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

  .image-top span:last-child {
    display: none;
  }

  .services article {
    padding: 25px;
  }

  .partners {
    gap: 46px;
  }
}

@media (max-width: 760px) {
  .wrap {
    width: calc(100% - 32px);
  }

  .topline {
    padding: 10px 16px;
    font-size: 9px;
    letter-spacing: 0.7px;
  }

  .topline span:nth-child(2) {
    display: none;
  }

  .header.wrap {
    width: calc(100% - 16px);
    min-height: 76px;
    padding: 16px 18px;
  }

  .header nav {
    display: none;
  }

  .logo {
    font-size: 28px;
  }

  .header .button.small {
    padding: 10px 13px;
    font-size: 12px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 32px;
    padding-bottom: 34px;
  }

  .hero-copy {
    padding: 34px 26px 38px;
  }

  .hero-copy::before {
    right: 24px;
    height: 70px;
  }

  h1 {
    font-size: clamp(46px, 12vw, 68px);
    letter-spacing: -3px;
  }

  .hero .eyebrow {
    font-size: 10px;
    letter-spacing: 1.2px;
  }

  .intro {
    font-size: 17px;
  }

  .hero-visual {
    min-height: 360px;
    border-radius: 12px 12px 3px 12px;
    box-shadow: 6px 6px 0 var(--yellow);
  }

  .image-top {
    top: 19px;
    right: 18px;
    left: 18px;
    font-size: 9px;
  }

  .image-label {
    bottom: 25px;
    left: 20px;
    font-size: 20px;
  }

  .cross {
    font-size: 47px;
  }

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

  .proof div {
    min-height: 100px;
    padding: 22px 18px;
  }

  .proof div:nth-child(3) {
    border-left: 0;
  }

  .proof strong {
    font-size: 20px;
  }

  .proof span {
    font-size: 12px;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section-heading {
    display: block;
    margin-bottom: 30px;
    padding-left: 17px;
  }

  .section-heading > p {
    max-width: 100%;
    margin-top: 22px;
  }

  h2 {
    font-size: 37px;
    letter-spacing: -1.6px;
  }

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

  .services article {
    min-height: 286px;
    padding: 27px;
  }

  .services h3 {
    font-size: 30px;
  }

  .services p {
    max-width: none;
  }

  .services .featured {
    box-shadow: 5px 5px 0 var(--yellow);
  }

  .mail-section {
    padding-top: 62px;
    padding-bottom: 34px;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
  }

  .steps h3 {
    font-size: 21px;
  }

  .mail-note {
    display: block;
    margin-top: 36px;
    padding: 22px 20px;
  }

  .mail-note > span {
    display: block;
    margin-bottom: 11px;
  }

  .mail-note p {
    margin-bottom: 17px;
  }

  .partners {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .partners p:not(.eyebrow) {
    font-size: 17px;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 62px;
    padding-bottom: 64px;
  }

  .faq h2 br {
    display: none;
  }

  .page-hero {
    padding-top: 42px;
    padding-bottom: 50px;
    padding-left: 22px;
    border-left-width: 5px;
  }

  .breadcrumb {
    margin-bottom: 24px;
  }

  .page-hero h1 {
    font-size: clamp(42px, 11vw, 62px);
    letter-spacing: -2.6px;
  }

  .page-hero .intro {
    font-size: 17px;
  }

  .page-content {
    padding-top: 10px;
    padding-bottom: 54px;
  }

  .content-block {
    padding: 28px 23px;
  }

  .content-block h2,
  .related h2 {
    font-size: 28px;
  }

  .content-block p,
  .content-block li {
    font-size: 16px;
    line-height: 1.75;
  }

  .related {
    padding: 25px 23px;
  }

  .contact {
    padding: 48px 0;
  }

  .contact-inner {
    display: block;
  }

  .contact h2 {
    font-size: 48px;
  }

  .contact-action {
    align-items: flex-start;
    margin-top: 28px;
  }

  .contact-action > span {
    text-align: left;
  }

  footer.wrap {
    flex-wrap: wrap;
    gap: 18px 20px;
  }

  footer p {
    width: calc(100% - 155px);
    line-height: 1.6;
  }

  footer > span {
    margin-right: auto;
  }

  .desktop {
    display: none;
  }
}

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

  .button,
  .services article {
    transition: none;
  }
}

/*
  Editorial service-manual refinement
  The site should feel built by a working specialist, not assembled from
  floating SaaS cards: hard edges, paper/ink contrast, quiet rules, and
  useful captions.
*/
:root {
  --paper: #f5f5f1;
  --paper-bright: #ffffff;
  --ink: #111312;
  --ink-soft: #1f2421;
  --muted: #56605a;
  --line: #c8cec9;
  --line-dark: #505a54;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, sans-serif;
}

a:focus-visible,
summary:focus-visible {
  outline-color: var(--yellow);
  outline-offset: 4px;
}

.topline {
  padding-top: 9px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--ink);
}

.topline span + span {
  padding-left: 20px;
  border-left: 1px solid rgba(17, 19, 18, 0.45);
}

.header.wrap {
  width: 100%;
  max-width: none;
  min-height: 84px;
  padding: 18px max(20px, calc((100% - 1280px) / 2 + 20px));
  border: 0;
  border-bottom: 1px solid #414943;
}

.header nav {
  gap: 24px;
  font-size: 13px;
}

.header nav a {
  color: #d3d9d5;
}

.header nav a:hover {
  color: var(--yellow);
}

.button {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  letter-spacing: 0;
}

.button:hover {
  transform: none;
  box-shadow: none;
  background: var(--yellow);
  color: var(--ink);
}

.header .button.small {
  box-shadow: none;
}

.header .button.small:hover {
  box-shadow: none;
  background: #fff;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--ink);
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 1.1px;
}

.hero {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 56px;
  padding-top: 72px;
  padding-bottom: 66px;
}

.hero-copy {
  padding: 24px 0 0;
  background: transparent;
  border: 0;
  background-image: none;
}

.hero-copy::before {
  top: 0;
  right: auto;
  left: 0;
  width: 76px;
  height: 4px;
}

h1,
h2,
h3 {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
}

h1 {
  max-width: 700px;
  margin-bottom: 28px;
  font-size: clamp(48px, 5vw, 76px);
  letter-spacing: -3.4px;
  line-height: 0.98;
}

h1 span {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 0.13em;
  text-underline-offset: 0.08em;
}

.intro {
  max-width: 610px;
  color: #353c37;
  font-size: 18px;
  line-height: 1.58;
}

.hero-actions {
  gap: 20px;
}

.text-link {
  padding-bottom: 5px;
  border-bottom-width: 1px;
  font-size: 13px;
}

.hero-visual {
  min-height: 560px;
  border: 0;
  border-left: 8px solid var(--yellow);
  border-radius: 0;
  box-shadow: none;
}

.hero-visual img {
  filter: saturate(0.72) contrast(1.06);
}

.hero-visual::after {
  background: rgba(0, 0, 0, 0.14);
}

.image-top {
  top: 0;
  right: 0;
  left: 0;
  padding: 14px 18px;
  background: transparent;
  font-family: inherit;
  font-size: 10px;
  letter-spacing: 0.8px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85);
}

.image-label {
  right: 0;
  bottom: 0;
  left: 0;
  gap: 0;
  padding: 16px 20px 17px;
  background: var(--ink);
  border-top: 3px solid var(--yellow);
  font-size: 17px;
  line-height: 1.3;
}

.image-label strong {
  color: var(--yellow);
}

.cross {
  display: none;
}

.proof {
  margin-bottom: 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.proof div {
  min-height: 96px;
  padding: 22px 24px;
}

.proof strong {
  font-size: 20px;
}

.section {
  padding-top: 104px;
  padding-bottom: 104px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  align-items: start;
  gap: 50px;
  margin-bottom: 44px;
  padding: 17px 0 0;
  border-top: 3px solid var(--ink);
  border-left: 0;
}

.section-heading > p {
  max-width: 390px;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

h2 {
  font-size: clamp(35px, 3.4vw, 50px);
  letter-spacing: -2.2px;
}

.services {
  gap: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.services article {
  min-height: 330px;
  padding: 28px 28px 28px 0;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  transition: background 0.2s ease;
}

.services article + article {
  padding-left: 28px;
}

.services article:hover {
  transform: none;
  box-shadow: none;
  background: var(--yellow-soft);
}

.service-top {
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.8px;
}

.service-top span:last-child {
  color: var(--ink);
  font-size: 18px;
}

h3 {
  margin-bottom: 16px;
  font-size: 27px;
  letter-spacing: -0.9px;
}

.services p {
  color: var(--muted);
  line-height: 1.62;
}

.tags {
  padding-top: 15px;
  border-top-color: var(--line);
  font-size: 11px;
  letter-spacing: 0.25px;
}

.services .featured {
  background: var(--yellow);
  border-color: var(--ink);
  box-shadow: none;
}

.services .featured:hover {
  box-shadow: none;
  background: #ffdf2b;
}

.featured h3,
.featured h3 a,
.featured p,
.featured .service-top,
.featured .tags {
  color: var(--ink);
}

.featured .service-top span:last-child {
  color: var(--ink);
}

.featured .tags {
  border-color: rgba(17, 19, 18, 0.45);
}

.mail-section {
  padding-top: 96px;
  padding-bottom: 48px;
  border-top: 4px solid var(--yellow);
}

.mail-note {
  gap: 24px;
  margin-top: 54px;
  padding: 22px 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--yellow);
  border-bottom: 1px solid var(--line-dark);
}

.mail-note > span {
  font-family: "Courier New", Courier, monospace;
  font-size: 11px;
}

.mail-note p {
  font-size: 15px;
}

.partners {
  gap: 80px;
  padding-top: 104px;
  padding-bottom: 104px;
  border-top: 1px solid var(--ink);
}

.partners p:not(.eyebrow) {
  font-size: 18px;
  line-height: 1.65;
}

.faq {
  gap: 70px;
  padding-top: 90px;
  padding-bottom: 100px;
  border-top: 1px solid var(--ink);
}

.questions details {
  padding: 22px 0;
}

.page-hero.wrap {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100% - 1280px) / 2 + 24px));
  padding-left: max(24px, calc((100% - 1280px) / 2 + 24px));
  background: var(--ink);
  background-image: none;
  border: 0;
  border-left: 10px solid var(--yellow);
  color: #fff;
}

.page-hero .breadcrumb {
  color: #c6cec9;
}

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

.page-hero h1 {
  color: #fff;
}

.page-hero h1 span {
  color: var(--yellow);
}

.page-hero .intro {
  color: #cbd2cd;
}

.page-hero .button {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
}

.page-hero .button:hover {
  background: #fff;
  border-color: #fff;
}

.page-content {
  max-width: 980px;
  padding-top: 0;
}

.content-block {
  margin: 0;
  padding: 36px 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
}

.content-block:first-child {
  border-top: 3px solid var(--ink);
}

.content-block:hover {
  border-left-color: transparent;
}

.content-block h2,
.related h2 {
  font-size: 31px;
  letter-spacing: -1px;
}

.content-block p,
.content-block li {
  color: #4f5953;
}

.content-block li::marker {
  color: var(--ink);
}

.related {
  margin-top: 26px;
  padding: 28px 30px;
  background: var(--ink);
  border-left: 8px solid var(--yellow);
  border-radius: 0;
}

.related h2 {
  margin-bottom: 6px;
}

.contact {
  border-top: 1px solid var(--ink);
}

.button.dark,
.button.dark:hover {
  box-shadow: none;
}

footer.wrap {
  border-top: 1px solid #424a45;
}

@media (max-width: 760px) {
  .topline span + span {
    padding-left: 12px;
  }

  .header.wrap {
    width: 100%;
    min-height: 76px;
    padding: 16px;
  }

  .hero {
    gap: 32px;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .hero-copy {
    padding-top: 22px;
  }

  .hero-copy::before {
    width: 58px;
  }

  h1 {
    font-size: clamp(46px, 12vw, 68px);
    letter-spacing: -3px;
  }

  .hero-visual {
    min-height: 360px;
    border-left-width: 6px;
  }

  .proof div {
    padding: 20px 16px;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section-heading {
    display: block;
    margin-bottom: 32px;
    padding-top: 14px;
    padding-left: 0;
    border-top-width: 2px;
  }

  .section-heading > p {
    max-width: none;
    margin-top: 22px;
  }

  .services article,
  .services article + article {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .services article:last-child {
    border-bottom: 0;
  }

  .services .featured {
    padding: 28px 20px;
  }

  .service-top {
    margin-bottom: 30px;
  }

  .mail-section {
    padding-top: 72px;
    padding-bottom: 40px;
  }

  .mail-note {
    margin-top: 40px;
  }

  .partners {
    gap: 30px;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .faq {
    gap: 34px;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .page-hero.wrap {
    width: 100%;
    padding: 40px 20px 50px;
    border-left-width: 6px;
  }

  .page-content {
    width: calc(100% - 32px);
    padding-top: 0;
  }

  .content-block {
    padding: 31px 0;
  }

  .content-block h2,
  .related h2 {
    font-size: 28px;
  }

  .related {
    margin-top: 20px;
    padding: 25px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services article {
    transition: none;
  }
}
