:root {
  --paper: #f8f7f3;
  --ink: #171717;
  --muted: #6b665e;
  --rule: #d6d4c9;
  --accent: #c94f2d;
  --field: #e4e1da;
  --placeholder: #aaa59c;
  --max: 1500px;
  --page-gutter: clamp(18px, 6vw, 90px);
  --font-sans: "Source Sans 3", Arial, sans-serif;
  --font-body: "Literata", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: clip;
  width: 100%;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  background: var(--ink);
  color: var(--paper);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
}

body {
  padding-top: 95px;
}

.site-header__inner {
  align-items: center;
  display: flex;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  justify-content: space-between;
  line-height: 18px;
  margin: 0 auto;
  max-width: var(--max);
  padding: 22px var(--page-gutter);
  text-transform: uppercase;
}

.brand {
  display: inline-flex;
  font-weight: 700;
}

.brand img {
  display: block;
  height: 51px;
  max-width: min(220px, 48vw);
  object-fit: contain;
  width: auto;
}

nav {
  display: flex;
  gap: 24px;
}

nav a {
  min-height: 44px;
  align-items: center;
  display: inline-flex;
}

nav a.nav-cta {
  background: var(--paper);
  border: 2px solid var(--accent);
  box-shadow: 5px 5px 0 var(--accent);
  color: var(--ink);
  font-weight: 800;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
}

nav a.nav-cta:hover,
nav a.nav-cta:focus-visible {
  background: var(--accent);
  border-color: var(--paper);
  box-shadow: 5px 5px 0 rgba(248, 247, 243, 0.9);
  color: var(--paper);
}

.menu-toggle {
  background: transparent;
  border: 1px solid rgba(248, 247, 243, 0.45);
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 44px;
  justify-content: center;
  padding: 0 11px;
  width: 48px;
}

.menu-toggle span {
  background: var(--paper);
  display: block;
  height: 2px;
  width: 24px;
}

main {
  margin: 0 auto;
  max-width: var(--max);
  padding: 0 var(--page-gutter);
}

.hero {
  display: grid;
  gap: clamp(40px, 7vw, 120px);
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  min-height: calc(100vh - 82px);
  padding: clamp(62px, 8vw, 118px) 0 clamp(80px, 10vw, 150px);
}

.hero__copy {
  align-self: start;
  min-width: 0;
}

.kicker {
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.45vw, 20px);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 26px;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0;
  margin: 0;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(64px, 12vw, 156px);
  line-height: 0.86;
  max-width: 910px;
  overflow-wrap: normal;
}

h1 span,
.contact-heading h2 span {
  color: var(--accent);
  display: block;
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 500;
  max-width: 100%;
  text-transform: none;
}

.lead {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 300;
  line-height: 36px;
  margin: 44px 0 36px;
  max-width: 930px;
  min-width: 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  max-width: 100%;
  min-width: 0;
}

.button {
  border: 2px solid var(--ink);
  display: inline-flex;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  justify-content: center;
  line-height: 20px;
  min-height: 52px;
  padding: 15px 24px;
  text-transform: uppercase;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.button--primary {
  background: var(--ink);
  color: var(--paper);
}

.button--secondary {
  background: transparent;
  color: var(--ink);
}

.button:hover,
.button:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--paper);
}

.button:disabled,
.button[aria-disabled="true"] {
  background: var(--field);
  border-color: var(--field);
  color: var(--muted);
  cursor: not-allowed;
  opacity: 0.72;
}

.button--wide {
  width: 100%;
}

.book-cover {
  align-self: start;
  margin: 0;
  max-width: 450px;
  width: 100%;
}

.book-cover__image {
  aspect-ratio: 2054 / 3123;
  background-image: url("assets/we-are-not-consumers-cover.jpg");
  background-position: center;
  background-size: cover;
  box-shadow: 0 28px 42px rgba(23, 23, 23, 0.23);
  width: 100%;
}

.video-band {
  margin: 0 0 clamp(74px, 9vw, 130px);
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: var(--rule);
  position: relative;
  width: 100%;
}

.video-band video {
  height: 100%;
  display: block;
  object-fit: cover;
  width: 100%;
}

.video-caption {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 300;
  line-height: 36px;
  margin: 24px auto 0;
  max-width: min(980px, 100%);
}

.video-caption em {
  color: var(--accent);
  font-weight: 600;
}

.video-link {
  align-items: center;
  border-bottom: 2px solid var(--accent);
  color: var(--ink);
  display: inline-flex;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
  margin: 22px auto 0;
  min-height: 38px;
  text-transform: uppercase;
}

.video-link:hover,
.video-link:focus-visible {
  color: var(--accent);
}

.launch-details {
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 28px auto 0;
  max-width: min(980px, 100%);
}

.launch-details div {
  border-bottom: 1px solid var(--rule);
  display: block;
  padding: 18px 22px 18px 0;
}

.launch-details dt {
  color: var(--accent);
  font-size: 16px;
  margin-bottom: 8px;
}

.launch-details dd {
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.12;
}

.book-grid {
  display: grid;
  gap: clamp(52px, 9vw, 150px);
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  padding: 30px 0 80px;
}

.book-about h2 {
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.95;
  margin-bottom: 36px;
  max-width: 780px;
}

.book-about p:not(.kicker),
.order-summary p:not(.kicker),
.contact-heading p:not(.kicker),
.policy-heading p:not(.kicker),
.policy-card p,
.form-note {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 300;
  line-height: 36px;
  margin: 0 0 22px;
}

.book-about em {
  color: var(--accent);
  font-weight: 600;
}

.rule {
  background: var(--ink);
  height: 3px;
  margin-bottom: 28px;
  width: 100%;
}

.order-summary .price {
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: clamp(86px, 9vw, 118px) !important;
  font-weight: 700;
  line-height: 0.9 !important;
  margin: 0 0 32px !important;
}

dl {
  border-top: 1px solid var(--rule);
  margin: 54px 0 28px;
}

dl div {
  border-bottom: 1px solid var(--rule);
  display: grid;
  gap: 24px;
  grid-template-columns: 0.9fr 1fr;
  padding: 20px 0;
}

dt,
dd,
label {
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  text-transform: uppercase;
}

.quote-band {
  border-bottom: 2px solid var(--rule);
  border-top: 2px solid var(--rule);
  margin: 20px 0 96px;
  padding: clamp(44px, 7vw, 82px) 0;
}

.quote-band p {
  font-size: clamp(42px, 6vw, 76px);
  font-style: italic;
  line-height: 1.08;
  margin: 0;
}

.contact-section {
  position: relative;
  padding: 0 0 84px;
}

.anchor-target {
  display: block;
  scroll-margin-top: 130px;
}

.contact-heading h2 {
  font-size: clamp(74px, 12vw, 156px);
  line-height: 0.82;
  margin-bottom: 44px;
}

.contact-heading p:not(.kicker) {
  color: var(--muted);
  max-width: 1050px;
}

.inquiry-form {
  display: grid;
  gap: 26px 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 48px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.field--full,
.consent,
.inquiry-form .button,
.form-note {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  appearance: none;
  background: transparent;
  border: 1px solid var(--field);
  border-radius: 0;
  color: var(--ink);
  font: 400 20px/1.2 var(--font-sans);
  min-height: 68px;
  padding: 18px 20px;
  width: 100%;
}

input::placeholder,
textarea::placeholder {
  color: var(--placeholder);
  opacity: 1;
}

.inquiry-form select,
.inquiry-form input[type="number"] {
  color: var(--placeholder);
}

.inquiry-form select:focus,
.inquiry-form input[type="number"]:focus {
  color: var(--ink);
}

.inquiry-form option {
  color: var(--ink);
}

select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 15px) 50%;
  background-repeat: no-repeat;
  background-size: 7px 7px;
  padding-right: 46px;
}

textarea {
  min-height: 220px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  outline: 2px solid rgba(201, 79, 45, 0.18);
  outline-offset: 0;
}

.consent {
  align-items: center;
  display: flex;
  gap: 16px;
  position: relative;
  text-transform: none;
}

.consent::before {
  align-items: center;
  background: var(--paper);
  border: 2px solid var(--rule);
  color: var(--paper);
  content: "";
  display: flex;
  flex: 0 0 36px;
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 800;
  height: 36px;
  justify-content: center;
  line-height: 1;
  width: 36px;
}

.consent:has(input[type="checkbox"]:checked)::before {
  background: var(--ink);
  border-color: var(--ink);
  content: "✓";
}

.consent:has(input[type="checkbox"]:disabled) {
  cursor: not-allowed;
  opacity: 0.55;
}

.consent:has(input[type="checkbox"]:disabled)::before {
  background: var(--field);
}

.consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  cursor: pointer;
  height: 36px;
  left: 0;
  margin: 0;
  min-height: 0;
  opacity: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  max-width: 36px;
  z-index: 2;
}

.consent input[type="checkbox"]:disabled {
  cursor: not-allowed;
}

.consent span {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.25;
  position: relative;
  text-transform: none;
  z-index: 3;
}

.consent:has(input[type="checkbox"]:focus-visible)::before {
  outline: 3px solid rgba(201, 79, 45, 0.28);
  outline-offset: 3px;
}

.form-note {
  color: var(--muted);
  font-size: 15px;
  margin: -12px 0 0;
}

.consent a,
.policy-links a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.policy-section {
  border-top: 2px solid var(--rule);
  padding: clamp(58px, 8vw, 96px) 0 clamp(72px, 9vw, 118px);
}

.policy-section--page {
  border-top: 0;
  padding-top: clamp(62px, 8vw, 108px);
}

.policy-heading {
  margin-bottom: 44px;
  max-width: 1050px;
}

.policy-heading h1 {
  font-size: clamp(54px, 9vw, 118px);
  line-height: 0.9;
  margin-bottom: 34px;
  max-width: 1150px;
}

.policy-heading h2 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.96;
  margin-bottom: 30px;
  max-width: 980px;
}

.policy-card {
  border-top: 1px solid var(--rule);
  padding: 34px 0 16px;
  scroll-margin-top: 130px;
}

.policy-card h2,
.policy-card h3 {
  font-family: var(--font-sans);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.policy-card em {
  color: var(--accent);
  font-weight: 600;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  gap: 18px 24px;
  justify-content: space-between;
  line-height: 18px;
  margin: 0 auto;
  max-width: var(--max);
  padding: 28px var(--page-gutter) 34px;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.policy-links,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.policy-links a,
.social-links a {
  color: var(--accent);
}

.policy-links a:hover,
.policy-links a:focus-visible,
.social-links a:hover,
.social-links a:focus-visible {
  color: var(--ink);
}

@media (max-width: 900px) {
  .site-header__inner,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  nav {
    flex-wrap: wrap;
    gap: 4px 20px;
  }

  .hero,
  .book-grid,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .book-cover {
    max-width: 360px;
    justify-self: center;
  }

  h1 {
    font-size: clamp(64px, 20vw, 120px);
  }

  dl div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .launch-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  :root {
    --page-gutter: clamp(22px, 6.2vw, 28px);
  }

  body {
    padding-top: 87px;
  }

  main,
  .site-header__inner,
  .site-footer {
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
  }

  .site-header__inner {
    align-items: center;
    display: grid;
    grid-template-columns: 1fr auto;
    padding-bottom: 18px;
    padding-top: 18px;
  }

  .brand img {
    height: 42px;
    max-width: 190px;
  }

  nav {
    background: #232323;
    display: none;
    grid-column: 1 / -1;
    margin-left: calc(var(--page-gutter) * -1);
    margin-right: calc(var(--page-gutter) * -1);
    margin-top: 18px;
    padding: 18px var(--page-gutter) 20px;
    width: calc(100% + (var(--page-gutter) * 2));
  }

  .site-header.is-menu-open nav {
    display: flex;
  }

  nav a {
    font-size: 14px;
    flex: 1 1 auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    gap: 34px;
    padding: 44px 0 64px;
  }

  .kicker {
    font-size: 15px;
    margin-bottom: 18px;
  }

  h1 {
    font-size: clamp(46px, 12.8vw, 56px);
    line-height: 0.92;
    max-width: 100%;
  }

  h1 span {
    font-size: clamp(50px, 15.2vw, 60px);
    line-height: 1;
    overflow-wrap: normal;
    word-break: normal;
  }

  .lead,
  .video-caption,
  .book-about p:not(.kicker),
  .order-summary p:not(.kicker),
  .contact-heading p:not(.kicker),
  .policy-heading p:not(.kicker),
  .policy-card p {
    font-size: 20px;
    line-height: 31px;
  }

  .book-grid {
    gap: 44px;
    padding-bottom: 58px;
  }

  .book-about h2 {
    font-size: clamp(40px, 13vw, 58px);
    line-height: 0.98;
  }

  .video-band {
    margin-bottom: 62px;
  }

  .launch-details dd {
    font-size: 20px;
  }

  .quote-band {
    margin-bottom: 66px;
  }

  .quote-band p {
    font-size: clamp(36px, 12vw, 54px);
  }

  .contact-heading h2 {
    font-size: clamp(70px, 23vw, 86px);
  }

  .inquiry-form {
    gap: 22px;
  }

  .button,
  input,
  select,
  textarea {
    width: 100%;
  }

  input,
  select,
  textarea {
    font-size: 18px;
    min-height: 62px;
  }

  .consent {
    align-items: flex-start;
  }

  .consent input[type="checkbox"] {
    top: 0;
    transform: none;
  }

  .consent span {
    font-size: 18px;
    line-height: 25px;
  }

  .site-footer,
  .policy-links,
  .social-links {
    width: 100%;
  }
}

@media (max-width: 380px) {
  body {
    padding-top: 83px;
  }

  :root {
    --page-gutter: 20px;
  }

  h1 {
    font-size: clamp(42px, 12.8vw, 48px);
  }

  h1 span {
    font-size: clamp(46px, 15vw, 54px);
  }

  .book-about h2 {
    font-size: 38px;
  }

  .contact-heading h2 {
    font-size: 64px;
  }

  nav {
    gap: 2px 14px;
  }

}
