@font-face {
  font-family: "Newsreader";
  src: url("../fonts/Newsreader-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --ink: #102a33;
  --ink-soft: #27444b;
  --paper: #f5eddd;
  --paper-deep: #e9dcc4;
  --paper-light: #fffaf0;
  --clay: #b84631;
  --clay-dark: #8f2f20;
  --sage: #71866e;
  --sage-pale: #dce4d6;
  --sky: #d8edf0;
  --gold: #d9a441;
  --line: rgba(16, 42, 51, 0.2);
  --line-strong: rgba(16, 42, 51, 0.42);
  --shadow: 0 24px 60px rgba(16, 42, 51, 0.13);
  --serif: "Newsreader", Georgia, serif;
  --sans: "Plus Jakarta Sans", Arial, sans-serif;
  --shell: min(1180px, calc(100vw - 48px));
  --radius: 1.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

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

::selection {
  color: var(--paper-light);
  background: var(--clay-dark);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: #fff;
  background: var(--ink);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.75rem;
  height: 1px;
  content: "";
  background: currentColor;
}

.display {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.3rem, 8vw, 7.8rem);
  font-weight: 470;
  line-height: 0.88;
  letter-spacing: -0.055em;
}

.section-title {
  max-width: 14ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.45rem, 5.5vw, 5.2rem);
  font-weight: 470;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.page-title {
  max-width: 10ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 10vw, 9.4rem);
  font-weight: 460;
  line-height: 0.84;
  letter-spacing: -0.065em;
}

.lead {
  max-width: 680px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  line-height: 1.65;
}

.fine-print {
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.55;
}

.button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.75rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

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

.button-dark:hover {
  background: var(--clay-dark);
}

.button-clay {
  color: #fff;
  background: var(--clay-dark);
}

.button-clay:hover {
  background: var(--ink);
}

.button-line {
  border-color: var(--line-strong);
  color: var(--ink);
  background: transparent;
}

.button-line:hover {
  border-color: var(--ink);
  background: var(--paper-light);
}

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

.button-light:hover {
  background: var(--sky);
}

.button svg,
.text-link svg {
  flex: 0 0 auto;
  width: 1.05rem;
  height: 1.05rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 750;
  text-decoration: none;
}

.text-link:hover {
  color: var(--clay-dark);
}

/* Masthead */
.masthead {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid var(--line-strong);
  background: var(--paper);
}

.masthead-top {
  min-height: 8.3rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}

.masthead-contact {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4;
}

.masthead-contact a {
  text-decoration: none;
}

.masthead-contact a:hover {
  color: var(--clay-dark);
}

.brand {
  display: inline-flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  color: var(--ink);
  text-align: center;
  text-decoration: none;
}

.brand-word {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.9rem);
  font-weight: 560;
  line-height: 0.88;
  letter-spacing: -0.045em;
}

.brand-note {
  margin-top: 0.45rem;
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.route-signature {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0.65rem;
  color: var(--clay-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route-signature::before {
  width: 2rem;
  height: 2rem;
  border: 1px solid currentColor;
  border-radius: 50% 50% 50% 0;
  content: "A";
  display: grid;
  place-items: center;
  transform: rotate(-45deg);
  font-family: var(--serif);
  font-size: 1rem;
}

.route-signature::after {
  content: "Hwy 29";
}

.desktop-nav {
  border-top: 1px solid var(--line);
}

.desktop-nav-inner {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 4vw, 3.3rem);
  min-height: 3.65rem;
}

.desktop-nav a {
  position: relative;
  padding: 1rem 0;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.6rem;
  left: 0;
  height: 2px;
  content: "";
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

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

.menu-toggle {
  display: none;
  min-width: 3.15rem;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.menu-toggle svg {
  width: 1.35rem;
  height: 1.35rem;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu {
  position: fixed;
  z-index: 100;
  inset: 0;
  overflow-y: auto;
  color: var(--paper-light);
  background-color: var(--ink);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu-brand {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.menu-close {
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.mobile-menu-inner {
  width: min(760px, calc(100vw - 40px));
  min-height: calc(100vh - 6rem);
  margin: 0 auto;
  padding: clamp(3rem, 8vh, 6rem) 0 2rem;
}

.mobile-nav {
  display: grid;
}

.mobile-nav a {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  font-family: var(--serif);
  font-size: clamp(2.25rem, 10vw, 5rem);
  line-height: 1;
  text-decoration: none;
}

.mobile-nav a span:first-child {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.mobile-nav a span:last-child {
  font-family: var(--sans);
  font-size: 1rem;
}

.mobile-nav a:hover,
.mobile-nav a[aria-current="page"] {
  color: #ffd6c9;
}

.mobile-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.8rem;
  margin-top: 2rem;
  font-size: 0.8rem;
  font-weight: 700;
}

/* Home */
.atlas-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-strong);
  background-color: var(--paper);
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
}

.atlas-hero::before,
.atlas-hero::after {
  position: absolute;
  z-index: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.atlas-hero::before {
  width: 590px;
  height: 590px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.atlas-hero::after {
  width: 420px;
  height: 420px;
  top: 50%;
  left: 50%;
  border-style: dashed;
  transform: translate(-50%, -50%);
}

.atlas-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 760px;
  display: grid;
  place-items: center;
  padding: 8rem 0 7rem;
}

.atlas-copy {
  position: relative;
  z-index: 3;
  width: min(920px, 78vw);
  text-align: center;
}

.atlas-copy .display {
  max-width: 11ch;
  margin-inline: auto;
}

.atlas-copy .lead {
  max-width: 610px;
  margin: 1.7rem auto 0;
}

.atlas-copy .button-row {
  justify-content: center;
  margin-top: 2rem;
}

.map-photo {
  position: absolute;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border: 8px solid var(--paper-light);
  box-shadow: var(--shadow);
}

.map-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-photo-one {
  top: 3.3rem;
  right: -1.5rem;
  width: clamp(165px, 20vw, 260px);
  aspect-ratio: 0.78;
  transform: rotate(2.5deg);
}

.map-photo-one img {
  object-position: 50% 65%;
}

.map-photo-two {
  bottom: 2.5rem;
  left: -1.2rem;
  width: clamp(170px, 21vw, 280px);
  aspect-ratio: 1.1;
  transform: rotate(-3deg);
}

.map-photo-two img {
  object-position: 52% 50%;
}

.map-label {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  padding: 0.4rem 0.55rem;
  color: var(--paper-light);
  background: var(--ink);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-coordinate {
  border-bottom: 1px solid var(--line-strong);
  background: var(--ink);
  color: #fff;
}

.coordinate-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1.2fr;
}

.coordinate-item {
  min-width: 0;
  padding: 1.5rem clamp(1rem, 2.5vw, 2rem);
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.coordinate-item:last-child {
  border-right: 0;
}

.coordinate-item span {
  display: block;
  margin-bottom: 0.32rem;
  color: #bcd2d5;
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coordinate-item a,
.coordinate-item address {
  overflow-wrap: anywhere;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 650;
  text-decoration: none;
}

.coordinate-item a:hover {
  color: #ffd6c9;
}

.journal-section {
  padding: clamp(5rem, 9vw, 9rem) 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 3rem;
  margin-bottom: 4rem;
}

.service-ledger {
  border-top: 1px solid var(--line-strong);
}

.ledger-row {
  position: relative;
  display: grid;
  grid-template-columns: 5rem minmax(180px, 0.7fr) minmax(280px, 1.3fr) 3rem;
  align-items: center;
  gap: clamp(1.25rem, 4vw, 4.5rem);
  min-height: 10.5rem;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--line-strong);
  text-decoration: none;
  transition: padding 180ms ease, background 180ms ease;
}

.ledger-row::before {
  position: absolute;
  z-index: -1;
  inset: 0 -1.25rem;
  content: "";
  background: var(--paper-light);
  opacity: 0;
  transition: opacity 180ms ease;
}

.ledger-row:hover {
  padding-right: 1rem;
  padding-left: 1rem;
}

.ledger-row:hover::before {
  opacity: 1;
}

.ledger-num {
  align-self: start;
  padding-top: 0.4rem;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.ledger-row h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.035em;
}

.ledger-row p {
  max-width: 570px;
  margin: 0;
  color: var(--ink-soft);
}

.ledger-arrow {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-size: 1.15rem;
}

.image-note {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
  align-items: stretch;
  color: #fff;
  background: var(--ink);
}

.image-note figure {
  min-height: 580px;
  margin: 0;
  overflow: hidden;
}

.image-note figure img {
  height: 100%;
  object-fit: cover;
}

.image-note-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
  padding: clamp(2.5rem, 6vw, 6rem);
}

.image-note-copy .section-title {
  max-width: 9ch;
}

.image-note-copy p {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  color: #d5e0df;
}

.folio-index {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.folio-index div {
  padding: 1rem 0.75rem 0 0;
}

.folio-index span {
  display: block;
  color: #abc0c2;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.folio-index strong {
  display: block;
  margin-top: 0.25rem;
  color: #fff;
  font-size: 0.78rem;
}

.work-note {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--sky);
}

.work-note::after {
  position: absolute;
  right: -8rem;
  bottom: -15rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(16, 42, 51, 0.24);
  border-radius: 50%;
  content: "";
}

.work-note-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.work-note-number {
  font-family: var(--serif);
  font-size: clamp(8rem, 18vw, 16rem);
  line-height: 0.7;
  letter-spacing: -0.08em;
  color: rgba(16, 42, 51, 0.14);
}

.work-note-copy .section-title {
  max-width: 12ch;
}

.work-note-copy p {
  max-width: 610px;
  margin: 1.5rem 0 2rem;
}

.closing-curve {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(5rem, 8vw, 7rem);
  color: #fff;
  background: var(--clay-dark);
}

.closing-curve::before {
  position: absolute;
  top: -20vw;
  left: 50%;
  width: 130vw;
  height: 32vw;
  border-radius: 50%;
  content: "";
  background: var(--paper);
  transform: translateX(-50%);
}

.closing-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 3rem;
  padding-top: clamp(3rem, 8vw, 7rem);
}

.closing-inner h2 {
  max-width: 10ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 470;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

/* Interior folios */
.folio-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(3.5rem, 7vw, 6rem);
  border-bottom: 1px solid var(--line-strong);
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
}

.folio-hero-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  align-items: end;
  gap: 4rem;
}

.folio-hero-copy .lead {
  margin-top: 2rem;
}

.folio-number {
  align-self: start;
  justify-self: end;
  color: rgba(16, 42, 51, 0.18);
  font-family: var(--serif);
  font-size: clamp(9rem, 20vw, 19rem);
  font-weight: 450;
  line-height: 0.62;
  letter-spacing: -0.08em;
}

.folio-picture {
  position: relative;
  width: var(--shell);
  margin: 0 auto;
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.folio-picture figure {
  margin: 0;
  aspect-ratio: 2.15;
  overflow: hidden;
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--paper-deep);
}

.folio-picture img {
  height: 100%;
  object-fit: cover;
}

.folio-picture figcaption {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  margin-top: 0.9rem;
  color: var(--ink-soft);
  font-size: 0.7rem;
  line-height: 1.5;
}

.folio-picture figcaption span:first-child {
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.entry-section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.entry-section + .entry-section {
  border-top: 1px solid var(--line-strong);
}

.entry-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 1.3fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.entry-intro .lead {
  max-width: 620px;
}

.editorial-rows {
  margin-top: 4rem;
  border-top: 1px solid var(--line-strong);
}

.editorial-row {
  display: grid;
  grid-template-columns: 5rem minmax(180px, 0.65fr) minmax(300px, 1.35fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  border-bottom: 1px solid var(--line-strong);
}

.editorial-row .row-code {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.editorial-row h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
}

.editorial-row p {
  max-width: 640px;
  margin: 0;
  color: var(--ink-soft);
}

.field-sample {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  color: #fff;
  background: var(--ink);
}

.field-sample-head {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
  padding: clamp(2.5rem, 6vw, 5.5rem);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.field-sample-head h2 {
  max-width: 8ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 470;
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.field-lines {
  margin: 0;
  padding: clamp(2.5rem, 6vw, 5.5rem);
  list-style: none;
}

.field-lines li {
  display: grid;
  grid-template-columns: minmax(120px, 0.35fr) 1fr;
  gap: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #d7e3e2;
}

.field-lines strong {
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.split-picture {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 640px;
}

.split-picture figure {
  margin: 0;
  overflow: hidden;
}

.split-picture img {
  height: 100%;
  object-fit: cover;
}

.split-picture-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 8vw, 8rem);
  background: var(--sage-pale);
}

.split-picture-copy p {
  max-width: 530px;
  margin: 1.5rem 0 0;
}

.split-picture-copy .button-row {
  margin-top: 2rem;
}

.margin-questions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 4rem;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}

.margin-question {
  min-width: 0;
  min-height: 250px;
  padding: 1.5rem;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.margin-question span {
  display: block;
  margin-bottom: 3rem;
  color: var(--clay-dark);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.margin-question h3 {
  margin: 0 0 0.75rem;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.margin-question p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.status-stamp {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
  color: var(--ink);
  background: var(--gold);
}

.stamp-title,
.stamp-copy {
  padding: clamp(2.5rem, 6vw, 5.5rem);
}

.stamp-title {
  border-right: 1px solid rgba(16, 42, 51, 0.32);
}

.stamp-title span {
  display: inline-flex;
  padding: 0.55rem 0.75rem;
  border: 2px solid var(--ink);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.stamp-title h2 {
  margin: 2rem 0 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.stamp-copy {
  display: flex;
  align-items: center;
}

.stamp-copy p {
  max-width: 650px;
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

.work-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 3rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
  list-style: none;
}

.work-list li {
  position: relative;
  min-height: 160px;
  padding: 2rem 2rem 2rem 4rem;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.work-list li::before {
  position: absolute;
  top: 2.15rem;
  left: 1.6rem;
  width: 1rem;
  height: 1rem;
  border: 1px solid var(--clay-dark);
  border-radius: 50%;
  content: "";
}

.work-list strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 530;
  line-height: 1;
}

.work-list span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.privacy-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding: 1.5rem;
  border: 1px solid var(--line-strong);
  background: var(--paper-light);
}

.privacy-note svg {
  width: 1.4rem;
  height: 1.4rem;
}

.privacy-note p {
  margin: 0;
}

/* Contact */
.contact-hero {
  padding: clamp(5rem, 10vw, 9rem) 0;
  color: #fff;
  background-color: var(--ink);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
}

.contact-hero .eyebrow {
  color: #d4e1e2;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  align-items: end;
  gap: 5rem;
}

.contact-hero .page-title {
  max-width: 9ch;
}

.contact-hero .lead {
  color: #d5e0df;
}

.direct-list {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.direct-item {
  display: block;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  text-decoration: none;
}

.direct-item span {
  display: block;
  margin-bottom: 0.3rem;
  color: #abc0c2;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.direct-item strong,
.direct-item address {
  display: block;
  overflow-wrap: anywhere;
  color: #fff;
  font-size: 0.94rem;
  font-style: normal;
  font-weight: 650;
}

a.direct-item:hover strong,
a.direct-item:hover address {
  color: #ffd6c9;
}

.composer-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--clay);
}

.composer-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1.2fr);
  gap: 4rem;
  margin-bottom: 3rem;
}

.composer-head h2 {
  max-width: 8ch;
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 470;
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.composer-head p {
  max-width: 650px;
  margin: 0;
  align-self: end;
  color: #fff5ef;
}

.composer {
  padding: clamp(1.25rem, 3vw, 2.25rem);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius);
  background: var(--paper-light);
  box-shadow: var(--shadow);
}

.composer-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  min-width: 0;
  grid-column: span 3;
}

.field.span-4 {
  grid-column: span 4;
}

.field.span-6 {
  grid-column: span 6;
}

.field.span-8 {
  grid-column: span 8;
}

.field.span-12 {
  grid-column: span 12;
}

.field label,
.field legend {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--ink);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  display: block;
  width: 100%;
  min-height: 3.15rem;
  border: 1px solid var(--line-strong);
  border-radius: 0.55rem;
  padding: 0.72rem 0.85rem;
  color: var(--ink);
  background: #fffdf8;
}

.field textarea {
  min-height: 9rem;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #62757a;
  opacity: 1;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--clay-dark);
  outline: 3px solid rgba(184, 70, 49, 0.23);
  outline-offset: 1px;
}

.composer-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.composer-actions p {
  max-width: 790px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.55;
}

.form-status {
  min-height: 1.5rem;
  margin: 1rem 0 0;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 650;
}

.form-status:empty {
  display: none;
}

.visit-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 460px;
}

.visit-strip figure {
  margin: 0;
  overflow: hidden;
}

.visit-strip img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 72%;
}

.visit-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 8vw, 8rem);
  background: var(--paper-deep);
}

.visit-copy p {
  max-width: 520px;
  margin: 1.5rem 0 2rem;
}

/* Footer */
.site-footer {
  color: #fff;
  background: var(--ink);
}

.footer-main {
  min-height: 170px;
  display: grid;
  grid-template-columns: minmax(170px, 0.6fr) minmax(280px, 1.25fr) minmax(320px, 1.15fr);
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 0;
}

.footer-brand {
  text-decoration: none;
}

.footer-brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 540;
  line-height: 0.9;
}

.footer-brand span {
  display: block;
  margin-top: 0.45rem;
  color: #abc0c2;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-contact {
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.5rem;
  font-size: 0.72rem;
  font-weight: 650;
}

.footer-contact a,
.footer-contact address {
  overflow-wrap: anywhere;
  font-style: normal;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #ffd6c9;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem 1.15rem;
}

.footer-nav a {
  color: #d5e0df;
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #abc0c2;
  font-size: 0.61rem;
  line-height: 1.5;
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 36px, 900px);
  }

  .atlas-copy {
    width: min(780px, 84vw);
  }

  .map-photo-one {
    right: -4rem;
  }

  .map-photo-two {
    left: -4rem;
  }

  .image-note,
  .field-sample,
  .status-stamp {
    grid-template-columns: 1fr 1fr;
  }

  .margin-questions {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: 0.6fr 1.4fr;
  }

  .footer-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .field {
    grid-column: span 6;
  }

  .field.span-4,
  .field.span-8 {
    grid-column: span 6;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .masthead-top {
    min-height: 5.6rem;
    grid-template-columns: 1fr auto;
  }

  .masthead-contact,
  .route-signature {
    display: none;
  }

  .brand {
    justify-self: start;
    align-items: flex-start;
    text-align: left;
  }

  .brand-word {
    font-size: 2.45rem;
  }

  .brand-note {
    font-size: 0.5rem;
  }

  .js .desktop-nav {
    display: none;
  }

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

  .desktop-nav-inner {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.25rem 1.25rem;
    padding: 0.5rem 0;
  }

  .atlas-hero,
  .atlas-hero-inner {
    min-height: auto;
  }

  .atlas-hero::before,
  .atlas-hero::after {
    display: none;
  }

  .atlas-hero-inner {
    display: flex;
    flex-direction: column;
    padding: 4.5rem 0 3rem;
  }

  .atlas-copy {
    width: 100%;
    text-align: left;
  }

  .atlas-copy .display,
  .atlas-copy .lead {
    margin-inline: 0;
  }

  .atlas-copy .button-row {
    justify-content: flex-start;
  }

  .map-photo {
    position: relative;
    inset: auto;
    width: 100%;
    border-width: 6px;
    box-shadow: none;
    transform: none;
  }

  .map-photo-one {
    margin-top: 3rem;
    aspect-ratio: 1.4;
  }

  .map-photo-two {
    width: 62%;
    margin: -2.2rem 0 0 auto;
    aspect-ratio: 1.05;
  }

  .coordinate-grid,
  .section-head,
  .work-note-grid,
  .closing-inner,
  .folio-hero-head,
  .entry-intro,
  .composer-head,
  .contact-hero-grid {
    grid-template-columns: 1fr;
  }

  .coordinate-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .coordinate-item:last-child {
    border-bottom: 0;
  }

  .section-head {
    align-items: start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .ledger-row {
    grid-template-columns: 3rem minmax(0, 1fr) 2.75rem;
    gap: 1rem;
  }

  .ledger-row p {
    grid-column: 2 / -1;
  }

  .ledger-num {
    grid-row: 1 / 3;
  }

  .image-note,
  .split-picture,
  .field-sample,
  .status-stamp,
  .visit-strip {
    grid-template-columns: 1fr;
  }

  .image-note figure {
    min-height: 380px;
  }

  .field-sample-head,
  .stamp-title {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .status-stamp .stamp-title {
    border-bottom-color: rgba(16, 42, 51, 0.3);
  }

  .split-picture {
    min-height: auto;
  }

  .split-picture figure,
  .visit-strip figure {
    min-height: 360px;
  }

  .folio-hero-head {
    gap: 3rem;
  }

  .folio-number {
    justify-self: start;
    font-size: 9rem;
  }

  .folio-picture figure {
    aspect-ratio: 1.25;
  }

  .editorial-row {
    grid-template-columns: 3rem minmax(0, 1fr);
    gap: 1rem;
  }

  .editorial-row p {
    grid-column: 2;
  }

  .margin-questions {
    grid-template-columns: 1fr 1fr;
  }

  .work-list {
    grid-template-columns: 1fr;
  }

  .composer-actions {
    grid-template-columns: 1fr;
  }

  .composer-actions .button {
    justify-self: start;
  }

  .footer-main {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-nav {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  :root {
    --shell: calc(100% - 24px);
  }

  .display {
    font-size: clamp(3.25rem, 16vw, 5rem);
  }

  .page-title {
    font-size: clamp(3.7rem, 18vw, 5.8rem);
  }

  .section-title {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

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

  .mobile-menu-inner {
    width: calc(100vw - 28px);
  }

  .mobile-nav a {
    grid-template-columns: 2rem minmax(0, 1fr) auto;
    font-size: clamp(2rem, 12vw, 3.5rem);
  }

  .map-photo-two {
    width: 74%;
  }

  .ledger-row {
    grid-template-columns: 2.3rem minmax(0, 1fr);
  }

  .ledger-arrow {
    display: none;
  }

  .ledger-row p {
    grid-column: 2;
  }

  .image-note figure,
  .split-picture figure,
  .visit-strip figure {
    min-height: 300px;
  }

  .folio-index {
    grid-template-columns: 1fr;
  }

  .folio-index div {
    padding: 0.8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .folio-picture figure {
    aspect-ratio: 0.95;
  }

  .folio-picture figcaption {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .field-lines li {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .margin-questions {
    grid-template-columns: 1fr;
  }

  .margin-question {
    min-height: auto;
  }

  .margin-question span {
    margin-bottom: 1.4rem;
  }

  .field,
  .field.span-4,
  .field.span-6,
  .field.span-8,
  .field.span-12 {
    grid-column: span 12;
  }

  .footer-contact,
  .footer-nav,
  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
