@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");
:root {
  --paper: #faf8f3;
  --ink: #322b24;
  --muted: #756e61;
  --line: #ddd7ca;
  --sand: #eae3d5;
  --accent: #8a6a43;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
  opacity: 0.55;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid #9c7351;
  outline-offset: 4px;
}
[hidden] {
  display: none !important;
}
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--paper);
}
.announcement {
  text-align: center;
  background: var(--ink);
  color: var(--paper);
  font-size: 10px;
  letter-spacing: 2px;
  padding: 12px;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 27px 5%;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 17px;
}
.brand span {
  font-size: 23px;
  font-weight: 800;
  letter-spacing: 4px;
}
.brand b {
  font-weight: 400;
  color: #aa987f;
}
.brand img {
  width: 74px;
  height: auto;
}
nav {
  display: flex;
  gap: 33px;
  align-items: center;
  font-size: 12px;
}
.bag-button {
  border: 0;
  background: none;
  padding: 5px;
  font-size: 12px;
}
.bag-button span {
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: 50%;
  padding: 4px 7px;
  margin-left: 8px;
  font-size: 10px;
}
.hero {
  max-width: 1500px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 660px;
}
.hero-copy {
  padding: 80px 10% 45px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.eyebrow {
  font-size: 9px;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--accent);
}
h1,
h2 {
  font-family: Manrope, sans-serif;
  font-weight: 500;
  letter-spacing: -2px;
}
h1 {
  font-size: clamp(45px, 5.4vw, 79px);
  line-height: 1.05;
  letter-spacing: -4px;
  margin: 27px 0;
}
h2 {
  font-size: 42px;
  line-height: 1.17;
  margin: 15px 0;
}
.hero-copy > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.9;
  font-size: 14px;
}
.primary {
  background: var(--ink);
  color: white;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 17px 23px;
  font-size: 12px;
  border-radius: 2px;
}
.hero .primary {
  margin-top: 26px;
  min-width: 235px;
}
.primary:hover {
  background: #51422f;
}
.hero-foot {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  margin-top: 76px;
  font-size: 8px;
  letter-spacing: 1.2px;
  color: var(--muted);
}
.hero-art {
  background: #ded4bd;
  padding: 52px 18%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.paper {
  background: #f9f7ef;
  padding: 20px;
  box-shadow: 2px 12px 20px #45351d26;
  transform: rotate(3deg);
  max-width: 345px;
  width: 100%;
}
.paper img {
  display: block;
  width: 100%;
  height: auto;
}
.art-caption {
  font-size: 8px;
  letter-spacing: 1px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  margin-top: 45px;
}
.collection {
  padding: 75px 5% 85px;
  max-width: 1500px;
  margin: auto;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 34px;
}
.section-head > p {
  font-size: 12px;
  color: var(--muted);
}
.launch-status {
  font-size: 10px;
  color: var(--accent);
  padding-bottom: 20px;
  margin: 0;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.product-picture {
  background: #eee9de;
  aspect-ratio: 1/1.05;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-picture > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
}
.product-picture.print > img {
  width: 73%;
  height: 83%;
  object-fit: contain;
  background: #fffdf6;
  padding: 16px;
  box-shadow: 0 8px 18px #322b2420;
  transform: rotate(-3deg);
}
.product-tag {
  font-size: 8px;
  letter-spacing: 1.7px;
  color: var(--accent);
  margin: 24px 0 9px;
}
.product-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}
.product-title h3 {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.5px;
  margin: 0;
}
.product-title span {
  font-size: 14px;
}
.product-description {
  font-size: 12px;
  line-height: 1.85;
  min-height: 44px;
  color: var(--muted);
}
.product-select {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  align-items: end;
}
.product-select label {
  font-size: 9px;
  color: var(--muted);
  display: grid;
  gap: 5px;
  flex: 1;
}
.product-select select {
  width: 100%;
  min-width: 0;
  font-size: 11px;
  padding: 12px 10px;
  background: transparent;
  border: 1px solid #cfc6b6;
  border-radius: 2px;
  color: var(--ink);
}
.product-select button {
  padding: 13px 18px;
  white-space: nowrap;
  font-size: 11px;
  min-height: 41px;
}
.product details {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 13px;
}
.product summary {
  font-size: 10px;
  cursor: pointer;
}
.product li {
  font-size: 10px;
  color: var(--muted);
  line-height: 2;
}
.product .proposed {
  font-size: 9px;
  color: var(--muted);
  margin-top: 12px;
}
.story {
  padding: 75px 10%;
  background: #e9e3d7;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.story h2 {
  font-size: 56px;
}
.story > div:last-child {
  align-self: center;
  max-width: 370px;
}
.story p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
}
.small-rule {
  width: 50px;
  height: 1px;
  background: #b6a68b;
  margin: 28px 0;
}
.small {
  font-size: 11px !important;
  line-height: 1.8;
  color: var(--muted);
}
.pay-story {
  padding: 70px 10%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  border-bottom: 1px solid var(--line);
}
.pay-story p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
}
.pay-story > div:last-child {
  align-self: center;
}
.payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}
.payment-badges span {
  border: 1px solid #cfc6b7;
  padding: 9px 12px;
  border-radius: 25px;
  font-size: 10px;
}
.pay-story a {
  font-size: 10px;
  text-decoration: underline;
}
.questions {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  padding: 70px 10% 80px;
  max-width: 1500px;
  margin: auto;
}
.questions h2 {
  margin-top: 0;
}
.questions details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.questions details:first-child {
  padding-top: 0;
}
.questions summary {
  list-style: none;
  cursor: pointer;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.questions summary:after {
  content: "+";
}
.questions details[open] summary:after {
  content: "−";
}
.questions p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.9;
  margin-right: 25px;
}
footer {
  border-top: 1px solid var(--line);
  padding: 35px 5%;
  display: flex;
  gap: 30px;
  align-items: center;
}
footer p {
  font-size: 11px;
  color: var(--muted);
  margin-left: auto;
}
footer small {
  font-size: 9px;
  color: var(--muted);
}
dialog {
  width: min(95vw, 550px);
  max-height: 90vh;
  border: 1px solid var(--line);
  padding: 30px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 5px;
  box-shadow: 0 24px 100px #322b2440;
}
dialog::backdrop {
  background: #322b2470;
  backdrop-filter: blur(3px);
}
.dialog-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.dialog-head h2 {
  font-size: 30px;
  margin: 0;
}
.icon-button {
  background: none;
  border: 0;
  font-size: 27px;
  line-height: 1;
  padding: 7px;
}
.bag-line {
  display: grid;
  grid-template-columns: 65px 1fr auto;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  align-items: start;
}
.bag-line img {
  width: 65px;
  height: 76px;
  object-fit: contain;
  background: var(--sand);
}
.bag-line h3 {
  font-size: 13px;
  font-weight: 500;
  margin: 0 0 5px;
}
.bag-line p {
  font-size: 10px;
  margin: 0 0 9px;
  color: var(--muted);
}
.quantity {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 12px;
}
.quantity button[data-qty] {
  border: 1px solid var(--line);
  background: none;
  width: 25px;
  height: 25px;
}
.quantity .remove {
  border: 0;
  background: none;
  text-decoration: underline;
  font-size: 11px;
  color: var(--muted);
  margin-left: 4px;
  padding: 6px 0;
  width: auto;
  height: auto;
  text-underline-offset: 3px;
}
.bag-line > strong {
  font-size: 12px;
  font-weight: 500;
}
.bag-total {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
  font-size: 15px;
}
.full {
  width: 100%;
  margin-top: 22px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-grid label {
  display: grid;
  gap: 7px;
  font-size: 11px;
}
.form-grid .wide {
  grid-column: 1/-1;
}
input,
select {
  background: white;
  border: 1px solid #cbc2b2;
  border-radius: 2px;
  padding: 11px;
  min-width: 0;
  width: 100%;
  font-size: 13px;
  color: var(--ink);
}
.error {
  font-size: 12px;
  color: #99422d;
  line-height: 1.7;
}
.closed-symbol {
  font-size: 50px;
  color: #a7987c;
}
.closed-symbol + h3 {
  font-size: 25px;
  font-weight: 500;
  margin: 10px 0;
}
#checkout-closed p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
}
.quote-row {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
#payment-buttons {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}
#payment-buttons button {
  margin: 0;
}
#mpp-command {
  display: block;
  padding: 14px;
  background: var(--sand);
  font-size: 10px;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}
.agent-payment {
  margin-top: 22px;
  font-size: 11px;
}
.agent-payment summary {
  cursor: pointer;
}
#lightning-invoice {
  text-align: center;
}
#lightning-invoice img {
  display: block;
  width: 240px;
  max-width: 100%;
  margin: 20px auto;
}
#lightning-invoice textarea {
  width: 100%;
  height: 65px;
  font-size: 9px;
}
#toast {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 22px;
  background: var(--ink);
  color: white;
  border-radius: 4px;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
#toast.visible {
  opacity: 1;
}
.receipt-page {
  max-width: 650px;
  margin: 70px auto;
  padding: 30px;
}
.receipt-page h1 {
  font-size: 45px;
  letter-spacing: -2px;
}
.receipt-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 5px;
}
.receipt-card code {
  overflow-wrap: anywhere;
  font-size: 11px;
}
.receipt-page .primary {
  margin-top: 25px;
}
@media (max-width: 750px) {
  header {
    padding: 20px 6%;
  }
  .brand {
    gap: 10px;
  }
  .brand span {
    font-size: 19px;
  }
  .brand img {
    width: 60px;
  }
  nav {
    gap: 15px;
  }
  nav > a {
    display: none;
  }
  .announcement {
    font-size: 7px;
    letter-spacing: 1.2px;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-copy {
    padding: 45px 7% 32px;
  }
  h1 {
    font-size: 55px;
    letter-spacing: -3px;
    margin: 20px 0;
  }
  .hero-foot {
    margin-top: 32px;
  }
  .hero-art {
    padding: 40px 24% 25px;
  }
  .paper {
    padding: 12px;
  }
  .art-caption {
    font-size: 6px;
    gap: 10px;
    white-space: nowrap;
    margin-top: 30px;
    width: 150%;
  }
  .collection {
    padding: 45px 6%;
  }
  h2 {
    font-size: 35px;
  }
  .section-head {
    display: block;
    margin-bottom: 26px;
  }
  .section-head > p {
    margin-top: 20px;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .product-picture {
    aspect-ratio: 1/1;
  }
  .product-title h3 {
    font-size: 21px;
  }
  .product-description {
    min-height: 0;
  }
  .product-select select {
    font-size: 12px;
  }
  .product-select button {
    flex: 1;
    justify-content: center;
  }
  .story,
  .pay-story {
    padding: 45px 7%;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .story h2 {
    font-size: 44px;
  }
  .story > div:last-child {
    max-width: none;
  }
  .questions {
    display: block;
    padding: 45px 7%;
  }
  .questions h2 {
    margin-bottom: 30px;
  }
  footer {
    flex-wrap: wrap;
    padding: 30px 6%;
    gap: 18px;
  }
  footer p {
    margin: 0;
  }
  footer small {
    width: 100%;
  }
  dialog {
    padding: 23px;
  }
  .desktop {
    display: none;
  }
  .receipt-page {
    margin: 30px auto;
    padding: 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}

/* The collection starts at the products, followed directly by the FAQ. */
.collection {
  padding-top: 48px;
  padding-bottom: 72px;
}
.section-head {
  margin-bottom: 24px;
}
.section-head h1 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -2px;
}
.section-head > p {
  line-height: 1.7;
}
.faq-heading > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}
.faq-form {
  margin-top: 24px;
}
.faq-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 12px;
}
.faq-input {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
  padding: 5px;
}
.faq-input input {
  border: 0;
  border-radius: 6px;
  background: transparent;
  min-width: 0;
  width: 100%;
  padding: 13px;
}
.faq-input button {
  flex: 0 0 46px;
  border: 0;
  border-radius: 6px;
  color: var(--paper);
  background: var(--ink);
  font-size: 23px;
}
.faq-disclosure {
  line-height: 1.5;
  color: var(--muted);
  font-size: 11px;
}
.faq-answer-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
}
.faq-answer p {
  white-space: pre-wrap;
}
.faq-answer {
  margin-top: 18px;
}
.product-title > span {
  white-space: nowrap;
}
@media (max-width: 600px) {
  .collection {
    padding-top: 30px;
  }
  .section-head h1 {
    font-size: 34px;
  }
  .faq-input input {
    font-size: 16px;
  }
}
