@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/fraunces-var.woff2") format("woff2");
}

@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/fonts/nunito-var.woff2") format("woff2");
}

@font-face {
  font-family: "Caveat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/caveat-400.woff2") format("woff2");
}

:root {
  --bone-paper: #f4e8d0;
  --aged-paper: #e7d3ad;
  --paper-white: #fbf3e2;
  --field-ink: #2c2115;
  --brown-ink: #5a4128;
  --rule: #785e3f;
  --bottle-green: #435943;
  --forest-dark: #263b31;
  --field-rust: #a94739;
  --field-rust-dark: #873328;
  --ochre: #c69a45;
  --faded-denim: #647f89;
  --soft-denim: #8fa9ac;
  --sage: #9caa89;
  --dusty-rose: #b77a72;
  --brass: #8a6a2e;
  --black: #17130e;
  --white: #fff;
  --material-shadow: 0 8px 22px rgba(44, 33, 21, 0.16);
  --shell: min(1180px, calc(100% - 40px));
  --reading: min(760px, calc(100% - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--field-ink);
  background-color: var(--bone-paper);
  background-image:
    linear-gradient(rgba(244, 232, 208, 0.7), rgba(244, 232, 208, 0.7)),
    url("/assets/paper-fiber.png");
  background-repeat: repeat;
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 9px 15px;
  transform: translateY(-160%);
  border: 2px solid var(--field-ink);
  border-radius: 10px;
  color: var(--paper-white);
  background: var(--bottle-green);
  font-weight: 800;
}

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

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

.site-header {
  position: relative;
  z-index: 20;
  padding-block: 18px;
  border-bottom: 1px solid rgba(120, 94, 63, 0.45);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 50px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  color: var(--field-ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.35px;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--field-ink);
  border-radius: 12px;
  background: var(--bottle-green);
  box-shadow: 0 2px 5px rgba(44, 33, 21, 0.18);
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--field-rust);
  font-family: "Nunito", sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2.4vw, 30px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  color: var(--brown-ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--field-rust);
}

.nav-links .nav-cta {
  min-height: 42px;
  padding: 9px 17px;
  border: 1.5px solid var(--field-ink);
  border-radius: 14px;
  color: var(--paper-white);
  background: var(--bottle-green);
  box-shadow: 0 2px 5px rgba(44, 33, 21, 0.18);
}

.catalog-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin: 0 0 18px;
  color: var(--field-rust);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.25;
  text-transform: uppercase;
}

.catalog-kicker::before,
.catalog-kicker::after {
  width: 22px;
  height: 1px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--field-ink);
  font-family: "Fraunces", Georgia, serif;
}

h1,
h2 {
  font-weight: 700;
  letter-spacing: -0.035em;
}

h3 {
  font-weight: 600;
  letter-spacing: -0.02em;
}

.catalog-hero {
  position: relative;
  padding: clamp(54px, 7vw, 96px) 0 clamp(70px, 9vw, 120px);
}

.catalog-hero::before {
  position: absolute;
  top: 40px;
  right: max(20px, calc((100vw - 1180px) / 2));
  width: 96px;
  height: 96px;
  border: 1px solid rgba(138, 106, 46, 0.42);
  border-radius: 50%;
  content: "";
  opacity: 0.55;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(410px, 0.97fr);
  gap: clamp(42px, 7vw, 88px);
  align-items: center;
}

.hero-copy h1 {
  max-width: 670px;
  margin-bottom: 23px;
  font-size: clamp(52px, 7.1vw, 88px);
  line-height: 0.96;
}

.hero-copy h1 span {
  display: block;
  color: var(--field-rust);
  font-weight: 400;
  font-style: italic;
}

.hero-lead {
  max-width: 600px;
  margin: 0 0 29px;
  color: var(--brown-ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.5;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 13px 23px;
  border: 1.5px solid var(--field-ink);
  border-radius: 15px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 3px 7px rgba(44, 33, 21, 0.18);
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.button::after {
  position: absolute;
  inset: 4px;
  border: 1px dashed currentColor;
  border-radius: 10px;
  content: "";
  opacity: 0.42;
  pointer-events: none;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(44, 33, 21, 0.22);
}

.button:active {
  transform: translateY(1px);
  box-shadow: 0 1px 3px rgba(44, 33, 21, 0.18);
}

.button-primary {
  color: var(--paper-white);
  background: var(--field-rust);
}

.button-primary:hover {
  background: var(--field-rust-dark);
}

.button-secondary {
  border-color: var(--rule);
  color: var(--field-ink);
  background: var(--paper-white);
}

.button-disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.button-disabled:hover,
.button-disabled:active {
  transform: none;
  box-shadow: 0 3px 7px rgba(44, 33, 21, 0.18);
}

.button-dark {
  color: var(--paper-white);
  background: var(--bottle-green);
}

.button-small {
  min-height: 44px;
  padding: 10px 17px;
  border-radius: 13px;
  font-size: 14px;
}

.hero-note {
  max-width: 520px;
  margin: 20px 0 0;
  color: var(--field-rust);
  font-family: "Fraunces", Georgia, serif;
  font-size: 14px;
  font-style: italic;
  line-height: 1.55;
}

.specimen-wrap {
  position: relative;
  width: min(100%, 510px);
  justify-self: end;
}

.specimen-card {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  border: 2px solid var(--field-ink);
  border-radius: 28px;
  background:
    linear-gradient(rgba(38, 59, 49, 0.16), rgba(38, 59, 49, 0.16)),
    url("/assets/paper-fiber.png"),
    var(--bottle-green);
  box-shadow: var(--material-shadow);
}

.specimen-card::before {
  position: absolute;
  z-index: 2;
  inset: 10px;
  border: 1px solid var(--ochre);
  border-radius: 19px;
  content: "";
  opacity: 0.75;
  pointer-events: none;
}

.specimen-card::after {
  position: absolute;
  z-index: 2;
  inset: 18px;
  border: 1px dashed rgba(231, 211, 173, 0.52);
  border-radius: 13px;
  content: "";
  pointer-events: none;
}

.specimen-number {
  position: absolute;
  z-index: 4;
  top: 28px;
  left: 30px;
  color: var(--aged-paper);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.specimen-card img {
  position: absolute;
  z-index: 1;
  right: -34px;
  bottom: 38px;
  width: auto;
  height: 92%;
  max-width: none;
  filter: drop-shadow(0 10px 14px rgba(16, 14, 9, 0.35));
}

.specimen-label {
  position: absolute;
  z-index: 5;
  right: 26px;
  bottom: 25px;
  left: 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
  padding: 17px 20px;
  border: 1.5px solid var(--field-ink);
  border-radius: 14px;
  background:
    linear-gradient(rgba(251, 243, 226, 0.84), rgba(251, 243, 226, 0.84)),
    url("/assets/paper-fiber.png"),
    var(--paper-white);
  box-shadow: 0 4px 10px rgba(44, 33, 21, 0.24);
}

.specimen-label strong,
.specimen-label span {
  display: block;
}

.specimen-label strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
}

.specimen-label span {
  margin-top: 2px;
  color: var(--field-rust);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.specimen-seal {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 2px double var(--bottle-green);
  border-radius: 50%;
  color: var(--bottle-green);
  font-family: "Fraunces", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  transform: rotate(-5deg);
}

.catalog-facts {
  position: relative;
  z-index: 4;
  margin-top: -28px;
}

.facts-ticket {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 2px solid var(--field-ink);
  border-radius: 20px;
  background: var(--bottle-green);
  box-shadow: 0 5px 14px rgba(44, 33, 21, 0.2);
}

.fact {
  position: relative;
  min-height: 96px;
  padding: 20px 24px;
  color: var(--paper-white);
}

.fact + .fact {
  border-left: 1px dashed rgba(231, 211, 173, 0.64);
}

.fact strong,
.fact span {
  display: block;
}

.fact strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 18px;
  font-weight: 600;
}

.fact span {
  margin-top: 3px;
  color: var(--aged-paper);
  font-size: 12px;
  font-weight: 700;
}

.section {
  padding: clamp(82px, 10vw, 140px) 0;
}

.section-compact {
  padding: clamp(62px, 8vw, 100px) 0;
}

.section-rule {
  border-block: 1px solid rgba(120, 94, 63, 0.42);
  background:
    linear-gradient(rgba(231, 211, 173, 0.53), rgba(231, 211, 173, 0.53)),
    url("/assets/paper-fiber.png"),
    var(--aged-paper);
}

.section-heading {
  max-width: 770px;
  margin-bottom: 46px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .catalog-kicker {
  margin-inline: auto;
}

.section-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.05;
}

.section-heading p {
  max-width: 670px;
  margin: 0;
  color: var(--brown-ink);
  font-size: 18px;
}

.section-heading.centered p {
  margin-inline: auto;
}

.field-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
  gap: clamp(32px, 6vw, 70px);
  align-items: center;
}

.map-catalog {
  position: relative;
  min-height: 530px;
  padding: 22px;
  border: 2px solid var(--field-ink);
  border-radius: 26px;
  background: var(--bottle-green);
  box-shadow: var(--material-shadow);
}

.map-catalog::after {
  position: absolute;
  inset: 8px;
  border: 1px solid var(--ochre);
  border-radius: 18px;
  content: "";
  opacity: 0.68;
  pointer-events: none;
}

.map-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 4px 4px 16px;
  color: var(--paper-white);
}

.map-header strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
}

.map-header span {
  color: var(--aged-paper);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-paper {
  position: relative;
  z-index: 2;
  min-height: 440px;
  overflow: hidden;
  border: 1.5px solid var(--field-ink);
  border-radius: 16px;
  background:
    linear-gradient(28deg, transparent 47%, rgba(251, 243, 226, 0.92) 48% 52%, transparent 53%),
    linear-gradient(-22deg, transparent 45%, rgba(251, 243, 226, 0.8) 46% 50%, transparent 51%),
    repeating-linear-gradient(90deg, rgba(90, 65, 40, 0.09) 0 1px, transparent 1px 52px),
    repeating-linear-gradient(rgba(90, 65, 40, 0.09) 0 1px, transparent 1px 52px),
    linear-gradient(rgba(156, 170, 137, 0.46), rgba(156, 170, 137, 0.46)),
    url("/assets/paper-fiber.png"),
    var(--sage);
}

.map-river {
  position: absolute;
  top: 48%;
  left: -10%;
  width: 120%;
  height: 18px;
  border-block: 1px solid rgba(44, 33, 21, 0.25);
  background: var(--soft-denim);
  transform: rotate(-13deg);
}

.map-label {
  position: absolute;
  padding: 4px 8px;
  border: 1px solid rgba(44, 33, 21, 0.4);
  border-radius: 5px;
  color: var(--brown-ink);
  background: rgba(251, 243, 226, 0.78);
  font-family: "Fraunces", Georgia, serif;
  font-size: 11px;
  font-style: italic;
}

.map-label-one { top: 18%; left: 10%; }
.map-label-two { right: 12%; bottom: 17%; }

.enamel-pin {
  position: absolute;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 2px solid var(--field-ink);
  border-radius: 50% 50% 50% 9px;
  color: var(--paper-white);
  background: var(--ochre);
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 3px 5px rgba(44, 33, 21, 0.28);
  transform: rotate(-45deg);
}

.enamel-pin span {
  transform: rotate(45deg);
}

.pin-one { top: 22%; left: 26%; }
.pin-two { top: 53%; right: 22%; background: var(--bottle-green); }
.pin-three { right: 38%; bottom: 14%; background: var(--field-rust); }

.field-copy h2 {
  margin-bottom: 15px;
  font-size: clamp(40px, 4.6vw, 58px);
  line-height: 1.03;
}

.field-copy > p {
  margin: 0 0 25px;
  color: var(--brown-ink);
  font-size: 18px;
}

.field-notes {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.field-notes li {
  position: relative;
  padding: 14px 16px 14px 48px;
  border: 1px solid rgba(120, 94, 63, 0.64);
  border-radius: 12px;
  background: rgba(251, 243, 226, 0.68);
  font-size: 14px;
  font-weight: 700;
}

.field-notes li::before {
  position: absolute;
  top: 12px;
  left: 13px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid var(--bottle-green);
  border-radius: 50%;
  color: var(--bottle-green);
  content: "✓";
  font-size: 13px;
  font-weight: 800;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.catalog-panel {
  position: relative;
  overflow: hidden;
  border: 1.5px solid var(--rule);
  border-radius: 18px;
  background:
    linear-gradient(rgba(251, 243, 226, 0.76), rgba(251, 243, 226, 0.76)),
    url("/assets/paper-fiber.png"),
    var(--paper-white);
  box-shadow: var(--material-shadow);
}

.catalog-panel::after {
  position: absolute;
  inset: 7px;
  border: 1px dashed rgba(120, 94, 63, 0.54);
  border-radius: 12px;
  content: "";
  pointer-events: none;
}

.journey-card {
  min-height: 340px;
  padding: 28px;
}

.journey-card > * {
  position: relative;
  z-index: 2;
}

.journey-index {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 30px;
  place-items: center;
  border: 2px double var(--bottle-green);
  border-radius: 50%;
  color: var(--bottle-green);
  font-family: "Fraunces", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  transform: rotate(-4deg);
}

.journey-card:nth-child(2) .journey-index {
  border-color: var(--field-rust);
  color: var(--field-rust);
  transform: rotate(4deg);
}

.journey-card:nth-child(3) .journey-index {
  border-color: var(--faded-denim);
  color: var(--faded-denim);
}

.journey-card h3 {
  margin-bottom: 10px;
  font-size: 29px;
  line-height: 1.08;
}

.journey-card p {
  margin: 0;
  color: var(--brown-ink);
  font-size: 15px;
}

.journey-card small {
  position: absolute;
  right: 26px;
  bottom: 22px;
  left: 26px;
  padding-top: 10px;
  border-top: 1px solid rgba(120, 94, 63, 0.48);
  color: var(--field-rust);
  font-family: "Fraunces", Georgia, serif;
  font-size: 12px;
  font-style: italic;
}

.patch-section {
  color: var(--paper-white);
  background:
    linear-gradient(rgba(38, 59, 49, 0.87), rgba(38, 59, 49, 0.87)),
    url("/assets/paper-fiber.png"),
    var(--forest-dark);
}

.patch-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(38px, 7vw, 86px);
  align-items: center;
}

.patch-copy h2,
.patch-copy p {
  color: var(--paper-white);
}

.patch-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(42px, 5.2vw, 66px);
  line-height: 1.02;
}

.patch-copy > p {
  margin: 0 0 25px;
  font-size: 18px;
}

.patch-copy .catalog-kicker {
  color: var(--ochre);
}

.patch-caption {
  color: var(--aged-paper);
  font-family: "Fraunces", Georgia, serif;
  font-size: 14px;
  font-style: italic;
}

.patch-board {
  position: relative;
  padding: 27px;
  border: 2px solid var(--black);
  border-radius: 24px;
  background:
    linear-gradient(rgba(231, 211, 173, 0.81), rgba(231, 211, 173, 0.81)),
    url("/assets/paper-fiber.png"),
    var(--aged-paper);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.26);
  transform: rotate(1deg);
}

.patch-board::after {
  position: absolute;
  inset: 9px;
  border: 1px dashed var(--rule);
  border-radius: 15px;
  content: "";
  opacity: 0.7;
  pointer-events: none;
}

.patch-board img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 5px 5px rgba(44, 33, 21, 0.2));
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  padding: 28px;
}

.value-seal {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  place-items: center;
  border: 2px double var(--bottle-green);
  border-radius: 50%;
  color: var(--bottle-green);
  font-family: "Fraunces", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  transform: rotate(-4deg);
}

.value-card:nth-child(2) .value-seal {
  border-color: var(--field-rust);
  color: var(--field-rust);
}

.value-card:nth-child(3) .value-seal {
  border-color: var(--faded-denim);
  color: var(--faded-denim);
}

.value-card h3 {
  margin-bottom: 8px;
  font-size: 25px;
}

.value-card p {
  margin: 0;
  color: var(--brown-ink);
  font-size: 15px;
}

.brand-ledger {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
  border: 1.5px solid var(--rule);
  border-radius: 16px;
  background: rgba(251, 243, 226, 0.68);
}

.brand-entry {
  position: relative;
  display: grid;
  min-height: 92px;
  place-items: center;
  padding: 16px 10px;
  color: var(--field-ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.brand-entry + .brand-entry {
  border-left: 1px dashed rgba(120, 94, 63, 0.56);
}

.brand-entry::before {
  width: 10px;
  height: 10px;
  margin-bottom: 7px;
  border: 1.5px solid var(--field-ink);
  border-radius: 50%;
  background: var(--field-rust);
  content: "";
}

.brand-entry:nth-child(2)::before { background: var(--faded-denim); }
.brand-entry:nth-child(3)::before { background: var(--ochre); }
.brand-entry:nth-child(4)::before { background: var(--bottle-green); }
.brand-entry:nth-child(5)::before { background: var(--dusty-rose); }
.brand-entry:nth-child(6)::before { background: var(--sage); }

.download-ticket {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 38px;
  align-items: center;
  padding: clamp(38px, 6vw, 70px);
  overflow: hidden;
  border: 2px solid var(--field-ink);
  border-radius: 26px;
  color: var(--paper-white);
  background:
    linear-gradient(rgba(67, 89, 67, 0.89), rgba(67, 89, 67, 0.89)),
    url("/assets/paper-fiber.png"),
    var(--bottle-green);
  box-shadow: var(--material-shadow);
}

.download-ticket::before {
  position: absolute;
  inset: 10px;
  border: 1px solid var(--ochre);
  border-radius: 18px;
  content: "";
  opacity: 0.8;
  pointer-events: none;
}

.download-ticket::after {
  position: absolute;
  top: 22px;
  right: 292px;
  bottom: 22px;
  border-left: 1px dashed rgba(231, 211, 173, 0.62);
  content: "";
}

.download-copy,
.download-actions {
  position: relative;
  z-index: 2;
}

.download-copy h2 {
  max-width: 630px;
  margin-bottom: 10px;
  color: var(--paper-white);
  font-size: clamp(42px, 5.2vw, 66px);
  line-height: 1.02;
}

.download-copy p {
  max-width: 580px;
  margin: 0;
  color: var(--aged-paper);
  font-size: 17px;
}

.download-actions {
  display: grid;
  min-width: 230px;
  gap: 11px;
}

.download-actions .button {
  background: var(--paper-white);
}

.download-note {
  color: var(--aged-paper);
  font-family: "Fraunces", Georgia, serif;
  font-size: 13px;
  font-style: italic;
  line-height: 1.35;
  text-align: center;
}

.site-footer {
  padding: 56px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) repeat(2, minmax(130px, 0.5fr));
  gap: 34px;
  padding-bottom: 32px;
  border-bottom: 1px dashed var(--rule);
}

.footer-brand p {
  max-width: 470px;
  margin: 17px 0 0;
  color: var(--brown-ink);
  font-size: 14px;
}

.footer-group h2 {
  margin-bottom: 12px;
  font-family: "Nunito", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-group ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-group a {
  color: var(--brown-ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.footer-group a:hover {
  color: var(--field-rust);
}

.footer-fineprint {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 21px;
  color: var(--brown-ink);
  font-size: 12px;
}

.footer-fineprint p {
  margin: 0;
}

.footer-fineprint .disclaimer {
  max-width: 760px;
  text-align: right;
}

/* Legal pages */
.legal-hero {
  padding: clamp(50px, 7vw, 84px) 0 28px;
  text-align: center;
}

.legal-hero .catalog-kicker {
  margin-inline: auto;
}

.legal-hero h1 {
  margin-bottom: 12px;
  font-size: clamp(48px, 7vw, 76px);
  line-height: 1;
}

.legal-hero > p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--brown-ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: 18px;
}

.legal-updated {
  display: block;
  margin-top: 12px;
  color: var(--field-rust);
  font-family: "Fraunces", Georgia, serif;
  font-size: 14px;
  font-style: italic;
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 770px);
  gap: 28px;
  align-items: start;
  justify-content: center;
  padding: 30px 0 clamp(74px, 10vw, 116px);
}

.legal-aside {
  position: sticky;
  top: 24px;
  padding: 24px;
  border-color: var(--bottle-green);
}

.legal-aside h2 {
  margin-bottom: 9px;
  font-size: 23px;
}

.legal-aside p {
  margin: 0 0 14px;
  color: var(--brown-ink);
  font-size: 14px;
}

.legal-aside ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-aside li {
  position: relative;
  padding-left: 19px;
  color: var(--field-ink);
  font-size: 13px;
  font-weight: 800;
}

.legal-aside li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 8px;
  height: 8px;
  border: 1px solid var(--field-ink);
  border-radius: 50%;
  background: var(--ochre);
  content: "";
}

.legal-article {
  padding: clamp(30px, 6vw, 58px);
  border: 1.5px solid var(--rule);
  border-radius: 22px;
  background:
    linear-gradient(rgba(251, 243, 226, 0.84), rgba(251, 243, 226, 0.84)),
    url("/assets/paper-fiber.png"),
    var(--paper-white);
  box-shadow: var(--material-shadow);
}

.legal-article > p:first-child {
  color: var(--field-ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: 18px;
}

.legal-article h2 {
  margin: 34px 0 10px;
  font-size: 25px;
  font-weight: 600;
}

.legal-article p,
.legal-article li {
  font-size: 15.5px;
}

.legal-article p {
  margin: 0 0 14px;
}

.legal-article ul {
  display: grid;
  gap: 7px;
  margin: 0 0 14px;
  padding-left: 22px;
}

.legal-article a {
  color: var(--field-rust);
  font-weight: 800;
  text-underline-offset: 3px;
}

.legal-contact {
  margin-top: 35px;
  padding: 22px;
  border: 1px dashed var(--rule);
  border-radius: 14px;
  background: rgba(231, 211, 173, 0.42);
}

.legal-contact h2 {
  margin-top: 0;
}

@media (max-width: 980px) {
  .hero-grid,
  .field-grid,
  .patch-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 800px;
    text-align: center;
    justify-self: center;
  }

  .hero-copy .catalog-kicker,
  .hero-copy .button-row {
    justify-content: center;
    margin-inline: auto;
  }

  .hero-note {
    margin-inline: auto;
  }

  .specimen-wrap {
    width: min(82vw, 520px);
    justify-self: center;
  }

  .field-copy {
    max-width: 720px;
    text-align: center;
    justify-self: center;
  }

  .field-copy .catalog-kicker {
    margin-inline: auto;
  }

  .field-notes {
    text-align: left;
  }

  .patch-copy {
    max-width: 720px;
    text-align: center;
    justify-self: center;
  }

  .patch-copy .catalog-kicker {
    margin-inline: auto;
  }

  .patch-board {
    width: min(100%, 760px);
    justify-self: center;
  }

  .download-ticket {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .download-ticket::after {
    display: none;
  }

  .download-copy p {
    margin-inline: auto;
  }

  .download-actions {
    width: min(100%, 360px);
    justify-self: center;
  }

  .brand-ledger {
    grid-template-columns: repeat(3, 1fr);
  }

  .brand-entry:nth-child(4) {
    border-left: 0;
    border-top: 1px dashed rgba(120, 94, 63, 0.56);
  }

  .brand-entry:nth-child(n + 5) {
    border-top: 1px dashed rgba(120, 94, 63, 0.56);
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 30px, 1180px);
    --reading: min(100% - 30px, 760px);
  }

  .site-header {
    padding-block: 13px;
  }

  .brand {
    font-size: 19px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .nav-links {
    gap: 11px;
  }

  .nav-links li:nth-child(-n + 3) {
    display: none;
  }

  .nav-links .nav-cta {
    min-height: 38px;
    padding: 7px 13px;
    font-size: 12px;
  }

  .catalog-hero {
    padding-top: 38px;
  }

  .hero-copy h1 {
    font-size: clamp(46px, 13vw, 66px);
  }

  .specimen-wrap {
    width: min(88vw, 500px);
  }

  .specimen-card {
    min-height: 510px;
  }

  .facts-ticket {
    grid-template-columns: 1fr;
  }

  .fact + .fact {
    border-top: 1px dashed rgba(231, 211, 173, 0.64);
    border-left: 0;
  }

  .journey-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .journey-card {
    min-height: 300px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-fineprint {
    display: grid;
  }

  .footer-fineprint .disclaimer {
    text-align: left;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-aside {
    position: static;
  }
}

@media (max-width: 520px) {
  .button-row {
    display: grid;
  }

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

  .specimen-card {
    min-height: 425px;
    border-radius: 22px;
  }

  .specimen-card img {
    right: -22px;
    bottom: 56px;
    width: auto;
    height: 90%;
  }

  .specimen-label {
    right: 18px;
    bottom: 18px;
    left: 18px;
    padding: 13px 14px;
  }

  .specimen-label strong {
    font-size: 18px;
  }

  .specimen-seal {
    width: 46px;
    height: 46px;
    font-size: 15px;
  }

  .map-catalog {
    min-height: 460px;
    padding: 17px;
  }

  .map-paper {
    min-height: 385px;
  }

  .patch-board {
    padding: 17px;
    border-radius: 18px;
  }

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

  .brand-entry:nth-child(3),
  .brand-entry:nth-child(5) {
    border-left: 0;
  }

  .brand-entry:nth-child(3) {
    border-top: 1px dashed rgba(120, 94, 63, 0.56);
  }

  .brand-entry:nth-child(4) {
    border-left: 1px dashed rgba(120, 94, 63, 0.56);
  }

  .download-ticket {
    padding: 38px 24px;
    border-radius: 21px;
  }

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

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

  .legal-article {
    padding: 28px 22px;
    border-radius: 18px;
  }
}

@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;
  }
}
