
* { box-sizing: border-box; }

:root {
  --red: #7b1113;
  --black: #0c0c0d;
  --charcoal: #1a1a1d;
  --gray: #d7d4ce;
  --soft-gray: #efede8;
  --glass: rgba(245, 245, 245, 0.18);
}

html, body {
  margin: 0;
  min-height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Helvetica Neue", Arial, sans-serif;
  background: var(--black);
  color: var(--soft-gray);
}

body.desktop-page {
  overflow: hidden;
}

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

.desktop {
  min-height: 100vh;
  width: 100vw;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(5,5,6,.28), rgba(5,5,6,.55)),
    radial-gradient(circle at 25% 22%, rgba(123,17,19,.55), transparent 28%),
    radial-gradient(circle at 78% 62%, rgba(255,255,255,.22), transparent 27%),
    linear-gradient(135deg, #d7d4ce 0%, #77746f 45%, #111113 100%);
}

.desktop::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .4;
}

.desktop::after {
  content: "NYC";
  position: absolute;
  right: -8vw;
  bottom: 6vh;
  font-size: 24vw;
  line-height: .8;
  letter-spacing: -.1em;
  font-weight: 700;
  color: rgba(255,255,255,.055);
  pointer-events: none;
}

.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 34px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 18px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  backdrop-filter: blur(18px);
  background: rgba(10,10,10,.22);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.brand {
  font-weight: 600;
  letter-spacing: .02em;
}

.clock {
  font-variant-numeric: tabular-nums;
}

.folder {
  position: absolute;
  z-index: 4;
  width: 120px;
  text-align: center;
  cursor: pointer;
  transition: transform .18s ease, filter .18s ease;
}

.folder:hover {
  transform: translateY(-6px);
  filter: brightness(1.06);
}

.folder-shape {
  width: 88px;
  height: 64px;
  margin: 0 auto 10px;
  position: relative;
  border-radius: 10px 10px 13px 13px;
  background: linear-gradient(180deg, #f1f0eb 0%, #c8c5bf 100%);
  box-shadow:
    0 16px 28px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.55);
}

.folder-shape::before {
  content: "";
  position: absolute;
  left: 8px;
  top: -10px;
  width: 42px;
  height: 18px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, #f7f5ef 0%, #d0cdc7 100%);
  border: 1px solid rgba(255,255,255,.55);
  border-bottom: none;
}

.folder span {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  color: rgba(255,255,255,.9);
  font-size: 14px;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0,0,0,.8);
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(12px);
}

.shop { left: 15%; top: 18%; }
.events { right: 20%; top: 17%; }
.portfolio { left: 39%; top: 35%; }
.about { left: 16%; bottom: 25%; }
.contact { right: 25%; bottom: 28%; }
.journal { right: 12%; top: 43%; }

.dock {
  position: absolute;
  z-index: 8;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  padding: 13px 16px;
  border-radius: 26px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 22px 60px rgba(0,0,0,.36), inset 0 1px 0 rgba(255,255,255,.32);
  backdrop-filter: blur(26px);
}

.dock a {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 23px;
  color: var(--black);
  background: rgba(245,245,242,.9);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 8px 18px rgba(0,0,0,.18);
  transition: transform .16s ease;
}

.dock a:hover {
  transform: translateY(-6px) scale(1.06);
}

.page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(12,12,13,.90), rgba(12,12,13,.88)),
    radial-gradient(circle at 16% 10%, rgba(123,17,19,.45), transparent 30%),
    linear-gradient(135deg, #1a1a1d, #0c0c0d);
  padding: 34px;
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 56px;
}

.back {
  color: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.18);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
}

.title-block h1 {
  font-size: clamp(44px, 8vw, 110px);
  margin: 0;
  letter-spacing: -.08em;
  line-height: .9;
  font-weight: 650;
}

.title-block p {
  max-width: 600px;
  color: rgba(255,255,255,.68);
  font-size: 18px;
  line-height: 1.5;
}

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

.product-card, .event-card, .text-card {
  border-radius: 28px;
  overflow: hidden;
  background: rgba(239,237,232,.08);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 60px rgba(0,0,0,.28);
}

.product-img, .event-img {
  height: 260px;
  background:
    radial-gradient(circle at 30% 30%, rgba(123,17,19,.9), transparent 28%),
    linear-gradient(135deg, #d7d4ce, #1a1a1d);
}

.product-card:nth-child(2) .product-img,
.event-card:nth-child(2) .event-img {
  background:
    radial-gradient(circle at 65% 35%, rgba(123,17,19,.8), transparent 28%),
    linear-gradient(135deg, #2a2a2d, #d7d4ce);
}

.product-card:nth-child(3) .product-img,
.event-card:nth-child(3) .event-img {
  background:
    radial-gradient(circle at 50% 55%, rgba(255,255,255,.55), transparent 22%),
    linear-gradient(135deg, #7b1113, #111113);
}

.card-content {
  padding: 20px;
}

.card-content h2 {
  margin: 0 0 6px;
  font-size: 20px;
}

.card-content p {
  color: rgba(255,255,255,.62);
  line-height: 1.45;
}

.price {
  color: var(--soft-gray);
  font-weight: 600;
}

.button {
  display: inline-block;
  margin-top: 12px;
  padding: 11px 15px;
  border-radius: 999px;
  background: var(--soft-gray);
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 800px) {
  body.desktop-page { overflow: auto; }
  .desktop { min-height: 100svh; }
  .folder { width: 96px; }
  .folder-shape { width: 72px; height: 54px; }
  .shop { left: 7%; top: 14%; }
  .events { right: 8%; top: 16%; }
  .portfolio { left: 35%; top: 34%; }
  .about { left: 8%; bottom: 30%; }
  .contact { right: 9%; bottom: 29%; }
  .journal { right: 10%; top: 45%; }
  .grid { grid-template-columns: 1fr; }
  .page { padding: 20px; }
  .page-header { margin-bottom: 38px; }
}
