:root {
  --ink: #171713;
  --cream: #f3efe6;
  --paper: #faf8f3;
  --sand: #d7c6ae;
  --gold: #b78b52;
  --line: rgba(23, 23, 19, .2);
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: Didot, "Bodoni 72", "Times New Roman", serif;
  --header-height: 92px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }

.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  z-index: 1000;
  background: var(--paper);
  padding: 12px 18px;
  transition: top .2s ease;
}
.skip-link:focus { top: 20px; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(22px, 4vw, 70px);
  border-bottom: 1px solid rgba(255,255,255,.24);
  transition: background .35s ease, height .35s ease, transform .35s ease;
}
.site-header.scrolled {
  height: 72px;
  background: rgba(23, 23, 19, .92);
  backdrop-filter: blur(12px);
}
.brand { width: 104px; height: 80px; display: flex; align-items: center; transition: width .35s ease; }
.brand img { width: 100%; }
.site-header.scrolled .brand { width: 88px; }
.desktop-nav { display: flex; gap: clamp(22px, 3vw, 48px); }
.desktop-nav a,
.language-toggle {
  color: #fff;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.desktop-nav a { position: relative; padding: 10px 0; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width .25s ease;
}
.desktop-nav a:hover::after { width: 100%; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 24px; }
.language-toggle { border: 0; background: none; cursor: pointer; padding: 10px 0; }
.language-divider { opacity: .5; margin: 0 7px; }
.menu-toggle { display: none; border: 0; background: none; width: 34px; height: 34px; padding: 7px 0; cursor: pointer; }
.menu-toggle span { display: block; width: 100%; height: 1px; background: #fff; margin: 7px 0; transition: transform .3s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 110px 8vw 50px;
  visibility: hidden;
  opacity: 0;
  transition: opacity .3s ease, visibility .3s ease;
}
.mobile-menu.open { visibility: visible; opacity: 1; }
.mobile-menu nav { width: 100%; }
.mobile-menu a { display: flex; align-items: baseline; gap: 22px; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.mobile-menu span { font-size: 10px; letter-spacing: .14em; color: var(--gold); }
.mobile-menu b { font-family: var(--serif); font-size: clamp(36px, 9vw, 62px); font-weight: 400; }

.hero { position: relative; min-height: 100svh; color: #fff; display: flex; align-items: flex-end; overflow: hidden; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 42%; transform: scale(1.015); animation: heroIn 1.6s cubic-bezier(.2,.7,.2,1) both; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,10,8,.68) 0%, rgba(10,10,8,.18) 57%, rgba(10,10,8,.12) 100%), linear-gradient(0deg, rgba(10,10,8,.5) 0%, transparent 58%); }
.hero-content { position: relative; z-index: 1; width: min(820px, 82vw); padding: 0 0 clamp(88px, 12vh, 142px) clamp(22px, 7vw, 120px); }
.eyebrow { margin: 0 0 24px; font-size: 10px; font-weight: 500; letter-spacing: .27em; text-transform: uppercase; }
.eyebrow.light { color: rgba(255,255,255,.78); }
.hero h1 { max-width: 780px; margin: 0; font-family: var(--serif); font-size: clamp(64px, 9.4vw, 148px); font-weight: 400; line-height: .82; letter-spacing: -.04em; text-wrap: balance; }
.hero-copy { max-width: 590px; margin: 32px 0 34px; font-size: clamp(16px, 1.4vw, 21px); line-height: 1.55; color: rgba(255,255,255,.88); }
.hero-links { display: flex; align-items: center; gap: 30px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 30px; padding: 0 24px; border: 1px solid currentColor; font-size: 10px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; transition: background .25s ease, color .25s ease; }
.button-light { color: #fff; }
.button-light:hover { color: var(--ink); background: #fff; }
.coming-soon { font-size: 9px; letter-spacing: .2em; color: rgba(255,255,255,.72); }
.scroll-cue { position: absolute; z-index: 1; right: clamp(25px, 4vw, 70px); bottom: 48px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.scroll-cue span { display: block; width: 1px; height: 52px; background: rgba(255,255,255,.7); position: relative; overflow: hidden; }
.scroll-cue span::after { content: ""; position: absolute; top: -50%; left: 0; width: 1px; height: 40%; background: #fff; animation: scrollLine 2s infinite; }
.scroll-cue small { font-size: 8px; letter-spacing: .2em; }

.section { padding: clamp(90px, 12vw, 185px) clamp(22px, 7vw, 120px); }
.statement { display: grid; grid-template-columns: minmax(150px, .45fr) 1.55fr; gap: 8vw; background: var(--paper); }
.statement-side { display: flex; flex-direction: column; justify-content: space-between; }
.section-number { font-family: var(--serif); font-size: 54px; color: var(--gold); }
.statement-main h2,
.craft h2,
.drop h2,
.find-us h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 6.5vw, 105px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.035em;
}
.statement-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 5vw; max-width: 890px; margin: 62px 0 0 auto; }
.statement-copy p,
.editorial-copy > p,
.craft-copy > p,
.drop-copy > p { margin: 0; font-size: clamp(15px, 1.22vw, 18px); line-height: 1.75; color: rgba(23,23,19,.72); }

.ticker { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 24px 0; background: var(--cream); }
.ticker-track { display: flex; width: max-content; align-items: center; gap: 28px; animation: ticker 28s linear infinite; }
.ticker span { font-family: var(--serif); font-size: clamp(27px, 3vw, 48px); white-space: nowrap; }
.ticker i { color: var(--gold); font-style: normal; font-size: 12px; }

.editorial { background: var(--cream); display: grid; grid-template-columns: minmax(280px, .85fr) minmax(300px, 1.15fr); gap: clamp(50px, 10vw, 160px); align-items: center; }
.editorial-image { max-width: 620px; position: relative; }
.editorial-image::after { content: "DUBAI / 25°12′N"; position: absolute; right: -26px; bottom: 0; font-size: 8px; letter-spacing: .18em; writing-mode: vertical-rl; }
.editorial-image img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; }
.editorial-copy blockquote { max-width: 730px; margin: 0 0 42px; font-family: var(--serif); font-size: clamp(45px, 5.5vw, 88px); line-height: 1.02; }
.editorial-copy > p { max-width: 570px; }
.origin-stamp { margin-top: 70px; display: inline-flex; align-items: center; gap: 19px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); padding: 14px 0; }
.origin-stamp span { font-size: 16px; letter-spacing: .42em; }
.origin-stamp small { font-size: 8px; letter-spacing: .2em; }

.dark-section { color: #f7f3eb; background: var(--ink); }
.code { padding-bottom: clamp(100px, 11vw, 160px); }
.code-heading h2 { display: flex; align-items: flex-end; gap: clamp(30px, 7vw, 110px); margin: 0; font-family: var(--serif); font-size: clamp(45px, 6.5vw, 95px); font-weight: 400; line-height: .91; }
.huge-number { font-family: var(--sans); font-size: clamp(150px, 26vw, 410px); font-weight: 100; line-height: .72; letter-spacing: -.09em; color: var(--gold); }
.code-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 120px; border-top: 1px solid rgba(255,255,255,.25); }
.code-grid article { min-height: 270px; padding: 28px clamp(18px, 3vw, 44px) 10px 0; border-right: 1px solid rgba(255,255,255,.2); }
.code-grid article:not(:first-child) { padding-left: clamp(18px, 3vw, 44px); }
.code-grid article:last-child { border-right: 0; }
.code-grid article > span { font-size: 9px; color: var(--gold); letter-spacing: .2em; }
.code-grid h3 { margin: 68px 0 16px; font-family: var(--serif); font-size: 30px; font-weight: 400; }
.code-grid p { max-width: 360px; margin: 0; font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.62); }

.craft { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 9vw, 150px); align-items: center; }
.craft-copy { max-width: 530px; }
.craft-copy > p { margin-top: 38px; }
.craft-copy ul { list-style: none; padding: 0; margin: 60px 0 0; border-top: 1px solid var(--line); }
.craft-copy li { display: flex; gap: 28px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--line); }
.craft-copy li span { font-size: 9px; color: var(--gold); }
.craft-copy li b { font-size: 11px; font-weight: 400; letter-spacing: .14em; text-transform: uppercase; }
.craft-images { position: relative; min-height: 760px; }
.craft-main { width: 64%; margin-left: auto; }
.craft-main img { width: 100%; height: 720px; object-fit: cover; }
.craft-small { position: absolute; left: 0; bottom: -50px; width: 42%; border: 10px solid var(--paper); }
.craft-small img { width: 100%; height: 390px; object-fit: cover; object-position: center 20%; }

.drop { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 10vw, 170px); align-items: center; background: #d9c9b4; }
.drop-poster { max-width: 590px; }
.drop-poster img { width: 100%; }
.drop-copy h2 { margin-bottom: 42px; }
.drop-copy > p { max-width: 600px; }
.drop-detail { margin-top: 70px; padding: 24px 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); display: flex; justify-content: space-between; gap: 30px; }
.drop-detail span, .drop-detail strong { font-size: 9px; letter-spacing: .15em; }
.drop-detail strong { font-weight: 500; }

.find-us { position: relative; min-height: 96svh; color: #fff; display: flex; align-items: center; justify-content: center; overflow: hidden; text-align: center; }
.find-us > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.find-shade { position: absolute; inset: 0; background: rgba(12,12,9,.57); }
.find-content { position: relative; z-index: 1; max-width: 930px; padding: 80px 22px; display: flex; flex-direction: column; align-items: center; }
.find-us h2 { font-size: clamp(56px, 8vw, 125px); }
.find-us p:not(.eyebrow) { max-width: 510px; font-size: 16px; line-height: 1.6; color: rgba(255,255,255,.8); margin: 35px 0; }

.site-footer { background: var(--ink); color: #fff; padding: 90px clamp(22px, 7vw, 120px) 32px; text-align: center; }
.site-footer > img { width: 205px; margin: 0 auto 28px; }
.site-footer > p { font-size: 8px; letter-spacing: .28em; color: rgba(255,255,255,.5); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 30px; margin-top: 90px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.16); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.footer-bottom div { display: flex; gap: 28px; }
.footer-bottom button { border: 0; background: none; padding: 0; cursor: pointer; color: inherit; }
.footer-bottom a:hover, .footer-bottom button:hover { color: #fff; }

.image-reveal { overflow: hidden; }
.image-reveal img { transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.image-reveal.is-visible img { transform: scale(1.02); }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
[data-i18n="ideaTitle"], [data-i18n="codeTitle"], [data-i18n="dropTitle"], [data-i18n="findTitle"] { white-space: pre-line; }

html[dir="rtl"] body { font-family: Arial, Tahoma, sans-serif; }
html[dir="rtl"] .hero-content { padding-left: 0; padding-right: clamp(22px, 7vw, 120px); }
html[dir="rtl"] .hero-shade { transform: scaleX(-1); }
html[dir="rtl"] .hero h1,
html[dir="rtl"] .statement-main h2,
html[dir="rtl"] .editorial-copy blockquote,
html[dir="rtl"] .code-heading h2,
html[dir="rtl"] .craft h2,
html[dir="rtl"] .drop h2,
html[dir="rtl"] .find-us h2 { font-family: Tahoma, Arial, sans-serif; letter-spacing: -.02em; }
html[dir="rtl"] .scroll-cue { right: auto; left: clamp(25px, 4vw, 70px); }
html[dir="rtl"] .editorial-image::after { right: auto; left: -26px; }
html[dir="rtl"] .craft-main { margin-left: 0; margin-right: auto; }
html[dir="rtl"] .craft-small { left: auto; right: 0; }
html[dir="rtl"] .code-grid article { padding-right: 0; padding-left: clamp(18px, 3vw, 44px); border-right: 0; border-left: 1px solid rgba(255,255,255,.2); }
html[dir="rtl"] .code-grid article:not(:first-child) { padding-left: clamp(18px, 3vw, 44px); padding-right: clamp(18px, 3vw, 44px); }
html[dir="rtl"] .code-grid article:last-child { border-left: 0; }

@keyframes heroIn { from { opacity: 0; transform: scale(1.07); } to { opacity: 1; transform: scale(1.015); } }
@keyframes scrollLine { from { transform: translateY(0); } to { transform: translateY(380%); } }
@keyframes ticker { to { transform: translateX(-50%); } }

@media (max-width: 900px) {
  :root { --header-height: 76px; }
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .brand { width: 91px; }
  .language-toggle { font-size: 9px; }
  .statement { grid-template-columns: 1fr; gap: 40px; }
  .statement-side { flex-direction: row; }
  .statement-copy { margin-top: 45px; }
  .editorial { gap: 55px; }
  .code-heading h2 { flex-direction: column; align-items: flex-start; }
  .huge-number { font-size: 250px; }
  .craft { grid-template-columns: 1fr; }
  .craft-copy { max-width: 680px; }
  .drop { gap: 60px; }
}

@media (max-width: 680px) {
  .site-header { padding-inline: 18px; }
  .header-actions { gap: 16px; }
  .hero-image { object-position: 57% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(8,8,6,.75) 0%, rgba(8,8,6,.16) 70%); }
  .hero-content { width: 100%; padding: 0 22px 92px; }
  .hero h1 { font-size: clamp(59px, 20vw, 86px); }
  .hero-copy { max-width: 88%; font-size: 15px; margin: 24px 0 27px; }
  .hero-links { align-items: flex-start; flex-direction: column; gap: 18px; }
  .coming-soon { margin-left: 2px; }
  .scroll-cue { display: none; }
  .section { padding: 88px 22px; }
  .statement-main h2, .craft h2, .drop h2, .find-us h2 { font-size: clamp(46px, 14vw, 68px); }
  .statement-copy { grid-template-columns: 1fr; gap: 22px; }
  .editorial { grid-template-columns: 1fr; }
  .editorial-image { width: 88%; }
  .editorial-copy blockquote { font-size: 49px; }
  .origin-stamp { margin-top: 45px; }
  .code-heading h2 { gap: 28px; }
  .huge-number { font-size: 56vw; }
  .code-grid { grid-template-columns: 1fr; margin-top: 75px; }
  .code-grid article,
  .code-grid article:not(:first-child) { min-height: 0; padding: 25px 0 34px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .code-grid h3 { margin: 32px 0 12px; }
  html[dir="rtl"] .code-grid article,
  html[dir="rtl"] .code-grid article:not(:first-child) { padding: 25px 0 34px; border-left: 0; }
  .craft-images { min-height: 570px; }
  .craft-main { width: 79%; }
  .craft-main img { height: 540px; }
  .craft-small { width: 45%; bottom: -10px; border-width: 6px; }
  .craft-small img { height: 275px; }
  .drop { grid-template-columns: 1fr; }
  .drop-poster { width: 86%; }
  .drop-detail { flex-direction: column; }
  .find-us { min-height: 82svh; }
  .find-us > img { object-position: 58% center; }
  .footer-bottom { margin-top: 65px; align-items: flex-start; flex-direction: column; }
  .footer-bottom div { flex-wrap: wrap; }
}

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