/* #region general */

:root {
  --al-blue: #0040ff;
  --space: 2rem;

}


*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: "Satoshi", sans-serif;
  font-size: 100%;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote {
  margin: 0;
  padding: 0;
}

body {

  color: #000;
  font-weight: 400;
}

canvas,
img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
  pointer-events: none;
  vertical-align: middle;
  -webkit-touch-callout: none;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3 {
  font-weight: 500;
}

h1 {
  font-size: 1.2rem;
}

h2 {
  margin-bottom: 1.2rem;

  font-size: 1.5rem;
}

h3 {
  margin-bottom: 0.2rem;

  font-size: 1.2rem;
}

h2 + * {
  /* margin-top: 1.2rem; */
}

h3 + * {
  /* margin-top: 0.2rem; */
}

p {
  margin-bottom: 1rem;
  margin-bottom: var(--space);
}

a {
  color: inherit;
  text-decoration: none;
  /* word-break: break-all; */
}

a:hover,
a:focus {
  color: var(--al-blue);
}

address {
  font-style: normal;
}

.hidden {
  position: absolute;
  
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  width: 1px;
  
  border: 0;
  white-space: nowrap;
  
  clip-path: inset(50%);
  
}

.text-muted {
  color: #333;
}

.page-wrap {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 3rem);
}

.section {
  margin-top: calc(var(--space) * 3);
}

.grid-2 {
  display: grid;
  column-gap: calc(var(--space) * 2);
  grid-template-columns: minmax(0, 1fr);

}

.grid-3 {
  display: grid;
  column-gap: var(--space);
  grid-template-columns: minmax(0, 1fr);
}

.span-2 {
  grid-column: span 2;
}

.flow > * + * {
  margin-top: var(--space);
}

/* #endregion */

/* #region header */

.site-header {
  min-height: 15svh;
}

.site-header nav {
  padding-top: 1rem;
}

.site-header nav .page-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.site-header nav .logo {
  font-weight: 500;
  letter-spacing: -0.02em;
  padding-right: 1.5rem;
}

.site-header nav ul li {
  display: inline-block;
  margin-left: 1rem;
}

.site-header nav ul li:first-of-type {
  margin-left: 0;
}

.site-header img {
  position: fixed;
  top: 0;
  z-index: -99;
  
  height: 45svh;
  width: 100%;
  object-fit: cover;
  
  pointer-events: none;
}


.page-home .site-header {
  min-height: 45svh;
}

.page-home .site-header nav {
  position: sticky;
  top: 0;
  z-index: 1;
}

.page-home .site-header .nav--white {
  color: #fff;
}

.page-home .site-header .nav--black {
  color: #000;
}


/* #endregion */

/* #region main */

main {
  padding-bottom: calc(var(--space) * 3);
  overflow: hidden;

  background: #fff;
  /* box-shadow: 0 0 3px 2px #fff; */
}

.page-header {
  align-items: flex-end;
  display: flex;
  min-height: 30svh;
  padding-bottom: 2rem;
}

.page-legal .page-header {
  min-height: 15svh;
}

.page-bleed {
  height: 55svh;
}

.page-bleed img {
  display: block;
  width: 100%;
}

.claim {
  display: flex;
  align-items: end;
  min-height: 55svh;
  max-width: 22rem;
  padding-block: calc(var(--space) * 2);
  /* padding-left: 1rem; */
  
  font-size: 2.3rem;
  letter-spacing: -0.02rem;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.home-image {
  margin-block: calc(var(--space) * 2);
  /* max-height: 55svh; */
  object-fit: cover;
  width: 100%;
}

.contact-intro {
  max-width: 30rem;

  font-size: 1.8rem;
  line-height: 1.4;
}

.contact-image img {
  margin-top: calc(var(--space) * 2);
  max-height: 45svh;
}

.page-legal .section {
  margin-top: calc(var(--space) * 1);
}

.page-legal h2 {
  margin-bottom: 0.2rem;

  font-size: 1.2rem;
}

.page-legal p,
.page-legal ul {
  margin-bottom: 1rem;
}

/* #endregion */

/* #region footer */

.site-footer {
  /* height: 55svh; */
  padding-block: var(--space);

  font-size: 0.9rem;

  background: #e6e6e6;
}

.site-footer .logo {
  font-weight: 500;
}

.site-footer address a {
  display: block;
}

.site-footer nav a {
  display: inline-block;
  margin-right: 1rem;
}

/* #endregion */

/* #region media queris */

@media (min-width: 600px) {

  .page-home .site-header {
    min-height: 70svh;
  }
  
  .page-home .site-header img {
    height: 70svh;
  }
  
  .claim {
    min-height: 30svh;
    max-width: 30rem;
    padding-left: 0;
  }
}

@media (min-width: 900px) {
  .page-bleed {
    max-width: 1100px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 5vw, 3rem);
  }

  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
}

/* #endregion */