/* =========================================================
   ون ونص — v2 — BRIGHT EDITORIAL COMMERCE
   Design tokens
   ========================================================= */
:root{
  --white: #FFFFFF;
  --paper: #FBFBF9;
  --ink: #14131A;
  --ink-soft: #57566B;
  --ink-faint: #9694A6;
  --line: rgba(20,19,26,.10);
  --line-strong: rgba(20,19,26,.18);

  --cobalt: #2B44D6;
  --cobalt-deep: #1D2FA0;
  --coral: #FF5B45;
  --coral-deep: #E4402C;
  --yellow: #FFC53D;
  --green: #17B87D;

  --on-cobalt: #EEF1FF;
  --on-coral: #FFF1EC;

  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 36px;
  --radius-pill: 999px;

  --shadow-sm: 0 3px 14px rgba(20,19,26,.08);
  --shadow-md: 0 14px 34px rgba(20,19,26,.14);
  --shadow-lg: 0 28px 70px rgba(20,19,26,.20);

  --font: "Cairo", "Segoe UI", Tahoma, sans-serif;

  --ease: cubic-bezier(.16,.8,.28,1);
  --dur-s: .3s;
  --dur-m: .55s;
  --dur-l: .85s;

  --container: 1320px;
}

/* =========================================================
   Reset
   ========================================================= */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
h1,h2,h3,h4,p{ margin: 0; }
svg{ display: block; }

::selection{ background: var(--yellow); color: var(--ink); }

:focus-visible{
  outline: 3px solid var(--cobalt);
  outline-offset: 3px;
  border-radius: 6px;
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

.container{
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.container-fluid{
  width: 100%;
  padding-inline: clamp(16px, 4vw, 56px);
}

.skip-link{
  position: absolute;
  right: 12px;
  top: -60px;
  background: var(--ink);
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  z-index: 999;
  transition: top var(--dur-s) var(--ease);
}
.skip-link:focus{ top: 12px; }

/* =========================================================
   Typography
   ========================================================= */
.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: .01em;
  color: var(--ink);
}
.eyebrow::before{
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
  display: inline-block;
}
.eyebrow.on-dark{ color: var(--white); }
.eyebrow.on-color{ color: var(--white); }
.eyebrow.on-color::before, .eyebrow.on-dark::before{ background: var(--yellow); }

.h-black{ font-weight: 800; }
.section-title{
  font-weight: 800;
  font-size: clamp(30px, 4.4vw, 50px);
  line-height: 1.16;
  color: var(--ink);
  letter-spacing: -.01em;
}
.section-kicker{
  color: var(--ink-soft);
  font-size: clamp(16px, 1.6vw, 18.5px);
  max-width: 46ch;
  margin-top: 14px;
  font-weight: 500;
}

/* =========================================================
   Brand mark
   ========================================================= */
.brandmark{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brandmark__glyph{ width: 36px; height: 36px; flex-shrink: 0; }
.brandmark__word{
  font-weight: 800;
  font-size: 21px;
  color: var(--ink);
  white-space: nowrap;
}
.on-dark .brandmark__word{ color: var(--white); }

/* =========================================================
   Header
   ========================================================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  padding-block: 14px;
  transition: box-shadow var(--dur-s) var(--ease), background var(--dur-s) var(--ease);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 10px 12px 10px 22px;
  box-shadow: var(--shadow-sm);
}
.site-header.is-scrolled .header-inner{ box-shadow: var(--shadow-md); }

.main-nav{ display: flex; align-items: center; gap: 30px; }
.main-nav a{
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-soft);
  transition: color var(--dur-s) var(--ease);
}
.main-nav a:hover, .main-nav a:focus-visible{ color: var(--ink); }

.header-actions{ display: flex; align-items: center; gap: 10px; }

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-size: 14.5px;
  font-weight: 800;
  transition: transform var(--dur-s) var(--ease), box-shadow var(--dur-s) var(--ease), background var(--dur-s) var(--ease), color var(--dur-s) var(--ease);
  white-space: nowrap;
}
.btn-coral{ background: var(--coral); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-coral:hover, .btn-coral:focus-visible{ background: var(--coral-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-cobalt{ background: var(--cobalt); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-cobalt:hover, .btn-cobalt:focus-visible{ background: var(--cobalt-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ink{ background: var(--ink); color: var(--white); }
.btn-ink:hover, .btn-ink:focus-visible{ background: #000; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline{
  border: 2px solid var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-outline:hover, .btn-outline:focus-visible{ background: var(--ink); color: var(--white); transform: translateY(-2px); }
.btn-outline-light{
  border: 2px solid rgba(255,255,255,.6);
  color: var(--white);
}
.btn-outline-light:hover, .btn-outline-light:focus-visible{ background: var(--white); color: var(--ink); border-color: var(--white); }
.btn-white{ background: var(--white); color: var(--ink); }
.btn-white:hover, .btn-white:focus-visible{ transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-sm{ padding: 10px 20px; font-size: 13.5px; }
.btn svg{ width: 17px; height: 17px; transition: transform var(--dur-s) var(--ease); }
.btn:hover svg{ transform: translateX(-4px); }

.nav-toggle{
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  align-items: center;
  justify-content: center;
}
.nav-toggle svg{ width: 19px; height: 19px; }

/* =========================================================
   Hero
   ========================================================= */
.hero{
  position: relative;
  padding-top: clamp(28px, 4vw, 44px);
  padding-bottom: clamp(40px, 5vw, 60px);
  overflow: hidden;
}
.hero-shell{
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--cobalt);
  overflow: hidden;
  min-height: clamp(560px, 88vh, 840px);
  display: flex;
  align-items: stretch;
}
.hero-bg-blob{
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}
.hero-bg-blob.b1{ width: 480px; height: 480px; background: var(--coral); opacity: .9; top: -160px; inset-inline-end: -120px; }
.hero-bg-blob.b2{ width: 300px; height: 300px; background: var(--yellow); opacity: .95; bottom: -100px; inset-inline-start: -80px; }

.hero-grid{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: clamp(32px, 5vw, 64px);
}
.hero-copy{ color: var(--white); }
.hero-copy .eyebrow{ margin-bottom: 22px; }
.hero-title{
  font-weight: 900;
  font-size: clamp(38px, 5.6vw, 66px);
  line-height: 1.1;
  letter-spacing: -.01em;
}
.hero-title .line{ display: block; }
.hero-title .hi{
  color: var(--yellow);
  position: relative;
  display: inline-block;
}
.hero-desc{
  margin-top: 24px;
  font-size: clamp(16.5px, 1.7vw, 19.5px);
  color: rgba(255,255,255,.88);
  max-width: 42ch;
  font-weight: 500;
}
.hero-ctas{
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-badges{
  margin-top: 44px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.28);
  color: var(--white);
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 700;
}
.hero-badge svg{ width: 15px; height: 15px; }

/* Hero illustration: bold layered editorial collage */
.hero-art{
  position: relative;
  height: 100%;
  min-height: 380px;
}
.hero-art svg{ width: 100%; height: 100%; }
.hero-art .float-a{ animation: floatY 6.5s ease-in-out infinite; transform-origin: center; }
.hero-art .float-b{ animation: floatY 7.8s ease-in-out infinite; animation-delay: -2.2s; transform-origin: center; }
.hero-art .float-c{ animation: floatY 5.6s ease-in-out infinite; animation-delay: -1.1s; transform-origin: center; }
.hero-art .spin-a{ animation: spin 34s linear infinite; transform-origin: center; }
@keyframes floatY{ 0%,100%{ transform: translateY(0) rotate(var(--r,0deg)); } 50%{ transform: translateY(-16px) rotate(var(--r,0deg)); } }
@keyframes spin{ to{ transform: rotate(360deg); } }

/* =========================================================
   Marquee strip
   ========================================================= */
.marquee{
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  padding-block: 18px;
  border-radius: var(--radius-lg);
  margin-top: 18px;
}
.marquee-track{
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
  gap: 0;
}
.marquee-track span{
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 800;
  padding-inline: 20px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 20px;
}
.marquee-track span::after{
  content: "";
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--coral);
  display: inline-block;
}
@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* =========================================================
   Reveal-on-scroll
   ========================================================= */
[data-reveal]{
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].is-visible{ opacity: 1; transform: translateY(0); }
[data-reveal-stagger] > *{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal-stagger].is-visible > *{ opacity: 1; transform: translateY(0); }
[data-reveal-stagger].is-visible > *:nth-child(1){ transition-delay: .04s; }
[data-reveal-stagger].is-visible > *:nth-child(2){ transition-delay: .12s; }
[data-reveal-stagger].is-visible > *:nth-child(3){ transition-delay: .2s; }
[data-reveal-stagger].is-visible > *:nth-child(4){ transition-delay: .28s; }
[data-reveal-stagger].is-visible > *:nth-child(5){ transition-delay: .36s; }
[data-reveal-stagger].is-visible > *:nth-child(6){ transition-delay: .44s; }

/* =========================================================
   Section shell
   ========================================================= */
.section{ padding-block: clamp(56px, 8vw, 108px); }
.section-head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.section-head .heading-block{ max-width: 680px; }

/* =========================================================
   Worlds — big bold rows
   ========================================================= */
.worlds{ display: flex; flex-direction: column; gap: 22px; }
.world-row{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(420px, 62vh, 620px);
  transition: transform var(--dur-m) var(--ease);
}
.world-row--fashion{ background: var(--cobalt); }
.world-row--gifts{ background: var(--coral); }
.world-row--gifts .world-row-grid{ direction: ltr; }
.world-row--gifts .world-row-grid > *{ direction: rtl; }

.world-row-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}
.world-copy{
  padding: clamp(32px, 4.5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  position: relative;
  z-index: 2;
}
.world-copy .eyebrow{ margin-bottom: 18px; }
.world-copy h3{
  font-weight: 900;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.15;
  letter-spacing: -.01em;
}
.world-copy p{
  margin-top: 18px;
  font-size: clamp(15.5px, 1.5vw, 18px);
  color: rgba(255,255,255,.88);
  max-width: 38ch;
  font-weight: 500;
}
.world-copy .btn{ margin-top: 30px; width: fit-content; }

.world-art{
  position: relative;
  overflow: hidden;
}
.world-art svg{
  width: 100%;
  height: 100%;
  transition: transform .8s var(--ease);
}
.world-row:hover .world-art svg{ transform: scale(1.06) rotate(-1deg); }

.world-tag{
  position: absolute;
  top: 28px;
  inset-inline-end: 28px;
  z-index: 3;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 800;
}

/* =========================================================
   Mix section ("مش لازم تختار حاجة واحدة")
   ========================================================= */
.mix{
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(48px, 6vw, 88px) clamp(24px, 5vw, 64px);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.mix-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  position: relative;
  z-index: 2;
}
.mix-copy h2{
  font-weight: 900;
  font-size: clamp(30px, 4.4vw, 48px);
  line-height: 1.15;
}
.mix-copy p{
  margin-top: 18px;
  color: rgba(255,255,255,.78);
  font-size: 17px;
  max-width: 40ch;
  font-weight: 500;
}
.mix-cluster{
  position: relative;
  height: clamp(280px, 34vw, 420px);
}
.mix-chip{
  position: absolute;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform var(--dur-m) var(--ease);
}
.mix-chip svg{ width: 46%; height: 46%; }
.mix-chip:hover{ transform: translateY(-8px) rotate(0deg) !important; }
.mix-chip.c1{ width: 42%; aspect-ratio:1; background: var(--coral); top: 4%; inset-inline-start: 6%; transform: rotate(-6deg); }
.mix-chip.c2{ width: 38%; aspect-ratio:1; background: var(--yellow); top: 10%; inset-inline-end: 2%; transform: rotate(8deg); }
.mix-chip.c3{ width: 34%; aspect-ratio:1; background: var(--green); bottom: 2%; inset-inline-start: 18%; transform: rotate(5deg); }
.mix-chip.c4{ width: 30%; aspect-ratio:1; background: var(--cobalt); bottom: 8%; inset-inline-end: 14%; transform: rotate(-8deg); }

/* =========================================================
   Values strip
   ========================================================= */
.values-strip{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card{
  border-radius: var(--radius-md);
  padding: 30px 26px;
  border: 1.5px solid var(--line);
  background: var(--white);
  transition: transform var(--dur-s) var(--ease), box-shadow var(--dur-s) var(--ease), border-color var(--dur-s) var(--ease);
}
.value-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.value-card__icon{
  width: 50px; height: 50px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.value-card:nth-child(1) .value-card__icon{ background: var(--on-cobalt); }
.value-card:nth-child(1) .value-card__icon svg{ color: var(--cobalt); }
.value-card:nth-child(2) .value-card__icon{ background: var(--on-coral); }
.value-card:nth-child(2) .value-card__icon svg{ color: var(--coral); }
.value-card:nth-child(3) .value-card__icon{ background: #FFF6DE; }
.value-card:nth-child(3) .value-card__icon svg{ color: #B5860A; }
.value-card__icon svg{ width: 24px; height: 24px; }
.value-card h3{ font-weight: 800; font-size: 18.5px; }
.value-card p{ margin-top: 10px; color: var(--ink-soft); font-size: 15px; font-weight: 500; }

/* =========================================================
   Future teaser
   ========================================================= */
.future{
  position: relative;
  border-radius: var(--radius-lg);
  padding: clamp(46px, 7vw, 80px) clamp(24px, 5vw, 64px);
  background: var(--yellow);
  color: var(--ink);
  text-align: center;
  overflow: hidden;
}
.future h2{
  font-weight: 900;
  font-size: clamp(28px, 4vw, 42px);
  margin-top: 16px;
}
.future p{ margin-top: 14px; color: rgba(20,19,26,.75); font-size: 16.5px; font-weight: 600; }
.future .eyebrow{ justify-content: center; }

/* =========================================================
   About section
   ========================================================= */
.about{
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.about-visual{
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--on-cobalt);
}
.about-visual svg{ width: 100%; height: 100%; }
.about-body p{ color: var(--ink-soft); font-size: 17px; margin-bottom: 16px; max-width: 56ch; font-weight: 500; }
.about-body p:last-child{ margin-bottom: 0; }

/* =========================================================
   Contact strip
   ========================================================= */
.contact{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  padding: clamp(36px, 5vw, 56px);
  border-radius: var(--radius-lg);
  background: var(--cobalt);
  color: var(--white);
}
.contact h2{
  font-weight: 900;
  font-size: clamp(24px, 2.8vw, 32px);
  max-width: 20ch;
}
.contact-actions{ display: flex; gap: 14px; flex-wrap: wrap; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer{
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin-top: clamp(40px, 6vw, 60px);
  padding-block: clamp(52px, 6vw, 76px) 28px;
}
.footer-word{
  font-weight: 900;
  font-size: clamp(46px, 9vw, 110px);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 40px;
}
.footer-word .dot{ color: var(--coral); }
.footer-top{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.footer-brand p{
  color: rgba(255,255,255,.65);
  font-size: 14.5px;
  margin-top: 14px;
  max-width: 34ch;
  font-weight: 500;
}
.footer-col h4{
  font-size: 13.5px;
  font-weight: 800;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.footer-col ul{ display: flex; flex-direction: column; gap: 12px; }
.footer-col a{
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,.82);
  transition: color var(--dur-s) var(--ease);
}
.footer-col a:hover{ color: var(--yellow); }

.social-row{ display: flex; gap: 10px; margin-top: 18px; }
.social-row a{
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.24);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: border-color var(--dur-s) var(--ease), transform var(--dur-s) var(--ease), background var(--dur-s) var(--ease);
}
.social-row svg{ width: 18px; height: 18px; }
.social-row a:hover{ border-color: var(--yellow); background: rgba(255,197,61,.12); transform: translateY(-3px); }

.footer-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  font-size: 13.5px;
  color: rgba(255,255,255,.5);
}

/* =========================================================
   Utility page (privacy/terms/404)
   ========================================================= */
.doc-page{ padding-block: clamp(48px,7vw,88px); }
.doc-page .container{ max-width: 800px; }
.doc-page h1{
  font-weight: 900;
  font-size: clamp(30px,4vw,46px);
  margin-bottom: 8px;
}
.doc-page .updated{ color: var(--ink-faint); font-size: 14px; margin-bottom: 42px; display: block; font-weight: 600; }
.doc-page h2{
  font-weight: 800;
  font-size: 21px;
  margin-top: 40px;
  margin-bottom: 14px;
}
.doc-page p, .doc-page li{ color: var(--ink-soft); font-size: 15.5px; margin-bottom: 12px; font-weight: 500; }
.doc-page ul{ list-style: disc; padding-inline-start: 22px; }
.doc-page a{ color: var(--cobalt); text-decoration: underline; text-underline-offset: 3px; font-weight: 700; }

.notfound{
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: 80px;
}
.notfound-glyph{ width: 90px; height: 90px; margin-inline: auto; margin-bottom: 26px; }
.notfound h1{ font-weight: 900; font-size: clamp(30px,5vw,46px); }
.notfound p{ color: var(--ink-soft); margin-top: 14px; margin-bottom: 30px; font-weight: 600; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1100px){
  .about{ grid-template-columns: 1fr; }
  .about-visual{ max-width: 420px; margin-inline: auto; }
  .footer-top{ grid-template-columns: 1fr 1fr; row-gap: 36px; }
}

@media (max-width: 960px){
  .main-nav{ display: none; }
  .header-actions .btn-coral{ display: none; }
  .nav-toggle{ display: inline-flex; }

  .hero-grid{ grid-template-columns: 1fr; }
  .hero-art{ min-height: 300px; order: -1; }

  .world-row, .world-row-grid{ grid-template-columns: 1fr; }
  .world-row--gifts .world-row-grid{ direction: rtl; }
  .world-art{ min-height: 260px; order: -1; }
  .world-copy{ padding: 28px; }

  .mix-grid{ grid-template-columns: 1fr; }
  .mix-cluster{ order: -1; height: 300px; }

  .values-strip{ grid-template-columns: 1fr; }
  .contact{ flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px){
  .container{ padding-inline: 18px; }
  .header-inner{ padding: 8px 8px 8px 16px; }
  .footer-top{ grid-template-columns: 1fr; }
  .footer-bottom{ flex-direction: column; align-items: flex-start; }
  .section-head{ flex-direction: column; align-items: flex-start; }
  .hero-ctas{ flex-direction: column; align-items: stretch; }
  .hero-ctas .btn{ width: 100%; }
  .hero-badges{ display: none; }
  .world-copy .btn{ width: 100%; justify-content: center; }
}

/* Mobile nav drawer */
.mobile-nav{
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 20px;
  transform: translateY(-100%);
  transition: transform var(--dur-m) var(--ease);
  visibility: hidden;
}
.mobile-nav.is-open{ transform: translateY(0); visibility: visible; }
.mobile-nav__top{ display: flex; align-items: center; justify-content: space-between; }
.mobile-nav__close{
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.3);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.mobile-nav__close svg{ width: 19px; height: 19px; }
.mobile-nav__links{
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 52px;
}
.mobile-nav__links a{
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  padding-block: 15px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.mobile-nav__cta{ margin-top: 36px; }


/* =========================
   ONEWNOS WORLDS V2
========================= */

.worlds-section {
  overflow: hidden;
}

.worlds-heading {
  max-width: 760px;
  margin: 0 0 54px auto;
  text-align: right;
}

.worlds-heading h2 {
  margin: 14px 0 16px;
  font-family: "Cairo", sans-serif;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
}

.worlds-heading > p:last-child {
  margin: 0;
  font-size: 18px;
  color: #626262;
}

.worlds-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.world-card {
  position: relative;
  min-height: 650px;
  padding: 42px;
  border-radius: 42px;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.45s cubic-bezier(.2,.8,.2,1),
    box-shadow 0.45s ease;
}

.world-card:hover {
  transform: translateY(-8px);
}

.world-card--fashion {
  color: #fff;
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(255,255,255,.18),
      transparent 35%
    ),
    #2b44d6;

  box-shadow:
    0 30px 80px rgba(43,68,214,.20);
}

.world-card--gifts {
  color: #201d1b;

  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(255,255,255,.35),
      transparent 35%
    ),
    #ff654f;

  box-shadow:
    0 30px 80px rgba(255,91,69,.18);
}

.world-card-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  left: -180px;
  bottom: -190px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  filter: blur(4px);
  z-index: -1;
}

.world-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  direction: rtl;
}

.world-number {
  padding: 9px 17px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  font-size: 13px;
  font-weight: 800;
}

.world-card--gifts .world-number {
  border-color: rgba(32,29,27,.18);
  background: rgba(255,255,255,.22);
}

.world-icon {
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  border-radius: 30px;
  transition:
    transform .4s ease,
    rotate .4s ease;
}

.world-card:hover .world-icon {
  transform: scale(1.08);
  rotate: -4deg;
}

.world-icon svg {
  width: 56px;
  height: 56px;
}

.world-icon--fashion {
  color: #1f32ae;
  background: #ffc83d;
}

.world-icon--gifts {
  color: #fff;
  background: #202020;
}

.world-card-content {
  position: absolute;
  right: 42px;
  left: 42px;
  bottom: 42px;
}

.world-label {
  margin: 0 0 17px;
  font-size: 15px;
  font-weight: 800;
  opacity: .82;
}

.world-card h3 {
  max-width: 590px;
  margin: 0;
  font-family: "Cairo", sans-serif;
  font-size: clamp(40px, 4.4vw, 69px);
  font-weight: 900;
  line-height: 1.13;
  letter-spacing: -2px;
}

.world-card--gifts h3 {
  font-size: clamp(37px, 3.5vw, 57px);
}

.world-description {
  max-width: 570px;
  margin: 23px 0 26px;
  font-size: 17px;
  line-height: 1.9;
  opacity: .86;
}

.fashion-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.category-pill {
  min-width: 105px;
  padding: 10px 17px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 16px;
  background: rgba(255,255,255,.10);
  text-align: center;
  font-weight: 800;
}

.category-pill small {
  display: block;
  margin-top: 2px;
  font-size: 9px;
  opacity: .65;
}

.category-pill--active {
  color: #202020;
  background: #fff;
}

.gift-features {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 30px;
}

.gift-features span {
  padding: 9px 17px;
  border-radius: 999px;
  background: rgba(255,255,255,.32);
  font-size: 13px;
  font-weight: 800;
}

.world-link {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 20px 15px 15px;
  border-radius: 999px;
  color: #202020;
  background: #fff;
  font-weight: 900;
  text-decoration: none;
  transition:
    gap .3s ease,
    transform .3s ease;
}

.world-link:hover {
  gap: 23px;
  transform: translateX(-3px);
}

.world-link-arrow {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #202020;
  font-size: 20px;
}

.future-worlds {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 19px;
  margin-top: 24px;
  padding: 25px;
  border: 1px dashed #cfcfcf;
  border-radius: 28px;
  text-align: right;
}

.future-worlds-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: #fff;
  background: #202020;
  font-size: 30px;
  font-weight: 400;
}

.future-worlds strong {
  font-size: 17px;
  font-weight: 900;
}

.future-worlds p {
  margin: 3px 0 0;
  color: #747474;
  font-size: 13px;
}


/* TABLET */

@media (max-width: 1050px) {

  .worlds-grid {
    grid-template-columns: 1fr;
  }

  .world-card {
    min-height: 610px;
  }

}


/* MOBILE */

@media (max-width: 650px) {

  .worlds-heading {
    margin-bottom: 32px;
  }

  .worlds-heading h2 {
    font-size: 43px;
    letter-spacing: -1px;
  }

  .worlds-heading > p:last-child {
    font-size: 15px;
    line-height: 1.8;
  }

  .worlds-grid {
    gap: 16px;
  }

  .world-card {
    min-height: 590px;
    padding: 25px;
    border-radius: 28px;
  }

  .world-card-content {
    right: 25px;
    left: 25px;
    bottom: 25px;
  }

  .world-icon {
    width: 75px;
    height: 75px;
    border-radius: 23px;
  }

  .world-icon svg {
    width: 43px;
    height: 43px;
  }

  .world-card h3,
  .world-card--gifts h3 {
    font-size: 39px;
    line-height: 1.18;
    letter-spacing: -1px;
  }

  .world-description {
    margin: 17px 0 20px;
    font-size: 14px;
    line-height: 1.8;
  }

  .category-pill {
    min-width: auto;
    padding: 8px 13px;
  }

  .world-link {
    width: 100%;
    justify-content: space-between;
  }

  .future-worlds {
    justify-content: flex-start;
    padding: 20px;
  }

}

#world-fashion,
#world-gifts {
  scroll-margin-top: 110px;
}
