:root {
  --bg: #f7ead2;
  --ink: #2f220a;
  --muted: rgba(47, 34, 10, 0.68);
  --line: rgba(47, 34, 10, 0.18);
  --panel: #fff8eb;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Neue Haas Grotesk Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.36;
}

a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.14em;
  transition: opacity 180ms ease;
}

a:hover,
a:focus-visible {
  opacity: 0.62;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  min-height: 100vh;
  min-height: 100svh;
}

.coming-soon {
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
}

.content {
  width: 42.5%;
  min-height: 100vh;
  min-height: 100svh;
  padding: 1rem;
}

.visual {
  width: 57.5%;
  min-height: 100vh;
  min-height: 100svh;
  background: #000;
}

.visual__image {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100svh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.04)), url("assets/daniela-raible-coming-soon.jpg");
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.9;
}

.stack {
  display: flex;
  height: 100%;
  min-height: calc(100vh - 2rem);
  min-height: calc(100svh - 2rem);
  flex-direction: column;
  justify-content: space-between;
}

.row {
  display: grid;
  grid-template-columns: minmax(76px, 1fr) 1fr;
  min-height: calc((100vh - 2rem) / 3);
  min-height: calc((100svh - 2rem) / 3);
}

.logo {
  display: inline-flex;
  width: 220px;
  max-width: 100%;
  align-self: start;
}

.mark {
  margin: 0;
  font-family: "Neue Haas Grotesk Display", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(4.8rem, 7vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 0.75;
}

.eyebrow {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
}

.is-hidden {
  visibility: hidden;
}

.links,
.meta-list {
  display: grid;
  align-content: start;
  gap: 0.08rem;
  line-height: 1.35;
}

.meta-list {
  color: var(--muted);
}

.lead {
  max-width: 10.75rem;
  margin: 0;
  font-size: 14px;
}

.legal-links {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: flex;
  gap: 1rem;
  color: var(--bg);
  mix-blend-mode: difference;
}

.text-page {
  min-height: 100vh;
  padding: 1rem;
}

.text-shell {
  display: grid;
  grid-template-columns: 42.5% 1fr;
  gap: 1rem;
  max-width: 1180px;
}

.text-nav {
  position: sticky;
  top: 1rem;
  align-self: start;
  min-height: calc(100vh - 2rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.text-brand {
  width: 220px;
  max-width: 100%;
}

.text-content {
  max-width: 760px;
  padding-bottom: 5rem;
}

.text-content h1 {
  margin: 0 0 4rem;
  font-family: "Neue Haas Grotesk Display", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 0.8;
}

.text-content h2 {
  margin: 2.4rem 0 0.65rem;
  font-size: 1rem;
  font-weight: 600;
}

.text-content p,
.text-content ul {
  max-width: 52rem;
  margin: 0 0 1rem;
}

.text-content ul {
  padding-left: 1.1rem;
}

.muted {
  color: var(--muted);
}

@media (max-width: 991px) {
  .coming-soon {
    display: block;
  }

  .content,
  .visual {
    width: 100%;
    min-height: auto;
  }

  .content {
    min-height: 100vh;
    min-height: 100svh;
  }

  .visual__image {
    min-height: 142vw;
  }

  .mark {
    font-size: 3.5rem;
  }

  .logo {
    margin-bottom: 12rem;
  }

  .legal-links {
    position: static;
    padding: 1rem;
    color: var(--ink);
    mix-blend-mode: normal;
  }

  .text-shell {
    grid-template-columns: 1fr;
  }

  .text-nav {
    position: static;
    min-height: 0;
    gap: 4rem;
  }
}

@media (max-width: 767px) {
  .content {
    padding: 1.5rem;
  }

  .stack {
    min-height: calc(100vh - 3rem);
    min-height: calc(100svh - 3rem);
  }

  .row {
    min-height: calc((100vh - 3rem) / 3);
    min-height: calc((100svh - 3rem) / 3);
  }
}

@media (max-width: 479px) {
  .mark {
    font-size: 3rem;
  }

  .row {
    grid-template-columns: 48% 52%;
  }

  .lead {
    max-width: 9.8rem;
  }
}
