:root {
  --paper: #f3f0e9;
  --paper-deep: #e9e4da;
  --ink: #17171a;
  --muted: #66616a;
  --lilac: #d8d2db;
  --lilac-dark: #b8afbc;
  --apricot: #e7a171;
  --rule: rgba(23, 23, 26, 0.24);
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Arial, Helvetica, sans-serif;
  --page: min(94vw, 1440px);
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --section: clamp(6rem, 12vw, 12rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

a:hover {
  text-decoration-color: var(--apricot);
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.7rem 1rem;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  width: var(--page);
  min-height: 7.5rem;
  margin-inline: auto;
  padding: 2rem var(--gutter) 1.25rem;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.wordmark {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.site-header nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem clamp(1rem, 2.5vw, 2.5rem);
}

.site-header nav {
  justify-content: flex-end;
}

.site-header nav a,
.site-footer nav a {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header nav a[aria-current="page"],
.site-footer nav a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: var(--apricot);
  text-decoration-thickness: 2px;
}

.eyebrow,
.section-label,
.catalogue,
.legal-date {
  margin: 0;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero {
  width: var(--page);
  min-height: 65rem;
  margin-inline: auto;
  padding: clamp(3rem, 6vw, 6rem) var(--gutter) 0;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(0.75rem, 1.5vw, 1.5rem);
  align-items: start;
}

.hero > .eyebrow {
  grid-column: 1 / 5;
  padding-top: 0.5rem;
}

.hero-heading {
  grid-column: 7 / 13;
  padding-top: clamp(2.5rem, 5vw, 5rem);
}

.catalogue {
  margin-bottom: 2.2rem;
  color: var(--muted);
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3.5rem, 7.4vw, 7.4rem);
}

.standfirst {
  max-width: 38rem;
  margin: 2.5rem 0 0;
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  line-height: 1.55;
}

.hero-plate {
  grid-column: 1 / 8;
  width: min(100%, 43rem);
  margin: clamp(5rem, 9vw, 8rem) 0 0;
}

.hero-plate img {
  width: 100%;
  max-height: 45rem;
  object-fit: cover;
  object-position: center 38%;
}

figcaption {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--ink);
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

figcaption span {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chapter {
  position: relative;
  width: var(--page);
  margin-inline: auto;
  padding-block: var(--section);
}

.chapter h2,
.checklist h2,
.closing h2,
.legal-copy h2 {
  font-size: clamp(2.6rem, 5.5vw, 5.6rem);
}

.chapter h2 {
  margin: 1.2rem 0 2.25rem;
}

.chapter p:not(.chapter-number, .section-label),
.closing p,
.legal-copy p,
.legal-copy li {
  font-size: clamp(1rem, 1.15vw, 1.13rem);
}

.chapter p:not(.chapter-number, .section-label) + p {
  margin-top: 1.25rem;
}

.chapter-number {
  margin: 0;
  color: var(--apricot);
  font-family: var(--serif);
  font-size: clamp(6rem, 15vw, 14rem);
  line-height: 0.72;
}

.chapter--reading {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 2rem;
  padding-inline: var(--gutter);
}

.chapter--reading .chapter-number {
  grid-column: 1 / 4;
}

.chapter--reading > div {
  grid-column: 5 / 10;
  max-width: 42rem;
}

.chapter--right {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem;
  padding-inline: var(--gutter);
  border-top: 1px solid var(--rule);
}

.chapter--right .chapter-number {
  grid-column: 1 / 4;
}

.wide-copy {
  grid-column: 6 / 13;
}

.editorial-list,
.plain-list {
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
}

.editorial-list li,
.plain-list li {
  padding: 1rem 0;
  border-top: 1px solid var(--rule);
}

.chapter--field {
  min-height: 54rem;
  padding: clamp(5rem, 10vw, 10rem) var(--gutter);
  background: var(--lilac);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem;
}

.chapter--field .chapter-number {
  grid-column: 1 / 4;
}

.field-copy {
  grid-column: 5 / 12;
}

.margin-note {
  grid-column: 2 / 5;
  align-self: end;
  max-width: 18rem;
  padding-top: 1rem;
  border-top: 1px solid var(--ink);
  font-size: 0.82rem;
  line-height: 1.55;
}

.margin-note span {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.chapter--depth {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem;
  padding-left: max(1.25rem, calc((100% - min(94vw, 1440px)) / 2));
  padding-right: var(--gutter);
}

.depth-copy {
  grid-column: 1 / 7;
  max-width: 45rem;
}

.detail-plate {
  grid-column: 9 / 13;
  align-self: end;
  margin: clamp(12rem, 20vw, 20rem) 0 0;
}

.measure-list {
  margin-top: 3.5rem;
}

.measure-list div {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--rule);
}

.measure-list dt {
  font-weight: 700;
}

.measure-list dd {
  margin: 0;
  color: var(--muted);
}

.checklist {
  width: var(--page);
  margin-inline: auto;
  padding: var(--section) var(--gutter);
  background: var(--paper-deep);
  display: grid;
  grid-template-columns: 4fr 7fr;
  gap: clamp(3rem, 8vw, 9rem);
}

.checklist-heading {
  position: sticky;
  top: 2rem;
  align-self: start;
}

.checklist h2 {
  margin: 1.2rem 0 2rem;
}

.checklist-items {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: item;
}

.checklist-items li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.25rem 0 1.75rem;
  border-top: 1px solid var(--ink);
}

.checklist-items li > span {
  color: var(--apricot);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.checklist-items p {
  margin: 0;
}

.closing {
  width: var(--page);
  margin-inline: auto;
  padding: var(--section) var(--gutter);
  display: grid;
  grid-template-columns: 3fr 7fr 2fr;
  gap: 2rem;
}

.closing .chapter-number {
  grid-column: 1;
}

.closing > div {
  grid-column: 2;
}

.closing h2 {
  margin-bottom: 2.5rem;
}

.site-footer {
  width: var(--page);
  min-height: 42rem;
  margin-inline: auto;
  padding: clamp(4rem, 7vw, 7rem) var(--gutter) 1.5rem;
  color: var(--paper);
  background: var(--ink);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto 1fr auto;
  gap: 2rem 1rem;
  align-items: start;
}

.footer-contact {
  grid-column: 1 / 4;
  font-size: 0.85rem;
}

.footer-contact > p:first-child {
  color: var(--lilac-dark);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-contact a {
  overflow-wrap: anywhere;
}

.site-footer nav {
  grid-column: 7 / 13;
  justify-content: flex-end;
}

.footer-note {
  grid-column: 7 / 11;
  align-self: end;
  color: var(--lilac-dark);
  font-size: 0.78rem;
}

.footer-title {
  grid-column: 1 / 13;
  margin: 0;
  align-self: end;
  font-family: var(--serif);
  font-size: clamp(3rem, 10vw, 9.4rem);
  letter-spacing: -0.055em;
  line-height: 0.78;
  white-space: nowrap;
}

.legal-main {
  width: var(--page);
  margin-inline: auto;
  padding: clamp(4rem, 8vw, 8rem) var(--gutter) var(--section);
}

.legal-hero {
  min-height: clamp(20rem, 42vw, 38rem);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem;
  align-content: start;
}

.legal-hero .eyebrow {
  grid-column: 1 / 5;
}

.legal-hero h1 {
  grid-column: 4 / 13;
  margin-top: clamp(4rem, 10vw, 9rem);
  font-size: clamp(4rem, 10vw, 10rem);
}

.legal-copy {
  width: min(100%, 43rem);
  margin-inline: auto;
}

.legal-copy .legal-date {
  margin-bottom: 5rem;
  color: var(--muted);
}

.legal-copy section {
  padding: 3.5rem 0;
  border-top: 1px solid var(--rule);
}

.legal-copy h2 {
  margin-bottom: 2rem;
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.legal-copy p + p {
  margin-top: 1.25rem;
}

address {
  font-style: normal;
}

@media (max-width: 900px) {
  :root {
    --page: 100%;
  }

  .hero {
    min-height: 0;
  }

  .hero > .eyebrow {
    grid-column: 1 / 6;
  }

  .hero-heading {
    grid-column: 5 / 13;
  }

  .hero-plate {
    grid-column: 1 / 9;
  }

  .chapter--reading > div {
    grid-column: 4 / 11;
  }

  .chapter--right .chapter-number {
    grid-column: 1 / 3;
  }

  .wide-copy {
    grid-column: 4 / 13;
  }

  .field-copy {
    grid-column: 4 / 13;
  }

  .margin-note {
    grid-column: 1 / 4;
  }

  .chapter--depth {
    padding-left: var(--gutter);
  }

  .depth-copy {
    grid-column: 1 / 8;
  }

  .detail-plate {
    grid-column: 9 / 13;
  }

  .checklist {
    grid-template-columns: 1fr;
  }

  .checklist-heading {
    position: static;
    max-width: 40rem;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 1.25rem;
    --section: 5.5rem;
  }

  body {
    line-height: 1.6;
  }

  .site-header {
    min-height: 0;
    padding-block: 1.25rem;
    flex-direction: column;
  }

  .site-header nav {
    justify-content: flex-start;
    gap: 0.6rem 1.1rem;
  }

  .hero {
    display: block;
    padding-top: 2.5rem;
  }

  .hero-heading {
    padding-top: 4.5rem;
    margin-left: 14%;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(3.25rem, 15vw, 5rem);
  }

  .hero-plate {
    width: 84%;
    margin-top: 5rem;
  }

  figcaption {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .chapter,
  .chapter--reading,
  .chapter--right,
  .chapter--field,
  .chapter--depth,
  .closing {
    display: block;
    min-height: 0;
    padding-inline: var(--gutter);
  }

  .chapter-number {
    margin-bottom: 3.5rem;
    font-size: 6.5rem;
  }

  .chapter h2,
  .checklist h2,
  .closing h2 {
    font-size: clamp(2.6rem, 13vw, 4.2rem);
  }

  .chapter--right,
  .chapter--field {
    padding-block: var(--section);
  }

  .margin-note {
    margin: 4rem 0 0 auto;
  }

  .detail-plate {
    width: 78%;
    margin: 6rem 0 0 auto;
  }

  .measure-list div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .closing > div {
    max-width: 100%;
  }

  .site-footer {
    min-height: 38rem;
    display: flex;
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
    margin-top: 2rem;
  }

  .footer-note {
    width: min(100%, 22rem);
    margin-top: auto;
  }

  .footer-title {
    width: 100%;
    font-size: clamp(2.45rem, 13.5vw, 5rem);
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .legal-main {
    padding-top: 3rem;
  }

  .legal-hero {
    min-height: 25rem;
    display: block;
  }

  .legal-hero h1 {
    margin-top: 5rem;
    font-size: clamp(3.5rem, 16vw, 6rem);
  }
}

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