/* =========================================================
   LAQEER — dark streetwear editorial
   Type:   Anton (display) / Space Grotesk (body) / JetBrains Mono (mono)
   Colors: warm-black + bone + oxide accent
   ========================================================= */

:root {
  --bg: #090808;
  --bg-2: #0e0b0b;
  --bg-3: #130e0e;
  --fg: #e8e4dd;
  --fg-dim: #857878;
  --fg-muted: #453838;
  --line: #1c1818;
  --line-2: #251f1f;
  --accent: #8b1a1a;
  --accent-2: #b52222;

  --f-display: "Anton", "Helvetica Neue", sans-serif;
  --f-body: "Space Grotesk", "Helvetica Neue", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", "SF Mono", ui-monospace, monospace;
  --f-urdu: "Noto Nastaliq Urdu", "Noto Naskh Arabic", "Amiri", serif;

  --pad-x: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #090808;
  color: var(--fg);
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Tiny film-grain overlay applied to body */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: .045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

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

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ---------- typography helpers ---------- */
.display {
  font-family: var(--f-display);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.85;
  font-weight: 400;
}
.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fg-dim);
}
.label {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

/* ---------- nav ---------- */
nav.top {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad-x);
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  mix-blend-mode: difference;
  color: #fff;
}
nav.top.scrolled {
  background: rgba(10,9,8,.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  mix-blend-mode: normal;
  color: var(--fg);
}
nav.top .brand {
  font-family: var(--f-display);
  font-size: 20px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 10px;
}
nav.top .nav-mark {
  height: 26px;
  width: auto;
  filter: invert(1);
  opacity: .9;
}
nav.top.scrolled .nav-mark { filter: none; opacity: 1; }
nav.top .links a .ur {
  font-family: var(--f-urdu);
  font-size: 13px;
  letter-spacing: 0;
  margin-left: 6px;
  color: var(--fg-muted);
  text-transform: none;
  vertical-align: 0;
}
nav.top.scrolled .links a .ur { color: var(--fg-muted); }
nav.top .links { display: flex; gap: 28px; }
nav.top .links a { position: relative; padding: 4px 0; transition: opacity .2s; }
nav.top .links a:hover { opacity: .55; }
nav.top .right { display: flex; gap: 22px; align-items: center; }
nav.top .cart { display: flex; align-items: center; gap: 8px; }
nav.top .cart-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

@media (max-width: 720px) {
  nav.top .links { display: none; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 760px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(60% 50% at 50% 45%, rgba(139,26,26,.06), transparent 60%),
    radial-gradient(120% 80% at 50% 100%, rgba(9,8,8,1), rgba(18,12,12,1));
}
.hero .hero-grain {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: .35;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.012) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.012) 0 1px, transparent 1px 3px);
}
.hero .hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 120vmin; height: 120vmin;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(139,26,26,.18), rgba(139,26,26,.04) 40%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.hero .calligraphy-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  will-change: transform;
  padding: 0 var(--pad-x);
}
.hero .calligraphy {
  width: min(78vw, 1100px);
  max-height: 72vh;
  object-fit: contain;
  filter: drop-shadow(0 30px 80px rgba(139,26,26,.18)) drop-shadow(0 0 50px rgba(232,228,221,.05));
  animation: caligFadeIn 1.6s cubic-bezier(.2,.6,.2,1) both;
}
@keyframes caligFadeIn {
  from { opacity: 0; transform: scale(1.04); filter: drop-shadow(0 30px 80px rgba(139,26,26,0)) blur(8px); }
  to { opacity: 1; transform: scale(1); }
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,9,8,.6) 0%, rgba(10,9,8,0) 25%, rgba(10,9,8,0) 70%, rgba(10,9,8,.95) 100%);
  pointer-events: none;
  z-index: 2;
}
.hero .hero-meta {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 var(--pad-x) 48px;
  gap: 40px;
}
.hero .hero-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 8px;
}
.hero .wordmark {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 84px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.9;
}
.hero .wordmark-sub {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.hero .meta-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 8px;
  min-width: 180px;
  align-items: flex-end;
}
.hero .meta-right .tagline {
  font-family: var(--f-display);
  font-size: clamp(18px, 1.8vw, 28px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  max-width: 320px;
}
.hero .meta-right .tagline-ur {
  font-family: var(--f-urdu);
  font-size: clamp(16px, 1.4vw, 22px);
  line-height: 1.6;
  color: var(--fg-dim);
  direction: rtl;
  margin-top: 4px;
}
.scroll-cue .ur {
  font-family: var(--f-urdu);
  font-size: 13px;
  letter-spacing: 0;
  margin-left: 4px;
  color: var(--fg-muted);
}
.hero .top-meta {
  position: absolute;
  top: 80px; left: var(--pad-x); right: var(--pad-x);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fg-dim);
}
.hero .scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--fg-dim);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 3;
}
.scroll-cue::after {
  content: "";
  width: 1px; height: 28px;
  background: var(--fg-dim);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: .4; }
  50% { transform: scaleY(1); opacity: 1; }
}

@media (max-width: 720px) {
  .hero .hero-meta { flex-direction: column; align-items: flex-start; }
  .hero .meta-right { text-align: left; align-items: flex-start; }
  .hero .calligraphy { width: 86vw; }
}

@media (max-width: 560px) {
  .hero { min-height: 100svh; }
  .hero .meta-right { display: none; }
  .hero .calligraphy-stage {
    align-items: flex-start;
    padding-top: 28vh;
  }
  .hero .top-meta {
    top: 80px;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .hero .hero-meta {
    padding-bottom: 140px;
  }
  .manifesto-footer {
    display: none !important;
  }
}

/* ---------- marquee ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 22px 0;
  background: var(--bg-2);
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 56px);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  width: max-content;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee-track .dot {
  width: 12px; height: 12px; background: var(--accent); border-radius: 50%;
  display: inline-block;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- sections ---------- */
section { padding: clamp(80px, 12vh, 160px) var(--pad-x); position: relative; }
.section-head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
  align-items: end;
}
.section-head .num { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.2em; color: var(--fg-dim); }
.section-head h2 {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 88px);
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
.drop-head { display: flex; flex-direction: column; gap: 12px; }
.drop-label { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.2em; color: var(--fg-dim); text-transform: uppercase; }
.drop-sub { font-family: var(--f-body); font-size: 15px; color: var(--fg-dim); margin: 0; }
.drop-featuring { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.15em; color: var(--fg-dim); text-transform: uppercase; margin: 0; line-height: 1.8; }
.head-ur {
  display: inline-block;
  font-family: var(--f-urdu);
  font-size: 0.32em;
  letter-spacing: 0;
  color: var(--fg-dim);
  margin-left: 18px;
  vertical-align: middle;
  line-height: 1.6;
  text-transform: none;
  font-weight: 400;
}
.manifesto-ur {
  font-family: var(--f-urdu);
  font-size: clamp(20px, 2.4vw, 36px);
  line-height: 1.8;
  color: var(--fg-dim);
  direction: rtl;
  margin-top: 40px;
  max-width: 1100px;
  margin-left: auto;
  text-align: right;
}
.ur-quote {
  display: block;
  font-family: var(--f-urdu);
  font-size: 14px;
  line-height: 1.8;
  color: var(--fg-dim);
  direction: rtl;
  text-align: right;
  margin-top: 8px;
  letter-spacing: 0;
  text-transform: none;
}
.ur-body {
  font-family: var(--f-urdu) !important;
  direction: rtl;
  text-align: right;
  line-height: 2 !important;
  font-size: 17px !important;
  color: var(--fg-dim) !important;
}
.big-ur {
  display: block;
  font-family: var(--f-urdu);
  font-size: 0.3em;
  color: var(--fg-dim);
  direction: rtl;
  text-align: right;
  margin-top: 16px;
  line-height: 1.6;
  text-transform: none;
  letter-spacing: 0;
}
@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------- manifesto ---------- */
.manifesto {
  padding-top: clamp(60px, 8vh, 100px);
  padding-bottom: clamp(60px, 8vh, 100px);
  background-image:
    linear-gradient(rgba(10,9,8,.82), rgba(10,9,8,.82)),
    url("assets/laqeer-bg.png");
  background-size: auto, cover;
  background-position: center, center;
  background-repeat: repeat, no-repeat;
}
.manifesto-text {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.6vw, 62px);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.02em;
  max-width: 1400px;
  text-wrap: balance;
}
.manifesto-text .em { color: var(--accent); }
.manifesto-text .dim { color: var(--fg-muted); }
.manifesto-footer {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fg-dim);
}
.manifesto-footer .quote {
  max-width: 360px;
  text-align: right;
  color: var(--fg);
  line-height: 1.6;
}

/* ---------- product grid ---------- */
.collection { background: #0a0808; padding-top: clamp(36px, 5vh, 60px); }
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 980px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid { grid-template-columns: 1fr; } }
.grid.grid-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  background: transparent;
  border: none;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
@media (max-width: 560px) { .grid.grid-2 { grid-template-columns: 1fr; } }

.img-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  line-height: 1;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background .2s, color .2s;
  padding: 0;
}
.img-arrow:hover { background: rgba(0,0,0,0.55); color: #fff; }
.img-prev { left: 8px; }
.img-next { right: 8px; }
@media (max-width: 560px) { .img-arrow { display: none; } }
.img-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  gap: 6px;
  z-index: 3;
}
@media (max-width: 560px) { .img-dots { display: flex; } }
.img-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background .2s;
}
.img-dot.active { background: rgba(255,255,255,0.9); }

.grid-2 .card .ph { aspect-ratio: 3 / 4; }

.card {
  background: var(--bg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background .3s ease;
  cursor: pointer;
  position: relative;
}
.card:hover { background: var(--bg-2); }
.card .ph {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #110d0d 0%, #180f0f 50%, #110d0d 100%);
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,.014) 0 2px, transparent 2px 18px),
    linear-gradient(135deg, #110d0d 0%, #180f0f 50%, #110d0d 100%);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-2);
}
.card .ph::after {
  content: attr(data-ph);
  position: absolute;
  bottom: 14px; left: 14px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--fg-muted);
  text-transform: uppercase;
}
.card .ph-corner {
  position: absolute;
  top: 14px; right: 14px;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--fg-muted);
  letter-spacing: 0.2em;
}
.card:hover .ph { transform: none; }
.card .name {
  font-family: var(--f-display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1;
}
.card .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--fg-dim);
}
.card .meta .price { color: var(--fg); }
.card .sku { display: flex; justify-content: space-between; font-family: var(--f-mono); font-size: 10px; color: var(--fg-dim); letter-spacing: 0.18em; }

.card .tag {
  position: absolute;
  top: 36px; left: 36px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  padding: 4px 8px;
  background: var(--accent);
  color: var(--bg);
  text-transform: uppercase;
  z-index: 2;
}

/* ---------- editorial strip ---------- */
.editorial {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}
@media (max-width: 820px) { .editorial { grid-template-columns: 1fr; } }
.edit-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #0e0909 0%, #180f0f 100%);
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,.012) 0 2px, transparent 2px 18px),
    linear-gradient(135deg, #0e0909 0%, #180f0f 100%);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.edit-frame.tall { aspect-ratio: 3 / 5; }
.edit-frame .ph-label {
  position: absolute;
  top: 30px; left: 30px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--fg-muted);
  text-transform: uppercase;
}
.edit-frame .ph-spec {
  position: absolute;
  top: 30px; right: 30px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--fg-muted);
  text-align: right;
}
.edit-frame .frame-text {
  position: relative;
  z-index: 2;
  padding: 40px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
}
.edit-frame .frame-text h3 {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.5vw, 64px);
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.005em;
}
.edit-frame .frame-text .right {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--fg-dim);
  text-align: right;
}
.edit-frame .frame-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}
.edit-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,9,8,.2) 0%, rgba(10,9,8,0) 35%, rgba(10,9,8,.9) 100%);
  pointer-events: none;
}
.edit-frame .corner-cross {
  position: absolute;
  width: 12px; height: 12px;
  border-top: 1px solid var(--fg-muted);
  border-left: 1px solid var(--fg-muted);
  opacity: .4;
}
.edit-frame .cc-tl { top: 16px; left: 16px; }
.edit-frame .cc-tr { top: 16px; right: 16px; transform: rotate(90deg); }
.edit-frame .cc-bl { bottom: 16px; left: 16px; transform: rotate(-90deg); }
.edit-frame .cc-br { bottom: 16px; right: 16px; transform: rotate(180deg); }

/* ---------- about ---------- */
.about { background: #100c0c; }
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }
.about-grid .lead {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 64px);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.005em;
  margin-bottom: 44px;
}
.about-grid .body p {
  margin-bottom: 28px;
  max-width: 52ch;
  font-size: clamp(14px, 1.2vw, 17px);
  color: var(--fg);
  line-height: 1.7;
}
.about-grid .body p.dim { color: var(--fg-dim); }
.about-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.about-meta .item .k {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--fg-dim);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.about-meta .item .v {
  font-family: var(--f-display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.about-side {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-side .ph-img {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #0e0909 0%, #180f0f 100%);
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,.014) 0 2px, transparent 2px 18px),
    linear-gradient(135deg, #0e0909 0%, #180f0f 100%);
  position: relative;
  border: 1px solid var(--line-2);
}
.about-side .ph-img .stamp {
  position: absolute;
  bottom: 14px; left: 14px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--fg-muted);
}
.about-side .ph-img .stamp-r {
  position: absolute;
  bottom: 14px; right: 14px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--fg-muted);
}
.about-side .caption {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--fg-dim);
  text-transform: uppercase;
  display: flex; justify-content: space-between;
}

/* ---------- contact ---------- */
.contact {
  background: #090808;
  border-top: 1px solid var(--line);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-grid .big {
  font-family: var(--f-display);
  font-size: clamp(48px, 7vw, 120px);
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: -0.01em;
}
.contact-grid .big .accent { color: var(--accent); }
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 40px;
}
.contact-info .row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.contact-info .row .k {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--fg-dim);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.contact-info .row .v {
  font-family: var(--f-display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.contact-info .row .v a { transition: color .2s; }
.contact-info .row .v a:hover { color: var(--accent); }

.form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form label {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--fg-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.form input, .form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-2);
  padding: 12px 0;
  color: var(--fg);
  font-family: var(--f-body);
  font-size: 16px;
  outline: 0;
  transition: border-color .2s;
}
.form input:focus, .form textarea:focus { border-color: var(--accent); }
.form textarea { resize: vertical; min-height: 110px; }
.form .submit {
  align-self: flex-start;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 26px;
  border: 1px solid var(--fg);
  background: var(--fg);
  color: var(--bg);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: all .25s ease;
  cursor: pointer;
}
.form .submit:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
  letter-spacing: 0.32em;
}
.form .submit .arrow { width: 14px; height: 1px; background: currentColor; position: relative; }
.form .submit .arrow::after {
  content: ""; position: absolute; right: 0; top: 50%;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor; border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.form .ok {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 6px;
}

/* ---------- footer ---------- */
footer.foot {
  padding: 60px var(--pad-x) 28px;
  border-top: 1px solid var(--line);
  background: #060606;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 60px;
}
@media (max-width: 720px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot-grid .col h4 {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--fg-muted);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.foot-grid .col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.foot-grid .col li a {
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--fg);
  transition: color .2s;
}
.foot-grid .col li a:hover { color: var(--accent); }
.foot-brand {
  font-family: var(--f-display);
  font-size: clamp(48px, 8vw, 140px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.85;
  border-top: 1px solid var(--line);
  padding-top: 36px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
}
.foot-brand .ar {
  font-family: "Noto Naskh Arabic", "Amiri", serif;
  font-size: 0.45em;
  color: var(--fg-dim);
}
.foot-mark {
  height: clamp(60px, 9vw, 140px);
  width: auto;
  opacity: 0.85;
}
.foot-base {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--fg-muted);
  text-transform: uppercase;
}

/* ---------- scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(0.2, 0.65, 0.2, 1), transform 1s cubic-bezier(0.2, 0.65, 0.2, 1);
}
[data-reveal].in { opacity: 1; transform: none; }

[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.65, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.65, 0.2, 1);
}
[data-reveal-stagger].in > * { opacity: 1; transform: none; }
[data-reveal-stagger].in > *:nth-child(1) { transition-delay: 0ms; }
[data-reveal-stagger].in > *:nth-child(2) { transition-delay: 80ms; }
[data-reveal-stagger].in > *:nth-child(3) { transition-delay: 160ms; }
[data-reveal-stagger].in > *:nth-child(4) { transition-delay: 240ms; }
[data-reveal-stagger].in > *:nth-child(5) { transition-delay: 320ms; }
[data-reveal-stagger].in > *:nth-child(6) { transition-delay: 400ms; }

/* ---------- tweaks panel (vanilla) ---------- */
.tweaks {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 280px;
  background: rgba(10,9,8,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line-2);
  z-index: 500;
  padding: 18px 18px 18px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  display: none;
  color: var(--fg);
}
.tweaks.on { display: block; }
.tweaks h5 {
  font-family: var(--f-display);
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex; justify-content: space-between; align-items: center;
}
.tweaks h5 .x { cursor: pointer; opacity: .5; font-family: var(--f-mono); font-size: 12px; }
.tweaks h5 .x:hover { opacity: 1; }
.tweaks .tweak {
  padding: 12px 0;
  border-top: 1px solid var(--line-2);
}
.tweaks .tweak-label {
  font-size: 10px; color: var(--fg-muted); letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 8px;
}
.tweaks .swatches {
  display: flex; gap: 8px;
}
.tweaks .swatch {
  width: 28px; height: 28px;
  cursor: pointer;
  border: 1px solid var(--line-2);
  position: relative;
}
.tweaks .swatch.on::after {
  content: ""; position: absolute; inset: -3px;
  border: 1px solid var(--fg);
}
.tweaks .seg {
  display: flex; border: 1px solid var(--line-2);
}
.tweaks .seg button {
  flex: 1; padding: 8px; color: var(--fg-dim);
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  border-right: 1px solid var(--line-2);
}
.tweaks .seg button:last-child { border-right: 0; }
.tweaks .seg button.on { background: var(--fg); color: var(--bg); }

/* ============== CART DRAWER ============== */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 900;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed; top: 0; right: 0;
  width: min(420px, 100vw); height: 100vh;
  background: #0c0909;
  border-left: 1px solid var(--line);
  z-index: 901;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.cart-title {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.22em; color: var(--fg);
}
.cart-close {
  background: none; border: none;
  color: var(--fg-dim); cursor: pointer;
  font-size: 16px; padding: 4px; line-height: 1;
  transition: color 0.2s;
}
.cart-close:hover { color: var(--fg); }

.cart-items { flex: 1; overflow-y: auto; padding: 8px 28px; }

.cart-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; gap: 16px;
  border-bottom: 1px solid var(--line-2);
}
.ci-name {
  font-family: var(--f-display); font-size: 15px;
  text-transform: uppercase; letter-spacing: 0.02em;
}
.ci-meta {
  font-family: var(--f-mono); font-size: 10px;
  color: var(--fg-dim); letter-spacing: 0.15em; margin-top: 5px;
}
.ci-controls {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: 13px; flex-shrink: 0;
}
.ci-btn {
  background: none; border: 1px solid var(--line);
  color: var(--fg-dim); cursor: pointer;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; line-height: 1;
  transition: border-color 0.2s, color 0.2s;
}
.ci-btn:hover { border-color: var(--fg-dim); color: var(--fg); }
.ci-rm { border-color: transparent; font-size: 11px; }

.cart-empty {
  display: none; align-items: center; justify-content: center;
  flex: 1;
  font-family: var(--f-mono); font-size: 11px;
  color: var(--fg-dim); letter-spacing: 0.15em;
}
.cart-empty.show { display: flex; }

.cart-footer {
  display: none; flex-direction: column; gap: 12px;
  padding: 24px 28px;
  border-top: 1px solid var(--line); flex-shrink: 0;
}
.cart-footer.show { display: flex; }

.cart-total {
  display: flex; justify-content: space-between;
  font-family: var(--f-mono); font-size: 12px;
  letter-spacing: 0.15em; color: var(--fg);
}
.cart-note {
  font-family: var(--f-mono); font-size: 10px;
  color: var(--fg-dim); letter-spacing: 0.1em; text-align: center;
}
.cart-checkout {
  width: 100%; background: var(--fg); color: var(--bg);
  border: none; cursor: pointer;
  font-family: var(--f-mono); font-size: 12px;
  letter-spacing: 0.22em; padding: 16px;
  transition: background 0.2s, color 0.2s;
}
.cart-checkout:hover { background: var(--accent); color: var(--fg); }
.cart-checkout:disabled { opacity: 0.5; cursor: wait; }

/* ============== SIZE SELECTOR + ADD TO BAG ============== */
.card-buy { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }

.size-row { display: flex; gap: 6px; }
.sz {
  background: none; border: 1px solid var(--line);
  color: var(--fg); cursor: pointer;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.12em; padding: 7px 12px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.sz:hover { border-color: var(--fg-dim); color: var(--fg); }
.sz.on { border-color: var(--fg); color: var(--fg); background: rgba(232,228,221,0.06); }
.size-row.flash .sz { border-color: var(--accent); color: var(--accent); }
.size-error { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.12em; color: var(--accent); margin-top: 4px; display: none; }
.size-error.show { display: block; }

.add-btn {
  background: none; border: 1px solid var(--fg);
  color: var(--fg); cursor: pointer;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.2em; padding: 11px 16px;
  transition: background 0.2s, color 0.2s;
  text-align: center;
}
.add-btn:hover { background: var(--fg); color: var(--bg); }

/* ============== PRODUCT PAGE ============== */
.product-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 80px;
}

/* Gallery */
.product-gallery {
  position: sticky;
  top: 80px;
  height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(20px,3vw,48px);
  border-right: 1px solid var(--line);
}
.gallery-main {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
}
.gallery-main img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: opacity 0.3s;
}
.gallery-nav {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 2;
}
.gallery-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer; border: none;
  transition: background 0.2s;
}
.gallery-dot.on { background: rgba(255,255,255,0.9); }
.gallery-thumbs {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.gallery-thumb {
  width: 64px; height: 80px;
  object-fit: cover;
  object-position: top center;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity 0.2s;
  border: 1px solid transparent;
}
.gallery-thumb.on { opacity: 1; border-color: var(--fg-dim); }

/* Product info panel */
.product-info {
  padding: clamp(28px,4vw,64px);
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 560px;
}
.product-breadcrumb {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--fg-dim);
  text-transform: uppercase;
}
.product-breadcrumb a { transition: color 0.2s; }
.product-breadcrumb a:hover { color: var(--fg); }
.product-name {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 72px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
}
.product-price {
  font-family: var(--f-mono);
  font-size: 18px;
  letter-spacing: 0.1em;
}
.product-desc {
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.7;
  max-width: 42ch;
}
.product-divider {
  height: 1px;
  background: var(--line);
}

/* Size guide accordion */
.size-guide {
  border: 1px solid var(--line);
}
.size-guide summary {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 16px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--fg-dim);
  transition: color 0.2s;
}
.size-guide summary::after { content: "+"; font-size: 16px; line-height: 1; }
.size-guide[open] summary::after { content: "−"; }
.size-guide summary:hover { color: var(--fg); }
.size-guide-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  border-top: 1px solid var(--line);
}
.size-guide-table th {
  padding: 10px 16px;
  text-align: left;
  color: var(--fg-dim);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.15em;
  border-bottom: 1px solid var(--line);
}
.size-guide-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--line-2);
  color: var(--fg);
}
.size-guide-table tr:last-child td { border-bottom: 0; }
.size-guide-note {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--fg-dim);
  padding: 10px 16px 14px;
  letter-spacing: 0.08em;
}

/* Product add-to-bag section */
.product-buy { display: flex; flex-direction: column; gap: 12px; }
.product-buy .size-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--fg-dim);
  text-transform: uppercase;
}
.product-buy .size-row { gap: 8px; }
.product-buy .sz { padding: 10px 16px; font-size: 11px; }
.product-buy .add-btn { padding: 16px; font-size: 11px; letter-spacing: 0.22em; }

.product-back {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--fg-dim);
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
  margin-top: auto;
  padding-top: 12px;
}
.product-back:hover { color: var(--fg); }

@media (max-width: 860px) {
  .product-page { grid-template-columns: 1fr; }
  .product-gallery { position: static; height: 70vw; max-height: 520px; border-right: 0; border-bottom: 1px solid var(--line); }
  .product-info { max-width: 100%; }
}
