[css-dropshadow] {
        display: block;
        --offset: 0.02em;
        position: relative;
        line-height: 1em;
        white-space: nowrap;
        --stroke-color: var(--color, var(--current-title));
    }

    [css-dropshadow]:after {
        position: absolute;
        display: block;
        white-space: nowrap;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        font-family: var(--font-title);
        font-weight: 700;
        line-height: 1em;
        text-transform: uppercase;
        content: attr(css-dropshadow);
        color: transparent;
        transform: translate(calc(1.6*var(--offset)),
                calc(1.2*var(--offset)));
        -webkit-text-stroke: var(--offset) var(--stroke-color);
        margin: calc(-1*var(--stroke));
    }
.block {
        width: 100%;
        display: flex;

        flex-flow: column;
        align-items: center;

        background: var(--current-background);
        color: var(--current-text);

        padding-inline: var(--gutters);
        padding-block: 5rem;
    }

    section .block .block-content {
        max-width: 120rem;
    }

    .block-content {
        width: 100%;
        display: flex;

        flex-flow: column;
        align-items: center;
    }

    .block.full {
        padding-inline: 0;
    }

    .block-content>* {
        margin-inline: auto;
    }

    .block.left-align>* {
        margin-left: 0;
    }

    .block.col2 .block-content {
        display: flex;
        flex-flow: row nowrap;
        gap: 2rem;
    }

    .block.col2 .block-content>* {
        flex: 0 0 50%;
    }

    .block~.arrow {
        align-self: center;
        width: 14rem;
        margin-top: -0.5px;
        margin-inline: auto;
        height: var(--header-arrow-height);
        background: var(--current-background);
        clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
    }

    .block.footer {
        padding-block: 10rem;
        border-bottom: 6rem solid var(--secondary);
    }
article {
        --h1-size: 6rem;
        --h1-line-height: 1em;
        --h2-size: 2.8rem;
    }

    article .article-subtitle {
        font-size: var(--h2-size);
        color: var(--secondary);
        font-weight: 500;
        text-transform: uppercase;
    }

    article h1 .title-bg {
        left: 0;
        right: 0;
        top: unset;
        height: 3rem;
        bottom: -0.4rem;
        width: auto;
        border-radius: 1rem;
    }

    article>.block>.block-content {
        max-width: 112rem;
    }

    article>.block>.block-content>p {
        max-width: 104rem;
    }

    article>.block>.block-content>img {
        width: 100%;
        border-radius: 5rem;
        margin-block: 1rem 5rem;
    }

    @media screen and (max-width: 1120px) {
        article>.block>.block-content>img {
            border-radius: 4.46vw;
        }
    }


    @media screen and (max-width: 1000px) {
        article {
            --h1-size: 5rem;
        }
    }


    @media screen and (max-width: 700px) {
        article {
            --h1-size: 4rem;
            --h2-size: 2.4rem;
            --h3-size: 2.2rem;
        }
    }


    @media screen and (max-width: 580px) {
        article {
            --h1-size: 3rem;
            --h2-size: 2.2rem;
        }
    }

    @media screen and (max-width: 470px) {
        article {
            --h1-size: 2.6rem;
            --h2-size: 2rem;
        }
    }
header {
    position: sticky;
    height: var(--header-start-height);
    width: 100%;
    z-index: 100;
    top: calc(var(--header-height-difference) * -1);
    display: flex;
    flex-flow: row no-wrap;
    align-items: center;
    background: var(--primary);
    z-index: 100;
  }

  header nav {
    position: sticky;
    height: var(--header-shrink-height);
    top: 0;
    width: 100%;
    padding: 0 1rem;
    display: flex;
    align-items: center;

    /* -webkit-backdrop-filter: blur(10px); */
    /* backdrop-filter: blur(10px); */

    color: var(--primary-text);
  }

  header nav ul {
    display: flex;
    justify-self: center;
    margin: auto;
    list-style: none;
  }

  header nav ul li {
    margin: 0 2em;

    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.4rem;

    user-select: none;
  }

  header nav a {
    text-decoration: none;
    white-space: nowrap;

    color: var(--primary-text);
  }

  header nav .logo img {
    height: 3rem;
    margin-block: 1rem;
  }

  #menuToggle {
    display: none;
    /* You can also use relative/absolute here if you want to stay on the top */
    position: absolute;
    top: 1.5rem;
    right: 2rem;

    z-index: 1;

    -webkit-user-select: none;
    user-select: none;
  }

  #menuToggle a {
    text-decoration: none;
    color: #232323;

    transition: color 0.3s ease;
  }

  #menuToggle a:hover {
    color: tomato;
  }


  #menuToggle input {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;

    cursor: pointer;

    opacity: 0;
    /* hide this */
    z-index: 2;
    /* and place it over the hamburger */

    -webkit-touch-callout: none;
  }


  #menuToggle span {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;

    background: var(--primary-text);
    border-radius: 3px;

    z-index: 1;

    transform-origin: 4px 0px;

    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
      background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
      opacity 0.55s ease;
  }

  #menuToggle span {
    transform-origin: 0% 50%;
  }

  #menuToggle input:checked~span {
    opacity: 1;
    transform: rotate(45deg) translate(-1px, -4px);
  }

  #menuToggle input:checked~span:nth-of-type(2) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
  }

  #menuToggle input:checked~span:nth-of-type(3) {
    transform: rotate(-45deg) translate(0, 2px);
  }

  /*
 * And let's slide it in from the left
 */
  #menuToggle input:checked~ul {
    transform: none;
  }

  @media screen and (max-width: 768px) {
    header {
      height: auto;
    }

    header nav {
      transition: height 0.3s ease;
    }

    header nav .logo {
      align-self: flex-start;
    }

    header nav ul {
      margin-top: 3rem;
      margin-bottom: 2rem;
      flex-direction: column;
      transition: opacity 0.3s ease;
      opacity: 0;
    }

    header nav ul li {
      height: 5rem;
      font-size: 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    #menuToggle {
      display: block;
    }

    header:has(input:checked) {
      position: fixed;
    }

    header nav:has(input:checked) {
      height: 27rem;
    }

    header nav:has(input:checked) ul {
      opacity: 1;
    }
  }
.socials {
        height: 4rem;
        display: flex;
        gap: 1rem;
        list-style: none;
        margin-block: 1rem;
    }

    .socials img {
        height: 100%;
    }
footer {
    --current-text: var(--alt-text);
    --current-title: var(--alt-title);
    --current-text-strong: var(--alt-text-strong);
    --current-background: var(--primary);
    --current-highlight: var(--alt-highlight);

    padding-top: 10rem;
    background: var(--current-background);
    color: var(--current-text);
    border-bottom: 6rem solid var(--secondary);

    --h1-size: 9rem;

    padding-inline: var(--gutters);
  }

  .footer-struct {
    width: 100%;
    display: grid;
    grid-template-columns: auto auto;
    grid-template-areas:
      "pic title"
      "pic text"
      "pic cta"
      "pic socials";
    column-gap: 6rem;
    row-gap: 2rem;
    padding-bottom: 10rem;
  }

  .footer-pic {
    grid-area: pic;
  }

  .footer-title {
    grid-area: title;
    font-size: var(--h1-size);
  }

  .footer-title .title-row {
    margin-left: 6rem;
    margin-bottom: 6rem;
  }

  .footer-text {
    grid-area: text;
    max-width: 60rem;
  }

  .footer-cta {
    grid-area: cta;
    max-width: 60rem;
    text-align: center;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
  }

  .footer-socials {
    grid-area: socials;
    max-width: 60rem;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
  }

  .image-container {
    display: block;
    width: 48rem;
    height: 48rem;
    border-radius: 5rem;
    transform: rotate(7deg);
    overflow: hidden;
    position: relative;
  }

  @media screen and (max-width: 1296px) {
    .image-container {
      width: 40rem;
      height: 40rem;
      border-radius: 4rem;
    }
  }


  @media screen and (max-width: 1180px) {
    .image-container {
      width: 36rem;
      height: 36rem;
      border-radius: 3rem;
    }
  }


  @media screen and (max-width: 1130px) {
    .image-container {
      width: 32rem;
      height: 32rem;
    }
  }

  @media screen and (max-width: 960px) {
    footer {
      --h1-size: 6rem;
      --h2-size: 2.2rem;
    }

    .footer-struct {
      grid-template-areas:
        "title"
        "text"
        "pic"
        "cta"
        "socials";
      grid-template-columns: 1fr;
      align-items: center;
      justify-items: center;
    }

    .footer-title .title-row {
      margin-left: 0;
    }

    .footer-text {
      text-align: center;
    }
  }