:root {
    --paper: #f3f0e8;
    --ink: #111315;
    --blue: #1747ff;
    --lime: #c9ff45;
    --line: #c8c6be;
    --pad: clamp(1.2rem, 4vw, 4.5rem);
    --max: 1600px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Arial, sans-serif;
    line-height: 1.5;
    overflow-x: hidden
}

a {
    color: inherit
}

.skip {
    position: fixed;
    top: -5rem
}

.skip:focus {
    top: 1rem;
    background: var(--lime);
    padding: 1rem;
    z-index: 99
}

header {
    height: 92px;
    padding: 0 var(--pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    max-width: var(--max);
    margin: auto
}

.brand {
    display: flex;
    gap: .8rem;
    align-items: center;
    text-decoration: none;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1
}

.brand svg {
    width: 38px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem
}

nav a {
    text-decoration: none;
    text-transform: uppercase;
    font: 700 .75rem monospace
}

.nav-cta {
    background: var(--ink);
    color: white;
    padding: .8rem 1rem
}

.lang,
.menu {
    border: 1px solid;
    background: transparent;
    padding: .65rem;
    font: 700 .75rem monospace;
    cursor: pointer
}

.menu {
    display: none
}

.hero,
.split,
.services,
.process,
.principles,
.contact {
    max-width: var(--max);
    margin: auto;
    padding: clamp(5rem, 10vw, 10rem) var(--pad);
    border-top: 1px solid
}

.hero {
    min-height: calc(100vh - 92px);
    border: 0;
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 6vw
}

.label {
    font: 700 .7rem monospace;
    letter-spacing: .12em
}

.hero h1,
h2,
.statement {
    font-size: clamp(3.2rem, 8vw, 8.5rem);
    line-height: .84;
    letter-spacing: -.07em;
    margin: 2rem 0
}

.lead {
    max-width: 760px;
    font-size: clamp(1.1rem, 2vw, 1.6rem)
}

.button {
    display: inline-block;
    border: 0;
    background: var(--blue);
    color: white;
    padding: 1rem 1.3rem;
    text-decoration: none;
    text-transform: uppercase;
    font: 700 .76rem monospace;
    cursor: pointer
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 4px 4px 0 var(--ink)
}

.signal {
    border-left: 1px solid;
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font: 700 .65rem monospace
}

.signal i {
    height: 7rem;
    border-left: 1px solid var(--blue);
    margin: .5rem 0 .5rem .25rem
}

.split {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: var(--pad)
}

.split h2,
.process h2 {
    font-size: clamp(2.8rem, 6vw, 6.5rem);
    margin-top: 0
}

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

.services ol {
    list-style: none;
    padding: 0;
    margin: 5rem 0 0 25%;
    border-top: 1px solid #555
}

.services li {
    display: grid;
    grid-template-columns: 70px 1fr;
    padding: 2rem 0;
    border-bottom: 1px solid #555
}

.services li b,
.steps span {
    font: 700 .7rem monospace;
    color: var(--lime)
}

.services h3,
.steps h3 {
    font-size: clamp(1.5rem, 3vw, 2.6rem);
    margin: 0
}

.services li p {
    color: #bbb
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 5rem;
    border-top: 1px solid
}

.steps article {
    min-height: 220px;
    padding: 2rem 1rem;
    border-right: 1px solid var(--line)
}

.steps h3 {
    margin: 3rem 0 .5rem
}

.steps span {
    color: var(--blue)
}

.principles {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: var(--pad);
    background: var(--lime)
}

.statement {
    font-size: clamp(2.8rem, 6vw, 6rem);
    margin: 0
}

.principles li {
    padding: 1rem 0;
    border-bottom: 1px solid;
    font-weight: 700
}

.contact {
    background: var(--blue);
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10vw
}

.contact h2 {
    font-size: clamp(3.5rem, 7vw, 7rem)
}

form label {
    display: block;
    margin: 0 0 1.4rem
}

form label span {
    display: block;
    font: 700 .7rem monospace;
    text-transform: uppercase;
    margin-bottom: .5rem
}

input,
textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid white;
    background: transparent;
    color: white;
    padding: .8rem 0;
    font: inherit
}

input:focus,
textarea:focus {
    outline: 2px solid var(--lime);
    outline-offset: 3px
}

.consent {
    display: grid !important;
    grid-template-columns: 20px 1fr;
    gap: .7rem
}

.consent input {
    width: 18px
}

.consent span {
    text-transform: none;
    font-family: Arial;
    font-weight: 400
}

.dark {
    background: var(--ink)
}

.hp {
    position: absolute;
    left: -9999px
}

.status {
    min-height: 1.5em
}

footer {
    max-width: var(--max);
    margin: auto;
    padding: 3rem var(--pad);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 2rem;
    font-size: .8rem
}

address {
    font-style: normal
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--lime);
    outline-offset: 3px
}

@media(max-width:800px) {
    header {
        height: 72px
    }

    .menu {
        display: block
    }

    nav {
        display: none;
        position: absolute;
        z-index: 9;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--paper);
        padding: 2rem;
        flex-direction: column;
        align-items: stretch
    }

    nav.open {
        display: flex
    }

    .hero,
    .split,
    .principles,
    .contact {
        grid-template-columns: 1fr
    }

    .signal {
        border-left: 0;
        border-top: 1px solid;
        padding: 2rem 0
    }

    .services ol {
        margin-left: 0
    }

    .steps {
        grid-template-columns: 1fr 1fr
    }

    footer {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:480px) {
    .brand span {
        display: none
    }

    .hero h1 {
        font-size: 3.6rem
    }

    .steps {
        grid-template-columns: 1fr
    }

    .steps article {
        min-height: auto;
        border-bottom: 1px solid var(--line)
    }

    footer {
        grid-template-columns: 1fr
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        scroll-behavior: auto !important;
        transition: none !important
    }
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
  }
  
  .brand-logo {
    display: block;
    width: auto;
    height: 52px;
    max-width: 290px;
    object-fit: contain;
  }
  
  @media (max-width: 800px) {
    .brand-logo {
      height: 42px;
      max-width: 220px;
    }
  }
  
  @media (max-width: 480px) {
    .brand-logo {
      height: 36px;
      max-width: 180px;
    }
  }