:root {
  --paper: #f7f3ee;
  --surface: rgba(255, 255, 255, 0.97);
  --surface-solid: #fbf8f3;
  --ink: #111111;
  --ink-soft: rgba(17, 17, 17, 0.66);
  --line: rgba(17, 17, 17, 0.1);
  --line-strong: rgba(17, 17, 17, 0.16);
  --shadow: 0 22px 60px rgba(17, 17, 17, 0.08);
  --max-width: 1560px;
  --transition: 280ms ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #faf7f2 0%, var(--paper) 100%);
}

body.cookie-open,
body.drawer-open,
body.viewer-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.site-shell,
.mini-shell {
  width: min(var(--max-width), calc(100% - 28px));
  margin: 0 auto;
  padding: 18px 0 28px;
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding: 0 4px 18px;
  border-bottom: 1px solid var(--line-strong);
}

.site-label,
.site-link {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.72);
}

.site-label {
  justify-self: start;
}

.site-label--ghost {
  visibility: hidden;
  pointer-events: none;
}

.site-brand {
  display: block;
  justify-self: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
}

.site-link {
  justify-self: end;
  text-align: right;
}

.dual-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.hero-wordmark {
  display: none;
}

.hero-panel {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  min-height: clamp(420px, 52vw, 720px);
  border-radius: 18px;
  background: #e8dccd;
}

.hero-panel-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.015);
}

.hero-panel--dama .hero-panel-image {
  object-position: center 42%;
}

.hero-panel--kids .hero-panel-image {
  object-position: center 38%;
}

.hero-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.2) 58%, rgba(17, 17, 17, 0.38));
  transition: background var(--transition);
}

.hero-panel:hover .hero-panel-overlay {
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.04), rgba(17, 17, 17, 0.16) 58%, rgba(17, 17, 17, 0.28));
}

.hero-panel-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 28px;
  color: #ffffff;
}

.hero-panel-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel-link {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 8px;
}

.site-footer {
  margin-top: 20px;
  background: var(--surface);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.site-footer--inner {
  margin-top: 14px;
}

.footer-inner {
  padding: 30px 28px 22px;
}

.footer-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.footer-kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.footer-rule {
  width: 100%;
  height: 1px;
  background: var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer-block h2 {
  margin-bottom: 12px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.footer-block li,
.footer-block p,
.footer-block a {
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(17, 17, 17, 0.82);
}

.footer-list {
  list-style: none;
}

.footer-brand {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.category-hero,
.page-hero {
  position: relative;
  min-height: min(82vh, 900px);
  overflow: hidden;
  border-radius: 18px;
  background: #111111;
}

.category-hero-image,
.page-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.category-hero-overlay,
.page-hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.38)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.14));
}

.category-hero-content,
.page-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: inherit;
  max-width: 760px;
  padding: 44px 36px;
  color: #ffffff;
}

.category-hero-kicker,
.page-eyebrow {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.category-hero-title,
.page-title {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.page-subtitle {
  max-width: 620px;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}

.category-hero-nav,
.page-category-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.category-hero-nav a,
.page-category-switch a {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.category-hero-nav a.is-active,
.page-category-switch a.is-active {
  color: #ffffff;
}

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

.category-lineup-item {
  padding: 26px 0 28px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}

.category-lineup-item span {
  display: block;
  margin-bottom: 12px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.category-lineup-item h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.boutique-page {
  display: grid;
  gap: 14px;
}

.boutique-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 2px 2px 0;
}

.boutique-toolbar-copy {
  display: grid;
  gap: 6px;
}

.boutique-toolbar-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.boutique-toolbar-copy p {
  font-size: 0.92rem;
  color: rgba(17, 17, 17, 0.72);
}

.boutique-toolbar-actions {
  display: flex;
  gap: 10px;
}

.utility-chip {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  min-width: 168px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.utility-chip__lead {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.utility-chip__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.utility-chip__label {
  white-space: nowrap;
}

.utility-chip__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  min-height: 28px;
  border-radius: 999px;
  border: 1px solid currentColor;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.utility-chip:hover,
.utility-chip:focus-visible {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

.utility-chip--dark {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

.utility-chip--dark:hover,
.utility-chip--dark:focus-visible {
  background: #2d2d2d;
  border-color: #2d2d2d;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(17, 17, 17, 0.22);
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.11);
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #efe7dd;
  outline: none;
}

.product-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 720ms ease;
}

.product-slide.is-active {
  opacity: 1;
}

.product-media-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.03), rgba(17, 17, 17, 0.14)),
    linear-gradient(0deg, rgba(17, 17, 17, 0.16), transparent 36%);
  pointer-events: none;
}

.product-favorite-icon,
.product-nav {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.product-favorite-icon {
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  font-size: 0.92rem;
}

.product-favorite-icon.is-active {
  background: rgba(17, 17, 17, 0.78);
  border-color: rgba(17, 17, 17, 0.78);
}

.product-nav {
  top: calc(50% - 10px);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  transform: translateY(-50%);
  font-size: 0.82rem;
}

.product-nav--prev {
  left: 10px;
}

.product-nav--next {
  right: 10px;
}

.product-dots {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 12px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 7px;
}

.product-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
}

.product-dot.is-active {
  background: #ffffff;
}

.product-copy {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.product-meta-row,
.product-submeta,
.cart-line,
.boutique-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-meta-row span,
.size-block span,
.drawer-item-size span,
.boutique-drawer-kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.product-meta-row strong,
.drawer-item-top strong,
.boutique-total-row strong {
  font-size: 1rem;
  font-weight: 700;
  color: #111111;
}

.product-name {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-slogan,
.drawer-item-top p,
.drawer-empty p {
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(17, 17, 17, 0.76);
}

.product-submeta {
  font-size: 0.72rem;
  color: rgba(17, 17, 17, 0.58);
}

.product-submeta span:last-child {
  text-align: right;
}

.size-block {
  display: grid;
  gap: 9px;
}

.size-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.size-pill {
  min-width: 42px;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.size-pill.is-selected,
.size-pill:hover,
.size-pill:focus-visible {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

.product-action,
.drawer-button,
.drawer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid #111111;
  background: #111111;
  color: #ffffff;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.product-action:hover,
.product-action:focus-visible,
.drawer-button:hover,
.drawer-button:focus-visible,
.drawer-cta:hover,
.drawer-cta:focus-visible {
  background: #2d2d2d;
  border-color: #2d2d2d;
  color: #ffffff;
}

.drawer-button--ghost {
  background: transparent;
  color: #111111;
}

.drawer-button--ghost:hover,
.drawer-button--ghost:focus-visible {
  background: #111111;
  border-color: #111111;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 88;
  background: rgba(17, 17, 17, 0.42);
  backdrop-filter: blur(5px);
}

.drawer-backdrop[hidden] {
  display: none;
}

.boutique-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 89;
  width: min(540px, 100%);
  height: 100vh;
  padding: 14px;
}

.boutique-drawer[hidden] {
  display: none;
}

.boutique-drawer-shell {
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100%;
  background: rgba(250, 247, 242, 0.98);
  border: 1px solid rgba(17, 17, 17, 0.12);
  box-shadow: 0 30px 90px rgba(17, 17, 17, 0.18);
}

.boutique-drawer-head,
.boutique-drawer-summary {
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--line);
}

.boutique-drawer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.boutique-drawer-head h2 {
  margin-top: 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.boutique-drawer-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: #111111;
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

.boutique-drawer-body {
  overflow-y: auto;
  padding: 16px 20px 22px;
  display: grid;
  align-content: start;
  gap: 14px;
}

.boutique-drawer-summary {
  border-top: 1px solid var(--line);
  border-bottom: 0;
  display: grid;
  gap: 14px;
}

.drawer-cta.is-disabled {
  opacity: 0.56;
}

.drawer-empty {
  padding: 18px 4px 8px;
  display: grid;
  gap: 10px;
}

.drawer-empty h3,
.drawer-item-top h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.46rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

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

.drawer-thumb {
  width: 104px;
  height: 132px;
  object-fit: cover;
  background: #eee7dd;
}

.drawer-item-copy {
  display: grid;
  gap: 12px;
}

.product-viewer {
  position: fixed;
  inset: 0;
  z-index: 94;
  display: grid;
  place-items: center;
}

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

.product-viewer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.72);
  backdrop-filter: blur(8px);
}

.product-viewer__dialog {
  position: relative;
  z-index: 2;
  width: min(1100px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  padding: 16px;
  display: grid;
  gap: 14px;
  background: rgba(252, 249, 244, 0.98);
  border: 1px solid rgba(17, 17, 17, 0.14);
  box-shadow: 0 34px 110px rgba(17, 17, 17, 0.28);
}

.product-viewer__close,
.product-viewer__nav {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(17, 17, 17, 0.5);
  color: #ffffff;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.product-viewer__close {
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  font-size: 1.4rem;
  line-height: 1;
}

.product-viewer__frame {
  position: relative;
  min-height: min(68vh, 760px);
  overflow: hidden;
  background: #ece3d7;
}

.product-viewer__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-viewer__nav {
  top: calc(50% - 21px);
  width: 42px;
  height: 42px;
  transform: translateY(-50%);
  font-size: 1.2rem;
}

.product-viewer__nav--prev {
  left: 18px;
}

.product-viewer__nav--next {
  right: 18px;
}

.product-viewer__rail {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.product-viewer__thumb {
  flex: 0 0 88px;
  height: 110px;
  padding: 0;
  border: 1px solid var(--line-strong);
  background: #eee5d8;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), opacity var(--transition);
}

.product-viewer__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-viewer__thumb.is-active {
  border-color: #111111;
  transform: translateY(-2px);
}

.product-viewer__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.product-viewer__copy {
  display: grid;
  gap: 10px;
}

.product-viewer__kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.product-viewer__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-viewer__caption {
  max-width: 700px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(17, 17, 17, 0.78);
}

.product-viewer__meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(17, 17, 17, 0.68);
}

.product-viewer__meta-row strong {
  font-size: 0.94rem;
  color: #111111;
}

.product-viewer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.drawer-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.drawer-item-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.drawer-button {
  min-height: 42px;
  padding: 0 14px;
}

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

.cart-line span {
  font-size: 0.8rem;
  color: rgba(17, 17, 17, 0.64);
}

.quantity-stepper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.quantity-stepper span {
  min-width: 18px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
}

.quantity-button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: #111111;
  cursor: pointer;
  font-size: 1rem;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
}

.content-card,
.policy-article {
  background: var(--surface);
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.content-card {
  padding: 32px 28px;
}

.policy-article {
  padding: 34px 28px;
}

.content-card h2,
.policy-article h2 {
  margin-bottom: 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.content-card p,
.policy-article p,
.policy-article li {
  font-size: 0.96rem;
  line-height: 1.9;
  color: rgba(17, 17, 17, 0.82);
}

.policy-article section + section {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.policy-article ul {
  padding-left: 18px;
}

.policy-meta {
  margin-top: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  background: transparent;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  transition: background var(--transition), color var(--transition);
}

.contact-link:hover {
  background: #111111;
  color: #ffffff;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
}

.cookie-modal[hidden] {
  display: none;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.66);
}

.cookie-modal-card {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100% - 32px));
  padding: 44px 48px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.24);
}

.cookie-modal-card h2 {
  margin-bottom: 18px;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(17, 17, 17, 0.88);
}

.cookie-modal-card p {
  max-width: 760px;
  margin-bottom: 8px;
  font-size: 0.98rem;
  line-height: 1.85;
  color: rgba(17, 17, 17, 0.68);
}

.cookie-modal-card a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.cookie-modal-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 58px;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  background: #3a3f45;
  color: #ffffff;
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}

.cookie-modal-button.primary {
  background: #2f343a;
}

@media (max-width: 1200px) {
  .footer-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 1100px) {
  .dual-hero {
    grid-template-columns: 1fr;
  }

  .hero-wordmark {
    display: none;
  }

  .hero-panel {
    min-height: 52vh;
  }

  .boutique-catalog,
  .category-lineup {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-shell,
  .mini-shell {
    width: min(100%, calc(100% - 16px));
    padding-top: 10px;
    padding-bottom: 24px;
  }

  .site-header {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "brand brand"
      "label link";
    gap: 8px 10px;
    padding-bottom: 14px;
  }

  .site-label {
    grid-area: label;
  }

  .site-brand {
    grid-area: brand;
    font-size: 2.2rem;
    letter-spacing: 0.22em;
  }

  .site-link {
    grid-area: link;
    max-width: 172px;
    font-size: 0.52rem;
    letter-spacing: 0.12em;
  }

  .dual-hero {
    gap: 10px;
  }

  .hero-panel {
    min-height: 44vh;
    border-radius: 14px;
  }

  .hero-panel-image {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero-panel-content,
  .category-hero-content,
  .page-hero-content {
    padding: 18px;
  }

  .hero-wordmark {
    display: none;
  }

  .hero-panel-title,
  .category-hero-title,
  .page-title {
    font-size: clamp(1.6rem, 8vw, 2.8rem);
  }

  .hero-panel-link {
    font-size: 0.66rem;
  }

  .boutique-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .boutique-toolbar-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .utility-chip {
    min-width: 0;
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
  }

  .utility-chip__icon {
    width: 16px;
    height: 16px;
  }

  .utility-chip__count {
    min-width: 24px;
    min-height: 24px;
    font-size: 0.64rem;
  }

  .product-viewer__dialog {
    width: min(100%, calc(100% - 16px));
    max-height: calc(100vh - 16px);
    padding: 12px;
    gap: 12px;
  }

  .product-viewer__close {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
  }

  .product-viewer__frame {
    min-height: 48vh;
  }

  .product-viewer__nav {
    width: 38px;
    height: 38px;
  }

  .product-viewer__nav--prev {
    left: 12px;
  }

  .product-viewer__nav--next {
    right: 12px;
  }

  .product-viewer__thumb {
    flex-basis: 72px;
    height: 88px;
  }

  .product-viewer__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .product-viewer__title {
    font-size: clamp(1.7rem, 9vw, 2.8rem);
  }

  .product-viewer__caption {
    font-size: 0.84rem;
  }

  .product-viewer__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

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

  .product-card {
    border-radius: 12px;
  }

  .product-media {
    aspect-ratio: 4 / 5;
  }

  .product-copy,
  .footer-inner,
  .content-card,
  .policy-article {
    padding: 12px;
  }

  .product-name {
    font-size: 1.1rem;
  }

  .product-slogan {
    display: none;
  }

  .product-submeta {
    font-size: 0.62rem;
  }

  .product-submeta span:last-child {
    display: none;
  }

  .size-pill {
    min-width: 34px;
    min-height: 30px;
    padding: 0 8px;
    font-size: 0.56rem;
  }

  .product-action {
    min-height: 40px;
    font-size: 0.58rem;
    letter-spacing: 0.16em;
  }

  .product-nav {
    top: auto;
    bottom: 40px;
    transform: none;
    width: 28px;
    height: 28px;
    font-size: 0.72rem;
  }

  .product-nav--prev {
    left: 8px;
  }

  .product-nav--next {
    right: 8px;
  }

  .product-dots {
    bottom: 8px;
  }

  .product-dot {
    width: 6px;
    height: 6px;
  }

  .footer-base {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .boutique-drawer {
    top: auto;
    bottom: 0;
    width: 100%;
    height: min(88vh, 860px);
    padding: 8px;
  }

  .boutique-drawer-shell {
    border-radius: 22px 22px 0 0;
  }

  .boutique-drawer-body,
  .boutique-drawer-head,
  .boutique-drawer-summary {
    padding-left: 16px;
    padding-right: 16px;
  }

  .drawer-item {
    grid-template-columns: 1fr;
  }

  .drawer-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .drawer-item-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-modal-card {
    width: calc(100% - 16px);
    padding: 24px 20px;
  }

  .cookie-modal-actions {
    gap: 12px;
  }

  .cookie-modal-button {
    width: 100%;
    min-width: 0;
    min-height: 54px;
  }
}
