:root {
  color-scheme: light;
  --ink: #121212;
  --copy: rgba(18, 18, 18, 0.74);
  --muted: rgba(18, 18, 18, 0.56);
  --line: #e5e1dc;
  --paper: #ffffff;
  --soft: #f7f7f4;
  --black: #111111;
  --teal: #88c6c6;
  --orange: #ee5b2a;
  --shadow: 0 20px 50px rgba(18, 18, 18, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--copy);
  font-family: Murecho, Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body:has(dialog[open]) {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 100;
  padding: 10px 12px;
  background: var(--black);
  color: #fff;
}

.skip-link:focus {
  top: 12px;
}

.announcement {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  min-height: 38px;
  padding: 8px clamp(18px, 5vw, 74px);
  background: var(--black);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.announcement span:first-child {
  justify-self: start;
}

.announcement a {
  justify-self: end;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 170px 1fr 170px;
  align-items: center;
  gap: 24px;
  min-height: 140px;
  padding: 18px clamp(18px, 6vw, 84px);
  border-bottom: 1px solid rgba(18, 18, 18, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.brand {
  justify-self: start;
}

.brand img {
  width: 120px;
  height: auto;
}

.site-header nav,
.header-tools,
footer nav {
  display: flex;
  align-items: center;
}

.site-header nav {
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.site-header nav a,
footer a {
  color: var(--ink);
  font-size: 15px;
  text-decoration: none;
}

.site-header nav a:hover,
footer a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.site-header nav a[aria-current="page"] {
  color: var(--orange);
  font-weight: 900;
}

.header-tools {
  justify-content: end;
  gap: 18px;
}

.icon-link,
.icon-button {
  position: relative;
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.icon-link svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

#cartCount {
  position: absolute;
  right: -5px;
  top: -5px;
  display: grid;
  min-width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.menu-button {
  display: none;
}

.menu-button span {
  width: 21px;
  height: 1.5px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--black);
}

.hero picture,
.hero img {
  width: 100%;
  height: 100%;
}

.hero picture {
  display: block;
  position: absolute;
  inset: 0;
}

.hero img {
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.45));
}

.hero-cta {
  position: absolute;
  inset-inline: 0;
  bottom: clamp(56px, 9vw, 88px);
  z-index: 2;
  display: flex;
  justify-content: center;
}

.pill-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 30px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.pill-button:hover,
.button:hover {
  transform: translateY(-1px);
}

.pill-button.light {
  border: 4px solid #fff;
  color: #fff;
}

.pill-button.light:hover {
  background: #fff;
  color: var(--ink);
}

.pill-button.dark,
.button.primary {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
}

.button.primary:disabled {
  border-color: #b9b4ae;
  background: #b9b4ae;
  cursor: not-allowed;
  transform: none;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(44px, 6vw, 84px) clamp(18px, 7vw, 110px);
}

.story-grid article {
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 500;
  line-height: 1.12;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(42px, 6vw, 72px);
}

h2 {
  margin-bottom: 10px;
  font-size: clamp(30px, 4.3vw, 56px);
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
}

.story-grid p:not(.eyebrow),
.custom-band p,
.seo-copy p {
  font-size: 17px;
}

.collection-band {
  background: var(--black);
  color: #fff;
}

.collection-band h2,
.collection-band .eyebrow {
  color: #fff;
}

.section-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(44px, 6vw, 76px) 0;
}

.section-heading {
  margin-bottom: 28px;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.section-heading.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading.split > p {
  margin-bottom: 14px;
  color: var(--muted);
  font-weight: 700;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.collection-card {
  position: relative;
  display: flex;
  min-height: 260px;
  align-items: end;
  overflow: hidden;
  border-radius: 0;
  background: #222;
  isolation: isolate;
  text-decoration: none;
}

.collection-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72));
}

.collection-card:hover img {
  transform: scale(1.035);
}

.collection-card-content {
  padding: 18px;
}

.collection-card strong {
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
}

.collection-card span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.featured-band {
  background: #fff;
}

.toolbar {
  display: grid;
  grid-template-columns: 1fr minmax(230px, 320px);
  gap: 14px;
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--soft);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  min-height: 46px;
  width: 100%;
  border: 1px solid #d7d2cc;
  border-radius: 0;
  padding: 10px 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 18px;
}

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

.product-card {
  min-width: 0;
  background: #fff;
}

.product-card-image {
  position: relative;
  overflow: hidden;
  background: var(--soft);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
  transition: transform 220ms ease;
}

.product-card:hover img {
  transform: scale(1.025);
}

.badge {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 5px 8px;
  background: rgba(17, 17, 17, 0.86);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.product-card-body {
  display: grid;
  gap: 8px;
  padding: 12px 0 0;
}

.product-card strong {
  display: -webkit-box;
  min-height: 42px;
  overflow: hidden;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.price {
  color: var(--ink);
  font-weight: 800;
}

.product-card p {
  display: -webkit-box;
  min-height: 38px;
  overflow: hidden;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
}

button,
.button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 0;
  padding: 9px 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.custom-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(42px, 6vw, 78px) clamp(18px, 7vw, 110px);
  background: var(--teal);
}

.custom-band > div {
  max-width: 830px;
}

.custom-band .eyebrow {
  color: var(--ink);
}

.seo-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  padding: clamp(40px, 6vw, 72px) clamp(18px, 7vw, 110px);
  background: var(--soft);
}

.seo-copy h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.page-hero {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 7vw, 110px);
  background: var(--soft);
}

.page-hero h1,
.page-hero p {
  max-width: 860px;
}

.page-hero p:not(.eyebrow) {
  color: var(--copy);
  font-size: clamp(18px, 2vw, 23px);
}

.content-grid,
.faq-list {
  display: grid;
  gap: 28px;
  padding: clamp(42px, 6vw, 78px) clamp(18px, 7vw, 110px);
}

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

.content-grid article,
.faq-list article {
  min-width: 0;
}

.content-grid h2,
.faq-list h2 {
  font-size: clamp(24px, 3vw, 36px);
}

.plain-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--copy);
  font-size: 17px;
}

.contact-grid a:not(.pill-button),
.faq-list a {
  color: var(--ink);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.contact-form .pill-button {
  width: fit-content;
  margin-top: 4px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-result {
  display: grid;
  min-height: 100vh;
  align-content: center;
  justify-items: start;
  padding: clamp(48px, 8vw, 110px);
  background: var(--soft);
}

.form-result h1,
.form-result p {
  max-width: 760px;
}

.form-result p:not(.eyebrow) {
  color: var(--copy);
  font-size: clamp(18px, 2vw, 23px);
}

.email-copy-notice {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  max-width: min(340px, calc(100vw - 36px));
  padding: 12px 14px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.email-copy-notice.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

.faq-list article {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.standalone-collections .section-inner {
  padding-top: clamp(42px, 6vw, 74px);
}

.collection-grid.all-collections {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(220px, 1fr) minmax(240px, 1.25fr);
  align-items: start;
  gap: clamp(28px, 6vw, 76px);
  padding: 36px clamp(18px, 7vw, 110px);
  background: #111111;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer h2 {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.25;
}

.site-footer p,
.site-footer address {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
}

.site-footer nav {
  display: grid;
  gap: 16px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 5px;
}

dialog {
  width: min(980px, calc(100vw - 24px));
  max-height: min(820px, calc(100vh - 24px));
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: var(--shadow);
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.66);
}

.dialog-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 42px;
  height: 42px;
  padding: 0;
  border-color: rgba(18, 18, 18, 0.14);
  background: rgba(255, 255, 255, 0.92);
  font-size: 28px;
}

.dialog-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.dialog-layout img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  background: var(--soft);
}

.dialog-copy {
  overflow: auto;
  max-height: min(820px, calc(100vh - 24px));
  padding: 42px;
}

.dialog-copy h2 {
  font-size: clamp(26px, 3.2vw, 42px);
}

.dialog-copy p {
  color: var(--copy);
}

.dialog-copy ul {
  columns: 2;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
}

.modal-cart-controls {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.cart-scrim {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.48);
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 70;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(430px, 100vw);
  height: 100vh;
  background: #fff;
  box-shadow: -20px 0 50px rgba(18, 18, 18, 0.18);
  transform: translateX(100%);
  transition: transform 180ms ease;
}

.cart-panel[aria-hidden="false"] {
  transform: translateX(0);
}

.cart-panel-header,
.cart-summary {
  padding: 22px;
}

.cart-panel-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.cart-panel-header h2 {
  margin-bottom: 0;
  font-size: 30px;
}

.cart-close {
  width: 40px;
  height: 40px;
  padding: 0;
  border-color: rgba(18, 18, 18, 0.14);
  font-size: 27px;
}

.cart-items {
  overflow: auto;
  padding: 18px 22px;
}

.empty-cart {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.cart-item {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 76px;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--soft);
}

.cart-item strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
}

.cart-item span {
  color: var(--muted);
  font-size: 12px;
}

.cart-item b {
  color: var(--ink);
  font-size: 13px;
}

.cart-item-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin-top: 9px;
}

.cart-item-actions button {
  min-height: 30px;
  padding: 4px 9px;
  font-size: 12px;
}

.cart-summary {
  display: grid;
  gap: 14px;
  border-top: 1px solid var(--line);
  background: var(--soft);
}

.cart-summary > div,
.checkout-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink);
  font-weight: 900;
}

.cart-summary p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

#checkoutDialog {
  width: min(620px, calc(100vw - 24px));
}

.checkout-form {
  display: grid;
  gap: 14px;
  padding: 36px;
}

.checkout-form h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 42px);
}

.checkout-form p {
  margin-bottom: 4px;
}

.checkout-form output {
  min-height: 22px;
  color: var(--orange);
  font-weight: 900;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 90px 1fr 120px;
    min-height: 112px;
  }

  .brand {
    justify-self: center;
  }

  .brand img {
    width: 106px;
  }

  .menu-button {
    display: inline-grid;
    justify-self: start;
  }

  .site-header nav {
    display: none;
  }

  .site-header.nav-open nav {
    position: absolute;
    inset: 100% 18px auto;
    display: grid;
    justify-content: stretch;
    gap: 0;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-header.nav-open nav a {
    padding: 15px 18px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
    font-weight: 800;
  }

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

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

@media (max-width: 720px) {
  .announcement {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 2px;
    min-height: 52px;
    padding-block: 7px;
    text-align: center;
  }

  .announcement span:first-child,
  .announcement a {
    justify-self: center;
  }

  .site-header {
    grid-template-columns: 54px 1fr 112px;
    gap: 8px;
    min-height: 88px;
    padding: 9px 18px;
  }

  .header-tools {
    gap: 8px;
  }

  .brand img {
    width: 88px;
  }

  .hero {
    display: grid;
    min-height: 0;
    background: #fff;
  }

  .hero img {
    height: auto;
    object-fit: contain;
    object-position: center top;
    background: #fff;
  }

  .hero::after {
    display: none;
  }

  .hero-cta {
    position: static;
    padding: 14px 20px 24px;
    background: #fff;
  }

  .hero picture {
    position: static;
    height: auto;
  }

  .hero-cta .pill-button {
    border-color: var(--ink);
    background: var(--ink);
    color: #fff;
  }

  .story-grid,
  .seo-copy,
  .content-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .story-grid,
  .custom-band,
  .seo-copy,
  .content-grid,
  .faq-list,
  .page-hero {
    padding-inline: 20px;
  }

  .section-inner {
    width: min(100% - 28px, 1180px);
  }

  .section-heading.split,
  .custom-band,
  footer {
    display: grid;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .toolbar {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

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

  .collection-card {
    min-height: 190px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 12px;
  }

  .product-card img {
    aspect-ratio: 1 / 1.26;
  }

  .product-card-actions {
    grid-template-columns: 1fr;
  }

  .button,
  button {
    min-height: 38px;
    padding-inline: 8px;
    font-size: 12px;
  }

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

  .dialog-layout img {
    min-height: 320px;
    max-height: 430px;
  }

  .dialog-copy {
    padding: 28px 20px;
  }

  .dialog-copy ul {
    columns: 1;
  }

  .cart-panel {
    width: min(390px, 100vw);
  }

  .cart-item {
    grid-template-columns: 66px 1fr;
  }

  .cart-item img {
    width: 66px;
  }

  .cart-item b {
    grid-column: 2;
  }

  .checkout-form {
    padding: 30px 18px;
  }
}

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

  .collection-grid.all-collections {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }
}
