:root {
  --ink: #121212;
  --muted: #6f6f6f;
  --line: #dedede;
  --soft: #f4f4f4;
  --white: #fff;
  --accent: #8b6f4f;
  --max: 1240px;
  --section-y: 64px;
  --section-y-tight: 36px;
  --section-gap: 40px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

h1,
h2,
h3,
p,
a,
button,
summary,
label,
span {
  overflow-wrap: anywhere;
}

.notice {
  display: flex;
  justify-content: center;
  gap: 44px;
  padding: 9px 18px;
  color: var(--white);
  background: var(--ink);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(150px, 220px) minmax(0, 1fr) minmax(150px, 220px);
  align-items: center;
  min-height: 82px;
  padding: 16px 44px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
}

.brand img {
  width: 160px;
  max-height: 52px;
  object-fit: contain;
}

.brand {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
}

.nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  text-transform: uppercase;
}

.primary-nav {
  grid-column: 2;
  grid-row: 1;
  justify-content: center;
  justify-self: center;
}

.header-actions {
  grid-column: 3;
  grid-row: 1;
  justify-content: flex-end;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-transform: uppercase;
  font: inherit;
  cursor: pointer;
}

.nav-dropdown-toggle span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  font-size: 0;
  line-height: 0;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 20;
  display: none;
  min-width: 250px;
  padding: 18px 26px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

.nav-dropdown-menu a {
  display: block;
  padding: 8px 0;
  color: #555;
  font-size: 18px;
  line-height: 1.25;
  text-transform: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}

.icon-button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px 0;
  background: var(--ink);
}

.search-panel {
  position: sticky;
  top: 82px;
  z-index: 9;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.search-panel form,
.newsletter form {
  display: flex;
  gap: 10px;
  max-width: 560px;
  margin: auto;
}

input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 0;
}

.button,
button[type="submit"],
.product-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  color: var(--white);
  background: var(--ink);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .04em;
  cursor: pointer;
  text-align: center;
}

.button-light {
  border-color: var(--white);
  color: var(--ink);
  background: var(--white);
}

.text-link {
  display: inline-block;
  margin-top: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - 48px));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #222;
}

.hero img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.62), rgba(0,0,0,.2) 52%, rgba(0,0,0,.48));
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(620px, calc(100% - 36px));
  margin: 0 auto 84px;
  text-align: center;
}

.hero-copy p {
  margin: 0 0 10px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .08em;
}

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

h1 {
  margin-bottom: 12px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 1;
  font-weight: 700;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(25px, 3vw, 42px);
  line-height: 1.15;
}

h3 {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.35;
}

.button-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.section,
.split-section,
.values,
.help {
  width: min(var(--max), calc(100% - 36px));
  margin: var(--section-y) auto;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: var(--section-gap);
  align-items: center;
}

.split-section img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

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

.collection-tile {
  position: relative;
  display: grid;
  min-height: 330px;
  overflow: hidden;
  background: var(--soft);
}

.collection-tile img {
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

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

.collection-tile span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(0,0,0,.68);
  text-align: center;
  font-weight: 700;
}

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

.product-card img {
  aspect-ratio: 3 / 4;
  margin-bottom: 14px;
  object-fit: cover;
  background: var(--soft);
}

.product-card h3 {
  min-height: 44px;
}

.product-card p {
  color: var(--muted);
}

.product-card button {
  width: 100%;
  margin-top: 10px;
  background: var(--white);
  color: var(--ink);
}

.promo-band {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 460px;
  margin: var(--section-y) 0;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.promo-band img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.promo-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.54);
}

.promo-band div {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 36px));
}

.values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.values article img {
  aspect-ratio: 4 / 3;
  margin-bottom: 14px;
  object-fit: cover;
}

.newsletter {
  padding: var(--section-y) 18px;
  background: var(--soft);
  text-align: center;
}

.newsletter p {
  max-width: 560px;
  margin: 0 auto 24px;
}

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

.help {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: var(--section-gap);
  padding-top: var(--section-y-tight);
  border-top: 1px solid var(--line);
}

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

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

.faq summary {
  padding: 16px 0;
  cursor: pointer;
  font-weight: 700;
}

.faq p {
  color: var(--muted);
}

.footer {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 28px;
  padding: 44px max(18px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--ink);
}

.footer a,
.footer p {
  display: block;
  margin-bottom: 9px;
  color: #d9d9d9;
}

.footer h2,
.footer h3 {
  color: var(--white);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.2);
  color: #d9d9d9;
  font-size: 12px;
}

@media (max-width: 980px) {
  :root {
    --section-y: 52px;
    --section-y-tight: 28px;
    --section-gap: 30px;
  }

  .notice {
    flex-direction: column;
    gap: 2px;
    text-align: center;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 72px;
    padding: 14px 18px;
  }

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

  .primary-nav {
    grid-column: auto;
    grid-row: auto;
    justify-content: flex-start;
    justify-self: stretch;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px 22px 24px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

  .primary-nav.open {
    display: flex;
  }

  .primary-nav a {
    width: 100%;
    padding: 13px 0;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 13px 0;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    padding: 0 0 8px 16px;
    border: 0;
    box-shadow: none;
  }

  .nav-dropdown-menu a {
    padding: 9px 0;
    font-size: 15px;
  }

  .brand img {
    width: 132px;
  }

  .header-actions {
    gap: 14px;
    font-size: 12px;
  }

  .search-toggle {
    max-width: 58px;
  }

  .search-panel {
    top: 72px;
  }

  .split-section,
  .why,
  .help {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 620px) {
  :root {
    --section-y: 38px;
    --section-y-tight: 22px;
    --section-gap: 24px;
  }

  .header-actions a:first-of-type {
    display: none;
  }

  .hero {
    min-height: min(660px, calc(100svh - 72px));
  }

  .hero-copy {
    margin-bottom: 48px;
  }

  .button-row,
  .search-panel form,
  .newsletter form,
  .cart-actions,
  .footer-bottom {
    flex-direction: column;
  }

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

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

  .product-card h3 {
    min-height: auto;
    font-size: 14px;
  }

  .product-card button,
  .button,
  button[type="submit"] {
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
  }

  .collection-tile {
    min-height: 280px;
  }

  .section,
  .split-section,
  .values,
  .help {
    margin: var(--section-y) auto;
  }
}

@media (max-width: 420px) {
  .notice {
    padding: 7px 10px;
    font-size: 10px;
  }

  .site-header {
    padding: 12px 12px;
  }

  .brand img {
    width: 112px;
  }

  .header-actions {
    gap: 10px;
    font-size: 11px;
  }

  .hero-copy {
    width: calc(100% - 24px);
  }

  .section,
  .split-section,
  .values,
  .help,
  .text-page,
  .product-detail,
  .source-page-width {
    width: calc(100% - 24px);
  }
}


.page-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 320px;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  background: #222;
}

.page-hero img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.page-hero div {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100% - 36px));
}

.page-hero p,
.vendor,
.breadcrumb {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .06em;
}

.page-hero p {
  color: var(--white);
}

.collection-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(var(--max), calc(100% - 36px));
  margin: var(--section-y-tight) auto 0;
}

select,
textarea {
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: var(--white);
  font: inherit;
}

textarea {
  min-height: 130px;
  padding-top: 14px;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(320px, .95fr);
  gap: var(--section-gap);
  width: min(var(--max), calc(100% - 36px));
  margin: var(--section-y) auto;
}

.product-gallery .main-product-image {
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
  background: var(--soft);
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.thumbs button {
  padding: 0;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}

.thumbs img {
  aspect-ratio: 1;
  object-fit: cover;
}

.product-info h1 {
  font-size: clamp(30px, 4vw, 54px);
}

.price {
  font-size: 20px;
}

.product-form {
  display: grid;
  gap: 14px;
  margin: 26px 0;
}

.product-form label,
.contact-form {
  display: grid;
  gap: 8px;
}

.button-outline {
  color: var(--ink);
  background: var(--white);
}

.rte {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.text-page {
  width: min(900px, calc(100% - 36px));
  margin: var(--section-y) auto;
}

.text-page h1 {
  color: var(--ink);
  font-size: clamp(36px, 5vw, 64px);
}
.managed-content > :last-child { margin-bottom:0; }
.managed-content h2 { margin-top:36px; color:var(--ink); }
.managed-content h3 { margin-top:26px; color:var(--ink); }
.managed-content table { width:100%; margin:24px 0; border-collapse:collapse; }
.managed-content th,.managed-content td { padding:12px; border:1px solid var(--line); text-align:left; }

.contact-form,
.search-large {
  display: grid;
  gap: 14px;
  max-width: 620px;
  margin-top: 28px;
}
.form-trap { position:absolute!important; left:-10000px!important; width:1px!important; height:1px!important; overflow:hidden!important; }
.form-success { padding:14px; border-left:3px solid #25734f; background:#edf8f1; }
.tracking-result { margin-top:28px; padding:22px; border:1px solid var(--line); }
.account-heading { display:flex; justify-content:space-between; align-items:start; gap:20px; }
.customer-orders { display:grid; }
.customer-orders article { display:grid; grid-template-columns:1.4fr 1fr 1fr auto; gap:12px; padding:14px 0; border-top:1px solid var(--line); }

.size-table {
  width: 100%;
  margin-top: 28px;
  border-collapse: collapse;
}

.size-table th,
.size-table td {
  padding: 14px;
  border: 1px solid var(--line);
  text-align: left;
}

.cart-line {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line img {
  aspect-ratio: 1;
  object-fit: cover;
}

.cart-line button {
  min-height: 40px;
  border: 1px solid var(--line);
  background: var(--white);
}

.cart-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  max-width: 320px;
  padding: 14px 18px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
}

.blog-card {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.about-page {
  width: min(72.6rem, calc(100% - 36px));
  padding-top: 28px;
  padding-bottom: 28px;
}

.about-rte h2 {
  margin-top: 34px;
}

.about-rte h3 {
  margin-top: 24px;
}

.about-rte hr {
  margin: 32px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.about-rte a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.source-page-width {
  width: min(var(--max), calc(100% - 36px));
  margin-left: auto;
  margin-right: auto;
}

.source-collection-hero {
  padding: var(--section-y-tight) 0 18px;
  background: var(--white);
}

.source-collection-hero h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 52px);
  line-height: 1.15;
  font-weight: 400;
}

.source-collection-wrap {
  padding: 12px 0 var(--section-y);
}

.source-facets-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  margin-bottom: 24px;
}

.source-facet-left,
.source-facet-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.source-facet-left h2,
.source-facet-right label,
.source-product-count,
.source-remove-all {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.source-filter {
  position: relative;
}

.source-filter summary {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 42px;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
}

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

.source-filter summary::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.source-filter-panel {
  position: absolute;
  top: 44px;
  left: 0;
  z-index: 5;
  min-width: 280px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(0,0,0,.08);
}

.source-filter-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 12px;
}

.source-filter-panel label {
  display: block;
  margin: 12px 0;
  color: var(--ink);
}

.source-filter-panel .disabled {
  color: #a6a6a6;
}

.price-panel {
  min-width: 330px;
}

.price-panel input {
  min-height: 42px;
  margin-top: 6px;
}

.source-facet-right select {
  min-width: 190px;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.source-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 18px;
  padding: 0;
  list-style: none;
}

.source-card-media {
  display: block;
  background: var(--soft);
}

.source-card-media img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.source-card-info {
  padding-top: 12px;
}

.source-card-info h3 {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.source-price {
  color: var(--muted);
  font-size: 14px;
}

.source-mobile-facets {
  display: none;
  margin-bottom: 22px;
}

.source-mobile-facets summary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 13px;
}

@media (max-width: 860px) {
  .product-detail,
  .cart-line {
    grid-template-columns: 1fr;
  }

  .product-detail {
    gap: 28px;
    margin: var(--section-y) auto;
  }

  .cart-line img {
    width: 140px;
  }

  .source-facets {
    display: none;
  }

  .source-mobile-facets {
    display: block;
  }

  .source-mobile-facets .source-filter-panel {
    position: static;
    min-width: 0;
    margin-top: 12px;
    box-shadow: none;
  }

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

@media (max-width: 520px) {
  .source-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 12px;
  }

  .source-card-info h3 {
    font-size: 14px;
  }

  .source-price {
    font-size: 13px;
  }
}
