@font-face {
  font-family: "Satoshi";
  src: url("/assets/fonts/satoshi-regular.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Satoshi";
  src: url("/assets/fonts/satoshi-medium.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

:root {
  --ink: #1c1e21;
  --paper: #fafafa;
  --blue: #bbddff;
  --red: #ee3a24;
  color: var(--ink);
  background: var(--paper);
  font-family: "Satoshi", Arial, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
}

.holding-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: minmax(720px, 100svh) auto;
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}

.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 38px 3.1vw;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 3;
}

.logo {
  display: block;
  height: 21px;
  position: relative;
  width: clamp(132px, 10.5vw, 162px);
}

.logo img {
  height: 100%;
  inset: 0;
  object-fit: contain;
  object-position: left center;
  position: absolute;
  width: 100%;
}

.logo .logo-dark-words {
  clip-path: inset(0 0 0 22.4%);
  filter: brightness(0) saturate(100%);
}

.site-header p {
  color: var(--paper);
  font-size: 14px;
  margin: 0;
}

.practice {
  align-items: flex-end;
  display: flex;
  min-width: 0;
  padding: 0 6.2vw 9vh;
  position: relative;
}

.practice::before {
  background-image: url("/assets/altessino-hero-moody-v2.png");
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  inset: 0;
  position: absolute;
}

.practice-studio {
  background: var(--paper);
}

.practice-studio::before {
  background-position: left center;
}

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

.practice-casa::before {
  background-position: right center;
}

.practice-copy {
  max-width: 620px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: .09em;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.practice h1,
.practice h2 {
  font-size: clamp(92px, 13.2vw, 202px);
  font-weight: 400;
  letter-spacing: -.07em;
  line-height: .82;
  margin: 0 0 34px;
}

.descriptor {
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.38;
  margin: 0;
  max-width: 470px;
}

.site-footer {
  align-items: center;
  background: var(--blue);
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  min-height: 112px;
  padding: 30px 3.1vw;
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  font-size: clamp(24px, 2.2vw, 34px);
  letter-spacing: -.035em;
}

.site-footer p:last-child {
  font-size: 14px;
}

@media (max-width: 720px) {
  .holding-page {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, minmax(390px, 50svh)) auto;
  }

  .site-header {
    padding: 24px 20px;
  }

  .site-header p {
    display: none;
  }

  .practice {
    padding: 0 24px 42px;
  }

  .practice h1,
  .practice h2 {
    font-size: clamp(74px, 23vw, 102px);
    margin-bottom: 22px;
  }

  .eyebrow {
    margin-bottom: 18px;
  }

  .descriptor {
    font-size: 17px;
    max-width: 330px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    min-height: 150px;
    padding: 36px 24px;
  }
}
