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

[hidden] {
  display: none !important;
}

.landing {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.7s ease;
}

.landing.exiting {
  opacity: 0;
  pointer-events: none;
}

.landing-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  user-select: none;
  -webkit-user-drag: none;
}

.landing-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.landing-logo {
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: auto;
  z-index: 3;
  user-select: none;
  -webkit-user-drag: none;
}

.enter-btn {
  position: relative;
  z-index: 3;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.85);
  padding: 18px 56px;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  font-family: inherit;
}

.enter-btn:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

html, body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  background: #ffffff;
  color: #000;
  font-size: 15px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

a, button {
  color: inherit;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 50;
  background: #fff;
}

.nav-link {
  font-size: 15px;
  letter-spacing: 0.01em;
}

.brand-tab {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-tab img {
  height: 56px;
  width: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.stage {
  position: relative;
  height: 100vh;
  padding-top: 90px;
}

.look-view {
  position: absolute;
  inset: 90px 0 50px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: minmax(0, 1fr);
  gap: 60px;
  padding: 40px 60px 40px 60px;
  transition: opacity 0.5s ease;
}

.look-view.fading {
  opacity: 0;
}

.look-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: 100%;
  min-height: 0;
  overflow: hidden;
}

.look-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.45s ease;
}

.items-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-height: 0;
  overflow: hidden;
}

.look-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  min-height: 0;
}

.items-grid {
  display: grid;
  gap: 30px;
  align-self: flex-start;
  justify-content: center;
  width: 100%;
  grid-template-columns: repeat(2, 270px);
}

.items-grid.single {
  grid-template-columns: 270px;
}

.items-grid.three,
.items-grid.four {
  grid-template-columns: repeat(2, 215px);
}

.items-grid.three .item-tile:nth-child(3) {
  grid-column: span 2;
  width: 215px;
  justify-self: center;
}

.item-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  overflow: hidden;
  background: transparent;
  gap: 10px;
  aspect-ratio: 3 / 4;
  transition: transform 0.3s ease;
}

.item-tile img {
  width: 100%;
  flex: 1;
  min-height: 0;
  object-fit: contain;
  display: block;
  transition: opacity 0.4s ease;
}

.item-tile-label {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: #1a1a1a;
  text-align: center;
  line-height: 1.3;
}

.item-tile:hover img {
  opacity: 0.85;
}

.about-view {
  position: absolute;
  inset: 90px 0 50px 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  animation: fadeIn 0.4s ease;
  overflow: hidden;
}

.models-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0 30px 0;
}

.models-marquee .models-track {
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}

.marquee-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 240px;
  height: auto;
  z-index: 2;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  filter: drop-shadow(0 2px 18px rgba(0, 0, 0, 0.55));
}

.models-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: marquee 90s linear infinite;
}

.models-track img {
  height: 340px;
  width: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  object-fit: cover;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.about-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 30px 60px 80px 60px;
  text-align: center;
}

.about-text {
  max-width: 680px;
  font-size: 15px;
  line-height: 1.85;
  font-weight: 300;
  color: #1a1a1a;
  letter-spacing: 0.01em;
}

.shop-link {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 14px 42px;
  border: 1px solid #000;
  color: #000;
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease;
}

.shop-link:hover {
  background: #000;
  color: #fff;
}

.item-view {
  position: absolute;
  inset: 90px 0 50px 0;
  padding: 30px 60px 40px 60px;
  background: #fff;
  display: flex;
  flex-direction: column;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  align-self: flex-start;
  transition: opacity 0.2s ease;
}

.back-btn:hover {
  opacity: 0.6;
}

.item-detail {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  min-height: 0;
}

.item-detail-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  overflow: hidden;
}

.item-detail-image-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.item-detail-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  max-width: 460px;
}

.item-name {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 4px;
}

.item-color {
  font-size: 13px;
  letter-spacing: 0.04em;
  display: flex;
  gap: 8px;
  align-items: baseline;
  margin-bottom: 4px;
}

.item-description {
  font-size: 14px;
  line-height: 1.65;
  font-weight: 300;
  color: #1a1a1a;
  margin: 8px 0 4px 0;
}

.meta-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
}

.meta-value {
  font-size: 13px;
  color: #1a1a1a;
  letter-spacing: 0.02em;
}

.size-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.size-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.size-options button {
  min-width: 48px;
  padding: 10px 12px;
  border: 1px solid #d4d4d4;
  font-size: 13px;
  letter-spacing: 0.02em;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  color: #222;
}

.size-options button:hover:not([disabled]) {
  border-color: #000;
}

.size-options button.selected {
  border-color: #000;
  background: #000;
  color: #fff;
}

.size-options button[disabled] {
  color: #ccc;
  cursor: not-allowed;
  text-decoration: line-through;
  text-decoration-color: #ddd;
}

.add-to-bag {
  width: 100%;
  max-width: 320px;
  padding: 14px 18px;
  border: 1px solid #d4d4d4;
  background: #f7f7f7;
  color: #999;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: not-allowed;
  margin-top: 6px;
}

.item-meta {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 8px 16px;
  margin-top: 14px;
  padding-top: 18px;
  border-top: 1px solid #eee;
}

.item-meta dt {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  align-self: center;
}

.item-meta dd {
  font-size: 13px;
  color: #1a1a1a;
  letter-spacing: 0.02em;
}

.look-indicator {
  position: fixed;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 40;
  transition: opacity 0.3s ease;
}

body.in-about .look-indicator,
body.in-item .look-indicator {
  opacity: 0;
  pointer-events: none;
}

.look-indicator .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d4d4d4;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.look-indicator .dot.active {
  background: #000;
  transform: scale(1.3);
}

.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  padding: 14px 30px;
  background: #fff;
  z-index: 60;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.footer-link {
  color: #555;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #000;
}

.footer-instagram {
  justify-self: start;
}

.footer-center {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: center;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-sep {
  color: #ccc;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  letter-spacing: 0.06em;
  justify-self: end;
}

.lang-switch button {
  padding: 4px 2px;
  opacity: 0.4;
  transition: opacity 0.2s ease;
}

.lang-switch button.active {
  opacity: 1;
}

.lang-switch button:hover {
  opacity: 1;
}

.lang-switch span {
  opacity: 0.4;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.25s ease;
}

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

.modal-panel {
  position: relative;
  background: #fff;
  max-width: 480px;
  width: calc(100% - 40px);
  padding: 40px 36px 32px 36px;
  z-index: 1;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: #000;
}

.modal-title {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  margin-bottom: 18px;
}

.modal-body {
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
  color: #1a1a1a;
}

@media (max-width: 900px) {
  .site-header {
    padding: 0 20px;
    height: 70px;
  }
  .brand-tab img {
    height: 44px;
  }
  .stage {
    padding-top: 70px;
  }
  .look-view {
    inset: 70px 0 50px 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    gap: 16px;
    padding: 12px 0 16px 0;
    overflow: hidden;
  }
  .look-column {
    min-height: 0;
    padding: 0 20px;
  }
  .look-image-wrap {
    height: 100%;
    flex: 1;
    min-height: 0;
  }
  .items-panel {
    padding: 0;
    overflow: hidden;
    min-height: 0;
  }
  .items-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 0 20px 4px 20px;
    gap: 14px;
    align-self: stretch;
    width: 100%;
    max-width: none;
    grid-template-columns: none;
    margin: 0;
  }
  .items-grid::-webkit-scrollbar {
    display: none;
  }
  .items-grid {
    scrollbar-width: none;
  }
  .items-grid.single,
  .items-grid.three {
    grid-template-columns: none;
    max-width: none;
    margin: 0;
  }
  .items-grid.single .item-tile,
  .items-grid.three .item-tile:nth-child(3) {
    grid-column: auto;
    max-width: none;
    justify-self: auto;
  }
  .item-tile {
    flex: 0 0 auto;
    width: 140px;
    aspect-ratio: 3 / 4;
    scroll-snap-align: start;
  }
  .item-view {
    inset: 70px 0 50px 0;
    padding: 16px 20px 30px 20px;
    overflow-y: auto;
  }
  .item-detail {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .item-detail-image-wrap {
    max-height: 50vh;
  }
  .look-indicator {
    display: none;
  }
  .about-view {
    inset: 70px 0 50px 0;
  }
  .models-track img {
    height: 220px;
  }
  .about-content {
    padding: 20px 24px 40px 24px;
  }
  .site-footer {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 6px 12px;
    padding: 10px 16px;
    font-size: 11px;
  }
  .footer-instagram {
    grid-column: 1;
    grid-row: 1;
  }
  .lang-switch {
    grid-column: 2;
    grid-row: 1;
  }
  .footer-center {
    grid-column: 1 / -1;
    grid-row: 2;
    gap: 8px;
  }
}
