/* Mille Riyadh LP — RH-inspired editorial */

@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Montserrat:wght@300;400;500;600&family=Tajawal:wght@300;400;500;700&family=Amiri:ital,wght@0,400;0,700;1,400&display=swap');

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #0f0d0a;
  color: #f0e6d8;
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
[dir=rtl] body { font-family: 'Tajawal', 'Segoe UI', sans-serif; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
h1,h2,h3,h4 { font-family: 'Cormorant', Georgia, serif; font-weight: 300; line-height: 1.1; letter-spacing: -0.01em; }
[dir=rtl] h1,[dir=rtl] h2,[dir=rtl] h3 { font-family: 'Amiri', 'Cormorant', Georgia, serif; letter-spacing: 0; }

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 40px;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(180deg, rgba(15,13,10,.85) 0%, rgba(15,13,10,0) 100%);
  transition: background .4s ease;
}
nav.scrolled { background: rgba(15,13,10,.96); backdrop-filter: blur(12px); }
.nav-logo {
  font-family: 'Cormorant', serif; font-size: 28px; font-weight: 400;
  letter-spacing: 4px; color: #f5ebe0; text-transform: uppercase;
}
.nav-logo em { font-style: italic; font-weight: 300; font-size: 11px; letter-spacing: 3px; display: block; margin-bottom: -4px; opacity: .7; }
.nav-links {
  display: flex; gap: 32px; list-style: none;
  font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
}
.nav-links a { color: #d8cfc3; transition: color .2s; }
.nav-links a:hover { color: #d8b5a6; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.lang-toggle {
  font-size: 11px; letter-spacing: 2px; font-weight: 500;
  text-transform: uppercase; color: #d8cfc3;
  padding: 6px 14px; border: 1px solid rgba(200,161,146,.3); border-radius: 2px;
  transition: all .2s;
}
.lang-toggle:hover { border-color: #c8a192; color: #f5ebe0; }
.nav-burger {
  display: none; background: none; border: 0; cursor: pointer;
  width: 32px; height: 24px; position: relative;
}
.nav-burger span {
  position: absolute; left: 0; right: 0; height: 1px; background: #f5ebe0;
  transition: transform .3s;
}
.nav-burger span:nth-child(1) { top: 4px; }
.nav-burger span:nth-child(2) { top: 12px; }
.nav-burger span:nth-child(3) { top: 20px; }
@media (max-width: 900px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .nav-logo { font-size: 22px; letter-spacing: 3px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; width: 100vw; height: 100vh; min-height: 600px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img,
.hero-media video {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 20s ease-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); } to { transform: scale(1.08); }
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.1) 40%, rgba(15,13,10,.85) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2; text-align: center; max-width: 1100px;
  padding: 0 30px; margin-top: -40px;
}
.hero-kicker {
  font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 5px; text-transform: uppercase; color: #d8b5a6;
  margin-bottom: 24px; opacity: 0; animation: fadeUp 1.2s ease .5s forwards;
}
.hero-title {
  font-size: clamp(48px, 9vw, 108px); font-weight: 300; letter-spacing: -0.02em;
  line-height: 0.98; color: #f5ebe0; margin-bottom: 22px;
  opacity: 0; animation: fadeUp 1.4s ease .8s forwards;
}
.hero-title em { font-style: italic; font-weight: 300; color: #d8b5a6; }
.hero-sub {
  font-family: 'Cormorant', serif; font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 300; font-style: italic; color: #e8ddc9;
  margin-bottom: 48px; opacity: 0; animation: fadeUp 1.4s ease 1.1s forwards;
  letter-spacing: 0.3px;
}
.hero-ctas { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1.4s ease 1.4s forwards; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* CTAs */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 36px; font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  border: 1px solid #c8a192; cursor: pointer; transition: all .3s;
  background: transparent; color: #f5ebe0;
}
.btn:hover { background: #c8a192; color: #0f0d0a; transform: translateY(-1px); }
.btn-primary { background: #c8a192; color: #0f0d0a; }
.btn-primary:hover { background: #d8b5a6; border-color: #d8b5a6; }
.btn-wa { background: #25D366; border-color: #25D366; color: #fff; }
.btn-wa:hover { background: #20bd5a; border-color: #20bd5a; color: #fff; }

/* ============================================================
   SCROLL INDICATOR
   ============================================================ */
.scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 3; font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(245,235,224,.6); display: flex; flex-direction: column; align-items: center;
  animation: fadeUp 1.4s ease 1.8s forwards; opacity: 0;
}
.scroll-hint::after {
  content: ''; display: block; width: 1px; height: 36px;
  background: linear-gradient(180deg, rgba(200,161,146,.6), transparent);
  margin-top: 14px; animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   PILLARS STRIP
   ============================================================ */
.pillars {
  background: #1a1511; padding: 28px 40px;
  display: flex; justify-content: center; gap: 60px; flex-wrap: wrap;
  border-top: 1px solid rgba(200,161,146,.1);
  border-bottom: 1px solid rgba(200,161,146,.1);
}
.pillar {
  font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase; color: #9a9089;
}
.pillar strong { color: #d8b5a6; font-weight: 500; }
@media (max-width: 700px) {
  .pillars { gap: 20px; padding: 20px; font-size: 10px; }
  .pillar { font-size: 10px; letter-spacing: 2px; }
}

/* ============================================================
   EDITORIAL SECTION (full-bleed image + text)
   ============================================================ */
.editorial {
  position: relative; width: 100vw; min-height: 85vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.editorial-media { position: absolute; inset: 0; }
.editorial-media img { width: 100%; height: 100%; object-fit: cover; }
.editorial::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 50%, rgba(0,0,0,.55) 100%);
}
.editorial-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 900px; padding: 120px 30px;
}
.editorial-kicker {
  font-size: 10px; letter-spacing: 5px; text-transform: uppercase;
  color: #d8b5a6; margin-bottom: 20px;
}
.editorial-title {
  font-size: clamp(36px, 6vw, 72px); font-weight: 300; line-height: 1.05;
  color: #f5ebe0; margin-bottom: 28px; letter-spacing: -0.01em;
}
.editorial-title em { font-style: italic; color: #d8b5a6; }
.editorial-body {
  font-family: 'Cormorant', serif; font-size: clamp(17px, 1.8vw, 22px);
  font-style: italic; font-weight: 300; color: #d8cfc3;
  max-width: 680px; margin: 0 auto; line-height: 1.5;
}

/* ============================================================
   SECTION — Model grid
   ============================================================ */
.section-head {
  text-align: center; padding: 100px 30px 60px;
}
.section-kicker {
  font-size: 10px; letter-spacing: 6px; text-transform: uppercase;
  color: #d8b5a6; margin-bottom: 22px; font-weight: 500;
}
.section-title {
  font-size: clamp(36px, 5.5vw, 64px); font-weight: 300; line-height: 1.05;
  color: #f5ebe0; margin-bottom: 22px;
}
.section-title em { font-style: italic; color: #d8b5a6; }
.section-sub {
  font-family: 'Cormorant', serif; font-size: clamp(16px, 1.7vw, 20px);
  font-style: italic; color: #9a9089; max-width: 640px; margin: 0 auto;
}

.model-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  padding: 0 2px 2px;
}
@media (max-width: 900px) { .model-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .model-grid { grid-template-columns: 1fr; } }
.model-tile {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  display: flex; align-items: flex-end; background: #1a1511;
  transition: transform .5s;
}
.model-tile img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s ease;
}
.model-tile:hover img { transform: scale(1.05); }
.model-tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(15,13,10,.9) 100%);
  pointer-events: none;
}
.tile-overlay {
  position: relative; z-index: 2; padding: 40px; width: 100%;
  text-align: left;
}
[dir=rtl] .tile-overlay { text-align: right; }
.tile-kicker {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: #d8b5a6; margin-bottom: 12px; font-weight: 500;
}
.tile-title {
  font-size: clamp(28px, 3.6vw, 48px); font-weight: 300; line-height: 1;
  color: #f5ebe0; margin-bottom: 14px; letter-spacing: 2px;
}
.tile-cta {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: #c8a192; border-bottom: 1px solid #c8a192;
  padding-bottom: 2px; display: inline-block;
  transition: all .3s;
}
.model-tile:hover .tile-cta { color: #f5ebe0; border-color: #f5ebe0; }

/* ============================================================
   VIDEO / INSTAGRAM SECTION
   ============================================================ */
.ig-section {
  padding: 0 30px 100px;
  background: #0f0d0a;
}
.ig-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  max-width: 1200px; margin: 0 auto;
}
@media (max-width: 780px) { .ig-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }
.ig-item {
  aspect-ratio: 9/16; background: #1a1511;
  border: 1px solid rgba(200,161,146,.12);
  display: flex; align-items: center; justify-content: center;
  color: #5c534c; font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  position: relative; overflow: hidden;
  cursor: pointer;
}
.ig-item-empty::before {
  content: '▶'; font-size: 36px; color: rgba(200,161,146,.3);
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.ig-item-label { position: absolute; bottom: 16px; z-index: 2; }
.ig-item video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s ease;
}
.ig-item:hover video { transform: scale(1.03); }
.ig-item .ig-play-badge {
  position: absolute; bottom: 14px; right: 14px; z-index: 3;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(15,13,10,.7); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 15px;
  transition: all .3s;
  pointer-events: none;
}
[dir=rtl] .ig-item .ig-play-badge { right: auto; left: 14px; }
.ig-item:hover .ig-play-badge { background: rgba(200,161,146,.85); color: #12100d; }
.ig-item-sound {
  position: absolute; top: 12px; right: 12px; z-index: 4;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(15,13,10,.7); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 13px; cursor: pointer;
  transition: all .2s;
}
.ig-item-sound:hover { background: rgba(200,161,146,.85); color: #12100d; }
[dir=rtl] .ig-item-sound { right: auto; left: 12px; }

/* ============================================================
   SHOWROOM SECTION
   ============================================================ */
.showroom {
  position: relative; min-height: 90vh;
  display: flex; align-items: center;
  background: #1a1511;
  overflow: hidden;
}
.showroom-grid { display: grid; grid-template-columns: 1.2fr 1fr; width: 100%; min-height: 90vh; }
.showroom-media { position: relative; overflow: hidden; }
.showroom-media img { width: 100%; height: 100%; object-fit: cover; min-height: 90vh; }
.showroom-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0) 50%, rgba(26,21,17,.4) 100%);
}
.showroom-info {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 60px; gap: 18px;
}
.showroom-info h2 {
  font-size: clamp(36px, 5vw, 56px); font-weight: 300; color: #f5ebe0;
  line-height: 1; margin-bottom: 8px;
}
.showroom-info h2 em { font-style: italic; color: #d8b5a6; }
.showroom-info p { color: #b3a89d; font-size: 15px; line-height: 1.7; }
.showroom-info .detail { color: #d8cfc3; font-size: 14px; letter-spacing: .3px; }
.showroom-info .detail strong { color: #d8b5a6; font-weight: 500; }
.showroom-info .btn { align-self: flex-start; margin-top: 20px; }
[dir=rtl] .showroom-info .btn { align-self: flex-end; }
@media (max-width: 900px) {
  .showroom-grid { grid-template-columns: 1fr; }
  .showroom-media img { min-height: 60vh; }
  .showroom-info { padding: 50px 30px; }
}

/* ============================================================
   CONTACT CTA
   ============================================================ */
.contact-cta {
  padding: 120px 30px; text-align: center;
  background: linear-gradient(180deg, #0f0d0a 0%, #1a1511 100%);
}
.contact-cta h2 {
  font-size: clamp(36px, 6vw, 64px); font-weight: 300; color: #f5ebe0;
  margin-bottom: 14px;
}
.contact-cta h2 em { font-style: italic; color: #d8b5a6; }
.contact-cta p {
  font-family: 'Cormorant', serif; font-size: clamp(16px, 1.8vw, 20px);
  font-style: italic; color: #9a9089; margin-bottom: 40px;
}
.contact-cta .btns { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #0a0806; color: #5c534c;
  padding: 50px 30px; text-align: center;
  border-top: 1px solid rgba(200,161,146,.08);
}
.footer-logo {
  font-family: 'Cormorant', serif; font-size: 22px; color: #d8b5a6;
  letter-spacing: 4px; margin-bottom: 14px;
}
.footer-links {
  display: flex; justify-content: center; gap: 30px; flex-wrap: wrap;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: #7a706a; margin-bottom: 16px;
}
.footer-links a { transition: color .2s; }
.footer-links a:hover { color: #d8b5a6; }
.footer-copy { font-size: 10px; letter-spacing: 1px; color: #5c534c; }

/* ============================================================
   MODEL MODULE — reel + hero image combo
   ============================================================ */
.model-module {
  display: flex;
  gap: 2px;
  background: #0f0d0a;
  height: 620px;
  margin-bottom: 2px;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  position: relative;
}
.model-module-reverse { flex-direction: row-reverse; }
.mm-reel {
  aspect-ratio: 9/16;
  height: 100%;
  position: relative;
  background: #1a1511;
  overflow: hidden;
  flex-shrink: 0;
}
.mm-reel video {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform 1s ease;
}
.model-module:hover .mm-reel video { transform: scale(1.02); }
.mm-image {
  flex: 1;
  position: relative;
  background: #1a1511;
  overflow: hidden;
}
.mm-image img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform 1.2s ease;
}
.model-module:hover .mm-image img { transform: scale(1.04); }
.mm-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.1) 45%, rgba(0,0,0,0) 80%);
  pointer-events: none;
}
.mm-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px 52px;
  color: #f5ebe0;
  pointer-events: none;
  z-index: 2;
}
[dir=rtl] .mm-overlay { text-align: right; }
.mm-kicker {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: #d8b5a6; margin-bottom: 14px; font-weight: 500;
}
.mm-title {
  font-family: 'Cormorant', Georgia, serif;
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 300;
  line-height: 1; margin-bottom: 12px;
  letter-spacing: -0.01em;
}
[dir=rtl] .mm-title { font-family: 'Amiri', 'Cormorant', serif; }
.mm-title em { font-style: italic; color: #d8b5a6; }
.mm-tag {
  font-family: 'Cormorant', serif;
  font-size: 16px; font-style: italic; color: #d8cfc3;
  margin-bottom: 16px;
  max-width: 420px;
  line-height: 1.4;
}
.mm-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: #c8a192; border-bottom: 1px solid rgba(200,161,146,.5);
  padding-bottom: 2px; font-weight: 500;
  display: inline-block;
  transition: all .3s;
}
.model-module:hover .mm-cta { color: #f5ebe0; border-color: #f5ebe0; }

.mm-reel .ig-item-sound { top: 16px; right: 16px; }
[dir=rtl] .mm-reel .ig-item-sound { right: auto; left: 16px; }

/* Mobile — stack vertically, reel on top at full height */
@media (max-width: 800px) {
  .model-module,
  .model-module-reverse {
    flex-direction: column;
    height: auto;
    margin-bottom: 8px;
  }
  .mm-reel {
    width: 100%;
    height: auto;
    aspect-ratio: 9/16;
    max-height: none;
  }
  .mm-image {
    aspect-ratio: 16/10;
  }
  .mm-overlay { padding: 30px 22px; }
  .mm-title { font-size: clamp(32px, 10vw, 48px); }
  .mm-tag { font-size: 15px; }
}

/* Variant version indicator badge (top-right corner) */
.variant-badge {
  position: fixed; top: 90px; right: 20px; z-index: 200;
  background: rgba(200,161,146,.95); color: #0f0d0a;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 14px; border-radius: 2px;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
}

/* ============================================================
   MODEL PAGE SPECIFIC
   ============================================================ */
.model-hero {
  position: relative; width: 100vw; height: 100vh; min-height: 620px;
  overflow: hidden;
}
.model-hero img { width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 20s ease-out infinite alternate; }
.model-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.3) 0%, rgba(0,0,0,.1) 40%, rgba(15,13,10,.85) 100%);
}
.model-hero-content {
  position: absolute; bottom: 120px; left: 60px;
  z-index: 2; max-width: 600px;
}
[dir=rtl] .model-hero-content { left: auto; right: 60px; }
.model-hero-kicker {
  font-size: 10px; letter-spacing: 5px; text-transform: uppercase;
  color: #d8b5a6; margin-bottom: 20px;
}
.model-hero-title {
  font-size: clamp(64px, 12vw, 160px); font-weight: 300; line-height: 0.9;
  color: #f5ebe0; margin-bottom: 20px; letter-spacing: -0.02em;
}
.model-hero-title em { font-style: italic; color: #d8b5a6; }
.model-hero-sub {
  font-family: 'Cormorant', serif; font-size: clamp(18px, 2vw, 24px);
  font-style: italic; color: #d8cfc3; margin-bottom: 36px;
}

/* Detail split */
.detail-split {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh;
}
.detail-media { overflow: hidden; position: relative; }
.detail-media img { width: 100%; height: 100%; object-fit: cover;
  min-height: 80vh; transition: transform .8s; }
.detail-split:hover .detail-media img { transform: scale(1.03); }
.detail-text {
  padding: 80px 60px; display: flex; flex-direction: column;
  justify-content: center; background: #1a1511;
}
.detail-text h2 {
  font-size: clamp(32px, 4.5vw, 56px); font-weight: 300;
  color: #f5ebe0; margin-bottom: 24px; line-height: 1.05;
}
.detail-text h2 em { font-style: italic; color: #d8b5a6; }
.detail-text p { color: #b3a89d; font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
@media (max-width: 900px) {
  .detail-split { grid-template-columns: 1fr; }
  .detail-media img { min-height: 60vh; }
  .detail-text { padding: 50px 30px; }
  .model-hero-content { left: 30px; bottom: 80px; }
  [dir=rtl] .model-hero-content { left: auto; right: 30px; }
}

/* Gallery */
.gallery {
  padding: 0 2px 2px;
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
@media (max-width: 800px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-item {
  aspect-ratio: 4/5; overflow: hidden; position: relative; background: #1a1511;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-wide {
  grid-column: span 2; aspect-ratio: 16/10;
}
@media (max-width: 800px) {
  .gallery-wide { grid-column: span 2; aspect-ratio: 16/10; }
}

/* Back link */
.back-link {
  position: fixed; top: 90px; left: 30px; z-index: 50;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: #c8a192; padding: 10px 18px;
  background: rgba(15,13,10,.7); backdrop-filter: blur(8px);
  border: 1px solid rgba(200,161,146,.2); border-radius: 2px;
  transition: all .2s;
}
.back-link:hover { background: rgba(200,161,146,.15); color: #f5ebe0; }
[dir=rtl] .back-link { left: auto; right: 30px; }
@media (max-width: 700px) { .back-link { top: 80px; left: 16px; font-size: 9px; padding: 8px 14px; } [dir=rtl] .back-link { right: 16px; } }
