:root {
  color-scheme: light;
  --paper: #f5f2ea;
  --ink: #252821;
  --muted: #555c50;
  --line: #c8c9bb;
  --amber: #ffae19;
  --ochre: #a55812;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    1rem/1.65 Arial,
    Helvetica,
    sans-serif;
}
::selection {
  background: var(--amber);
  color: var(--ink);
}
a {
  color: inherit;
}
a:focus-visible {
  outline: 3px solid var(--ochre);
  outline-offset: 6px;
}
.skip-link {
  position: absolute;
  left: 1rem;
  top: -10rem;
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: white;
  z-index: 2;
}
.skip-link:focus {
  top: 1rem;
}
.page {
  width: min(1240px, calc(100% - 6rem));
  margin-inline: auto;
}
.site-header {
  min-height: 114px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: 1px solid var(--line);
  padding-block: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.monogram {
  font-size: 2.65rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.09em;
}
.monogram span {
  color: var(--ochre);
}
.brand-name {
  border-left: 1px solid var(--line);
  padding-left: 1rem;
  font-size: 0.875rem;
  line-height: 1.35;
  font-weight: 700;
}
.status {
  margin: 0;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--ink);
  font-size: 0.875rem;
  font-weight: 600;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding-block: 3.5rem;
  align-items: start;
}
.eyebrow {
  margin: 0 0 1.75rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.09em;
}
h1 {
  margin: 0 0 1.75rem;
  font-size: clamp(4rem, 7.5vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
  font-weight: 900;
}
h1 span {
  color: var(--ochre);
}
.intro {
  margin: 0 0 1.1rem;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.description {
  max-width: 29rem;
  margin: 0;
  color: var(--muted);
}
.launch-note {
  border-top: 2px solid var(--ink);
  margin-top: 2rem;
  padding-top: 1.2rem;
  max-width: 29rem;
}
h2 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
}
.launch-note p {
  margin: 0;
  color: var(--muted);
}
.contact-line {
  margin: 1.35rem 0 0;
  font-size: 0.875rem;
  color: var(--muted);
}
.contact-line a {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-color: var(--ochre);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.3em;
}
.contact-line a:hover {
  text-decoration-color: var(--ink);
}
.art-panel {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
}
.panel-heading,
.panel-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  padding: 1.15rem 1.3rem;
  font-size: 0.875rem;
}
.panel-heading {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.art-panel img {
  display: block;
  width: 100%;
  height: auto;
}
figcaption {
  font-size: 0.8125rem;
  padding: 0.5rem 1.3rem;
  color: #dddcd2;
}
.panel-footer {
  border-top: 1px solid #606655;
}
.panel-footer span:last-child {
  color: var(--amber);
}
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0 2rem;
  border-top: 1px solid var(--line);
  font-size: 0.875rem;
  color: var(--muted);
}
.site-footer p {
  margin: 0;
}
.mobile-break {
  display: none;
}
.error-page {
  min-height: 70vh;
  display: grid;
  align-content: center;
  padding-block: 3rem;
  max-width: 45rem;
}
.error-page h1 {
  font-size: clamp(2.8rem, 8vw, 5rem);
}
.error-page a {
  text-underline-offset: 0.3em;
  font-weight: 700;
}
@media (max-width: 800px) {
  .page {
    width: calc(100% - 3rem);
  }
  .hero {
    grid-template-columns: 1fr;
    padding-block: 2.5rem;
  }
  h1 {
    font-size: clamp(4rem, 12vw, 6rem);
  }
  .description,
  .launch-note {
    max-width: 100%;
  }
  .art-panel {
    max-width: 35rem;
    width: 100%;
    justify-self: center;
  }
  .site-footer {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .page {
    width: calc(100% - 2rem);
  }
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }
  .monogram {
    font-size: 2.4rem;
  }
  .brand-name {
    font-size: 0.875rem;
  }
  .eyebrow {
    letter-spacing: 0.04em;
  }
  h1 {
    font-size: clamp(3.2rem, 16vw, 4.6rem);
  }
  .mobile-break {
    display: block;
  }
}
