@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-italic-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-italic-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url("../fonts/work-sans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url("../fonts/work-sans-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --ink: #0c0b0a;
  --ink-deep: #080706;
  --ink-raise: #110f0d;
  --ink-panel: #16130f;
  --rule: #241f1a;
  --rule-2: #332c24;
  --text: #ded8cc;
  --text-2: #a49d90;
  --text-3: #8a8376;
  --field: #6b6458;
  --brass: #c9a45f;
  --brass-2: #a4813f;
  --brass-wash: rgba(201, 164, 95, 0.10);
  --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --body: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --s1: 0.5rem;
  --s2: 1rem;
  --s3: 1.5rem;
  --s4: 2.25rem;
  --s5: 3.25rem;
  --s6: 4.75rem;
  --gutter: clamp(1.15rem, 4vw, 2.75rem);
  --section: clamp(3.5rem, 8vw, 6.75rem);
  --wrap: 1180px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.72;
  overflow-x: clip;
  overflow-wrap: anywhere;
  -webkit-font-smoothing: antialiased;
  font-variant-numeric: tabular-nums;
}

main {
  display: block;
  overflow-x: clip;
}

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

h1,
h2,
h3,
h4,
p,
figure,
ul,
ol,
dl,
dd {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

::selection {
  background: rgba(201, 164, 95, 0.28);
  color: #fff;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.wrap-tight {
  max-width: 780px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink-panel);
  color: var(--text);
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--rule-2);
}

.skip:focus {
  left: 0.75rem;
  top: 0.75rem;
}

h1,
h2,
h3 {
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.005em;
}

h1,
h2 {
  font-family: var(--display);
  color: #efe9dd;
}

h1 {
  font-size: clamp(2.05rem, 4.8vw, 3.35rem);
  font-weight: 300;
}

.hero h1 {
  font-size: clamp(2.5rem, 6.2vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 300;
}

h3 {
  font-family: var(--body);
  font-size: 1.03rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  line-height: 1.4;
  color: var(--text);
}

.eyebrow {
  font-size: 0.685rem;
  font-weight: 500;
  letter-spacing: 0.21em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: var(--s2);
}

.eyebrow-quiet {
  color: var(--text-3);
}

.lede {
  font-size: clamp(1.04rem, 1.5vw, 1.2rem);
  line-height: 1.62;
  color: var(--text-2);
  max-width: 46ch;
}

.prose p {
  margin-bottom: 1.35em;
  max-width: 68ch;
  color: var(--text-2);
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose h2 {
  margin-top: 2.4em;
  margin-bottom: 0.7em;
}

.prose h3 {
  margin-top: 2.1em;
  margin-bottom: 0.55em;
}

.prose > *:first-child {
  margin-top: 0;
}

.prose strong {
  color: var(--text);
  font-weight: 500;
}

.prose em {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.08em;
  color: var(--text);
}

.prose a,
.linkish,
.lede a,
.row-desc a,
.ledger-note a,
.stage-body a,
.plainledger a,
.faq a,
.form-note a,
.section-head a {
  color: var(--brass);
  text-decoration: underline;
  text-decoration-color: rgba(201, 164, 95, 0.35);
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1px;
  transition: color 0.25s var(--ease), text-decoration-color 0.25s var(--ease);
}

.prose a:hover,
.linkish:hover,
.lede a:hover,
.row-desc a:hover,
.ledger-note a:hover,
.stage-body a:hover,
.plainledger a:hover,
.faq a:hover,
.form-note a:hover,
.section-head a:hover {
  color: #e7cf9c;
  text-decoration-color: rgba(231, 207, 156, 0.9);
}

.prose ol,
.prose ul {
  margin: 0 0 1.35em;
  max-width: 68ch;
  color: var(--text-2);
}

.prose li {
  padding-left: 1.6rem;
  position: relative;
  margin-bottom: 0.55em;
}

.prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 0.7rem;
  height: 1px;
  background: var(--brass-2);
}

.prose ol {
  counter-reset: n;
}

.prose ol li::before {
  counter-increment: n;
  content: counter(n, decimal-leading-zero);
  top: 0;
  width: auto;
  height: auto;
  background: none;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--brass-2);
}

.site-head {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--ink);
  border-bottom: 1px solid var(--rule);
}

.head-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  min-height: 68px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  white-space: nowrap;
  min-width: 0;
}

.wordmark .mark {
  width: 9px;
  height: 9px;
  border: 1.5px solid var(--brass);
  border-radius: 50%;
  flex: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 1.8vw, 1.7rem);
}

.nav a {
  font-size: 0.795rem;
  font-weight: 400;
  letter-spacing: 0.055em;
  color: var(--text-2);
  text-decoration: none;
  padding: 0.35rem 0;
  position: relative;
  white-space: nowrap;
  transition: color 0.25s var(--ease);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--text);
}

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

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-right: -8px;
  background: none;
  border: 1px solid var(--rule-2);
  border-radius: 2px;
  color: var(--text);
  cursor: pointer;
  flex: none;
}

.nav-toggle svg {
  width: 19px;
  height: 19px;
}

.nav-toggle .icon-close,
.nav-toggle[aria-expanded="true"] .icon-open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

@media (max-width: 940px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink-panel);
    border-bottom: 1px solid var(--rule-2);
    padding: 0 var(--gutter);
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transform: translateY(-6px);
    transition: max-height 0.36s var(--ease), opacity 0.24s var(--ease),
      transform 0.32s var(--ease), visibility 0s linear 0.36s;
  }

  .nav.is-open {
    max-height: 70vh;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    overflow-y: auto;
    transition: max-height 0.4s var(--ease), opacity 0.26s var(--ease),
      transform 0.34s var(--ease), visibility 0s;
  }

  .nav a {
    padding: 0.95rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--rule);
  }

  .nav a:last-child {
    border-bottom: 0;
  }

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

  .nav a[aria-current="page"]::before {
    content: "";
    display: inline-block;
    width: 0.85rem;
    height: 1px;
    margin-right: 0.6rem;
    vertical-align: middle;
    background: var(--brass);
  }

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

.hero {
  padding-block: clamp(2.5rem, 6vw, 5rem) 0;
  border-bottom: 1px solid var(--rule);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(2rem, 4vw, 4rem);
  }
}

.hero-text {
  min-width: 0;
}

.hero-text .lede {
  margin-top: var(--s3);
}

.hero-plate {
  min-width: 0;
  border: 1px solid var(--rule);
  background: var(--ink-deep);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: var(--s4);
}

.studio-line {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  margin-top: clamp(2rem, 5vw, 3.5rem);
}

@media (min-width: 780px) {
  .studio-line {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.studio-line > div {
  padding: 1.35rem 0 1.5rem;
  border-bottom: 1px solid var(--rule);
  min-width: 0;
}

.studio-line > div + div {
  border-left: 1px solid var(--rule);
  padding-left: 1.35rem;
}

@media (max-width: 779px) {
  .studio-line > div:nth-child(odd) + div {
    border-left: 1px solid var(--rule);
  }

  .studio-line > div:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }
}

.section {
  padding-block: var(--section);
}

.section-top {
  border-top: 1px solid var(--rule);
}

.section-head {
  max-width: 62ch;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head p {
  color: var(--text-2);
  margin-top: var(--s2);
}

.page-head {
  padding-block: clamp(2.75rem, 6vw, 4.75rem) clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--rule);
}

.page-head .lede {
  margin-top: var(--s3);
  max-width: 54ch;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.735rem;
  letter-spacing: 0.09em;
  color: var(--text-3);
  margin-bottom: var(--s3);
}

.crumbs a {
  color: var(--text-3);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

.crumbs a:hover {
  color: var(--brass);
}

.crumbs .sep {
  color: var(--rule-2);
}

.pill {
  display: inline-flex;
  align-self: flex-start;
  width: fit-content;
  align-items: center;
  gap: 0.4rem;
  padding: 0.24rem 0.62rem;
  border: 1px solid var(--rule-2);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  white-space: nowrap;
}

.pill-stock {
  border-color: rgba(201, 164, 95, 0.42);
  background: var(--brass-wash);
  color: var(--brass);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: fit-content;
  padding: 0.78rem 1.35rem;
  border: 1px solid var(--rule-2);
  border-radius: 2px;
  background: none;
  color: var(--text);
  font-family: var(--body);
  font-size: 0.815rem;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.28s var(--ease), color 0.28s var(--ease),
    background-color 0.28s var(--ease);
}

.btn svg {
  width: 15px;
  height: 15px;
  flex: none;
  transition: transform 0.32s var(--ease);
}

.btn:hover {
  border-color: var(--brass);
  color: var(--brass);
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn-solid {
  border-color: var(--brass);
  background: var(--brass);
  color: #17120a;
  font-weight: 500;
}

.btn-solid:hover {
  background: #e7cf9c;
  border-color: #e7cf9c;
  color: #17120a;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.icon {
  width: 17px;
  height: 17px;
  flex: none;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-brass {
  color: var(--brass);
}

.ledger {
  border-top: 1px solid var(--rule-2);
}

.ledger-head {
  display: none;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--rule);
  font-size: 0.65rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--text-3);
}

.row {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 1.1rem 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}

.row-plate {
  min-width: 0;
  border: 1px solid var(--rule);
  background: var(--ink-deep);
  overflow: hidden;
}

.row-plate img {
  width: 100%;
}

.row-main {
  min-width: 0;
}

.row-name {
  display: block;
  font-family: var(--display);
  font-size: 1.32rem;
  font-weight: 400;
  line-height: 1.2;
  color: #efe9dd;
  margin: 0;
}

.row-desc {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-2);
  max-width: 56ch;
}

.row-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 0.9rem 1.1rem;
  min-width: 0;
  grid-column: 1 / -1;
}

.row-tail {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-start;
  gap: 0.55rem 1rem;
  grid-column: 1 / -1;
  min-width: 0;
}

.spec {
  min-width: 0;
}

.spec-k {
  display: block;
  font-size: 0.63rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
}

.spec-v {
  display: block;
  margin-top: 0.18rem;
  font-size: 0.855rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--text);
}

.price {
  font-family: var(--display);
  font-size: 1.42rem;
  font-weight: 500;
  line-height: 1;
  color: var(--brass);
  letter-spacing: 0.01em;
}

@media (min-width: 620px) and (max-width: 1179px) {
  .row {
    grid-template-columns: 168px minmax(0, 1fr);
    gap: 1.3rem 1.6rem;
  }

  .row-specs {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (min-width: 1180px) {
  .row {
    grid-template-columns: 152px minmax(0, 1.02fr) minmax(0, 1.42fr) 132px;
    gap: 1.75rem;
    padding: 1.85rem 0;
    align-items: center;
  }

  .row-specs,
  .row-tail {
    grid-column: auto;
  }

  .row-tail {
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    text-align: right;
  }

  .ledger-head {
    display: grid;
    grid-template-columns: 152px minmax(0, 1.02fr) minmax(0, 1.42fr) 132px;
    gap: 1.75rem;
  }

  .ledger-head span:last-child {
    text-align: right;
  }
}

.ledger-note {
  margin-top: var(--s3);
  font-size: 0.85rem;
  color: var(--text-3);
  max-width: 64ch;
}

.plainledger {
  border-top: 1px solid var(--rule-2);
}

.plainledger > li,
.plainledger > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.5rem 1.5rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--rule);
  margin: 0;
}

.plainledger li::before {
  display: none;
}

@media (min-width: 700px) {
  .plainledger > li,
  .plainledger > div {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 2fr) 160px;
    align-items: baseline;
    gap: 1.75rem;
  }

  .plainledger .amount {
    text-align: right;
  }
}

.plainledger h3 {
  margin: 0;
}

.plainledger p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-2);
  min-width: 0;
}

.amount {
  font-family: var(--display);
  font-size: 1.24rem;
  font-weight: 500;
  color: var(--brass);
  line-height: 1.2;
  white-space: nowrap;
}

.amount small {
  display: block;
  font-family: var(--body);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 0.25rem;
  white-space: normal;
}

.stages {
  counter-reset: stage;
  border-top: 1px solid var(--rule-2);
}

.stages > li {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.6rem 2rem;
  padding: 1.9rem 0;
  border-bottom: 1px solid var(--rule);
}

.stages > li::before {
  display: none;
}

@media (min-width: 760px) {
  .stages > li {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 2.25rem;
  }
}

.stage-n {
  counter-increment: stage;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  color: var(--brass-2);
}

.stage-n::before {
  content: counter(stage, decimal-leading-zero);
}

.stage-body h3 {
  margin-bottom: 0.5rem;
}

.stage-body p {
  color: var(--text-2);
  font-size: 0.94rem;
  max-width: 62ch;
}

.stage-meta {
  margin-top: 0.85rem;
  font-size: 0.755rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-3);
}

.cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

@media (min-width: 720px) {
  .cards-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 640px) {
  .cards-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .cards-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cards-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 640px) and (max-width: 1179px) {
  .cards-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  background: var(--ink);
  min-width: 0;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.3s var(--ease);
}

a.card:hover {
  background: var(--ink-raise);
}

.card p {
  font-size: 0.9rem;
  color: var(--text-2);
  margin: 0;
}

.card .icon {
  color: var(--brass);
  margin-bottom: 0.2rem;
}

.card-more {
  margin-top: auto;
  padding-top: 0.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: color 0.28s var(--ease);
}

.card-more svg {
  width: 13px;
  height: 13px;
  transition: transform 0.32s var(--ease);
}

a.card:hover .card-more {
  color: var(--brass);
}

a.card:hover .card-more svg {
  transform: translateX(3px);
}

.tiles {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.4rem, 3vw, 2.25rem);
}

@media (min-width: 760px) {
  .tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.tile {
  display: flex;
  flex-direction: column;
  min-width: 0;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--rule);
  background: var(--ink-raise);
  transition: border-color 0.34s var(--ease), transform 0.34s var(--ease);
}

.tile:hover {
  border-color: var(--rule-2);
}

.tile-plate {
  overflow: hidden;
  background: var(--ink-deep);
  border-bottom: 1px solid var(--rule);
}

.tile-plate img {
  width: 100%;
  transition: transform 0.6s var(--ease);
}

.tile:hover .tile-plate img {
  transform: scale(1.04);
}

.tile-body {
  padding: clamp(1.25rem, 2.6vw, 1.85rem);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
  min-width: 0;
}

.tile-body h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
  transition: color 0.28s var(--ease);
}

.tile:hover .tile-body h3 {
  color: var(--brass);
}

.tile-body p {
  font-size: 0.9rem;
  color: var(--text-2);
  margin: 0;
}

.tile-foot {
  margin-top: auto;
  padding-top: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  border-top: 1px solid var(--rule);
}

.tile-foot svg {
  width: 14px;
  height: 14px;
  flex: none;
  transition: transform 0.32s var(--ease);
}

.tile:hover .tile-foot {
  color: var(--brass);
}

.tile:hover .tile-foot svg {
  transform: translateX(3px);
}

.notes {
  border-top: 1px solid var(--rule-2);
}

.note-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.9rem 1.75rem;
  padding: 1.9rem 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
  align-items: start;
  transition: transform 0.34s var(--ease);
}

@media (min-width: 760px) {
  .note-row {
    grid-template-columns: 168px minmax(0, 1fr) 108px;
    gap: 2rem;
    align-items: center;
  }
}

@media (min-width: 760px) and (prefers-reduced-motion: no-preference) {
  .note-row:hover {
    transform: translateX(6px);
  }
}

.note-plate {
  border: 1px solid var(--rule);
  background: var(--ink-deep);
  overflow: hidden;
  min-width: 0;
}

.note-plate img {
  width: 100%;
  transition: transform 0.5s var(--ease);
}

.note-row:hover .note-plate img {
  transform: scale(1.045);
}

.note-body {
  min-width: 0;
}

.note-body h3 {
  font-family: var(--display);
  font-size: 1.42rem;
  font-weight: 400;
  line-height: 1.24;
  transition: color 0.28s var(--ease);
}

.note-row:hover .note-body h3 {
  color: var(--brass);
}

.note-body p {
  margin-top: 0.45rem;
  font-size: 0.885rem;
  color: var(--text-2);
  max-width: 62ch;
}

.note-date {
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
}

@media (min-width: 760px) {
  .note-date {
    text-align: right;
  }
}

.note-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  margin-top: var(--s3);
  font-size: 0.745rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-3);
}

.note-figure {
  margin: clamp(2rem, 4vw, 3rem) 0;
  border: 1px solid var(--rule);
  background: var(--ink-deep);
}

.note-figure figcaption {
  padding: 0.85rem 1.1rem;
  border-top: 1px solid var(--rule);
  font-size: 0.78rem;
  color: var(--text-3);
}

.faq {
  border-top: 1px solid var(--rule-2);
}

.faq > li {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.55rem 2rem;
}

.faq > li::before {
  display: none;
}

@media (min-width: 820px) {
  .faq > li {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.35fr);
    gap: 2.5rem;
  }
}

.faq h3 {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.26;
  color: #efe9dd;
}

.faq p {
  color: var(--text-2);
  font-size: 0.94rem;
  margin: 0 0 0.9em;
  max-width: 62ch;
}

.faq p:last-child {
  margin-bottom: 0;
}

.next {
  border-top: 1px solid var(--rule-2);
  background: var(--ink-raise);
}

.next-inner {
  padding-block: clamp(2.75rem, 6vw, 4.5rem);
}

.next-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.next-head h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
}

.next-links {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  border-top: 1px solid var(--rule);
}

@media (min-width: 880px) {
  .next-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 0;
  }
}

.next-link {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
  min-width: 0;
  transition: transform 0.34s var(--ease);
}

@media (min-width: 880px) {
  .next-link {
    border-top: 1px solid var(--rule);
    padding: 1.5rem 1.75rem 1.6rem 0;
  }

  .next-link + .next-link {
    padding-left: 1.75rem;
    border-left: 1px solid var(--rule);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .next-link:hover {
    transform: translateX(5px);
  }
}

.next-link .kicker {
  font-size: 0.66rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--text-3);
}

.next-link .title {
  font-family: var(--display);
  font-size: 1.28rem;
  font-weight: 400;
  line-height: 1.24;
  color: #efe9dd;
  transition: color 0.28s var(--ease);
}

.next-link:hover .title {
  color: var(--brass);
}

.next-link p {
  font-size: 0.86rem;
  color: var(--text-2);
  margin: 0;
}

.siblings {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

@media (min-width: 700px) {
  .siblings {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .siblings-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.sibling {
  background: var(--ink);
  padding: 1.35rem 1.5rem 1.5rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: background-color 0.3s var(--ease);
}

.sibling:hover {
  background: var(--ink-raise);
}

.sibling .kicker {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
}

.sibling .title {
  font-family: var(--display);
  font-size: 1.16rem;
  line-height: 1.28;
  color: #efe9dd;
  transition: color 0.28s var(--ease);
}

.sibling:hover .title {
  color: var(--brass);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: center;
}

@media (min-width: 860px) {
  .split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-flip > *:first-child {
    order: 2;
  }
}

.plate {
  border: 1px solid var(--rule);
  background: var(--ink-deep);
  min-width: 0;
}

.form {
  display: grid;
  gap: 1.35rem;
  max-width: 620px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}

.field label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-2);
}

.field .hint {
  font-size: 0.8rem;
  color: var(--text-3);
  letter-spacing: 0;
  text-transform: none;
}

.form-note {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-3);
  max-width: 62ch;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.82rem 0.95rem;
  background: var(--ink-raise);
  border: 1px solid var(--field);
  border-radius: 2px;
  color: var(--text);
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.5;
  transition: border-color 0.26s var(--ease), background-color 0.26s var(--ease);
}

.field textarea {
  min-height: 168px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-3);
}

.field input:focus,
.field textarea:focus {
  border-color: var(--brass-2);
  background: var(--ink-panel);
}

.field.is-invalid input,
.field.is-invalid textarea,
.field.is-invalid .picker-btn {
  border-color: #b4593f;
}

.error {
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: #d98b70;
  letter-spacing: 0;
  text-transform: none;
}

.field.is-invalid .error {
  display: flex;
}

.error svg {
  width: 14px;
  height: 14px;
  flex: none;
}

.picker {
  position: relative;
  min-width: 0;
}

.picker-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 0.82rem 0.95rem;
  background: var(--ink-raise);
  border: 1px solid var(--field);
  border-radius: 2px;
  color: var(--text);
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 300;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.26s var(--ease);
}

.picker-btn[aria-expanded="true"] {
  border-color: var(--brass-2);
}

.picker-btn svg {
  width: 15px;
  height: 15px;
  flex: none;
  color: var(--text-3);
  transition: transform 0.3s var(--ease);
}

.picker-btn[aria-expanded="true"] svg {
  transform: rotate(90deg);
}

.picker-list {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  z-index: 20;
  background: var(--ink-panel);
  border: 1px solid var(--rule-2);
  border-radius: 2px;
  padding: 0.3rem;
  max-height: 262px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: opacity 0.22s var(--ease), transform 0.24s var(--ease),
    visibility 0s linear 0.24s;
}

.picker-list.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.22s var(--ease), transform 0.24s var(--ease), visibility 0s;
}

.picker-list li {
  padding: 0.62rem 0.7rem;
  font-size: 0.9rem;
  border-radius: 2px;
  cursor: pointer;
  color: var(--text-2);
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}

.picker-list li:hover,
.picker-list li.is-active {
  background: var(--ink-raise);
  color: var(--text);
}

.picker-list li[aria-selected="true"] {
  color: var(--brass);
}

.form-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.form-status {
  font-size: 0.86rem;
  color: var(--text-2);
  min-width: 0;
}

.form-status.is-ok {
  color: var(--brass);
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-foot {
  border-top: 1px solid var(--rule-2);
  background: var(--ink-deep);
  padding-block: clamp(2.75rem, 6vw, 4.25rem) 2rem;
  overflow-x: clip;
}

.foot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.25rem;
}

@media (min-width: 620px) {
  .foot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .foot-grid {
    grid-template-columns: minmax(0, 1.35fr) repeat(4, minmax(0, 1fr));
    gap: 2.5rem;
  }
}

.foot-brand {
  min-width: 0;
}

.foot-brand p {
  margin-top: var(--s2);
  font-size: 0.875rem;
  color: var(--text-3);
  max-width: 34ch;
}

.foot-col {
  min-width: 0;
}

.foot-col h2 {
  font-family: var(--body);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.9rem;
}

.foot-col li + li {
  margin-top: 0.5rem;
}

.foot-col a {
  font-size: 0.865rem;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.26s var(--ease);
}

.foot-col a:hover {
  color: var(--brass);
}

.foot-base {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  margin-top: clamp(2.25rem, 5vw, 3.25rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  font-size: 0.78rem;
  color: var(--text-3);
}

.foot-base a {
  color: var(--text-3);
  text-decoration: none;
  transition: color 0.26s var(--ease);
}

.foot-base a:hover {
  color: var(--brass);
}

.foot-base ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    transition-delay: var(--d, 0ms);
  }

  .reveal.is-in {
    opacity: 1;
    transform: none;
  }

  .rise {
    opacity: 0;
    transform: translateY(16px);
    animation: rise 0.85s var(--ease) forwards;
    animation-delay: var(--d, 0ms);
  }
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

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

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

.note-added {
  margin-top: clamp(2.25rem, 5vw, 3.25rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule-2);
}

.added-label {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.7rem;
}

.note-added p {
  color: var(--text-2);
  font-size: 0.94rem;
  max-width: 68ch;
}

@media print {
  :root {
    --ink: #ffffff;
    --ink-deep: #ffffff;
    --ink-raise: #ffffff;
    --ink-panel: #ffffff;
    --rule: #d8d3cb;
    --rule-2: #b3aca0;
    --field: #8a8376;
    --text: #14120f;
    --text-2: #3c3830;
    --text-3: #5c564c;
    --brass: #7a5f28;
    --brass-2: #7a5f28;
    --brass-wash: transparent;
    --section: 1.5rem;
  }

  html,
  body {
    background: #ffffff;
    color: #14120f;
  }

  .reveal,
  .rise {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  h1,
  h2,
  .row-name,
  .note-body h3,
  .faq h3,
  .tile-body h3,
  .next-link .title,
  .sibling .title {
    color: #14120f;
  }

  .site-head,
  .nav-toggle,
  .next,
  .skip,
  .siblings,
  .crumbs {
    display: none;
  }

  .row,
  .note-row,
  .stages > li,
  .faq > li,
  .plainledger > div {
    break-inside: avoid;
  }

  .row-plate,
  .note-plate,
  .tile-plate,
  .plate,
  .hero-plate,
  .note-figure {
    display: none;
  }

  .row,
  .note-row,
  .split,
  .hero-grid,
  .tiles {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.6rem 1.5rem;
  }

  .row-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .row-tail {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
  }

  .tile,
  .card,
  .cards {
    border-color: #d8d3cb;
    background: #ffffff;
  }

  a {
    color: #14120f;
  }
}

.row-specs .spec:last-child {
  grid-column: 1 / -1;
}

@media (min-width: 620px) and (max-width: 1179px) {
  .row-specs .spec {
    grid-column: span 2;
  }

  .row-specs .spec:last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1180px) {
  .row-specs {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .row-specs .spec {
    grid-column: span 2;
  }

  .row-specs .spec:last-child {
    grid-column: 1 / -1;
  }

  .row-tail {
    justify-content: flex-start;
  }
}

.siblings-1 {
  grid-template-columns: minmax(0, 1fr);
}
