:root {
  --paper: #f0e9dc;
  --ink: #22231f;
  --muted: #625e52;
  --brass: #876d42;
}

* {
  box-sizing: border-box;
}

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

html {
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
}

.site-shell {
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 30px clamp(24px, 5vw, 80px) 24px;
}

.hero {
  width: min(100%, 1180px);
  margin: auto;
  display: grid;
  grid-template-columns: minmax(360px, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: clamp(24px, 6vw, 96px);
  padding: clamp(36px, 6vh, 76px) 0;
}

.brand-artwork {
  display: block;
  width: 100%;
  height: auto;
}

.intro {
  text-align: center;
  padding-bottom: 3%;
}

.lede {
  max-width: 430px;
  margin: 28px auto 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.4;
  font-style: italic;
  color: var(--muted);
  text-wrap: balance;
}

.coming-soon {
  display: inline-block;
  margin: 38px auto 0;
  padding: 12px 0 9px;
  border-top: 1px solid rgba(135, 109, 66, 0.5);
  border-bottom: 1px solid rgba(135, 109, 66, 0.5);
  color: var(--brass);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  line-height: 1.5;
  text-transform: uppercase;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(98, 94, 82, 0.2);
  padding-top: 19px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

footer p {
  margin: 0;
}

footer p:last-child {
  color: var(--brass);
}

@media (max-width: 820px) {
  .site-shell {
    padding-inline: 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 32px 0 42px;
  }

  .artwork-frame {
    width: min(100%, 540px);
    margin: 0 auto;
  }

  .intro {
    margin-top: -4%;
  }

  .lede {
    margin-top: 22px;
  }

  .coming-soon {
    margin-top: 28px;
  }

  footer {
    justify-content: center;
    text-align: center;
  }

  footer p:first-child {
    display: none;
  }
}

@media (max-width: 450px) {
  .hero {
    align-content: center;
  }

  .brand-artwork {
    width: 114%;
    max-width: none;
    margin-left: -7%;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .brand-artwork,
  .intro {
    animation: settle 900ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
  }

  .intro {
    animation-delay: 120ms;
  }

  @keyframes settle {
    from {
      opacity: 0;
      transform: translateY(12px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
