
:root{
  --forest:#0d1a12;
  --forest-2:#16291d;
  --olive:#6f7c68;
  --sage:#aab4a4;
  --gold:#bd9350;
  --gold-soft:#d8ba82;
  --cream:#f2eee5;
  --paper:#fbf9f3;
  --ink:#141916;
  --muted:#69716a;
  --line:rgba(20,25,22,.14);
  --dark-line:rgba(255,255,255,.14);
  --ease:cubic-bezier(.22,.61,.36,1);
  --max:1320px;
  --gutter:clamp(20px,4vw,56px);
  --section-y:clamp(88px,11vw,164px);
  font-family:Inter,"Helvetica Neue",Helvetica,Arial,system-ui,sans-serif;
  color:var(--ink);
  background:var(--cream);
  font-synthesis:none;
}

*{box-sizing:border-box}
html{
  scroll-behavior:smooth;
  scroll-padding-top:92px;
  -webkit-text-size-adjust:100%;
  background:var(--cream);
  overscroll-behavior-y:auto;
}
body{
  margin:0;
  min-width:320px;
  background:var(--cream);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:100;
  pointer-events:none;
  opacity:.035;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode:multiply;
}
a{color:inherit;text-decoration:none}
button{font:inherit}
img{display:block;max-width:100%;height:auto}
::selection{background:var(--gold-soft);color:var(--forest)}
[dir="rtl"]{font-family:"Noto Sans Arabic","Noto Kufi Arabic",Tahoma,Arial,sans-serif}
[dir="rtl"] .brand,[dir="rtl"] .nav-shell,[dir="rtl"] .hero-grid,[dir="rtl"] .section-heading,[dir="rtl"] .contact-grid{direction:rtl}

main{position:relative;z-index:1}
.section{
  position:relative;
  overflow:hidden;
}
.section-inner{
  width:min(var(--max),calc(100% - (var(--gutter) * 2)));
  margin:0 auto;
}
main>.section{
  padding-block:var(--section-y);
}
.light-section,.products-section{background:var(--cream)}
.dark-section{background:var(--forest);color:#f8f5ed}
.hero{background:var(--forest);color:#f8f5ed;min-height:100svh;display:flex;align-items:center;padding-top:140px;padding-bottom:82px}
.hero::before{
  content:"";
  position:absolute;
  width:44vw;
  height:44vw;
  max-width:620px;
  max-height:620px;
  top:-18vw;
  right:-10vw;
  border-radius:50%;
  background:radial-gradient(circle,rgba(189,147,80,.2),rgba(189,147,80,0) 70%);
  pointer-events:none;
}
.hero-grid{
  width:100%;
  display:grid;
  grid-template-columns:7fr 5fr;
  gap:clamp(36px,6vw,96px);
  align-items:center;
}
.hero-copy{position:relative;z-index:2;max-width:800px}
.eyebrow,.kicker{
  display:inline-flex;
  align-items:center;
  gap:12px;
  color:var(--gold-soft);
  font-size:10px;
  line-height:1;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.eyebrow::before,.kicker::before{
  content:"";
  width:34px;
  height:1px;
  background:currentColor;
  opacity:.7;
}
.hero h1{
  margin:22px 0 28px;
  max-width:9ch;
  font-size:clamp(58px,8.6vw,118px);
  line-height:.88;
  letter-spacing:-.075em;
  font-weight:800;
}
.hero h1 em{
  color:var(--gold-soft);
  font-style:normal;
  font-family:Georgia,"Times New Roman",serif;
  font-weight:500;
  letter-spacing:-.06em;
}
.hero-lead{
  max-width:620px;
  margin:0;
  color:rgba(248,245,237,.68);
  font-size:clamp(15px,1.3vw,19px);
  line-height:1.7;
}
.cta-row{display:flex;flex-wrap:wrap;gap:10px;margin-top:32px}
.btn{
  min-height:48px;
  padding:0 18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  border:1px solid transparent;
  border-radius:999px;
  font-size:11px;
  font-weight:800;
  letter-spacing:.04em;
  cursor:pointer;
  transition:transform .35s var(--ease),background .35s var(--ease),border-color .35s var(--ease),color .35s var(--ease),box-shadow .35s var(--ease);
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{background:var(--gold-soft);color:var(--forest);box-shadow:0 12px 30px rgba(0,0,0,.16)}
.btn-primary:hover{background:#e2c792;box-shadow:0 16px 34px rgba(0,0,0,.22)}
.btn-secondary{border-color:rgba(255,255,255,.22);color:#f8f5ed;background:rgba(255,255,255,.02)}
.btn-secondary:hover{background:rgba(255,255,255,.07);border-color:rgba(255,255,255,.36)}
.hero-note{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  max-width:700px;
  gap:0;
  margin-top:58px;
  border-top:1px solid rgba(255,255,255,.13);
}
.hero-note>div{
  padding:17px 16px 0 0;
  border-right:1px solid rgba(255,255,255,.13);
}
.hero-note>div:last-child{border-right:0;padding-right:0}
.hero-note strong{
  display:block;
  color:#f8f5ed;
  font-size:14px;
  letter-spacing:.02em;
}
.hero-note span{
  display:block;
  margin-top:6px;
  color:rgba(248,245,237,.48);
  font-size:9px;
  line-height:1.4;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.hero-stage{position:relative;min-height:min(74vh,760px);display:flex;align-items:center;justify-content:flex-end}
.hero-photo-wrap{
  width:min(100%,540px);
  aspect-ratio:4 / 5;
  position:relative;
  overflow:hidden;
  background:#263a2b;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 32px 80px rgba(0,0,0,.28);
}
.hero-photo-wrap::before{
  content:"";
  position:absolute;
  inset:14px;
  border:1px solid rgba(255,255,255,.18);
  z-index:2;
  pointer-events:none;
}
.hero-photo-wrap::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent 44%,rgba(8,17,12,.38) 100%);
  z-index:1;
  pointer-events:none;
}
.hero-photo{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 1.1s var(--ease),filter .6s var(--ease);
}
.hero-photo-wrap:hover .hero-photo{transform:scale(1.045)}
.hero-video-wrap{background:#08110c}
.hero-video{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  background:#08110c;
}
.hero-video-wrap:hover .hero-video{transform:scale(1.015)}
.hero-marker{
  position:absolute;
  left:-24px;
  bottom:28px;
  z-index:3;
  width:184px;
  padding:15px 16px;
  background:var(--gold-soft);
  color:var(--forest);
  box-shadow:0 16px 35px rgba(0,0,0,.18);
}
.hero-marker strong{display:block;font-size:12px;letter-spacing:.02em}
.hero-marker span{display:block;margin-top:5px;font-size:9px;line-height:1.5;letter-spacing:.12em;text-transform:uppercase;opacity:.7}
.hero-index{
  position:absolute;
  right:-1px;
  top:24px;
  z-index:3;
  writing-mode:vertical-rl;
  font-size:9px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(248,245,237,.6);
}
.floating-chip{display:none}

html[dir="rtl"] .hero-marker{left:auto;right:-24px}
html[dir="rtl"] .hero-note>div{border-right:0;border-left:1px solid rgba(255,255,255,.13);padding-right:0;padding-left:16px}
html[dir="rtl"] .hero-note>div:last-child{border-left:0;padding-left:0}
html[dir="rtl"] .back-home{right:auto;left:var(--gutter)}

.section-heading{
  display:grid;
  grid-template-columns:minmax(0,7fr) minmax(280px,5fr);
  gap:clamp(32px,8vw,120px);
  align-items:end;
  margin-bottom:68px;
}
.section-heading h2{
  margin:16px 0 0;
  max-width:12ch;
  font-size:clamp(46px,6.7vw,92px);
  line-height:.94;
  letter-spacing:-.065em;
  font-weight:760;
}
.section-heading>p{
  max-width:540px;
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.8;
}
.dark-section .section-heading>p{color:rgba(248,245,237,.58)}

.story-grid{
  display:grid;
  grid-template-columns:5fr 7fr;
  gap:clamp(28px,5vw,74px);
  align-items:start;
}
.media-card{
  position:relative;
  min-height:640px;
  overflow:hidden;
  background:#d4c4aa;
}
.media-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent 40%,rgba(9,16,11,.58));
  pointer-events:none;
}
.media-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 1.1s var(--ease);
}
.media-card:hover img{transform:scale(1.035)}
.media-caption{
  position:absolute;
  left:24px;
  right:24px;
  bottom:22px;
  z-index:2;
  color:#fff;
}
.media-caption strong{display:block;font-size:16px}
.media-caption span{display:block;margin-top:5px;font-size:9px;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.62)}
.story-copy{padding-top:6px;max-width:620px}
.story-quote{
  margin:0 0 26px;
  color:var(--forest);
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(31px,4vw,56px);
  line-height:1.02;
  letter-spacing:-.045em;
}
.story-copy>p:not(.story-quote){
  max-width:54ch;
  margin:0;
  color:#5e665f;
  font-size:15px;
  line-height:1.85;
}
.steps{
  display:grid;
  grid-template-columns:1fr 1fr;
  margin-top:34px;
  border-top:1px solid var(--line);
}
.step{
  padding:18px 15px 20px 0;
  border-bottom:1px solid var(--line);
  border-right:1px solid var(--line);
  background:transparent;
}
.step:nth-child(2n){padding-left:18px;padding-right:0;border-right:0}
.step b{
  display:block;
  color:var(--gold);
  font-size:10px;
  letter-spacing:.16em;
}
.step strong{
  display:block;
  margin-top:9px;
  font-size:13px;
  letter-spacing:.01em;
}
.step span{
  display:block;
  margin-top:5px;
  color:var(--muted);
  font-size:10px;
  line-height:1.6;
}

.craft-section{background:#121e16}
.craft-grid{
  display:grid;
  grid-template-columns:7fr 5fr;
  border-top:1px solid var(--dark-line);
}
.craft-feature{
  min-height:520px;
  padding:42px 42px 38px 0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  border-right:1px solid var(--dark-line);
  background:
    radial-gradient(circle at 78% 14%,rgba(189,147,80,.15),transparent 31%),
    linear-gradient(150deg,#172a1e,#0d1711);
}
.craft-feature h3{
  max-width:10ch;
  margin:15px 0 18px;
  font-size:clamp(40px,5vw,72px);
  line-height:.94;
  letter-spacing:-.06em;
}
.craft-feature p{
  max-width:610px;
  margin:0;
  color:rgba(248,245,237,.56);
  font-size:14px;
  line-height:1.8;
}
.craft-stack{display:grid}
.craft-stack>article{
  padding:28px 0 27px 34px;
  border-bottom:1px solid var(--dark-line);
}
.craft-stack>article:last-child{border-bottom:0}
.craft-num{
  color:var(--gold-soft);
  font-size:9px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.craft-stack h4{
  margin:10px 0 8px;
  font-size:20px;
  line-height:1.15;
}
.craft-stack p{
  max-width:40ch;
  margin:0;
  color:rgba(248,245,237,.48);
  font-size:12px;
  line-height:1.7;
}

.products-section{background:#e9e1d2}
.product-grid{
  display:grid;
  grid-template-columns:repeat(12,minmax(0,1fr));
  gap:18px;
}
.product-card{
  grid-column:span 4;
  background:transparent;
  border:0;
  border-bottom:1px solid var(--line);
  border-radius:0;
  overflow:hidden;
  box-shadow:none;
  padding-bottom:22px;
  transition:transform .5s var(--ease);
}
.product-card:nth-child(4n+1){grid-column:span 5}
.product-card:nth-child(4n+2){grid-column:span 3}
.product-card:nth-child(4n+3){grid-column:span 4}
.product-card:nth-child(4n){grid-column:span 7}
.product-card:hover{transform:translateY(-4px);box-shadow:none}
.product-media{
  aspect-ratio:1.15 / 1;
  overflow:hidden;
  background:#d2c1a8;
}
.product-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .9s var(--ease),filter .6s var(--ease);
}
.product-card:hover .product-media img{transform:scale(1.045)}
.product-body{padding:17px 0 0}
.product-meta{
  display:flex;
  justify-content:space-between;
  gap:12px;
  color:#7d756a;
  font-size:8px;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.product-body h3{
  margin:9px 0 6px;
  color:var(--ink);
  font-size:22px;
  line-height:1.05;
  letter-spacing:-.03em;
}
.product-body p{
  margin:0;
  color:#6d6a62;
  font-size:12px;
  line-height:1.7;
  max-width:44ch;
}
.pack-tag{
  display:inline-flex;
  margin-top:14px;
  padding:7px 10px;
  border:1px solid rgba(20,25,22,.12);
  border-radius:999px;
  color:#5e5d56;
  font-size:8px;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.origin-panel{
  background:#0f1711;
  color:#fff;
  padding-block:var(--section-y);
}
.origin-box{
  position:relative;
  min-height:min(76vh,820px);
  overflow:hidden;
}
.origin-bg{
  position:absolute;
  inset:0;
  background:#1b2d20 center/cover no-repeat;
  transform:scale(1.01);
  transition:transform 1.2s var(--ease);
}
.origin-box:hover .origin-bg{transform:scale(1.035)}
.origin-shade{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(8,14,10,.85) 0%,rgba(8,14,10,.45) 44%,rgba(8,14,10,.16) 72%,rgba(8,14,10,.28) 100%);
}
.origin-content{
  position:relative;
  z-index:2;
  width:min(640px,62%);
  min-height:100%;
  padding:clamp(38px,6vw,72px);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  background:linear-gradient(90deg,rgba(8,14,10,.1),rgba(8,14,10,0));
}
.origin-content h2{
  max-width:9ch;
  margin:15px 0 14px;
  font-size:clamp(48px,6vw,88px);
  line-height:.92;
  letter-spacing:-.065em;
}
.origin-content>p{
  max-width:46ch;
  margin:0;
  color:rgba(255,255,255,.63);
  font-size:14px;
  line-height:1.8;
}
.origin-pills{display:flex;flex-wrap:wrap;gap:8px;margin-top:24px}
.pill{
  padding:8px 10px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:999px;
  background:rgba(255,255,255,.035);
  color:rgba(255,255,255,.8);
  backdrop-filter:blur(8px);
  font-size:8px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.origin-content .btn-secondary{background:rgba(255,255,255,.06)}
.origin-stamp{
  position:absolute;
  top:28px;
  right:28px;
  z-index:3;
  padding:10px 12px;
  border:1px solid rgba(255,255,255,.16);
  color:rgba(255,255,255,.58);
  font-size:8px;
  letter-spacing:.2em;
  line-height:1.6;
  text-align:center;
  text-transform:uppercase;
}

.gallery{
  display:grid;
  grid-template-columns:repeat(12,minmax(0,1fr));
  grid-auto-rows:120px;
  gap:14px;
}
.gallery-item{
  position:relative;
  overflow:hidden;
  background:#ddd2bf;
  grid-column:span 4;
  grid-row:span 3;
}
.gallery-item:nth-child(1){grid-column:span 7;grid-row:span 6}
.gallery-item:nth-child(2){grid-column:span 5;grid-row:span 4}
.gallery-item:nth-child(3){grid-column:span 5;grid-row:span 2}
.gallery-item:nth-child(4){grid-column:span 4;grid-row:span 4}
.gallery-item:nth-child(5){grid-column:span 8;grid-row:span 4}
.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 1s var(--ease),filter .5s var(--ease);
}
.gallery-item:hover img{transform:scale(1.05)}
.gallery-video-item{cursor:default}
.gallery-video-shell{
  position:absolute;
  inset:0;
  background:#08110c;
  overflow:hidden;
}
.gallery-video{
  width:100%;
  height:100%;
  display:block;
  object-fit:contain;
  background:#08110c;
}
.gallery-video-badge{
  position:absolute;
  top:14px;
  right:14px;
  z-index:3;
  padding:7px 9px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:999px;
  background:rgba(7,13,9,.58);
  color:#fff;
  font-size:8px;
  font-weight:900;
  letter-spacing:.14em;
  backdrop-filter:blur(12px);
}
.gallery-item::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent 45%,rgba(8,15,10,.48));
  pointer-events:none;
}
.gallery-label{
  position:absolute;
  left:16px;
  bottom:14px;
  z-index:2;
  color:#fff;
  font-size:10px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.gallery-empty,.empty-state{
  padding:35px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  color:var(--muted);
  font-size:13px;
  line-height:1.8;
}

.contact-section{
  background:var(--forest);
  color:#f8f5ed;
}
.contact-grid{
  display:grid;
  grid-template-columns:7fr 5fr;
  gap:clamp(34px,7vw,100px);
}
.contact-main,.contact-direct{
  border-top:1px solid var(--dark-line);
  padding-top:22px;
}
.contact-main h2{
  max-width:9ch;
  margin:15px 0 20px;
  font-size:clamp(48px,6.5vw,90px);
  line-height:.92;
  letter-spacing:-.065em;
}
.contact-main>p,.contact-direct>p{
  max-width:40ch;
  color:rgba(248,245,237,.55);
  font-size:14px;
  line-height:1.8;
}
.contact-direct h3{
  margin:10px 0 8px;
  font-size:26px;
  line-height:1.05;
}
.contact-links{
  margin-top:26px;
  border-top:1px solid var(--dark-line);
}
.contact-links a,.social-link{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:15px 0;
  border-bottom:1px solid var(--dark-line);
  color:rgba(248,245,237,.86);
  font-size:12px;
  transition:padding .35s var(--ease),color .35s var(--ease);
}
.contact-links a::after,.social-link::after{
  content:"↗";
  opacity:.45;
  transition:transform .35s var(--ease),opacity .35s var(--ease);
}
.contact-links a:hover,.social-link:hover{padding-inline:8px;color:var(--gold-soft)}
.contact-links a:hover::after,.social-link:hover::after{transform:translate(2px,-2px);opacity:1}
/* 2.2.16 — Social links: provider-agnostic, resilient external-link cards. */
.social-grid{
  margin-top:28px;
  max-width:680px;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}
.social-link{
  position:relative;
  min-width:0;
  display:grid;
  grid-template-columns:42px minmax(0,1fr) 22px;
  align-items:center;
  gap:12px;
  padding:12px 13px;
  border:1px solid rgba(245,241,233,.12)!important;
  border-radius:16px!important;
  background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.025))!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
  color:rgba(248,245,237,.9);
  overflow:hidden;
  isolation:isolate;
  transition:transform .28s var(--ease),border-color .28s var(--ease),background .28s var(--ease),box-shadow .28s var(--ease)!important;
}
.social-link::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  opacity:0;
  background:radial-gradient(220px 120px at 0 50%,rgba(195,163,112,.13),transparent 70%);
  transition:opacity .28s var(--ease);
}
.social-link::after{
  content:none!important;
}
.social-link:hover,
.social-link:focus-visible{
  padding:12px 13px;
  transform:translateY(-2px);
  border-color:rgba(195,163,112,.42)!important;
  background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.03))!important;
  box-shadow:0 12px 30px rgba(0,0,0,.16),inset 0 1px 0 rgba(255,255,255,.06);
}
.social-link:hover::before,
.social-link:focus-visible::before{opacity:1}
.social-link:focus-visible{outline:2px solid rgba(195,163,112,.65);outline-offset:3px}
.social-link-mark{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:13px;
  border:1px solid rgba(255,255,255,.13);
  background:rgba(255,255,255,.055);
  color:var(--gold-soft);
  font-size:17px;
  font-weight:800;
  line-height:1;
}
.social-link-copy{min-width:0}
.social-link-copy strong{
  display:block;
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  font-size:12px;
  letter-spacing:.01em;
}
.social-link-copy small{
  display:block;
  margin-top:4px;
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  color:rgba(248,245,237,.42);
  font-size:9px;
  letter-spacing:.02em;
}
.social-link-arrow{
  display:grid;
  place-items:center;
  width:22px;
  height:22px;
  border-radius:50%;
  color:rgba(248,245,237,.48);
  transition:transform .28s var(--ease),color .28s var(--ease),background .28s var(--ease);
}
.social-link:hover .social-link-arrow,
.social-link:focus-visible .social-link-arrow{
  transform:translate(2px,-2px);
  color:var(--gold-soft);
  background:rgba(195,163,112,.10);
}

/* Keep the card family consistent regardless of provider. */
.social-facebook .social-link-mark,
.social-instagram .social-link-mark,
.social-youtube .social-link-mark,
.social-tiktok .social-link-mark,
.social-linkedin .social-link-mark,
.social-x .social-link-mark,
.social-telegram .social-link-mark,
.social-whatsapp .social-link-mark{font-family:Arial,sans-serif}

@media (max-width:700px){
  .social-grid{grid-template-columns:1fr;gap:8px;margin-top:22px}
  .social-link{grid-template-columns:40px minmax(0,1fr) 20px;padding:11px 12px}
  .social-link:hover,.social-link:focus-visible{padding:11px 12px}
  .social-link-mark{width:40px;height:40px;border-radius:12px}
}
@media (prefers-reduced-motion:reduce){
  .social-link,
  .social-link-arrow{transition:none!important}
}

.site-header{
  position:fixed;
  inset:0 0 auto;
  z-index:60;
  padding:12px var(--gutter);
  pointer-events:none;
  transition:transform .45s var(--ease),opacity .45s var(--ease);
}
.nav-shell{
  pointer-events:auto;
  width:min(var(--max),100%);
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:24px;
  padding:0;
  background:transparent;
  border:0;
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#fff;
  justify-self:start;
  min-width:0;
}
.brand-icon{
  width:32px;
  height:32px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.22);
  border-radius:50%;
  background:rgba(255,255,255,.05);
  color:var(--gold-soft);
  font-size:13px;
}
.brand-copy strong{display:block;font-size:13px;letter-spacing:.02em}
.brand-copy small{
  display:block;
  margin-top:3px;
  color:rgba(255,255,255,.5);
  font-size:7px;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.desktop-nav{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:24px;
  color:rgba(255,255,255,.66);
  font-size:9px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.desktop-nav a{
  position:relative;
  padding:12px 0;
  transition:color .3s var(--ease);
}
.desktop-nav a::after{
  content:"";
  position:absolute;
  left:0;
  right:100%;
  bottom:5px;
  height:1px;
  background:var(--gold-soft);
  transition:right .35s var(--ease);
}
.desktop-nav a:hover,.desktop-nav a.active{color:#fff}
.desktop-nav a:hover::after,.desktop-nav a.active::after{right:0}
.nav-actions{
  justify-self:end;
  display:flex;
  align-items:center;
  gap:8px;
}
.lang-switch,.menu-btn{
  border:1px solid rgba(255,255,255,.18);
  background:rgba(10,18,13,.22);
  color:#fff;
  cursor:pointer;
  backdrop-filter:blur(10px);
}
.lang-switch{
  padding:9px 11px;
  border-radius:999px;
  font-size:8px;
  font-weight:800;
  letter-spacing:.06em;
}
.menu-btn{
  display:none;
  width:38px;
  height:36px;
  padding:7px;
  border-radius:50%;
}
.menu-btn span{
  display:block;
  width:18px;
  height:1.5px;
  margin:4px auto;
  background:#fff;
  border-radius:999px;
  transition:transform .25s var(--ease),opacity .25s var(--ease);
}
.menu-btn.open span:first-child{transform:translateY(2.7px) rotate(45deg)}
.menu-btn.open span:last-child{transform:translateY(-2.7px) rotate(-45deg)}
.site-header.scrolled{
  background:rgba(11,25,17,.86);
  box-shadow:0 10px 40px rgba(0,0,0,.12);
  backdrop-filter:blur(16px);
}
.site-header.scrolled .nav-shell{min-height:54px}
.mobile-nav{
  pointer-events:auto;
  width:min(var(--max),100%);
  margin:10px auto 0;
  padding:8px;
  border:1px solid rgba(255,255,255,.15);
  background:rgba(11,25,17,.94);
  box-shadow:0 18px 45px rgba(0,0,0,.2);
}
.mobile-nav[hidden]{display:none}
.mobile-nav a{
  display:block;
  padding:13px 12px;
  border-bottom:1px solid rgba(255,255,255,.08);
  color:rgba(255,255,255,.84);
  font-size:11px;
  font-weight:700;
}
.mobile-nav a:last-child{border-bottom:0}
.mobile-nav a:hover{color:var(--gold-soft)}

.scroll-progress{
  position:fixed;
  top:0;
  bottom:0;
  right:10px;
  z-index:70;
  width:1px;
  background:rgba(255,255,255,.16);
  pointer-events:none;
}
.scroll-progress span{
  display:block;
  width:100%;
  height:calc(var(--scroll-progress,0) * 100%);
  background:var(--gold-soft);
  transform-origin:top;
}
.back-home{
  position:fixed;
  right:var(--gutter);
  bottom:24px;
  z-index:55;
  display:grid;
  grid-template-columns:auto 1fr;
  align-items:center;
  gap:7px;
  min-height:36px;
  padding:0 11px;
  border:1px solid rgba(20,25,22,.15);
  border-radius:999px;
  background:rgba(251,249,243,.88);
  color:var(--forest);
  box-shadow:0 12px 28px rgba(9,25,15,.11);
  backdrop-filter:blur(12px);
  opacity:0;
  transform:translateY(8px);
  transition:opacity .3s var(--ease),transform .3s var(--ease);
  cursor:pointer;
}
.back-home.visible{opacity:1;transform:none}
.back-home[hidden]{display:none}
.back-home strong{font-size:8px;letter-spacing:.08em;text-transform:uppercase}
.back-home span{font-size:13px}

.site-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:26px var(--gutter);
  border-top:1px solid rgba(255,255,255,.1);
  background:#0b120d;
  color:#f8f5ed;
}
.site-footer strong{display:block;font-size:13px}
.site-footer span{display:block;margin-top:4px;color:rgba(248,245,237,.4);font-size:8px;letter-spacing:.1em;text-transform:uppercase}
.site-footer small{color:rgba(248,245,237,.38);font-size:9px}

.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .85s var(--ease),transform .85s var(--ease);
  transition-delay:calc(var(--i,0) * 80ms);
}
.reveal.show{opacity:1;transform:none}

.image-host.media-failed{background:linear-gradient(145deg,#ddd3c1,#c3b49c)}
.image-host.media-failed::before{display:none}

@media (hover:none){
  .btn:hover,.product-card:hover,.hero-photo-wrap:hover .hero-photo,.media-card:hover img,.origin-box:hover .origin-bg,.gallery-item:hover img{transform:none}
}

@media (max-width:980px){
  main>.section{padding-block:90px}
  .hero{padding-top:126px}
  .hero-grid,.story-grid,.craft-grid,.contact-grid{grid-template-columns:1fr}
  .hero-stage{justify-content:flex-start;min-height:auto;margin-top:20px}
  .hero-photo-wrap{width:min(100%,620px)}
  .hero-marker{left:18px}
  .section-heading{grid-template-columns:1fr;gap:20px;margin-bottom:45px}
  .section-heading h2{max-width:11ch}
  .media-card{min-height:540px}
  .craft-feature{min-height:460px;padding:36px 0}
  .craft-stack>article{padding:25px 0}
  .craft-grid{border-top:0}
  .craft-feature{border-right:0;border-bottom:1px solid var(--dark-line)}
  .craft-stack>article{padding-left:0}
  .product-card,.product-card:nth-child(4n+1),.product-card:nth-child(4n+2),.product-card:nth-child(4n+3),.product-card:nth-child(4n){grid-column:span 6}
  .gallery{grid-auto-rows:100px}
  .gallery-item,.gallery-item:nth-child(1),.gallery-item:nth-child(2),.gallery-item:nth-child(3),.gallery-item:nth-child(4),.gallery-item:nth-child(5){grid-column:span 6}
  .gallery-item:nth-child(1){grid-row:span 5}
  .origin-content{width:min(680px,74%)}
  .desktop-nav{gap:16px}
}

@media (max-width:720px){
  html{scroll-padding-top:68px}
  .site-header{padding:10px var(--gutter)}
  .nav-shell{grid-template-columns:1fr auto}
  .desktop-nav{display:none}
  .menu-btn{display:block}
  .lang-switch{padding:8px 10px}
  .hero{min-height:auto;padding-top:110px}
  .hero-grid{gap:42px}
  .hero h1{max-width:8.5ch;font-size:clamp(54px,16vw,84px)}
  .hero-lead{font-size:15px;line-height:1.75}
  .hero-note{grid-template-columns:1fr 1fr;margin-top:42px}
  .hero-note>div{padding:14px 10px 0 0}
  html[dir="rtl"] .hero-note>div{border-left:1px solid rgba(255,255,255,.13);border-right:0;padding-left:10px;padding-right:0}
  .hero-note>div:nth-child(2){border-right:0;border-left:0;padding-right:0}
  html[dir="rtl"] .hero-note>div:nth-child(2){border-left:0;padding-left:0}
  .hero-note>div:last-child{grid-column:1/-1;border-top:1px solid rgba(255,255,255,.13);border-right:0;padding-right:0;margin-top:13px;padding-top:13px}
  html[dir="rtl"] .hero-note>div:last-child{border-left:0;padding-left:0}
  .hero-stage{margin-top:0}
  .hero-photo-wrap{width:100%;aspect-ratio:4/5}
  .hero-marker{left:12px;bottom:12px;width:160px;padding:12px}
  html[dir="rtl"] .hero-marker{left:auto;right:12px}
  .hero-index{right:10px;top:18px}
  .section-heading h2,.origin-content h2,.contact-main h2{font-size:clamp(48px,14vw,74px)}
  .media-card{min-height:420px}
  .story-copy{padding-top:0}
  .story-quote{font-size:clamp(34px,10.2vw,52px)}
  .steps{grid-template-columns:1fr}
  .step,.step:nth-child(2n){padding:15px 0;border-right:0}
  .product-grid{grid-template-columns:1fr;gap:28px}
  .product-card,.product-card:nth-child(n){grid-column:1}
  .product-media{aspect-ratio:1.15/1}
  .gallery{grid-template-columns:1fr 1fr;grid-auto-rows:32vw;gap:9px}
  .gallery-item,.gallery-item:nth-child(n){grid-column:span 1;grid-row:span 2}
  .gallery-item:nth-child(1){grid-column:1/-1;grid-row:span 4}
  .gallery-item:nth-child(5){grid-column:1/-1}
  .origin-box{min-height:660px}
  .origin-shade{background:linear-gradient(180deg,rgba(8,14,10,.16),rgba(8,14,10,.84))}
  .origin-content{width:100%;min-height:100%;padding:28px 22px 30px}
  .origin-stamp{top:16px;right:16px}
  html[dir="rtl"] .origin-stamp{right:auto;left:16px}
  .contact-grid{gap:48px}
  .site-footer{align-items:flex-start;flex-direction:column}
  .scroll-progress{right:5px}
  .back-home{right:14px;bottom:14px}
}

@media (max-width:430px){
  .hero-note strong{font-size:12px}
  .hero-note span{font-size:8px}
  .origin-pills{gap:6px}
  .pill{font-size:7px}
}

body.intro-complete .site-header{
  animation:headerEntry .8s var(--ease) both;
}
@keyframes headerEntry{
  from{opacity:0;transform:translateY(-16px)}
  to{opacity:1;transform:none}
}

html[dir="rtl"] .intro-progress i{transform-origin:right center}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  .reveal{opacity:1;transform:none;transition:none}
  .btn,.product-card,.hero-photo,.media-card img,.origin-bg,.gallery-item img,.contact-links a,.social-link{transition:none!important}
  .scroll-progress span{transition:none}
}


/* 2.2.1 — Arabic mobile refinement
   The Arabic layout uses the same editorial system, but it must not inherit
   Latin-oriented `ch` constraints or overly tight display spacing. */
[dir="rtl"]{
  --font-ar: "Noto Sans Arabic", "Noto Kufi Arabic", system-ui, -apple-system, "Segoe UI", Tahoma, sans-serif;
}
[dir="rtl"] body,
[dir="rtl"] button,
[dir="rtl"] input,
[dir="rtl"] textarea,
[dir="rtl"] select{
  font-family:var(--font-ar);
}
[dir="rtl"] .hero h1,
[dir="rtl"] .section-heading h2,
[dir="rtl"] .craft-feature h3,
[dir="rtl"] .origin-content h2,
[dir="rtl"] .contact-main h2{
  max-width:100%;
  letter-spacing:-.018em;
  line-height:1.06;
  text-wrap:balance;
}
[dir="rtl"] .hero h1 em{
  font-family:inherit;
  font-weight:inherit;
  color:var(--gold-soft);
  letter-spacing:-.018em;
}
[dir="rtl"] .section-heading > div,
[dir="rtl"] .section-heading > p{
  min-width:0;
}
[dir="rtl"] .hero-lead,
[dir="rtl"] .section-heading > p,
[dir="rtl"] .story-copy > p,
[dir="rtl"] .craft-feature p,
[dir="rtl"] .origin-content > p,
[dir="rtl"] .contact-main > p,
[dir="rtl"] .contact-direct > p{
  text-wrap:pretty;
}

@media (max-width:720px){
  [dir="rtl"] .nav-shell{
    gap:10px;
  }
  [dir="rtl"] .brand{
    gap:9px;
  }
  [dir="rtl"] .brand-icon{
    width:36px;
    height:36px;
  }
  [dir="rtl"] .brand-copy strong{
    font-size:14px;
    line-height:1.15;
  }
  [dir="rtl"] .brand-copy small{
    font-size:7px;
    letter-spacing:.04em;
    white-space:nowrap;
  }

  [dir="rtl"] main > .section{
    padding-block:72px;
  }
  [dir="rtl"] .section-inner{
    width:min(100%,calc(100% - 36px));
  }
  [dir="rtl"] .hero{
    padding-top:98px;
    padding-bottom:66px;
  }
  [dir="rtl"] .hero-grid{
    gap:30px;
  }
  [dir="rtl"] .eyebrow,
  [dir="rtl"] .kicker{
    font-size:9px;
    line-height:1.5;
    letter-spacing:.06em;
  }
  [dir="rtl"] .hero h1{
    width:100%;
    margin:15px 0 18px;
    font-size:clamp(48px,15vw,70px);
    line-height:1.04;
  }
  [dir="rtl"] .hero-lead{
    max-width:34ch;
    font-size:14px;
    line-height:1.85;
  }
  [dir="rtl"] .cta-row{
    gap:8px;
    margin-top:24px;
  }
  [dir="rtl"] .btn{
    min-height:46px;
    padding-inline:15px;
    font-size:10px;
  }
  [dir="rtl"] .hero-note{
    margin-top:34px;
  }

  [dir="rtl"] .section-heading{
    display:block;
    margin-bottom:36px;
  }
  [dir="rtl"] .section-heading > div{
    margin-bottom:18px;
  }
  [dir="rtl"] .section-heading h2{
    width:100%;
    margin-top:10px;
    font-size:clamp(42px,11.8vw,62px);
    line-height:1.07;
  }
  [dir="rtl"] .section-heading > p{
    width:100%;
    max-width:100%;
    margin:0;
    font-size:14px;
    line-height:1.9;
  }

  [dir="rtl"] .story-grid{
    gap:32px;
  }
  [dir="rtl"] .media-card{
    min-height:380px;
  }
  [dir="rtl"] .story-quote{
    font-size:clamp(31px,9vw,46px);
    line-height:1.1;
    letter-spacing:-.018em;
  }
  [dir="rtl"] .story-copy > p:not(.story-quote){
    font-size:14px;
    line-height:1.9;
  }
  [dir="rtl"] .step strong,
  [dir="rtl"] .step span{
    line-height:1.7;
  }

  [dir="rtl"] .craft-feature{
    min-height:0;
    padding:30px 0 34px;
  }
  [dir="rtl"] .craft-feature h3{
    font-size:clamp(38px,10.6vw,56px);
    line-height:1.08;
    margin:13px 0 14px;
  }
  [dir="rtl"] .craft-feature p{
    max-width:100%;
    font-size:13px;
    line-height:1.85;
  }
  [dir="rtl"] .craft-stack > article{
    padding-block:20px;
  }
  [dir="rtl"] .craft-stack h4{
    font-size:18px;
    line-height:1.3;
  }
  [dir="rtl"] .craft-stack p{
    max-width:100%;
    font-size:12px;
    line-height:1.8;
  }

  [dir="rtl"] .product-grid{
    gap:24px;
  }
  [dir="rtl"] .product-body h3{
    font-size:20px;
    line-height:1.25;
  }
  [dir="rtl"] .product-body p{
    font-size:12px;
    line-height:1.8;
  }
  [dir="rtl"] .empty-state,
  [dir="rtl"] .gallery-empty{
    padding:22px 0;
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
    border-radius:0;
    background:transparent;
    font-size:13px;
    line-height:1.85;
  }
  [dir="rtl"] .empty-state strong{
    display:block;
    margin-bottom:6px;
    color:var(--ink);
    font-size:14px;
  }

  [dir="rtl"] .origin-box{
    min-height:600px;
  }
  [dir="rtl"] .origin-content{
    padding:26px 20px 26px;
  }
  [dir="rtl"] .origin-content h2{
    font-size:clamp(43px,12vw,64px);
    line-height:1.03;
  }
  [dir="rtl"] .origin-content > p{
    max-width:100%;
    font-size:13px;
    line-height:1.9;
  }
  [dir="rtl"] .origin-pills{
    margin-top:18px;
  }
  [dir="rtl"] .pill{
    font-size:8px;
    letter-spacing:.02em;
  }

  [dir="rtl"] .contact-main h2{
    font-size:clamp(43px,12vw,64px);
  }
  [dir="rtl"] .contact-main > p,
  [dir="rtl"] .contact-direct > p{
    font-size:13px;
    line-height:1.9;
  }
}

@media (max-width:430px){
  [dir="rtl"] .section-inner{
    width:calc(100% - 30px);
  }
  [dir="rtl"] main > .section{
    padding-block:64px;
  }
  [dir="rtl"] .hero{
    padding-top:90px;
  }
  [dir="rtl"] .hero h1{
    font-size:clamp(45px,14.5vw,62px);
  }
  [dir="rtl"] .section-heading h2,
  [dir="rtl"] .origin-content h2,
  [dir="rtl"] .contact-main h2{
    font-size:clamp(40px,11.6vw,58px);
  }
}

/* 2.2.1 — content-safe fallback states */
.hero-proof{
  width:min(100%,520px);
  min-height:min(62vh,620px);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:clamp(32px,5vw,58px);
  color:#f8f5ed;
  background:
    radial-gradient(circle at 75% 18%,rgba(189,147,80,.20),transparent 28%),
    linear-gradient(150deg,#1a2e20,#0d1711);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 32px 80px rgba(0,0,0,.24);
}
.hero-proof-kicker{
  color:var(--gold-soft);
  font-size:10px;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.hero-proof strong{
  display:block;
  margin-top:14px;
  font-size:clamp(42px,6vw,78px);
  line-height:.95;
  letter-spacing:-.045em;
}
.hero-proof small{
  display:block;
  margin-top:14px;
  color:rgba(248,245,237,.55);
  font-size:11px;
  line-height:1.7;
}
.editorial-empty{
  display:grid;
  gap:8px;
  max-width:720px;
  margin-inline-start:auto;
  text-align:inherit;
}
.editorial-empty .kicker{margin-bottom:3px}
.editorial-empty strong{font-size:18px;line-height:1.35}
.editorial-empty > span:last-child{color:var(--muted);line-height:1.8}

@media (max-width:980px){
  .hero-proof{width:min(100%,620px);min-height:420px}
}

@media (max-width:720px){
  [dir="rtl"] .hero-proof{
    width:100%;
    min-height:330px;
    padding:26px 22px;
  }
  [dir="rtl"] .hero-proof strong{
    font-size:clamp(38px,11vw,54px);
    line-height:1.02;
    letter-spacing:-.018em;
  }
  [dir="rtl"] .hero-proof small{
    font-size:10px;
    line-height:1.8;
  }
  [dir="rtl"] .editorial-empty{
    gap:6px;
    max-width:100%;
  }
  [dir="rtl"] .editorial-empty strong{font-size:16px}
}


/* 2.2.2 — system theme + Arabic mobile production pass */
:root{
  color-scheme:light dark;
  --light-bg:#f2eee5;
  --light-surface:#e9e1d2;
  --light-paper:#fbf9f3;
}

/* Let the browser/phone theme drive the public presentation automatically.
   The intentionally dark editorial sections remain dark in both modes; the
   paper/product/content surfaces switch with the device preference. */
@media (prefers-color-scheme:dark){
  :root{
    --cream:#151613;
    --paper:#1c1d19;
    --ink:#f2efe7;
    --muted:#a9aa9f;
    --line:rgba(242,239,231,.14);
    --gold:#caa56b;
    --gold-soft:#e0c28d;
    --forest:#0c100d;
    --forest-2:#121812;
  }
  html,body{background:var(--cream);color:var(--ink)}
  body::before{opacity:.022;mix-blend-mode:screen}
  .light-section,.products-section{background:var(--cream);color:var(--ink)}
  .products-section{background:#191a16}
  .section-heading>p{color:#a9aa9f}
  .story-quote{color:#eeeae1}
  .story-copy>p:not(.story-quote),
  .product-body p{color:#aaa99f}
  .product-body h3{color:#f2efe7}
  .product-meta{color:#9f998e}
  .pack-tag{border-color:rgba(242,239,231,.14);color:#c1bdb2}
  .media-card{background:#24241f}
  .gallery-item{background:#25251f}
  .gallery-empty,.empty-state{color:#aaa99f;border-color:var(--line)}
  .back-home{background:rgba(28,29,25,.88);border-color:rgba(242,239,231,.14);color:#f2efe7}
}

/* Arabic should read as Arabic first: no Latin `ch` geometry, no balancing
   that produces single-word towers, and tighter but calmer mobile scale. */
[dir="rtl"] .hero h1,
[dir="rtl"] .section-heading h2,
[dir="rtl"] .craft-feature h3,
[dir="rtl"] .origin-content h2,
[dir="rtl"] .contact-main h2{
  word-break:normal;
  overflow-wrap:normal;
  hyphens:none;
  text-wrap:wrap;
}

[dir="rtl"] .kicker,
[dir="rtl"] .eyebrow{
  letter-spacing:0;
}

@media (max-width:720px){
  /* Header: stable two-sided mobile composition */
  [dir="rtl"] .site-header{padding:8px 12px}
  [dir="rtl"] .nav-shell{
    width:100%;
    min-height:54px;
    grid-template-columns:auto 1fr auto;
    gap:8px;
    padding:7px 8px;
    border:1px solid rgba(255,255,255,.14);
    border-radius:22px;
    background:rgba(111,124,104,.82);
    box-shadow:0 14px 34px rgba(17,27,19,.10);
    backdrop-filter:blur(18px) saturate(110%);
  }
  [dir="rtl"] .brand{grid-column:3;justify-self:end;gap:8px;min-width:0}
  [dir="rtl"] .brand-copy{text-align:right;min-width:0}
  [dir="rtl"] .brand-copy strong{font-size:13px;line-height:1.15}
  [dir="rtl"] .brand-copy small{font-size:6px;opacity:.6}
  [dir="rtl"] .brand-icon{width:34px;height:34px;flex:0 0 34px}
  [dir="rtl"] .nav-actions{grid-column:1;display:flex;align-items:center;gap:8px;justify-self:start}
  [dir="rtl"] .lang-switch{min-height:36px;padding-inline:11px;border-radius:18px;font-size:9px}
  [dir="rtl"] .menu-btn{width:38px;height:36px;display:block;border:1px solid rgba(255,255,255,.15);background:rgba(255,255,255,.03)}
  [dir="rtl"] .mobile-nav{margin-top:8px;border-radius:18px}

  /* Stop headline towers. The visual hierarchy stays strong without using
     almost the entire phone width for a single word. */
  [dir="rtl"] .hero{
    padding-top:86px;
    padding-bottom:58px;
  }
  [dir="rtl"] .hero-grid{gap:24px}
  [dir="rtl"] .hero-copy{max-width:100%}
  [dir="rtl"] .hero h1{
    max-width:15ch;
    margin:12px 0 16px;
    font-size:clamp(40px,11.8vw,58px);
    line-height:1.12;
    letter-spacing:-.012em;
  }
  [dir="rtl"] .hero-lead{
    max-width:100%;
    font-size:14px;
    line-height:1.9;
  }
  [dir="rtl"] .hero-note{margin-top:28px}
  [dir="rtl"] .hero-note>div{padding-top:12px}
  [dir="rtl"] .hero-note strong{font-size:11px}
  [dir="rtl"] .hero-note span{font-size:7px}

  /* Stacked section heading: title first, supporting text directly underneath. */
  [dir="rtl"] .section-heading{
    display:grid;
    grid-template-columns:1fr;
    gap:14px;
    margin-bottom:34px;
  }
  [dir="rtl"] .section-heading>div{margin:0;min-width:0}
  [dir="rtl"] .section-heading h2{
    max-width:15ch;
    margin:8px 0 0;
    font-size:clamp(34px,10.4vw,50px);
    line-height:1.12;
    letter-spacing:-.01em;
  }
  [dir="rtl"] .section-heading>p{
    margin:0;
    max-width:34rem;
    font-size:13px;
    line-height:1.95;
  }

  [dir="rtl"] .story-quote{
    max-width:16ch;
    font-size:clamp(28px,8.3vw,40px);
    line-height:1.2;
    letter-spacing:-.01em;
  }
  [dir="rtl"] .story-copy>p:not(.story-quote){font-size:13px;line-height:1.95}

  [dir="rtl"] .craft-feature h3{
    max-width:13ch;
    font-size:clamp(34px,9.8vw,49px);
    line-height:1.12;
  }
  [dir="rtl"] .craft-feature p{font-size:13px;line-height:1.9}

  [dir="rtl"] .product-grid{gap:28px}
  [dir="rtl"] .product-media{aspect-ratio:1.08/1}
  [dir="rtl"] .product-body{padding-top:14px}
  [dir="rtl"] .product-body h3{font-size:19px;line-height:1.3}
  [dir="rtl"] .product-body p{font-size:12px;line-height:1.85}

  [dir="rtl"] .origin-box{min-height:560px}
  [dir="rtl"] .origin-content{padding:24px 20px 26px}
  [dir="rtl"] .origin-content h2{
    max-width:13ch;
    font-size:clamp(35px,10.6vw,52px);
    line-height:1.1;
  }
  [dir="rtl"] .origin-content>p{font-size:13px;line-height:1.9}

  [dir="rtl"] .contact-main h2{
    max-width:13ch;
    font-size:clamp(35px,10.6vw,52px);
    line-height:1.1;
  }
  [dir="rtl"] .contact-main>p,
  [dir="rtl"] .contact-direct>p{font-size:13px;line-height:1.9}

  /* Keep the empty state editorial instead of making it resemble a form/card. */
  [dir="rtl"] .editorial-empty{
    width:100%;
    padding:18px 0;
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
    border-radius:0;
    background:transparent;
  }
  [dir="rtl"] .editorial-empty strong{font-size:15px;line-height:1.6}
  [dir="rtl"] .editorial-empty>span:last-child{font-size:12px;line-height:1.9}
}

@media (max-width:430px){
  [dir="rtl"] main>.section{padding-block:58px}
  [dir="rtl"] .section-inner{width:calc(100% - 28px)}
  [dir="rtl"] .hero{padding-top:82px;padding-bottom:52px}
  [dir="rtl"] .hero h1{font-size:clamp(38px,11.5vw,54px);max-width:14ch}
  [dir="rtl"] .hero-lead{font-size:13px}
  [dir="rtl"] .section-heading h2{font-size:clamp(32px,9.8vw,46px);max-width:15ch}
  [dir="rtl"] .craft-feature h3,
  [dir="rtl"] .origin-content h2,
  [dir="rtl"] .contact-main h2{font-size:clamp(32px,9.9vw,48px)}
}

/* System theme also updates browser chrome color while preserving the
   existing single-source brand behavior. */


/* 2.2.3 — Cinematic opening + production mobile header polish */
:root{
  --intro-bg:#0a0d0a;
  --intro-ink:#f8f5ed;
  --intro-muted:rgba(248,245,237,.54);
  --intro-line:rgba(248,245,237,.16);
}
body.intro-active{overflow:hidden}
.intro-screen{
  position:fixed;
  inset:0;
  z-index:200;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:clamp(22px,4vw,48px) var(--gutter) clamp(22px,4vw,40px);
  overflow:hidden;
  background:var(--intro-bg);
  color:var(--intro-ink);
  pointer-events:auto;
  clip-path:inset(0 0 0 0);
  transition:clip-path 1.05s cubic-bezier(.77,0,.18,1), opacity .45s ease;
}
.intro-screen::before{
  content:"";
  position:absolute;
  inset:8%;
  border:1px solid var(--intro-line);
  pointer-events:none;
}
.intro-screen::after{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  bottom:0;
  width:1px;
  background:linear-gradient(180deg,transparent,var(--intro-line),transparent);
  opacity:.55;
  pointer-events:none;
}
.intro-noise{
  position:absolute;
  inset:0;
  opacity:.038;
  pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='96' viewBox='0 0 96 96'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode:screen;
}
.intro-topline,.intro-bottomline{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  gap:18px;
  font-size:9px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.intro-topline span:last-child{opacity:.45}
.intro-center{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  width:min(100%,1120px);
  margin:auto;
  padding-inline:clamp(8px,5vw,72px);
}
.intro-mark{
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  margin-bottom:22px;
  border:1px solid var(--intro-line);
  border-radius:50%;
  color:var(--gold-soft);
  font-size:20px;
  opacity:0;
  transform:translateY(14px) rotate(-8deg);
  transition:opacity .65s var(--ease), transform .8s var(--ease);
}
.intro-brand{
  display:flex;
  flex-direction:column;
  overflow:hidden;
  font-size:clamp(72px,13vw,170px);
  line-height:.78;
  letter-spacing:-.075em;
  font-weight:800;
}
.intro-brand span{
  display:block;
  transform:translateY(110%);
  transition:transform .95s cubic-bezier(.2,.75,.2,1);
}
.intro-brand span+span{transition-delay:.08s;color:var(--gold-soft)}
.intro-center p{
  margin:26px 0 0;
  color:var(--intro-muted);
  font-size:clamp(13px,1.3vw,17px);
  line-height:1.9;
  opacity:0;
  transform:translateY(12px);
  transition:opacity .7s ease .34s, transform .7s var(--ease) .34s;
}
.intro-bottomline{grid-template-columns:auto auto 1fr}
.intro-bottomline span:nth-child(2){color:var(--gold-soft);font-size:8px}
.intro-progress{
  position:relative;
  height:1px;
  margin-inline-start:18px;
  background:var(--intro-line);
  overflow:hidden;
}
.intro-progress i{
  display:block;
  width:22%;
  height:100%;
  background:var(--gold-soft);
  transition:width 1.15s cubic-bezier(.2,.7,.2,1);
  animation:introLoad 1.15s ease-in-out infinite;
}
@keyframes introLoad{
  0%,100%{transform:translateX(-115%);opacity:.35}
  50%{transform:translateX(350%);opacity:1}
}
.intro-index{
  position:absolute;
  right:clamp(20px,4vw,48px);
  top:50%;
  z-index:2;
  transform:translateY(-50%);
  writing-mode:vertical-rl;
  color:var(--intro-muted);
  font-size:8px;
  letter-spacing:.24em;
}
.intro-screen.is-ready .intro-mark{opacity:1;transform:none}
.intro-screen.is-ready .intro-brand span{transform:none}
.intro-screen.is-ready .intro-center p{opacity:1;transform:none}
.intro-screen.is-ready .intro-progress i{width:100%;transform:scaleX(1);animation:none}
.intro-screen.is-leaving{
  clip-path:inset(0 0 100% 0);
  pointer-events:none;
}
.intro-screen.is-leaving .intro-center{transform:translateY(-12vh);opacity:.84;transition:transform .9s var(--ease),opacity .5s ease}
.intro-screen.is-hidden{visibility:hidden}
.intro-complete .hero .reveal{
  animation:heroEntry .9s var(--ease) both;
}
.intro-complete .hero .reveal:nth-child(1){animation-delay:.03s}
.intro-complete .hero .reveal:nth-child(2){animation-delay:.10s}
.intro-complete .hero .reveal:nth-child(3){animation-delay:.18s}
.intro-complete .hero .reveal:nth-child(4){animation-delay:.26s}
.intro-complete .hero .reveal:nth-child(5){animation-delay:.16s}
@keyframes heroEntry{
  from{opacity:0;transform:translateY(28px)}
  to{opacity:1;transform:none}
}

/* Mobile header is a single, stable row; never let RTL navigation fall into two rows. */
@media (max-width:720px){
  .site-header{
    padding:calc(8px + env(safe-area-inset-top)) 12px 0;
  }
  .nav-shell{
    display:flex;
    flex-direction:row;
    direction:rtl;
    align-items:center;
    justify-content:space-between;
    width:100%;
    min-height:58px;
    height:58px;
    padding:6px 7px;
    gap:8px;
    border:1px solid rgba(255,255,255,.14);
    border-radius:20px;
    background:rgba(111,124,104,.74);
    box-shadow:0 10px 30px rgba(17,27,19,.16);
    backdrop-filter:blur(18px) saturate(118%);
  }
  .brand{justify-self:auto;flex:0 0 auto;gap:8px;min-width:0}
  .brand-copy{text-align:right;min-width:0}
  .brand-copy strong{font-size:13px;line-height:1.05}
  .brand-copy small{font-size:6px;margin-top:3px;letter-spacing:.09em}
  .brand-icon{width:38px;height:38px;flex:0 0 38px}
  .nav-actions{display:flex;align-items:center;justify-content:flex-start;gap:7px;flex:0 0 auto}
  .lang-switch,.menu-btn{flex:0 0 auto}
  .lang-switch{min-height:36px;padding:0 12px;border-radius:18px;font-size:9px}
  .menu-btn{display:block;width:38px;height:36px}
  .mobile-nav{
    position:absolute;
    top:calc(100% + 8px);
    left:12px;
    right:12px;
    width:auto;
    margin:0;
    border-radius:18px;
    overflow:hidden;
  }
  .hero{padding-top:calc(92px + env(safe-area-inset-top));}
  .hero h1{max-width:100%;font-size:clamp(42px,11vw,62px);line-height:1.10;letter-spacing:-.012em}
  .section-heading h2,.origin-content h2,.contact-main h2,.craft-feature h3{max-width:100%;}
  .section-heading h2{font-size:clamp(34px,9.5vw,52px);line-height:1.12}
  .origin-content h2,.contact-main h2,.craft-feature h3{font-size:clamp(34px,9.6vw,52px);line-height:1.12}
}

@media (prefers-color-scheme:light){
  :root{
    --intro-bg:#f2eee5;
    --intro-ink:#141916;
    --intro-muted:rgba(20,25,22,.52);
    --intro-line:rgba(20,25,22,.12);
  }
  .nav-shell{color:var(--ink)}
}

@media (max-width:720px) and (prefers-color-scheme:light){
  .nav-shell{background:rgba(177,186,171,.78);box-shadow:0 10px 30px rgba(31,41,32,.12)}
  .lang-switch,.menu-btn{background:rgba(255,255,255,.12);border-color:rgba(20,25,22,.12);color:var(--ink)}
  .menu-btn span{background:var(--ink)}
  .mobile-nav{background:rgba(248,245,237,.96);border-color:rgba(20,25,22,.12);box-shadow:0 18px 45px rgba(31,41,32,.12)}
  .mobile-nav a{color:var(--ink);border-bottom-color:rgba(20,25,22,.08)}
}

@media (prefers-color-scheme:dark){
  .nav-shell{background:rgba(22,28,23,.78);border-color:rgba(242,239,231,.12)}
  .lang-switch,.menu-btn{background:rgba(255,255,255,.04);border-color:rgba(242,239,231,.14)}
  .mobile-nav{background:rgba(14,18,15,.96)}
}

@media (prefers-reduced-motion:reduce){
  .intro-screen{transition:none}
  .intro-mark,.intro-brand span,.intro-center p,.intro-progress i,.intro-screen.is-leaving .intro-center{transition:none!important}
  .intro-screen.is-ready .intro-mark{opacity:1;transform:none}
  .intro-screen.is-ready .intro-brand span{transform:none}
  .intro-screen.is-ready .intro-center p{opacity:1;transform:none}
  .intro-screen.is-ready .intro-progress i{width:100%;animation:none}
  .intro-screen.is-leaving{clip-path:none;opacity:0}
  .intro-complete .hero .reveal{animation:none}
}

@media (max-width:430px){
  .intro-center{padding-inline:0}
  .intro-brand{font-size:clamp(64px,17vw,92px)}
  .intro-topline,.intro-bottomline{font-size:7px;gap:10px}
  .intro-bottomline{grid-template-columns:auto 1fr;}
  .intro-progress{grid-column:1/-1;margin-inline-start:0;margin-top:10px}
  .intro-index{display:none}
}

/* 2.2.4 — Client-first homepage + longer cinematic opening */
.hero-kicker-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  max-width:820px;
}
.hero-edition{
  color:rgba(248,245,237,.38);
  font-size:8px;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
  white-space:nowrap;
}
.hero-proof-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  max-width:820px;
  margin-top:48px;
  border-top:1px solid rgba(255,255,255,.14);
  border-bottom:1px solid rgba(255,255,255,.14);
}
.hero-proof-grid>div{
  min-height:110px;
  padding:16px 18px 16px 0;
  border-right:1px solid rgba(255,255,255,.11);
}
html[dir="rtl"] .hero-proof-grid>div{
  padding:16px 0 16px 18px;
  border-right:0;
  border-left:1px solid rgba(255,255,255,.11);
}
.hero-proof-grid>div:last-child{border-right:0}
html[dir="rtl"] .hero-proof-grid>div:last-child{border-left:0}
.hero-proof-grid b{
  display:block;
  color:var(--gold-soft);
  font-size:9px;
  letter-spacing:.12em;
}
.hero-proof-grid strong{
  display:block;
  margin-top:14px;
  color:#f8f5ed;
  font-size:13px;
  line-height:1.2;
}
.hero-proof-grid span{
  display:block;
  margin-top:7px;
  max-width:22ch;
  color:rgba(248,245,237,.43);
  font-size:9px;
  line-height:1.55;
}
.hero-scrollcue{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:24px;
  color:rgba(248,245,237,.4);
  font-size:8px;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.hero-scrollcue i{
  display:block;
  width:38px;
  height:1px;
  background:rgba(248,245,237,.26);
  position:relative;
  overflow:hidden;
}
.hero-scrollcue i::after{
  content:"";
  position:absolute;
  inset:0;
  background:var(--gold-soft);
  transform:translateX(-100%);
  animation:scrollCue 2.6s ease-in-out infinite;
}
html[dir="rtl"] .hero-scrollcue i::after{transform:translateX(100%)}
.hero-photo-wrap .hero-photo-eager{width:100%;height:100%;object-fit:cover;transition:transform 1.5s var(--ease),filter .8s var(--ease);}
.hero-photo-wrap:hover .hero-photo-eager{transform:scale(1.055)}
.hero-photo-label{
  position:absolute;
  top:18px;
  left:18px;
  z-index:3;
  display:flex;
  flex-direction:column;
  gap:3px;
  padding:10px 12px;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(11,21,14,.34);
  color:#fff;
  backdrop-filter:blur(12px);
}
html[dir="rtl"] .hero-photo-label{left:auto;right:18px}
.hero-photo-label span{font-size:7px;letter-spacing:.16em;text-transform:uppercase;color:rgba(255,255,255,.55)}
.hero-photo-label strong{font-size:11px}

/* Opening sequence: intentionally slower and more layered than 2.2.3. */
.intro-screen{transition:clip-path 1.25s cubic-bezier(.77,0,.18,1),opacity .6s ease;}
.intro-center{transition:transform 1s var(--ease),opacity .55s ease;}
.intro-mark{transition:opacity .8s var(--ease),transform 1s var(--ease);}
.intro-brand span{transition:transform 1.35s cubic-bezier(.16,.76,.18,1);}
.intro-brand span+span{transition-delay:.18s}
.intro-center p{transition:opacity 1s ease .72s,transform 1s var(--ease) .72s}
.intro-progress i{width:100%;transform:scaleX(0);transform-origin:left center;animation:introProgress var(--intro-duration,4600ms) linear forwards;transition:none;box-shadow:0 0 8px rgba(226,195,139,.28)}
.intro-screen.is-playing .intro-mark{opacity:1;transform:none}
.intro-screen.is-playing .intro-brand span{transform:none}
.intro-screen.is-playing .intro-center p{opacity:1;transform:none}
.intro-screen.is-playing .intro-progress i{width:100%;transform:scaleX(0);animation:introProgress var(--intro-duration,4600ms) linear forwards}
.intro-screen.is-ready .intro-progress i{width:100%;transform:scaleX(1);animation:none}
.intro-screen.is-leaving{clip-path:inset(0 0 100% 0)}
.intro-screen.is-leaving .intro-center{transform:translateY(-8vh) scale(.985);opacity:.7}
@keyframes introProgress{
  from{transform:scaleX(0);opacity:.55}
  to{transform:scaleX(1);opacity:1}
}
@keyframes scrollCue{
  0%{transform:translateX(-120%);opacity:.2}
  45%{transform:translateX(0);opacity:1}
  70%,100%{transform:translateX(120%);opacity:0}
}

/* Client-facing copy is dominant; internal website-process language is not. */
.craft-feature p,.story-copy>p:not(.story-quote),.section-heading>p{max-width:58ch}

@media (max-width:720px){
  .hero{padding-top:108px;padding-bottom:60px}
  .hero-kicker-row{align-items:flex-start}
  .hero-edition{font-size:7px}
  .hero-proof-grid{grid-template-columns:1fr;margin-top:32px}
  .hero-proof-grid>div,html[dir="rtl"] .hero-proof-grid>div{
    min-height:auto;
    padding:13px 0;
    border-left:0;
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.11);
  }
  .hero-proof-grid>div:last-child{border-bottom:0}
  .hero-proof-grid strong{margin-top:7px;font-size:12px}
  .hero-proof-grid span{font-size:8px;max-width:none}
  .hero-scrollcue{margin-top:18px}
  .hero-photo-wrap{aspect-ratio:4/5;min-height:430px}
  .hero-photo-label{top:12px;right:12px;left:auto}
  html[dir="rtl"] .hero-photo-label{left:12px;right:auto}
  .intro-screen{padding:18px 18px 22px}
  .intro-screen::before{inset:5% 4%}
  .intro-topline,.intro-bottomline{font-size:7px;grid-template-columns:1fr auto;gap:10px}
  .intro-center{padding-inline:4px}
  .intro-brand{font-size:clamp(56px,18vw,92px);line-height:.84}
  .intro-mark{width:48px;height:48px;margin-bottom:16px}
  .intro-center p{font-size:12px;margin-top:18px}
  .intro-index{right:14px;font-size:7px}
  html[dir="rtl"] .intro-index{right:auto;left:14px}
  .hero h1{max-width:100%;font-size:clamp(44px,13.2vw,72px);line-height:1.02;letter-spacing:-.055em}
  html[dir="rtl"] .hero h1{max-width:100%;font-size:clamp(40px,12.7vw,66px);line-height:1.14;letter-spacing:-.035em;text-wrap:balance}
  html[dir="rtl"] .hero-lead{max-width:36ch;font-size:14px;line-height:1.85}
}

@media (max-width:430px){
  html[dir="rtl"] .hero h1{font-size:clamp(37px,11.9vw,52px);line-height:1.18}
  .hero-proof-grid b{font-size:8px}
  .hero-proof-grid strong{font-size:11px}
  .hero-proof-grid span{font-size:7.5px}
  .intro-brand{font-size:clamp(50px,17.5vw,76px)}
}

@media (prefers-color-scheme:light){
  .hero-proof-grid{border-color:rgba(255,255,255,.14)}
}

@media (prefers-reduced-motion:reduce){
  .intro-screen,.intro-center,.intro-mark,.intro-brand span,.intro-center p,.intro-progress i{transition:none!important;animation:none!important}
  .hero-scrollcue i::after{animation:none}
  .hero-photo-wrap .hero-photo-eager{transition:none!important}
}

/* 2.2.5 — Heritage luxury layer: cinematic opening + premium homepage polish */
:root{
  --brass:#c7a15b;
  --brass-soft:#e2c38b;
  --ink-warm:#efe9db;
  --olive-deep:#263429;
  --sand:#e7dcc8;
}

/* Give the first interaction a tactile Moroccan geometry without introducing
   heavy assets or WebGL. The pattern stays very low contrast and adapts to theme. */
.intro-motif{
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.2;
  background:
    linear-gradient(45deg,transparent 48.8%,rgba(199,161,91,.18) 49%,rgba(199,161,91,.18) 51.2%,transparent 51.4%) 0 0/88px 88px,
    linear-gradient(-45deg,transparent 48.8%,rgba(199,161,91,.12) 49%,rgba(199,161,91,.12) 51.2%,transparent 51.4%) 0 0/88px 88px;
  mask-image:radial-gradient(circle at 50% 48%,#000 0 34%,transparent 74%);
}
.intro-rule{
  display:flex;
  align-items:center;
  gap:12px;
  width:min(420px,80vw);
  margin-bottom:18px;
  color:var(--intro-muted);
  font-size:8px;
  letter-spacing:.22em;
  text-transform:uppercase;
  opacity:0;
  transform:translateY(8px);
  transition:opacity 1s ease .48s,transform 1s var(--ease) .48s;
}
.intro-rule i{height:1px;flex:1;background:var(--intro-line)}
.intro-rule span{white-space:nowrap;color:var(--gold-soft)}
.intro-promise{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:18px;
  color:var(--intro-muted);
  font-size:9px;
  opacity:0;
  transform:translateY(8px);
  transition:opacity .9s ease 1.15s,transform .9s var(--ease) 1.15s;
}
.intro-promise b{color:var(--gold-soft);font-weight:500}
.intro-mark span{display:block;transform:rotate(0deg) scale(.8);transition:transform 1s var(--ease)}
.intro-screen.is-playing .intro-rule,
.intro-screen.is-ready .intro-rule{opacity:1;transform:none}
.intro-screen.is-playing .intro-promise,
.intro-screen.is-ready .intro-promise{opacity:1;transform:none}
.intro-screen[data-phase="2"] .intro-rule{transform:translateX(-6px)}
.intro-screen[data-phase="3"] .intro-rule{transform:translateX(6px)}
.intro-screen.is-playing .intro-mark span{transform:rotate(45deg) scale(1)}
.intro-screen.is-ready .intro-mark span{transform:rotate(90deg) scale(1)}
.intro-skip{
  position:absolute;
  inset-inline-end:clamp(22px,4vw,52px);
  bottom:clamp(56px,7vw,86px);
  z-index:4;
  border:0;
  padding:7px 0;
  background:transparent;
  color:var(--intro-muted);
  font-size:8px;
  cursor:pointer;
  opacity:0;
  transform:translateY(6px);
  transition:opacity .45s ease,transform .45s var(--ease),color .3s ease;
}
.intro-skip span{margin-inline-start:5px;color:var(--gold-soft)}
.intro-skip:hover{color:var(--intro-ink)}
.intro-screen.skip-ready .intro-skip{opacity:1;transform:none}

/* Hero: a quieter luxury rhythm, with a signature line that communicates
   provenance before the visitor reaches the collection. */
.hero{
  isolation:isolate;
  background:
    radial-gradient(circle at 78% 22%,rgba(199,161,91,.09),transparent 24%),
    linear-gradient(180deg,#0b120d 0%,#0d1710 66%,#0a110c 100%);
}
.hero::after{
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(226,195,139,.45),transparent);
  opacity:.5;
}
.hero-copy{max-width:760px}
.hero h1{
  font-weight:760;
  text-wrap:balance;
}
.hero h1::after{
  content:"";
  display:block;
  width:68px;
  height:1px;
  margin-top:26px;
  background:var(--gold-soft);
  opacity:.65;
}
.hero-signature{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:9px;
  margin-top:18px;
  color:rgba(248,245,237,.46);
  font-size:9px;
  line-height:1.6;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.hero-signature b{color:var(--gold-soft);font-weight:500}
.hero-photo-wrap{
  box-shadow:0 42px 100px rgba(0,0,0,.34);
  transform:translateZ(0);
}
.hero-photo-wrap::before{inset:18px;border-color:rgba(255,255,255,.22)}
.hero-photo-wrap::after{
  background:
    linear-gradient(180deg,transparent 45%,rgba(6,14,9,.48) 100%),
    linear-gradient(135deg,rgba(255,255,255,.06),transparent 38%);
}
.hero-photo-wrap .hero-photo-eager{filter:saturate(.94) contrast(1.02);transform:scale(1.045);}
body.intro-complete .hero-photo-wrap .hero-photo-eager{animation:heroPhotoSettle 2.2s var(--ease) both}
@keyframes heroPhotoSettle{from{transform:scale(1.06)}to{transform:scale(1)}}

.hero-marker{
  border:1px solid rgba(11,25,17,.06);
  background:linear-gradient(135deg,#e2c38b,#caa56b);
}
.hero-photo-label{
  background:rgba(6,14,9,.3);
  border-color:rgba(226,195,139,.28);
}
.hero-proof-grid strong{font-weight:650}
.hero-scrollcue{margin-top:28px}

/* Content sections use more editorial breathing room and less component-like
   repetition. The existing DOM and data bindings remain untouched. */
.section-heading{margin-bottom:78px}
.section-heading h2{font-weight:720}
.story-quote{font-weight:500}
.story-copy>p:not(.story-quote){color:#59635b}
.craft-section{background:linear-gradient(180deg,#121d16,#101913)}
.craft-feature{
  background:linear-gradient(160deg,rgba(199,161,91,.07),transparent 48%);
}
.products-section{background:linear-gradient(180deg,#e9e1d2,#e3d7c3)}
.product-card{background:transparent;box-shadow:none}
.product-media{border:1px solid rgba(20,25,22,.14);box-shadow:0 18px 45px rgba(34,30,20,.08)}
.product-body{padding-inline:2px}
.product-body h3{font-weight:700}
.origin-box{box-shadow:0 35px 90px rgba(12,25,16,.18)}
.origin-stamp{letter-spacing:.16em}
.contact-section{background:#0a110d}

/* More deliberate entrance choreography after the intro: hero text and image
   move independently rather than appearing as a generic fade. */
body.intro-complete .hero .hero-kicker-row{animation:heroCopyIn .95s var(--ease) .02s both}
body.intro-complete .hero h1{animation:heroTitleIn 1.2s cubic-bezier(.16,.75,.18,1) .08s both}
body.intro-complete .hero .hero-lead{animation:heroCopyIn .9s var(--ease) .24s both}
body.intro-complete .hero .hero-signature{animation:heroCopyIn .85s var(--ease) .32s both}
body.intro-complete .hero .cta-row{animation:heroCopyIn .85s var(--ease) .42s both}
body.intro-complete .hero .hero-proof-grid{animation:heroCopyIn .9s var(--ease) .52s both}
body.intro-complete .hero .hero-scrollcue{animation:heroCopyIn .75s var(--ease) .66s both}
body.intro-complete .hero .hero-stage{animation:heroStageIn 1.35s cubic-bezier(.16,.75,.18,1) .12s both}
@keyframes heroCopyIn{from{opacity:0;transform:translateY(22px)}to{opacity:1;transform:none}}
@keyframes heroTitleIn{from{opacity:0;transform:translateY(38px) scale(.985);clip-path:inset(0 0 20% 0)}to{opacity:1;transform:none;clip-path:inset(0)}}
@keyframes heroStageIn{from{opacity:0;transform:translateY(30px) scale(.985)}to{opacity:1;transform:none}}

/* Light-system tuning: retain the brand character while giving the phone a
   true paper / brass / olive palette rather than simply inverting colors. */
@media (prefers-color-scheme:light){
  .hero{background:linear-gradient(180deg,#142017 0%,#172319 72%,#111b14 100%)}
  .hero-signature{color:rgba(248,245,237,.52)}
  .products-section{background:linear-gradient(180deg,#eee5d5,#e7dbc8)}
}

/* Arabic typography: avoid tall one-word stacks on narrow screens while
   preserving a strong typographic silhouette. */
@media (max-width:720px){
  .intro-center{align-items:center;text-align:center;padding-inline:18px}
  .intro-rule{width:min(310px,76vw);margin-bottom:14px}
  .intro-brand{font-size:clamp(58px,17.5vw,96px);line-height:.82;letter-spacing:-.06em}
  .intro-center p{font-size:12px;max-width:28ch}
  .intro-promise{font-size:8px;gap:8px}
  .intro-skip{inset-inline-end:18px;bottom:calc(74px + env(safe-area-inset-bottom))}

  .hero{padding-top:calc(104px + env(safe-area-inset-top));padding-bottom:56px}
  [dir="rtl"] .hero h1{
    max-width:100%;
    font-size:clamp(42px,11.1vw,58px);
    line-height:1.16;
    letter-spacing:-.015em;
  }
  [dir="rtl"] .hero h1::after{margin-top:20px}
  [dir="rtl"] .hero-signature{font-size:8px;letter-spacing:0;line-height:1.8}
  [dir="rtl"] .hero-signature b{display:none}
  .hero-proof-grid{margin-top:28px}
  .hero-photo-wrap{aspect-ratio:1 / 1.12}
  .hero-marker{width:auto;min-width:150px;max-width:68%;}
  .hero-photo-label{padding:8px 10px}
  .section-heading{margin-bottom:48px}
  [dir="rtl"] .section-heading h2{font-size:clamp(34px,9.4vw,50px);line-height:1.16}
}

@media (max-width:430px){
  .intro-screen{padding-inline:16px}
  .intro-brand{font-size:clamp(52px,17vw,78px)}
  .intro-center p{font-size:11px}
  .intro-promise{font-size:7.5px}
  [dir="rtl"] .hero h1{font-size:clamp(38px,10.8vw,52px);line-height:1.2}
  [dir="rtl"] .hero-lead{font-size:13px;line-height:1.9}
  [dir="rtl"] .hero-signature{font-size:7.5px}
  .hero-marker{right:10px!important;left:auto!important;bottom:10px;width:max-content;min-width:138px}
}

@media (prefers-reduced-motion:reduce){
  .intro-rule,.intro-promise,.intro-mark span,.intro-skip,
  .intro-skip::before,.intro-progress i,
  body.intro-complete .hero .hero-kicker-row,
  body.intro-complete .hero h1,
  body.intro-complete .hero .hero-lead,
  body.intro-complete .hero .hero-signature,
  body.intro-complete .hero .cta-row,
  body.intro-complete .hero .hero-proof-grid,
  body.intro-complete .hero .hero-scrollcue,
  body.intro-complete .hero .hero-stage,
  body.intro-complete .hero-photo-wrap .hero-photo-eager{animation:none!important;transition:none!important;opacity:1!important;transform:none!important;clip-path:none!important}
}

/* 2.2.6 — Ultra-luxury client-first refinement + language-safe home shortcut */
:root{
  --luxury-black:#080d09;
  --luxury-deep:#0d1710;
  --luxury-gold:#d7b56f;
  --luxury-ivory:#f7f2e8;
}

/* A more composed first viewport: less marketing density, more desirability. */
.hero-copy{max-width:780px}
.hero-kicker-row{margin-bottom:2px}
.hero h1{max-width:10.5ch;font-size:clamp(62px,8.15vw,116px);line-height:.92;letter-spacing:-.065em}
.hero h1 em{color:var(--luxury-gold)}
.hero-lead{max-width:56ch;color:rgba(248,245,237,.66)}
.cta-row{gap:12px;margin-top:30px}
.btn{min-height:50px;padding-inline:20px;font-size:10px;letter-spacing:.06em}
.btn-primary{background:linear-gradient(135deg,#e3c88e,#c8a45d);box-shadow:0 16px 38px rgba(0,0,0,.22),inset 0 1px 0 rgba(255,255,255,.25)}
.btn-primary:hover{background:linear-gradient(135deg,#ead39e,#d3af69);transform:translateY(-3px)}
.btn-secondary{background:rgba(255,255,255,.018);border-color:rgba(226,195,139,.25)}
.btn-secondary:hover{background:rgba(226,195,139,.07);border-color:rgba(226,195,139,.42)}
.hero-proof-grid{margin-top:42px;backdrop-filter:blur(4px)}
.hero-proof-grid strong{font-size:12px;letter-spacing:.01em}
.hero-proof-grid span{font-size:8px;line-height:1.65}
.hero-photo-wrap{border-color:rgba(226,195,139,.22);box-shadow:0 46px 120px rgba(0,0,0,.42)}
.hero-photo-wrap::before{inset:16px;border-color:rgba(226,195,139,.28)}
.hero-photo-label{background:rgba(6,14,9,.24);border-color:rgba(226,195,139,.32);box-shadow:0 12px 28px rgba(0,0,0,.12)}

/* Home shortcut is always a true compact pill and localizes with the site. */
.back-home{
  min-width:106px;
  justify-content:center;
  white-space:nowrap;
  padding-inline:13px;
  border-color:rgba(199,161,91,.24);
  background:rgba(248,245,237,.94);
}
.back-home strong{font-size:8px;font-weight:800;letter-spacing:.06em}
.back-home span{line-height:1}
html[dir="rtl"] .back-home{left:var(--gutter);right:auto}
html[dir="ltr"] .back-home{right:var(--gutter);left:auto}

/* More editorial section titles. */
.section-heading{margin-bottom:72px}
.section-heading h2{line-height:.96}
.story-quote{font-family:Georgia,"Times New Roman",serif;color:#1d281f}
.product-body h3{font-size:21px}

/* Extended cinematic pacing: the transition itself should feel intentional,
   not like a loader. The actual minimum remains finite and skippable. */
.intro-screen{transition:clip-path .95s cubic-bezier(.77,0,.18,1),opacity .45s ease}
.intro-center{transition:transform 1.2s var(--ease),opacity .65s ease}
.intro-screen.is-leaving .intro-center{transform:translateY(-10vh) scale(.975);opacity:.62}
.intro-screen::before{inset:7%;border-color:rgba(226,195,139,.15)}
.intro-motif{opacity:.24}
.intro-rule{width:min(480px,84vw)}
.intro-brand{letter-spacing:-.07em}
.intro-progress{margin-inline-start:22px}
.intro-skip{
  padding-inline:8px;
  bottom:calc(clamp(56px,7vw,86px) + env(safe-area-inset-bottom));
  outline:none;
}
.intro-skip::before{
  content:"";
  position:absolute;
  inset:-9px -12px;
  border:1px solid rgba(226,195,139,.24);
  border-radius:999px;
  opacity:0;
  transform:scale(.88);
  pointer-events:none;
}
.intro-screen.skip-ready .intro-skip::before{
  opacity:1;
  animation:signaturePulse 2.8s ease-out infinite;
}
.intro-skip:focus-visible{
  color:var(--intro-ink);
  outline:1px solid rgba(226,195,139,.55);
  outline-offset:5px;
  border-radius:999px;
}
@keyframes signaturePulse{
  0%{transform:scale(.88);opacity:0}
  18%{opacity:.65}
  62%,100%{transform:scale(1.08);opacity:0}
}

@media (max-width:720px){
  .back-home{min-width:96px;right:12px;left:auto;bottom:14px;padding-inline:11px}
  html[dir="rtl"] .back-home{left:12px;right:auto}
  .hero h1{max-width:100%;font-size:clamp(42px,11.2vw,60px);line-height:1.12;letter-spacing:-.02em}
  html[dir="rtl"] .hero h1{max-width:100%;font-size:clamp(40px,10.9vw,56px);line-height:1.18;letter-spacing:-.012em}
  .hero-lead{max-width:34ch;font-size:13.5px;line-height:1.9}
  .hero-proof-grid{margin-top:30px}
  .hero-proof-grid>div{padding-block:14px}
  .hero-photo-wrap{aspect-ratio:1 / 1.09;min-height:420px}
  .hero-photo-wrap::before{inset:10px}
  .hero-stage{margin-top:10px}
  .section-heading{margin-bottom:46px}
  .section-heading h2{font-size:clamp(34px,9.5vw,50px)}
  html[dir="rtl"] .back-home strong{font-size:7.5px}
}

@media (max-width:430px){
  .back-home{min-width:90px}
  html[dir="rtl"] .hero h1{font-size:clamp(37px,10.4vw,51px);line-height:1.19}
  .hero-lead{font-size:12.8px}
}

@media (prefers-reduced-motion:reduce){
  .back-home{transition:none!important}
}

/* 2.2.7 — Gallery cinema + interaction cleanup */
.gallery-section{overflow:clip}
.gallery-section .section-heading{align-items:end}
.gallery-section .section-heading h2{max-width:13ch}
.gallery{
  position:relative;
  display:grid;
  grid-template-columns:repeat(12,minmax(0,1fr));
  grid-auto-rows:clamp(105px,8.25vw,148px);
  gap:12px;
}
.gallery-item{
  position:relative;
  min-width:0;
  overflow:hidden;
  isolation:isolate;
  background:linear-gradient(145deg,#ddd2bf,#b9aa91);
  border:1px solid rgba(31,39,31,.11);
  box-shadow:0 16px 42px rgba(27,34,27,.07);
  transition:opacity .8s var(--ease),transform 1s var(--ease),box-shadow .55s var(--ease),border-color .55s var(--ease);
}
.gallery-item.gallery-item-1{grid-column:1 / span 7;grid-row:span 6}
.gallery-item.gallery-item-2{grid-column:8 / span 5;grid-row:span 4}
.gallery-item.gallery-item-3{grid-column:8 / span 5;grid-row:span 3}
.gallery-item.gallery-item-4{grid-column:1 / span 4;grid-row:span 4}
.gallery-item.gallery-item-5{grid-column:5 / span 8;grid-row:span 4}
.gallery-item.gallery-item-6{grid-column:1 / span 4;grid-row:span 3}
.gallery-item.gallery-item-7{grid-column:5 / span 4;grid-row:span 3}
.gallery-item.gallery-item-8{grid-column:9 / span 4;grid-row:span 3}
.gallery-open{
  position:relative;
  display:block;
  width:100%;
  height:100%;
  min-height:100%;
  padding:0;
  border:0;
  background:transparent;
  overflow:hidden;
  color:inherit;
  text-align:inherit;
  cursor:zoom-in;
}
.gallery-open:focus-visible{outline:2px solid var(--gold);outline-offset:-2px}
.gallery-item img{
  width:calc(100% + 28px);
  height:calc(100% + 28px);
  max-width:none;
  margin:-14px;
  object-fit:cover;
  object-position:center;
  transform:translate3d(calc(var(--gallery-x,0px)),calc(var(--gallery-shift,0%) + var(--gallery-y,0px)),0) scale(var(--gallery-scale,1));
  filter:saturate(.96) contrast(1.01);
  transition:transform 1.35s cubic-bezier(.16,.78,.15,1),filter .8s var(--ease);
  will-change:transform;
}
.gallery-item:hover{border-color:rgba(189,147,80,.35);box-shadow:0 24px 60px rgba(22,30,24,.15)}
.gallery-item:hover img{transform:translate3d(calc(var(--gallery-x,0px)),calc(var(--gallery-shift,0%) + var(--gallery-y,0px)),0) scale(1.075);filter:saturate(1.04) contrast(1.035)}
.gallery-sheen{
  position:absolute;
  inset:-10% -30%;
  z-index:1;
  pointer-events:none;
  background:linear-gradient(105deg,transparent 38%,rgba(255,255,255,.18) 50%,transparent 62%);
  transform:translateX(-60%) rotate(4deg);
  opacity:0;
}
.gallery-item:hover .gallery-sheen{opacity:1;animation:gallerySheen 1.15s cubic-bezier(.22,.61,.36,1) both}
@keyframes gallerySheen{to{transform:translateX(60%) rotate(4deg)}}
.gallery-item::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:linear-gradient(180deg,rgba(7,15,10,.02) 35%,rgba(5,11,8,.68) 100%);
}
.gallery-meta{
  position:absolute;
  left:16px;
  right:16px;
  bottom:14px;
  z-index:3;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:10px;
  color:#fff;
}
.gallery-meta b{font-size:9px;letter-spacing:.12em;font-variant-numeric:tabular-nums}
.gallery-meta i{height:1px;background:rgba(255,255,255,.38);min-width:20px}
.gallery-meta em{font-style:normal;font-size:9px;font-weight:700;letter-spacing:.05em;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:24ch}
.gallery-open-icon{
  position:absolute;
  top:14px;
  right:14px;
  z-index:3;
  display:grid;
  place-items:center;
  width:32px;
  height:32px;
  border:1px solid rgba(255,255,255,.28);
  border-radius:50%;
  color:#fff;
  background:rgba(8,15,10,.24);
  backdrop-filter:blur(12px);
  font-size:12px;
  opacity:.86;
  transition:transform .45s var(--ease),background .45s var(--ease),border-color .45s var(--ease);
}
.gallery-item:hover .gallery-open-icon{transform:translateY(-2px) rotate(3deg);background:rgba(8,15,10,.4);border-color:rgba(231,203,147,.52)}
.gallery-empty{
  display:grid;
  gap:9px;
  min-height:170px;
  align-content:center;
  padding:24px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  color:var(--muted);
}
.gallery-empty strong{font-size:20px;line-height:1.3;color:var(--ink)}
.gallery-empty span{font-size:12px;line-height:1.8;max-width:46ch}

/* Premium gallery lightbox: quiet, image-first, keyboard accessible. */
body.gallery-open{overflow:hidden}
.gallery-lightbox[hidden]{display:none}
.gallery-lightbox{
  position:fixed;
  inset:0;
  z-index:110;
  display:grid;
  place-items:center;
  padding:clamp(18px,4vw,54px);
  animation:galleryOverlayIn .45s var(--ease) both;
}
.gallery-lightbox-backdrop{position:absolute;inset:0;background:rgba(4,8,5,.82);backdrop-filter:blur(18px)}
.gallery-lightbox-panel{
  position:relative;
  z-index:1;
  width:min(1320px,100%);
  height:min(90vh,900px);
  display:grid;
  grid-template-columns:52px minmax(0,1fr) 52px;
  align-items:center;
  gap:18px;
}
.gallery-lightbox-media{position:relative;display:grid;place-items:center;min-width:0;height:100%}
.gallery-lightbox-media img{width:100%;height:100%;object-fit:contain;filter:saturate(.98);animation:galleryImageIn .65s var(--ease) both}
.gallery-lightbox-caption{position:absolute;left:18px;bottom:18px;display:grid;gap:5px;padding:10px 13px;border:1px solid rgba(255,255,255,.16);background:rgba(7,13,9,.38);backdrop-filter:blur(14px);color:#fff;max-width:min(80%,520px)}
.gallery-lightbox-caption span{font-size:8px;letter-spacing:.14em;color:rgba(255,255,255,.58);font-variant-numeric:tabular-nums}
.gallery-lightbox-caption strong{font-size:12px;line-height:1.45}
.gallery-close,.gallery-prev,.gallery-next{
  position:relative;
  z-index:2;
  width:46px;
  height:46px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:50%;
  background:rgba(9,16,11,.42);
  color:#fff;
  cursor:pointer;
  backdrop-filter:blur(12px);
  transition:transform .35s var(--ease),background .35s var(--ease),border-color .35s var(--ease),color .35s var(--ease);
}
.gallery-close{position:absolute;top:-2px;right:0;font-size:25px;font-weight:300;line-height:1}
.gallery-prev,.gallery-next{justify-self:center}
.gallery-close:hover,.gallery-prev:hover,.gallery-next:hover{transform:translateY(-2px);background:rgba(198,161,91,.18);border-color:rgba(216,186,130,.5);color:#f0d9a2}
@keyframes galleryOverlayIn{from{opacity:0}to{opacity:1}}
@keyframes galleryImageIn{from{opacity:0;transform:scale(.985)}to{opacity:1;transform:none}}

/* The home shortcut should read as a jewel-like control, not a white utility chip. */
.back-home{
  background:linear-gradient(135deg,rgba(10,24,15,.97),rgba(24,40,28,.94));
  color:#f8f2e7;
  border-color:rgba(216,186,130,.44);
  box-shadow:0 16px 38px rgba(7,17,10,.28),inset 0 1px 0 rgba(255,255,255,.08);
}
.back-home::before{content:"";width:3px;height:3px;border-radius:50%;background:var(--gold-soft);box-shadow:0 0 10px rgba(216,186,130,.55)}
.back-home span{color:var(--gold-soft)}
.back-home:hover{background:linear-gradient(135deg,rgba(17,34,22,.98),rgba(34,52,38,.96));border-color:rgba(216,186,130,.62);box-shadow:0 20px 44px rgba(7,17,10,.34),inset 0 1px 0 rgba(255,255,255,.1)}

@media (max-width:980px){
  .gallery{grid-auto-rows:clamp(98px,13vw,132px);gap:10px}
  .gallery-item.gallery-item-1{grid-column:1 / span 7;grid-row:span 5}
  .gallery-item.gallery-item-2{grid-column:8 / span 5;grid-row:span 3}
  .gallery-item.gallery-item-3{grid-column:8 / span 5;grid-row:span 2}
  .gallery-item.gallery-item-4{grid-column:1 / span 4;grid-row:span 3}
  .gallery-item.gallery-item-5{grid-column:5 / span 8;grid-row:span 3}
  .gallery-item.gallery-item-6,.gallery-item.gallery-item-7,.gallery-item.gallery-item-8{grid-column:span 4;grid-row:span 3}
  .gallery-lightbox-panel{height:min(82vh,760px);grid-template-columns:44px minmax(0,1fr) 44px;gap:10px}
}

@media (max-width:720px){
  .gallery-section .section-heading h2{max-width:100%}
  .gallery{grid-template-columns:repeat(2,minmax(0,1fr));grid-auto-rows:38vw;gap:9px}
  .gallery-item.gallery-item-1{grid-column:1 / -1;grid-row:span 4}
  .gallery-item.gallery-item-2,.gallery-item.gallery-item-3,.gallery-item.gallery-item-4,.gallery-item.gallery-item-6,.gallery-item.gallery-item-7,.gallery-item.gallery-item-8{grid-column:span 1;grid-row:span 2}
  .gallery-item.gallery-item-5{grid-column:1 / -1;grid-row:span 3}
  .gallery-meta{left:11px;right:11px;bottom:10px;gap:7px}
  .gallery-meta em{font-size:8px;max-width:20ch}
  .gallery-open-icon{top:10px;right:10px;width:29px;height:29px;font-size:11px}
  .gallery-lightbox{padding:12px}
  .gallery-lightbox-panel{height:80vh;grid-template-columns:38px minmax(0,1fr) 38px;gap:5px}
  .gallery-close{top:8px;right:8px;width:40px;height:40px}
  .gallery-prev,.gallery-next{width:38px;height:38px}
  .gallery-lightbox-caption{left:10px;right:10px;bottom:10px;max-width:none}
  .gallery-lightbox-caption strong{font-size:11px}
}

@media (prefers-color-scheme:dark){
  .gallery-item{background:linear-gradient(145deg,#2a2a24,#1b1c18);border-color:rgba(235,225,208,.1);box-shadow:0 16px 44px rgba(0,0,0,.24)}
  .gallery-empty{border-color:var(--line)}
  .gallery-empty strong{color:var(--ink)}
}

@media (prefers-reduced-motion:reduce){
  .gallery-item,.gallery-item img,.gallery-open-icon,.gallery-lightbox,.gallery-lightbox-media img,.gallery-close,.gallery-prev,.gallery-next,.gallery-sheen,.back-home{animation:none!important;transition:none!important}
  .gallery-item:hover img,.gallery-item img{transform:none!important}
}
.gallery-item.media-failed{display:none}


/* 2.2.8 — quiet luxury presentation layer */
:root{
  --forest:#18221b;
  --forest-2:#222d25;
  --olive:#7d8777;
  --sage:#b8b9aa;
  --gold:#9b7444;
  --gold-soft:#c3a370;
  --cream:#ece8de;
  --paper:#f5f1e8;
  --ink:#1c211d;
  --muted:#6f746d;
  --line:rgba(28,33,29,.13);
  --dark-line:rgba(245,241,232,.14);
  --section-y:clamp(96px,12vw,176px);
}
html{scroll-padding-top:84px;background:var(--cream)}
body{background:var(--cream);color:var(--ink)}
body::before{opacity:.022}

/* Quiet navigation: no floating glass unless the viewport needs it. */
.site-header{background:transparent}
.nav-shell{
  border:0;
  border-bottom:1px solid rgba(20,25,22,.11);
  border-radius:0;
  background:rgba(236,232,222,.88);
  box-shadow:none;
  backdrop-filter:blur(16px) saturate(110%);
}
.nav-shell::after{display:none}
.desktop-nav a{font-size:10px;letter-spacing:.03em}
.desktop-nav a::after{height:1px;background:var(--gold);bottom:-7px}
.brand-icon{border-radius:50%;border:1px solid currentColor;background:transparent;box-shadow:none}
.brand-copy strong{letter-spacing:-.03em}
.brand-copy small{color:var(--muted)}

/* Hero: less decorative, more editorial. */
.hero{background:var(--forest);color:#f4f0e7;min-height:100svh;padding-top:132px;padding-bottom:70px}
.hero::before{width:50vw;height:50vw;max-width:680px;max-height:680px;right:-18vw;top:-22vw;background:radial-gradient(circle,rgba(160,128,79,.14),transparent 70%)}
.hero-grid{grid-template-columns:minmax(0,1fr) minmax(440px,5fr);gap:clamp(48px,8vw,128px);align-items:center}
html[dir="rtl"] .hero-grid{grid-template-columns:minmax(440px,5fr) minmax(0,1fr)}
.hero-copy{max-width:680px}
.eyebrow,.kicker{color:#c6ab79;font-size:9px;letter-spacing:.16em;font-weight:700}
.eyebrow::before,.kicker::before{width:26px;opacity:.55}
.hero h1{font-size:clamp(58px,7vw,104px);line-height:.94;letter-spacing:-.065em;font-weight:650;margin:24px 0 26px;max-width:8.8ch}
.hero h1 em{color:#d1b788;font-style:normal}
.hero-lead{max-width:45ch;color:rgba(244,240,231,.68);font-size:15px;line-height:1.85}
.hero-signature{margin-top:26px;padding-top:15px;border-top:1px solid rgba(244,240,231,.12);color:rgba(244,240,231,.46);font-size:9px}
.cta-row{gap:10px}
.btn{min-height:42px;border-radius:999px;padding:0 17px;border-width:1px;font-size:9px;letter-spacing:.06em;box-shadow:none;transition:transform .45s var(--ease),background .45s var(--ease),border-color .45s var(--ease),color .45s var(--ease)}
.btn-primary{background:#e5ddcc;color:var(--forest);border-color:#e5ddcc}
.btn-primary:hover{background:#f0eadf;color:#162018;transform:translateY(-2px)}
.btn-secondary{background:transparent;color:#efe9dc;border-color:rgba(239,233,220,.25)}
.btn-secondary:hover{border-color:rgba(195,163,112,.65);background:rgba(195,163,112,.08);transform:translateY(-2px)}
.hero-proof-grid{margin-top:44px;border-color:rgba(244,240,231,.12)}
.hero-proof-grid>div{min-height:96px;border-color:rgba(244,240,231,.10);padding:14px 16px 14px 0}
html[dir="rtl"] .hero-proof-grid>div{padding:14px 0 14px 16px;border-left-color:rgba(244,240,231,.10)}
.hero-proof-grid b{color:#c4a36f;font-size:8px}
.hero-proof-grid strong{font-size:12px;font-weight:600}
.hero-proof-grid span{color:rgba(244,240,231,.4);font-size:8px}
.hero-scrollcue{margin-top:22px;color:rgba(244,240,231,.36)}
.hero-photo-wrap{border-radius:0;box-shadow:0 26px 80px rgba(5,10,7,.24)}
.hero-photo-wrap::before{border:1px solid rgba(224,202,161,.24);transform:translate(14px,14px)}
.hero-photo-wrap::after{background:linear-gradient(180deg,rgba(9,16,11,0) 45%,rgba(9,16,11,.5) 100%)}
.hero-photo-label,.hero-marker{border-radius:0;background:rgba(17,26,20,.3);border-color:rgba(255,255,255,.16);box-shadow:none}
.hero-marker{padding:13px 14px}
.hero-index{font-size:8px;letter-spacing:.18em;color:rgba(255,255,255,.45)}

/* Sections: wider breathing room and fewer obvious cards. */
.section-heading{grid-template-columns:minmax(0,1fr) minmax(280px,5fr);gap:clamp(36px,8vw,120px);align-items:end}
html[dir="rtl"] .section-heading{grid-template-columns:minmax(280px,5fr) minmax(0,1fr)}
.section-heading h2{font-size:clamp(54px,6.4vw,92px);line-height:.96;letter-spacing:-.06em;font-weight:620;color:var(--ink)}
.section-heading>p{font-size:14px;line-height:1.95;color:var(--muted);max-width:42ch}
.light-section,.products-section{background:var(--paper)}
.story-grid{gap:clamp(42px,9vw,130px);align-items:start}
.media-card{border-radius:0;background:#d9d1c1;box-shadow:none;min-height:680px}
.media-card::after{background:linear-gradient(180deg,rgba(10,14,10,0) 44%,rgba(10,14,10,.58) 100%)}
.media-card img{transform:scale(1.01);transition:transform 1.4s var(--ease),filter 1s var(--ease);filter:saturate(.92)}
.media-card:hover img{transform:scale(1.035);filter:saturate(1)}
.story-quote{font-size:clamp(34px,4.7vw,68px);line-height:1.02;letter-spacing:-.055em;color:var(--forest);max-width:9ch}
.story-copy>p:not(.story-quote){font-size:14px;line-height:2;color:var(--muted);max-width:52ch}
.steps{grid-template-columns:repeat(4,minmax(0,1fr));border-top:1px solid var(--line)}
.step{padding:16px 14px 0 0;border-right:0;border-bottom:0;position:relative}
.step::before{content:"";position:absolute;inset:0 auto 0 0;width:1px;background:var(--line)}
html[dir="rtl"] .step{padding:16px 0 0 14px}
html[dir="rtl"] .step::before{inset:0 0 0 auto}
.step b{color:var(--gold);font-size:8px}
.step strong{font-size:11px;font-weight:650}
.step span{font-size:8px;color:var(--muted)}

/* Dark section reads as an atelier / evening counter rather than a card grid. */
.dark-section{background:#202920;color:#f3eee5}
.dark-section .section-heading h2{color:#f2eee5}
.dark-section .section-heading>p{color:rgba(242,238,229,.56)}
.craft-grid{gap:clamp(40px,8vw,110px)}
.craft-feature{background:transparent;border:0;border-top:1px solid rgba(242,238,229,.16);padding-top:22px;min-height:520px}
.craft-feature h3{font-size:clamp(48px,5.8vw,88px);line-height:.95;letter-spacing:-.06em;font-weight:600}
.craft-feature p,.craft-stack p{color:rgba(242,238,229,.54)}
.craft-stack>article{padding:18px 0;border-color:rgba(242,238,229,.12)}
.craft-num{color:#c5a670}
.craft-stack h4{font-size:16px;font-weight:600}

/* Collection: product information is intentionally quieter than the image. */
.product-grid{grid-template-columns:repeat(12,minmax(0,1fr));gap:20px;margin-top:54px}
.product-card{grid-column:span 4;border-radius:0;background:transparent;border:0;border-top:1px solid var(--line);box-shadow:none;overflow:hidden}
.product-card:nth-child(1){grid-column:span 7}
.product-card:nth-child(2){grid-column:span 5}
.product-card:nth-child(n+3){grid-column:span 4}
.product-media{border:0;border-radius:0;background:#ddd5c5;aspect-ratio:1.25/1;box-shadow:none}
.product-body{padding:16px 0 4px}
.product-meta{font-size:7px;color:var(--muted);letter-spacing:.13em}
.product-body h3{font-size:22px;line-height:1.1;font-weight:600;letter-spacing:-.03em}
.product-body p{font-size:11px;line-height:1.8;color:var(--muted)}
.pack-tag{border:1px solid var(--line);border-radius:999px;color:var(--gold);background:transparent}
.editorial-empty{padding:54px 0;min-height:210px;border-color:var(--line)}
.editorial-empty strong{font-size:24px;font-weight:600}
.editorial-empty>span:last-child{font-size:12px;max-width:48ch}

/* Origin image becomes a full-bleed visual pause. */
.origin-box{min-height:76vh;border-radius:0;box-shadow:none}
.origin-bg{transform:scale(1.02);filter:saturate(.88)}
.origin-shade{background:linear-gradient(90deg,rgba(10,18,12,.76),rgba(10,18,12,.18) 62%,rgba(10,18,12,.45))}
[dir="rtl"] .origin-shade{background:linear-gradient(270deg,rgba(10,18,12,.76),rgba(10,18,12,.18) 62%,rgba(10,18,12,.45))}
.origin-content{max-width:620px;padding:clamp(32px,5vw,72px)}
.origin-content h2{font-size:clamp(58px,7vw,108px);font-weight:600;letter-spacing:-.06em}
.origin-content>p{max-width:42ch;font-size:14px;line-height:1.95;color:rgba(255,255,255,.68)}
.origin-pills{gap:7px}
.origin-pills .pill{border-radius:999px;background:rgba(18,26,19,.28);border:1px solid rgba(255,255,255,.15);font-size:8px}
.origin-stamp{font-size:8px;letter-spacing:.16em;color:rgba(255,255,255,.45)}

/* Gallery is an editorial wall, not a card grid. */
.gallery{gap:14px;grid-auto-rows:clamp(118px,11vw,148px)}
.gallery-item{border-radius:0;border:1px solid rgba(28,33,29,.1);background:#ded6c7;box-shadow:none}
.gallery-item::after{background:linear-gradient(180deg,transparent 40%,rgba(4,9,6,.58) 100%)}
.gallery-item img{filter:saturate(.9) contrast(1);transition:transform 1.55s cubic-bezier(.16,.78,.15,1),filter 1.2s var(--ease)}
.gallery-item:hover{border-color:rgba(155,116,68,.38);box-shadow:0 18px 50px rgba(22,30,24,.10)}
.gallery-item:hover img{transform:translate3d(calc(var(--gallery-x,0px)),calc(var(--gallery-shift,0%) + var(--gallery-y,0px)),0) scale(1.035);filter:saturate(.98)}
.gallery-sheen{display:none}
.gallery-meta{left:14px;right:14px;bottom:12px}
.gallery-meta b{font-size:8px;color:rgba(255,255,255,.75)}
.gallery-meta i{background:rgba(255,255,255,.28)}
.gallery-meta em{font-size:8px;color:rgba(255,255,255,.83)}
.gallery-open-icon{border-radius:50%;width:30px;height:30px;background:rgba(17,23,18,.18);border-color:rgba(255,255,255,.24);box-shadow:none}
.gallery-open-icon:hover{background:rgba(17,23,18,.3)}
.gallery-empty{min-height:210px;padding:48px 0}
.gallery-empty strong{font-size:24px;font-weight:600}
.gallery-empty span{max-width:46ch;font-size:12px}
.gallery-lightbox-backdrop{background:rgba(8,11,9,.9);backdrop-filter:blur(16px)}
.gallery-lightbox-panel{height:min(92vh,920px)}
.gallery-lightbox-caption{border:0;border-top:1px solid rgba(255,255,255,.18);background:rgba(7,13,9,.2);backdrop-filter:none;padding:11px 0;color:#fff}
.gallery-close,.gallery-prev,.gallery-next{border-radius:0;background:transparent;border-color:rgba(255,255,255,.2);box-shadow:none}
.gallery-close:hover,.gallery-prev:hover,.gallery-next:hover{background:rgba(255,255,255,.04);border-color:rgba(195,163,112,.55)}

/* Quiet contact: one invitation, not a dashboard. */
.contact-section{background:#172019}
.contact-main h2{max-width:10ch;font-size:clamp(56px,6.7vw,98px);font-weight:600;letter-spacing:-.06em}
.contact-main p,.contact-direct p{color:rgba(245,241,233,.6);font-size:13px;line-height:1.95}
.contact-direct{border-color:rgba(245,241,233,.15)}
.contact-direct h3{font-size:22px;font-weight:600}
.contact-links a,.social-link{border-color:rgba(245,241,233,.14);background:transparent;box-shadow:none;border-radius:0}
.contact-links a:hover,.social-link:hover{background:rgba(255,255,255,.04);border-color:rgba(195,163,112,.46);transform:none}
.site-footer{background:#111812;border-top:1px solid rgba(245,241,233,.11);padding:26px var(--gutter)}

/* Return-home: compact, balanced, directional, never a white floating block. */
.back-home{
  right:auto;
  left:var(--gutter);
  bottom:max(20px,env(safe-area-inset-bottom));
  min-width:118px;
  min-height:42px;
  padding:0 14px;
  display:flex;
  flex-direction:row;
  align-items:center;
  justify-content:center;
  gap:8px;
  border:1px solid rgba(196,163,112,.42);
  border-radius:999px;
  background:rgba(24,34,27,.94);
  color:#eee8dd;
  box-shadow:0 12px 30px rgba(6,12,8,.20);
  backdrop-filter:blur(14px);
  opacity:0;
  transform:translateY(10px);
}
[dir="rtl"] .back-home{left:auto;right:var(--gutter)}
.back-home::before{display:none}
.back-home span{color:#c4a36f;font-size:15px;line-height:1}
.back-home strong{font-size:8px;font-weight:700;letter-spacing:.06em}
.back-home:hover{background:#203026;border-color:rgba(196,163,112,.7);box-shadow:0 16px 36px rgba(6,12,8,.25);transform:translateY(-2px)}
.back-home:focus-visible{outline:2px solid #c4a36f;outline-offset:3px}

/* System theme: preserve the same quiet proportions in light and dark modes. */
@media (prefers-color-scheme:light){
  html,body{background:var(--cream)}
  .nav-shell{background:rgba(236,232,222,.9);border-bottom-color:rgba(28,33,29,.10)}
  .desktop-nav a,.brand{color:var(--ink)}
  .back-home{background:rgba(245,241,232,.96);color:var(--forest);border-color:rgba(122,92,51,.28);box-shadow:0 12px 26px rgba(40,38,30,.10)}
  .back-home:hover{background:#ece5d7;border-color:rgba(122,92,51,.42)}
  .back-home span{color:#946f3f}
}
@media (prefers-color-scheme:dark){
  html,body{background:#151a16}
  .site-header{color:#efeae0}
  .nav-shell{background:rgba(22,28,23,.92);border-bottom-color:rgba(239,234,224,.12)}
  .desktop-nav a,.brand{color:#efeae0}
  .light-section,.products-section{background:#1b201c;color:#eee9df}
  .section-heading h2,.story-quote{color:#eee9df}
  .section-heading>p,.story-copy>p:not(.story-quote),.product-body p,.step span,.muted{color:#a9aea5}
  .line,.product-card,.step{border-color:rgba(239,234,224,.13)}
  .product-media,.gallery-item,.media-card{background:#262a25}
  .back-home{background:rgba(24,31,26,.95);color:#eee9df;border-color:rgba(195,163,112,.46)}
  .back-home:hover{background:#29362c}
}

/* Arabic typography: calmer display rhythm, no narrow artificial wrapping. */
[dir="rtl"] .hero h1,[dir="rtl"] .section-heading h2,[dir="rtl"] .origin-content h2,[dir="rtl"] .contact-main h2,[dir="rtl"] .craft-feature h3{
  font-weight:600;
  letter-spacing:-.025em;
  line-height:1.12;
  max-width:none;
}
[dir="rtl"] .hero-lead,[dir="rtl"] .section-heading>p,[dir="rtl"] .story-copy>p:not(.story-quote){line-height:2}

@media (max-width:980px){
  .hero-grid,html[dir="rtl"] .hero-grid{grid-template-columns:1fr;gap:54px}
  .hero-copy{max-width:760px}
  .hero-stage{justify-content:flex-start}
  .section-heading,html[dir="rtl"] .section-heading{grid-template-columns:1fr;gap:22px}
  .media-card{min-height:600px}
  .product-card,.product-card:nth-child(1),.product-card:nth-child(2),.product-card:nth-child(n+3){grid-column:span 6}
}
@media (max-width:720px){
  .site-header{padding:0 12px}
  .nav-shell{min-height:56px;height:56px;padding:5px 7px;border:1px solid rgba(28,33,29,.11);border-radius:18px;background:rgba(236,232,222,.93)}
  .hero{padding-top:96px;padding-bottom:52px}
  .hero h1{font-size:clamp(42px,11vw,62px);line-height:1.12}
  .hero-lead{font-size:13px}
  .hero-proof-grid{grid-template-columns:1fr;margin-top:32px}
  .hero-proof-grid>div,html[dir="rtl"] .hero-proof-grid>div{padding:12px 0;border-left:0;border-right:0;border-bottom:1px solid rgba(244,240,231,.10)}
  .hero-proof-grid>div:last-child{border-bottom:0}
  .hero-photo-wrap{aspect-ratio:4/5;min-height:0}
  .section-heading h2{font-size:clamp(38px,10vw,56px);line-height:1.1}
  .story-grid{gap:34px}
  .media-card{min-height:460px}
  .steps{grid-template-columns:1fr 1fr}
  .step{padding-top:14px}
  .product-grid{grid-template-columns:1fr 1fr;gap:14px}
  .product-card,.product-card:nth-child(1),.product-card:nth-child(2),.product-card:nth-child(n+3){grid-column:span 1}
  .product-card:nth-child(1){grid-column:1/-1}
  .product-body h3{font-size:18px}
  .origin-box{min-height:640px}
  .origin-content{width:100%;max-width:none;padding:24px 20px 28px}
  .origin-content h2{font-size:clamp(44px,12vw,64px)}
  .gallery{grid-template-columns:1fr 1fr;grid-auto-rows:42vw;gap:8px}
  .gallery-item.gallery-item-1{grid-column:1/-1;grid-row:span 3}
  .gallery-item.gallery-item-5{grid-column:1/-1}
  .back-home{left:14px;right:auto;bottom:max(14px,env(safe-area-inset-bottom));min-width:108px;min-height:40px}
  [dir="rtl"] .back-home{left:auto;right:14px}
}
@media (prefers-reduced-motion:reduce){
  .back-home:hover{transform:none}
  .gallery-item:hover{box-shadow:none}
}


/* 2.2.9 — gallery cinema: tighter masonry + restrained 3D depth */
.gallery{
  display:block;
  columns:3 280px;
  column-gap:12px;
  perspective:1600px;
  perspective-origin:50% 35%;
  margin-inline:auto;
}
.gallery-item{
  display:block;
  width:100%;
  height:auto;
  margin:0 0 12px;
  break-inside:avoid;
  -webkit-column-break-inside:avoid;
  position:relative;
  overflow:hidden;
  transform-style:preserve-3d;
  transform:perspective(1500px)
    translate3d(0,var(--gallery-y,0px),var(--gallery-z,0px))
    rotateX(var(--gallery-rot-x,0deg))
    rotateY(var(--gallery-rot-y,0deg))
    scale(var(--gallery-item-scale,1));
  will-change:transform;
  transition:
    transform 900ms cubic-bezier(.16,.78,.15,1),
    box-shadow 700ms var(--ease),
    border-color 500ms var(--ease);
}
.gallery-item button.gallery-open{
  aspect-ratio:4/3;
  min-height:0;
}
.gallery-item-1 button.gallery-open{aspect-ratio:4/5}
.gallery-item-2 button.gallery-open{aspect-ratio:4/3}
.gallery-item-3 button.gallery-open{aspect-ratio:5/4}
.gallery-item-4 button.gallery-open{aspect-ratio:4/5}
.gallery-item-5 button.gallery-open{aspect-ratio:16/10}
.gallery-item-6 button.gallery-open{aspect-ratio:4/3}
.gallery-item-7 button.gallery-open{aspect-ratio:5/4}
.gallery-item-8 button.gallery-open{aspect-ratio:4/3}
.gallery-item::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  background:linear-gradient(140deg,rgba(255,255,255,.06),transparent 34%,transparent 72%,rgba(11,18,13,.12));
  opacity:.9;
}
.gallery-item::after{
  transition:opacity .7s var(--ease);
}
.gallery-item:hover{
  transform:perspective(1500px) translate3d(var(--gallery-x,0px),-4px,24px) rotateX(-.8deg) rotateY(var(--gallery-hover-y,0deg)) scale(1.008);
  z-index:4;
  box-shadow:0 28px 70px rgba(22,30,24,.16);
}
.gallery-item img{
  transform:translate3d(var(--gallery-x,0px),var(--gallery-shift,0%),calc(var(--gallery-img-z,0px))) scale(var(--gallery-scale,1.035));
  transition:transform 1.35s cubic-bezier(.16,.78,.15,1), filter 900ms var(--ease);
  transform-origin:center;
  backface-visibility:hidden;
}
.gallery-item:hover img{
  transform:translate3d(var(--gallery-x,0px),calc(var(--gallery-shift,0%) + var(--gallery-y,0px)),18px) scale(1.075);
  filter:saturate(1.045) contrast(1.03);
}
.gallery-meta{transform:translateZ(16px)}
.gallery-open-icon{transform:translateZ(22px)}
.gallery-item.media-failed{display:none}

@media (max-width:980px){
  .gallery{columns:2 260px;column-gap:10px;perspective:1300px}
  .gallery-item{margin-bottom:10px}
}
@media (max-width:720px){
  .gallery{columns:1;column-gap:0;perspective:1100px}
  .gallery-item{margin-bottom:10px}
  .gallery-item button.gallery-open{aspect-ratio:16/11}
  .gallery-item-1 button.gallery-open{aspect-ratio:4/5}
  .gallery-item-4 button.gallery-open{aspect-ratio:4/5}
  .gallery-item-5 button.gallery-open{aspect-ratio:16/10}
}

@media (prefers-reduced-motion:reduce){
  .gallery,.gallery-item{perspective:none!important}
  .gallery-item,.gallery-item:hover{
    transform:none!important;
    transition:none!important;
  }
  .gallery-item img,.gallery-item:hover img{transform:none!important;transition:none!important}
}


/* 2.2.10 — professional media system: cinematic playback, clear hierarchy, restrained controls */
.hero-video-wrap,.story-video-shell,.gallery-video-shell{isolation:isolate}
.hero-video-control,.story-video-play,.gallery-video-play{
  appearance:none;border:1px solid rgba(255,255,255,.22);background:rgba(7,13,9,.52);color:#fff;
  width:44px;height:44px;border-radius:50%;display:grid;place-items:center;cursor:pointer;
  backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);box-shadow:0 12px 28px rgba(0,0,0,.16);
  transition:transform .35s var(--ease),background .35s var(--ease),border-color .35s var(--ease),opacity .35s var(--ease);
}
.hero-video-control span,.story-video-play span,.gallery-video-play span{font-size:12px;line-height:1;transform:translateX(1px)}
.hero-video-control{position:absolute;right:22px;bottom:22px;z-index:5}
[dir="rtl"] .hero-video-control{right:auto;left:22px}
.hero-video-control:hover,.story-video-play:hover,.gallery-video-play:hover{transform:translateY(-2px) scale(1.03);background:rgba(27,51,39,.72);border-color:rgba(231,203,147,.5)}
.hero-video-control.is-paused{border-color:rgba(231,203,147,.48)}
.story-video-shell{position:absolute;inset:0;background:#08110c;overflow:hidden}
.story-video{width:100%;height:100%;display:block;object-fit:cover;background:#08110c}
.story-video-shell::after{content:"";position:absolute;inset:0;pointer-events:none;background:linear-gradient(180deg,rgba(4,8,5,.06),transparent 45%,rgba(4,8,5,.42));z-index:1}
.story-video-play{position:absolute;left:20px;bottom:20px;z-index:3;width:50px;height:50px;border-color:rgba(231,203,147,.46);background:rgba(11,24,17,.64)}
[dir="rtl"] .story-video-play{left:auto;right:20px}
.video-media-card .media-caption{z-index:5}
.video-media-card .media-caption strong,.video-media-card .media-caption span{position:relative}
.gallery-video-play{position:absolute;left:14px;bottom:14px;z-index:5;width:42px;height:42px;opacity:.95}
[dir="rtl"] .gallery-video-play{left:auto;right:14px}
.gallery-video-item.is-playing .gallery-video-play{opacity:.65}
.gallery-video-item .gallery-video{transition:filter .5s var(--ease),transform 1s var(--ease)}
.gallery-video-item:hover .gallery-video{transform:scale(1.018);filter:saturate(1.03) contrast(1.02)}
.gallery-video-item .gallery-video-badge{z-index:6}
.media-card.video-media-card{position:relative;overflow:hidden;background:#08110c;min-height:680px}
.media-card.video-media-card::after{z-index:2}
@media (max-width:980px){.media-card.video-media-card{min-height:600px}}
@media (max-width:720px){
  .media-card.video-media-card{min-height:460px}
  .hero-video-control{right:14px;bottom:14px;width:40px;height:40px}
  [dir="rtl"] .hero-video-control{right:auto;left:14px}
  .story-video-play{left:14px;bottom:14px;width:44px;height:44px}
  [dir="rtl"] .story-video-play{left:auto;right:14px}
  .gallery-video-play{left:10px;bottom:10px;width:40px;height:40px}
  [dir="rtl"] .gallery-video-play{left:auto;right:10px}
}
@media (prefers-reduced-motion:reduce){
  .hero-video-control,.story-video-play,.gallery-video-play{transition:none}
  .gallery-video-item:hover .gallery-video{transform:none}
}

/* 2.2.11 — Signature Intro UX + premium media interaction layer */
.intro-screen{padding-top:calc(clamp(22px,4vw,48px) + env(safe-area-inset-top));padding-bottom:calc(clamp(22px,4vw,40px) + env(safe-area-inset-bottom));}
.intro-skip{min-height:36px;display:inline-flex;align-items:center;justify-content:center;gap:4px;touch-action:manipulation;-webkit-tap-highlight-color:transparent;}
.intro-skip::after{content:"";position:absolute;inset:-8px -16px;border:1px solid rgba(226,195,139,.10);border-radius:999px;opacity:.0;transition:opacity .35s ease;}
.intro-screen.skip-ready .intro-skip:hover::after,.intro-screen.skip-ready .intro-skip:focus-visible::after{opacity:1;}
.intro-screen.is-returning .intro-brand span{transition-duration:.58s}
.intro-screen.is-returning .intro-center p{transition-delay:.1s}

.media-player{position:relative;overflow:hidden;isolation:isolate;--media-ui-bg:rgba(5,12,8,.66);--media-ui-line:rgba(255,255,255,.16);--media-ui-text:rgba(255,255,255,.90);}
.media-player::before{content:"";position:absolute;inset:0;z-index:1;pointer-events:none;background:linear-gradient(180deg,rgba(4,8,5,.08),transparent 52%,rgba(4,8,5,.46));opacity:.9;transition:opacity .4s ease;}
.media-player.is-playing::before{opacity:.72}
.media-ui{position:absolute;left:14px;right:14px;bottom:12px;z-index:8;display:grid;grid-template-columns:minmax(70px,auto) minmax(70px,1fr) auto;grid-template-rows:auto auto;align-items:center;gap:7px 10px;padding:9px 10px;border:1px solid var(--media-ui-line);border-radius:16px;background:var(--media-ui-bg);backdrop-filter:blur(16px) saturate(1.08);-webkit-backdrop-filter:blur(16px) saturate(1.08);box-shadow:0 16px 34px rgba(0,0,0,.18);opacity:.96;transition:transform .35s var(--ease),opacity .35s ease,border-color .35s ease;}
.media-ui-state{font-size:8px;letter-spacing:.11em;text-transform:uppercase;color:rgba(255,255,255,.56);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.media-ui-time{font-size:8px;letter-spacing:.08em;color:rgba(255,255,255,.62);font-variant-numeric:tabular-nums;white-space:nowrap;}
.media-ui-progress{grid-column:1/-1;width:100%;height:3px;margin:0;accent-color:var(--gold-soft);cursor:pointer;opacity:.88;}
.media-ui-toolbar{display:flex;align-items:center;gap:6px;justify-content:flex-end;grid-column:1/-1;}
.media-ui-btn{appearance:none;width:31px;height:31px;padding:0;border:1px solid rgba(255,255,255,.13);border-radius:50%;display:grid;place-items:center;background:rgba(255,255,255,.045);color:var(--media-ui-text);cursor:pointer;font:inherit;-webkit-tap-highlight-color:transparent;transition:transform .25s var(--ease),background .25s ease,border-color .25s ease,color .25s ease;}
.media-ui-btn span{font-size:9px;line-height:1;}
.media-ui-btn:hover,.media-ui-btn:focus-visible{transform:translateY(-1px);background:rgba(31,59,45,.72);border-color:rgba(231,203,147,.42);outline:none;}
.media-ui-btn.is-active{background:rgba(189,147,80,.18);border-color:rgba(231,203,147,.48);color:#f2d69b;}
.media-ui-btn:active{transform:translateY(0) scale(.97);}
.media-player.is-loading .media-ui{border-color:rgba(226,195,139,.18)}
.media-player.has-error{background:#100f0b}
.media-player.has-error .media-ui-state{color:#dfbc7b}
.hero-video-wrap .media-ui{display:none}
.hero-video-wrap .hero-video-control{z-index:10;}
.hero-video-wrap:focus-within .hero-video-control{border-color:rgba(231,203,147,.48)}
.gallery-video-shell .media-ui,.story-video-shell .media-ui{opacity:0;transform:translateY(8px);pointer-events:none;}
.gallery-video-shell:hover .media-ui,.gallery-video-shell:focus-within .media-ui,.gallery-video-shell.media-controls-visible .media-ui,.story-video-shell:hover .media-ui,.story-video-shell:focus-within .media-ui,.story-video-shell.media-controls-visible .media-ui{opacity:.98;transform:none;pointer-events:auto;}
.story-video-shell.media-player .story-video-play,.gallery-video-shell.media-player .gallery-video-play{z-index:9;}
.story-video-shell.media-player.is-playing .story-video-play,.gallery-video-shell.media-player.is-playing .gallery-video-play{opacity:0;pointer-events:none;}
.story-video-shell .media-ui,.gallery-video-shell .media-ui{left:12px;right:12px;bottom:10px;}
.gallery-video-shell .media-ui{grid-template-columns:minmax(50px,1fr) auto;}
.gallery-video-shell .media-ui-toolbar{grid-column:auto;grid-row:1/-1;}
.gallery-video-shell .media-ui-progress{grid-column:1/-1;}
.gallery-video-shell .media-ui-state{display:none;}

.gallery-lightbox-media{overflow:hidden;border-radius:3px;}
.gallery-lightbox-media img{cursor:zoom-in;transform-origin:center center;touch-action:none;transition:transform .35s var(--ease),opacity .3s ease;will-change:transform;}
.gallery-lightbox-media img.is-zoomed{cursor:grab;}
.gallery-lightbox-media img.is-zoomed:active{cursor:grabbing;}
.gallery-media-tools{position:absolute;right:16px;top:16px;z-index:5;display:flex;gap:6px;padding:6px;border:1px solid rgba(255,255,255,.14);border-radius:999px;background:rgba(7,13,9,.35);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);}
[dir="rtl"] .gallery-media-tools{right:auto;left:16px;}
.gallery-media-tool{width:30px;height:30px;display:grid;place-items:center;border:1px solid rgba(255,255,255,.13);border-radius:50%;background:rgba(255,255,255,.04);color:#fff;cursor:pointer;font:inherit;font-size:11px;transition:transform .25s var(--ease),background .25s ease,border-color .25s ease;}
.gallery-media-tool:hover,.gallery-media-tool:focus-visible{transform:translateY(-1px);background:rgba(30,53,41,.72);border-color:rgba(231,203,147,.46);outline:none;}

@media (max-width:720px){
  .intro-screen{padding-inline:16px;}
  .media-ui{left:9px;right:9px;bottom:8px;border-radius:13px;padding:8px;}
  .media-ui-btn{width:29px;height:29px;}
  .media-ui-state{max-width:14ch;}
  .gallery-media-tools{right:10px;top:10px;}
  [dir="rtl"] .gallery-media-tools{right:auto;left:10px;}
}
@media (hover:none){
  .gallery-video-shell .media-ui,.story-video-shell .media-ui{opacity:0;transform:translateY(8px);pointer-events:none;}
  .gallery-video-shell.media-controls-visible .media-ui,.story-video-shell.media-controls-visible .media-ui,.gallery-video-shell:focus-within .media-ui,.story-video-shell:focus-within .media-ui{opacity:.98;transform:none;pointer-events:auto;}
}
@media (prefers-reduced-motion:reduce){
  .intro-screen.skip-ready .intro-skip::before{animation:none;}
  .media-ui,.media-ui-btn,.gallery-media-tool,.gallery-lightbox-media img{transition:none!important;}
  .gallery-video-shell .media-ui,.story-video-shell .media-ui{opacity:0;transform:translateY(8px);pointer-events:none;}
  .gallery-video-shell.media-controls-visible .media-ui,.story-video-shell.media-controls-visible .media-ui,.gallery-video-shell:focus-within .media-ui,.story-video-shell:focus-within .media-ui{opacity:.98;transform:none;pointer-events:auto;}
}


/* 2.2.13 — Dynamic media reader + editorial hero */
.hero-stage{align-items:center}
.hero-media-reader.hero-video-wrap{
  width:min(100%,680px);
  aspect-ratio:16 / 10;
  min-height:0;
  border-radius:2px;
  border-color:rgba(231,203,147,.20);
  box-shadow:0 34px 90px rgba(0,0,0,.32),0 0 0 1px rgba(255,255,255,.03) inset;
  transform:translateZ(0);
}
.hero-media-reader.hero-video-wrap::before{inset:12px;border-color:rgba(255,255,255,.12)}
.hero-media-reader.hero-video-wrap::after{background:linear-gradient(180deg,rgba(6,12,8,.03) 32%,rgba(6,12,8,.18) 62%,rgba(6,12,8,.72) 100%)}
.hero-media-reader .hero-video{object-position:center;transition:transform 1.2s var(--ease),filter .7s var(--ease)}
.hero-media-reader:hover .hero-video{transform:scale(1.018);filter:saturate(1.04) contrast(1.02)}
.hero-media-badge{
  position:absolute;top:18px;left:18px;z-index:8;display:flex;align-items:center;gap:9px;
  min-height:30px;padding:7px 10px;border:1px solid rgba(255,255,255,.18);border-radius:999px;
  background:rgba(7,13,9,.34);color:#fff;backdrop-filter:blur(14px) saturate(1.05);-webkit-backdrop-filter:blur(14px);
  box-shadow:0 12px 24px rgba(0,0,0,.14);pointer-events:none;
}
.hero-media-badge::before{content:"";width:6px;height:6px;border-radius:50%;background:var(--gold-soft);box-shadow:0 0 0 4px rgba(231,203,147,.10)}
.hero-media-badge span{font-size:7px;font-weight:900;letter-spacing:.15em;text-transform:uppercase;color:rgba(255,255,255,.64)}
.hero-media-badge b{font-size:8px;letter-spacing:.10em;color:#fff}
.hero-media-reader .hero-index{top:22px}
.hero-media-reader .hero-marker{bottom:70px}
.hero-media-reader .hero-photo-label{top:60px}
.hero-media-reader .media-ui{display:grid;left:16px;right:16px;bottom:16px;opacity:0;transform:translateY(8px)}
.hero-media-reader:hover .media-ui,.hero-media-reader:focus-within .media-ui,.hero-media-reader.is-playing .media-ui{opacity:.98;transform:none}
.hero-media-reader .media-ui-toolbar{justify-content:flex-end;flex-wrap:wrap}
.hero-media-reader .media-ui-btn{width:32px;height:32px}
.hero-video-control{bottom:22px}
.hero-media-reader.is-playing .hero-video-control{opacity:.12}
.hero-media-reader:hover .hero-video-control,.hero-media-reader:focus-within .hero-video-control{opacity:1}

.media-player{container-type:inline-size}
.media-ui{grid-template-columns:auto minmax(90px,1fr) auto;}
.media-ui-toolbar{gap:5px;overflow-x:auto;scrollbar-width:none}
.media-ui-toolbar::-webkit-scrollbar{display:none}
.media-ui-btn.media-ui-seekback,.media-ui-btn.media-ui-seekforward{width:auto;min-width:38px;border-radius:999px;padding:0 8px;font-size:8px;letter-spacing:-.02em}
.media-ui-btn.media-ui-share{margin-inline-start:2px}
.media-player .media-ui-progress{height:4px;border-radius:999px}
.gallery-video-shell.media-player{background:#07110c}
.gallery-video-shell.media-player .gallery-video{object-fit:cover;transition:transform 1s var(--ease),filter .45s var(--ease)}
.gallery-video-shell.media-player:hover .gallery-video{transform:scale(1.022);filter:saturate(1.03) contrast(1.02)}
.gallery-video-item.is-featured-video{grid-column:span 7;grid-row:span 5}
.gallery-video-item.is-featured-video .gallery-video-badge{display:none}
.gallery-video-item.is-featured-video::before{content:"FEATURED";position:absolute;top:14px;left:14px;z-index:7;padding:7px 9px;border:1px solid rgba(231,203,147,.34);border-radius:999px;background:rgba(7,13,9,.54);color:#f4e0b0;font-size:7px;font-weight:900;letter-spacing:.17em;backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px)}
.gallery-meta{position:absolute;left:16px;right:16px;bottom:14px;z-index:7;display:flex;align-items:center;gap:9px;pointer-events:none;transition:transform .35s var(--ease),opacity .35s ease}
.gallery-meta b{font-size:8px;letter-spacing:.13em;color:rgba(255,255,255,.62)}
.gallery-meta i{display:block;width:24px;height:1px;background:rgba(255,255,255,.30)}
.gallery-meta em{font-size:8px;font-style:normal;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.74)}
.gallery-video-item:hover .gallery-meta{transform:translateY(-34px)}
.gallery-video-item .media-ui{bottom:10px}
.gallery-video-item .gallery-video-play{z-index:10}

@container (max-width:420px){
  .media-ui{grid-template-columns:1fr auto}
  .media-ui-time{grid-column:1/-1;grid-row:2}
  .media-ui-progress{grid-column:1/-1;grid-row:3}
  .media-ui-toolbar{grid-column:1/-1;grid-row:1;justify-content:space-between}
}

@media (max-width:980px){
  .hero-media-reader.hero-video-wrap{width:min(100%,680px);aspect-ratio:16/10}
  .hero-media-reader .hero-marker{bottom:64px;left:14px}
  html[dir="rtl"] .hero-media-reader .hero-marker{left:auto;right:14px}
  .gallery-video-item.is-featured-video{grid-column:span 6;grid-row:span 5}
}
@media (max-width:720px){
  .hero-media-reader.hero-video-wrap{width:100%;aspect-ratio:4/5;min-height:430px}
  .hero-media-badge{top:12px;left:12px}
  html[dir="rtl"] .hero-media-badge{left:auto;right:12px}
  .hero-media-reader .hero-photo-label{top:54px}
  .hero-media-reader .hero-marker{bottom:62px}
  .hero-media-reader .media-ui{left:9px;right:9px;bottom:9px}
  .hero-video-control{bottom:60px;right:14px}
  [dir="rtl"] .hero-video-control{right:auto;left:14px}
  .gallery-video-item.is-featured-video{grid-column:1/-1;grid-row:span 4}
  .gallery-video-item:hover .gallery-meta{transform:none}
  .gallery-video-item .media-ui{opacity:.96;transform:none}
}
@media (max-width:430px){
  .hero-media-reader.hero-video-wrap{min-height:360px}
  .hero-media-reader .hero-marker{width:150px;padding:11px}
  .hero-media-reader .hero-photo-label{display:none}
  .hero-media-badge{top:10px}
}
@media (prefers-reduced-motion:reduce){
  .hero-media-reader .hero-video,.gallery-video-shell.media-player .gallery-video{transition:none!important;transform:none!important;filter:none!important}
  .hero-media-reader .media-ui{opacity:.98;transform:none}
  .gallery-video-item:hover .gallery-meta{transform:none}
}


/* 2.2.14 — Media reader format refinement */
.hero-media-reader.hero-video-wrap,
.gallery-video-shell.media-player,
.story-video-shell.media-player{
  background:#090e0b;
  isolation:isolate;
}
.hero-media-reader.hero-video-wrap{
  aspect-ratio:16/10;
  min-height:clamp(420px,62vh,720px);
  border-radius:2px;
}
.hero-media-reader .hero-video,
.gallery-video-shell.media-player .gallery-video,
.story-video-shell.media-player .story-video{
  object-fit:contain;
  object-position:center;
  background:#090e0b;
}
.hero-media-reader .hero-video{height:100%;}
.media-player::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:radial-gradient(circle at 50% 12%,rgba(255,255,255,.07),transparent 38%),linear-gradient(180deg,rgba(0,0,0,.06) 0%,transparent 34%,rgba(0,0,0,.24) 100%);
}
.media-player.is-loading::before{opacity:.72;}
.media-player.has-error::after{
  content:"";
  position:absolute;
  inset:50% auto auto 50%;
  width:min(72%,360px);
  height:1px;
  transform:translate(-50%,-50%);
  background:rgba(231,203,147,.32);
  box-shadow:0 0 0 1px rgba(255,255,255,.03);
  pointer-events:none;
}
.media-ui{
  z-index:12;
  transition:opacity .28s ease,transform .28s ease,bottom .28s ease;
}
.media-ui-progress{
  height:4px;
  accent-color:var(--gold-soft);
  cursor:pointer;
}
.media-ui-toolbar{gap:6px;}
.media-ui-btn{
  border-radius:999px;
  backdrop-filter:blur(12px) saturate(1.15);
  -webkit-backdrop-filter:blur(12px) saturate(1.15);
}
.hero-media-reader .media-ui{
  background:linear-gradient(180deg,rgba(7,13,9,.04),rgba(7,13,9,.82));
  padding:34px 10px 8px;
  border-radius:0 0 2px 2px;
}
.hero-media-reader .media-ui-progress{width:100%;}
.gallery-video-item .gallery-video-badge{pointer-events:none;}
.gallery-video-item .media-player .media-ui{opacity:0;transform:translateY(10px);}
.gallery-video-item .media-player:hover .media-ui,
.gallery-video-item .media-player:focus-within .media-ui,
.gallery-video-item .media-player.is-playing .media-ui{opacity:.98;transform:none;}
@media (max-width:980px){
  .hero-media-reader.hero-video-wrap{min-height:0;aspect-ratio:16/10;}
}
@media (max-width:720px){
  .hero-media-reader.hero-video-wrap{aspect-ratio:16/11;min-height:0;}
  .hero-media-reader .media-ui{left:8px;right:8px;bottom:8px;padding:30px 8px 6px;}
  .media-ui-toolbar{gap:4px;}
  .media-ui-btn{width:34px;height:34px;}
  .gallery-video-item .media-player .media-ui{opacity:.98;transform:none;}
}
@media (prefers-reduced-motion:reduce){
  .media-ui{transition:none!important;}
}

/* 2.2.15 — Unified media models: editorial photos + dedicated video readers */
.gallery-showcase{
  display:grid;
  gap:clamp(46px,7vw,88px);
  position:relative;
}
.gallery-collection-head{
  display:grid;
  grid-template-columns:auto minmax(30px,1fr) auto;
  align-items:center;
  gap:12px;
  margin-bottom:15px;
  color:var(--muted);
  font-size:8px;
  font-weight:850;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.gallery-collection-head i{
  height:1px;
  background:var(--line);
}
.gallery-collection-head b{
  color:var(--ink);
  font-size:8px;
  font-variant-numeric:tabular-nums;
}
.gallery-photo-grid{
  display:grid;
  grid-template-columns:repeat(12,minmax(0,1fr));
  grid-auto-rows:96px;
  gap:12px;
}
.gallery-photo-item{
  position:relative;
  overflow:hidden;
  min-width:0;
  background:#d8cebd;
  border:1px solid rgba(19,28,22,.09);
  border-radius:18px;
  transform:translateZ(0);
}
.gallery-photo-item:nth-child(1){grid-column:span 7;grid-row:span 6}
.gallery-photo-item:nth-child(2){grid-column:span 5;grid-row:span 4}
.gallery-photo-item:nth-child(3){grid-column:span 5;grid-row:span 2}
.gallery-photo-item:nth-child(4){grid-column:span 4;grid-row:span 4}
.gallery-photo-item:nth-child(5){grid-column:span 8;grid-row:span 4}
.gallery-photo-item:nth-child(6){grid-column:span 4;grid-row:span 3}
.gallery-photo-item .gallery-open{
  position:absolute;
  inset:0;
  display:block;
  width:100%;
  height:100%;
  padding:0;
  border:0;
  background:none;
  overflow:hidden;
  color:inherit;
  cursor:zoom-in;
  text-align:inherit;
}
.gallery-photo-item img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
  transition:transform .9s var(--ease),filter .45s ease;
  will-change:transform;
}
.gallery-photo-item::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(180deg,rgba(5,10,7,.02) 42%,rgba(5,10,7,.52) 100%);
}
.gallery-photo-item:hover img,
.gallery-photo-item:focus-within img{transform:scale(1.045)}
.gallery-photo-item:focus-within{
  outline:2px solid rgba(189,147,80,.6);
  outline-offset:2px;
}
.gallery-photo-item .gallery-sheen{z-index:2}
.gallery-photo-meta{
  position:absolute;
  left:15px;
  right:15px;
  bottom:14px;
  z-index:4;
  display:flex;
  align-items:center;
  gap:8px;
  color:#fff;
  pointer-events:none;
}
.gallery-photo-meta b{
  font-size:8px;
  letter-spacing:.12em;
  opacity:.68;
  font-variant-numeric:tabular-nums;
}
.gallery-photo-meta::before{
  content:"";
  width:24px;
  height:1px;
  background:rgba(255,255,255,.42);
}
.gallery-photo-meta span{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  font-size:9px;
  font-weight:700;
  letter-spacing:.04em;
}
.gallery-photo-item .gallery-open-icon{
  position:absolute;
  top:13px;
  right:13px;
  z-index:4;
  width:32px;
  height:32px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.20);
  border-radius:50%;
  background:rgba(8,15,10,.34);
  color:#fff;
  font-size:12px;
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
}

.gallery-video-collection{
  min-width:0;
}
.gallery-video-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}
.gallery-video-card{
  min-width:0;
  overflow:hidden;
  border:1px solid rgba(19,28,22,.13);
  border-radius:20px;
  background:#101711;
  box-shadow:0 18px 44px rgba(9,16,11,.10);
}
.gallery-video-card.is-featured{
  grid-column:1/-1;
}
.gallery-video-head,
.gallery-video-foot{
  display:flex;
  align-items:center;
  gap:10px;
  padding:13px 15px;
  color:rgba(248,245,237,.72);
}
.gallery-video-head{
  min-height:48px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.gallery-video-head>span{
  flex:0 0 auto;
  font-size:8px;
  color:rgba(248,245,237,.42);
  letter-spacing:.13em;
  font-variant-numeric:tabular-nums;
}
.gallery-video-head strong{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  color:#f8f5ed;
  font-size:13px;
  font-weight:700;
}
.gallery-video-head em{
  margin-inline-start:auto;
  flex:0 0 auto;
  font-style:normal;
  font-size:7px;
  font-weight:850;
  letter-spacing:.14em;
  color:var(--gold-soft);
  white-space:nowrap;
}
.gallery-video-shell{
  position:relative;
  aspect-ratio:16/9;
  min-height:0;
  overflow:hidden;
  background:#060b08;
}
.gallery-video-card.is-featured .gallery-video-shell{
  aspect-ratio:16/8.6;
}
.gallery-video-shell .gallery-video{
  width:100%;
  height:100%;
  display:block;
  object-fit:contain!important;
  object-position:center;
  background:#060b08;
}
.gallery-video-shell::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(180deg,rgba(3,8,5,.04),transparent 55%,rgba(3,8,5,.18));
}
.gallery-video-center{
  position:absolute;
  left:50%;
  top:50%;
  z-index:6;
  width:64px;
  height:64px;
  transform:translate(-50%,-50%);
  border:1px solid rgba(255,255,255,.23);
  border-radius:50%;
  background:rgba(8,15,10,.58);
  color:#fff;
  display:grid;
  place-items:center;
  box-shadow:0 18px 44px rgba(0,0,0,.25);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  cursor:pointer;
  transition:transform .28s var(--ease),opacity .28s ease,background .28s ease;
}
.gallery-video-center:hover,
.gallery-video-center:focus-visible{
  transform:translate(-50%,-50%) scale(1.045);
  background:rgba(32,57,42,.74);
  outline:none;
}
.gallery-video-center span{font-size:17px;line-height:1;transform:translateX(2px)}
.gallery-video-center.is-hidden{opacity:0;pointer-events:none}
.gallery-video-foot{
  justify-content:space-between;
  min-height:43px;
  border-top:1px solid rgba(255,255,255,.08);
  color:rgba(248,245,237,.46);
  font-size:8px;
  letter-spacing:.07em;
}
.gallery-video-foot i{
  color:var(--gold-soft);
  font-style:normal;
  font-size:13px;
}
.gallery-video-card .media-player::before{display:none}
.gallery-video-card .media-ui{
  left:10px;
  right:10px;
  bottom:10px;
  border-radius:14px;
  background:rgba(4,10,7,.84);
}
.gallery-video-card .media-ui-state{display:none}
.gallery-video-card .media-ui-progress{grid-column:1/-1}
.gallery-video-card .media-ui-toolbar{grid-column:1/-1;justify-content:flex-end}
.gallery-video-card .media-ui-btn{width:31px;height:31px}
.gallery-video-card .media-player.is-playing .gallery-video-center{opacity:0;pointer-events:none}
.gallery-video-card .media-player.is-playing .gallery-video-foot{opacity:.72}

/* Hero video is a separate editorial reader model: wide, stable, and never cropped. */
.hero-media-reader.hero-video-wrap{
  width:min(100%,720px);
  aspect-ratio:16/9;
  min-height:0;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(231,203,147,.20);
  background:#060b08;
  box-shadow:0 34px 90px rgba(0,0,0,.30),0 0 0 1px rgba(255,255,255,.03) inset;
}
.hero-media-reader .hero-video{
  width:100%;
  height:100%;
  object-fit:contain!important;
  background:#060b08;
}
.hero-media-reader.hero-video-wrap::before{
  inset:12px;
  z-index:3;
  border-radius:16px;
  border-color:rgba(255,255,255,.11);
}
.hero-media-reader.hero-video-wrap::after{
  z-index:2;
  border-radius:24px;
  background:linear-gradient(180deg,rgba(4,9,6,.04),transparent 58%,rgba(4,9,6,.18));
}
.hero-media-reader .hero-media-badge{
  top:18px;
  left:18px;
  z-index:7;
}
.hero-media-reader .hero-index{top:22px;right:18px;z-index:7}
.hero-media-reader .hero-marker{
  left:18px;
  right:auto;
  bottom:92px;
  z-index:7;
  width:auto;
  max-width:250px;
  border-radius:14px;
  background:rgba(189,147,80,.94);
}
html[dir="rtl"] .hero-media-reader .hero-marker{left:auto;right:18px}
.hero-media-reader .hero-photo-label{top:auto;bottom:96px;left:auto;right:18px;z-index:7}
html[dir="rtl"] .hero-media-reader .hero-photo-label{left:18px;right:auto}
.hero-media-reader .media-ui{
  left:14px;
  right:14px;
  bottom:14px;
  z-index:9;
  opacity:0;
  transform:translateY(8px);
  background:rgba(4,10,7,.84);
}
.hero-media-reader:hover .media-ui,
.hero-media-reader:focus-within .media-ui,
.hero-media-reader.is-playing .media-ui{opacity:.98;transform:none}
.hero-media-reader .media-ui-toolbar{justify-content:flex-end}
.hero-media-reader .media-ui-progress{grid-column:1/-1}

/* Remove the old 3D gallery treatment from the new video reader model. */
.gallery-video-card,
.gallery-video-shell,
.gallery-video-card .media-ui{transform-style:flat}
.gallery-video-card:hover,
.gallery-video-card:focus-within{transform:none!important}
.gallery-video-card .gallery-meta,
.gallery-video-card .gallery-video-badge{display:none}

@media (max-width:980px){
  .gallery-photo-grid{grid-auto-rows:82px;gap:10px}
  .gallery-video-grid{gap:14px}
  .hero-media-reader.hero-video-wrap{width:min(100%,640px)}
}
@media (max-width:720px){
  .gallery-showcase{gap:42px}
  .gallery-photo-grid{grid-template-columns:repeat(2,minmax(0,1fr));grid-auto-rows:30vw;gap:9px}
  .gallery-photo-item:nth-child(n){grid-column:span 1;grid-row:span 2;border-radius:15px}
  .gallery-photo-item:nth-child(1){grid-column:1/-1;grid-row:span 4}
  .gallery-photo-item:nth-child(5){grid-column:1/-1;grid-row:span 3}
  .gallery-photo-meta{left:11px;right:11px;bottom:11px}
  .gallery-photo-meta span{font-size:8px}
  .gallery-photo-item .gallery-open-icon{top:9px;right:9px;width:29px;height:29px}
  .gallery-video-grid{grid-template-columns:1fr;gap:12px}
  .gallery-video-card.is-featured{grid-column:auto}
  .gallery-video-card.is-featured .gallery-video-shell{aspect-ratio:16/9}
  .gallery-video-head{padding:11px 12px}
  .gallery-video-foot{padding:10px 12px}
  .gallery-video-center{width:56px;height:56px}
  .gallery-video-card .media-ui{left:7px;right:7px;bottom:7px;padding:7px}
  .gallery-video-card .media-ui-btn{width:32px;height:32px}
  .hero-media-reader.hero-video-wrap{aspect-ratio:16/9;border-radius:18px}
  .hero-media-reader.hero-video-wrap::before{inset:8px;border-radius:12px}
  .hero-media-reader .hero-media-badge{top:11px;left:11px}
  html[dir="rtl"] .hero-media-reader .hero-media-badge{left:auto;right:11px}
  .hero-media-reader .hero-index{top:15px;right:11px}
  html[dir="rtl"] .hero-media-reader .hero-index{right:auto;left:11px}
  .hero-media-reader .hero-marker{left:11px;right:auto;bottom:84px;max-width:205px;padding:10px 11px;border-radius:12px}
  html[dir="rtl"] .hero-media-reader .hero-marker{left:auto;right:11px}
  .hero-media-reader .hero-photo-label{display:none}
  .hero-media-reader .media-ui{left:7px;right:7px;bottom:7px;opacity:.98;transform:none;padding:26px 7px 7px}
}
@media (max-width:430px){
  .gallery-collection-head{margin-bottom:12px}
  .gallery-video-head strong{font-size:12px}
  .gallery-video-head em{font-size:6px}
  .gallery-video-foot{font-size:7px}
}
@media (prefers-reduced-motion:reduce){
  .gallery-photo-item img,.gallery-video-center,.hero-media-reader .media-ui{transition:none!important}
  .gallery-video-center:hover,.gallery-video-center:focus-visible{transform:translate(-50%,-50%)}
  .hero-media-reader .media-ui{opacity:.98;transform:none}
}

/* 2.2.15 — neutralize legacy gallery transforms for the new photo model */
.gallery-photo-item:hover{
  transform:translateY(-2px)!important;
  z-index:4;
  box-shadow:0 20px 44px rgba(22,30,24,.13);
}
.gallery-photo-item img{
  transform:none!important;
}
.gallery-photo-item:hover img,
.gallery-photo-item:focus-within img{
  transform:scale(1.045)!important;
}
.gallery-photo-item .gallery-open-icon{transform:none!important}

/* 2.2.19 — Oasis Contemporary marketing theme
   Presentation-only layer: preserves existing HTML, JS, RPC, media and interaction behavior. */
:root{
  --forest:#10221f;
  --forest-2:#18332e;
  --olive:#667a68;
  --sage:#a7b8a9;
  --gold:#c98b3c;
  --gold-soft:#e6b56b;
  --cream:#f5f0e6;
  --paper:#fffdf8;
  --ink:#14221f;
  --muted:#66726d;
  --line:rgba(20,34,31,.12);
  --dark-line:rgba(255,255,255,.12);
  --sand:#ded0b7;
  --terracotta:#a75d3d;
  --moss:#60735a;
  --mint:#dfe9df;
  --shadow:0 24px 70px rgba(16,34,31,.12);
}

html,body{background:var(--cream)}
body{background:
  radial-gradient(circle at 10% 12%,rgba(230,181,107,.12),transparent 28rem),
  radial-gradient(circle at 88% 18%,rgba(96,115,90,.09),transparent 30rem),
  var(--cream);
}
body::before{opacity:.024}
::selection{background:var(--gold-soft);color:var(--forest)}

.site-header{
  background:rgba(245,240,230,.72)!important;
  border-bottom:1px solid rgba(20,34,31,.08)!important;
  box-shadow:0 8px 28px rgba(16,34,31,.04);
  backdrop-filter:blur(18px) saturate(1.08);
  -webkit-backdrop-filter:blur(18px) saturate(1.08);
}
.site-header.scrolled{background:rgba(245,240,230,.9)!important;box-shadow:0 12px 34px rgba(16,34,31,.08)}
.brand-icon{background:var(--forest)!important;color:var(--gold-soft)!important;box-shadow:0 8px 22px rgba(16,34,31,.16)}
.brand-copy strong{color:var(--forest)!important;font-weight:850!important}
.brand-copy small{color:var(--muted)!important}
.desktop-nav a,.mobile-nav a{color:rgba(20,34,31,.72)!important}
.desktop-nav a:hover,.desktop-nav a.active,.mobile-nav a:hover{color:var(--forest)!important}
.desktop-nav a.active::after{background:var(--gold)!important}
.lang-switch{border-color:rgba(20,34,31,.13)!important;color:var(--forest)!important;background:rgba(255,253,248,.7)!important}
.menu-btn{border-color:rgba(20,34,31,.14)!important;background:rgba(255,253,248,.7)!important}
.menu-btn span{background:var(--forest)!important}

.scroll-progress{background:rgba(16,34,31,.07)!important}
.scroll-progress span{background:linear-gradient(90deg,var(--gold),var(--terracotta))!important}
.ambient-grid{opacity:.13!important}
.ambient-orb.orb-a{background:rgba(201,139,60,.16)!important}
.ambient-orb.orb-b{background:rgba(96,115,90,.13)!important}

.hero{
  background:
    radial-gradient(circle at 74% 24%,rgba(230,181,107,.16),transparent 26rem),
    radial-gradient(circle at 8% 86%,rgba(96,115,90,.2),transparent 28rem),
    linear-gradient(145deg,#10221f 0%,#15302c 58%,#0c1c1a 100%)!important;
  min-height:calc(100svh - 18px)!important;
}
.hero::before{background:radial-gradient(circle,rgba(230,181,107,.22),rgba(230,181,107,0) 70%)!important}
.hero h1{font-weight:820!important;letter-spacing:-.085em!important}
.hero h1 em{color:var(--gold-soft)!important}
.hero-lead{color:rgba(250,247,240,.72)!important}
.eyebrow,.kicker{color:var(--gold-soft)!important}
.btn-primary{background:var(--gold-soft)!important;color:#10221f!important;box-shadow:0 16px 34px rgba(201,139,60,.2)!important}
.btn-primary:hover{background:#f0c987!important;box-shadow:0 20px 40px rgba(201,139,60,.25)!important}
.btn-secondary{border-color:rgba(255,255,255,.2)!important;background:rgba(255,255,255,.045)!important}
.hero-signature{color:rgba(249,246,239,.68)!important}
.hero-signature b{color:var(--gold-soft)!important}
.hero-proof-grid>div{background:rgba(255,255,255,.035)!important;border-color:rgba(255,255,255,.1)!important}
.hero-proof-grid b{color:var(--gold-soft)!important}
.hero-proof-grid strong{color:#fbf8f0!important}
.hero-proof-grid span{color:rgba(251,248,240,.46)!important}
.hero-scrollcue{color:rgba(251,248,240,.46)!important}
.hero-scrollcue i{background:linear-gradient(180deg,var(--gold-soft),rgba(230,181,107,0))!important}
.hero-photo-wrap{border:1px solid rgba(230,181,107,.22)!important;box-shadow:0 34px 100px rgba(2,11,10,.34)!important;border-radius:28px!important}
.hero-photo-wrap::before{border-color:rgba(255,255,255,.16)!important;border-radius:20px!important}
.hero-marker{background:var(--gold-soft)!important;color:var(--forest)!important;border-radius:16px!important;box-shadow:0 18px 44px rgba(2,11,10,.26)!important}
.hero-photo-label{border-color:rgba(255,255,255,.16)!important;background:rgba(10,24,21,.42)!important;border-radius:13px!important;backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px)}

.light-section{background:linear-gradient(180deg,#f8f4ea 0%,#f3eee4 100%)!important}
.section-heading{margin-bottom:76px!important}
.section-heading h2{color:var(--forest)!important;font-weight:800!important;letter-spacing:-.045em!important}
.section-heading>p{color:#65716b!important;max-width:560px}
.story-grid{gap:clamp(34px,6vw,100px)!important}
.media-card{border-radius:24px!important;box-shadow:var(--shadow)!important;border:1px solid rgba(20,34,31,.08)!important}
.media-caption{background:linear-gradient(180deg,transparent,rgba(9,22,19,.75))!important}
.story-quote{color:var(--forest)!important}
.story-copy>p:not(.story-quote){color:#5d6963!important}
.step{border-top-color:rgba(20,34,31,.12)!important}
.step b{color:var(--terracotta)!important}
.step strong{color:var(--forest)!important}
.step span{color:#76817c!important}

#craft.dark-section{
  background:
    radial-gradient(circle at 82% 8%,rgba(230,181,107,.1),transparent 25rem),
    linear-gradient(150deg,#10221f,#17312c 56%,#0d1c1a)!important;
}
.craft-feature{background:rgba(255,255,255,.045)!important;border:1px solid rgba(255,255,255,.09)!important;border-radius:26px!important;box-shadow:0 24px 60px rgba(3,10,9,.12)}
.craft-feature h3{color:#fbf7ef!important}
.craft-feature p,.craft-stack article p{color:rgba(248,245,237,.58)!important}
.craft-stack article{border-color:rgba(255,255,255,.1)!important}
.craft-num{color:var(--gold-soft)!important}
.craft-stack h4{color:#fbf7ef!important}

.products-section{background:
  radial-gradient(circle at 12% 10%,rgba(96,115,90,.11),transparent 24rem),
  linear-gradient(180deg,#eee6d8 0%,#e7dece 100%)!important}
.product-grid{gap:20px!important}
.product-card{background:rgba(255,253,248,.66)!important;border:1px solid rgba(20,34,31,.08)!important;border-radius:24px!important;overflow:hidden;box-shadow:0 16px 44px rgba(20,34,31,.07)!important}
.product-card:hover{transform:translateY(-6px)!important;box-shadow:0 24px 56px rgba(20,34,31,.12)!important}
.product-media{background:linear-gradient(145deg,#d8cfbf,#b9aa91)!important;min-height:240px}
.product-body{padding:20px 20px 22px!important}
.product-meta{color:#78817c!important}
.product-meta span:first-child{color:var(--terracotta)!important;font-weight:800}
.product-body h3{color:var(--forest)!important}
.product-body p{color:#69746e!important}
.pack-tag{border:1px solid rgba(201,139,60,.24)!important;background:rgba(230,181,107,.13)!important;color:#8c5b27!important;border-radius:999px!important}

.origin-panel{background:#12241f!important}
.origin-box{border-radius:30px!important;box-shadow:0 36px 90px rgba(4,15,12,.28)!important;border:1px solid rgba(230,181,107,.16)!important}
.origin-shade{background:linear-gradient(90deg,rgba(7,19,16,.9),rgba(12,28,23,.55) 52%,rgba(12,28,23,.34))!important}
[dir="rtl"] .origin-shade{background:linear-gradient(270deg,rgba(7,19,16,.9),rgba(12,28,23,.55) 52%,rgba(12,28,23,.34))!important}
.origin-content h2{color:#fbf7ef!important}
.origin-content>p{color:rgba(248,245,237,.68)!important}
.pill{background:rgba(255,255,255,.08)!important;border-color:rgba(255,255,255,.12)!important;color:#f8f4ec!important;border-radius:999px!important}
.origin-stamp{color:rgba(255,255,255,.45)!important;border-color:rgba(255,255,255,.16)!important}

.gallery-section{background:#f7f2e8!important}
.gallery-collection-head{color:#79827d!important;border-bottom-color:rgba(20,34,31,.1)!important}
.gallery-collection-head i{background:linear-gradient(90deg,var(--gold),rgba(201,139,60,0))!important}
.gallery-collection-head b{color:var(--terracotta)!important}
.gallery-photo-item{border-radius:20px!important;box-shadow:0 18px 42px rgba(20,34,31,.1)!important}
.gallery-photo-item::after{background:linear-gradient(180deg,transparent 48%,rgba(10,22,19,.5))!important}
.gallery-photo-meta{background:linear-gradient(180deg,transparent,rgba(10,22,19,.66))!important}
.gallery-photo-meta b{color:var(--gold-soft)!important}
.gallery-open-icon{background:rgba(255,253,248,.84)!important;color:var(--forest)!important}
.gallery-video-card{border-radius:22px!important;border:1px solid rgba(255,255,255,.09)!important;overflow:hidden;background:#11231f!important}
.gallery-video-head{background:rgba(255,255,255,.035)!important}
.gallery-video-head span,.gallery-video-head em{color:var(--gold-soft)!important}
.gallery-video-head strong{color:#fbf7ef!important}
.gallery-video-foot{background:rgba(255,255,255,.025)!important}

.contact-section{background:
  radial-gradient(circle at 84% 18%,rgba(230,181,107,.1),transparent 24rem),
  linear-gradient(150deg,#0e201c,#122923 58%,#0b1916)!important}
.contact-main h2{color:#fbf7ef!important}
.contact-main>p,.contact-direct>p{color:rgba(248,245,237,.62)!important}
.contact-direct{background:rgba(255,255,255,.035)!important;border:1px solid rgba(255,255,255,.09)!important;border-radius:24px!important;padding:24px!important}
.contact-direct h3{color:#fbf7ef!important}
.contact-links a,.social-link{border-color:rgba(255,255,255,.1)!important;background:rgba(255,255,255,.025)!important;border-radius:16px!important}
.contact-links a:hover,.social-link:hover{background:rgba(230,181,107,.09)!important;color:var(--gold-soft)!important}
.social-link-mark{background:rgba(230,181,107,.14)!important;color:var(--gold-soft)!important;border-color:rgba(230,181,107,.18)!important}
.social-link-copy strong{color:#fbf7ef!important}
.social-link-copy small{color:rgba(248,245,237,.44)!important}
.social-link-arrow{color:var(--gold-soft)!important}

.site-footer{background:#0b1916!important;border-top:1px solid rgba(255,255,255,.07)!important}
.site-footer strong{color:#fbf7ef!important}
.site-footer span,.site-footer small{color:rgba(248,245,237,.38)!important}
.back-home{background:rgba(255,253,248,.92)!important;color:var(--forest)!important;border-color:rgba(20,34,31,.09)!important;box-shadow:0 12px 30px rgba(20,34,31,.14)!important;backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px)}

.empty-state,.gallery-empty{background:rgba(255,253,248,.72)!important;border:1px dashed rgba(20,34,31,.15)!important;border-radius:20px!important}
.empty-state strong,.gallery-empty strong{color:var(--forest)!important}
.empty-state span,.gallery-empty span{color:#707a75!important}

/* Editorial rhythm / mobile conversion density */
@media (max-width:980px){
  .hero{padding-top:122px!important}
  .hero-grid{grid-template-columns:1fr!important;gap:34px!important}
  .hero-copy{max-width:760px!important}
  .hero-stage{justify-content:flex-start!important;min-height:0!important}
  .hero-media-reader.hero-video-wrap,.hero-photo-wrap{width:min(100%,760px)!important}
}
@media (max-width:720px){
  :root{--gutter:18px;--section-y:82px}
  .site-header{background:rgba(245,240,230,.88)!important}
  .hero{padding-top:110px!important;padding-bottom:64px!important}
  .hero h1{font-size:clamp(48px,15vw,76px)!important;line-height:.93!important}
  .hero-proof-grid{grid-template-columns:1fr!important;gap:8px!important}
  .hero-proof-grid>div{padding:13px 14px!important;border:1px solid rgba(255,255,255,.09)!important;border-radius:14px!important}
  .cta-row{gap:9px!important}
  .btn{min-height:50px!important;padding-inline:16px!important}
  .section-heading{margin-bottom:54px!important;gap:18px!important}
  .section-heading h2{font-size:clamp(38px,11vw,58px)!important}
  .product-grid{grid-template-columns:1fr!important}
  .product-card,.product-card:nth-child(4n+1),.product-card:nth-child(4n+2),.product-card:nth-child(4n+3),.product-card:nth-child(4n){grid-column:span 1!important}
  .product-media{min-height:230px!important}
  .origin-box{border-radius:22px!important}
  .origin-content{padding:28px 22px!important}
  .contact-direct{padding:18px!important}
}
@media (prefers-reduced-motion:reduce){
  .product-card,.hero-photo-wrap,.gallery-photo-item{transition:none!important}
}

/* 2.2.21 — Video reader: controls are hidden on entry and user-revealed */
.media-player .media-ui{
  opacity:0!important;
  transform:translateY(10px)!important;
  pointer-events:none!important;
}
.media-player.media-controls-visible .media-ui{
  opacity:.98!important;
  transform:none!important;
  pointer-events:auto!important;
}
@media (hover:hover) and (pointer:fine){
  .media-player:hover .media-ui,
  .media-player:focus-within .media-ui{opacity:.98!important;transform:none!important;pointer-events:auto!important;}
}
@media (hover:none){
  .media-player .media-ui,
  .media-player.is-playing .media-ui,
  .gallery-video-item .media-player.is-playing .media-ui,
  .hero-media-reader.is-playing .media-ui{
    opacity:0!important;
    transform:translateY(10px)!important;
    pointer-events:none!important;
  }
  .media-player.media-controls-visible .media-ui,
  .gallery-video-item .media-player.media-controls-visible .media-ui,
  .hero-media-reader.media-controls-visible .media-ui{
    opacity:.98!important;
    transform:none!important;
    pointer-events:auto!important;
  }
}

/* 2.2.22 — device system theme restoration
   The Oasis Contemporary layer above intentionally sets a premium light palette.
   This final adapter re-applies the phone/browser preference so the complete
   public site follows prefers-color-scheme without changing content or behavior. */
@media (prefers-color-scheme:dark){
  :root{
    --forest:#0d1613;
    --forest-2:#14231e;
    --olive:#718074;
    --sage:#a9b6aa;
    --gold:#c99a55;
    --gold-soft:#e4bd79;
    --cream:#151a17;
    --paper:#1c211e;
    --ink:#f1eee6;
    --muted:#a6aaa2;
    --line:rgba(241,238,230,.14);
    --dark-line:rgba(255,255,255,.13);
    --sand:#3a352c;
    --terracotta:#c77955;
    --moss:#71806a;
    --mint:#263329;
    --shadow:0 24px 70px rgba(0,0,0,.30);
  }

  html,body{background:var(--cream)!important;color:var(--ink)!important}
  body{background:
    radial-gradient(circle at 10% 12%,rgba(228,189,121,.07),transparent 28rem),
    radial-gradient(circle at 88% 18%,rgba(113,128,106,.08),transparent 30rem),
    var(--cream)!important}
  body::before{opacity:.018!important;mix-blend-mode:screen!important}
  ::selection{background:var(--gold-soft)!important;color:#101713!important}

  .site-header,
  .site-header.scrolled{
    background:rgba(13,22,19,.78)!important;
    border-bottom-color:rgba(241,238,230,.10)!important;
    box-shadow:0 10px 34px rgba(0,0,0,.18)!important;
  }
  .brand-icon{background:#e4bd79!important;color:#10221f!important;box-shadow:0 8px 22px rgba(0,0,0,.24)!important}
  .brand-copy strong{color:#f2eee7!important}
  .brand-copy small,.desktop-nav a,.mobile-nav a{color:rgba(242,239,231,.68)!important}
  .desktop-nav a:hover,.desktop-nav a.active,.mobile-nav a:hover{color:#f2eee7!important}
  .desktop-nav a.active::after{background:var(--gold-soft)!important}
  .lang-switch,.menu-btn{color:#f2efe8!important;background:rgba(255,255,255,.055)!important;border-color:rgba(241,238,230,.15)!important}
  .menu-btn span{background:#f2efe8!important}

  .scroll-progress{background:rgba(255,255,255,.06)!important}
  .scroll-progress span{background:linear-gradient(90deg,var(--gold),var(--terracotta))!important}
  .ambient-grid{opacity:.10!important}

  .hero{background:
    radial-gradient(circle at 74% 24%,rgba(228,189,121,.10),transparent 26rem),
    radial-gradient(circle at 8% 86%,rgba(113,128,106,.12),transparent 28rem),
    linear-gradient(145deg,#0b1512 0%,#12231e 58%,#091310 100%)!important;color:#f4f0e7!important}
  .hero::before{background:radial-gradient(circle,rgba(228,189,121,.13),rgba(228,189,121,0) 70%)!important}
  .hero h1{color:#f5f1e8!important}
  .hero h1 em,.eyebrow,.kicker{color:var(--gold-soft)!important}
  .hero-lead{color:rgba(250,247,240,.68)!important}
  .btn-primary{background:var(--gold-soft)!important;color:#10221f!important;box-shadow:0 16px 34px rgba(228,189,121,.15)!important}
  .btn-primary:hover{background:#f0cc8e!important}
  .btn-secondary{border-color:rgba(255,255,255,.17)!important;background:rgba(255,255,255,.045)!important;color:#f4f0e7!important}
  .hero-signature{color:rgba(249,246,239,.62)!important}
  .hero-signature b,.hero-proof-grid b{color:var(--gold-soft)!important}
  .hero-proof-grid>div{background:rgba(255,255,255,.035)!important;border-color:rgba(255,255,255,.09)!important}
  .hero-proof-grid strong{color:#fbf8f0!important}
  .hero-proof-grid span,.hero-scrollcue{color:rgba(251,248,240,.44)!important}
  .hero-scrollcue i{background:linear-gradient(180deg,var(--gold-soft),rgba(228,189,121,0))!important}
  .hero-photo-wrap{border-color:rgba(228,189,121,.20)!important;box-shadow:0 34px 100px rgba(0,0,0,.42)!important}
  .hero-photo-wrap::before{border-color:rgba(255,255,255,.13)!important}
  .hero-marker{background:var(--gold-soft)!important;color:#10221f!important}
  .hero-photo-label{border-color:rgba(255,255,255,.14)!important;background:rgba(7,17,14,.50)!important}

  .light-section{background:linear-gradient(180deg,#181e1a 0%,#141916 100%)!important;color:#f1eee6!important}
  .products-section{background:
    radial-gradient(circle at 12% 10%,rgba(113,128,106,.08),transparent 24rem),
    linear-gradient(180deg,#1c211e 0%,#171c19 100%)!important;color:#f1eee6!important}
  .section-heading h2,.story-quote,.step strong,.product-body h3,.empty-state strong,.gallery-empty strong{color:#f1eee6!important}
  .section-heading>p,.story-copy>p:not(.story-quote){color:#a7aaa2!important}
  .media-card{background:#232923!important;border-color:rgba(241,238,230,.10)!important;box-shadow:var(--shadow)!important}
  .media-caption{background:linear-gradient(180deg,transparent,rgba(5,11,9,.80))!important}
  .step{border-top-color:rgba(241,238,230,.11)!important}
  .step b{color:var(--terracotta)!important}
  .step span{color:#929a92!important}

  #craft.dark-section{background:
    radial-gradient(circle at 82% 8%,rgba(228,189,121,.08),transparent 25rem),
    linear-gradient(150deg,#0d1916,#142822 56%,#0a1512)!important}
  .craft-feature{background:rgba(255,255,255,.035)!important;border-color:rgba(255,255,255,.09)!important;box-shadow:0 24px 60px rgba(0,0,0,.16)!important}
  .craft-feature h3,.craft-stack h4{color:#fbf7ef!important}
  .craft-feature p,.craft-stack article p{color:rgba(248,245,237,.56)!important}
  .craft-stack article{border-color:rgba(255,255,255,.09)!important}
  .craft-num{color:var(--gold-soft)!important}

  .product-card{background:rgba(31,37,33,.88)!important;border-color:rgba(241,238,230,.10)!important;box-shadow:0 16px 44px rgba(0,0,0,.24)!important}
  .product-card:hover{box-shadow:0 24px 56px rgba(0,0,0,.34)!important}
  .product-media{background:linear-gradient(145deg,#3b4039,#272c27)!important}
  .product-meta{color:#9da39a!important}
  .product-meta span:first-child{color:var(--terracotta)!important}
  .product-body p{color:#a6aaa2!important}
  .pack-tag{border-color:rgba(228,189,121,.24)!important;background:rgba(228,189,121,.10)!important;color:#e3bf82!important}

  .origin-panel{background:#0e1c18!important}
  .origin-box{box-shadow:0 36px 90px rgba(0,0,0,.40)!important;border-color:rgba(228,189,121,.15)!important}
  .origin-shade{background:linear-gradient(90deg,rgba(3,11,8,.93),rgba(8,21,17,.64) 52%,rgba(8,21,17,.42))!important}
  [dir="rtl"] .origin-shade{background:linear-gradient(270deg,rgba(3,11,8,.93),rgba(8,21,17,.64) 52%,rgba(8,21,17,.42))!important}
  .origin-content h2{color:#fbf7ef!important}
  .origin-content>p{color:rgba(248,245,237,.66)!important}
  .pill{background:rgba(255,255,255,.065)!important;border-color:rgba(255,255,255,.11)!important;color:#f5f1e8!important}
  .origin-stamp{color:rgba(255,255,255,.42)!important;border-color:rgba(255,255,255,.14)!important}

  .gallery-section{background:#171c19!important}
  .gallery-collection-head{color:#9ca29b!important;border-bottom-color:rgba(241,238,230,.10)!important}
  .gallery-collection-head i{background:linear-gradient(90deg,var(--gold),rgba(201,139,60,0))!important}
  .gallery-collection-head b{color:var(--terracotta)!important}
  .gallery-photo-item{box-shadow:0 18px 42px rgba(0,0,0,.30)!important}
  .gallery-open-icon{background:rgba(31,37,33,.88)!important;color:#f2eee6!important}
  .gallery-video-card{background:#101d19!important;border-color:rgba(255,255,255,.09)!important}
  .gallery-video-head{background:rgba(255,255,255,.035)!important}
  .gallery-video-head span,.gallery-video-head em,.gallery-photo-meta b{color:var(--gold-soft)!important}
  .gallery-video-head strong{color:#fbf7ef!important}
  .gallery-video-foot{background:rgba(255,255,255,.025)!important}

  .contact-section{background:
    radial-gradient(circle at 84% 18%,rgba(228,189,121,.08),transparent 24rem),
    linear-gradient(150deg,#0b1915,#10221d 58%,#08130f)!important}
  .contact-main h2,.contact-direct h3{color:#fbf7ef!important}
  .contact-main>p,.contact-direct>p{color:rgba(248,245,237,.60)!important}
  .contact-direct{background:rgba(255,255,255,.035)!important;border-color:rgba(255,255,255,.09)!important}
  .contact-links a,.social-link{border-color:rgba(255,255,255,.10)!important;background:rgba(255,255,255,.025)!important}
  .contact-links a:hover,.social-link:hover{background:rgba(228,189,121,.08)!important;color:var(--gold-soft)!important}
  .social-link-mark{background:rgba(228,189,121,.12)!important;color:var(--gold-soft)!important;border-color:rgba(228,189,121,.18)!important}
  .social-link-copy strong{color:#fbf7ef!important}
  .social-link-copy small{color:rgba(248,245,237,.43)!important}
  .social-link-arrow{color:var(--gold-soft)!important}

  .site-footer{background:#08130f!important;border-top-color:rgba(255,255,255,.07)!important}
  .site-footer strong{color:#fbf7ef!important}
  .site-footer span,.site-footer small{color:rgba(248,245,237,.36)!important}
  .back-home{background:rgba(27,33,29,.94)!important;color:#f2eee6!important;border-color:rgba(241,238,230,.10)!important;box-shadow:0 12px 30px rgba(0,0,0,.30)!important}
  .back-home:hover{background:#203026!important;border-color:rgba(228,189,121,.65)!important}
  .empty-state,.gallery-empty{background:rgba(31,37,33,.70)!important;border-color:rgba(241,238,230,.13)!important}
  .empty-state span,.gallery-empty span{color:#9ba199!important}

  .mobile-nav{background:rgba(10,16,13,.97)!important;border-color:rgba(241,238,230,.11)!important;box-shadow:0 18px 45px rgba(0,0,0,.34)!important}
  .mobile-nav a{border-bottom-color:rgba(255,255,255,.08)!important}

  @media (max-width:720px){
    .site-header{background:rgba(13,22,19,.82)!important}
    .lang-switch,.menu-btn{background:rgba(255,255,255,.045)!important}
  }
}

@media (prefers-color-scheme:light){
  html,body{background:var(--cream)!important;color:var(--ink)!important}
  body{background:
    radial-gradient(circle at 10% 12%,rgba(230,181,107,.12),transparent 28rem),
    radial-gradient(circle at 88% 18%,rgba(96,115,90,.09),transparent 30rem),
    var(--cream)!important}
  body::before{opacity:.024!important;mix-blend-mode:multiply!important}
  .site-header,.site-header.scrolled{background:rgba(245,240,230,.88)!important;border-bottom-color:rgba(20,34,31,.08)!important;box-shadow:0 8px 28px rgba(16,34,31,.05)!important}
  .brand-icon{background:var(--forest)!important;color:var(--gold-soft)!important}
  .brand-copy strong{color:var(--forest)!important}
  .brand-copy small,.desktop-nav a,.mobile-nav a{color:rgba(20,34,31,.72)!important}
  .desktop-nav a:hover,.desktop-nav a.active,.mobile-nav a:hover{color:var(--forest)!important}
  .lang-switch,.menu-btn{color:var(--forest)!important;background:rgba(255,253,248,.72)!important;border-color:rgba(20,34,31,.13)!important}
  .menu-btn span{background:var(--forest)!important}
  .mobile-nav{background:rgba(248,245,237,.96)!important;border-color:rgba(20,34,31,.12)!important}
}

/* 2.2.23 collection empty state — calm, useful, production-ready */
.collection-empty{margin-top:54px;border:1px solid rgba(24,47,41,.12);border-radius:28px;background:linear-gradient(135deg,rgba(248,244,234,.96),rgba(235,226,208,.78));box-shadow:0 24px 60px rgba(25,42,37,.08);overflow:hidden}
.collection-empty-main{display:grid;grid-template-columns:170px minmax(0,1fr);gap:34px;align-items:center;padding:38px 40px 34px}
.collection-empty-mark{width:132px;height:132px;border-radius:50%;display:grid;place-items:center;position:relative;background:radial-gradient(circle at 36% 30%,rgba(231,187,104,.55),rgba(17,44,39,.08) 45%,transparent 46%),linear-gradient(145deg,#12332d,#25463d);box-shadow:inset 0 0 0 1px rgba(255,255,255,.16),0 18px 34px rgba(18,51,45,.18)}
.collection-empty-mark span{position:absolute;width:18px;height:54px;border-radius:50% 50% 42% 42%;background:linear-gradient(180deg,#d6ad65,#9a7040);transform-origin:50% 100%;box-shadow:0 5px 10px rgba(0,0,0,.08)}
.collection-empty-mark span:nth-child(1){transform:translate(-24px,7px) rotate(-18deg)}
.collection-empty-mark span:nth-child(2){transform:translate(0,1px) rotate(2deg)}
.collection-empty-mark span:nth-child(3){transform:translate(24px,8px) rotate(20deg)}
.collection-empty-copy{max-width:760px}
.collection-empty-kicker,.collection-guide>span{display:inline-flex;align-items:center;gap:10px;color:#8d6932;font-size:10px;letter-spacing:.18em;font-weight:800}
.collection-empty-kicker::before,.collection-guide>span::before{content:"";width:30px;height:1px;background:#b89356}
.collection-empty-copy h3{margin:10px 0 11px;font-size:clamp(28px,4vw,48px);line-height:1.08;color:#19322d;letter-spacing:-.035em}
.collection-empty-copy p{margin:0;max-width:68ch;color:#6c756f;line-height:1.9;font-size:15px}
.collection-guide{border-top:1px solid rgba(24,47,41,.10);padding:22px 40px 28px;background:rgba(255,255,255,.24)}
.collection-guide-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:0;margin-top:17px}
.collection-guide-grid>div{padding:5px 18px 3px 0;border-right:1px solid rgba(24,47,41,.09)}
.collection-guide-grid>div+div{padding-left:18px}
.collection-guide-grid>div:last-child{border-right:0}
.collection-guide-grid b{display:block;color:#ad8444;font-size:11px;letter-spacing:.15em;margin-bottom:9px}
.collection-guide-grid strong{display:block;color:#24423a;font-size:14px;margin-bottom:5px}
.collection-guide-grid small{display:block;color:#78817b;line-height:1.65;font-size:11px}
[dir="rtl"] .collection-empty-main{grid-template-columns:minmax(0,1fr) 170px}
[dir="rtl"] .collection-empty-mark{grid-column:2;grid-row:1}
[dir="rtl"] .collection-empty-copy{grid-column:1;grid-row:1;text-align:right}
[dir="rtl"] .collection-guide-grid>div{padding:5px 0 3px 18px;border-right:0;border-left:1px solid rgba(24,47,41,.09)}
[dir="rtl"] .collection-guide-grid>div+div{padding-right:18px;padding-left:0}
[dir="rtl"] .collection-guide-grid>div:last-child{border-left:0}
@media (max-width:900px){
  .collection-empty-main{grid-template-columns:112px minmax(0,1fr);gap:22px;padding:28px 26px 26px}
  .collection-empty-mark{width:104px;height:104px}
  .collection-empty-mark span{width:14px;height:45px}
  .collection-empty-mark span:nth-child(1){transform:translate(-18px,6px) rotate(-18deg)}
  .collection-empty-mark span:nth-child(3){transform:translate(18px,7px) rotate(20deg)}
  [dir="rtl"] .collection-empty-main{grid-template-columns:minmax(0,1fr) 112px}
  .collection-guide{padding:20px 26px 24px}
  .collection-guide-grid{grid-template-columns:1fr 1fr;row-gap:17px}
  .collection-guide-grid>div:nth-child(2){border-right:0}
  .collection-guide-grid>div:nth-child(3){padding-left:0}
  [dir="rtl"] .collection-guide-grid>div{border-left:1px solid rgba(24,47,41,.09);padding-right:0;padding-left:18px}
  [dir="rtl"] .collection-guide-grid>div:nth-child(2),[dir="rtl"] .collection-guide-grid>div:nth-child(4){border-left:0}
  [dir="rtl"] .collection-guide-grid>div:nth-child(3){padding-right:18px;padding-left:0}
}
@media (max-width:620px){
  .collection-empty{margin-top:28px;border-radius:22px}
  .collection-empty-main{display:block;padding:24px 21px 22px}
  [dir="rtl"] .collection-empty-main{display:block}
  .collection-empty-mark{width:82px;height:82px;margin-bottom:18px}
  .collection-empty-mark span{width:11px;height:36px}
  .collection-empty-mark span:nth-child(1){transform:translate(-14px,5px) rotate(-18deg)}
  .collection-empty-mark span:nth-child(2){transform:translate(0,0) rotate(2deg)}
  .collection-empty-mark span:nth-child(3){transform:translate(14px,5px) rotate(20deg)}
  .collection-empty-copy h3{font-size:31px;line-height:1.13;margin-top:8px}
  .collection-empty-copy p{font-size:13px;line-height:1.85}
  .collection-guide{padding:18px 21px 21px}
  .collection-guide-grid{grid-template-columns:1fr;gap:0}
  .collection-guide-grid>div,.collection-guide-grid>div+div,[dir="rtl"] .collection-guide-grid>div,[dir="rtl"] .collection-guide-grid>div+div{border:0;border-top:1px solid rgba(24,47,41,.09);padding:13px 0 11px}
  .collection-guide-grid>div:first-child{border-top:0}
}
@media (prefers-color-scheme: dark){
  .collection-empty{background:linear-gradient(135deg,rgba(30,40,36,.98),rgba(24,31,27,.98));border-color:rgba(241,238,230,.11);box-shadow:0 24px 60px rgba(0,0,0,.25)}
  .collection-empty-copy h3{color:#f2eee5}
  .collection-empty-copy p,.collection-guide-grid small{color:#a8afa8}
  .collection-guide{background:rgba(255,255,255,.015);border-top-color:rgba(241,238,230,.09)}
  .collection-guide-grid>div{border-color:rgba(241,238,230,.09)}
  .collection-guide-grid strong{color:#e5e1d7}
  .collection-guide-grid>div+div{border-color:rgba(241,238,230,.09)}
  [dir="rtl"] .collection-guide-grid>div{border-color:rgba(241,238,230,.09)}
}

/* ================= SparkMajhoul Signature System =================
   Premium oasis / sandstone visual language shared with the QR card.
   Presentation-only: does not alter Supabase data flow or component behavior. */
:root{
  --sm-ink:#0a201a;
  --sm-oasis:#10352b;
  --sm-oasis-deep:#071812;
  --sm-sand:#f7f0e4;
  --sm-paper:#fffdf8;
  --sm-date:#704325;
  --sm-gold:#c9974d;
  --sm-gold-soft:#e8c27f;
  --sm-line:rgba(16,53,43,.14);
}
body{background:linear-gradient(180deg,#faf6ee 0%,#f3ecdf 100%)}
body::after{content:"";position:fixed;inset:0;pointer-events:none;z-index:0;opacity:.16;background:radial-gradient(circle at 90% 8%,rgba(201,151,77,.14),transparent 26%),radial-gradient(circle at 8% 82%,rgba(16,53,43,.08),transparent 28%)}
.site-header .nav-shell{background:rgba(255,253,248,.84);border-color:var(--sm-line);box-shadow:0 18px 46px rgba(7,24,18,.07);backdrop-filter:blur(20px) saturate(135%)}
.brand-icon{background:var(--sm-oasis)!important;color:var(--sm-gold-soft)!important;box-shadow:0 8px 22px rgba(7,24,18,.14)}
.desktop-nav a,.mobile-nav a{color:var(--sm-ink)}
.lang-switch,.menu-btn{border-color:var(--sm-line)!important;background:rgba(255,253,248,.72)!important;color:var(--sm-oasis)!important}
.hero,.dark-section{background:radial-gradient(circle at 90% 0%,rgba(201,151,77,.14),transparent 28%),linear-gradient(180deg,#071812 0%,#0b241d 100%)}
.hero::after,.origin-wrap::after{background:linear-gradient(180deg,transparent 45%,rgba(3,13,10,.45) 100%)!important}
.btn-primary{background:linear-gradient(135deg,#17493b,#10352b)!important;color:#fff9ef!important;box-shadow:0 14px 30px rgba(7,24,18,.18)}
.btn-secondary{border-color:rgba(232,194,127,.28)!important}
.light-section,.products-section{background:linear-gradient(180deg,#faf6ee,#f1eadf)}
.product,.gallery-item,.story-card,.contact-panel,.origin-wrap{border-color:rgba(16,53,43,.13)!important;box-shadow:0 22px 60px rgba(7,24,18,.08)!important}
.product{background:rgba(255,253,248,.82)!important}
.product-meta,.kicker,.eyebrow{color:var(--sm-gold-soft)!important}
.product-body h3,.section-head h2,.contact-panel h2,.origin-content h2{color:var(--sm-ink)}
.origin-wrap{background:#10352b!important}
.site-footer{background:#071812;border-top-color:rgba(232,194,127,.14)!important}
.site-footer strong{color:#e8c27f!important}
.back-home{border-color:rgba(232,194,127,.24)!important;background:rgba(7,24,18,.78)!important;color:#f7f0e4!important}

/* QR/share surfaces when shown by the public layer */
.sm-share-card{background:linear-gradient(145deg,#fffdf8,#f3eadc);border:1px solid rgba(201,151,77,.30);box-shadow:0 24px 70px rgba(7,24,18,.12);border-radius:28px}
.sm-share-card .sm-share-mark{background:#10352b;color:#e8c27f}

@media (prefers-color-scheme: dark){
  html,body{background:#071812;color:#f6f0e5}
  .site-header .nav-shell{background:rgba(7,24,18,.86);border-color:rgba(232,194,127,.12)}
  .desktop-nav a,.mobile-nav a,.brand-copy strong,.brand-copy small{color:#f6f0e5!important}
  .lang-switch,.menu-btn{background:rgba(255,255,255,.025)!important;border-color:rgba(232,194,127,.14)!important;color:#e8c27f!important}
  .light-section,.products-section{background:linear-gradient(180deg,#0b241d,#0a201a);color:#f6f0e5}
  .product,.gallery-item,.story-card,.contact-panel{background:rgba(255,255,255,.025)!important;border-color:rgba(232,194,127,.11)!important;color:#f6f0e5}
  .product-body h3,.section-head h2,.contact-panel h2,.origin-content h2{color:#f6f0e5}
  .origin-wrap{box-shadow:0 24px 70px rgba(0,0,0,.28)!important}
  .sm-share-card{background:linear-gradient(145deg,#102d24,#0b241d);border-color:rgba(232,194,127,.16);color:#f6f0e5}
}


/* ========================================================================
   3.1 — FLAGSHIP SYSTEM / LAYOUT STABILITY
   Presentation-only overrides. The Supabase/data/media JavaScript contract
   and existing component class names remain unchanged.
   ======================================================================== */
:root{
  --flag-forest:#08130e;
  --flag-forest-2:#0d1b14;
  --flag-ivory:#f5f1e8;
  --flag-paper:#f3eee4;
  --flag-gold:#d6b06a;
  --flag-line:rgba(18,32,24,.12);
  --flag-dark-line:rgba(255,255,255,.10);
  --flag-radius:18px;
}

html,body{width:100%;max-width:100%;overflow-x:clip}
body{background:var(--flag-paper)}
main,#content{width:100%;max-width:100%;min-width:0}
.section-inner{width:min(var(--max),calc(100% - (var(--gutter) * 2)));max-width:100%;min-width:0}
.hero-grid,.story-grid,.craft-grid,.contact-grid,.section-heading,.product-grid,.gallery{min-width:0}
.hero-copy,.hero-stage,.story-copy,.craft-feature,.craft-stack,.contact-main,.contact-direct{min-width:0}
.hero h1,.hero-lead,.story-quote,.story-copy>p,.section-heading h2,.section-heading>p,.origin-content h2,.origin-content>p,.contact-main h2,.contact-main>p,.contact-direct h3,.contact-direct>p{max-width:100%;overflow-wrap:break-word}

/* Header: one quiet control surface rather than several competing pills. */
.site-header{padding:12px var(--gutter);pointer-events:none}
.nav-shell{
  width:min(var(--max),calc(100vw - (var(--gutter) * 2)));
  max-width:100%;
  min-width:0;
  padding:8px 10px;
  border:1px solid rgba(216,186,130,.16);
  border-radius:999px;
  background:rgba(6,17,11,.62);
  box-shadow:0 14px 38px rgba(0,0,0,.12),inset 0 1px 0 rgba(255,255,255,.045);
  backdrop-filter:blur(18px) saturate(1.05);
  -webkit-backdrop-filter:blur(18px) saturate(1.05);
}
.brand{min-width:0;overflow:hidden}
.brand-copy{min-width:0;overflow:hidden}
.brand-copy strong{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.brand-copy small{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.lang-switch{flex:0 0 auto}
.menu-btn{flex:0 0 auto}
.site-header.scrolled{background:transparent;box-shadow:none;backdrop-filter:none}
.site-header.scrolled .nav-shell{min-height:0;background:rgba(6,17,11,.86)}
.mobile-nav{border-radius:18px}

/* Home control never competes with the page: compact, safe-area aware. */
.back-home{
  right:max(12px,env(safe-area-inset-right));
  bottom:max(12px,env(safe-area-inset-bottom));
  min-width:88px;
  min-height:36px;
  padding:0 11px;
  border-radius:999px;
}
html[dir="rtl"] .back-home{left:max(12px,env(safe-area-inset-left));right:auto}
html[dir="ltr"] .back-home{right:max(12px,env(safe-area-inset-right));left:auto}

/* Intro: cinematic, but fast enough to never feel like a blocker. */
.intro-screen{background:var(--flag-forest)!important}
.intro-center{width:min(760px,100%);max-width:100%;min-width:0}
.intro-brand{max-width:100%;overflow-wrap:break-word}
.intro-center p{max-width:min(48ch,92vw)}
.intro-bottomline{max-width:100%;min-width:0}
.intro-bottomline>*{min-width:0}
.intro-skip{border:1px solid rgba(226,195,139,.24);padding:10px 13px;border-radius:999px;background:rgba(255,255,255,.035);backdrop-filter:blur(12px)}
.intro-skip::before{inset:-1px!important}

/* Hero: controlled hierarchy, fewer simultaneous objects. */
.hero{background:linear-gradient(180deg,var(--flag-forest) 0%,var(--flag-forest-2) 100%)}
.hero-copy{max-width:720px}
.hero h1{font-weight:650}
.hero-lead{max-width:50ch}
.cta-row{display:flex;flex-wrap:wrap;align-items:center}
.btn{min-height:46px}
.hero-proof-grid{border-color:rgba(255,255,255,.11)}

/* Sections: make spacing consistent so the page reads as one designed system. */
main>.section{scroll-margin-top:88px}
.section-heading{gap:36px}
.section-heading>p{font-size:14px;line-height:1.9}
.story-grid{gap:clamp(30px,5vw,78px)}
.craft-grid{gap:clamp(30px,5vw,72px)}
.contact-grid{gap:clamp(28px,5vw,76px)}

/* Product cards: editorial surface, not inventory tiles. */
.product-grid{gap:16px}
.product-card{border-radius:var(--flag-radius);overflow:hidden}
.product-body{min-width:0}
.product-body h3,.product-body p,.product-meta,.product-meta span{min-width:0;overflow-wrap:anywhere}

/* Gallery and media stay full-bleed inside their own bounds. */
.gallery,.gallery-item,.gallery-open,.gallery-video-shell,.gallery-photo-item{min-width:0;max-width:100%}
.gallery img,.gallery video{max-width:100%}

/* 3.4.1 — Direct contact destinations: keep Linktree and WhatsApp in the
   contact panel with a clean two-level label system. */
.contact-links .contact-link{display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:center;gap:12px}
.contact-links .contact-link span{font-size:12px;font-weight:600}
.contact-links .contact-link small{font-size:10px;color:rgba(248,245,237,.48);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:min(52vw,260px)}
@media (max-width:720px){
  .contact-links .contact-link{grid-template-columns:1fr;gap:4px}
  .contact-links .contact-link small{max-width:100%;white-space:normal}
}

/* Contact/footer: align with the brand system and prevent long strings from
   creating horizontal overflow on real phones. */
.contact-links a,.social-link,.site-footer{min-width:0}
.contact-links a{overflow-wrap:anywhere}
.social-link-copy strong,.social-link-copy small{max-width:100%}
.site-footer>div{min-width:0}
.site-footer small{white-space:nowrap}

@media (max-width:980px){
  .nav-shell{grid-template-columns:minmax(0,1fr) auto}
  .hero{padding-top:108px}
  main>.section{padding-block:82px}
  .section-heading{margin-bottom:44px}
}

@media (max-width:720px){
  :root{--gutter:16px;--section-y:72px}
  html{scroll-padding-top:76px}
  body{min-width:0}
  .site-header{padding:8px var(--gutter)}
  .nav-shell{
    width:100%;
    grid-template-columns:minmax(0,1fr) auto;
    gap:8px;
    padding:7px 8px;
    border-radius:18px;
  }
  .brand-icon{width:30px;height:30px;font-size:12px}
  .brand{gap:8px}
  .brand-copy strong{font-size:12px}
  .brand-copy small{display:none}
  .nav-actions{gap:5px}
  .lang-switch{padding:7px 9px;font-size:7.5px}
  .menu-btn{width:34px;height:34px}
  .desktop-nav{display:none}

  .mobile-nav{width:100%;margin-top:7px;padding:6px;border-radius:16px}
  .mobile-nav a{padding:12px 10px;font-size:11px}

  .hero{min-height:calc(100svh - 4px);padding-top:94px;padding-bottom:58px}
  .hero-grid{gap:34px}
  .hero h1,html[dir="rtl"] .hero h1{
    max-width:100%;
    font-size:clamp(36px,11vw,56px);
    line-height:1.17;
    letter-spacing:-.018em;
  }
  .hero-lead,html[dir="rtl"] .hero-lead{max-width:100%;font-size:14px;line-height:1.85}
  .hero-signature{max-width:100%;overflow-wrap:anywhere}
  .cta-row{gap:8px;margin-top:24px}
  .cta-row .btn{flex:1 1 150px;min-width:0}
  .hero-proof-grid{margin-top:26px}
  .hero-proof-grid>div{min-width:0}
  .hero-stage{margin-top:2px}
  .hero-photo-wrap,.hero-media-reader.hero-video-wrap{width:100%;min-height:0;aspect-ratio:4/5}

  .section-heading{display:grid;grid-template-columns:1fr;gap:14px;margin-bottom:38px}
  .section-heading h2,html[dir="rtl"] .section-heading h2{max-width:100%;font-size:clamp(34px,9.5vw,50px);line-height:1.1}
  .section-heading>p{max-width:100%;font-size:13px;line-height:1.85}
  .story-grid{gap:26px}
  .story-quote{max-width:100%;font-size:clamp(30px,9.2vw,46px);line-height:1.08}
  .story-copy>p:not(.story-quote){max-width:100%;font-size:13px;line-height:1.9}
  .craft-feature{min-height:auto;padding:28px 0}
  .craft-stack>article{padding:20px 0}
  .product-grid{grid-template-columns:1fr;gap:14px}
  .product-card,.product-card:nth-child(n){grid-column:1}
  .product-media{aspect-ratio:1.1/1}
  .origin-box{min-height:540px}
  .origin-content{width:100%;max-width:100%;padding:28px 20px 26px}
  .origin-content h2,html[dir="rtl"] .origin-content h2{max-width:100%;font-size:clamp(34px,9.5vw,52px);line-height:1.08}
  .origin-content>p{max-width:100%;font-size:13px;line-height:1.85}
  .origin-pills{max-width:100%}
  .pill{max-width:100%;overflow-wrap:anywhere}
  .gallery{grid-template-columns:1fr 1fr;gap:8px;grid-auto-rows:30vw}
  .gallery-item,.gallery-item:nth-child(n){grid-column:span 1;grid-row:span 2}
  .gallery-item:nth-child(1){grid-column:1/-1;grid-row:span 4}
  .gallery-item:nth-child(5){grid-column:1/-1}
  .contact-grid{gap:36px}
  .contact-main h2,html[dir="rtl"] .contact-main h2{max-width:100%;font-size:clamp(36px,10vw,54px);line-height:1.08}
  .contact-main>p,.contact-direct>p{max-width:100%;font-size:13px;line-height:1.85}
  .contact-links{gap:7px}
  .site-footer{gap:12px;padding:22px var(--gutter);}
  .site-footer>div,.site-footer small{max-width:100%;white-space:normal}
  .back-home{min-width:86px;min-height:35px;font-size:0}
  .back-home strong{font-size:7.5px}
  .back-home span{font-size:12px}

  /* The progress rail becomes unobtrusive on phones. */
  .scroll-progress{right:2px;opacity:.55}
  html[dir="rtl"] .scroll-progress{right:auto;left:2px}
}

@media (max-width:430px){
  .hero{padding-top:88px}
  .hero h1,html[dir="rtl"] .hero h1{font-size:clamp(34px,10.6vw,48px)}
  .hero-lead,html[dir="rtl"] .hero-lead{font-size:13px}
  .hero-proof-grid{grid-template-columns:1fr}
  .hero-proof-grid>div{padding:12px 0;border-left:0;border-right:0;border-bottom:1px solid rgba(255,255,255,.09)}
  .hero-proof-grid>div:last-child{border-bottom:0}
  .intro-topline{font-size:7px}
  .intro-brand{font-size:clamp(48px,16vw,72px)}
  .intro-center p{font-size:11px;line-height:1.7}
}

@media (prefers-reduced-motion:reduce){
  .site-header,.nav-shell,.back-home,.intro-skip,.hero-photo-wrap,.product-card{transition:none!important}
}
/* 3.1 — Flagship image gallery: editorial Pinterest-style masonry.
   Scope: photographs only. Video, products, navigation and backend are untouched. */
.gallery-photo-collection{position:relative}
.gallery-photo-grid{
  display:block;
  columns:3 280px;
  column-gap:14px;
}
.gallery-photo-item{
  display:inline-block;
  width:100%;
  margin:0 0 14px;
  break-inside:avoid;
  -webkit-column-break-inside:avoid;
  position:relative;
  overflow:hidden;
  min-width:0;
  border-radius:22px!important;
  background:linear-gradient(145deg,#ded6c8,#c4b6a1);
  border:1px solid rgba(20,34,31,.08);
  box-shadow:0 14px 34px rgba(20,34,31,.08)!important;
  transition:transform .45s cubic-bezier(.22,.61,.36,1),box-shadow .45s ease,border-color .45s ease;
}
.gallery-photo-item .gallery-open{position:relative;z-index:0}
/* Deliberate aspect-ratio rhythm keeps the masonry organic while avoiding awkward crops. */
.gallery-photo-item:nth-child(1) .gallery-open{aspect-ratio:4/5}
.gallery-photo-item:nth-child(2) .gallery-open{aspect-ratio:5/4}
.gallery-photo-item:nth-child(3) .gallery-open{aspect-ratio:4/3}
.gallery-photo-item:nth-child(4) .gallery-open{aspect-ratio:4/5}
.gallery-photo-item:nth-child(5) .gallery-open{aspect-ratio:16/10}
.gallery-photo-item:nth-child(6) .gallery-open{aspect-ratio:4/3}
.gallery-photo-item:nth-child(7) .gallery-open{aspect-ratio:5/4}
.gallery-photo-item:nth-child(8) .gallery-open{aspect-ratio:3/4}
.gallery-photo-item::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:linear-gradient(145deg,rgba(255,255,255,.08),transparent 34%,rgba(7,16,12,.08) 100%);
  opacity:.8;
}
.gallery-photo-item::after{
  background:linear-gradient(180deg,transparent 42%,rgba(7,17,13,.70) 100%)!important;
  opacity:.9;
}
.gallery-photo-item img{
  filter:saturate(.97) contrast(1.015);
  transform:scale(1.002)!important;
  transition:transform .85s cubic-bezier(.16,.78,.15,1),filter .55s ease!important;
}
.gallery-photo-item:hover,
.gallery-photo-item:focus-within{
  transform:translateY(-4px)!important;
  border-color:rgba(201,139,60,.28);
  box-shadow:0 24px 52px rgba(20,34,31,.15)!important;
}
.gallery-photo-item:hover img,
.gallery-photo-item:focus-within img{
  transform:scale(1.055)!important;
  filter:saturate(1.045) contrast(1.035)!important;
}
.gallery-photo-meta{
  left:16px!important;
  right:16px!important;
  bottom:15px!important;
  padding-top:34px;
  background:linear-gradient(180deg,transparent 0%,rgba(10,22,19,.78) 100%);
}
.gallery-photo-meta span{font-size:9px;line-height:1.35}
.gallery-photo-meta b{font-size:9px!important}
.gallery-photo-item .gallery-open-icon{
  top:14px!important;
  right:14px!important;
  width:34px!important;
  height:34px!important;
  background:rgba(255,253,248,.88)!important;
  border-color:rgba(20,34,31,.10)!important;
  box-shadow:0 8px 22px rgba(20,34,31,.10);
  opacity:.96;
  transition:transform .35s ease,box-shadow .35s ease,background .35s ease;
}
.gallery-photo-item:hover .gallery-open-icon,
.gallery-photo-item:focus-within .gallery-open-icon{
  transform:translateY(-2px) scale(1.04)!important;
  background:#fffdf8!important;
  box-shadow:0 11px 25px rgba(20,34,31,.16);
}
.gallery-photo-collection .gallery-collection-head{margin-bottom:18px}
.gallery-photo-collection .gallery-collection-head span{letter-spacing:.20em}
.gallery-photo-collection .gallery-collection-head b{font-size:9px}

/* The viewer becomes a proper touch-first image reader. */
.gallery-lightbox{padding:clamp(10px,2.5vw,30px)!important}
.gallery-lightbox-panel{width:min(1480px,100%)!important;height:min(94svh,980px)!important;grid-template-columns:56px minmax(0,1fr) 56px!important;gap:14px!important}
.gallery-lightbox-media{height:100%;border-radius:24px;overflow:hidden}
.gallery-lightbox-media img{touch-action:pan-y;user-select:none;-webkit-user-drag:none}
.gallery-lightbox-caption{
  left:16px!important;
  right:auto!important;
  bottom:16px!important;
  max-width:min(76%,620px)!important;
  border-radius:14px;
  box-shadow:0 14px 40px rgba(0,0,0,.18);
}
.gallery-media-tools{right:14px!important;top:14px!important}
.gallery-close{top:10px!important;right:10px!important;width:42px!important;height:42px!important}
.gallery-prev,.gallery-next{width:48px!important;height:48px!important}

@media (max-width:1100px){
  .gallery-photo-grid{columns:2 300px;column-gap:11px}
  .gallery-photo-item{margin-bottom:11px}
}
@media (max-width:720px){
  .gallery-photo-grid{display:grid;columns:auto;grid-template-columns:repeat(2,minmax(0,1fr));gap:9px;align-items:start}
  .gallery-photo-item{display:block;width:auto;margin:0;break-inside:auto}
  .gallery-photo-item:nth-child(n){grid-column:span 1!important}
  .gallery-photo-item:nth-child(1){grid-column:1 / -1!important}
  .gallery-photo-item:nth-child(5){grid-column:1 / -1!important}
  .gallery-photo-item .gallery-open-icon{top:10px!important;right:10px!important;width:30px!important;height:30px!important}
  .gallery-photo-meta{left:11px!important;right:11px!important;bottom:10px!important;padding-top:26px}
  .gallery-photo-meta b{font-size:8px!important}
  .gallery-photo-meta span{font-size:8px}
  .gallery-lightbox-panel{height:92svh!important;grid-template-columns:36px minmax(0,1fr) 36px!important;gap:4px!important}
  .gallery-lightbox-media{border-radius:18px}
  .gallery-prev,.gallery-next{width:34px!important;height:34px!important}
  .gallery-close{top:7px!important;right:7px!important;width:38px!important;height:38px!important}
  .gallery-lightbox-caption{left:9px!important;bottom:9px!important;max-width:calc(100% - 18px)!important;padding:9px 11px!important}
  .gallery-media-tools{right:8px!important;top:8px!important;gap:4px!important;padding:4px!important}
  .gallery-media-tool{width:29px!important;height:29px!important}
}
@media (prefers-reduced-motion:reduce){
  .gallery-photo-item,.gallery-photo-item img,.gallery-photo-item .gallery-open-icon{transition:none!important}
}

/* Gallery viewer owns the viewport; the entire site header is out of flow while open. */
body.gallery-open .site-header,
body.gallery-opening .site-header{display:none!important;visibility:hidden!important;opacity:0!important;pointer-events:none!important;}

/* Media counters are numeric UI labels; keep their visual order stable in RTL. */
.hero-index, .intro-topline > #introSequence { direction:ltr; unicode-bidi:isolate; }

/* Intro: four distinct story phases */
.intro-phase-track{position:relative;width:min(760px,94vw);min-height:260px;display:grid;place-items:center}
.intro-phase{position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;opacity:0;visibility:hidden;transform:translate3d(18%,0,0) scale(.985);filter:blur(7px);pointer-events:none;transition:opacity .75s ease,transform 1.05s cubic-bezier(.16,.76,.18,1),filter .75s ease,visibility 0s linear .75s}
.intro-phase.is-after{transform:translate3d(18%,0,0) scale(.985)}
.intro-phase.is-before{transform:translate3d(-18%,0,0) scale(.985)}
.intro-phase.is-active{opacity:1;visibility:visible;transform:translate3d(0,0,0) scale(1);filter:none;pointer-events:auto;transition-delay:0s}
.intro-phase .intro-brand{margin-top:0}
.intro-phase>p{margin:.9rem auto 0;max-width:38ch}
.intro-phase-label{font-size:9px;letter-spacing:.24em;text-transform:uppercase;color:var(--gold-soft);opacity:.72;margin-bottom:18px;direction:ltr}
.intro-phase h1{margin:0;font-size:clamp(42px,8vw,88px);line-height:.95;letter-spacing:-.04em;font-weight:500}
.intro-phase-line{width:min(180px,35vw);height:1px;margin-top:22px;background:linear-gradient(90deg,transparent,var(--gold-soft),transparent);opacity:.7;transform:scaleX(.25);transition:transform .8s cubic-bezier(.16,.76,.18,1) .12s}
.intro-phase.is-active .intro-phase-line{transform:scaleX(1)}
.intro-phase-mark{width:112px;height:112px;margin:0 auto 18px;display:grid;place-items:center;opacity:.96;transform:translateY(9px) scale(.84);filter:drop-shadow(0 12px 24px rgba(0,0,0,.22));transition:opacity .75s ease,transform 1s cubic-bezier(.16,.76,.18,1)}
.intro-phase-mark svg{width:100%;height:100%;overflow:visible}
.intro-phase-mark .mark-ring{fill:rgba(12,24,20,.28);stroke:rgba(226,195,139,.58);stroke-width:1.2}
.intro-phase-mark path,.intro-phase-mark circle:not(.mark-ring){fill:none;stroke:var(--gold-soft);stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.intro-phase-mark .mark-sun{opacity:.78;stroke-width:1.5}
.intro-phase-mark .mark-cluster{fill:rgba(226,195,139,.12);stroke-width:1.6}
.intro-phase-mark .mark-leaf,.intro-phase-mark .mark-leaf-2{fill:rgba(226,195,139,.12);stroke-width:1.7}
.intro-phase-mark .mark-tray{fill:rgba(226,195,139,.12);stroke-width:1.7}
.intro-phase-mark .mark-dot{fill:var(--gold-soft);stroke:none}
.intro-phase.is-active .intro-phase-mark{opacity:1;transform:none}
.intro-phase.is-active .intro-phase-mark svg{animation:intro-mark-breathe 4.6s ease-in-out .35s both}
@keyframes intro-mark-breathe{0%,100%{transform:translateY(0) rotate(0deg)}50%{transform:translateY(-3px) rotate(.6deg)}}
@media (max-width:700px){.intro-phase-mark{width:94px;height:94px;margin-bottom:15px}}
@media (max-width:700px){.intro-phase-track{min-height:235px}.intro-phase>p{font-size:11px;line-height:1.85}.intro-phase h1{font-size:clamp(36px,12vw,62px)}.intro-phase-label{font-size:8px;letter-spacing:.18em}}
@media (prefers-reduced-motion:reduce){.intro-phase{transition:none!important;filter:none;transform:none}.intro-phase:not(.is-active){display:none}.intro-phase.is-before,.intro-phase.is-after{transform:none}.intro-phase-line{transition:none!important}}

/* 3.1.1 — Refined SparkMajhoul intro identity: protect the base phase and use a unified premium logo lockup. */
.intro-mark.spark-logo-mark{
  width:72px;
  height:72px;
  margin-bottom:20px;
  border:0;
  color:var(--gold-soft);
  filter:drop-shadow(0 12px 28px rgba(0,0,0,.24));
  transform:translateY(10px) scale(.92);
}
.intro-mark.spark-logo-mark svg{width:100%;height:100%;overflow:visible}
.intro-mark.spark-logo-mark .spark-logo-ring{fill:rgba(10,18,13,.18);stroke:rgba(226,195,139,.56);stroke-width:1}
.intro-mark.spark-logo-mark .spark-logo-palm{fill:none;stroke:url(#sparkLogoGold);stroke-width:2.2;stroke-linecap:round;stroke-linejoin:round}
.intro-mark.spark-logo-mark .spark-logo-date{fill:rgba(226,195,139,.14);stroke:url(#sparkLogoGold);stroke-width:1.8}
.intro-mark.spark-logo-mark .spark-logo-spark{fill:url(#sparkLogoGold);stroke:none}
.intro-screen.is-playing .intro-mark.spark-logo-mark{opacity:1;transform:none}
.intro-screen.is-playing .intro-mark.spark-logo-mark svg{animation:sparkLogoFloat 5s ease-in-out .2s both}
@keyframes sparkLogoFloat{0%,100%{transform:translateY(0) rotate(0deg)}50%{transform:translateY(-2px) rotate(.35deg)}}

/* Base / opening phase: deliberately keeps the original wordmark dominant instead of inheriting the compact phase-card treatment. */
.intro-phase[data-phase="0"]{
  gap:0;
  padding:0 6vw 10px;
  min-height:100%;
}
.intro-phase[data-phase="0"] .intro-phase-mark{
  width:124px;
  height:124px;
  margin-bottom:20px;
  filter:drop-shadow(0 18px 36px rgba(0,0,0,.28));
}
.intro-phase[data-phase="0"] .intro-phase-mark .mark-ring{
  fill:rgba(11,22,16,.34);
  stroke:rgba(226,195,139,.66);
  stroke-width:1.15;
}
.intro-phase[data-phase="0"] .intro-brand{
  display:flex;
  flex-direction:column;
  align-items:center;
  width:min(92vw,780px);
  margin:0;
  line-height:.8;
  letter-spacing:-.07em;
  text-shadow:0 18px 48px rgba(0,0,0,.22);
}
.intro-phase[data-phase="0"] .intro-brand span{
  font-size:clamp(58px,11vw,148px);
  line-height:.8;
}
.intro-phase[data-phase="0"] .intro-brand span:first-child{color:var(--intro-ink)}
.intro-phase[data-phase="0"] .intro-brand span+span{color:var(--gold-soft)}
.intro-phase[data-phase="0"]>p{
  max-width:34ch;
  margin-top:26px;
  font-size:clamp(13px,1.3vw,17px);
  line-height:1.9;
}
.intro-phase[data-phase="0"] .intro-promise{
  justify-content:center;
  margin-top:16px;
}
.intro-phase[data-phase="0"] .intro-rule{
  width:min(430px,74vw);
  margin-bottom:18px;
}
.intro-phase[data-phase="0"] .intro-phase-mark svg{animation:introBaseMark 5.4s ease-in-out .35s both}
@keyframes introBaseMark{0%,100%{transform:translateY(0)}50%{transform:translateY(-4px)}}

@media (max-width:700px){
  .intro-mark.spark-logo-mark{width:58px;height:58px;margin-bottom:16px}
  .intro-phase[data-phase="0"] .intro-phase-mark{width:102px;height:102px;margin-bottom:16px}
  .intro-phase[data-phase="0"]{padding-inline:3vw}
  .intro-phase[data-phase="0"] .intro-brand span{font-size:clamp(52px,16.5vw,84px)}
  .intro-phase[data-phase="0"]>p{font-size:11px;line-height:1.85;margin-top:18px}
}

@media (prefers-reduced-motion:reduce){
  .intro-mark.spark-logo-mark svg,.intro-phase[data-phase="0"] .intro-phase-mark svg{animation:none!important}
}

/* 3.1.2 — Responsive intro reconstruction
   Preserves the existing DOM + data flow while restoring a clean editorial lockup
   across phones, tablets and desktop. */
.intro-screen{
  --intro-safe-top: max(22px, env(safe-area-inset-top));
  --intro-safe-bottom: max(22px, env(safe-area-inset-bottom));
  isolation:isolate;
  padding:var(--intro-safe-top) var(--gutter) var(--intro-safe-bottom);
}
.intro-screen::before{inset:clamp(20px,4.5vw,72px);opacity:.9}
.intro-screen::after{opacity:.34}
.intro-noise{opacity:.026}
.intro-motif{opacity:.11}

.intro-center{
  width:min(100%,1160px);
  height:min(100%,760px);
  min-height:0;
  padding:0;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  flex:1 1 auto;
}
.intro-mark.spark-logo-mark{
  position:absolute;
  top:clamp(8px,2.5vh,28px);
  left:50%;
  z-index:4;
  width:clamp(48px,4.2vw,66px);
  height:clamp(48px,4.2vw,66px);
  margin:0;
  transform:translate(-50%,10px) scale(.92);
  opacity:0;
}
.intro-screen.is-playing .intro-mark.spark-logo-mark,
.intro-screen.is-ready .intro-mark.spark-logo-mark{
  transform:translate(-50%,0) scale(1);
}

.intro-phase-track{
  width:min(860px,calc(100vw - 88px));
  height:min(66vh,610px);
  min-height:0;
  margin:0 auto;
  position:relative;
  display:grid;
  place-items:center;
  overflow:visible;
}
.intro-phase{
  inset:0;
  padding:clamp(10px,2.5vh,24px) clamp(16px,4vw,48px);
  gap:0;
  justify-content:center;
  overflow:visible;
  transform:translate3d(8%,0,0) scale(.985);
}
.intro-phase.is-before{transform:translate3d(-8%,0,0) scale(.985)}
.intro-phase.is-after{transform:translate3d(8%,0,0) scale(.985)}
.intro-phase.is-active{transform:none}

.intro-phase-mark{
  width:clamp(96px,9.5vw,132px);
  height:clamp(96px,9.5vw,132px);
  margin:0 auto clamp(14px,2vh,22px);
}
.intro-phase-label{margin:0 0 clamp(10px,1.7vh,16px)}
.intro-phase h1{
  max-width:14ch;
  font-size:clamp(42px,6.8vw,86px);
  line-height:1.04;
  letter-spacing:-.045em;
  text-wrap:balance;
}
.intro-phase>p{
  max-width:min(44ch,72vw);
  margin:clamp(12px,2vh,20px) auto 0;
  font-size:clamp(12px,1.15vw,16px);
  line-height:1.85;
}
.intro-phase-line{margin-top:clamp(16px,2.6vh,24px)}

/* Phase 01 is the hero lockup: one icon, one wordmark, one sentence. */
.intro-phase[data-phase="0"]{
  padding:0 clamp(10px,4vw,56px);
  min-height:0;
  gap:0;
}
.intro-phase[data-phase="0"] .intro-phase-mark{
  width:clamp(92px,10.2vw,126px);
  height:clamp(92px,10.2vw,126px);
  margin-bottom:clamp(12px,1.7vh,18px);
}
.intro-phase[data-phase="0"] .intro-rule{
  width:min(420px,68vw);
  margin-bottom:clamp(12px,1.7vh,18px);
}
.intro-phase[data-phase="0"] .intro-brand{
  width:min(720px,88vw);
  margin:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  overflow:visible;
  line-height:.82;
  letter-spacing:-.065em;
}
.intro-phase[data-phase="0"] .intro-brand span{
  display:block;
  font-size:clamp(62px,9.8vw,142px);
  line-height:.82;
  transform:translateY(0);
}
.intro-phase[data-phase="0"]>p{
  max-width:min(42ch,80vw);
  margin-top:clamp(16px,2.2vh,24px);
  font-size:clamp(12px,1.15vw,16px);
  line-height:1.8;
}
.intro-phase[data-phase="0"] .intro-promise{margin-top:clamp(10px,1.6vh,16px)}

.intro-bottomline{
  min-height:24px;
  align-self:stretch;
  grid-template-columns:auto minmax(120px,auto) minmax(90px,1fr) auto;
  gap:clamp(12px,2vw,24px);
}
.intro-progress{margin-inline-start:0;min-width:0}
.intro-skip{
  inset-inline-end:0;
  bottom:calc(var(--intro-safe-bottom) + 36px);
  padding:8px 0;
}

@media (max-width:900px){
  .intro-center{height:min(72vh,650px)}
  .intro-phase-track{width:min(900px,calc(100vw - 56px));height:min(66vh,560px)}
  .intro-bottomline{grid-template-columns:1fr auto;row-gap:8px}
  .intro-bottomline .intro-progress{grid-column:1/-1;order:3}
  .intro-bottomline .intro-skip{grid-column:2;grid-row:1}
}

@media (max-width:600px){
  .intro-screen{padding:calc(12px + env(safe-area-inset-top)) 14px calc(14px + env(safe-area-inset-bottom))}
  .intro-screen::before{inset:16px 10px 18px}
  .intro-screen::after{opacity:.24}
  .intro-center{width:100%;height:auto;min-height:0}
  .intro-mark.spark-logo-mark{top:0;width:52px;height:52px}
  .intro-phase-track{width:100%;height:min(63vh,520px)}
  .intro-phase{padding:8px 14px}
  .intro-phase-mark{width:90px;height:90px;margin-bottom:12px}
  .intro-phase-label{font-size:7px;letter-spacing:.16em;margin-bottom:10px}
  .intro-phase h1{font-size:clamp(34px,11.5vw,56px);line-height:1.12;letter-spacing:-.035em}
  .intro-phase>p{font-size:11px;line-height:1.85;max-width:30ch;margin-top:12px}
  .intro-phase-line{margin-top:15px;width:120px}
  .intro-phase[data-phase="0"]{padding:0 8px}
  .intro-phase[data-phase="0"] .intro-phase-mark{width:90px;height:90px;margin-bottom:12px}
  .intro-phase[data-phase="0"] .intro-rule{width:min(300px,72vw);margin-bottom:12px}
  .intro-phase[data-phase="0"] .intro-brand{width:100%;line-height:.86;letter-spacing:-.055em}
  .intro-phase[data-phase="0"] .intro-brand span{font-size:clamp(50px,16vw,76px);line-height:.84}
  .intro-phase[data-phase="0"]>p{font-size:11px;max-width:29ch;margin-top:14px;line-height:1.8}
  .intro-phase[data-phase="0"] .intro-promise{font-size:8px;gap:8px;margin-top:10px}
  .intro-topline{font-size:6.5px;gap:8px;min-height:18px}
  .intro-bottomline{font-size:6.5px;gap:8px;min-height:34px;align-content:end}
  .intro-bottomline span:nth-child(2){font-size:6.5px;white-space:nowrap}
  .intro-progress{height:1px;margin-top:0}
  .intro-skip{position:absolute;inset-inline-end:12px;bottom:58px;font-size:8px}
  .intro-index{display:none}
}

@media (max-height:720px) and (max-width:600px){
  .intro-mark.spark-logo-mark{top:-1px;width:44px;height:44px}
  .intro-phase-track{height:min(62vh,420px)}
  .intro-phase[data-phase="0"] .intro-phase-mark{width:76px;height:76px;margin-bottom:8px}
  .intro-phase[data-phase="0"] .intro-brand span{font-size:clamp(42px,14vw,64px)}
  .intro-phase[data-phase="0"]>p{margin-top:10px;font-size:10px}
  .intro-phase[data-phase="0"] .intro-promise{margin-top:7px}
}

@media (min-width:1400px){
  .intro-phase-track{height:min(70vh,700px);width:min(980px,70vw)}
  .intro-phase[data-phase="0"] .intro-brand span{font-size:clamp(82px,8vw,154px)}
}

/* 3.1.4 — Field-to-box story journey: elevated editorial timeline */
.steps.dynamic-steps{
  position:relative;
  margin-top:42px;
  padding-top:0;
  border-top:0;
}
.steps-intro{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:16px;
  color:var(--gold);
  font-size:8px;
  font-weight:800;
  letter-spacing:.22em;
  text-transform:uppercase;
}
.steps-intro i{
  width:44px;
  height:1px;
  display:block;
  background:linear-gradient(90deg,var(--gold),rgba(189,147,80,0));
  opacity:.7;
}
.steps-rail{
  position:relative;
  display:grid;
  gap:8px;
}
.steps-rail::before{
  content:"";
  position:absolute;
  top:18px;
  bottom:18px;
  inset-inline-start:25px;
  width:1px;
  background:linear-gradient(180deg,rgba(189,147,80,.4),rgba(20,25,22,.08) 88%,transparent);
}
.step.dynamic-steps,
.dynamic-steps .step{
  position:relative;
  display:grid;
  grid-template-columns:52px minmax(0,1fr);
  align-items:center;
  gap:14px;
  min-height:82px;
  margin:0;
  padding:12px 14px;
  border:1px solid rgba(20,25,22,.08);
  border-radius:18px;
  background:linear-gradient(135deg,rgba(255,255,255,.66),rgba(241,236,224,.62));
  box-shadow:0 12px 28px rgba(24,29,24,.035),inset 0 1px 0 rgba(255,255,255,.75);
  overflow:hidden;
  transition:transform .4s var(--ease),border-color .4s var(--ease),box-shadow .4s var(--ease),background .4s var(--ease);
}
.dynamic-steps .step::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:0;
  background:radial-gradient(220px 100px at 100% 50%,rgba(189,147,80,.12),transparent 70%);
  transition:opacity .4s var(--ease);
}
.dynamic-steps .step:hover,
.dynamic-steps .step:focus-within{
  transform:translateY(-2px);
  border-color:rgba(189,147,80,.34);
  box-shadow:0 18px 38px rgba(24,29,24,.08),inset 0 1px 0 rgba(255,255,255,.82);
}
.dynamic-steps .step:hover::after,
.dynamic-steps .step:focus-within::after{opacity:1}
.step-symbol{
  position:relative;
  z-index:2;
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  flex:0 0 52px;
  border:1px solid rgba(189,147,80,.34);
  border-radius:50%;
  background:radial-gradient(circle at 34% 28%,rgba(255,255,255,.76),rgba(232,223,206,.48));
  box-shadow:0 7px 18px rgba(189,147,80,.07),inset 0 1px 0 rgba(255,255,255,.78);
}
.step-symbol::after{
  content:"";
  position:absolute;
  inset:5px;
  border:1px solid rgba(189,147,80,.16);
  border-radius:50%;
  pointer-events:none;
}
.step-symbol svg{width:30px;height:30px;display:block;overflow:visible}
.step-symbol g{fill:none;stroke:var(--gold-soft);stroke-width:1.65;stroke-linecap:round;stroke-linejoin:round}
.step-symbol g circle{fill:none;stroke:var(--gold);stroke-width:1.45}
.step-copy{min-width:0;position:relative;z-index:1}
.step-meta{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:5px;
}
.step-meta b{
  display:inline-block;
  color:var(--gold);
  font-size:9px;
  line-height:1;
  letter-spacing:.16em;
}
.step-meta span{
  width:20px;
  height:1px;
  background:rgba(189,147,80,.38);
}
.dynamic-steps .step strong{
  margin:0;
  color:var(--forest);
  font-size:13px;
  line-height:1.2;
  font-weight:800;
}
.dynamic-steps .step-desc{
  display:block;
  max-width:44ch;
  margin-top:5px;
  color:#6d746d;
  font-size:10px;
  line-height:1.6;
}
.dynamic-steps .step:nth-child(2) .step-symbol{border-color:rgba(154,112,64,.32)}
.dynamic-steps .step:nth-child(3) .step-symbol{border-color:rgba(107,125,100,.35)}
.dynamic-steps .step:nth-child(4) .step-symbol{border-color:rgba(165,133,87,.34)}
.dynamic-steps .step:nth-child(5) .step-symbol{border-color:rgba(120,91,55,.34)}

html[dir="rtl"] .steps-intro{flex-direction:row-reverse}
html[dir="rtl"] .steps-intro i{background:linear-gradient(270deg,var(--gold),rgba(189,147,80,0))}
html[dir="rtl"] .steps-rail::before{inset-inline-start:auto;inset-inline-end:25px}

@media (min-width:981px){
  .story-copy .dynamic-steps{max-width:620px}
}
@media (max-width:720px){
  .steps.dynamic-steps{margin-top:34px}
  .steps-intro{margin-bottom:13px;font-size:7px;letter-spacing:.18em}
  .steps-intro i{width:30px}
  .steps-rail{gap:7px}
  .steps-rail::before{inset-inline-start:22px;top:16px;bottom:16px}
  html[dir="rtl"] .steps-rail::before{inset-inline-end:22px}
  .dynamic-steps .step,
  .step.dynamic-steps{grid-template-columns:46px minmax(0,1fr);gap:12px;min-height:76px;padding:11px 11px;border-radius:16px}
  .step-symbol{width:46px;height:46px;flex-basis:46px}
  .step-symbol svg{width:30px;height:30px}
  .dynamic-steps .step strong{font-size:12px}
  .dynamic-steps .step-desc{font-size:9px;line-height:1.55}
}
@media (prefers-reduced-motion:reduce){
  .dynamic-steps .step{transition:none!important}
}

/* 3.1.5 — Story journey palette alignment
   Reuses the existing SparkMajhoul signature palette; no new accent colors. */
.steps.dynamic-steps{
  color:var(--ink);
}
.steps-intro{
  color:var(--gold-soft);
}
.steps-intro i{
  background:linear-gradient(90deg,var(--gold-soft),rgba(216,186,130,0));
}
.steps-rail::before{
  background:linear-gradient(180deg,rgba(189,147,80,.46),rgba(189,147,80,.12) 88%,transparent);
}
.dynamic-steps .step,
.step.dynamic-steps{
  border-color:rgba(20,25,22,.10);
  background:linear-gradient(135deg,rgba(251,249,243,.58),rgba(242,238,229,.38));
  box-shadow:0 16px 36px rgba(20,25,22,.045),inset 0 1px 0 rgba(255,255,255,.58);
}
.dynamic-steps .step::after{
  background:radial-gradient(260px 110px at 100% 50%,rgba(189,147,80,.10),transparent 72%);
}
.dynamic-steps .step:hover,
.dynamic-steps .step:focus-within{
  border-color:rgba(189,147,80,.34);
  box-shadow:0 20px 42px rgba(20,25,22,.07),inset 0 1px 0 rgba(255,255,255,.72);
}
.step-symbol{
  border-color:rgba(189,147,80,.38);
  background:linear-gradient(145deg,rgba(255,253,248,.88),rgba(232,223,206,.50));
  box-shadow:0 8px 20px rgba(20,25,22,.045),inset 0 1px 0 rgba(255,255,255,.72);
}
.step-symbol g{
  stroke:var(--gold-soft);
}
.step-symbol g circle{
  fill:rgba(189,147,80,.11);
  stroke:var(--gold);
}
.step-meta b{
  color:var(--gold);
}
.step-meta span{
  background:rgba(189,147,80,.34);
}
.dynamic-steps .step strong{
  color:var(--forest);
}
.dynamic-steps .step-desc{
  color:var(--muted);
}
.dynamic-steps .step:nth-child(n) .step-symbol{
  border-color:rgba(189,147,80,.34);
}

@media (prefers-color-scheme:dark){
  .steps.dynamic-steps{color:#f5f1e8}
  .steps-intro{color:var(--gold-soft)}
  .steps-intro i{
    background:linear-gradient(90deg,var(--gold-soft),rgba(216,186,130,0));
  }
  .steps-rail::before{
    background:linear-gradient(180deg,rgba(214,176,106,.44),rgba(214,176,106,.12) 88%,transparent);
  }
  .dynamic-steps .step,
  .step.dynamic-steps{
    border-color:rgba(232,194,127,.12);
    background:linear-gradient(145deg,rgba(255,255,255,.034),rgba(255,255,255,.014));
    box-shadow:0 18px 40px rgba(0,0,0,.18),inset 0 1px 0 rgba(255,255,255,.035);
  }
  .dynamic-steps .step::after{
    background:radial-gradient(260px 110px at 100% 50%,rgba(214,176,106,.12),transparent 72%);
  }
  .dynamic-steps .step:hover,
  .dynamic-steps .step:focus-within{
    border-color:rgba(232,194,127,.30);
    box-shadow:0 22px 46px rgba(0,0,0,.24),inset 0 1px 0 rgba(255,255,255,.05);
  }
  .step-symbol{
    border-color:rgba(232,194,127,.28);
    background:radial-gradient(circle at 35% 30%,rgba(255,255,255,.055),rgba(255,255,255,.018));
    box-shadow:0 8px 20px rgba(0,0,0,.16),inset 0 1px 0 rgba(255,255,255,.04);
  }
  .step-symbol circle{
    fill:rgba(214,176,106,.055);
    stroke:rgba(232,194,127,.36);
  }
  .step-symbol g{
    stroke:var(--gold-soft);
  }
  .step-symbol g circle{
    fill:rgba(214,176,106,.10);
    stroke:var(--gold-soft);
  }
  .step-meta b{color:var(--gold-soft)}
  .step-meta span{background:rgba(232,194,127,.26)}
  .dynamic-steps .step strong{color:#f5f1e8}
  .dynamic-steps .step-desc{color:#aeb4ad}
}

html[dir="rtl"] .steps-intro i{
  background:linear-gradient(270deg,var(--gold-soft),rgba(216,186,130,0));
}

/* 3.1.2 — Unified SparkMajhoul signature mark: reuse the exact intro logo geometry site-wide. */
.brand-icon.spark-brand-logo,
.loader-mark.spark-loader-logo{
  display:grid!important;
  place-items:center;
  overflow:hidden;
  padding:0;
}
.brand-icon.spark-brand-logo svg,
.loader-mark.spark-loader-logo svg{
  width:100%;
  height:100%;
  display:block;
}
.brand-icon.spark-brand-logo .spark-brand-ring,
.loader-mark.spark-loader-logo .spark-loader-ring{
  fill:rgba(10,18,13,.18);
  stroke:rgba(226,195,139,.62);
  stroke-width:1;
}
.brand-icon.spark-brand-logo .spark-brand-palm,
.brand-icon.spark-brand-logo .spark-brand-date,
.loader-mark.spark-loader-logo .spark-loader-palm,
.loader-mark.spark-loader-logo .spark-loader-date{
  fill:none;
  stroke:url(#sparkNavGold);
  stroke-width:2.2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.brand-icon.spark-brand-logo .spark-brand-date,
.loader-mark.spark-loader-logo .spark-loader-date{
  fill:rgba(226,195,139,.14);
  stroke-width:1.8;
}
.brand-icon.spark-brand-logo .spark-brand-spark,
.loader-mark.spark-loader-logo .spark-loader-spark{
  fill:url(#sparkNavGold);
  stroke:none;
}
.loader-mark.spark-loader-logo .spark-loader-ring{
  stroke:url(#sparkLoaderGold);
}
.loader-mark.spark-loader-logo{
  color:var(--gold-soft)!important;
  font-size:0!important;
}
@media (prefers-reduced-motion:reduce){
  .brand-icon.spark-brand-logo svg,
  .loader-mark.spark-loader-logo svg{animation:none!important}
}

/* Signature logo lockup — one canonical SparkMajhoul emblem across brand surfaces. */
.footer-brand-lockup{display:flex;align-items:center;gap:12px}
.footer-brand-mark{width:44px;height:44px;display:grid;place-items:center;flex:0 0 44px}
.footer-brand-mark img{display:block;width:100%;height:100%;object-fit:contain}
.footer-brand-lockup>span:last-child{display:flex;flex-direction:column;gap:3px}
@media (max-width:560px){.footer-brand-lockup{gap:9px}.footer-brand-mark{width:38px;height:38px;flex-basis:38px}}

/* 3.2.0 — Field-to-box journey polish
   Mobile: restore a full-width, balanced editorial timeline so the process cards
   use the available canvas instead of collapsing toward one side. */
.steps.dynamic-steps,
.steps-rail,
.dynamic-steps .step{
  width:100%;
  max-width:none;
}
.steps-rail{
  margin-inline:0;
}

@media (max-width:720px){
  .story-copy{
    width:100%;
    max-width:none;
  }

  .steps.dynamic-steps{
    width:100%;
    margin-top:38px;
    padding-inline:0;
  }

  .steps-intro{
    width:100%;
    justify-content:flex-start;
    margin-bottom:14px;
    font-size:8px;
  }

  html[dir="rtl"] .steps-intro{
    justify-content:flex-start;
  }

  .steps-rail{
    width:100%;
    gap:10px;
    padding:0;
  }

  .steps-rail::before{
    inset-inline-end:23px;
    inset-inline-start:auto;
    top:16px;
    bottom:16px;
    opacity:.75;
  }

  .dynamic-steps .step,
  .step.dynamic-steps{
    width:100%;
    min-height:82px;
    grid-template-columns:48px minmax(0,1fr);
    gap:13px;
    padding:12px 13px;
    border-radius:17px;
    align-items:center;
  }

  .step-symbol{
    width:48px;
    height:48px;
    flex-basis:48px;
  }

  .step-symbol svg{
    width:39px;
    height:48px;
  }

  .step-copy{
    min-width:0;
  }

  .step-meta{
    margin-bottom:4px;
  }

  .step-meta b{
    font-size:8px;
  }

  .step-meta span{
    width:18px;
  }

  .dynamic-steps .step strong{
    display:block;
    font-size:13px;
    line-height:1.35;
  }

  .dynamic-steps .step-desc{
    max-width:none;
    margin-top:4px;
    font-size:10px;
    line-height:1.65;
  }
}

@media (max-width:430px){
  .steps.dynamic-steps{
    margin-top:34px;
  }

  .steps-rail{
    gap:8px;
  }

  .dynamic-steps .step,
  .step.dynamic-steps{
    min-height:78px;
    grid-template-columns:45px minmax(0,1fr);
    gap:11px;
    padding:11px 11px;
    border-radius:16px;
  }

  .step-symbol{
    width:45px;
    height:45px;
    flex-basis:45px;
  }

  .step-symbol svg{
    width:37px;
    height:46px;
  }

  .steps-rail::before{
    inset-inline-end:21px;
  }

  .dynamic-steps .step strong{
    font-size:12px;
  }

  .dynamic-steps .step-desc{
    font-size:9px;
    line-height:1.6;
  }
}


/* 3.3.0 — Flagship responsive systems pass
   Goal: one visual system across phones, tablets, laptops and large screens.
   Keeps the existing SparkMajhoul palette and content architecture intact. */
:root{
  --content-max:1440px;
  --text-max:68ch;
  --section-pad:clamp(72px,8vw,132px);
  --card-radius:clamp(18px,1.6vw,28px);
  --mobile-gutter:max(18px,env(safe-area-inset-left));
}

/* Prevent layout shifts and make embedded content behave predictably. */
html,body{max-width:100%;}
body{overflow-x:clip;}
main,.site-footer{isolation:isolate;}
.section-inner{width:min(var(--content-max),calc(100% - 2*clamp(18px,4.2vw,64px)));}

/* Header: stable, compact and touch-safe at every width. */
.site-header{z-index:80;}
.nav-shell{min-height:68px;width:min(var(--content-max),calc(100% - 2*clamp(18px,4.2vw,64px)));}
.brand{min-width:0;}
.brand-copy{min-width:0;}
.brand-copy strong,.brand-copy small{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.desktop-nav a,.lang-switch,.menu-btn{min-height:44px;}
.menu-btn{min-width:44px;}
.lang-switch{padding-inline:13px;white-space:nowrap;}
.mobile-nav{width:min(var(--content-max),calc(100% - 2*clamp(18px,4.2vw,64px)));margin-inline:auto;}

/* Section rhythm: retain editorial breathing room without huge dead zones. */
main>.section{padding-block:var(--section-pad);}
.hero{padding-top:clamp(104px,10vw,156px);}
.section-heading{max-width:var(--content-max);}
.section-heading>p,.story-copy>p:not(.story-quote),.craft-feature p,.contact-main>p{max-width:var(--text-max);}

/* Journey — desktop: two-column editorial composition. */
#story .story-grid{grid-template-columns:minmax(0,0.88fr) minmax(0,1.12fr);gap:clamp(40px,7vw,116px);}
#story .media-card{width:100%;aspect-ratio:4/5;min-height:0;max-height:820px;}
#story .story-copy{width:100%;max-width:720px;padding-top:clamp(0px,.5vw,8px);}
#story .story-quote{max-width:12ch;}
#story .steps.dynamic-steps{width:100%;max-width:720px;margin-top:clamp(30px,3vw,44px);}
#story .steps-rail{width:100%;}
#story .dynamic-steps .step{min-width:0;}

/* Journey — wide desktop: slightly larger type, never stretched awkwardly. */
@media (min-width:1280px){
  #story .story-grid{grid-template-columns:minmax(420px,5fr) minmax(520px,7fr);}
  #story .story-quote{font-size:clamp(52px,4.6vw,74px);}
  #story .dynamic-steps .step{min-height:94px;grid-template-columns:58px minmax(0,1fr);gap:16px;padding:15px 16px;border-radius:20px;}
  #story .step-symbol{width:58px;height:58px;flex-basis:58px;}
  #story .step-symbol svg{width:46px;height:58px;}
  #story .dynamic-steps .step strong{font-size:14px;}
  #story .dynamic-steps .step-desc{font-size:11px;line-height:1.65;}
}

/* Laptop/tablet: stack before the composition gets cramped. */
@media (max-width:1100px){
  .section-inner{width:min(1100px,calc(100% - 40px));}
  .nav-shell,.mobile-nav{width:min(1100px,calc(100% - 40px));}
  #story .story-grid{grid-template-columns:1fr;gap:clamp(34px,6vw,56px);}
  #story .media-card{aspect-ratio:16/10;max-height:none;}
  #story .story-copy{max-width:840px;}
  #story .story-quote{max-width:15ch;}
  #story .steps.dynamic-steps{max-width:840px;}
}

/* Tablet portrait: comfortable reading and touch targets. */
@media (max-width:820px){
  :root{--section-pad:clamp(64px,9vw,96px);}
  .section-inner{width:calc(100% - 36px);}
  .nav-shell,.mobile-nav{width:calc(100% - 36px);}
  .hero{padding-top:96px;}
  .section-heading{gap:16px;margin-bottom:44px!important;}
  .section-heading h2{font-size:clamp(38px,7.2vw,60px)!important;}
  #story .media-card{aspect-ratio:3/2;border-radius:22px!important;}
  #story .story-quote{font-size:clamp(34px,7vw,54px);}
  .product-grid{gap:16px;}
}

/* Phone: edge-safe, balanced and intentionally simple. */
@media (max-width:600px){
  :root{--section-pad:clamp(58px,15vw,82px);}
  html{scroll-padding-top:82px;}
  .section-inner{width:calc(100% - 28px);}
  .nav-shell,.mobile-nav{width:calc(100% - 24px);}
  .site-header{padding:8px 12px!important;}
  .nav-shell{min-height:56px;padding-block:0;}
  .brand-copy small{display:none;}
  .brand-copy strong{font-size:13px;}
  .brand-icon{width:42px!important;height:42px!important;flex-basis:42px!important;}
  .lang-switch{min-height:42px;padding-inline:10px;font-size:10px;}
  .menu-btn{width:42px;height:42px;min-width:42px;}
  .mobile-nav{margin-top:8px;border-radius:18px;overflow:hidden;}
  .mobile-nav a{min-height:48px;display:flex;align-items:center;}
  main>.section{padding-block:var(--section-pad);}
  .hero{padding-top:86px;padding-bottom:64px;}
  .hero-grid{gap:28px!important;}
  .hero-stage{margin-inline:auto;width:100%;}
  .hero-photo-wrap,.hero-media-reader.hero-video-wrap{border-radius:20px!important;}
  .section-heading{margin-bottom:34px!important;}
  .section-heading h2{font-size:clamp(32px,10.5vw,48px)!important;line-height:1.08;}
  .section-heading>p{font-size:13px;line-height:1.9;}
  #story .story-grid{gap:28px;}
  #story .media-card{aspect-ratio:4/3;border-radius:18px!important;}
  #story .story-copy{padding:0;}
  #story .story-quote{max-width:100%;font-size:clamp(29px,9.7vw,44px);line-height:1.1;}
  #story .steps.dynamic-steps{margin-top:30px;max-width:none;}
  #story .steps-intro{margin-bottom:12px;font-size:7px;}
  #story .steps-rail{gap:8px;}
  #story .steps-rail::before{top:18px;bottom:18px;opacity:.62;}
  #story .dynamic-steps .step{grid-template-columns:44px minmax(0,1fr);gap:11px;min-height:76px;padding:11px 10px;border-radius:15px;}
  #story .step-symbol{width:44px;height:44px;flex-basis:44px;}
  #story .step-symbol svg{width:36px;height:44px;}
  #story .dynamic-steps .step strong{font-size:12px;line-height:1.35;}
  #story .dynamic-steps .step-desc{font-size:9px;line-height:1.62;margin-top:3px;}
  .product-grid{grid-template-columns:1fr!important;}
  .product-card,.product-card:nth-child(n){grid-column:1!important;}
  .origin-box{min-height:0;}
  .contact-grid{gap:28px!important;}
  .site-footer{padding-inline:14px;padding-bottom:calc(24px + env(safe-area-inset-bottom));}
  .back-home{bottom:calc(14px + env(safe-area-inset-bottom));}
}

/* Very small phones: avoid text/card collisions at 320–360 px. */
@media (max-width:380px){
  .section-inner{width:calc(100% - 22px);}
  .nav-shell,.mobile-nav{width:calc(100% - 18px);}
  .brand-copy strong{font-size:12px;}
  .lang-switch{padding-inline:8px;font-size:9px;}
  #story .dynamic-steps .step{grid-template-columns:40px minmax(0,1fr);gap:9px;padding:10px 9px;}
  #story .step-symbol{width:40px;height:40px;flex-basis:40px;}
  #story .step-symbol svg{width:33px;height:41px;}
  #story .dynamic-steps .step strong{font-size:11px;}
  #story .dynamic-steps .step-desc{font-size:8.5px;}
}

/* Landscape phones: use width efficiently rather than producing a tall stack. */
@media (max-height:560px) and (orientation:landscape) and (max-width:900px){
  .hero{min-height:auto!important;padding-top:84px;padding-bottom:58px;}
  .hero-grid{grid-template-columns:minmax(0,1fr) minmax(280px,.9fr)!important;align-items:center;}
  .hero-stage{margin-top:0;}
  .hero-photo-wrap,.hero-media-reader.hero-video-wrap{aspect-ratio:16/10;}
  main>.section{padding-block:58px;}
}

/* High-resolution/large-screen polish: constrain line length instead of stretching content. */
@media (min-width:1600px){
  .section-inner,.nav-shell,.mobile-nav{width:min(1440px,calc(100% - 120px));}
  main>.section{padding-block:clamp(100px,8vw,148px);}
}

/* Accessibility and device resilience. */
@media (pointer:coarse){
  .desktop-nav a,.lang-switch,.menu-btn,.btn,.mobile-nav a,.back-home{touch-action:manipulation;}
}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto;}
  .site-header,.mobile-nav,.back-home,*{transition-duration:0.01ms!important;animation-duration:0.01ms!important;animation-iteration-count:1!important;}
}
@media (forced-colors:active){
  .site-header,.mobile-nav,.btn,.menu-btn,.lang-switch,.dynamic-steps .step,.step-symbol{forced-color-adjust:auto;}
}

/* RTL: preserve reading order while keeping the journey rail aligned to the brand side. */
html[dir="rtl"] #story .story-copy{text-align:right;}
html[dir="rtl"] #story .steps-rail::before{inset-inline-start:auto;inset-inline-end:24px;}
@media (max-width:600px){html[dir="rtl"] #story .steps-rail::before{inset-inline-end:22px;}}


/* 3.4.2 — Journey icon system: one scale, one visual language, no nested SVG circles */
.dynamic-steps .step-symbol{
  width:52px;height:52px;flex:0 0 52px;
}
.dynamic-steps .step-symbol svg{width:30px;height:30px;
  transform:translateZ(0);
}
.dynamic-steps .step-symbol g{stroke-width:1.7}
.dynamic-steps .step-symbol g circle{fill:none}
@media (max-width:720px){
  .dynamic-steps .step-symbol{width:46px;height:46px;flex-basis:46px}
  .dynamic-steps .step-symbol::after{inset:4px}
  .dynamic-steps .step-symbol svg{width:27px;height:27px}
}

/* 3.4.2 FINAL — Journey symbols and process rail alignment */
#story .dynamic-steps .step-symbol,
#story .dynamic-steps .step-symbol svg{
  box-sizing:border-box;
}
#story .dynamic-steps .step-symbol{width:52px;height:52px;flex-basis:52px;}
#story .dynamic-steps .step-symbol svg{width:30px!important;height:30px!important;display:block;}
#story .dynamic-steps .step-symbol::after{inset:5px;}
#story .dynamic-steps .step-symbol g{stroke-width:1.7;}
#story .dynamic-steps .step-symbol g circle{fill:none;}
#story .steps-rail::before{
  inset-inline-start:26px;
  inset-inline-end:auto;
}
html[dir="rtl"] #story .steps-rail::before{
  inset-inline-start:auto;
  inset-inline-end:26px;
}
@media (min-width:1280px){
  #story .dynamic-steps .step-symbol{width:58px;height:58px;flex-basis:58px;}
  #story .dynamic-steps .step-symbol svg{width:34px!important;height:34px!important;}
  #story .dynamic-steps .step-symbol::after{inset:6px;}
  #story .steps-rail::before{inset-inline-start:29px;}
  html[dir="rtl"] #story .steps-rail::before{inset-inline-start:auto;inset-inline-end:29px;}
}
@media (max-width:1100px){
  #story .dynamic-steps .step-symbol{width:48px;height:48px;flex-basis:48px;}
  #story .dynamic-steps .step-symbol svg{width:29px!important;height:29px!important;}
  #story .dynamic-steps .step-symbol::after{inset:5px;}
  #story .steps-rail::before{inset-inline-start:24px;}
  html[dir="rtl"] #story .steps-rail::before{inset-inline-start:auto;inset-inline-end:24px;}
}
@media (max-width:600px){
  #story .dynamic-steps .step-symbol{width:44px;height:44px;flex-basis:44px;}
  #story .dynamic-steps .step-symbol svg{width:27px!important;height:27px!important;}
  #story .dynamic-steps .step-symbol::after{inset:4px;}
  #story .steps-rail::before{inset-inline-start:22px;top:18px;bottom:18px;}
  html[dir="rtl"] #story .steps-rail::before{inset-inline-start:auto;inset-inline-end:22px;}
}
@media (max-width:380px){
  #story .dynamic-steps .step-symbol{width:40px;height:40px;flex-basis:40px;}
  #story .dynamic-steps .step-symbol svg{width:25px!important;height:25px!important;}
  #story .steps-rail::before{inset-inline-start:20px;}
  html[dir="rtl"] #story .steps-rail::before{inset-inline-start:auto;inset-inline-end:20px;}
}

/* 3.5 — Flagship header + hero layout polish
   Focus: stronger hierarchy, cleaner top chrome, balanced whitespace,
   and consistent sizing from phones to large displays. */
.site-header{
  padding:14px var(--gutter);
}
.nav-shell{
  min-height:64px;
  padding:8px 10px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:22px;
  background:linear-gradient(180deg,rgba(9,25,16,.78),rgba(9,20,14,.62));
  box-shadow:0 14px 42px rgba(0,0,0,.16);
  backdrop-filter:blur(18px) saturate(1.08);
  -webkit-backdrop-filter:blur(18px) saturate(1.08);
}
.brand{padding-inline:8px}
.brand-icon{width:40px;height:40px;font-size:14px;background:rgba(189,147,80,.07)}
.brand-copy strong{font-size:14px}
.brand-copy small{font-size:7px}
.desktop-nav{gap:clamp(18px,2.3vw,34px);font-size:9px}
.desktop-nav a{padding:10px 0}
.nav-actions{padding-inline:4px}
.lang-switch{min-height:36px;padding:9px 13px}
.menu-btn{width:42px;height:40px}
.site-header.scrolled .nav-shell{min-height:58px}

.hero{
  min-height:min(960px,100svh);
  padding-top:142px;
  padding-bottom:86px;
}
.hero-grid{
  grid-template-columns:minmax(0,1.04fr) minmax(360px,.96fr);
  gap:clamp(44px,7vw,110px);
}
.hero-copy{max-width:760px}
.hero h1{
  max-width:10ch;
  font-size:clamp(60px,7.6vw,112px);
  line-height:.9;
  margin-top:20px;
}
.hero-lead{max-width:600px}
.cta-row{margin-top:30px}
.hero-note{margin-top:48px}
.hero-stage{min-height:620px}
.hero-photo-wrap{
  width:min(100%,560px);
  aspect-ratio:5 / 6;
  border-radius:28px;
}
.hero-photo-wrap::before{inset:12px;border-radius:18px}
.hero-marker{left:-18px;bottom:24px;border-radius:14px}
.hero-index{top:22px}

/* Tablet: simplify the composition before the phone breakpoint. */
@media (max-width:980px){
  .site-header{padding:12px var(--gutter)}
  .nav-shell{min-height:60px}
  .hero{min-height:auto;padding-top:124px;padding-bottom:76px}
  .hero-grid{grid-template-columns:1fr;gap:48px}
  .hero-copy{max-width:760px}
  .hero h1{max-width:11ch;font-size:clamp(58px,9.5vw,92px)}
  .hero-stage{min-height:auto;justify-content:center}
  .hero-photo-wrap{width:min(100%,680px);aspect-ratio:16 / 11}
  .hero-marker{left:18px}
}

/* Phone: header becomes a compact control bar and hero reads in one clear flow. */
@media (max-width:720px){
  .site-header{padding:9px 14px}
  .nav-shell{
    min-height:58px;
    padding:7px 8px;
    border-radius:19px;
    grid-template-columns:auto minmax(0,1fr) auto;
  }
  .brand{padding-inline:5px;gap:8px;justify-self:center}
  .brand-icon{width:36px;height:36px}
  .brand-copy strong{font-size:12px}
  .brand-copy small{font-size:6px;margin-top:2px}
  .nav-actions{gap:5px;justify-self:start}
  .lang-switch{min-height:34px;padding:8px 10px;font-size:8px}
  .menu-btn{width:38px;height:36px}

  .hero{padding-top:104px;padding-bottom:62px}
  .hero-grid{gap:32px}
  .hero h1{max-width:10ch;font-size:clamp(50px,14.4vw,76px);line-height:.92;margin:18px 0 22px}
  .hero-lead{font-size:15px;line-height:1.7;max-width:46ch}
  .hero-signature{margin-top:22px;gap:8px}
  .cta-row{margin-top:24px}
  .hero-proof-grid{margin-top:34px}
  .hero-scrollcue{margin-top:22px}
  .hero-stage{margin-top:4px}
  .hero-photo-wrap{width:100%;aspect-ratio:4 / 3;border-radius:22px}
  .hero-photo-wrap::before{inset:9px;border-radius:15px}
  .hero-marker{left:12px;bottom:12px;width:170px;padding:11px 12px;border-radius:12px}
  html[dir="rtl"] .hero-marker{left:auto;right:12px}
  .hero-index{right:9px;top:16px}
}

@media (max-width:430px){
  .nav-shell{grid-template-columns:auto 1fr auto}
  .brand-copy small{display:none}
  .hero{padding-top:100px}
  .hero h1{font-size:clamp(46px,14vw,64px)}
  .hero-proof-grid{gap:0}
  .hero-photo-wrap{aspect-ratio:1 / 1.04}
}

@media (min-width:1600px){
  :root{--max:1440px;--gutter:64px}
  .hero-grid{gap:120px}
  .hero h1{font-size:116px}
  .hero-photo-wrap{width:580px}
}

/* Production 4.0 — performance, accessibility and responsive finishing layer */
html{scroll-behavior:smooth} body{overflow-x:hidden} img,video{max-width:100%;height:auto} a,button{touch-action:manipulation} :where(a,button,input,select,textarea):focus-visible{outline:2px solid var(--gold,#d5ae6c);outline-offset:4px} .media-failed{display:none!important} @media (prefers-reduced-motion:reduce){html{scroll-behavior:auto!important}.reveal,.section{transition:none!important}.ambient,.intro-motif,.intro-noise{animation:none!important}} @media (max-width:640px){.section-inner{width:min(100% - 28px,1120px)} .site-header .nav-shell{padding-inline:14px}.hero-grid{gap:24px}.hero-copy h1{max-width:100%}.hero-proof-grid{grid-template-columns:1fr}.cta-row{flex-wrap:wrap}.cta-row .btn{flex:1 1 100%;min-height:48px}.contact-links{grid-template-columns:1fr}.contact-link{min-height:64px}.gallery-video-shell,.hero-video-wrap{border-radius:18px;overflow:hidden}.origin-box{border-radius:22px}.product-grid{grid-template-columns:1fr}}
@media (min-width:641px) and (max-width:1100px){.hero-grid{grid-template-columns:1fr;}.hero-stage{max-width:900px;margin-inline:auto}.hero-proof-grid{grid-template-columns:repeat(3,1fr)}}
@media (min-width:1600px){.section-inner{width:min(100% - 96px,1440px)}}

/* 4.1 production accessibility and rendering hardening */
.skip-link{position:fixed;inset-inline-start:16px;top:12px;z-index:9999;transform:translateY(-180%);padding:10px 14px;border-radius:999px;background:#eee9dc;color:#10221f;font-weight:700;box-shadow:0 8px 30px rgba(0,0,0,.18);transition:transform .2s ease}
.skip-link:focus{transform:translateY(0)}
:focus-visible{outline:2px solid rgba(241,212,154,.95);outline-offset:4px}
img,svg,video{max-width:100%}
@media (max-width:380px){.section-inner{padding-inline:16px}.nav-shell{padding-inline:14px}.brand-copy strong{font-size:.92rem}.brand-copy small{font-size:.68rem}}
@media (min-width:1440px){.section-inner,.nav-shell{max-width:1240px}}
@media (prefers-reduced-motion:reduce){.skip-link{transition:none}}
/* Production hero media controls: single authoritative route — play/pause + fullscreen only. */
.hero-media-reader .media-ui{
  grid-template-columns:1fr;
  width:max-content;
  max-width:calc(100% - 24px);
  left:auto;
  right:14px;
  bottom:14px;
  padding:8px;
  border-radius:999px;
}
html[dir="rtl"] .hero-media-reader .media-ui{left:14px;right:auto}
.hero-media-reader .media-ui-state,
.hero-media-reader .media-ui-time,
.hero-media-reader .media-ui-progress{display:none!important}
.hero-media-reader .media-ui-toolbar{
  grid-column:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  flex-wrap:nowrap;
  overflow:visible;
}
.hero-media-reader .media-ui-btn{
  width:38px;
  height:38px;
  flex:0 0 38px;
  font-size:11px;
}
.hero-media-reader .media-ui-btn span{font-size:11px}
.hero-media-reader .media-ui-btn.media-ui-full{border-color:rgba(231,203,147,.32)}
.hero-media-reader .media-ui-btn.media-ui-full:hover,
.hero-media-reader .media-ui-btn.media-ui-full:focus-visible{border-color:rgba(231,203,147,.62)}
.hero-video{transition:opacity .22s ease,transform 1.2s var(--ease),filter .7s var(--ease)}
.hero-video.is-switching{opacity:.2}
@media (max-width:640px){
  .hero-media-reader .media-ui{right:10px;bottom:10px;padding:7px}
  html[dir="rtl"] .hero-media-reader .media-ui{left:10px;right:auto}
  .hero-media-reader .media-ui-btn{width:36px;height:36px;flex-basis:36px}
}

/* Guard against legacy/duplicate hero control elements. */
.hero-media-reader .media-ui-mute,.hero-media-reader .media-ui-seekback,.hero-media-reader .media-ui-seekforward,.hero-media-reader .media-ui-rate,.hero-media-reader .media-ui-pip,.hero-media-reader .media-ui-share{display:none!important}
