:root {
  --cocoa: #4b2118;
  --cocoa-deep: #2d120d;
  --cream: #fff8ee;
  --paper: #fffdf8;
  --caramel: #d38a49;
  --rose: #e9b7a8;
  --sage: #9bad84;
  --ink: #2b201d;
  --muted: #76635d;
  --line: #ead9cb;
  --shadow: 0 18px 55px rgba(75, 33, 24, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(233, 183, 168, .28), transparent 28rem),
    radial-gradient(circle at 95% 18%, rgba(155, 173, 132, .18), transparent 24rem),
    var(--cream);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
  font-size: 16px;
  line-height: 1.72;
}

a { color: var(--cocoa); text-decoration-thickness: .08em; text-underline-offset: .18em; }
a:hover { color: #8a3f2e; }
.skip-link { position: absolute; top: -5rem; left: 1rem; z-index: 100; padding: .7rem 1rem; background: white; }
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  color: white;
  background: rgba(75, 33, 24, .96);
  border-bottom: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(12px);
}
.header-inner {
  width: min(1180px, calc(100% - 2rem));
  min-height: 88px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.wordmark { color: white; text-decoration: none; text-transform: uppercase; line-height: .9; letter-spacing: .02em; }
.wordmark:hover { color: white; }
.wordmark-kicker { display: block; margin: 0 0 .35rem .12rem; color: var(--rose); font-size: .72rem; letter-spacing: .27em; }
.wordmark-main { display: block; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.55rem, 3vw, 2.25rem); font-weight: 700; letter-spacing: -.04em; text-transform: none; }
.primary-nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .35rem; }
.primary-nav a { padding: .45rem .7rem; color: white; border-radius: 999px; font-size: .86rem; text-decoration: none; }
.primary-nav a:hover, .primary-nav a:focus-visible { color: var(--cocoa-deep); background: var(--rose); }
.route-label { width: min(1120px, calc(100% - 2rem)); margin: 1.2rem auto 0; color: var(--muted); font-size: .72rem; letter-spacing: .06em; overflow-wrap: anywhere; }

.site-main { width: min(1120px, calc(100% - 2rem)); margin: 1rem auto 5rem; }
.site-main > section,
.site-main > div,
.site-main > article,
.site-main > .shopify-section {
  margin-block: 1.4rem;
}
.page-width,
.rich-text__wrapper,
.collection-hero__inner,
.article-template,
.main-page-title,
.product,
.product__info-wrapper { width: 100%; max-width: 100%; }

h1, h2, h3, h4, h5, h6 {
  color: var(--cocoa-deep);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.13;
  text-wrap: balance;
}
h1 { margin: 0 0 1rem; font-size: clamp(2.4rem, 7vw, 5.35rem); letter-spacing: -.055em; }
h2 { margin: 2.5rem 0 .8rem; font-size: clamp(1.7rem, 4vw, 3rem); letter-spacing: -.035em; }
h3 { margin: 1.8rem 0 .6rem; font-size: clamp(1.25rem, 2.6vw, 1.8rem); }
h4, h5, h6 { font-size: 1.1rem; }
p, li { max-width: 78ch; }
p { margin: .75rem 0; }
ul, ol { padding-left: 1.35rem; }
li + li { margin-top: .35rem; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }

.rich-text,
.collection-hero,
.article-template,
.main-page,
.image-with-text,
.product:not(.card),
.content-container,
.collapsible-content,
.newsletter,
.contact,
.multicolumn {
  padding: clamp(1.3rem, 4vw, 3.6rem);
  background: rgba(255, 253, 248, .9);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.rich-text .rich-text,
.content-container .content-container,
.product .content-container,
.multicolumn .content-container { padding: 0; background: transparent; border: 0; border-radius: 0; box-shadow: none; }
.rich-text:first-of-type,
.site-main > section:first-of-type .rich-text,
.collection-hero:first-of-type {
  background: linear-gradient(135deg, #fff4df, #f7d9cd 58%, #dce5cf);
}

.product-grid, .multicolumn-list, .collection-list, .articles-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  list-style: none;
}
.grid__item, .multicolumn-list__item { min-width: 0; margin: 0; }
.card-wrapper, .multicolumn-card, .article-card {
  height: 100%;
  padding: 1.25rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(75, 33, 24, .07);
}
.card__heading, .multicolumn-card h3 { margin-top: 0; }
.price { margin-top: auto; color: var(--cocoa); font-weight: 700; }
.price__container, .card__information { display: flex; flex-direction: column; gap: .3rem; }
.badge { display: inline-block; padding: .25rem .55rem; background: var(--rose); border-radius: 999px; font-size: .76rem; }

.product { display: grid; grid-template-columns: minmax(0, 1fr); gap: 1.5rem; }
.product__media-wrapper, .media, .card__media, .image-with-text__media-item { display: none !important; }
.image-with-text__grid, .image-with-text__text-item, .image-with-text__content { display: block; width: 100%; max-width: none; }
.image-with-text .content-container { padding: 0; background: transparent; border: 0; border-radius: 0; box-shadow: none; }
.product__info-container { max-width: 820px; }
.product__title h1, .product__title h2 { font-size: clamp(2.2rem, 6vw, 4.6rem); }
.product-form, .product-form__buttons { display: flex; flex-wrap: wrap; gap: .75rem; align-items: end; }
button, select, textarea {
  max-width: 100%;
  padding: .72rem .9rem;
  color: var(--ink);
  background: #f7eee6;
  border: 1px solid #d9bbaa;
  border-radius: 10px;
  font: inherit;
}
button { color: white; background: var(--cocoa); opacity: .72; }

details { margin: .7rem 0; padding: .9rem 1rem; background: #fffaf4; border: 1px solid var(--line); border-radius: 14px; }
summary { cursor: pointer; color: var(--cocoa); font-weight: 700; }
blockquote { margin: 1.5rem 0; padding: .5rem 1.2rem; border-left: 4px solid var(--caramel); color: var(--muted); }
table { width: 100%; border-collapse: collapse; }
th, td { padding: .7rem; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.pagination__list { display: flex; gap: .5rem; list-style: none; padding: 0; }
.breadcrumbs { margin-bottom: 1rem; color: var(--muted); font-size: .83rem; }
.large-up-hide { display: none !important; }

.site-footer { color: #f8ede5; background: var(--cocoa-deep); }
.footer-inner { width: min(1120px, calc(100% - 2rem)); margin: auto; padding: 3rem 0 2rem; display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2rem; }
.site-footer h2 { margin: 0 0 .7rem; color: var(--rose); font: 700 1rem/1.3 ui-monospace, monospace; }
.site-footer p { margin: 0; color: #eadbd2; }
.footer-brand { margin-bottom: .8rem; color: white; font: 700 2rem/1 Georgia, serif; }
.copyright { width: min(1120px, calc(100% - 2rem)); margin: auto !important; padding: 1.2rem 0 2rem; border-top: 1px solid rgba(255,255,255,.14); font-size: .82rem; }

@media (max-width: 820px) {
  .header-inner { align-items: flex-start; flex-direction: column; gap: .8rem; padding: 1rem 0; }
  .primary-nav { justify-content: flex-start; }
  .product-grid, .multicolumn-list, .collection-list, .articles-wrapper { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-inner { grid-template-columns: 1fr; }
  .small-hide { display: none !important; }
  .large-up-hide { display: block !important; }
}

@media (max-width: 540px) {
  body { font-size: 15px; }
  .site-main, .route-label, .header-inner, .footer-inner, .copyright { width: min(100% - 1rem, 1120px); }
  .product-grid, .multicolumn-list, .collection-list, .articles-wrapper { grid-template-columns: 1fr; }
  .rich-text, .collection-hero, .article-template, .main-page, .image-with-text, .product:not(.card), .content-container, .collapsible-content, .newsletter, .contact, .multicolumn { border-radius: 18px; }
  .primary-nav a { padding: .35rem .5rem; font-size: .78rem; }
}

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