:root {
  --ink: #07140f;
  --forest: #0b2a1c;
  --pine: #134d36;
  --cream: #f6ead4;
  --gold: #d4af37;
  --gold-lite: #f0d78c;
  --stripe-red: #c41e3a;
  --stripe-green: #0d5c3a;
  --orange: #e87a1e;
  --line: 4px;
  --shadow: 8px 8px 0 #04110c;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--cream);
  background: var(--ink);
  font-family: "Outfit", system-ui, sans-serif;
  overflow-x: hidden;
}

/* ── world: luxury night + vanishing runway ── */
.world {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(90% 55% at 50% -10%, #1a4a32 0%, transparent 55%),
    radial-gradient(50% 40% at 100% 80%, rgba(196, 30, 58, 0.18), transparent 50%),
    #07140f;
}
.world-gg {
  position: absolute;
  inset: -20%;
  opacity: 0.07;
  background-image: url("assets/banner.png");
  background-size: 520px auto;
  background-repeat: repeat;
  filter: grayscale(0.2) contrast(1.1);
  transform: rotate(-8deg);
}
.runway {
  position: absolute;
  left: -30%;
  right: -30%;
  bottom: -18%;
  height: 78vh;
  transform: perspective(680px) rotateX(68deg);
  transform-origin: 50% 100%;
  background:
    repeating-linear-gradient(
      90deg,
      #0b2a1c 0 46px,
      #c41e3a 46px 58px,
      #f6ead4 58px 70px,
      #c41e3a 70px 82px,
      #0b2a1c 82px 128px
    );
  mask-image: linear-gradient(to top, #000 12%, transparent 88%);
  -webkit-mask-image: linear-gradient(to top, #000 12%, transparent 88%);
  opacity: 0.38;
  animation: runway-slide 18s linear infinite;
}
@keyframes runway-slide {
  from { background-position: 0 0; }
  to { background-position: 128px 0; }
}
.halftone {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: radial-gradient(rgba(246, 234, 212, 0.45) 1.1px, transparent 1.2px);
  background-size: 8px 8px;
  mix-blend-mode: overlay;
}

.site { position: relative; z-index: 1; }

/* ── stripe tape ── */
.gucci-bar {
  height: 10px;
  background: repeating-linear-gradient(
    90deg,
    var(--stripe-green) 0 28px,
    var(--stripe-red) 28px 40px,
    var(--cream) 40px 52px,
    var(--stripe-red) 52px 64px,
    var(--stripe-green) 64px 92px
  );
}

/* ── nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 22px;
  background: rgba(7, 20, 15, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: var(--line) solid var(--gold);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--cream);
}
.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: #fff;
  border: 3px solid #111;
  border-radius: 14px;
  box-shadow: 4px 4px 0 var(--gold);
}
.brand-name {
  font-family: Cinzel, serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 1.05rem;
}
.brand-sym {
  display: block;
  font-family: "Luckiest Guy", cursive;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 6px;
}
.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 12px;
  border: 2px solid transparent;
}
.nav-links a:hover {
  border-color: var(--gold);
  color: var(--gold-lite);
}
.nav-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--cream);
  border: 3px solid #111;
  box-shadow: 3px 3px 0 var(--gold);
  text-decoration: none;
  font-size: 1.15rem;
}
.icon-btn:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--gold); }
.btn-buy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--gold);
  color: #111;
  font-weight: 800;
  text-decoration: none;
  border: 3px solid #111;
  box-shadow: 4px 4px 0 var(--stripe-red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
}
.btn-buy:hover { transform: translate(-1px, -1px); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: var(--cream);
  border: 3px solid #111;
  color: #111;
  font-size: 1.3rem;
}
.nav-drawer {
  display: none;
  background: #0b2a1c;
  border-bottom: 4px solid var(--gold);
  padding: 12px 18px 18px;
}
.nav-drawer.open { display: flex; flex-direction: column; gap: 8px; }
.nav-drawer a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 700;
  padding: 10px 8px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

/* ── lookbook stage ── */
.stage {
  perspective: 1600px;
  perspective-origin: 50% 20%;
}

/* ── hero: cinematic penthouse, logo on runway — no banner ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: stretch;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 20, 15, 0.82) 0%, rgba(7, 20, 15, 0.35) 48%, rgba(7, 20, 15, 0.55) 100%),
    url("assets/1.png") center / cover no-repeat;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: end;
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 28px 56px;
  width: 100%;
}
.hero-copy {
  transform: rotateY(9deg) rotateX(3deg);
  transform-origin: left center;
}
.issue {
  display: inline-block;
  font-family: Cinzel, serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-lite);
  border: 2px solid var(--gold);
  padding: 6px 12px;
  background: rgba(7, 20, 15, 0.65);
  margin-bottom: 18px;
}
.hero h1 {
  margin: 0 0 12px;
  font-family: Cinzel, serif;
  font-weight: 900;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-shadow:
    4px 4px 0 #04110c,
    0 0 28px rgba(212, 175, 55, 0.35);
}
.hero h1 span {
  display: block;
  color: var(--gold-lite);
}
.hero h1 em {
  font-style: normal;
  font-family: "Luckiest Guy", cursive;
  color: var(--cream);
  letter-spacing: 0.04em;
  font-size: 0.72em;
  text-shadow: 3px 3px 0 var(--stripe-red);
}
.bubble {
  position: relative;
  max-width: 34rem;
  background: var(--cream);
  color: #14110c;
  padding: 16px 18px 18px;
  border: 4px solid #111;
  box-shadow: var(--shadow);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.45;
  margin: 18px 0 22px;
}
.bubble::after {
  content: "";
  position: absolute;
  left: 36px;
  bottom: -18px;
  border-width: 18px 14px 0 0;
  border-style: solid;
  border-color: #111 transparent transparent transparent;
  filter: drop-shadow(3px 3px 0 #04110c);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 10px; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: transparent;
  color: var(--cream);
  border: 3px solid var(--gold);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
}
.btn-ghost:hover { background: rgba(212, 175, 55, 0.15); }
.hero-mascot {
  transform: rotateY(-12deg) translateZ(40px);
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.hero-mascot img {
  width: min(420px, 100%);
  filter: drop-shadow(18px 28px 0 rgba(4, 17, 12, 0.55));
}
.stamp {
  position: absolute;
  right: 8%;
  top: 18%;
  width: 110px;
  height: 110px;
  border: 4px dashed var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: Cinzel, serif;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  transform: rotate(14deg);
  background: rgba(7, 20, 15, 0.45);
}

/* ── marquee ── */
.marquee-wrap {
  overflow: hidden;
  border-top: 4px solid #111;
  border-bottom: 4px solid #111;
  background: var(--gold);
  color: #111;
}
.marquee-track {
  display: flex;
  gap: 42px;
  width: max-content;
  animation: marquee 22s linear infinite;
  font-family: "Luckiest Guy", cursive;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  padding: 10px 0;
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── sections as lookbook rooms ── */
.room {
  position: relative;
  padding: 88px 24px;
  overflow: hidden;
}
.room-inner {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
}
.room-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
}
.room-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 20, 15, 0.72), rgba(7, 20, 15, 0.55) 40%, rgba(7, 20, 15, 0.78));
}

/* ABOUT — folded catalog spread */
#about .room-bg { background-image: url("assets/2.png"); }
.spread {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 0;
  transform: rotateY(-6deg) rotateX(2deg);
  transform-style: preserve-3d;
  border: 5px solid #111;
  box-shadow: 16px 18px 0 rgba(4, 17, 12, 0.75);
}
.spread-photo {
  min-height: 420px;
  background:
    linear-gradient(180deg, transparent 40%, rgba(7, 20, 15, 0.55)),
    url("assets/2.png") center / cover no-repeat;
  border-right: 5px solid #111;
  position: relative;
}
.look-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: var(--cream);
  color: #111;
  border: 3px solid #111;
  padding: 8px 12px;
  font-family: Cinzel, serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 var(--gold);
}
.spread-copy {
  background: #f3e2bc;
  color: #16120c;
  padding: 36px 32px 40px;
  position: relative;
}
.spread-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 18px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent);
}
.kicker {
  font-family: Cinzel, serif;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--stripe-red);
  margin: 0 0 8px;
}
.spread-copy h2 {
  font-family: Cinzel, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 0 0 14px;
  line-height: 1.05;
}
.spread-copy p {
  margin: 0 0 14px;
  font-size: 1.05rem;
  line-height: 1.55;
  font-weight: 500;
}
.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}
.stat {
  border: 3px solid #111;
  background: #fff8e8;
  padding: 10px 12px;
  box-shadow: 4px 4px 0 #111;
}
.stat b {
  display: block;
  font-family: "Luckiest Guy", cursive;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}
.stat span { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #5a4a32; }

/* HOW TO BUY — boutique receipt on desert speed */
#howtobuy .room-bg { background-image: url("assets/3.png"); }
.buy-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 28px;
  align-items: center;
}
.buy-intro h2 {
  font-family: Cinzel, serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin: 0 0 12px;
  text-shadow: 3px 3px 0 #04110c;
}
.buy-intro p { max-width: 36rem; color: #efe3c8; font-size: 1.05rem; line-height: 1.5; }
.receipt {
  background: repeating-linear-gradient(#fff8e8 0 28px, #f4ead2 28px 29px);
  color: #16120c;
  border: 5px solid #111;
  box-shadow: 14px 16px 0 rgba(4, 17, 12, 0.7);
  transform: perspective(900px) rotateY(8deg) rotateZ(-1.5deg);
  padding: 22px 22px 8px;
}
.receipt header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 3px dashed #111;
  padding-bottom: 10px;
  margin-bottom: 8px;
  font-family: Cinzel, serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  padding: 14px 4px;
  border-bottom: 2px dotted rgba(17, 17, 17, 0.35);
  text-decoration: none;
  color: inherit;
}
.step:last-of-type { border-bottom: none; }
.step-num {
  font-family: "Luckiest Guy", cursive;
  font-size: 1.5rem;
  color: var(--stripe-red);
}
.step h3 { margin: 0 0 4px; font-size: 1.02rem; }
.step p { margin: 0; font-size: 0.92rem; line-height: 1.4; color: #3d3326; }
.receipt-foot {
  margin: 8px -22px 0;
  background: #111;
  color: var(--gold);
  text-align: center;
  padding: 10px;
  font-family: "Luckiest Guy", cursive;
  letter-spacing: 0.08em;
}

/* COMMUNITY — banner wall mural */
#community .room-bg { background-image: url("assets/banner.png"); }
.vip {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: center;
}
.vip-logo {
  background: rgba(246, 234, 212, 0.92);
  border: 5px solid #111;
  box-shadow: 12px 14px 0 var(--gold);
  padding: 18px;
  transform: rotate(-3deg);
}
.vip-logo img { width: 100%; display: block; }
.vip-copy h2 {
  font-family: Cinzel, serif;
  font-size: clamp(2rem, 5vw, 3.1rem);
  margin: 0 0 10px;
  text-shadow: 3px 3px 0 #04110c;
}
.vip-copy p { color: #efe3c8; font-size: 1.05rem; line-height: 1.5; max-width: 38rem; }
.ca-box {
  margin: 18px 0;
  background: rgba(7, 20, 15, 0.78);
  border: 3px solid var(--gold);
  padding: 12px 14px;
}
.ca-box label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.ca-row { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
#ca-text {
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 0.78rem;
  word-break: break-all;
  flex: 1;
  min-width: 180px;
}
#copy-ca {
  cursor: pointer;
  border: 3px solid #111;
  background: var(--cream);
  color: #111;
  font-weight: 800;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}
.social-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  text-decoration: none;
  color: #111;
  background: var(--cream);
  border: 4px solid #111;
  padding: 14px;
  box-shadow: 6px 6px 0 var(--gold);
  font-weight: 800;
}
.social-card i { font-size: 1.5rem; }
.social-card span { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: #5a4a32; }
.social-card:hover { transform: translate(-2px, -2px); }

footer {
  border-top: 4px solid var(--gold);
  padding: 28px 20px 40px;
  text-align: center;
  background: rgba(7, 20, 15, 0.92);
}
.foot-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: #fff;
  border: 3px solid #111;
  border-radius: 16px;
  box-shadow: 4px 4px 0 var(--gold);
}
footer p { color: #cbb98a; margin: 10px 0 0; font-size: 0.88rem; }

@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .hero-inner, .spread, .buy-layout, .vip, .social-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy, .hero-mascot, .spread, .receipt, .vip-logo {
    transform: none;
  }
  .stamp { display: none; }
  .spread-photo { min-height: 280px; border-right: none; border-bottom: 5px solid #111; }
}
