:root {
  --bg: #f4efe7;
  --t-red: #F54927;
  --text: var(--t-red);
  --image-width: 80vw;
}

@media (min-width: 1000px) {
  :root {
    --image-width: 50vw;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #ffffff;
  color: var(--text);
  font-family: "Jost", "Avenir Next", "Segoe UI", sans-serif;
}

main {
  width: 100%;
  display: grid;
  justify-items: center;
  padding: 0 24px 80px;
}

.brand-lockup {
  min-height: 100vh;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 22px;
}

img {
  width: var(--image-width);
  height: auto;
  display: block;
}

.nav-toggle {
  position: fixed;
  top: 28px;
  right: 36px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
}

.nav-toggle img {
  width: 28px;
  height: 28px;
}

.masthead {
  margin: 0 0 8px;
  color: var(--text);
  font-family: "Jost", "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(44px, 9vw, 132px);
  font-weight: 800;
  line-height: 0.85;
  text-align: center;
  text-transform: uppercase;
}

.issue-label {
  margin: 12px 0 -10px;
  color: var(--text);
  font-family: "Jost", "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: min(86vw, 880px);
  font-size: clamp(32px, 5vw, 72px);
  font-family: "Spectral SC", "Crimson Text", serif;
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
}

.site-title {
  transition: font-size 180ms ease, padding 180ms ease, border-color 180ms ease;
  z-index: 10;
}

.is-title-stuck .site-title {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: none;
  padding: 28px 104px 24px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e1e4e6;
  font-size: clamp(22px, 2.6vw, 36px);
}

.scroll-arrow {
  width: 34px;
  height: 34px;
  color: var(--text);
  animation: bounce 1.8s ease-in-out infinite;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.scroll-link {
  display: grid;
  place-items: center;
}

.is-arrow-hidden .scroll-arrow {
  opacity: 0;
  visibility: hidden;
}

.intro-copy {
  width: min(86vw, 760px);
  padding-top: 96px;
  display: grid;
  gap: 48px;
  color: var(--text);
  font-family: "Crimson Text", Georgia, serif;
  font-size: clamp(18px, 1.65vw, 24px);
  line-height: 1.45;
}

.intro-copy p {
  margin: 0;
}

.intro-copy ul {
  margin: -10px 0 0;
  padding-left: 1.2em;
}

.intro-copy li {
  margin: 4px 0;
}

.section-breaker {
  margin: 0;
  font-family: "Jost", "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(15px, 1.3vw, 20px);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-divider {
  width: 100%;
  margin: -6px 0;
  border: 0;
  border-top: 1px solid rgba(245, 73, 39, 0.34);
}

.intro-copy .surface-line {
  font-family: "Spectral SC", "Crimson Text", serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
}

.about-page {
  min-height: 100vh;
  background: var(--t-red);
  color: #ffffff;
}

.about-page .nav-toggle img {
  width: 28px;
  height: 28px;
}

.about-page main {
  min-height: 100vh;
  align-content: center;
  padding: 96px 24px;
}

.about-copy {
  width: min(86vw, 760px);
  display: grid;
  gap: 56px;
  font-family: "Crimson Text", Georgia, serif;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.38;
}

.about-copy h1 {
  max-width: none;
  color: inherit;
  font-family: "Jost", "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
}

.about-copy p {
  margin: 0;
}

.site-footer {
  padding: 64px 24px 28px;
  color: var(--text);
  font-family: "Jost", "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-align: center;
}

@media (max-width: 700px) {
  .intro-copy {
    gap: 28px;
    padding-top: 68px;
  }

  .section-divider {
    margin: 10px 0;
  }

  .about-copy {
    gap: 34px;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}
