:root {
  --paper: #e7e2d7;
  --paper-deep: #b9b2a5;
  --white: #f5f0e5;
  --ink: #080908;
  --graphite: #151614;
  --muted: #67665f;
  --line: #bdb6a8;
  --gold: #aa8a4e;
  --gold-bright: #c5a45f;
  --gold-pale: #e2c78e;
  --red: #d91f2b;
  --amber: #e77d19;
  --font-body: "Bahnschrift", "DIN Alternate", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Haettenschweiler", "Bahnschrift Condensed", "Arial Narrow", sans-serif;
  --font-mono: "Consolas", "Courier New", monospace;
  --page: min(1480px, calc(100vw - 80px));
  --ease: cubic-bezier(.2, .72, .22, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(8,9,8,.018) 1px, transparent 1px) 0 0 / 88px 88px,
    var(--paper);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

::selection {
  color: var(--ink);
  background: var(--gold-bright);
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

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

.grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: .022;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.84' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.52'/%3E%3C/svg%3E");
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.utility-bar {
  min-height: 30px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #aaa69c;
  background: var(--ink);
}

.utility-bar p {
  margin: 0;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .23em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.utility-bar p:first-child::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 11px;
  display: inline-block;
  background: var(--red);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  color: var(--ink);
  background: rgba(235, 230, 218, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.brand--wordmark {
  gap: 17px;
}

.brand__wordmark-frame {
  width: 188px;
  aspect-ratio: 766 / 150;
  position: relative;
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
}

.brand__wordmark {
  width: 200.522%;
  max-width: none;
  height: auto;
  position: absolute;
  left: -57.702%;
  top: -144%;
  transition: opacity 160ms ease;
}

.brand__wordmark--black {
  opacity: 1;
}

.brand__wordmark--ivory {
  opacity: 0;
}

.brand__descriptor {
  min-height: 25px;
  padding-left: 17px;
  display: inline-flex;
  align-items: center;
  color: #3d3b37;
  border-left: 1px solid #aaa396;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.brand__mark {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: brightness(0);
}

.brand__type {
  display: flex;
  align-items: center;
  gap: 13px;
  text-transform: uppercase;
}

.brand__type strong {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: .31em;
}

.brand__type > span {
  width: 1px;
  height: 25px;
  background: #a9afb2;
}

.brand__type small {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .38em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.site-nav a:not(.nav-cta) {
  position: relative;
  color: #45494b;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms var(--ease);
}

.site-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  color: white;
  background: var(--ink);
  transition: background-color 180ms ease;
}

.nav-cta:hover {
  color: var(--ink);
  background: var(--gold-bright);
}

.nav-cta span {
  color: var(--gold-bright);
  font-size: 13px;
  letter-spacing: 0;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  position: relative;
  z-index: 43;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 26px;
  height: 1px;
  position: absolute;
  left: 9px;
  background: var(--ink);
  transition: top 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.nav-toggle span:first-child {
  top: 17px;
}

.nav-toggle span:nth-child(2) {
  top: 26px;
}

.hero {
  min-height: clamp(760px, calc(100svh - 118px), 900px);
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  color: white;
  background: #151718;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: .72;
  background-image:
    linear-gradient(rgba(226,199,142,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226,199,142,.045) 1px, transparent 1px);
  background-size: 88px 88px;
  pointer-events: none;
}

.hero__photo,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__photo {
  z-index: -3;
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(.86) contrast(1.13) brightness(.88);
}

.hero__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5,6,5,.96) 0%, rgba(5,6,5,.79) 35%, rgba(5,6,5,.18) 68%, rgba(5,6,5,.31) 100%),
    linear-gradient(to top, rgba(5,6,5,.78), transparent 56%),
    linear-gradient(135deg, rgba(170,138,78,.17), transparent 48%);
}

.hero__watermark {
  width: min(30vw, 430px);
  position: absolute;
  z-index: -1;
  top: 64px;
  right: 6vw;
  opacity: .14;
}

.hero__content {
  padding-top: 100px;
  padding-bottom: 92px;
  position: relative;
  z-index: 2;
}

.kicker {
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 17px;
  color: #d7d0c1;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.kicker span {
  color: var(--gold-bright);
}

.hero h1 {
  margin: 0;
  font-size: clamp(90px, 10.6vw, 178px);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: .76;
  text-transform: uppercase;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  margin-top: .22em;
  color: var(--gold-pale);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -.025em;
}

.hero__intro {
  max-width: 630px;
  margin: 42px 0 0;
  color: #d8d1c2;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.65;
}

.hero__actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
}

.button {
  min-height: 55px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button span {
  color: var(--gold-bright);
  font-size: 14px;
  letter-spacing: 0;
}

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

.button--light:hover {
  color: var(--ink);
  background: var(--gold-bright);
}

.button--light:hover span {
  color: white;
}

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

.button--dark:hover {
  color: var(--ink);
  background: var(--gold-bright);
}

.line-link {
  padding-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 21px;
  position: relative;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.line-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
}

.line-link span {
  color: var(--gold-bright);
  font-size: 13px;
  letter-spacing: 0;
}

.line-link--light {
  color: white;
}

.line-link--light span {
  color: var(--gold-pale);
}

.hero__rail {
  margin: 0;
  position: absolute;
  z-index: 2;
  right: 22px;
  top: 50%;
  color: rgba(255,255,255,.55);
  font-family: var(--font-mono);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .3em;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

.hero__stamp {
  min-width: 232px;
  min-height: 112px;
  padding: 23px 28px;
  position: absolute;
  z-index: 3;
  right: 5.5vw;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--ink);
  background: var(--paper);
  border-top: 5px solid var(--gold);
}

.hero__stamp::after {
  content: "";
  width: 34px;
  height: 5px;
  position: absolute;
  top: -5px;
  right: 0;
  background: var(--red);
}

.hero__stamp::before {
  content: "";
  width: 34px;
  height: 5px;
  position: absolute;
  top: -5px;
  right: 34px;
  background: var(--amber);
}

.hero__stamp small {
  margin-bottom: 6px;
  color: #7c7f80;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.hero__stamp strong {
  font-family: var(--font-display);
  font-size: 27px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: .005em;
  text-transform: uppercase;
}

.quick-strip {
  color: #56554f;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.quick-strip__inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
}

.quick-strip p {
  min-height: 28px;
  margin: 0;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-left: 1px solid var(--line);
  font-size: 10px;
  font-family: var(--font-mono);
}

.quick-strip p:first-child {
  padding-left: 0;
  border-left: 0;
}

.quick-strip p span {
  color: var(--gold-bright);
  font-size: 8px;
  letter-spacing: .14em;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.section-label span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: white;
  color: var(--ink);
  background: var(--gold-bright);
  letter-spacing: 0;
  position: relative;
}

.section-label span::after {
  content: "";
  width: 7px;
  height: 2px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--red);
}

.section-label p {
  margin: 0;
  color: #696c6d;
}

.section-label--inline {
  margin-bottom: 30px;
}

.section-label--light span {
  color: var(--ink);
  background: var(--gold-bright);
}

.section-label--light p {
  color: #aaa397;
}

.intro {
  padding-top: clamp(120px, 12vw, 190px);
  padding-bottom: clamp(120px, 12vw, 190px);
}

.intro__headline {
  margin-top: 55px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: end;
  gap: 80px;
}

.intro h2,
.section-heading h2,
.custom-feature h2,
.workshop h2,
.pride h2,
.contact h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(54px, 6.1vw, 98px);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: .91;
}

.intro h2 em,
.section-heading h2 em,
.custom-feature h2 em,
.workshop h2 em,
.pride h2 em,
.contact h2 em {
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -.015em;
}

.intro__note {
  padding: 28px 26px;
  position: relative;
  color: white;
  background: var(--ink);
  border-top: 1px solid #4f4a40;
  border-left: 5px solid var(--gold-bright);
}

.intro__note::before {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--red);
}

.intro__note span {
  color: var(--gold-pale);
  font-family: var(--font-mono);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.intro__note p {
  margin: 15px 0 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .005em;
  line-height: 1.3;
}

.intro__body {
  width: min(930px, 100%);
  margin: 78px 0 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.intro__body p {
  margin: 0;
  color: #66696a;
  font-size: 14px;
  line-height: 1.8;
}

.intro__body .intro__lead {
  color: #282b2c;
  font-size: 18px;
  line-height: 1.65;
}

.proof-grid {
  margin: 92px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-grid div {
  min-height: 164px;
  padding: 30px 28px;
  border-left: 1px solid var(--line);
}

.proof-grid div:first-child {
  padding-left: 0;
  border-left: 0;
}

.proof-grid dt {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 48px);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -.01em;
}

.proof-grid dd {
  max-width: 150px;
  margin: 28px 0 0;
  color: #737676;
  font-size: 10px;
  font-family: var(--font-mono);
  line-height: 1.5;
}

.specialisms {
  padding: clamp(110px, 10vw, 160px) 0;
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  align-items: end;
  gap: 80px;
}

.section-heading > p {
  margin: 0 0 5px;
  color: #65696a;
  font-size: 14px;
  line-height: 1.8;
}

.specialism-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #8f887b;
  border: 1px solid #8f887b;
}

.specialism-card {
  min-height: 520px;
  padding: clamp(30px, 3.2vw, 50px);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 220ms var(--ease), box-shadow 220ms ease;
}

.specialism-card:hover {
  z-index: 2;
  transform: translateY(-6px);
  box-shadow: inset 0 -5px var(--red);
}

.specialism-card__number {
  position: absolute;
  top: 30px;
  right: 32px;
  font-family: var(--font-display);
  font-size: 64px;
  font-style: italic;
  font-weight: 500;
  opacity: .12;
}

.specialism-card__type {
  margin: 0;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.specialism-card h3 {
  margin: auto 0 28px;
  font-size: clamp(38px, 3.6vw, 58px);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -.015em;
  line-height: .9;
  text-transform: uppercase;
}

.specialism-card > p:last-of-type {
  max-width: 390px;
  margin: 0 0 26px;
  font-size: 13px;
  line-height: 1.7;
}

.specialism-card__arrow {
  font-size: 25px;
}

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

.specialism-card--dark .specialism-card__type,
.specialism-card--dark > p:last-of-type {
  color: #a7a195;
}

.specialism-card--dark .specialism-card__arrow {
  color: var(--red);
}

.specialism-card--paper {
  color: var(--ink);
  background: var(--paper);
  border: 0;
}

.specialism-card--paper .specialism-card__type,
.specialism-card--paper > p:last-of-type {
  color: #69665f;
}

.specialism-card--paper .specialism-card__arrow {
  color: var(--gold-bright);
}

.specialism-card--gold {
  color: var(--ink);
  background: var(--gold);
}

.specialism-card--gold .specialism-card__type,
.specialism-card--gold > p:last-of-type {
  color: #373229;
}

.specialism-card--gold .specialism-card__arrow {
  color: var(--red);
}

.custom-feature {
  min-height: 690px;
  margin-top: clamp(110px, 11vw, 180px);
  margin-bottom: clamp(110px, 11vw, 180px);
  display: grid;
  grid-template-columns: 1.16fr .84fr;
  border: 1px solid #8f887b;
}

.custom-feature__image {
  min-height: 690px;
  position: relative;
  overflow: hidden;
  background: #22282a;
}

.custom-feature__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(4,7,9,.55), transparent 48%),
    linear-gradient(110deg, rgba(170,138,78,.15), transparent 50%);
}

.custom-feature__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: 51% center;
  filter: saturate(.82) contrast(1.04);
}

.custom-feature__image > p {
  margin: 0;
  padding: 15px 18px;
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  color: white;
  background: var(--ink);
  border-left: 5px solid var(--red);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.custom-feature__copy {
  padding: clamp(48px, 6vw, 90px);
  display: flex;
  flex-direction: column;
  color: white;
  background:
    linear-gradient(rgba(226,199,142,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226,199,142,.055) 1px, transparent 1px),
    var(--ink);
  background-size: 58px 58px;
}

.custom-feature h2 {
  margin-top: auto;
  color: white;
}

.custom-feature h2 em {
  color: var(--gold-bright);
}

.custom-feature__copy > p {
  max-width: 460px;
  margin: 34px 0 0;
  color: #b8b1a4;
  font-size: 14px;
  line-height: 1.75;
}

.custom-feature ul {
  margin: 38px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.2);
}

.custom-feature li {
  padding: 13px 0;
  color: #ded7c9;
  border-bottom: 1px solid rgba(255,255,255,.2);
  font-size: 10px;
  font-family: var(--font-mono);
}

.custom-feature .line-link {
  align-self: flex-start;
}

.workshop {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 8% 0, rgba(170,138,78,.22), transparent 34rem),
    var(--ink);
}

.workshop__mark {
  width: min(43vw, 650px);
  position: absolute;
  right: 0;
  bottom: -25%;
  opacity: .035;
}

.workshop__inner {
  padding-top: clamp(110px, 11vw, 180px);
  padding-bottom: clamp(110px, 11vw, 180px);
  display: grid;
  grid-template-columns: minmax(330px, .82fr) minmax(0, 1.18fr);
  gap: clamp(80px, 10vw, 170px);
}

.workshop__heading {
  align-self: start;
}

.workshop h2 {
  margin-top: 44px;
  color: white;
}

.workshop h2 em {
  color: var(--gold-bright);
}

.workshop__heading > p {
  max-width: 520px;
  margin: 36px 0 0;
  color: #92999c;
  font-size: 14px;
  line-height: 1.8;
}

.process-list {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #303436;
}

.process-list li {
  min-height: 170px;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  border-bottom: 1px solid #303436;
}

.process-list li > span {
  padding-top: 7px;
  color: var(--gold-bright);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .15em;
}

.process-list h3 {
  margin: 0 0 12px;
  font-size: clamp(26px, 2.7vw, 42px);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -.01em;
  text-transform: uppercase;
}

.process-list p {
  max-width: 600px;
  margin: 0;
  color: #858c8f;
  font-size: 13px;
  line-height: 1.7;
}

.pride {
  min-height: 730px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
}

.pride::before {
  content: "";
  width: 36%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: var(--gold);
}

.pride__outline {
  position: absolute;
  right: -2vw;
  top: 50%;
  color: transparent;
  font-size: clamp(100px, 15vw, 245px);
  font-weight: 700;
  letter-spacing: -.07em;
  line-height: .8;
  white-space: nowrap;
  font-family: var(--font-display);
  -webkit-text-stroke: 1px rgba(8,9,8,.23);
  transform: translateY(-50%) rotate(-90deg) translateY(32%);
  transform-origin: center;
}

.pride__inner {
  padding: 120px 0;
  position: relative;
  z-index: 2;
}

.kicker--gold {
  color: #656159;
}

.pride h2 {
  max-width: 1100px;
  margin-top: 42px;
}

.pride h2 em {
  display: block;
}

.pride__copy {
  width: min(720px, 58%);
  margin: 52px 0 0 auto;
  padding: 34px 38px;
  position: relative;
  background: var(--paper);
  border: 1px solid #9f988c;
  border-top: 4px solid var(--gold);
  box-shadow: 12px 12px 0 var(--ink);
}

.pride__copy > p:first-child {
  margin: 0;
  color: #5d6263;
  font-size: 16px;
  line-height: 1.75;
}

.pride__signoff {
  margin: 34px 0 0;
  padding-top: 18px;
  color: #767a7b;
  border-top: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.pride__signoff strong {
  color: var(--gold);
  font-weight: 700;
}

.ledger {
  padding: clamp(110px, 11vw, 180px) 0;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(8,9,8,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8,9,8,.035) 1px, transparent 1px),
    var(--paper-deep);
  background-size: 88px 88px;
  border-top: 1px solid #948d81;
  border-bottom: 1px solid #948d81;
}

.ledger::before {
  content: "5.0";
  position: absolute;
  right: -2vw;
  top: -45px;
  color: transparent;
  font-family: var(--font-display);
  font-size: clamp(180px, 25vw, 390px);
  font-style: italic;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(8,9,8,.09);
  pointer-events: none;
}

.ledger__inner {
  position: relative;
  z-index: 1;
}

.ledger__heading {
  margin-bottom: 74px;
}

.ledger__heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(58px, 6.1vw, 98px);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: .9;
  text-transform: uppercase;
}

.ledger__heading h2 em {
  color: var(--gold);
  font-weight: 500;
}

.ledger-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.ledger-card {
  min-height: 410px;
  padding: 31px 32px 29px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background:
    repeating-linear-gradient(to bottom, transparent 0, transparent 37px, rgba(8,9,8,.035) 38px),
    var(--white);
  border: 1px solid #8f887b;
  box-shadow: 9px 9px 0 rgba(8,9,8,.14);
}

.ledger-card::before {
  content: "";
  height: 5px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background: var(--gold);
}

.ledger-card::after {
  content: "";
  width: 38px;
  height: 5px;
  position: absolute;
  top: 0;
  right: 0;
  background: var(--red);
}

.ledger-card__header {
  padding-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  color: #6e695f;
  border-bottom: 1px solid #aaa294;
  font-family: var(--font-mono);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.ledger-card__stars {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: .13em;
}

.ledger-card blockquote {
  max-width: 82%;
  margin: 43px 0 50px;
  position: relative;
  z-index: 2;
}

.ledger-card blockquote::before {
  content: "“";
  position: absolute;
  left: -5px;
  top: -43px;
  color: rgba(170,138,78,.2);
  font-family: Georgia, serif;
  font-size: 86px;
  line-height: 1;
}

.ledger-card blockquote p {
  margin: 0;
  position: relative;
  color: #22221f;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.55;
}

.ledger-card--short blockquote p {
  max-width: 510px;
  font-family: var(--font-display);
  font-size: clamp(32px, 3.4vw, 52px);
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: .94;
  text-transform: uppercase;
}

.ledger-card__footer {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 2;
  border-top: 1px solid #aaa294;
}

.ledger-card__footer > div {
  display: grid;
  gap: 4px;
}

.ledger-card__footer strong {
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 500;
  letter-spacing: .09em;
  line-height: 1;
}

.ledger-card__footer span,
.ledger-card__footer a {
  color: #777166;
  font-family: var(--font-mono);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.ledger-card__footer a {
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  transition: color 160ms ease;
}

.ledger-card__footer a:hover {
  color: var(--red);
}

.ledger-card__stamp {
  width: 82px;
  height: 82px;
  position: absolute;
  z-index: 1;
  right: 31px;
  top: 94px;
  display: grid;
  place-content: center;
  color: var(--red);
  border: 3px double var(--red);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-8deg);
  opacity: .62;
}

.ledger-card__stamp small {
  font-size: 6px;
  letter-spacing: .16em;
}

.contact {
  padding-top: clamp(120px, 12vw, 190px);
  padding-bottom: clamp(120px, 12vw, 190px);
  display: grid;
  grid-template-columns: minmax(340px, .8fr) minmax(520px, 1.2fr);
  align-items: start;
  gap: clamp(70px, 10vw, 180px);
}

.contact h2 {
  margin-top: 52px;
}

.contact h2 em {
  display: block;
}

.contact__heading > p {
  max-width: 520px;
  margin: 36px 0 0;
  color: #606465;
  font-size: 15px;
  line-height: 1.75;
}

.contact__smallprint {
  margin-top: 55px;
  padding-top: 20px;
  display: grid;
  gap: 7px;
  border-top: 1px solid var(--line);
}

.contact__smallprint span {
  color: #8c8f8f;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.contact__smallprint strong {
  font-size: 17px;
  font-weight: 400;
}

.quote-form {
  padding: clamp(34px, 4vw, 62px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 27px 22px;
  background: var(--white);
  border: 1px solid #a8a194;
  border-top: 5px solid var(--gold);
}

.form-heading {
  margin-bottom: 14px;
  padding-bottom: 23px;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.form-heading strong {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.form-heading span {
  color: #8d9090;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.quote-form label {
  display: grid;
  gap: 8px;
}

.quote-form label > span {
  color: #727677;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 15px 0;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid #c9c9c4;
  border-radius: 0;
  outline: none;
  background: transparent;
  resize: vertical;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: var(--gold-bright);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #a0a2a2;
}

.quote-form__wide {
  grid-column: 1 / -1;
}

.upload-field {
  min-height: 105px;
  margin-top: 4px;
  padding: 19px 20px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 16px !important;
  border: 1px dashed #b9bfc0;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.upload-field:hover {
  border-color: var(--gold-bright);
  background: #eee7da;
}

.upload-field input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.upload-field__icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--ink) !important;
  background: var(--gold-bright);
  font-family: var(--font-display) !important;
  font-size: 21px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}

.upload-field__copy {
  display: grid;
  gap: 5px;
}

.upload-field__copy strong {
  color: #303334;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: none;
  font-family: var(--font-mono);
}

.upload-field__copy small {
  color: #929595;
  font-size: 9px;
  letter-spacing: 0;
  text-transform: none;
}

.form-footer {
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 25px;
}

.form-note {
  max-width: 190px;
  margin: 0;
  color: #969999;
  font-size: 9px;
  line-height: 1.5;
}

.quote-form__submit:disabled {
  opacity: .7;
  cursor: wait;
  transform: none;
}

.site-footer {
  color: white;
  background: var(--ink);
}

.site-footer__inner {
  min-height: 280px;
  padding: 55px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr auto;
  gap: 40px;
  align-items: start;
}

.brand--footer .brand__wordmark--black {
  opacity: 0;
}

.brand--footer .brand__wordmark--ivory {
  opacity: 1;
}

.brand--footer .brand__descriptor {
  color: var(--white);
  border-color: #4d4942;
}

.footer-statement {
  margin: 0;
  justify-self: end;
  color: #c3c7c8;
  font-size: clamp(20px, 2.1vw, 32px);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.footer-statement span {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: none;
}

.footer-meta {
  padding-top: 20px;
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  color: #696e70;
  border-top: 1px solid #292d2f;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

@media (max-width: 1180px) {
  :root {
    --page: min(100% - 48px, 1080px);
  }

  .site-nav {
    gap: 22px;
  }

  .hero__photo {
    object-position: 62% center;
  }

  .hero h1 {
    font-size: clamp(88px, 13.5vw, 145px);
  }

  .intro__headline {
    grid-template-columns: 1fr 270px;
    gap: 50px;
  }

  .specialism-card {
    min-height: 500px;
  }

  .custom-feature {
    grid-template-columns: 1fr 1fr;
  }

  .workshop__inner {
    gap: 70px;
  }

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

  .contact__heading {
    max-width: 850px;
  }

  .quote-form {
    width: min(850px, 100%);
    margin-left: auto;
  }
}

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

  .site-header {
    backdrop-filter: none;
  }

  .utility-bar {
    padding-inline: 17px;
  }

  .utility-bar p:first-child {
    display: none;
  }

  .utility-bar {
    justify-content: flex-end;
  }

  .site-header__inner {
    min-height: 76px;
  }

  .brand {
    gap: 13px;
  }

  .brand__mark {
    width: 44px;
    height: 44px;
  }

  .brand__wordmark-frame {
    width: 155px;
  }

  .brand__descriptor {
    min-height: 21px;
    padding-left: 13px;
    font-size: 7px;
  }

  .brand__type strong {
    font-size: 17px;
  }

  .brand__type small {
    font-size: 8px;
  }

  .brand__type > span {
    height: 21px;
  }

  .nav-toggle {
    display: block;
  }

  .site-header .brand {
    position: relative;
    z-index: 43;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 42;
    padding: 118px 24px 30px;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    color: var(--white);
    background:
      linear-gradient(rgba(197,164,95,.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(197,164,95,.04) 1px, transparent 1px),
      radial-gradient(circle at 100% 0, rgba(170,138,78,.2), transparent 19rem),
      var(--ink);
    background-size: 72px 72px, 72px 72px, auto, auto;
    border-top: 5px solid var(--gold);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 220ms var(--ease), visibility 180ms ease;
    counter-reset: mobile-nav;
  }

  .site-nav::before {
    content: "AJS / MENU";
    min-height: 42px;
    display: flex;
    align-items: flex-start;
    color: var(--gold-bright);
    border-bottom: 1px solid #34322d;
    font-family: var(--font-mono);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .2em;
  }

  .site-nav::after {
    content: "HYDE LANE / FARNHAM / GU10 2LP";
    margin-top: auto;
    padding-top: 23px;
    color: #8d887e;
    border-top: 1px solid #34322d;
    font-family: var(--font-mono);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .17em;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a:not(.nav-cta) {
    min-height: 70px;
    padding: 13px 0;
    display: flex;
    align-items: center;
    color: var(--white);
    border-bottom: 1px solid #34322d;
    font-family: var(--font-display);
    font-size: clamp(36px, 10.5vw, 50px);
    font-weight: 500;
    letter-spacing: .015em;
    line-height: .9;
  }

  .site-nav a:not(.nav-cta)::before {
    content: "0" counter(mobile-nav);
    width: 43px;
    flex: 0 0 43px;
    color: var(--gold-bright);
    font-family: var(--font-mono);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .12em;
    counter-increment: mobile-nav;
  }

  .site-nav a[aria-current="page"] {
    color: var(--gold-pale);
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .nav-cta {
    min-height: 60px;
    margin-top: 24px;
    padding-inline: 20px;
    justify-content: space-between;
    color: var(--ink);
    background: var(--gold-bright);
    border-left: 6px solid var(--red);
    font-size: 9px;
  }

  .site-nav .nav-cta span {
    color: var(--ink);
  }

  body.menu-open .brand__mark {
    filter: brightness(0) invert(1);
  }

  body.menu-open .brand__wordmark--black {
    opacity: 0;
  }

  body.menu-open .brand__wordmark--ivory {
    opacity: 1;
  }

  body.menu-open .brand__descriptor {
    color: var(--white);
    border-color: #5b574f;
  }

  body.menu-open .brand__type {
    color: var(--white);
  }

  body.menu-open .brand__type > span {
    background: #5b574f;
  }

  body.menu-open .brand__type small {
    color: #aaa398;
  }

  .nav-toggle[aria-expanded="true"] span:not(.sr-only) {
    height: 2px;
    background: var(--white);
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    top: 22px;
    transform: rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    top: 22px;
    transform: rotate(-45deg);
  }

  .hero {
    min-height: 760px;
  }

  .hero__photo {
    object-position: 63% center;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(5,6,5,.91), rgba(5,6,5,.3)),
      linear-gradient(to top, rgba(5,6,5,.84), transparent 64%),
      linear-gradient(145deg, rgba(170,138,78,.13), transparent 52%);
  }

  .hero__content {
    padding-bottom: 150px;
  }

  .hero h1 {
    font-size: clamp(74px, 18vw, 118px);
  }

  .hero__intro {
    max-width: 540px;
  }

  .hero__rail {
    display: none;
  }

  .hero__stamp {
    right: 17px;
  }

  .quick-strip {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .quick-strip::-webkit-scrollbar {
    display: none;
  }

  .quick-strip__inner {
    width: max-content;
    min-width: 100%;
    grid-template-columns: repeat(5, minmax(170px, 1fr));
  }

  .quick-strip p:first-child {
    padding-left: 22px;
  }

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

  .intro__note {
    width: min(300px, 80%);
    margin-left: auto;
  }

  .intro__body {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

  .proof-grid div:nth-child(3) {
    border-left: 0;
  }

  .proof-grid div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .specialism-card {
    min-height: 430px;
  }

  .specialism-card:hover {
    transform: none;
  }

  .custom-feature {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .custom-feature__image,
  .custom-feature {
    min-height: 0;
  }

  .custom-feature__image {
    min-height: 560px;
  }

  .custom-feature__copy {
    min-height: 620px;
  }

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

  .process-list {
    margin-top: 0;
  }

  .pride {
    min-height: 720px;
  }

  .pride::before {
    width: 14px;
  }

  .pride__outline {
    display: none;
  }

  .pride__copy {
    width: min(620px, 100%);
    padding: 30px;
    transform: none;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .form-heading,
  .quote-form__wide {
    grid-column: auto;
  }

  .form-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__inner {
    min-height: 340px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .footer-statement {
    justify-self: start;
  }

  .footer-meta {
    grid-column: auto;
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 520px) {
  .brand--wordmark {
    gap: 0;
  }

  .brand__wordmark-frame {
    width: 162px;
  }

  .brand__descriptor {
    display: none;
  }

  .brand__type small,
  .brand__type > span {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero__photo {
    object-position: 62% center;
  }

  .hero__watermark {
    width: 190px;
    right: -35px;
  }

  .hero__content {
    padding-top: 72px;
    padding-bottom: 148px;
  }

  .kicker {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    line-height: 1.6;
  }

  .hero h1 {
    font-size: clamp(66px, 20vw, 86px);
  }

  .hero__intro {
    margin-top: 34px;
    font-size: 15px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero__stamp {
    min-width: 210px;
    min-height: 96px;
    padding: 18px 21px;
  }

  .intro h2,
  .section-heading h2,
  .custom-feature h2,
  .workshop h2,
  .pride h2,
  .contact h2 {
    font-size: clamp(46px, 13.5vw, 66px);
  }

  .intro__note {
    width: 88%;
  }

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

  .proof-grid div,
  .proof-grid div:first-child {
    min-height: 130px;
    padding: 24px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-grid div:last-child {
    border-bottom: 0;
  }

  .proof-grid dd {
    margin-top: 14px;
  }

  .specialism-card {
    min-height: 390px;
    padding: 30px 27px;
  }

  .custom-feature__image {
    min-height: 400px;
  }

  .custom-feature__copy {
    min-height: 590px;
    padding: 54px 26px;
  }

  .custom-feature__image > p {
    right: 16px;
    bottom: 16px;
  }

  .process-list li {
    grid-template-columns: 38px 1fr;
  }

  .pride {
    min-height: 670px;
  }

  .quote-form {
    padding: 30px 22px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .form-footer .button {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}

/* Find us / motorist's atlas */

.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.contact__smallprint .line-link {
  width: fit-content;
  margin-top: 13px;
}

.map-body {
  background:
    linear-gradient(rgba(8,9,8,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8,9,8,.025) 1px, transparent 1px),
    var(--paper);
  background-size: 88px 88px;
}

.atlas {
  overflow: hidden;
}

.atlas__intro {
  padding-top: clamp(80px, 8vw, 130px);
  padding-bottom: clamp(100px, 10vw, 170px);
  display: grid;
  grid-template-columns: minmax(360px, .68fr) minmax(620px, 1.32fr);
  align-items: start;
  gap: clamp(60px, 7vw, 120px);
}

.atlas__heading {
  min-width: 0;
  position: sticky;
  top: 155px;
}

.atlas__edition {
  margin: clamp(62px, 7vw, 105px) 0 18px;
  color: #7a756a;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.atlas h1 {
  max-width: 650px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(78px, 8.4vw, 136px);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: .78;
  text-transform: uppercase;
}

.atlas h1 em {
  color: var(--gold);
  font-weight: 500;
}

.atlas__lede {
  max-width: 510px;
  margin: 44px 0 0;
  color: #5c5952;
  font-size: 15px;
  line-height: 1.75;
}

.atlas__address {
  margin-top: 46px;
  padding: 25px 27px 23px;
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px 24px;
  background: var(--white);
  border: 1px solid #a79f91;
  border-top: 5px solid var(--gold);
  box-shadow: 9px 9px 0 var(--ink);
}

.atlas__address::after {
  content: "";
  width: 31px;
  height: 5px;
  position: absolute;
  top: -5px;
  right: 0;
  background: var(--red);
}

.atlas__address > p,
.atlas__address > span {
  margin: 0;
  color: #827c70;
  font-family: var(--font-mono);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.atlas__address address {
  font-style: normal;
  font-size: 13px;
  line-height: 1.55;
}

.atlas__address address strong {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1;
  text-transform: uppercase;
}

.atlas__address > span {
  grid-column: 2;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.atlas__actions {
  margin-top: 46px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.atlas-sheet {
  margin: 0;
  position: relative;
  color: var(--ink);
  background: #efe7d5;
  border: 1px solid #7e776a;
  box-shadow: 22px 22px 0 rgba(8,9,8,.12);
  transform: rotate(.22deg);
  transform-origin: center top;
}

.atlas-sheet::before {
  content: "07";
  position: absolute;
  z-index: 5;
  right: 22px;
  top: 75px;
  color: rgba(8,9,8,.09);
  font-family: var(--font-display);
  font-size: 95px;
  font-style: italic;
  line-height: 1;
  pointer-events: none;
}

.atlas-sheet__masthead {
  min-height: 76px;
  padding: 15px 21px;
  display: grid;
  grid-template-columns: 82px 1fr auto;
  align-items: center;
  color: var(--white);
  background: var(--ink);
  border-bottom: 6px solid var(--red);
}

.atlas-sheet__masthead > span {
  width: 54px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 25px;
  font-style: italic;
  transform: skew(-8deg);
}

.atlas-sheet__masthead p,
.atlas-sheet__masthead strong {
  margin: 0;
  text-transform: uppercase;
}

.atlas-sheet__masthead p {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 38px);
  letter-spacing: .02em;
}

.atlas-sheet__masthead strong {
  color: var(--gold-pale);
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: .17em;
}

.atlas-sheet__key {
  min-height: 58px;
  padding: 0 22px;
  display: grid;
  grid-template-columns: repeat(4, auto);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #938b7d;
}

.atlas-sheet__key p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #5e594f;
  font-family: var(--font-mono);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.key-dot {
  width: 9px;
  height: 9px;
  display: inline-block;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.key-dot--gold {
  background: var(--gold);
}

.key-line {
  width: 19px;
  height: 2px;
  display: inline-block;
  background: var(--ink);
}

.key-line--red {
  height: 3px;
  background: var(--red);
}

.atlas-map {
  min-height: 750px;
  padding: 34px 0 0 34px;
  position: relative;
  background: #d6cdbb;
}

.atlas-map__letters,
.atlas-map__numbers {
  position: absolute;
  z-index: 4;
  display: grid;
  color: #514d45;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
}

.atlas-map__letters {
  height: 34px;
  top: 0;
  right: 0;
  left: 34px;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  text-align: center;
}

.atlas-map__numbers {
  width: 34px;
  top: 34px;
  bottom: 0;
  left: 0;
  grid-template-rows: repeat(5, 1fr);
  align-items: center;
  text-align: center;
}

.atlas-map__canvas {
  height: 716px;
  position: relative;
  overflow: hidden;
  background: #cfc5af;
  border-top: 1px solid #81796b;
  border-left: 1px solid #81796b;
}

.atlas-map iframe,
.atlas-map__fallback {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.atlas-map iframe {
  z-index: 1;
  border: 0;
  background: #ded5c2;
  filter: grayscale(1) sepia(.44) saturate(.76) contrast(1.12) brightness(.97);
}

.atlas-map__fallback {
  z-index: 0;
  display: grid;
  place-items: center;
  color: #777063;
  background: #d9cfba;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.atlas-sheet figcaption {
  min-height: 49px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #6b655a;
  border-top: 1px solid #938b7d;
  font-family: var(--font-mono);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .atlas__intro {
    grid-template-columns: 1fr;
  }

  .atlas__heading {
    max-width: 820px;
    position: static;
  }

  .atlas h1 {
    font-size: clamp(86px, 13vw, 132px);
  }

  .atlas__address {
    max-width: 560px;
  }

  .atlas-sheet {
    width: min(920px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

}

@media (max-width: 820px) {
  .site-nav a[aria-current="page"]::after {
    display: none;
  }

  .atlas__intro {
    padding-top: 70px;
    gap: 78px;
  }

  .atlas-map {
    min-height: 650px;
  }

  .atlas-map__canvas {
    height: 616px;
  }

  .atlas-sheet__key {
    grid-template-columns: repeat(2, auto);
    justify-content: start;
    gap: 10px 32px;
    padding-top: 13px;
    padding-bottom: 13px;
  }

}

@media (max-width: 520px) {
  .atlas__intro {
    padding-top: 54px;
    padding-bottom: 100px;
  }

  .atlas__edition {
    margin-top: 52px;
  }

  .atlas h1 {
    font-size: clamp(66px, 20vw, 91px);
  }

  .atlas__lede {
    margin-top: 34px;
    font-size: 14px;
  }

  .atlas__address {
    grid-template-columns: 1fr;
    padding: 23px 21px;
  }

  .atlas__address > span {
    grid-column: auto;
  }

  .atlas__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .atlas__actions .button {
    width: 100%;
  }

  .atlas-sheet {
    width: calc(100% + 16px);
    margin-left: -8px;
  }

  .atlas-sheet::before {
    top: 94px;
    font-size: 70px;
  }

  .atlas-sheet__masthead {
    min-height: 94px;
    grid-template-columns: 60px 1fr;
  }

  .atlas-sheet__masthead > span {
    width: 47px;
    height: 40px;
  }

  .atlas-sheet__masthead p {
    font-size: 23px;
  }

  .atlas-sheet__masthead strong {
    grid-column: 2;
    margin-top: -12px;
  }

  .atlas-sheet__key {
    gap: 10px 18px;
  }

  .atlas-map {
    min-height: 520px;
    padding-top: 29px;
    padding-left: 29px;
  }

  .atlas-map__letters {
    height: 29px;
    left: 29px;
  }

  .atlas-map__numbers {
    width: 29px;
    top: 29px;
  }

  .atlas-map__canvas {
    height: 491px;
  }

  .atlas-sheet figcaption {
    min-height: 66px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
  }

}

@media (max-width: 900px) {
  .ledger-grid {
    grid-template-columns: 1fr;
  }

  .ledger-card blockquote {
    max-width: 86%;
  }
}

@media (max-width: 520px) {
  .ledger {
    padding-top: 95px;
    padding-bottom: 105px;
  }

  .ledger::before {
    top: 15px;
    font-size: 180px;
  }

  .ledger__heading {
    margin-bottom: 52px;
  }

  .ledger__heading h2 {
    font-size: clamp(52px, 15vw, 70px);
  }

  .ledger-card {
    min-height: 390px;
    padding: 28px 23px 25px;
  }

  .ledger-card__header {
    gap: 15px;
  }

  .ledger-card__stars {
    font-size: 12px;
  }

  .ledger-card blockquote {
    max-width: 100%;
    margin-top: 49px;
    margin-bottom: 44px;
  }

  .ledger-card blockquote p {
    font-size: 17px;
  }

  .ledger-card--short blockquote p {
    font-size: clamp(34px, 11vw, 48px);
  }

  .ledger-card__stamp {
    right: 17px;
    top: 82px;
    opacity: .13;
  }

  .ledger-card__footer {
    gap: 15px;
  }
}
