:root {
  --page: #ffffff;
  --ink: #111111;
  --muted: #8d8d8d;
  --line: #ececec;
  --soft: #f7f3f1;
  --soft-2: #efe8e3;
  --rose: #c66c78;
  --rose-dark: #9d4c56;
  --footer: #030303;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

body.cart-open {
  overflow: hidden;
}

body.body-locked {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(157, 76, 86, 0.45);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.top-strip {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1580px;
  margin: 0 auto;
  padding: 0 56px;
  color: #272727;
  font-size: 14px;
  font-weight: 500;
}

.top-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.top-location svg {
  width: 18px;
  height: 18px;
  fill: var(--ink);
  stroke: none;
  flex: 0 0 auto;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
}

.brand-mobile,
.mobile-location-icon,
.mobile-title,
.mobile-cta,
.home-mobile-links {
  display: none;
}

.main-nav {
  height: 86px;
  max-width: 1580px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand-word {
  font-size: 45px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  font-size: 17px;
  font-weight: 500;
  white-space: nowrap;
}

.nav-links a,
.footer-nav a,
.top-link {
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-current,
.footer-nav a:hover,
.top-link:hover {
  color: var(--rose);
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-button,
.nav-toggle,
.collapse-mark {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.icon-button {
  position: relative;
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
}

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

.cart-count {
  position: absolute;
  top: -7px;
  right: -8px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--rose);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.cart-count[hidden] {
  display: none;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 104px 56px 24px;
}

.cart-overlay[hidden] {
  display: none;
}

.cart-backdrop {
  appearance: none;
  border: 0;
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 3, 0.28);
  padding: 0;
  cursor: pointer;
}

.cart-panel {
  position: relative;
  z-index: 1;
  width: min(500px, calc(100vw - 112px));
  max-height: calc(100dvh - 128px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  background: #fff;
  border: 1px solid #f1f1f1;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.cart-panel-head {
  min-height: 86px;
  padding: 22px 22px 18px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.cart-panel-copy {
  display: grid;
  gap: 10px;
}

.cart-panel-head h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: lowercase;
}

.cart-panel-copy span {
  color: #aaa;
  font-size: 14px;
  font-weight: 600;
}

.cart-close {
  appearance: none;
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  position: relative;
  flex: 0 0 auto;
  background: #f4f4f4;
  color: #5e5e5e;
  cursor: pointer;
}

.cart-close span {
  position: absolute;
  top: 20px;
  left: 11px;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.cart-close span:first-child {
  transform: rotate(45deg);
}

.cart-close span:last-child {
  transform: rotate(-45deg);
}

.cart-items {
  display: none;
  min-height: 0;
}

.cart-items:not(:empty) {
  overflow: auto;
  display: grid;
  gap: 12px;
  padding: 12px 22px;
  border-top: 12px solid #f6f6f6;
}

.cart-item {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 8px 0 12px;
  border-bottom: 1px solid var(--line);
}

.cart-item:last-child {
  border-bottom: 0;
}

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

.cart-item-copy {
  min-width: 0;
}

.cart-item-copy h3 {
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 600;
}

.cart-item-copy span {
  color: #a9a9a9;
  font-size: 12px;
  font-weight: 600;
}

.cart-quantity {
  grid-column: 2;
  width: max-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid #dedede;
  border-radius: 8px;
}

.cart-quantity button,
.cart-remove {
  appearance: none;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.cart-quantity button {
  width: 30px;
  height: 30px;
  background: #fff;
  color: var(--ink);
  font-size: 18px;
  line-height: 1;
}

.cart-quantity span {
  min-width: 28px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

.cart-item > strong {
  grid-column: 3;
  grid-row: 1;
  align-self: start;
  white-space: nowrap;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
}

.cart-remove {
  grid-column: 3;
  grid-row: 2;
  justify-self: end;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #f3f3f3;
  color: #777;
  font-size: 18px;
  line-height: 1;
}

.cart-summary {
  min-height: 68px;
  padding: 0 22px;
  border-top: 12px solid #f6f6f6;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cart-summary span {
  color: #787878;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  text-transform: lowercase;
}

.cart-summary strong {
  font-size: 28px;
  line-height: 1;
  font-weight: 500;
  white-space: nowrap;
}

.cart-primary {
  min-height: 56px;
  margin: 22px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #050505;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  text-transform: lowercase;
}

.cart-close:focus-visible {
  outline-color: rgba(157, 76, 86, 0.52);
}

.nav-toggle {
  display: none;
  width: 32px;
  height: 26px;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--ink);
  transition: transform 180ms ease, top 180ms ease;
}

.nav-toggle span:first-child {
  top: 8px;
}

.nav-toggle span:last-child {
  top: 18px;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  top: 13px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  top: 13px;
  transform: rotate(-45deg);
}

.search-panel {
  border-top: 1px solid var(--line);
  padding: 18px 56px 20px;
  max-width: 1580px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.search-panel[hidden] {
  display: none;
}

.search-panel label {
  color: var(--muted);
  font-size: 14px;
}

.search-panel input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #d5d5d5;
  padding: 10px 0 12px;
  outline: none;
  font-size: 22px;
  background: transparent;
}

.search-panel input:focus-visible {
  border-bottom-color: var(--rose-dark);
  outline-color: rgba(157, 76, 86, 0.32);
  outline-offset: 6px;
}

.hero {
  position: relative;
  height: 650px;
  min-height: 520px;
  overflow: hidden;
  background: #ddd;
}

.hero-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  filter: saturate(0.92) contrast(1.02);
}

.hero-tone {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(168, 73, 84, 0.56) 0%, rgba(168, 73, 84, 0.16) 34%, rgba(255, 255, 255, 0.04) 70%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0));
}

.hero-content {
  position: absolute;
  left: 56px;
  bottom: 82px;
  max-width: 680px;
  color: #fff;
}

.hero-content p {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 500;
}

.hero-content h1 {
  margin: 0 0 22px;
  font-size: 72px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: lowercase;
}

.hero-content a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 600;
}

.page-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 42vw);
  align-items: stretch;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.page-hero-copy {
  align-self: end;
  max-width: 760px;
  padding: 96px 56px 88px;
  position: relative;
  z-index: 1;
}

.page-hero-copy p {
  margin: 0 0 14px;
  color: var(--rose-dark);
  font-size: 18px;
  font-weight: 600;
  text-transform: lowercase;
}

.page-hero-copy h1 {
  margin: 0 0 28px;
  font-size: 82px;
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: lowercase;
}

.page-hero-copy a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.page-hero > img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.product-page-hero > img {
  object-position: center 58%;
}

.about-page-hero {
  background: #c66c78;
  color: #fff;
}

.about-page-hero .page-hero-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.about-page-hero > img {
  object-position: center;
}

.section-pad {
  max-width: 1580px;
  margin: 0 auto;
  padding: 72px 56px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 26px;
}

.section-head h2,
.catalog-heading h2,
.about-copy h2,
.contact-block h2 {
  margin: 0;
  font-size: 46px;
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: lowercase;
}

.section-head p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 500;
}

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

.category-card {
  min-height: 176px;
  aspect-ratio: 1.22;
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  text-align: left;
  color: #fff;
  background: #d8d5d2;
  cursor: pointer;
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.48) contrast(0.88) brightness(0.88);
  transform: scale(1.02);
  transition: transform 220ms ease, filter 220ms ease;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.category-card:hover img {
  transform: scale(1.06);
  filter: saturate(0.78) contrast(0.98) brightness(0.92);
}

.category-card span {
  position: relative;
  z-index: 1;
  max-width: 160px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
  text-transform: lowercase;
}

.catalog {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  align-items: start;
  gap: 64px;
  border-top: 1px solid var(--line);
}

.catalog-sidebar {
  position: sticky;
  top: 150px;
}

.sidebar-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  text-transform: lowercase;
}

.collapse-mark {
  width: 22px;
  height: 22px;
  position: relative;
}

.collapse-mark::before,
.collapse-mark::after {
  content: "";
  position: absolute;
  background: var(--ink);
}

.collapse-mark::before {
  width: 18px;
  height: 2px;
  left: 2px;
  top: 10px;
}

.collapse-mark::after {
  width: 2px;
  height: 18px;
  left: 10px;
  top: 2px;
  transition: opacity 180ms ease;
}

.collapse-mark[aria-expanded="true"]::after {
  opacity: 0;
}

.catalog-sidebar[data-collapsed="true"] {
  padding-bottom: 0;
}

.catalog-sidebar[data-collapsed="true"] .sidebar-title {
  margin-bottom: 0;
}

.sidebar-content {
  display: grid;
}

.sidebar-list {
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
}

.sidebar-list button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
  color: #7d7d7d;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: color 180ms ease;
}

.sidebar-list button:hover,
.sidebar-list button.is-active {
  color: var(--ink);
}

.sidebar-list button:focus-visible,
.chip:focus-visible,
.bag-button:focus-visible,
.cart-primary:focus-visible,
.icon-button:focus-visible,
.socials a:focus-visible,
.to-top:focus-visible,
.collapse-mark:focus-visible {
  outline-color: rgba(157, 76, 86, 0.52);
}

.availability-toggle {
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: lowercase;
  cursor: pointer;
}

.availability-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.availability-toggle i {
  width: 52px;
  height: 30px;
  border-radius: 999px;
  background: #d6d6d6;
  position: relative;
  flex: 0 0 auto;
  transition: background 180ms ease;
}

.availability-toggle i::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
  transition: transform 180ms ease;
}

.availability-toggle input:checked + i {
  background: var(--rose);
}

.availability-toggle input:checked + i::after {
  transform: translateX(22px);
}

.availability-toggle:focus-within i {
  box-shadow: 0 0 0 3px rgba(157, 76, 86, 0.24);
}

.catalog-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.catalog-heading > div:first-child {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.catalog-heading span {
  color: #b7b7b7;
  font-size: 16px;
  font-weight: 600;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.chip {
  appearance: none;
  border: 1px solid #d7d7d7;
  border-radius: 8px;
  background: #fff;
  min-height: 42px;
  padding: 0 18px;
  color: #9c9c9c;
  cursor: pointer;
  font-weight: 600;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.chip:hover,
.chip.is-active {
  border-color: var(--rose);
  color: var(--rose-dark);
  background: #fff7f8;
}

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

.product-card {
  min-width: 0;
}

.product-card.is-in-cart .product-photo {
  box-shadow: inset 0 0 0 1px rgba(136, 74, 80, 0.16);
}

.product-photo {
  position: relative;
  aspect-ratio: 1.34;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
}

.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease, filter 220ms ease;
}

.product-card:hover .product-photo img {
  transform: scale(1.04);
  filter: saturate(1.05);
}

.bag-button {
  appearance: none;
  border: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.bag-button:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-1px);
}

.bag-button.is-in-cart {
  background: var(--rose-dark);
  color: #fff;
  box-shadow: 0 12px 24px rgba(57, 31, 34, 0.18);
}

.bag-button.is-in-cart:hover {
  background: var(--rose);
}

.bag-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-cart-state {
  position: absolute;
  top: 12px;
  left: 12px;
  min-height: 32px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 247, 248, 0.94);
  color: var(--rose-dark);
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px rgba(34, 26, 27, 0.08);
}

.product-cart-state[hidden] {
  display: none;
}

.badge {
  position: absolute;
  left: 0;
  bottom: 0;
  min-height: 30px;
  padding: 6px 13px 7px;
  border-top-right-radius: 8px;
  background: var(--rose);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: lowercase;
}

.product-meta {
  padding-top: 18px;
}

.product-meta h3 {
  min-height: 46px;
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 600;
}

.product-desc {
  min-height: 42px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 500;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.price-row strong {
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
}

.price-row small {
  color: #c4c4c4;
  font-size: 14px;
  font-weight: 600;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 64px 0;
  color: var(--muted);
  font-size: 18px;
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 450px) minmax(0, 760px);
  gap: 72px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.about-image {
  overflow: hidden;
  border-radius: 8px;
  background: var(--rose);
}

.about-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.about-copy .lead {
  margin: 28px 0 22px;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 600;
}

.about-copy p {
  max-width: 780px;
  margin: 0;
  color: #343434;
  font-size: 17px;
  line-height: 1.8;
}

.about-page {
  border-top: 0;
}

.about-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.about-details > div {
  min-height: 280px;
  padding: 44px 38px 48px;
  background: #fff;
}

.about-details span {
  display: block;
  margin-bottom: 46px;
  color: var(--rose);
  font-size: 14px;
  font-weight: 700;
}

.about-details h2 {
  margin: 0 0 18px;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 600;
  text-transform: lowercase;
}

.about-details p {
  margin: 0;
  color: #555;
  line-height: 1.65;
  font-weight: 500;
}

.contacts {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 72px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.contact-block dl {
  margin: 38px 0 0;
  display: grid;
  gap: 28px;
}

.contact-block dl div {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 24px;
  align-items: baseline;
}

.contact-block dt {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-transform: lowercase;
}

.contact-block dd {
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 600;
}

.contact-note {
  padding-top: 6px;
}

.contact-note p {
  margin: 0 0 24px;
  color: #323232;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 500;
}

.contact-note a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--rose-dark);
  font-weight: 700;
}

.accordion-band {
  max-width: 1580px;
  margin: 0 auto;
  padding: 12px 56px 92px;
}

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

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

.accordion-band summary {
  list-style: none;
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-size: 26px;
  font-weight: 600;
  text-transform: lowercase;
}

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

.accordion-band summary::after {
  content: "+";
  font-size: 36px;
  font-weight: 300;
}

.accordion-band details[open] summary::after {
  content: "-";
}

.accordion-band p {
  max-width: 700px;
  margin: -18px 0 32px;
  color: var(--muted);
  line-height: 1.7;
}

.footer {
  background: var(--footer);
  color: #fff;
  min-height: 430px;
  padding: 62px 56px 34px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 56px;
}

.footer-brand {
  font-size: 52px;
  line-height: 1;
  font-weight: 400;
  text-transform: lowercase;
}

.footer-nav {
  display: grid;
  gap: 22px;
  align-content: start;
  font-size: 18px;
  font-weight: 500;
}

.footer-contact {
  justify-self: end;
  display: grid;
  gap: 20px;
  align-content: start;
  justify-items: end;
  color: #f2f2f2;
  font-size: 18px;
  font-weight: 500;
}

.socials {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
}

.socials a {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: border-color 180ms ease, background 180ms ease;
}

.socials a span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.socials a:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.socials svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-bottom {
  grid-column: 1 / -1;
  align-self: end;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  color: #d8d8d8;
}

.to-top {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  display: grid;
  place-items: center;
  font-size: 34px;
  line-height: 1;
}

@media (max-width: 1280px) {
  .top-strip,
  .main-nav,
  .section-pad,
  .accordion-band {
    padding-left: 36px;
    padding-right: 36px;
  }

  .main-nav {
    gap: 24px;
  }

  .cart-overlay {
    padding-left: 36px;
    padding-right: 36px;
  }

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

  .nav-links {
    gap: 22px;
    font-size: 15px;
  }

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

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

@media (max-width: 960px) {
  .top-strip {
    height: auto;
    min-height: 44px;
    padding-top: 10px;
    padding-bottom: 10px;
    align-items: flex-start;
  }

  .top-actions {
    gap: 18px;
  }

  .main-nav {
    height: 74px;
    grid-template-columns: auto auto 1fr;
  }

  .brand-word {
    font-size: 34px;
  }

  .nav-toggle {
    display: block;
    order: 3;
    justify-self: end;
    z-index: 140;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 132px 36px 48px;
    background: #fff;
    display: grid;
    align-content: start;
    justify-items: start;
    gap: 26px;
    font-size: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px);
    transition:
      opacity 260ms ease,
      transform 260ms ease,
      visibility 0s linear 260ms;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      opacity 260ms ease,
      transform 260ms ease,
      visibility 0s linear 0s;
  }

  .nav-links a {
    opacity: 0;
    transform: translateY(12px);
    transition:
      opacity 220ms ease,
      transform 220ms ease;
  }

  .nav-links.is-open a {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links.is-open a:nth-child(1) {
    transition-delay: 80ms;
  }

  .nav-links.is-open a:nth-child(2) {
    transition-delay: 120ms;
  }

  .nav-links.is-open a:nth-child(3) {
    transition-delay: 160ms;
  }

  .nav-links.is-open a:nth-child(4) {
    transition-delay: 200ms;
  }

  .nav-links.is-open a:nth-child(5) {
    transition-delay: 240ms;
  }

  body.menu-open .nav-toggle {
    color: var(--ink);
  }

  .nav-icons {
    justify-self: end;
    margin-right: 58px;
  }

  .cart-overlay {
    padding-top: 92px;
  }

  .cart-panel {
    width: min(500px, calc(100vw - 72px));
    max-height: calc(100dvh - 116px);
  }

  .search-panel {
    grid-template-columns: 1fr;
    padding-left: 36px;
    padding-right: 36px;
  }

  .hero {
    height: 560px;
    min-height: 480px;
  }

  .hero-image {
    object-position: 48% 58%;
  }

  .hero-content {
    left: 36px;
    right: 36px;
    bottom: 56px;
  }

  .hero-content h1 {
    font-size: 54px;
  }

  .page-hero {
    grid-template-columns: 1fr;
  }

  .page-hero-copy {
    padding: 72px 36px 58px;
  }

  .page-hero-copy h1 {
    font-size: 58px;
  }

  .page-hero > img {
    min-height: 360px;
    max-height: 460px;
  }

  .section-head,
  .catalog-heading,
  .contacts {
    display: grid;
    gap: 22px;
  }

  .section-head h2,
  .catalog-heading h2,
  .about-copy h2,
  .contact-block h2 {
    font-size: 38px;
  }

  .catalog {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .catalog-sidebar {
    position: static;
    border-bottom: 1px solid var(--line);
    padding-bottom: 30px;
  }

  .sidebar-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .availability-toggle {
    max-width: 320px;
  }

  .filter-chips {
    justify-content: flex-start;
  }

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

  .about-image {
    max-width: 380px;
  }

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

  .about-details {
    grid-template-columns: 1fr;
  }

  .footer {
    grid-template-columns: 1fr 1fr;
    padding-left: 36px;
    padding-right: 36px;
  }

  .footer-contact {
    justify-self: start;
    justify-items: start;
  }
}

@media (max-width: 680px) {
  body {
    overflow-x: hidden;
  }

  .top-strip {
    padding-left: 20px;
    padding-right: 20px;
    display: grid;
    gap: 6px;
    font-size: 12px;
  }

  .top-actions {
    width: 100%;
    justify-content: space-between;
  }

  .main-nav {
    padding-left: 20px;
    padding-right: 20px;
    gap: 14px;
  }

  .nav-icons {
    gap: 10px;
    margin-right: 48px;
  }

  .icon-button {
    width: 25px;
    height: 25px;
  }

  .nav-links {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cart-overlay {
    padding: 24px 20px;
    align-items: stretch;
  }

  .cart-panel {
    width: min(500px, calc(100vw - 40px));
    max-height: calc(100dvh - 48px);
  }

  .cart-panel-head {
    min-height: 82px;
  }

  .cart-panel-head h2 {
    font-size: 38px;
  }

  .cart-summary span {
    font-size: 19px;
  }

  .search-panel {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    height: 500px;
    min-height: 460px;
  }

  .hero-image {
    object-position: 50% 56%;
  }

  .hero-content {
    left: 20px;
    right: 20px;
    bottom: 42px;
  }

  .hero-content h1 {
    font-size: 44px;
  }

  .page-hero {
    min-height: 0;
  }

  .page-hero-copy {
    padding: 56px 20px 46px;
  }

  .page-hero-copy h1 {
    font-size: 44px;
  }

  .page-hero > img {
    min-height: 300px;
  }

  .section-pad {
    padding: 54px 20px;
  }

  .accordion-band {
    padding: 0 20px 62px;
  }

  .category-grid,
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .category-card {
    min-height: 150px;
    padding: 15px;
  }

  .category-card span {
    font-size: 15px;
  }

  .catalog-heading > div:first-child {
    display: grid;
    gap: 4px;
  }

  .product-meta h3 {
    min-height: 58px;
    font-size: 16px;
  }

  .product-desc {
    display: none;
  }

  .price-row strong {
    font-size: 20px;
  }

  .contact-block dl div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-block dd,
  .contact-note p {
    font-size: 19px;
  }

  .about-details > div {
    min-height: 220px;
    padding: 34px 24px 38px;
  }

  .about-details span {
    margin-bottom: 34px;
  }

  .accordion-band summary {
    min-height: 86px;
    font-size: 22px;
  }

  .footer {
    grid-template-columns: 1fr;
    padding: 48px 20px 28px;
    gap: 36px;
  }

  .site-header {
    background: #fff;
    border-bottom: 0;
    backdrop-filter: none;
    overflow: visible;
  }

  .top-strip {
    display: none;
  }

  .main-nav {
    position: relative;
    height: 96px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 32px 32px 1fr auto;
    gap: 26px;
    border-bottom: 1px solid #eeeeee;
  }

  .brand-word {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 130;
    transform: translate(-50%, -50%);
    font-size: 0;
  }

  .brand-desktop {
    display: none;
  }

  .brand-mobile {
    display: block;
    color: #111;
    font-size: 43px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0;
  }

  .nav-toggle {
    grid-column: 1;
    justify-self: start;
    width: 28px;
    height: 28px;
    order: 0;
  }

  .nav-toggle::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 28px;
    height: 2px;
    background: var(--ink);
    transition: opacity 180ms ease;
  }

  .nav-toggle span {
    width: 28px;
  }

  .nav-toggle span:first-child {
    top: 14px;
  }

  .nav-toggle span:last-child {
    top: 21px;
  }

  .nav-toggle[aria-expanded="true"]::before {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:first-child,
  .nav-toggle[aria-expanded="true"] span:last-child {
    top: 14px;
  }

  .mobile-location-icon {
    grid-column: 2;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    color: #111;
  }

  .mobile-location-icon svg {
    width: 27px;
    height: 27px;
    fill: currentColor;
    stroke: none;
  }

  .nav-icons {
    grid-column: 4;
    justify-self: end;
    gap: 22px;
    margin-right: 0;
  }

  .icon-button {
    width: 28px;
    height: 28px;
  }

  .icon-button svg {
    width: 27px;
    height: 27px;
    stroke-width: 1.85;
  }

  .nav-icons .icon-button:first-child {
    display: none;
  }

  .cart-count {
    display: none;
  }

  .cart-overlay {
    padding: 0;
  }

  .cart-panel {
    width: 100%;
    max-width: none;
    max-height: none;
    height: 100dvh;
    border: 0;
    box-shadow: none;
  }

  .cart-panel-head {
    padding: 24px 24px 18px;
  }

  .cart-items:not(:empty) {
    max-height: none;
  }

  .cart-summary,
  .cart-primary {
    margin-left: 24px;
    margin-right: 24px;
  }

  .nav-links {
    top: 0;
    z-index: 120;
    padding: 172px 24px 48px;
    justify-items: center;
    text-align: center;
  }

  .hero {
    height: min(94vw, 600px);
    min-height: 350px;
  }

  .hero-image {
    object-position: 42% 50%;
    filter: saturate(0.9) contrast(1.05) brightness(0.82);
  }

  .hero-tone {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.22) 34%, rgba(0, 0, 0, 0) 62%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0) 64%);
  }

  .hero-content {
    left: 24px;
    right: 24px;
    bottom: 32px;
  }

  .hero-content p,
  .desktop-title,
  .desktop-cta {
    display: none;
  }

  .hero-content h1 {
    margin: 0 0 20px;
    font-size: 33px;
    line-height: 1.08;
    font-weight: 500;
  }

  .mobile-title,
  .mobile-cta {
    display: inline;
  }

  .hero-content a {
    gap: 12px;
    font-size: 20px;
    line-height: 1;
    font-weight: 500;
  }

  .home-mobile-links {
    display: grid;
    background: #fff;
    border-top: 1px solid #ededed;
  }

  .home-mobile-links + .category-showcase {
    display: none;
  }

  .home-mobile-links a {
    min-height: 86px;
    display: grid;
    place-items: center;
    border-bottom: 1px solid #ededed;
    color: #151515;
    font-size: 23px;
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: 0;
    text-align: center;
    text-transform: lowercase;
  }
}

@media (max-width: 430px) {
  .brand-word {
    font-size: 30px;
  }

  .nav-icons .icon-button:nth-child(2) {
    display: none;
  }

  .cart-item {
    grid-template-columns: 54px minmax(0, 1fr) auto;
  }

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

  .cart-item-copy h3 {
    font-size: 14px;
  }

  .cart-item > strong {
    font-size: 16px;
  }

  .category-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-meta h3 {
    min-height: 0;
  }

  .main-nav {
    padding: 0 22px;
    grid-template-columns: 28px 28px 1fr auto;
    gap: 20px;
  }

  .brand-word {
    font-size: 0;
  }

  .brand-mobile {
    font-size: 34px;
  }

  .nav-icons {
    gap: 16px;
  }

  .nav-icons .icon-button:nth-child(2) {
    display: inline-grid;
  }

  .hero {
    height: 375px;
    min-height: 340px;
  }

  .home-mobile-links a {
    min-height: 78px;
    font-size: 21px;
  }
}
