/* http://meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
a {
    color: inherit;
    text-decoration: none;
}
em {
    font-style: italic;
}
button {
    padding: 0;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: var(--linkcolor);
    cursor: pointer;
}

/*Webfont*/
@font-face {
  font-family: 'tla';
  src: url('font/tla-font.otf') format('opentype');
  font-weight: medium;
  font-style: normal;
}

/**/
html {
  scroll-behavior: smooth;
}

body {
    background-color: #131313;
    color: #FFFFFF;
    font-family: 'tla', 'StandardCT-Regular2', 'sohne', 'helvetica neue', helvetica, Arial, sans-serif;
    text-transform: uppercase;
    font-size: 18vw;
    margin: 0;
    font-weight: 500;
    font-feature-settings: 'case';
  }

  nav {
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    font-size: 14px;
    text-transform: none;
    padding: 0.25em;
    padding-bottom: 0.5em;
  }
  nav ul {
    display: flex;
    justify-content: space-between;
    gap: 1em
  }

  h2 {
    font-size: 14px;
    font-weight: inherit;
    margin: 0;
  }
  .scale-text {
    font-size: 8vw;
  }
  .no-scale {
    font-size: 5vw;
  }

  .scale-text .section-text {

  }



  .cover-image {
    width: 100%;
    height: 100vh;
    height: 100svh;
  }
  .cover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .inside-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .inside-image img {
    max-width: 80%;
  }
  .caption {
    padding-top: 0.25em;
    font-size: 16px;
    text-transform: none;
  }

  .scale-image img {
    transform-origin: top;
  }

  .cover {
    display: flex;
    flex-direction: column;
    height: 150vh;
  }

  .cover div:first-child {
    flex: auto
  }

  section {
    /*height: 100vh;*/
    position: relative;
    margin-bottom: 10rem;
  }
  .section-text {
    width: 100vw;
    /*overflow: hidden;*/
  }
  
  p {
    margin: 0;
    line-height: 0.8;
    letter-spacing: -0.05em;
    margin-right: 0.05em;
  }
  .justifyall {
    text-align: justify;
    text-align-last: center;
    word-spacing: 0.25em;
    word-break: break-all;
  }
  .justify {
    text-align: justify;
    text-align-last: justify;
  }
  .centered {
    text-align: center;
    text-align-last: center;
    word-spacing: initial;
    word-break: keep-all;
  }
  .leftalign {
    text-align: left;
    text-align-last: left;
    word-spacing: initial;
    word-break: keep-all;
  }
  .rightalign {
    text-align: right;
    text-align-last: right;
    word-spacing: initial;
    word-break: keep-all;
  }
  .cap {
    vertical-align: 0.07em;
    line-height: 0;
  }


  .sticky-bottom {
    /*position: sticky;
    bottom: 0;*/
  }
  .fixed-top {
    position: fixed;
    top: 0;
  }
  .footer-sticky {
    height: 50vh;
    position: sticky;
    top: 50%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    overflow: hidden;
  }
  .footer-sticky .section-text {
  }

  .logo {
    /*padding-bottom: 1rem;*/
  }

  p.logo-text {
    text-align: justify;
    text-align-last: center;
  }
  p.logo-text span.logo-agency {
    display: inline-block;
    width: 100%;
    text-align: center;
  }


  .intro {
    height: 100vh;
    height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  #footer {
    height: 100vh;
    height: 100svh;
  }
  #footer .cover-image {
  }

  #clients {
    font-size: 8vw;
  }
  #clients-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    line-height: 0.8;
  }
  
  #clients-list div {
    display: flex;
    width: 50vw;
  }
  #clients-list div:nth-child(2n) {
    justify-content: flex-end;
  }
  #clients-list span {
    white-space: nowrap;
    margin: 0;
    line-height: 0.8;
    letter-spacing: -0.05em;
    margin-right: 0.05em;
  }

 