:root {
  --void: #050506;
  --ink: #0c0c0e;
  --paper: #f4f0e6;
  --paper-2: #e8e2d4;
  --white: #fffdf8;
  --muted: #6e6a62;
  --line: rgba(12, 12, 14, 0.12);
  --line-light: rgba(255, 255, 255, 0.14);
  --lime: #e6ff2b;
  --orange: #ff5a36;
  --violet: #7a5cff;
  --nav-h: 76px;
  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-ui: "Syne", "Outfit", sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --font-ar: "IBM Plex Sans Arabic", "Outfit", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --step-0: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --step-1: clamp(1.15rem, 1rem + 0.6vw, 1.4rem);
  --step-2: clamp(1.6rem, 1.1rem + 1.6vw, 2.4rem);
  --step-3: clamp(2.4rem, 1.3rem + 3.4vw, 4.2rem);
  --step-4: clamp(4.6rem, 2rem + 10vw, 13.5rem);
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--void);
  color: var(--white);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  font: inherit;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 80;
  background: var(--lime);
  color: var(--ink);
  padding: 8px 12px;
}

.skip-link:focus {
  top: 12px;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.kicker span {
  color: var(--ink);
  background: var(--lime);
  padding: 4px 8px;
  letter-spacing: 0;
  font-weight: 800;
}

.kicker.light span {
  background: var(--lime);
}

.kicker.light {
  color: rgba(255, 255, 255, 0.55);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 0.88;
  letter-spacing: 0.01em;
  margin: 0;
  font-weight: 400;
}

h2 {
  font-size: var(--step-3);
  max-width: 14ch;
}

/* Loader */
.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--void);
  display: grid;
  place-items: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}

.loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-mark {
  display: grid;
  justify-items: center;
  gap: 14px;
  font-family: var(--font-display);
  letter-spacing: 0.28em;
  font-size: 0.95rem;
}

.loader-mark img {
  animation: pulse 1.2s var(--ease) infinite;
}

.loader-bar {
  position: absolute;
  left: 50%;
  bottom: 14vh;
  width: min(220px, 50vw);
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-50%);
  overflow: hidden;
}

.loader-bar i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--lime);
  animation: load 1.1s var(--ease) forwards;
}

@keyframes load {
  to { width: 100%; }
}

@keyframes pulse {
  50% { transform: scale(0.94); }
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 60;
  background: linear-gradient(90deg, var(--lime), var(--orange));
  transform-origin: left;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  color: #fff;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.45);
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}

.nav.is-open {
  background: rgba(5, 5, 6, 0.92);
}

.nav.is-solid {
  background: rgba(244, 240, 230, 0.92);
  color: var(--ink);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  text-shadow: none;
}

.nav.is-open.is-solid {
  background: rgba(244, 240, 230, 0.92);
  color: var(--ink);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.nav-logo img {
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-cta {
  background: var(--lime);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 999px;
  text-shadow: none;
}

.nav.is-solid .nav-cta {
  background: var(--ink);
  color: var(--lime);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s var(--ease);
}

.nav-toggle span:first-child { top: 16px; }
.nav-toggle span:last-child { top: 24px; }

.nav.is-open .nav-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
.nav.is-open .nav-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
}

#aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.hero-collage {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr 0.9fr;
  gap: 8px;
  padding: 0;
}

.hero-panel {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.hero-panel:nth-child(1) { clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%); }
.hero-panel:nth-child(2) { clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%); margin-top: 8vh; height: 84%; }
.hero-panel:nth-child(3) { clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 92%); margin-top: 4vh; }
.hero-panel:nth-child(4) { clip-path: polygon(0 0, 100% 12%, 100% 100%, 8% 100%); margin-top: 12vh; height: 78%; }

.hero-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  animation: ken 22s ease-in-out infinite alternate;
  filter: saturate(1.15) contrast(1.08);
}

.hero-panel:nth-child(2) img { animation-duration: 28s; animation-delay: -4s; }
.hero-panel:nth-child(3) img { animation-duration: 18s; animation-delay: -8s; }
.hero-panel:nth-child(4) img { animation-duration: 26s; animation-delay: -2s; }

@keyframes ken {
  to { transform: scale(1.22) translate3d(-2%, -2%, 0); }
}

.hero-wash {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(5, 5, 6, 0.25) 0%, rgba(5, 5, 6, 0.15) 35%, rgba(5, 5, 6, 0.72) 100%),
    linear-gradient(90deg, rgba(5, 5, 6, 0.55), transparent 28%, transparent 72%, rgba(5, 5, 6, 0.45)),
    radial-gradient(ellipse at 20% 80%, rgba(230, 255, 43, 0.28), transparent 42%),
    radial-gradient(ellipse at 90% 20%, rgba(255, 90, 54, 0.28), transparent 36%),
    radial-gradient(ellipse at 70% 90%, rgba(122, 92, 255, 0.25), transparent 40%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.22;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  animation: grain 0.45s steps(2) infinite;
}

@keyframes grain {
  0%, 100% { transform: translate(0); }
  25% { transform: translate(-1%, 1%); }
  50% { transform: translate(1%, -1%); }
  75% { transform: translate(-1%, -2%); }
}

.hero-spot {
  position: absolute;
  width: 42vw;
  height: 42vw;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(circle, rgba(230, 255, 43, 0.18), transparent 62%);
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  opacity: 0.9;
}

.hero-content {
  position: relative;
  z-index: 4;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-h) + 24px) 28px 120px;
  width: min(1100px, 100%);
}

.eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 16px var(--lime);
}

.hero-title {
  font-size: var(--step-4);
  text-transform: uppercase;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line span {
  display: inline-block;
}

.hero-title .line:last-child span {
  color: var(--lime);
  text-shadow: 0 0 40px rgba(230, 255, 43, 0.35);
}

.hero-ar {
  font-family: var(--font-ar);
  font-size: clamp(1.4rem, 2vw, 2rem);
  margin: 8px 0 18px;
  letter-spacing: 0.18em;
}

.hero-lead {
  max-width: 46ch;
  margin: 0 0 28px;
  color: rgba(255, 253, 248, 0.82);
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  font-family: var(--font-ui);
  font-weight: 800;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-lime {
  background: var(--lime);
  color: var(--ink);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.scroll-hint {
  position: absolute;
  right: 28px;
  bottom: 120px;
  z-index: 4;
  display: grid;
  justify-items: center;
  gap: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.scroll-hint i {
  width: 1px;
  height: 56px;
  background: linear-gradient(var(--lime), transparent);
  animation: drip 1.6s var(--ease) infinite;
}

@keyframes drip {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero-marquee,
.ticker-band {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: rgba(5, 5, 6, 0.55);
  backdrop-filter: blur(10px);
}

.hero-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
}

.marquee-track {
  display: inline-flex;
  gap: 42px;
  padding: 14px 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  animation: slide 28s linear infinite;
}

.marquee-track span::after {
  content: "●";
  margin-left: 42px;
  color: var(--lime);
  font-size: 0.55rem;
  vertical-align: middle;
}

.marquee-track.reverse {
  animation-direction: reverse;
  animation-duration: 36s;
  color: var(--ink);
}

.ticker-band {
  background: var(--lime);
  color: var(--ink);
  border: 0;
}

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

/* About */
.about {
  background: var(--paper);
  color: var(--ink);
  padding: 120px 0 100px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.about-copy p {
  color: #3c3933;
  max-width: 52ch;
}

.facts {
  list-style: none;
  padding: 24px 0 0;
  margin: 28px 0 0;
  display: grid;
  gap: 16px;
  border-top: 1px solid var(--line);
}

.facts li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-ui);
}

.facts span {
  color: var(--muted);
  font-size: 0.92rem;
}

.about-visual {
  position: relative;
  min-height: 520px;
}

.stack {
  position: relative;
  height: 520px;
}

.stack-img {
  position: absolute;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(12, 12, 14, 0.22);
}

.stack-img.one {
  width: 58%;
  height: 70%;
  left: 0;
  top: 40px;
  z-index: 1;
}

.stack-img.two {
  width: 48%;
  height: 48%;
  right: 0;
  top: 0;
  z-index: 2;
}

.stack-img.three {
  width: 42%;
  height: 38%;
  right: 8%;
  bottom: 12px;
  z-index: 3;
  border: 6px solid var(--paper);
}

.stamp {
  position: absolute;
  left: 18px;
  bottom: 28px;
  z-index: 4;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  border: 2px dashed var(--ink);
  display: grid;
  place-content: center;
  text-align: center;
  background: var(--lime);
  transform: rotate(-12deg);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stamp b {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}

/* Brands */
.brands {
  background: var(--paper);
  color: var(--ink);
  padding: 90px 0 110px;
}

.section-head {
  margin-bottom: 42px;
}

.section-lead {
  max-width: 54ch;
  color: #3c3933;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.brand-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.brand-card.featured {
  grid-column: span 2;
  min-height: 420px;
}

.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(12, 12, 14, 0.1);
}

.brand-media {
  position: relative;
  flex: 1;
  min-height: 170px;
  overflow: hidden;
  background: #ddd6c6;
}

.brand-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), opacity 0.6s;
}

.brand-card.featured .brand-media img:nth-child(2) {
  opacity: 0;
  clip-path: inset(0 0 0 50%);
}

.brand-card.featured:hover .brand-media img:nth-child(2) {
  opacity: 1;
}

.brand-card:hover .brand-media img {
  transform: scale(1.08);
}

.brand-meta {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px 16px;
}

.brand-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: brightness(0);
}

.brand-logo.word {
  width: 100%;
  height: 22px;
  grid-column: 1 / 2;
}

.brand-meta h3 {
  font-family: var(--font-ui);
  font-size: 1rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.brand-meta p {
  margin: 4px 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.origin {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 800;
  border: 1px solid var(--line);
  padding: 4px 7px;
  border-radius: 999px;
}

/* Lookbook */
.lookbook {
  background: var(--void);
  color: var(--white);
  padding: 0;
  overflow: hidden;
}

.look-pin {
  padding: 90px 0 40px;
}

.look-head p:last-child {
  color: rgba(255, 255, 255, 0.62);
  max-width: 46ch;
}

.look-track {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  padding: 48px 28px 80px;
  width: max-content;
}

.look-card {
  margin: 0;
  position: relative;
  width: min(320px, 72vw);
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  flex: 0 0 auto;
}

.look-card.tall {
  height: 520px;
  width: min(360px, 78vw);
}

.look-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08);
}

.look-pin.is-scroll {
  overflow-x: auto;
}

.look-card figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 10px;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
}

/* Visit */
.visit {
  background: var(--paper);
  color: var(--ink);
  padding: 100px 0;
}

.visit-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
}

.visit-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  min-height: 460px;
}

.contact-card {
  padding: 36px;
}

.over {
  margin: 0;
  font-family: var(--font-ui);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--muted);
}

.phone {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 10px 0 16px;
  letter-spacing: 0.02em;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 28px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.contact-list li {
  display: grid;
  gap: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.contact-list span {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
  filter: grayscale(0.35) contrast(1.05);
}

/* Footer */
.footer {
  background: var(--ink);
  color: rgba(255, 253, 248, 0.8);
  padding: 48px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin: 10px 0 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-ui);
  font-weight: 700;
}

.tiny {
  grid-column: 1 / -1;
  font-size: 0.78rem;
  color: rgba(255, 253, 248, 0.45);
  margin: 8px 0 0;
}

.wa-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s var(--ease);
}

.wa-fab svg {
  width: 30px;
  height: 30px;
}

.wa-fab:hover {
  transform: scale(1.08);
}

.reveal {
  opacity: 1;
}

.brand-logo.word {
  display: none;
}

.brand-card:has(.word) .brand-meta {
  grid-template-columns: 1fr auto;
}

/* Mobile */
@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 16px auto;
    background: var(--paper);
    color: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    border-radius: 18px;
    gap: 16px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  }
  .nav.is-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .hero-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .hero-panel:nth-child(n) {
    clip-path: none;
    margin: 0;
    height: 100%;
  }
  .hero-panel:nth-child(3),
  .hero-panel:nth-child(4) { display: none; }
  .about-grid,
  .visit-grid,
  .brand-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .brand-card.featured {
    grid-column: auto;
    min-height: 340px;
  }
  .scroll-hint { display: none; }
  .about-visual { min-height: 420px; }
  .stack { height: 420px; }
  .lookbook { overflow: visible; }
  .look-pin {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 640px) {
  .wrap { width: min(1180px, calc(100% - 28px)); }
  .hero-content { padding-bottom: 108px; }
  .nav { padding: 0 16px; }
  .brand-grid { grid-template-columns: 1fr 1fr; }
  .brand-card.featured { grid-column: span 2; }
  .facts li { flex-direction: column; gap: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-panel img,
  .loader-mark img,
  .marquee-track,
  .hero-grain,
  .scroll-hint i {
    animation: none !important;
  }
}
