:root {
  --ivory: #f0eae2;
  --mushroom: #988674;
  --navy: #2b3345;
  --serif: "Bodoni 72", Didot, "Iowan Old Style", Baskerville, "Times New Roman", serif;
  --sans: "Helvetica Neue", "Nimbus Sans L", Arial, sans-serif;
}

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

html,
body {
  min-width: 320px;
  min-height: 100%;
}

body {
  margin: 0;
  overflow: hidden;
  background: var(--ivory);
  color: var(--navy);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background: var(--ivory);
}

.bsd {
  position: absolute;
  top: clamp(1.75rem, 3.8vw, 3.5rem);
  right: clamp(1.75rem, 4.2vw, 4rem);
  z-index: 1;
  margin: 0;
  color: var(--navy);
  font-family: "Arial Hebrew", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  line-height: 1;
}

.brand-lockup {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-inline: clamp(1rem, 4vw, 4rem);
  text-align: center;
  transform: translateY(-2.5vh);
}

h1 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(3rem, 7.8vw, 8.5rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 0.9;
  white-space: nowrap;
}

.brand-lockup p {
  margin: clamp(1.65rem, 2.5vw, 2.75rem) 0 0;
  padding-left: 0.48em;
  color: var(--mushroom);
  font-size: clamp(0.56rem, 0.72vw, 0.72rem);
  font-weight: 400;
  letter-spacing: 0.48em;
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 520px) {
  .bsd {
    top: 1.75rem;
    right: 1.65rem;
    font-size: 0.65rem;
  }

  .brand-lockup {
    padding-inline: 1rem;
    transform: translateY(-3vh);
  }

  h1 {
    font-size: clamp(2.05rem, 10.3vw, 3rem);
    letter-spacing: 0.075em;
  }

  .brand-lockup p {
    margin-top: 1.5rem;
    font-size: 0.53rem;
    letter-spacing: 0.42em;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .bsd,
  .brand-lockup {
    opacity: 0;
    animation: fade-in 1.4s ease-out forwards;
  }

  .bsd {
    animation-delay: 180ms;
  }
}

@keyframes fade-in {
  to {
    opacity: 1;
  }
}
