@font-face {
  font-family: "Inter Tight";
  src: url("/fonts/inter-tight-300.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Inter Tight";
  src: url("/fonts/inter-tight-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Inter Tight";
  src: url("/fonts/inter-tight-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("/fonts/bricolage-grotesque-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --cream: #f4f1e0;
  --ink: #1d1d1d;
  --orange: #eb5027;
  --yellow: #f6cd45;
  --blue: #3077b5;
  --white: #fff;
  --page: min(90rem, calc(100% - 6rem));
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.45;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Bricolage Grotesque", "Inter Tight", sans-serif;
  font-weight: 700;
  line-height: .94;
  letter-spacing: -.045em;
}

h2 {
  font-size: clamp(3.25rem, 7vw, 7.3rem);
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: .75rem;
  left: .75rem;
  padding: .7rem 1rem;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: none;
}

.page-shell {
  width: var(--page);
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 9rem;
  width: var(--page);
  margin-inline: auto;
}

.brand {
  justify-self: start;
}

.brand img {
  width: 5.75rem;
  height: 5rem;
  object-fit: contain;
}

.site-navigation {
  display: flex;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.site-navigation a,
.footer-meta a,
.site-footer nav a,
.legal-nav button {
  text-decoration-thickness: 1px;
  text-underline-offset: .3em;
}

.site-navigation a {
  text-decoration: none;
}

.site-navigation a[aria-current="page"] {
  text-decoration: underline;
}

.contact-pill,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: .8rem 1.6rem;
  border: 0;
  border-radius: 999px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.contact-pill {
  justify-self: end;
  background: var(--orange);
  color: var(--white);
}

.button-primary {
  background: var(--orange);
  color: var(--white);
}

.button-secondary {
  background: var(--white);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(29, 29, 29, .25);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.menu-toggle {
  display: none;
}

.home-hero {
  padding: clamp(3rem, 7vw, 8rem) 0 clamp(6rem, 10vw, 11rem);
  text-align: center;
}

.home-hero h1 {
  margin-bottom: 1rem;
  color: var(--orange);
  font-size: clamp(5rem, 15.3vw, 15.5rem);
  line-height: .78;
}

.home-hero p {
  width: min(48rem, 100%);
  margin: 3rem auto 0;
  font-size: clamp(1.3rem, 2.25vw, 2.35rem);
}

.split-section,
.book-page-hero,
.press-intro,
.contact-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  padding-block: clamp(5rem, 9vw, 10rem);
}

.split-copy h2,
.book-feature h2,
.press-intro h1,
.contact-page h1,
.book-page-hero h1 {
  color: var(--orange);
  font-size: clamp(3.5rem, 7.5vw, 8rem);
}

.split-copy p,
.book-feature p,
.press-intro p,
.contact-copy p,
.book-page-hero p,
.story-section p {
  max-width: 38rem;
  font-size: clamp(1.15rem, 1.6vw, 1.65rem);
}

.rounded-image {
  width: 100%;
  border-radius: 2.4rem;
}

.book-feature {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
  padding-block: clamp(6rem, 11vw, 12rem);
}

.book-feature img {
  border-radius: 1.8rem;
}

.creators {
  display: grid;
  grid-template-columns: minmax(12rem, 1fr) minmax(12rem, 1fr) 1.5fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-block: 5rem 10rem;
}

.creator img {
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}

.creator p {
  margin-top: 1rem;
  text-align: center;
  font-weight: 600;
}

.creator-copy {
  font-size: clamp(1.25rem, 2vw, 2rem);
}

.development {
  padding-bottom: clamp(7rem, 12vw, 14rem);
  text-align: center;
}

.development h2 {
  width: min(75rem, 100%);
  margin-inline: auto;
  color: var(--orange);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.gallery img {
  aspect-ratio: 3 / 4;
  width: 100%;
  border-radius: 1.5rem;
  object-fit: cover;
}

.book-page-hero {
  align-items: start;
}

.book-page-hero h1,
.press-intro h1,
.contact-page h1 {
  margin-bottom: 2rem;
}

.order-band {
  padding-block: clamp(5rem, 10vw, 10rem);
  background: var(--yellow);
}

.order-band .page-shell {
  display: flex;
  gap: 3rem;
  align-items: end;
  justify-content: space-between;
}

.order-band h2 {
  max-width: 65rem;
  margin-bottom: 0;
}

.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  padding-block: clamp(7rem, 12vw, 14rem);
}

.story-section h2 {
  color: var(--blue);
}

.story-section img {
  border-radius: 2rem;
}

.truth {
  padding-bottom: clamp(7rem, 12vw, 14rem);
  text-align: center;
}

.truth h2 {
  color: var(--orange);
}

.truth img {
  width: min(50rem, 100%);
  margin: 3rem auto;
  border-radius: 2rem;
}

.press-intro {
  align-items: start;
}

.press-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding-bottom: clamp(7rem, 12vw, 14rem);
}

.press-grid article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.75rem;
  padding: clamp(1.5rem, 3vw, 3rem);
  border-radius: 2rem;
  background: var(--white);
}

.press-grid article img {
  width: 100%;
  max-height: 32rem;
  object-fit: contain;
}

.contact-page {
  align-items: start;
  min-height: 65vh;
}

.contact-copy a {
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: .7rem;
}

.contact-form label {
  margin-top: .6rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(29, 29, 29, .3);
  border-radius: .65rem;
  padding: .9rem 1rem;
  background: rgba(255, 255, 255, .55);
  color: var(--ink);
}

.contact-form textarea {
  min-height: 10rem;
  resize: vertical;
}

.contact-form .button {
  justify-self: start;
  margin-top: 1.2rem;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: .65;
}

.form-status {
  min-height: 1.7em;
  margin: .4rem 0 0;
  font-weight: 600;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.legal-page {
  max-width: 58rem;
  padding-block: 5rem 10rem;
}

.legal-page h1 {
  color: var(--orange);
  font-size: clamp(3.5rem, 8vw, 7rem);
}

.legal-page h2 {
  margin-top: 3rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.legal-page h3 {
  margin-top: 2rem;
  font-size: 1.5rem;
  line-height: 1.1;
}

.legal-page li + li {
  margin-top: .6rem;
}

.privacy-notice {
  margin-bottom: 4rem;
  padding: 2rem;
  border-radius: 1.5rem;
  background: var(--yellow);
}

.privacy-notice h2 {
  margin-top: 0;
}

.not-found {
  min-height: 60vh;
  padding-block: 7rem;
  text-align: center;
}

.not-found > p:first-child {
  margin-bottom: .25rem;
  color: var(--orange);
  font-size: 2rem;
  font-weight: 700;
}

.not-found h1 {
  margin-bottom: 2rem;
  color: var(--orange);
  font-size: clamp(4rem, 11vw, 10rem);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: center;
  padding: 5rem max(3rem, calc((100% - min(90rem, calc(100% - 6rem))) / 2));
  background: var(--orange);
  color: var(--white);
}

.site-footer nav,
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}

.site-footer > nav:first-child {
  align-self: start;
}

.site-footer > img {
  width: 5.5rem;
}

.footer-meta {
  justify-content: flex-end;
  text-align: right;
}

.legal-nav {
  grid-column: 1 / -1;
  justify-content: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .4);
}

.legal-nav button,
.text-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.consent {
  position: fixed;
  z-index: 100;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem 3rem;
  align-items: center;
  max-width: 72rem;
  margin-inline: auto;
  padding: 1.5rem;
  border: 1px solid rgba(29, 29, 29, .18);
  border-radius: 1.5rem;
  background: var(--cream);
  box-shadow: 0 1.2rem 4rem rgba(29, 29, 29, .25);
}

.consent[hidden],
.consent-details[hidden] {
  display: none;
}

.consent h2 {
  margin-bottom: .5rem;
  font-size: 2rem;
  line-height: 1;
}

.consent p {
  margin-bottom: 0;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: flex-end;
}

.consent .text-button {
  color: var(--ink);
}

.consent-details {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(29, 29, 29, .2);
}

@media (hover: hover) {
  .contact-pill:hover,
  .button:hover {
    transform: translateY(-2px);
  }

  a:hover {
    text-decoration-thickness: 2px;
  }
}

@media (max-width: 760px) {
  :root {
    --page: calc(100% - 2rem);
  }

  body {
    font-size: 1rem;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 7rem;
  }

  .brand img {
    width: 4.6rem;
    height: 4rem;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
    align-items: center;
    min-height: 2.75rem;
    padding: .5rem 1rem;
    border: 1px solid var(--ink);
    border-radius: 999px;
    background: transparent;
    color: var(--ink);
  }

  .site-navigation {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: none;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 2rem;
    background: var(--cream);
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 3rem;
  }

  .site-navigation[data-open="true"] {
    display: flex;
  }

  .contact-pill {
    position: fixed;
    z-index: 22;
    right: 1rem;
    bottom: 1rem;
  }

  .home-hero {
    padding-top: 4rem;
  }

  .home-hero h1 {
    font-size: clamp(5.2rem, 27vw, 8rem);
  }

  .home-hero p {
    margin-top: 2rem;
  }

  .split-section,
  .book-feature,
  .book-page-hero,
  .press-intro,
  .contact-page,
  .story-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .book-feature img,
  .book-page-hero img,
  .press-intro img {
    order: -1;
  }

  .creators {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 7rem;
  }

  .creator-copy {
    grid-column: 1 / -1;
  }

  .gallery,
  .press-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    gap: 1rem;
  }

  .order-band .page-shell {
    display: block;
  }

  .order-band h2 {
    margin-bottom: 2rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 4rem 1rem 7rem;
    text-align: center;
  }

  .site-footer nav,
  .footer-meta {
    justify-content: center;
    text-align: center;
  }

  .site-footer > img {
    margin-inline: auto;
  }

  .legal-nav {
    grid-column: 1;
  }

  .consent {
    grid-template-columns: 1fr;
    right: .75rem;
    bottom: .75rem;
    left: .75rem;
    max-height: calc(100vh - 1.5rem);
    overflow-y: auto;
  }

  .consent-actions {
    justify-content: flex-start;
  }

  .consent-actions .button {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
