/* Page ground matches the supplied logo files (#231e18) so the artwork sits flush.
   Brief direction: near-black warm brown, approximately #14110f. */

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/cormorant-500.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/cormorant-500-italic.woff2") format("woff2");
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/outfit-latin.woff2") format("woff2");
}

:root {
  --bg: #231e18;
  --bg-bar: #1b1714;
  --bg-deep: #191511;
  --raised: #2c261f;
  --cream: #f3ece3;
  --ink: #e6dcd0;
  --taupe: #b7a898;
  --gold: #c6a56e;
  --gold-soft: rgba(198, 165, 110, 0.55);
  --line: rgba(243, 236, 227, 0.14);
  --line-strong: rgba(243, 236, 227, 0.28);
  --serif: "Cormorant Garamond", "Palatino Linotype", Palatino, "Times New Roman", serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
  --measure: 40rem;
  --wrap: 1120px;
  color-scheme: dark;
}

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

html {
  scroll-behavior: auto;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

p {
  margin: 0 0 1rem;
}

h1, h2, h3 {
  text-wrap: balance;
  color: var(--cream);
}

::selection {
  background: #4a3d2c;
  color: var(--cream);
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 80;
  background: var(--cream);
  color: var(--bg);
  padding: 0.55rem 0.9rem;
  text-decoration: none;
  font-size: 0.85rem;
}

.skip-link:focus {
  top: 0.6rem;
}

.wrap {
  width: min(var(--wrap), calc(100% - 3rem));
  margin-inline: auto;
}

.chrome {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--bg);
}

.preview-bar {
  margin: 0;
  background: var(--bg-bar);
  color: var(--taupe);
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  line-height: 1.45;
  padding: 0.5rem 1.25rem;
  border-bottom: 1px solid var(--line);
}

.site-header {
  position: relative;
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.25rem;
  min-height: 4.25rem;
}

.mark-link {
  display: block;
  grid-column: 1;
  justify-self: start;
  text-decoration: none;
}

.mark-frame {
  display: block;
  line-height: 0;
}

.mark-frame img {
  height: 2.6rem;
  width: auto;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--cream);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 1.15rem;
  height: 1px;
  background: currentColor;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  display: inline-block;
  color: var(--taupe);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  padding: 0.35rem 0;
}

.site-nav a:hover {
  color: var(--cream);
}

.site-nav a[aria-current="page"] {
  color: var(--cream);
  box-shadow: inset 0 -1px 0 var(--gold);
}

.hero {
  padding: 3.25rem 0 3.75rem;
}

.wordmark {
  width: min(15.5rem, 62vw);
  margin: 0 0 1.6rem;
}

.wordmark img {
  width: 100%;
  height: auto;
}

.hero h1 {
  margin: 0;
  max-width: 11em;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3.1rem, 7vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.025em;
}

.hero h1 em {
  display: block;
  font-style: italic;
  font-weight: 500;
}

.lede {
  max-width: var(--measure);
  margin: 1.6rem 0 0;
  color: var(--ink);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.6;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.35rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.2rem;
  border: 1px solid rgba(243, 236, 227, 0.38);
  background: transparent;
  color: var(--cream);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

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

.btn-text {
  border-color: transparent;
  padding-inline: 0.1rem;
  text-decoration: underline;
  text-underline-offset: 0.4em;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--gold-soft);
}

.btn-text:hover {
  border-color: transparent;
}

.band {
  padding: 4.25rem 0;
  border-top: 1px solid var(--line);
}

.band-follow {
  border-top: 0;
  padding-top: 1.75rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.section-head h2,
.band h2,
.prose h2,
.page-intro h1 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.section-head h2,
.band h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4vw, 3.15rem);
  line-height: 1;
}

.section-head a {
  color: var(--taupe);
  text-decoration: none;
  font-size: 1rem;
  white-space: nowrap;
}

.section-head a:hover {
  color: var(--cream);
}

.offer-grid,
.step-grid {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offer {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.6rem 1.6rem 1.6rem 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
}

.offer-grid li + li .offer {
  padding-left: 1.6rem;
  box-shadow: inset 1px 0 0 var(--line);
}

.offer-index,
.step-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.offer-index {
  font-size: 1.35rem;
  margin-bottom: 1.35rem;
}

.offer h3,
.step-grid h3,
.card h2,
.stage h2,
.term h2 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--cream);
}

.offer h3 {
  margin: 0 0 0.75rem;
  font-size: 2.05rem;
  line-height: 1;
}

.offer p,
.step-grid p,
.card p {
  color: var(--taupe);
}

.offer p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
}

.offer:hover h3 {
  color: var(--gold);
}

.soon {
  display: inline-block;
  margin-top: auto;
  padding-top: 1.15rem;
  font-size: 1rem;
  color: var(--gold);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.75rem 1.25rem;
}

.step-grid li {
  border-top: 1px solid var(--gold-soft);
  padding-top: 1rem;
}

.step-num {
  display: block;
  font-size: 1.45rem;
  margin-bottom: 0.85rem;
}

.step-grid h3 {
  margin: 0 0 0.65rem;
  font-size: 1.45rem;
  line-height: 1.05;
}

.step-grid p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
}

.notice {
  max-width: 42rem;
  border: 1px solid var(--line-strong);
  padding: 1.5rem 1.5rem 1.35rem;
}

.notice h2 {
  margin: 0 0 0.7rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold);
}

.notice p {
  margin: 0;
  color: var(--cream);
  font-size: 1.05rem;
}

.page-intro {
  padding: 4.25rem 0 0.5rem;
}

.page-intro h1 {
  margin: 0;
  max-width: 12em;
  font-size: clamp(3.3rem, 7vw, 5.5rem);
  line-height: 0.92;
}

.eyebrow,
.draft-flag {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.draft-flag {
  display: inline-block;
  border: 1px solid var(--gold-soft);
  padding: 0.4rem 0.65rem;
}

.page-intro .lede {
  margin-top: 1.4rem;
}

.prose {
  max-width: var(--measure);
  padding-top: 1.5rem;
}

.prose p,
.stage p,
.term p,
.answer p {
  color: var(--ink);
}

.prose h2 {
  margin: 2.25rem 0 0.8rem;
  font-size: clamp(2.15rem, 4vw, 3.15rem);
  line-height: 1;
}

.plain-list {
  list-style: none;
  margin: 0.4rem 0 0;
  padding: 0;
  max-width: 36rem;
}

.plain-list li {
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.plain-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.stage-list {
  margin-top: 2.5rem;
}

.stage {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.25rem;
  padding: 2.4rem 0;
  border-top: 1px solid var(--line);
}

.stage:last-child {
  border-bottom: 1px solid var(--line);
}

.stage-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 2.3rem;
  line-height: 0.9;
  color: var(--gold);
}

.stage h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  line-height: 1;
}

.stage p:last-child,
.term p:last-child,
.answer p:last-child {
  margin-bottom: 0;
}

.catalogue {
  display: grid;
  gap: 1.15rem;
  margin-top: 2.25rem;
}

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

.examples {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.examples img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.examples figcaption {
  margin-top: 0.5rem;
  color: var(--taupe);
  font-size: 0.95rem;
}

.example-note {
  max-width: var(--measure);
  margin: 1.25rem 0 0;
  color: var(--ink);
}

.order-card {
  max-width: 36rem;
  margin-top: 2rem;
}

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

.catalogue.thirds {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--raised);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.plate {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bg-deep);
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line);
}

.catalogue.thirds .plate {
  aspect-ratio: 4 / 3;
}

.plate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.plate:has(img)::before {
  display: none;
}

.plate span {
  position: relative;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
}

.card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.2rem 1.15rem 1.15rem;
}

.card h2 {
  margin: 0;
  font-size: 1.85rem;
  line-height: 1;
}

.card .desc {
  margin: 0.75rem 0 0;
  font-size: 1.05rem;
  line-height: 1.55;
}

.price {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin: 1.15rem 0 0;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}

.price-amt {
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1;
  color: var(--cream);
}

.price-state {
  font-size: 1rem;
  color: var(--gold);
  text-align: right;
}

.follow {
  margin-top: 1.75rem;
}

.follow a {
  color: var(--cream);
}

.faq {
  margin-top: 2rem;
  max-width: 46rem;
}

.faq details {
  border-top: 1px solid var(--line);
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.2rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--cream);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  flex: none;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--gold);
}

.faq details[open] summary::after {
  content: "\2013";
}

.answer {
  max-width: var(--measure);
  padding: 0 2rem 1.35rem 0;
}

.about-copy {
  padding: 1.25rem 0 2rem;
  max-width: 36rem;
}

.about-copy p {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1.35;
  color: var(--cream);
}

.contact-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  max-width: 38rem;
}

.contact-list li {
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
  font-size: 1.2rem;
  color: var(--cream);
}

.contact-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.term-list {
  margin-top: 2rem;
}

.term {
  max-width: var(--measure);
  padding: 1.45rem 0;
  border-top: 1px solid var(--line);
}

.term:last-child {
  border-bottom: 1px solid var(--line);
}

.term h2 {
  margin: 0 0 0.55rem;
  font-size: 1.85rem;
  line-height: 1.05;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.75rem 0 2.25rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 2rem 1.5rem;
  align-items: start;
}

.footer-name {
  margin: 0 0 0.35rem;
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 1;
  color: var(--cream);
}

.footer-meta,
.footer-note,
.footer-contact p {
  margin: 0.35rem 0 0;
  color: var(--taupe);
  font-size: 0.95rem;
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-nav a {
  display: inline-block;
  padding: 0.3rem 0;
  color: var(--taupe);
  text-decoration: none;
  letter-spacing: 0.01em;
  font-size: 1rem;
}

.footer-nav a:hover,
.follow a:hover {
  color: var(--gold);
}

main {
  padding-bottom: 4.5rem;
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .catalogue.pieces {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .site-nav {
    display: none;
  }

  .site-nav.is-open {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    height: auto;
    margin: 0;
    justify-self: stretch;
    grid-column: 1 / -1;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.28);
    overflow: auto;
    z-index: 30;
  }

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

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.35rem 1.5rem 0.85rem;
  }

  .site-nav a {
    display: block;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.125rem;
  }

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

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

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

  .offer-grid li + li .offer {
    padding-left: 0;
    box-shadow: none;
  }

  .offer {
    padding-right: 0;
  }

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

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

@media (max-width: 720px) {
  .wrap {
    width: min(var(--wrap), calc(100% - 2rem));
  }

  .site-header .wrap {
    min-height: 4.5rem;
  }

  .site-nav ul {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .mark-frame img {
    height: 2.15rem;
  }

  .hero {
    padding: 2.25rem 0 2.75rem;
  }

  .wordmark {
    width: min(12.5rem, 58vw);
    margin-bottom: 1.35rem;
  }

  .band {
    padding: 3rem 0;
  }

  .page-intro {
    padding-top: 2.75rem;
  }

  .offer-grid,
  .step-grid,
  .catalogue.pieces,
  .catalogue.thirds,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stage {
    grid-template-columns: 2.6rem 1fr;
    gap: 0.75rem;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }

  .preview-bar {
    letter-spacing: 0.02em;
    font-size: 0.68rem;
  }

  .answer {
    padding-right: 0;
  }

  .order-list li:not(.order-total) {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .order-list li > div:last-child {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
  }

  .order-list li > div:last-child .price-amt {
    margin: 0;
  }
}

.header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  grid-column: 3;
  gap: 0.75rem;
}

.bag-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--cream);
  text-decoration: none;
  font-size: 1rem;
  white-space: nowrap;
}

.bag-link:hover {
  color: var(--gold);
}

.bag-mark {
  position: relative;
  display: block;
  width: 1.55rem;
  height: 2.05rem;
  flex: none;
}

.bag-mark img {
  width: 100%;
  height: 100%;
  display: block;
}

.bag-count {
  position: absolute;
  left: 50%;
  top: 57%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: var(--gold);
  font-size: 0.68rem;
  line-height: 1;
  text-align: center;
}

.site-nav {
  grid-column: 2;
  justify-self: center;
}

.design-plate svg {
  width: min(88%, 16rem);
  height: auto;
}

.picker {
  position: relative;
  margin-top: 0.85rem;
}

.picker-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
  color: var(--cream);
}

.picker-box {
  width: 100%;
  min-height: 3rem;
  padding: 0 2.4rem 0 0.9rem;
  border: 1px solid var(--line-strong);
  background: var(--bg-deep);
  color: var(--cream);
  font: inherit;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
}

.picker-box::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1px solid var(--cream);
  border-bottom: 1px solid var(--cream);
  transform: translateY(-70%) rotate(45deg);
}

.picker {
  position: relative;
}

.picker-box {
  position: relative;
}

.picker-list {
  position: absolute;
  z-index: 6;
  left: 0;
  right: 0;
  top: calc(100% - 1px);
  margin: 0;
  padding: 0.25rem 0;
  list-style: none;
  background: #2a241e;
  border: 1px solid var(--line-strong);
}

.picker-list[hidden] {
  display: none;
}

.picker-list button {
  display: block;
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 0;
  background: transparent;
  color: var(--cream);
  font: inherit;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
}

.picker-list button:hover,
.picker-list button[aria-selected="true"] {
  background: #3a332b;
}

.about-copy p + p {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--ink);
}

.choices {
  border: 0;
  margin: 1.1rem 0 0;
  padding: 0;
}

.choices legend {
  padding: 0;
  margin-bottom: 0.45rem;
  font-size: 1rem;
  color: var(--cream);
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.choice-row label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.75rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--line-strong);
  cursor: pointer;
  font-size: 1rem;
}

.choice-row input {
  width: 1.05rem;
  height: 1.05rem;
  accent-color: #c6a56e;
}

.cut-note,
.field input,
.field textarea {
  width: 100%;
  margin-top: 0.55rem;
  padding: 0.75rem 0.8rem;
  border: 1px solid var(--line-strong);
  background: var(--bg-deep);
  color: var(--cream);
  font: inherit;
  font-size: 1rem;
}

.card .btn {
  margin-top: 1.1rem;
  width: 100%;
}

.added {
  margin: 0.75rem 0 0;
  font-size: 1rem;
  color: var(--cream);
}

.added a {
  color: var(--gold);
}

.order-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.order-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem 1rem;
  align-items: start;
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
  font-size: 1.05rem;
}

.order-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.order-list button {
  font: inherit;
  font-size: 1rem;
  color: var(--gold);
  background: none;
  border: 0;
  padding: 0.4rem 0;
  cursor: pointer;
}

.order-list strong {
  display: block;
  color: var(--cream);
  font-size: 1.25rem;
  font-weight: 500;
}

.order-list p {
  margin: 0.35rem 0 0;
}

.order-list .kept {
  color: var(--taupe);
  font-size: 0.95rem;
}

.checkout {
  margin-top: 2rem;
  max-width: 36rem;
}

.checkout h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 2.2rem;
  margin: 0 0 1rem;
  color: var(--cream);
}

.field {
  margin: 0 0 1rem;
  scroll-margin-top: 5.5rem;
}

.field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
  color: var(--cream);
}

.field:has(input[required]) > label::after,
.field:has(textarea[required]) > label::after {
  content: " *";
  color: var(--gold);
}

.field input.is-invalid,
.field textarea.is-invalid {
  border-color: #d7a08a;
}

.field-error {
  margin: 0.4rem 0 0;
  color: #e7c2ae;
  font-size: 0.95rem;
}

.req-note {
  margin: 0 0 1rem;
  color: var(--taupe);
  font-size: 0.95rem;
}

.kit-line {
  margin: 0.4rem 0 0;
  color: var(--taupe);
  font-size: 0.95rem;
}

.wallet-row {
  display: flex;
  gap: 0.6rem;
}

.wallet-btn {
  flex: 1;
  min-height: 3rem;
  border: 0;
  font: inherit;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
}

.wallet-apple {
  background: #000;
  color: #fff;
}

.wallet-google {
  background: #fff;
  color: #1a1a1a;
}

.wallet-note {
  margin: 0.75rem 0 0;
  color: var(--taupe);
  font-size: 0.95rem;
}

.wallet-or {
  margin: 1.1rem 0 0.2rem;
  text-align: center;
  color: var(--taupe);
  font-size: 0.95rem;
}

.order-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 0;
  padding: 1rem 0 0.2rem;
  border-top: 1px solid var(--line-strong);
  color: var(--cream);
  font-size: 1.15rem;
}

.order-total strong {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
}

.form-error {
  color: #e4c7b0;
  font-size: 1rem;
  margin: 0 0 1rem;
}

.confirm h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin: 0 0 1rem;
}

@media (min-width: 1081px) {
  .nav-toggle {
    display: none;
  }
}
