@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/anton-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-latin.woff2") format("woff2");
}

:root {
  --bg: #0b0b0c;
  --text: #f2f2f0;
  --muted: #8a8a8a;
  --line: #222222;
  --surface: #141416;
  --header-bg: #f2f2f0;
  --header-text: #0b0b0c;
  --header-h: 64px;
  --gap: 3px;
  --font-d: "Anton", "Arial Narrow", Impact, sans-serif;
  --font-b: "Inter", Helvetica, Arial, sans-serif;
  color-scheme: dark;
}

*,
*::before,
*::after { box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

body.modal-open { overflow: hidden; }
body:has(.nav-check:checked) { overflow: hidden; }
body.has-notice { padding-bottom: 76px; }

img, video { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; border-radius: 0; }
h1, h2, h3, p, figure { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; }

:focus { outline: none; }
:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

::selection { background: var(--text); color: var(--bg); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 80;
  background: var(--header-bg);
  color: var(--header-text);
  padding: 10px 14px;
  text-decoration: none;
}
.skip:focus { top: 8px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 12px 0 16px;
  background: var(--header-bg);
  color: var(--header-text);
  border-bottom: 1px solid var(--line);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  color: inherit;
  text-decoration: none;
}

.logo-mark {
  display: block;
  height: 54px;
  width: auto;
  flex: none;
}
.site-footer .logo-mark {
  height: 72px;
  filter: invert(1);
}

.logo-name {
  font-family: var(--font-d);
  font-size: 20px;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.nav-check {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 44px;
  height: 44px;
  margin: 0;
  opacity: 0;
  z-index: 2;
  cursor: pointer;
}
.nav-check:focus-visible + .nav-toggle { outline: 2px solid currentColor; outline-offset: 3px; }

.nav-toggle {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  position: absolute;
  left: 13px;
  transition: transform 160ms linear, top 160ms linear;
}
.nav-toggle-lines { top: 21px; }
.nav-toggle-lines::before,
.nav-toggle-lines::after { content: ""; left: 0; }
.nav-toggle-lines::before { top: -6px; }
.nav-toggle-lines::after { top: 6px; }
.nav-check:checked + .nav-toggle .nav-toggle-lines { background: transparent; }
.nav-check:checked + .nav-toggle .nav-toggle-lines::before { top: 0; transform: rotate(45deg); }
.nav-check:checked + .nav-toggle .nav-toggle-lines::after { top: 0; transform: rotate(-45deg); }

.site-nav { display: none; }
.nav-check:checked ~ .site-nav {
  display: flex;
  position: fixed;
  z-index: 40;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  flex-direction: column;
  justify-content: flex-start;
  gap: 4px;
  padding: 36px 20px 32px;
  background: var(--bg);
  color: var(--text);
}
.nav-check:checked ~ .site-nav a {
  font-family: var(--font-d);
  font-size: clamp(3rem, 16vw, 4.75rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  min-height: 44px;
  color: var(--text);
}

.hero {
  position: relative;
  height: 75vh;
  height: 75svh;
  min-height: 460px;
  background: var(--surface);
  overflow: hidden;
}
.hero-img,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-copy {
  position: absolute;
  z-index: 1;
  left: 16px;
  right: 16px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.hero-copy h1 {
  font-family: var(--font-d);
  font-weight: 400;
  font-size: clamp(4.6rem, 22vw, 8rem);
  line-height: 0.84;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.hero-line {
  max-width: 16rem;
  font-size: 15px;
  line-height: 1.45;
}

.section-label {
  padding: 28px 16px 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}
.product-grid[data-count="1"] { grid-template-columns: 1fr; }
.product-grid[data-count="3"] > :first-child { grid-column: 1 / -1; }

.tile {
  display: block;
  color: inherit;
  text-decoration: none;
}
.tile-media {
  display: block;
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--surface);
  overflow: hidden;
}
.tile-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tile-img-b { opacity: 0; }
.tile-sold {
  position: absolute;
  left: 8px;
  bottom: 8px;
  padding: 8px 8px 7px;
  background: var(--bg);
  color: var(--text);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.tile-info {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 12px;
  align-items: baseline;
  min-height: 72px;
  padding: 12px 10px 22px;
}
.tile-name {
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}
.tile-price {
  font-size: 13px;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
.tile-skeleton {
  display: grid;
  grid-template-rows: auto 72px;
  background: transparent;
}
.tile-skeleton::before {
  content: "";
  display: block;
  aspect-ratio: 4 / 5;
  background: var(--surface);
}

.editorial { position: relative; background: var(--surface); }
.editorial img {
  width: 100%;
  height: 72vh;
  height: 72svh;
  object-fit: cover;
}
.editorial figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  max-width: 18rem;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about {
  padding: 80px 20px 72px;
  text-align: center;
}
.kicker {
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.about-text {
  max-width: 560px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.65;
}
.info {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px 10px;
  max-width: 720px;
  margin: 40px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.look-wrap { padding-top: 8px; }
.lookbook {
  display: flex;
  gap: var(--gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  scrollbar-color: #333 transparent;
}
.look {
  margin: 0;
  flex: 0 0 78%;
  height: 68vh;
  height: 68svh;
  scroll-snap-align: start;
  background: var(--surface);
}
.look img { width: 100%; height: 100%; object-fit: cover; }

.bundle {
  margin-top: 64px;
  padding: 72px 20px 80px;
  background: var(--surface);
  text-align: center;
}
.bundle .kicker { margin-bottom: 12px; }
.bundle h2 {
  max-width: 14ch;
  margin: 0 auto 16px;
  font-family: var(--font-d);
  font-size: clamp(2.4rem, 9vw, 4.6rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.offer-lead {
  max-width: 26rem;
  margin: 0 auto 36px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}
.offer-ladder {
  max-width: 520px;
  margin: 0 auto 20px;
  padding: 0;
  list-style: none;
  text-align: left;
  border-top: 1px solid var(--line);
}
.offer-ladder li {
  display: grid;
  grid-template-columns: 2.6rem minmax(0, 1fr) auto;
  column-gap: 12px;
  row-gap: 4px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.offer-step {
  grid-row: 1 / span 2;
  align-self: start;
  padding-top: 1px;
  font-family: var(--font-d);
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  line-height: 1;
}
.offer-name {
  grid-column: 2;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.offer-price {
  grid-column: 3;
  font-size: 14px;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.offer-note {
  grid-column: 2 / -1;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}
.offer-ship {
  max-width: 26rem;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.contact {
  padding: 80px 20px 72px;
  text-align: center;
}
.contact h2 {
  margin: 0 auto 16px;
  font-family: var(--font-d);
  font-size: clamp(2.8rem, 10vw, 5rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.contact-lead {
  max-width: 26rem;
  margin: 0 auto 36px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.contact-list {
  display: grid;
  gap: 22px;
  max-width: 720px;
  margin: 0 auto;
}
.contact-list a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
}
.contact-list a:hover { text-decoration: underline; text-underline-offset: 3px; }
.contact-note {
  max-width: 26rem;
  margin: 36px auto 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.pdp-offer {
  margin: -6px 0 18px;
  max-width: 28rem;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.offer-order-hint {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  background: var(--text);
  color: var(--bg);
  border: 1px solid var(--text);
  font-family: var(--font-b);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}
.btn:hover { background: #fff; }
.btn:disabled {
  background: transparent;
  color: var(--muted);
  border-color: var(--line);
  cursor: not-allowed;
}
.btn-block { width: 100%; }

.text-btn,
.linkish {
  min-height: 44px;
  padding: 0;
  background: none;
  border: 0;
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}
.linkish { display: inline-flex; align-items: center; margin: 8px 0 18px; }

.site-footer {
  display: grid;
  gap: 28px;
  padding: 36px 16px 28px;
  border-top: 1px solid var(--line);
}
.foot-links {
  display: grid;
  gap: 18px;
}
.foot-label {
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.foot-links a { text-decoration: none; }
.foot-links a:hover { text-decoration: underline; text-underline-offset: 3px; }
.foot-ship, .foot-copy { color: var(--muted); font-size: 13px; }

.notice {
  position: fixed;
  z-index: 45;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.notice p { font-size: 13px; }
body:has(.nav-check:checked) .notice { display: none; }

.noscript, .load-error, .missing {
  padding: 28px 16px;
}
.missing { display: grid; gap: 16px; justify-items: start; }

.pdp-info { padding: 8px 16px 32px; }
.back {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
}
.pdp-title {
  margin-top: 4px;
  font-family: var(--font-d);
  font-size: clamp(3rem, 12vw, 4.5rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.pdp-price {
  margin: 10px 0 18px;
  font-variant-numeric: tabular-nums;
}
.sold-inline {
  margin-left: 8px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.opt { margin-bottom: 16px; }
.opt-label {
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.opt-label span { color: var(--text); }
.swatches, .sizes { display: flex; flex-wrap: wrap; gap: 8px; }
.swatch, .size-btn, .qty-btn {
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  cursor: pointer;
}
.swatch { display: grid; place-items: center; }
.swatch span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #3a3a3a;
}
.swatch[aria-pressed="true"],
.size-btn[aria-pressed="true"] {
  border-color: var(--text);
  background: var(--text);
  color: var(--bg);
}
.size-btn:disabled {
  color: var(--muted);
  text-decoration: line-through;
  cursor: not-allowed;
}
.qty { display: flex; align-items: center; width: max-content; }
.qty input {
  width: 52px;
  height: 44px;
  padding: 0;
  text-align: center;
  background: transparent;
  border: 1px solid var(--line);
  border-left: 0;
  border-right: 0;
  font-variant-numeric: tabular-nums;
}
.pdp-desc { margin-top: 8px; max-width: 38rem; line-height: 1.6; }
.pdp-fabric { margin-top: 10px; color: var(--muted); font-size: 14px; }
.pdp-note { margin-top: 12px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.field-error, .row-error, .form-error { margin-top: 6px; font-size: 13px; }

.gallery {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  background: var(--surface);
}
.gallery::-webkit-scrollbar { display: none; }
.gallery figure { flex: 0 0 100%; margin: 0; scroll-snap-align: start; }
.gallery img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.dots { display: flex; justify-content: center; gap: 2px; }
.dots button {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.dots button::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  margin: auto;
  background: #333;
}
.dots button[aria-current="true"]::after { background: var(--text); }

.order-wrap { padding: 28px 16px 72px; border-top: 1px solid var(--line); }
.order-heading, .order-wrap > h1, .page-intro h1 {
  font-family: var(--font-d);
  font-weight: 400;
  font-size: clamp(2.6rem, 10vw, 4.5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.page-intro { padding: 28px 16px 0; }
.lede { max-width: 36rem; margin: 14px 0 8px; }
.order-layout { display: grid; gap: 8px; }
.line { padding: 8px 0 12px; border-top: 1px solid var(--line); }
.line:first-child { border-top: 0; }
.line-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.line-head h3 {
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.line-split { display: grid; gap: 12px; }
.field { margin-top: 12px; }
.field label, .fields legend {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.fields {
  margin: 28px 0 0;
  padding: 0;
  border: 0;
  min-inline-size: 0;
}
.fields legend { padding: 0; }
.field-input {
  display: block;
  width: 100%;
  min-height: 44px;
  padding: 10px 0;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}
select.field-input {
  appearance: none;
  padding-right: 28px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1.2 L6 6.2 L11 1.2' fill='none' stroke='%23F2F2F0' stroke-width='1.4'/></svg>");
  background-repeat: no-repeat;
  background-position: right 2px center;
  background-size: 12px 8px;
}
textarea.field-input { min-height: 96px; resize: vertical; }
.field.is-invalid .field-input { border-bottom-color: var(--text); }
.choice {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  margin-top: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  cursor: pointer;
}
.choice input {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--text);
  flex: none;
}
.choice:has(input:checked) { border-color: var(--text); }
.choice:has(input:focus-visible) { outline: 2px solid var(--text); outline-offset: 3px; }
.choice input:focus-visible { outline: none; }
.hint { margin-top: 12px; color: var(--muted); font-size: 13px; line-height: 1.5; }
#add-line { margin: 4px 0 8px; }
.order-submit { margin-top: 8px; }

.summary { padding-top: 8px; border-top: 1px solid var(--line); }
.summary h2 {
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.summary-line, .sum-rows div, .summary-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.sum-rows { margin: 8px 0 0; }
.sum-rows div:last-child { border-bottom: 0; }
.sum-rows dt { color: var(--muted); }
.sum-rows dd { margin: 0; text-align: right; }
.summary-total {
  border-bottom: 0;
  padding-top: 14px;
  font-size: 16px;
}
.summary-total strong { font-weight: 500; font-size: 18px; }
.ship-note {
  display: block;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.num { font-variant-numeric: tabular-nums; white-space: nowrap; }

.others { padding-bottom: 28px; }
.others h2 {
  padding: 0 16px 12px;
  font-family: var(--font-d);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.modal {
  position: fixed;
  z-index: 70;
  inset: 0;
  display: grid;
  align-items: end;
}
.modal-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.72); }
.modal-panel {
  position: relative;
  width: 100%;
  max-height: min(86vh, 680px);
  overflow: auto;
  padding: 12px 16px 28px;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.modal-panel h2 {
  margin: 4px 0 16px;
  font-family: var(--font-d);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.chart { width: 100%; border-collapse: collapse; }
.chart th, .chart td {
  padding: 12px 8px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-weight: 400;
  font-size: 14px;
}
.chart th {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.thanks {
  min-height: 68vh;
  display: grid;
  align-content: center;
  gap: 18px;
  max-width: 680px;
  padding: 64px 20px 80px;
}
.thanks h1 {
  font-family: var(--font-d);
  font-weight: 400;
  font-size: clamp(2.5rem, 9vw, 4.4rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.thanks-meta { display: grid; gap: 14px; margin: 8px 0; }
.thanks-meta div { display: grid; gap: 4px; }
.thanks-meta dt {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.thanks-meta dd {
  margin: 0;
  font-family: var(--font-d);
  font-size: 2rem;
  letter-spacing: 0.04em;
  line-height: 1;
}
.thanks-next { max-width: 28rem; color: var(--muted); }

#shop, #o-nama, #kontakt, #poruci, #sadrzaj { scroll-margin-top: 76px; }

@media (min-width: 720px) {
  .line-split { grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
  .foot-links { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .contact-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 900px) {
  body:has(.nav-check:checked) { overflow: auto; }

  .site-header { padding: 0 28px; }
  .nav-check, .nav-toggle { display: none; }
  .site-nav,
  .nav-check:checked ~ .site-nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 0;
    background: transparent;
    color: inherit;
  }
  .site-nav a,
  .nav-check:checked ~ .site-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 10px;
    font-family: var(--font-b);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--header-text);
  }
  .site-nav a:hover { text-decoration: underline; text-underline-offset: 4px; }

  .hero { height: 90vh; height: 90svh; min-height: 560px; }
  .hero-copy { left: 36px; bottom: 36px; }
  .section-label { padding: 40px 28px 14px; }
  .product-grid,
  .product-grid[data-count="3"] { grid-template-columns: repeat(3, 1fr); }
  .product-grid[data-count="3"] > :first-child { grid-column: auto; }
  .product-grid[data-count="2"] { grid-template-columns: 1fr 1fr; }
  .product-grid[data-count="1"] { grid-template-columns: minmax(0, 480px); }
  .tile-info { padding: 14px 12px 36px; }

  .editorial img { height: 82vh; }
  .editorial figcaption { left: 36px; bottom: 28px; }
  .about { padding: 120px 40px; }
  .lookbook {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    grid-template-rows: repeat(3, minmax(180px, 26vh));
    overflow: visible;
    height: auto;
  }
  .look { flex: none; height: auto; min-height: 0; }
  .look-a { grid-row: 1 / span 3; }
  .bundle { margin-top: 0; padding: 110px 40px 100px; }
  .offer-ladder {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 840px;
    border-top: 0;
  }
  .offer-ladder li {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 8px;
    padding: 8px 20px 4px;
    border-bottom: 0;
    border-left: 1px solid var(--line);
  }
  .offer-ladder li:first-child { border-left: 0; }
  .offer-step {
    grid-row: auto;
    font-size: 2.2rem;
    padding-top: 0;
    margin-bottom: 8px;
  }
  .offer-name,
  .offer-price,
  .offer-note { grid-column: auto; }
  .offer-name { margin-top: 4px; }
  .contact { padding: 120px 40px 100px; }

  .site-footer {
    grid-template-columns: 1.3fr 2fr;
    align-items: start;
    padding: 48px 28px 32px;
  }
  .foot-ship, .foot-copy { grid-column: 1 / -1; }

  .pdp {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 40px;
    align-items: start;
    padding: 12px 28px 20px;
  }
  .pdp-info {
    position: sticky;
    top: 80px;
    max-height: calc(100vh - 96px);
    overflow: auto;
    padding: 8px 8px 8px 0;
  }
  .gallery {
    flex-direction: column;
    overflow: visible;
    scroll-snap-type: none;
    gap: var(--gap);
    background: transparent;
  }
  .gallery figure { flex: none; }
  .dots { display: none; }
  .order-wrap { padding: 48px 28px 96px; }
  .page-intro { padding: 48px 28px 0; }
  .order-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    column-gap: 48px;
    align-items: start;
  }
  .summary {
    position: sticky;
    top: 88px;
    grid-column: 2;
    grid-row: 1 / span 2;
    padding: 0 0 0 24px;
    border-top: 0;
    border-left: 1px solid var(--line);
  }
  .order-main { grid-column: 1; grid-row: 1; }
  .order-submit { grid-column: 1; grid-row: 2; }
  .others h2 { padding-left: 28px; }
  .modal { align-items: center; justify-content: center; }
  .modal-panel {
    width: min(560px, calc(100% - 48px));
    border: 1px solid var(--line);
  }
}

@media (hover: hover) and (pointer: fine) {
  .tile-img-b { transition: opacity 180ms linear; }
  .tile:hover .tile-img-b,
  .tile:focus-visible .tile-img-b { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .nav-toggle-lines,
  .nav-toggle-lines::before,
  .nav-toggle-lines::after,
  .tile-img-b { transition: none; }
}
