:root {
  --parchment: #ecd8b4;
  --parchment-light: #f4e7cc;
  --soot: #181611;
  --muted: #665f50;
  --red: #a9332c;
  --red-dark: #79231f;
  --line: rgba(24, 22, 17, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.28), transparent 26rem),
    radial-gradient(circle at 88% 72%, rgba(130, 91, 50, 0.06), transparent 32rem),
    var(--parchment);
  background-size: auto;
  color: var(--soot);
  font-family: Georgia, "Times New Roman", serif;
  min-width: 320px;
}

::selection {
  background: var(--red);
  color: var(--parchment-light);
}

a {
  color: inherit;
}

.skip-link {
  background: var(--soot);
  color: var(--parchment-light);
  left: 1rem;
  padding: 0.75rem 1rem;
  position: fixed;
  top: -5rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.site-shell {
  margin: 0 auto;
  max-width: 1440px;
  min-height: 100vh;
  overflow: hidden;
  padding: 0 clamp(1.25rem, 4.5vw, 5.5rem);
}

.site-header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  min-height: 104px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-art-crop {
  display: block;
  flex: 0 0 auto;
  height: 54px;
  overflow: hidden;
  position: relative;
  width: 51px;
}

.approved-artwork {
  display: block;
  height: auto;
  max-width: none;
  mix-blend-mode: darken;
  pointer-events: none;
  position: absolute;
}

.approved-artwork--compact {
  left: -306.757%;
  top: -107.692%;
  width: 415.135%;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 0.83;
  text-transform: uppercase;
}

.brand-name strong {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.brand-name span {
  color: var(--soot);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  margin-top: 0.45rem;
}

.header-contact {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 0.75rem 0;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
}

.header-contact::after {
  background: var(--red);
  bottom: 0.4rem;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.header-contact:hover::after,
.header-contact:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 7vw, 8rem);
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  min-height: 680px;
  padding: clamp(4.5rem, 9vw, 9rem) 0 clamp(5rem, 10vw, 9rem);
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  margin: 0 0 1.5rem;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3.6rem, 7.2vw, 7.6rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.91;
  margin: 0;
  max-width: 11ch;
}

h1 em {
  color: var(--red);
  font-weight: 400;
}

.intro {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
  line-height: 1.65;
  margin: clamp(2.3rem, 5vw, 4.5rem) 0 0;
  max-width: 39rem;
}

.logo-stage {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  min-height: 520px;
  position: relative;
  text-align: center;
}

.hero-art-crop {
  aspect-ratio: 980 / 800;
  display: block;
  max-width: 650px;
  overflow: hidden;
  position: relative;
  width: min(100%, 650px);
}

.approved-artwork--hero {
  left: -19.388%;
  top: -15%;
  width: 156.735%;
}

.site-footer {
  color: var(--muted);
  display: flex;
  font-size: 0.68rem;
  font-weight: 700;
  justify-content: space-between;
  letter-spacing: 0.12em;
  padding: 2.2rem 0 3rem;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

a:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 5px;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 4rem;
  }

  .hero-copy {
    margin: 0 auto;
    text-align: center;
  }

  h1 {
    margin: 0 auto;
  }

  .intro {
    margin-left: auto;
    margin-right: auto;
  }

  .logo-stage {
    min-height: 580px;
  }

}

@media (max-width: 580px) {
  .site-header {
    min-height: 86px;
  }

  .brand-art-crop {
    height: 46px;
    width: 44px;
  }

  .brand-name strong {
    font-size: 1.05rem;
  }

  .header-contact {
    font-size: 0.62rem;
    letter-spacing: 0.11em;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: clamp(3.1rem, 16vw, 4.7rem);
  }

  .logo-stage {
    min-height: 490px;
  }

  .hero-art-crop {
    width: min(100%, 500px);
  }

  .site-footer {
    flex-direction: column;
    gap: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
