:root {
  --black: #10100f;
  --black-2: #181715;
  --white: #f7f5f0;
  --paper: #ece8df;
  --ink: #171716;
  --muted: #77736c;
  --burgundy: #7b1733;
  --bronze: #b99459;
  --line: rgba(20,20,18,.18);
  --pad: clamp(1.25rem, 4vw, 4.5rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body { margin: 0; background: var(--white); color: var(--ink); font-family: "IBM Plex Sans Arabic", sans-serif; font-size: 1rem; line-height: 1.7; overflow-x: hidden; }
body:not(.is-rtl) { font-family: "Manrope", sans-serif; line-height: 1.55; }
body.is-loading { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { color: inherit; font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
.skip-link { position: fixed; z-index: 1000; top: -5rem; left: 1rem; padding: .75rem 1rem; background: #fff; color: #000; }
.skip-link:focus { top: 1rem; }

.intro-curtain { position: fixed; inset: 0; z-index: 999; display: grid; place-content: center; justify-items: center; gap: 1rem; overflow: hidden; background: radial-gradient(circle at 50% 44%, #fff 0, var(--paper) 48%, #dfd8cc 145%); transition: transform .68s cubic-bezier(.76,0,.24,1); }
.intro-curtain::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .34; background: linear-gradient(90deg, transparent 49.9%, rgba(16,16,15,.08) 50%, transparent 50.1%), linear-gradient(0deg, transparent 49.9%, rgba(16,16,15,.055) 50%, transparent 50.1%); transform: scale(.65); animation: introGrid .8s cubic-bezier(.2,.75,.2,1) both; }
.intro-logo { position: relative; width: min(52vw, 290px); padding: .5rem 0; overflow: hidden; isolation: isolate; }
.intro-logo-reveal { overflow: hidden; clip-path: inset(0 50% 0 50%); animation: logoReveal .72s cubic-bezier(.22,.82,.2,1) .06s forwards; }
.intro-logo img { width: 100%; height: auto; opacity: 0; transform: translateY(18px) scale(.92); filter: blur(7px); animation: logoRise .72s cubic-bezier(.2,.8,.2,1) .06s forwards; }
.intro-logo::after { content: ""; position: absolute; z-index: 2; top: -20%; bottom: -20%; left: -45%; width: 30%; pointer-events: none; background: linear-gradient(90deg, transparent, rgba(255,255,255,.88), transparent); transform: skewX(-18deg); mix-blend-mode: screen; animation: logoGlint .78s ease-out .34s both; }
.intro-line { width: min(52vw, 290px); height: 1px; background: rgba(16,16,15,.13); position: relative; overflow: hidden; }
.intro-line::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, var(--burgundy) 22%, var(--bronze) 78%, transparent); transform-origin: center; animation: introLine .62s cubic-bezier(.6,0,.3,1) .18s both; }
.intro-curtain small { display: flex; align-items: center; gap: .7rem; font: 700 .7rem/1 "Manrope", sans-serif; letter-spacing: .22em; opacity: 0; transform: translateY(8px); animation: introMeta .42s ease .42s forwards; }
.intro-curtain small b { font: inherit; }
.intro-curtain small i { width: 18px; height: 1px; background: var(--bronze); }
body:not(.is-loading) .intro-curtain { transform: translateY(-102%); }
@keyframes introGrid { from { opacity: 0; transform: scale(.82); } to { opacity: .34; transform: scale(1); } }
@keyframes logoReveal { to { clip-path: inset(0); } }
@keyframes logoRise { to { opacity: 1; transform: none; filter: blur(0); } }
@keyframes logoGlint { from { transform: translateX(0) skewX(-18deg); } to { transform: translateX(520%) skewX(-18deg); } }
@keyframes introLine { from { transform: scaleX(0); opacity: 0; } to { transform: scaleX(1); opacity: 1; } }
@keyframes introMeta { to { opacity: .55; transform: none; } }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; height: 92px; padding: 0 var(--pad); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; color: #fff; border-bottom: 1px solid rgba(255,255,255,.14); transition: height .35s, background .35s, color .35s, border-color .35s; }
.site-header::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: var(--burgundy); transform: scaleX(var(--page-progress, 0)); transform-origin: left; will-change: transform; }
.site-header.is-scrolled { height: 76px; color: var(--ink); background: rgba(247,245,240,.91); border-color: var(--line); backdrop-filter: blur(18px); }
.brand { justify-self: start; width: 150px; height: 68px; display: grid; place-items: center; overflow: hidden; filter: brightness(0) invert(1); transition: filter .35s; }
.site-header.is-scrolled .brand { filter: none; }
.brand img { width: 154px; height: auto; }
.desktop-nav { display: flex; gap: clamp(1.4rem, 3vw, 3.25rem); align-items: center; font-weight: 700; font-size: .86rem; }
.desktop-nav a { position: relative; }
.desktop-nav a::after { content: ""; position: absolute; right: 0; left: 100%; bottom: -.5rem; height: 1px; background: currentColor; transition: left .3s; }
.desktop-nav a:hover::after { left: 0; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: .75rem; }
.language-switch { border: 0; background: transparent; padding: .75rem; font: 800 .75rem/1 "Manrope", sans-serif; }
.header-cta { min-height: 44px; display: inline-flex; align-items: center; padding: .55rem 1rem; border: 1px solid currentColor; font-weight: 700; font-size: .82rem; transition: background .25s, color .25s; }
.header-cta:hover { background: #fff; color: #111; }
.site-header.is-scrolled .header-cta:hover { background: var(--ink); color: #fff; }
.menu-button, .mobile-nav { display: none; }

.cinema-hero { min-height: 100svh; position: relative; isolation: isolate; overflow: hidden; background: #11100f; color: #fff; padding: 9rem var(--pad) 3rem; }
.hero-atmosphere { position: absolute; z-index: -4; inset: -15%; background: radial-gradient(circle at 52% 44%, #6d3633 0, #2d1e1d 24%, #121110 61%, #090909 100%); transform: translate(var(--hero-x,0),var(--hero-y,0)) scale(1); transition: transform .35s ease-out; animation: atmospherePulse 9s ease-in-out infinite alternate; }
.hero-grid { position: absolute; z-index: -3; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px); background-size: 8.333vw 8.333vw; mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 72%, transparent); animation: gridDrift 18s linear infinite; }
@keyframes atmospherePulse { to { transform: translate(var(--hero-x,0),var(--hero-y,0)) scale(1.08); filter: saturate(1.12); } }
@keyframes gridDrift { to { background-position: 8.333vw 8.333vw; } }
.hero-label { position: absolute; z-index: 5; top: 8.3rem; right: var(--pad); margin: 0; font-size: .82rem; font-weight: 700; color: rgba(255,255,255,.68); }
.cinema-hero h1 { position: absolute; z-index: 1; inset: 50% var(--pad) auto; transform: translateY(-52%); margin: 0; display: flex; flex-direction: column; pointer-events: none; font-family: "Alexandria", sans-serif; font-size: clamp(4.8rem, 10.7vw, 11rem); font-weight: 800; line-height: .95; letter-spacing: -.07em; }
.hero-line { display: block; clip-path: inset(0 0 0 0); }
.hero-line-one { align-self: flex-start; animation: heroTextIn 1.15s cubic-bezier(.22,.8,.22,1) 1.1s both; }
.hero-line-two { align-self: flex-end; color: var(--bronze); animation: heroTextIn 1.15s cubic-bezier(.22,.8,.22,1) 1.28s both; }
@keyframes heroTextIn { from { transform: translateY(115%); opacity: 0; } to { transform: none; opacity: 1; } }
.hero-product { position: absolute; z-index: 3; width: min(71vw, 1050px); height: min(72vw, 840px); left: 50%; top: 50%; transform: translate(calc(-50% + var(--hero-x,0px)),calc(-50% + var(--hero-y,0px))) rotate(-3deg) scale(var(--hero-scale,1)); transition: transform .3s ease-out; animation: objectIn 1.05s cubic-bezier(.2,.75,.2,1) .42s both; pointer-events: none; }
.hero-product img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 54px 44px rgba(0,0,0,.5)); }
.hero-product span { position: absolute; inset: 19% 8% 14%; z-index: -1; border-radius: 50%; background: radial-gradient(circle, rgba(185,148,89,.18), transparent 67%); animation: productGlow 4.8s ease-in-out 1.4s infinite alternate; }
@keyframes objectIn { from { opacity: 0; transform: translate(-50%,-38%) rotate(6deg) scale(.86); } }
@keyframes productGlow { to { opacity: .45; transform: scale(1.08); } }
.model-progress { position: absolute; width: min(240px, 55%); height: 2px; left: 50%; bottom: 8%; transform: translateX(-50%); background: rgba(255,255,255,.15); overflow: hidden; }
.model-progress span { display: block; width: 100%; height: 100%; background: var(--bronze); transform: scaleX(.04); transform-origin: left; transition: transform .18s linear; }
.model-progress.dark { background: rgba(16,16,15,.12); }
.hero-bottom { position: absolute; z-index: 5; right: var(--pad); left: var(--pad); bottom: 2.2rem; display: flex; justify-content: space-between; align-items: flex-end; }
.hero-bottom > p { margin: 0; max-width: 31rem; color: rgba(255,255,255,.68); font-size: 1.05rem; line-height: 1.8; }
.circle-link { width: 118px; height: 118px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; display: grid; place-content: center; justify-items: center; gap: .4rem; text-align: center; font-size: .8rem; font-weight: 700; transition: background .3s, color .3s, transform .3s; }
.circle-link:hover { background: #fff; color: #111; transform: rotate(-4deg); }
.circle-link i { font-style: normal; font-size: 1.1rem; }
.hero-side { position: absolute; z-index: 4; top: 50%; left: 1.25rem; transform: translateY(-50%) rotate(-90deg); transform-origin: center; display: flex; align-items: center; gap: 1rem; font: 700 .75rem/1 "Manrope", sans-serif; letter-spacing: .2em; color: rgba(255,255,255,.42); }
.hero-side i { width: 80px; height: 1px; background: rgba(255,255,255,.28); }
.scroll-cue { display: none; }

.manifesto { min-height: 90svh; position: relative; display: grid; align-content: center; padding: 7rem var(--pad); background: var(--white); content-visibility: auto; contain-intrinsic-size: 850px; }
.manifesto-index { position: absolute; top: 2rem; right: var(--pad); font: 700 .75rem/1 "Manrope", sans-serif; letter-spacing: .15em; color: var(--muted); }
.manifesto-copy { margin: 0 auto; width: min(100%, 1300px); font-family: "Alexandria", sans-serif; font-size: clamp(3.6rem, 8.8vw, 9rem); line-height: 1.12; font-weight: 700; letter-spacing: -.065em; }
.manifesto-copy span { color: #b9b5ad; }
.manifesto-meta { width: min(100%, 1300px); margin: 4rem auto 0; padding-top: 1.3rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 1rem; font-size: .88rem; font-weight: 600; }

.product-film { position: relative; min-height: 390svh; background: #e8e1d6; transition: background .55s ease; contain: paint; }
.product-film.palette-1 { background: #e8e1d6; }
.product-film.palette-2 { background: #d9e0e6; }
.product-film.palette-3 { background: #d2aa82; }
.product-film.palette-4 { background: #c88751; }
.film-sticky { position: sticky; top: 0; min-height: 100svh; height: 100svh; overflow: hidden; isolation: isolate; }
.film-backdrop { position: absolute; z-index: -4; inset: 0; overflow: hidden; background: radial-gradient(circle at 50% 46%, rgba(255,255,255,.75), transparent 48%), linear-gradient(120deg, rgba(255,255,255,.3), transparent 45%); }
.film-backdrop::before { content: ""; position: absolute; inset: -20%; background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,.42) 48%, transparent 61%); transform: translateX(-75%); animation: filmLight 8s ease-in-out infinite; }
.film-backdrop::after { content: ""; position: absolute; width: 60vw; aspect-ratio: 1; top: 50%; left: 50%; transform: translate(-50%,-50%); border-radius: 50%; border: 1px solid rgba(20,20,18,.15); }
@keyframes filmLight { 0%, 28% { transform: translateX(-75%); } 70%, 100% { transform: translateX(75%); } }
.film-word { position: absolute; z-index: -2; top: 48%; left: 50%; transform: translate(-50%,-50%); color: transparent; -webkit-text-stroke: 1px rgba(20,20,18,.16); font: 800 clamp(6rem, 17vw, 18rem)/.8 "Manrope", sans-serif; letter-spacing: -.08em; white-space: nowrap; transition: opacity .28s, transform .45s; }
.film-word.is-changing { opacity: 0; transform: translate(-50%,-50%) scale(1.08); }
.film-topline { position: absolute; z-index: 6; top: 2rem; right: var(--pad); left: var(--pad); display: flex; justify-content: space-between; font: 700 .75rem/1 "Manrope", sans-serif; letter-spacing: .15em; }
.product-reel { position: absolute; z-index: 2; inset: 0; perspective: 1200px; perspective-origin: 50% 45%; contain: paint; pointer-events: none; }
.product-slide { --reel-x: 0vw; --reel-y: 0vh; --reel-scale: 1; --reel-turn: 0deg; --reel-tilt: -2deg; position: absolute; top: 47%; left: 50%; width: min(72vw, 1080px); height: min(72vh, 790px); margin: 0; opacity: 0; visibility: hidden; transform: translate(-50%,-50%) translate3d(var(--reel-x),var(--reel-y),0) rotateY(var(--reel-turn)) rotateZ(var(--reel-tilt)) scale(var(--reel-scale)); transform-style: preserve-3d; transform-origin: 50% 55%; will-change: transform, opacity; }
.product-slide.is-near { visibility: visible; }
.product-slide img { width: 100%; height: 100%; object-fit: contain; user-select: none; -webkit-user-drag: none; }
.product-slide:not(.product-slide--editorial) img { filter: drop-shadow(0 34px 28px rgba(51,38,24,.2)); }
.product-slide--editorial { top: 45%; width: min(42vw, 560px); height: min(72vh, 760px); overflow: hidden; border: 1px solid rgba(255,255,255,.42); border-radius: clamp(1.3rem, 2.5vw, 2.4rem); background: #26313a; box-shadow: 0 35px 70px rgba(32,38,43,.28); }
.product-slide--editorial img { object-fit: cover; }
.film-shadow { position: absolute; z-index: 0; left: 50%; bottom: 14%; width: min(48vw, 680px); height: 9%; transform: translateX(-50%); border-radius: 50%; background: radial-gradient(ellipse, rgba(59,40,24,.28), transparent 68%); filter: blur(15px); transition: background .5s; }
.film-copy { position: absolute; z-index: 5; right: var(--pad); bottom: 3.2rem; max-width: min(34rem, 36vw); transition: opacity .25s, transform .35s; }
.film-copy.is-changing { opacity: 0; transform: translateY(16px); }
.film-kicker { display: block; margin-bottom: .8rem; font: 800 .75rem/1 "Manrope", sans-serif; letter-spacing: .18em; color: rgba(20,20,18,.56); }
.film-copy h2 { margin: 0; font-family: "Alexandria", sans-serif; font-size: clamp(2.8rem, 5.5vw, 6rem); line-height: 1.05; letter-spacing: -.055em; }
.film-copy p { margin: 1rem 0 0; max-width: 29rem; font-size: 1rem; line-height: 1.8; color: rgba(20,20,18,.63); }
.film-hint { position: absolute; z-index: 6; top: 4.7rem; left: var(--pad); display: flex; align-items: center; gap: .6rem; font-size: .8rem; font-weight: 600; color: rgba(20,20,18,.55); }
.film-hint > span:first-child { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(20,20,18,.25); border-radius: 50%; font: 700 1rem/1 sans-serif; }
.film-nav { position: absolute; z-index: 8; left: var(--pad); bottom: 3rem; display: flex; gap: .55rem; direction: ltr; }
.film-dot { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(20,20,18,.25); border-radius: 50%; font: 700 .75rem/1 "Manrope", sans-serif; transition: background .3s, color .3s, transform .3s; }
.film-dot b { font: inherit; }
.film-dot.is-active { background: var(--black); color: #fff; transform: translateY(-4px); }
.film-progress { position: absolute; z-index: 6; inset: auto 0 0; height: 4px; background: rgba(20,20,18,.12); }
.film-progress span { display: block; width: 100%; height: 100%; background: var(--burgundy); transform: scaleX(0); transform-origin: left; will-change: transform; }
.craft-story { min-height: 110svh; display: grid; grid-template-columns: 1.12fr .88fr; background: var(--white); content-visibility: auto; contain-intrinsic-size: 1000px; }
.craft-visual { min-height: 100%; position: relative; margin: 0; overflow: hidden; }
.craft-visual img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.75) contrast(1.05); transition: transform 1s cubic-bezier(.2,.8,.2,1); }
.craft-visual.is-visible img { transform: scale(1.035); }
.craft-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 65%, rgba(0,0,0,.52)); }
.craft-visual figcaption { position: absolute; z-index: 2; right: 1.5rem; left: 1.5rem; bottom: 1.25rem; display: flex; justify-content: space-between; color: #fff; font: 700 .75rem/1 "Manrope", sans-serif; letter-spacing: .16em; }
.craft-copy { padding: clamp(5rem, 9vw, 9rem) var(--pad); display: flex; flex-direction: column; justify-content: center; }
.section-label { font: 700 .75rem/1 "Manrope", sans-serif; letter-spacing: .14em; color: var(--muted); }
.section-label.light { color: rgba(255,255,255,.55); }
.craft-claim { margin: 4rem 0 2.5rem; font-family: "Alexandria", sans-serif; font-weight: 700; font-size: clamp(3.5rem, 6.3vw, 7rem); line-height: 1.1; letter-spacing: -.06em; }
.craft-claim em { font-style: normal; color: var(--burgundy); }
.craft-text { margin: 0; max-width: 37rem; color: #5d5a55; font-size: 1.05rem; line-height: 1.95; }
.process { margin-top: 3.5rem; border-top: 1px solid var(--line); }
.process > div { min-height: 64px; display: grid; grid-template-columns: 2.5rem 1fr; align-items: center; border-bottom: 1px solid var(--line); }
.process span { font: 700 .75rem/1 "Manrope", sans-serif; color: var(--burgundy); }
.process p { margin: 0; font-size: .92rem; font-weight: 600; }

.trade { min-height: 105svh; position: relative; overflow: hidden; padding: 5rem var(--pad) 9rem; background: var(--black); color: #fff; content-visibility: auto; contain-intrinsic-size: 900px; }
.trade::before { content: ""; position: absolute; width: min(65vw, 850px); aspect-ratio: 1; left: -10%; top: -20%; border: 1px solid rgba(185,148,89,.22); border-radius: 50%; box-shadow: 0 0 0 12vw rgba(185,148,89,.03), 0 0 0 24vw rgba(185,148,89,.02); }
.trade-top { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; }
.trade-location { padding: .7rem 1rem; border: 1px solid rgba(255,255,255,.25); border-radius: 99px; color: rgba(255,255,255,.7); font-size: .8rem; }
.trade-title { position: relative; z-index: 2; margin: clamp(6rem, 12vh, 10rem) 0 4rem; font-family: "Alexandria", sans-serif; font-weight: 700; font-size: clamp(4rem, 10vw, 11rem); line-height: .98; letter-spacing: -.07em; }
.trade-title em { font-style: normal; color: var(--bronze); }
.trade-bottom { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: flex-end; gap: 3rem; }
.trade-bottom p { margin: 0; max-width: 42rem; color: rgba(255,255,255,.65); font-size: 1.08rem; line-height: 1.9; }
.trade-button { min-width: 240px; min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1rem 1.25rem; background: var(--bronze); color: var(--black); font-weight: 800; transition: background .25s, transform .25s; }
.trade-button:hover { background: #fff; transform: translateY(-4px); }
.trade-button i { font-style: normal; font-size: 1.2rem; }
.trade-marquee { position: absolute; right: 0; bottom: .6rem; display: flex; width: max-content; white-space: nowrap; color: rgba(255,255,255,.07); font: 800 5.5rem/1 "Manrope", sans-serif; letter-spacing: -.04em; animation: marquee 22s linear infinite; }
@keyframes marquee { to { transform: translateX(50%); } }

.contact { padding: clamp(5rem, 9vw, 9rem) var(--pad); display: grid; grid-template-columns: .9fr 1.1fr; gap: 9vw; background: var(--paper); content-visibility: auto; contain-intrinsic-size: 900px; }
.contact-intro h2 { margin: 3rem 0 1.5rem; font-family: "Alexandria", sans-serif; font-size: clamp(3.4rem, 7vw, 7.5rem); line-height: 1.05; letter-spacing: -.06em; }
.contact-intro > p { max-width: 33rem; color: #5e5a54; font-size: 1.05rem; line-height: 1.9; }
.contact-direct { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.contact-direct a { display: inline-flex; align-items: center; min-height: 48px; padding: .75rem 1rem; border: 1px solid rgba(20,20,18,.25); font-size: .95rem; font-weight: 700; transition: color .25s, background .25s, border-color .25s; }
.contact-direct a:hover, .contact-direct a:focus-visible { background: var(--black); border-color: var(--black); color: #fff; }
.inquiry-form { padding-top: 3.2rem; }
.inquiry-form label { display: block; margin-bottom: 1.55rem; }
.inquiry-form label > span { display: block; margin-bottom: .4rem; font-size: .86rem; font-weight: 700; }
.inquiry-form input, .inquiry-form textarea { width: 100%; min-height: 48px; border: 0; border-bottom: 1px solid rgba(20,20,18,.28); border-radius: 0; background: transparent; padding: .7rem 0; outline: none; }
.inquiry-form textarea { resize: vertical; }
.inquiry-form input:focus, .inquiry-form textarea:focus { border-color: var(--burgundy); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.submit-button { width: 100%; min-height: 62px; display: flex; align-items: center; justify-content: space-between; border: 0; padding: 1rem 1.25rem; background: var(--black); color: #fff; font-weight: 800; transition: background .25s; }
.submit-button:hover { background: var(--burgundy); }
.submit-button i { font-style: normal; font-size: 1.2rem; }
.form-status { min-height: 1.6rem; margin: 1rem 0 0; color: #355a39; font-size: .88rem; }
.inquiry-preview:not([hidden]) { display: block; width: 100%; min-height: 12rem; margin-top: 1rem; padding: 1rem; border: 1px solid var(--line); background: #fff; color: var(--ink); font-size: .94rem; line-height: 1.8; }

.site-footer { padding: 5rem var(--pad) 1.5rem; background: #f7f5f0; border-top: 1px solid var(--line); }
.footer-brand { display: grid; grid-template-columns: minmax(230px, 320px) minmax(0, 34rem); align-items: end; justify-content: space-between; gap: 3rem; }
.footer-brand img { display: block; width: min(100%, 300px); height: auto; aspect-ratio: 250 / 95; object-fit: contain; object-position: right center; }
.footer-brand p { margin: 0; color: #5f5b55; font-size: 1rem; line-height: 1.9; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 4rem; padding: 2rem 0 4rem; border-top: 1px solid var(--line); }
.footer-links div { display: flex; flex-direction: column; gap: .65rem; }
.footer-links span { color: var(--muted); font-size: .82rem; font-weight: 600; }
.footer-links p, .footer-links a { margin: 0; font-size: .95rem; font-weight: 700; }
.footer-links a { width: fit-content; border-bottom: 1px solid rgba(20,20,18,.22); }
.footer-bottom { padding-top: 1.3rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; font: 700 .75rem/1.4 "Manrope", sans-serif; letter-spacing: .14em; color: var(--muted); }

.reveal { opacity: 0; transform: translateY(42px); clip-path: inset(0 0 16% 0); transition: opacity .85s ease, transform .85s cubic-bezier(.2,.75,.2,1), clip-path 1s cubic-bezier(.2,.75,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; clip-path: inset(0); }

body:not(.is-rtl) .cinema-hero h1,
body:not(.is-rtl) .manifesto-copy,
body:not(.is-rtl) .film-copy h2,
body:not(.is-rtl) .craft-claim,
body:not(.is-rtl) .trade-title,
body:not(.is-rtl) .contact-intro h2 { font-family: "Manrope", sans-serif; }

@media (max-width: 1050px) {
  .site-header { height: 78px; grid-template-columns: 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .brand { width: 130px; height: 60px; }
  .brand img { width: 134px; }
  .menu-button { width: 44px; height: 44px; display: grid; place-content: center; gap: 6px; border: 1px solid currentColor; background: transparent; }
  .menu-button span { width: 18px; height: 1px; background: currentColor; transition: transform .25s; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-nav { position: fixed; inset: 78px 0 auto; padding: 2rem var(--pad); background: var(--white); color: var(--ink); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: 1.25rem; font-size: 1.1rem; font-weight: 700; transform: translateY(-130%); opacity: 0; transition: transform .35s ease, opacity .25s; }
  .mobile-nav.is-open { transform: none; opacity: 1; }
  .cinema-hero h1 { font-size: clamp(4.5rem, 12vw, 8rem); }
  .hero-product { width: 92vw; height: 78vw; }
  .manifesto-copy { font-size: clamp(3.4rem, 9vw, 6.5rem); }
  .product-slide { width: 90vw; }
  .product-slide--editorial { width: min(56vw, 520px); }
  .film-copy { max-width: 42vw; }
  .craft-story { grid-template-columns: 1fr; }
  .craft-visual { min-height: 78svh; }
  .craft-copy { min-height: 85svh; }
  .contact { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 700px) {
  :root { --pad: 1.15rem; }
  .site-header, .site-header.is-scrolled { height: 70px; padding-inline: 1rem; }
  .intro-logo, .intro-line { width: min(68vw, 255px); }
  .brand { width: 112px; height: 54px; }
  .brand img { width: 116px; }
  .mobile-nav { inset-block-start: 70px; padding: 1.5rem 1.2rem 2rem; }
  .cinema-hero { min-height: 100svh; padding: 6rem 1.15rem 1.2rem; }
  .hero-grid { background-size: 25vw 25vw; opacity: .1; }
  .hero-label { top: 5.6rem; right: 1.15rem; font-size: .75rem; }
  .cinema-hero h1 { inset: 26% 1.15rem auto; transform: none; font-size: clamp(3.45rem, 16.5vw, 5rem); line-height: 1.03; z-index: 4; }
  .hero-line-one, .hero-line-two { align-self: flex-start; }
  .hero-product { width: 126vw; height: 72svh; top: 51%; transform: translate(calc(-50% + var(--hero-x,0px)),calc(-50% + var(--hero-y,0px))) rotate(-4deg) scale(var(--hero-scale,1)); }
  .hero-bottom { right: 1.15rem; left: 1.15rem; bottom: 1rem; align-items: flex-end; gap: 1rem; }
  .hero-bottom > p { max-width: calc(100% - 88px); font-size: .9rem; line-height: 1.65; }
  .circle-link { width: 82px; height: 82px; flex: 0 0 auto; font-size: .75rem; }
  .hero-side { display: none; }
  .manifesto { min-height: 76svh; padding: 5rem 1.15rem; }
  .manifesto-index { right: 1.15rem; }
  .manifesto-copy { font-size: clamp(2.65rem, 13.8vw, 4.2rem); line-height: 1.18; }
  .manifesto-meta { margin-top: 3rem; flex-direction: column; gap: .7rem; font-size: .8rem; }
  .product-film { min-height: 500svh; }
  .film-backdrop::after { width: 92vw; }
  .film-word { top: 39%; font-size: 25vw; }
  .film-topline { top: 1.2rem; right: 1rem; left: 1rem; font-size: .75rem; }
  .product-reel { perspective: 900px; }
  .product-slide { top: 40%; width: 126vw; height: 57svh; }
  .product-slide--editorial { top: 38%; width: min(75vw, 390px); height: 56svh; border-radius: 1.5rem; }
  .film-shadow { width: 86vw; bottom: 27%; }
  .film-copy { right: 1.15rem; left: 1.15rem; bottom: 7.2rem; max-width: none; }
  .film-kicker { font-size: .75rem; }
  .film-copy h2 { font-size: clamp(2.15rem, 10.5vw, 3.2rem); }
  .film-copy p { margin-top: .55rem; max-width: 92%; font-size: .88rem; line-height: 1.65; }
  .film-hint { top: 3.2rem; left: 1rem; font-size: .75rem; }
  .film-hint > span:first-child { width: 30px; height: 30px; }
  .film-nav { right: 1rem; left: 1rem; bottom: 2rem; justify-content: space-between; gap: .45rem; }
  .film-dot { width: 44px; height: 44px; }
  .craft-visual { min-height: 62svh; }
  .craft-copy { min-height: auto; padding: 5rem 1.15rem; }
  .craft-claim { margin: 3rem 0 2rem; font-size: clamp(3.2rem, 15vw, 4.7rem); }
  .craft-text { font-size: .98rem; }
  .trade { min-height: 90svh; padding: 4rem 1.15rem 8rem; }
  .trade-top { align-items: flex-start; flex-direction: column; gap: 1.2rem; }
  .trade-title { margin: 5rem 0 3rem; font-size: clamp(3.5rem, 15vw, 5.2rem); line-height: 1.08; }
  .trade-bottom { align-items: stretch; flex-direction: column; gap: 2rem; }
  .trade-bottom p { font-size: .98rem; }
  .trade-button { min-width: 0; width: 100%; }
  .trade-marquee { font-size: 3.8rem; }
  .contact { padding: 5rem 1.15rem; }
  .contact-intro h2 { margin-top: 2.5rem; font-size: 3.7rem; }
  .inquiry-form { padding-top: 1rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .site-footer { padding: 4rem 1.15rem 1.4rem; }
  .footer-brand { grid-template-columns: 1fr; align-items: start; gap: 2rem; }
  .footer-brand img { width: 230px; object-position: right center; }
  .footer-links { grid-template-columns: 1fr; gap: 2rem; margin-top: 3rem; padding-bottom: 3rem; }
  .footer-bottom { gap: 1rem; flex-direction: column; }
}

@media (max-width: 700px), (prefers-reduced-motion: reduce) {
  .hero-grid, .film-backdrop::before { animation: none; }
  .hero-atmosphere { animation: none; }
  .hero-product span { animation: none; }
  .trade-marquee { animation: none; }
  .site-header.is-scrolled { backdrop-filter: none; background: rgba(247,245,240,.98); }
}

@media (prefers-reduced-motion: reduce) {
  .product-film { min-height: 100svh; }
  .film-sticky { position: relative; }
  .product-slide { transition: opacity .2s ease; }
}

@media (max-width: 390px) {
  .cinema-hero h1 { font-size: 3.35rem; }
  .hero-bottom > p { font-size: .84rem; }
  .film-copy { bottom: 7rem; }
  .film-copy h2 { font-size: 2.15rem; }
  .film-copy p { font-size: .82rem; }
  .film-dot { width: 41px; height: 41px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .intro-curtain { display: none; }
  body.is-loading { overflow: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* The opening sequence and the product story share one calm motion language. */
.intro-curtain { transition-duration: .48s; }
.intro-logo-reveal { animation-duration: .58s; }
.intro-logo img { animation-duration: .58s; filter: none; }
.intro-logo::after { animation-duration: .58s; }
.hero-atmosphere, .hero-grid { animation: none; }
.site-header.is-scrolled { background: rgba(247,245,240,.97); backdrop-filter: none; }
.cinema-hero { min-height: 100svh; min-height: 100dvh; }
.hero-label { top: clamp(7.3rem, 14vh, 9rem); }
.cinema-hero h1 { top: clamp(9.7rem, 22svh, 15rem); inset-inline: var(--pad); inset-block-end: auto; transform: none; gap: .08em; font-size: clamp(4.2rem, 8.6vw, 9.3rem); line-height: 1.04; letter-spacing: -.055em; }
.hero-line-one, .hero-line-two { align-self: flex-start; animation: none; opacity: 1; translate: 0 0; transition: opacity .7s ease, translate .85s cubic-bezier(.19,1,.22,1); }
.hero-line-two { align-self: flex-end; transition-delay: .13s; }
body:not(.is-revealed) .hero-line { opacity: 0; translate: 0 1.05em; }
.hero-product { top: 60%; width: min(69vw, 1000px); height: min(60svh, 650px); transform: translate(calc(-50% + var(--hero-x, 0px)), calc(-50% + var(--hero-y, 0px))) rotate(-3deg) scale(var(--hero-scale, 1)); animation: none; opacity: 1; translate: 0 0; scale: 1; transition: opacity .72s ease .06s, translate .95s cubic-bezier(.19,1,.22,1) .06s, scale .95s cubic-bezier(.19,1,.22,1) .06s, transform .3s ease-out; }
body:not(.is-revealed) .hero-product { opacity: 0; translate: 0 5rem; scale: .82; }
.hero-product img { filter: drop-shadow(0 38px 32px rgba(0,0,0,.4)); }
.hero-product-caption { position: absolute; z-index: 5; left: var(--pad); bottom: 3rem; display: flex; flex-direction: column; gap: .32rem; direction: ltr; color: rgba(255,255,255,.48); font: 700 .7rem/1.25 "Manrope", sans-serif; letter-spacing: .18em; opacity: 1; transition: opacity .6s ease .45s; }
body:not(.is-revealed) .hero-product-caption, body:not(.is-revealed) .hero-bottom { opacity: 0; }
.hero-bottom { transition: opacity .65s ease .34s; }
.hero-bottom > p { max-width: 28rem; }
.circle-link { background: rgba(255,255,255,.04); }
.manifesto { min-height: 82svh; padding: clamp(7rem, 12vh, 10rem) var(--pad) clamp(4rem, 8vh, 7rem); align-content: center; }
.manifesto-copy { max-width: 1320px; font-size: clamp(3.2rem, 7vw, 7.4rem); line-height: 1.22; letter-spacing: -.035em; }
.manifesto-intro { width: min(100%, 48rem); margin: 2.4rem 0 0; margin-inline-end: auto; color: #5e5a54; font-size: clamp(1rem, 1.4vw, 1.15rem); line-height: 1.9; }
.manifesto-meta { width: min(100%, 1320px); margin-top: 2.8rem; }
.film-backdrop::before { animation: none; transform: translateX(var(--film-shift, -18vw)); }
.product-film { min-height: 540svh; contain: none; transition: none; }
.film-sticky { background: #e8e1d6; }
.film-copy { max-width: min(32rem, 34vw); }
.film-copy h2 { font-size: clamp(2.7rem, 5vw, 5.5rem); }
.film-origin { display: inline-block; margin-top: 1.2rem; padding-top: .75rem; border-top: 1px solid rgba(20,20,18,.3); color: rgba(20,20,18,.72); font-size: .85rem; font-weight: 700; }
.product-slide--lifestyle { background: #a98b70; }
.product-slide--colorways { background: #d9c3a8; }
.film-shadow { opacity: .7; }
.film-dot { width: 42px; height: 42px; }
.film-dot.is-active { transform: translateY(-3px); }
.product-slide { will-change: auto; }
.product-slide.is-near { will-change: transform, opacity; }
.reveal { clip-path: none; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.19,1,.22,1); }

@media (max-width: 1050px) {
  .cinema-hero h1 { font-size: clamp(3.8rem, 10vw, 7rem); }
  .hero-product { width: min(84vw, 850px); }
  .film-copy { max-width: 41vw; }
}

@media (max-width: 700px) {
  :root { --pad: 1rem; }
  .site-header, .site-header.is-scrolled { padding-inline: 1rem; }
  .intro-logo, .intro-line { width: min(58vw, 235px); }
  .cinema-hero { padding: 0 1rem; }
  .hero-label { top: calc(70px + 1.3rem); right: 1rem; left: 1rem; font-size: .81rem; line-height: 1.5; }
  .cinema-hero h1 { top: clamp(9rem, 20svh, 11.7rem); right: 1rem; left: 1rem; width: auto; z-index: 4; font-size: clamp(2.7rem, 11vw, 4.2rem); line-height: 1.14; letter-spacing: -.045em; gap: .04em; }
  .hero-line-one, .hero-line-two { max-width: 100%; }
  .hero-product { top: 52%; left: 50%; width: 116vw; height: 45svh; transform: translate(-50%,-50%) rotate(-5deg) scale(var(--hero-scale, 1)); }
  .hero-product img { filter: drop-shadow(0 26px 21px rgba(0,0,0,.42)); }
  .hero-product-caption { display: none; }
  .hero-bottom { right: 1rem; left: 1rem; bottom: max(1rem, env(safe-area-inset-bottom)); align-items: flex-end; gap: .75rem; }
  .hero-bottom > p { max-width: calc(100% - 96px); font-size: .93rem; line-height: 1.7; color: rgba(255,255,255,.83); }
  .circle-link { width: 78px; height: 78px; font-size: .72rem; }
  .manifesto { min-height: auto; padding: 7rem 1rem 5rem; }
  .manifesto-index { top: 2.5rem; }
  .manifesto-copy { font-size: clamp(2.25rem, 10vw, 3.55rem); line-height: 1.3; letter-spacing: -.025em; }
  .manifesto-intro { margin: 2rem 0 0; font-size: 1rem; line-height: 1.85; }
  .manifesto-meta { margin-top: 2.3rem; gap: .8rem; font-size: .88rem; }
  .product-film { min-height: 500svh; }
  .film-backdrop::after { opacity: .45; }
  .film-topline { top: 1rem; }
  .film-hint { top: 3rem; right: 1rem; left: auto; font-size: .81rem; }
  .product-slide { top: 40%; width: 116vw; height: 46svh; }
  .product-slide--editorial { top: 39%; width: min(74vw, 390px); height: 45svh; border-radius: 1.2rem; }
  .film-shadow { bottom: 34%; width: 68vw; }
  .film-copy { right: 1rem; left: 1rem; bottom: 5.7rem; max-width: none; }
  .film-copy h2 { font-size: clamp(2rem, 8.8vw, 3rem); line-height: 1.17; }
  .film-copy p { max-width: 100%; margin-top: .5rem; font-size: .94rem; line-height: 1.7; }
  .film-origin { margin-top: .6rem; padding-top: .45rem; font-size: .78rem; }
  .film-nav { bottom: 1.65rem; right: 1rem; left: 1rem; justify-content: space-between; gap: .2rem; }
  .film-dot { width: clamp(34px, 10vw, 40px); height: clamp(34px, 10vw, 40px); font-size: .7rem; }
  .craft-copy, .contact { padding-inline: 1rem; }
  .craft-claim { font-size: clamp(2.8rem, 12.5vw, 4.5rem); }
  .trade-title { font-size: clamp(2.8rem, 12.4vw, 5.2rem); }
  .contact-intro h2 { font-size: clamp(2.8rem, 12vw, 4rem); }
}

@media (max-width: 700px) and (max-height: 690px) {
  .hero-label { top: 5.1rem; }
  .cinema-hero h1 { top: 7.8rem; font-size: clamp(2.4rem, 10.2vw, 3.2rem); }
  .hero-product { top: 50%; height: 40svh; }
  .hero-bottom > p { font-size: .86rem; line-height: 1.55; }
  .product-slide { top: 34%; height: 39svh; }
  .product-slide--editorial { top: 34%; height: 40svh; }
  .film-copy { bottom: 5rem; }
  .film-copy h2 { font-size: 1.85rem; }
  .film-copy p { font-size: .86rem; line-height: 1.5; }
  .film-origin { margin-top: .3rem; }
}

@media (prefers-reduced-motion: reduce) {
  .product-film { min-height: 360svh; }
  .film-sticky { position: sticky; }
  .hero-line, .hero-product, .hero-bottom, .hero-product-caption { opacity: 1 !important; translate: none !important; scale: 1 !important; }
}

/* Clear Arabic hierarchy and a header that matches the scene beneath it. */
.cinema-hero h1, .manifesto-copy, .film-copy h2, .craft-claim, .trade-title, .contact-intro h2, .collection-edit h2 {
  font-family: "IBM Plex Sans Arabic", Tahoma, sans-serif;
  letter-spacing: 0;
  font-weight: 700;
}
.site-header.is-on-dark, .site-header.is-scrolled.is-on-dark {
  color: #fff;
  background: rgba(16, 15, 15, .96);
  border-color: rgba(255, 255, 255, .15);
  backdrop-filter: none;
}
.site-header.is-on-dark .brand { filter: brightness(0) invert(1); }
.site-header.is-on-dark .header-cta:hover { background: #fff; color: #111; }
.site-header .brand img { transition: opacity .65s ease, transform .8s cubic-bezier(.19,1,.22,1); }
.site-header .desktop-nav, .site-header .header-actions { transition: opacity .65s ease .12s, transform .8s cubic-bezier(.19,1,.22,1) .12s; }
body:not(.is-revealed) .site-header .brand img { opacity: 0; transform: translateY(-16px); }
body:not(.is-revealed) .site-header .desktop-nav, body:not(.is-revealed) .site-header .header-actions { opacity: 0; transform: translateY(-12px); }
.hero-line { line-height: 1.16; }
.cinema-hero h1 { font-size: clamp(4rem, 8vw, 8.8rem); }
.hero-bottom > p { max-width: 32rem; }
.manifesto { padding-block: clamp(7rem, 12vh, 10rem) clamp(5rem, 8vh, 7rem); }
.manifesto-copy { max-width: 1190px; font-size: clamp(3.3rem, 6.8vw, 7.1rem); line-height: 1.28; }
.manifesto-intro { max-width: 42rem; }
.film-copy h2 { font-size: clamp(2.7rem, 4.6vw, 5rem); line-height: 1.2; }
.craft-claim, .trade-title, .contact-intro h2 { line-height: 1.22; }
.collection-edit { padding: clamp(6rem, 9vw, 10rem) var(--pad); background: #f7f5f0; overflow: hidden; }
.collection-edit-heading { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(17rem,.65fr); gap: 1rem 5vw; align-items: end; margin-bottom: clamp(2.3rem, 5vw, 5rem); }
.collection-edit-heading .section-label { grid-column: 1 / -1; }
.collection-edit h2 { margin: 0; font-size: clamp(3.3rem, 6.5vw, 6.8rem); line-height: 1.21; }
.collection-edit-heading p { max-width: 27rem; margin: 0; color: #5d5a55; font-size: 1.08rem; line-height: 1.9; }
.collection-grid { display: grid; grid-template-columns: 1.25fr .85fr .85fr; gap: clamp(.8rem, 2vw, 2rem); align-items: start; }
.collection-card { min-width: 0; margin: 0; }
.collection-card:nth-child(2) { transition-delay: .1s; }
.collection-card:nth-child(3) { transition-delay: .2s; }
.collection-card-image { overflow: hidden; background: #e8e1d6; aspect-ratio: 4/5; }
.collection-card--wide .collection-card-image { aspect-ratio: 4/5; }
.collection-card-image img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.045); transition: transform .9s cubic-bezier(.19,1,.22,1); }
.collection-card--wide .collection-card-image img { object-position: 62% center; }
.collection-card:hover img { transform: scale(1.105); }
.collection-card figcaption { display: flex; flex-direction: column; gap: .15rem; padding-block: 1.1rem; border-bottom: 1px solid var(--line); }
.collection-card figcaption span { font-size: 1.25rem; font-weight: 700; }
.collection-card figcaption small { color: #706b63; font-size: .85rem; font-weight: 600; }
.collection-card.is-visible .collection-card-image img { animation: editorialSettle 1.1s cubic-bezier(.19,1,.22,1) both; }
@keyframes editorialSettle { from { transform: scale(1.16); } to { transform: scale(1.045); } }
.collection-card:hover .collection-card-image img { animation: none; transform: scale(1.105); }
body:not(.is-rtl) .collection-edit h2 { font-family: "Manrope", sans-serif; }

@media (max-width: 1050px) {
  .collection-edit-heading { grid-template-columns: 1fr; }
  .collection-edit h2 { font-size: clamp(3.2rem, 7.5vw, 5rem); }
}
@media (max-width: 700px) {
  .cinema-hero h1 { top: clamp(8.9rem, 19svh, 11.2rem); font-size: clamp(2.9rem, 10.3vw, 4.2rem); line-height: 1.1; gap: 0; }
  .hero-product { top: 53%; width: 120vw; }
  .hero-bottom > p { font-size: .91rem; line-height: 1.65; }
  .manifesto { padding: 6.3rem 1.15rem 4.5rem; }
  .manifesto-copy { font-size: clamp(2.45rem, 9vw, 3.55rem); line-height: 1.37; max-width: 100%; }
  .manifesto-intro { margin-top: 1.8rem; font-size: 1rem; line-height: 1.85; }
  .manifesto-meta { font-size: .95rem; line-height: 1.65; }
  .collection-edit { padding: 5.5rem 1.15rem 4.5rem; }
  .collection-edit-heading { gap: 1.25rem; margin-bottom: 2.5rem; }
  .collection-edit h2 { font-size: clamp(2.65rem, 10vw, 3.7rem); line-height: 1.28; }
  .collection-edit-heading p { font-size: 1rem; }
  .collection-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem .8rem; }
  .collection-card--wide { grid-column: 1 / -1; }
  .collection-card--wide .collection-card-image { aspect-ratio: 1.16; }
  .collection-card-image { aspect-ratio: .75; }
  .collection-card figcaption span { font-size: 1rem; line-height: 1.5; }
  .collection-card figcaption small { font-size: .79rem; }
  .film-copy h2 { font-size: clamp(2.15rem, 8vw, 3rem); }
  .craft-claim { font-size: clamp(2.9rem, 11.5vw, 4.3rem); }
  .trade-title { font-size: clamp(3rem, 11vw, 4.8rem); }
  .contact-intro h2 { font-size: clamp(3rem, 11vw, 4rem); }
}
@media (max-width: 700px) and (max-height: 690px) {
  .cinema-hero h1 { top: 7.6rem; font-size: clamp(2.45rem, 9vw, 3.1rem); }
  .hero-product { top: 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .collection-card-image img, .collection-card.is-visible .collection-card-image img { animation: none; transition: none; transform: none; }
  body:not(.is-revealed) .site-header .brand img, body:not(.is-revealed) .site-header .desktop-nav, body:not(.is-revealed) .site-header .header-actions { opacity: 1; transform: none; }
}
