/* stylelint-disable */
/* 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: inherit;
  font-size: 100%;
  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;
}

button {
  border: 0;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  text-align: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  line-height: inherit;
}

@font-face {
  font-family: "Nohemi";
  src: url("../../fonts/Nohemi-Light.woff2") format("woff2"), url("../../fonts/Nohemi-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
.container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-inline: var(--gutter);
}
@media (min-width: 768px) {
  .container {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 960px;
  }
}
@media (min-width: 1300px) {
  .container {
    width: 1170px;
  }
}
@media (min-width: 1600px) {
  .container {
    width: 1470px;
  }
}

:root {
  --container-width: calc(100% - var(--gutter) * 2);
  --gutter: 15px;
  --header-height: 70px;
  --font-family-primary: "neue-haas-grotesk-display", sans-serif;
  --font-family-serif: "geller-headline", serif;
  --font-family-headline: "Nohemi", sans-serif;
  --td-s: 0.2s;
  --td-m: 0.5s;
  --td-l: 1s;
  --td-xl: 1.4s;
  --neutral-10: #ffffff;
  --neutral-9: #f7f7f7;
  --neutral-8: #e6e6e6;
  --neutral-7: #d9d9d9;
  --neutral-6: #cccccc;
  --neutral-5: #b2b2b2;
  --neutral-4: #999999;
  --neutral-3: #666666;
  --neutral-2: #4d4d4d;
  --neutral-1: #333333;
  --neutral-0: #000000;
  --black: var(--neutral-0);
  --white: var(--neutral-10);
  --text-primary: var(--black);
  --text-receding: var(--neutral-3);
  --text-light: var(--neutral-8);
  --text-size-5xl: 28px;
  --text-size-4xl: 25px;
  --text-size-3xl: 22px;
  --text-size-2xl: 20px;
  --text-size-xl: 18px;
  --text-size-l: 16px;
  --text-size-m: 16px;
  --text-size-s: 15px;
  --text-size-xs: 13px;
  --spacing-3xl: 100px;
  --spacing-2xl: 50px;
  --spacing-xl: 25px;
  --spacing-l: 20px;
  --spacing-m: 15px;
  --spacing-s: 10px;
  --spacing-xs: 5px;
  --spacing-2xs: 2px;
  --border-radius-round: 50%;
  --border-radius-xl: 50px;
  --border-radius-l: 20px;
  --border-radius-m: 10px;
  --border-radius-s: 5px;
  --border-radius-xs: 3px;
}
@media (min-width: 768px) {
  :root {
    --container-width: calc(720px - var(--gutter) * 2);
    --text-size-5xl: clamp(28px, calc((53 / 1140) * var(--container-width)), 53px);
    --text-size-4xl: clamp(25px, calc((43 / 1140) * var(--container-width)), 43px);
    --text-size-3xl: clamp(22px, calc((34 / 1140) * var(--container-width)), 34px);
    --text-size-2xl: clamp(20px, calc((27 / 1140) * var(--container-width)), 27px);
    --text-size-xl: clamp(18px, calc((22 / 1140) * var(--container-width)), 22px);
    --text-size-l: clamp(16px, calc((18 / 1140) * var(--container-width)), 18px);
    --text-size-s: clamp(14px, calc((14 / 1140) * var(--container-width)), 14px);
    --text-size-xs: clamp(12px, calc((13 / 1140) * var(--container-width)), 13px);
    --spacing-3xl: clamp(100px, calc((150 / 1140) * var(--container-width)), 150px);
    --spacing-2xl: clamp(50px, calc((100 / 1140) * var(--container-width)), 100px);
    --spacing-xl: clamp(25px, calc((50 / 1140) * var(--container-width)), 50px);
    --spacing-l: clamp(20px, calc((30 / 1140) * var(--container-width)), 30px);
    --spacing-m: clamp(15px, calc((20 / 1140) * var(--container-width)), 20px);
  }
}
@media (min-width: 992px) {
  :root {
    --container-width: calc(960px - var(--gutter) * 2);
  }
}
@media (min-width: 1300px) {
  :root {
    --container-width: calc(1170px - var(--gutter) * 2);
  }
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

* {
  outline: none;
}

html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  scroll-snap-type: y mandatory;
}
@media (min-width: 992px) {
  html {
    scroll-snap-type: none;
  }
}

body {
  min-width: 320px;
  font-family: var(--font-family-primary);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  line-height: 1.4;
  font-size: var(--text-size-s);
  text-wrap: pretty;
  letter-spacing: 0.02em;
  font-weight: 300;
}
body ::-moz-selection {
  background-color: var(--black);
  color: var(--white);
}
body ::selection {
  background-color: var(--black);
  color: var(--white);
}

a {
  text-decoration: none;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

img,
svg,
picture {
  max-width: 100%;
  display: block;
  height: auto;
}

p:not(:first-child) {
  margin-top: 0.8em;
}

.media-wrapper {
  position: relative;
  overflow: hidden;
}
.media-wrapper img,
.media-wrapper video,
.media-wrapper picture {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.consent {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateY(calc(100% + 40px));
  transition: transform 0.4s;
  z-index: 999;
  pointer-events: none;
  background-color: color-mix(in srgb, var(--white) 70%, transparent);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  padding-block: 20px;
}
@media (min-width: 768px) {
  .consent {
    padding-block: 30px;
  }
}
.consent--visible {
  transform: translateY(0);
}

.consent-inner {
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .consent-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
}
.consent-inner .consent-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 11px;
}
@media (min-width: 768px) {
  .consent-inner .consent-content {
    font-size: clamp(11px, 14 / 1140 * var(--container-width), 14px);
  }
}
.consent-inner .consent-links a {
  color: inherit;
  border-bottom: 1px solid currentColor;
}
.consent-inner .consent-buttons {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  flex-shrink: 0;
}
.image-swiper {
  width: 100%;
  height: 100%;
}
@media (min-width: 992px) {
  .image-swiper {
    position: absolute;
    inset: 0;
  }
}
.image-swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.image-swiper .swiper-slider {
  width: 100%;
  height: 100%;
}
.image-swiper .image {
  width: 100%;
  height: 100%;
}

.heading-regular {
  font-family: var(--font-family-headline);
  text-transform: uppercase;
}

.heading-alt {
  font-family: var(--font-family-serif);
  font-style: italic;
  font-weight: 400;
}

@media (min-width: 992px) {
  .home-mobile {
    display: none;
  }
}
.home-mobile .fixed-bg {
  position: fixed;
  inset: 0;
}
.home-mobile .fixed-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--black);
  opacity: 0.5;
  z-index: 2;
}

.home-intro-section {
  height: 100svh;
  padding: 50px;
  position: relative;
  scroll-snap-align: start;
}
.home-intro-section .home-intro-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 2fr 1fr 1fr 1fr;
  height: 100%;
}
.home-intro-section .intro-logo {
  grid-column: 1/span 1;
  grid-row: 1/span 1;
}
.home-intro-section .intro-logo svg {
  width: 100%;
}
@media (min-width: 768px) {
  .home-intro-section .intro-logo svg {
    max-width: 200px;
  }
}
@media (min-width: 992px) {
  .home-intro-section .intro-logo svg {
    max-width: unset;
  }
}
.home-intro-section .intro-logo svg path {
  fill: currentColor;
}
.home-intro-section .intro-heading {
  grid-column: 1/span 2;
  grid-row: 2/span 1;
  font-size: var(--text-size-5xl);
  line-height: 1;
}
.home-intro-section .intro-heading span {
  display: block;
}
.home-intro-section .intro-content {
  grid-column: 1/span 1;
  grid-row: 4/span 1;
  place-content: end;
}
.home-intro-section--mobile {
  color: var(--white);
}
.home-intro-section--desktop {
  padding: 3.3068783069vw;
}
.home-intro-section--desktop .intro-logo {
  width: 100%;
}
.home-intro-section--desktop .intro-heading {
  display: contents;
}
.home-intro-section--desktop .heading-regular {
  grid-column: 1/span 2;
  grid-row: 2/span 1;
  font-size: 3.5052910053vw;
}
.home-intro-section--desktop .intro-content {
  grid-column: 2/span 1;
  grid-row: 3/span 1;
  place-content: unset;
  align-self: center;
  justify-self: start;
  font-size: max(14px, 0.9259259259vw);
}
.home-intro-section--desktop .heading-alt {
  grid-column: 2/span 1;
  grid-row: 4/span 1;
  font-size: 2.8439153439vw;
  align-self: end;
}

.home-agents-section {
  padding: 50px;
  position: relative;
  color: var(--white);
}
.home-agents-section .home-agents-inner {
  row-gap: 30px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 0.3fr auto 1fr;
  height: 100%;
}
@media (min-width: 768px) {
  .home-agents-section .home-agents-inner {
    grid-template-rows: 0.5fr auto 1fr;
  }
}
.home-agents-section .agents-heading {
  font-size: var(--text-size-4xl);
  line-height: 1.2;
}
.home-agents-section .agents-heading span {
  display: block;
}
.home-agents-section .agent-rows {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.home-agents-section .agent-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.home-agents-section .agent {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: var(--text-size-s);
}
.home-agents-section .agent .name {
  font-weight: 600;
}
.home-agents-section .agent a {
  color: inherit;
}
.home-agents-section--mobile {
  scroll-snap-align: start;
  height: 100svh;
}
.home-agents-section--desktop {
  z-index: 3;
  padding: 3.3068783069vw;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.home-agents-section--desktop .home-agents-inner {
  display: flex;
  flex-direction: column;
  height: auto;
  row-gap: 3.3068783069vw;
  min-width: 34.3915343915vw;
}
.home-agents-section--desktop .agents-heading {
  font-size: 2.8439153439vw;
}
.home-agents-section--desktop .heading-alt,
.home-agents-section--desktop .heading-regular {
  visibility: hidden;
  opacity: 0;
}
.home-agents-section--desktop .agent-rows {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.9841269841vw;
  width: 100%;
}
.home-agents-section--desktop .agent-row {
  display: grid;
  grid-template-columns: subgrid;
  gap: unset;
  grid-column: 1/-1;
}
.home-agents-section--desktop .agent {
  font-size: max(14px, 0.9259259259vw);
  visibility: hidden;
  opacity: 0;
}

.development-by {
  display: flex;
  align-items: flex-end;
  gap: 0.5em;
  place-self: end;
  line-height: 1;
}
@media (min-width: 992px) {
  .development-by {
    position: absolute;
    right: 3.3068783069vw;
    bottom: 3.3068783069vw;
    z-index: 4;
    color: var(--white);
    font-size: 0.9259259259vw;
  }
}
@media (min-width: 992px) {
  .development-by--mobile {
    display: none;
  }
}
.development-by span {
  display: block;
}
.development-by .caleus-logo {
  padding-bottom: 1%;
}
.development-by .caleus-logo img,
.development-by .caleus-logo svg {
  width: 65px;
}
@media (min-width: 992px) {
  .development-by .caleus-logo img,
  .development-by .caleus-logo svg {
    width: 4.2989417989vw;
  }
}

.home-desktop {
  display: none;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 992px) {
  .home-desktop {
    display: block;
  }
}
.home-desktop .home-desktop-inner {
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}
.home-desktop .home-desktop-left {
  flex: 0 0 33.33%;
}
.home-desktop .home-desktop-right {
  flex: 0 0 66.67%;
  position: relative;
  overflow: hidden;
}
.home-desktop .overlay {
  position: absolute;
  inset: 0;
  background-color: var(--black);
  z-index: 3;
  visibility: hidden;
}
