/* ══════════════════════════════════════════════════════════
   SULTANATE OF MARBLE — Luxury Minimalist Design System
   ══════════════════════════════════════════════════════════ */

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

/* ── Variables ──────────────────────────────────────────── */
:root {
  --green-dark:   #1B3A2D;
  --green-mid:    #254D3A;
  --gold:         #B8966E;
  --gold-light:   #CDA882;
  --cream:        #F9F7F4;
  --white:        #FFFFFF;
  --black:        #0A0A0A;
  --text:         #1C1C1A;
  --text-muted:   #5A5A54;
  --text-light:   #9A9A90;
  --border:       rgba(27,58,45,0.07);
  --border-gold:  rgba(184,150,110,0.22);

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --section-py:    128px;
  --section-py-sm: 80px;
  --container-max: 1280px;
  --container-px:  56px;

  --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --dur-slow:    1.2s;
  --dur-med:     0.8s;
  --dur-fast:    0.35s;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.85;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ── Arabic RTL ─────────────────────────────────────────── */
[lang="ar"],
[lang="ar"] body,
[dir="rtl"] body {
  font-family: 'Tajawal', sans-serif;
  direction: rtl;
}
[dir="rtl"] { font-family: 'Tajawal', sans-serif; }
[dir="rtl"] .container { direction: rtl; }
[dir="rtl"] .divider { margin-right: 0; margin-left: auto; }
[dir="rtl"] .divider--center { margin-right: auto; margin-left: auto; }

/* Ensure Tajawal on all text elements in RTL */
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3,
[dir="rtl"] h4, [dir="rtl"] h5, [dir="rtl"] h6,
[dir="rtl"] p, [dir="rtl"] span, [dir="rtl"] a,
[dir="rtl"] label, [dir="rtl"] button,
[dir="rtl"] input, [dir="rtl"] textarea, [dir="rtl"] select {
  font-family: 'Tajawal', sans-serif;
}

/* Keep display headings in Tajawal for Arabic (Cormorant is Latin-only) */
[dir="rtl"] .section-title,
[dir="rtl"] .page-hero h1,
[dir="rtl"] .hero-video-title {
  font-family: 'Tajawal', sans-serif;
  font-weight: 300;
  letter-spacing: 0;
}

/* RTL nav and footer alignment */
[dir="rtl"] .site-header    { direction: rtl; }
[dir="rtl"] .header-nav     { direction: rtl; }
[dir="rtl"] .footer-inner   { direction: rtl; }
[dir="rtl"] .footer-nav     { text-align: right; }
[dir="rtl"] .footer-address { text-align: right; }

/* RTL text alignment for body copy */
[dir="rtl"] .page-hero-desc,
[dir="rtl"] .section-subtitle,
[dir="rtl"] .footer-tagline {
  text-align: right;
}

/* Fix letter-spacing (tracks look wrong in Arabic) */
[dir="rtl"] .section-label,
[dir="rtl"] .page-hero-eyebrow,
[dir="rtl"] .nav-link,
[dir="rtl"] .footer-link {
  letter-spacing: 0;
  font-family: 'Tajawal', sans-serif;
}

/* Arabic nav — larger size, no uppercase tracking */
[dir="rtl"] .nav-link {
  font-size: 15px;
  text-transform: none;
  font-weight: 400;
}

/* Arabic small labels — 50% larger, no uppercase/tracking */
[dir="rtl"] .section-label,
[dir="rtl"] .page-hero-eyebrow,
[dir="rtl"] .hero-eyebrow,
[dir="rtl"] .collection-hero-sub,
[dir="rtl"] .coll-card-finish,
[dir="rtl"] .collection-badge,
[dir="rtl"] .ceo-message-eyebrow,
[dir="rtl"] .ceo-message-title,
[dir="rtl"] .cert-card-name,
[dir="rtl"] .rgc-label,
[dir="rtl"] .contact-info-label,
[dir="rtl"] .form-label,
[dir="rtl"] .region-count,
[dir="rtl"] .why-num,
[dir="rtl"] .quote-attribution,
[dir="rtl"] .rgi-number,
[dir="rtl"] .cp-hero-num,
[dir="rtl"] .cp-next-eyebrow {
  font-size: 15px;
  text-transform: none;
  letter-spacing: 0.03em;
  font-family: 'Tajawal', sans-serif;
}
[dir="rtl"] .stat-label,
[dir="rtl"] .map-stat-label {
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  font-family: 'Tajawal', sans-serif;
}

/* ── Custom Cursor ──────────────────────────────────────── */
#cursor {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition:
    width  0.4s var(--ease-luxury),
    height 0.4s var(--ease-luxury),
    opacity 0.3s ease;
  will-change: transform;
}
#cursor.hover {
  width: 64px;
  height: 64px;
  opacity: 0.7;
}
#cursor-dot {
  position: fixed;
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
}

/* ── Scroll Reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity  var(--dur-slow) var(--ease-luxury),
    transform var(--dur-slow) var(--ease-luxury);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.22s; }
.reveal-d3 { transition-delay: 0.34s; }
.reveal-d4 { transition-delay: 0.46s; }
.reveal-d5 { transition-delay: 0.58s; }
.reveal-d6 { transition-delay: 0.70s; }

/* ── Container ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}
.container--narrow { max-width: 840px; }

/* ── Sections ───────────────────────────────────────────── */
.section    { padding: var(--section-py) 0; }
.section--sm{ padding: var(--section-py-sm) 0; }
.text-center { text-align: center; }

/* ── Typography ─────────────────────────────────────────── */
.section-label {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -0.01em;
}
.section-title--white { color: var(--white); }
.section-subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 540px;
  margin-top: 20px;
}
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

.divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
  margin: 32px 0;
}
.divider--center { margin: 32px auto; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: background var(--dur-fast) ease, color var(--dur-fast) ease, border-color var(--dur-fast) ease;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn--lg { padding: 16px 44px; }
.btn--primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: transparent;
  color: var(--gold);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
}
.btn--outline-dark {
  background: transparent;
  color: var(--green-dark);
  border-color: rgba(27,58,45,0.3);
}
.btn--outline-dark:hover {
  border-color: var(--green-dark);
  background: rgba(27,58,45,0.04);
}

/* ══════════════════════════════════════════════════════════
   HEADER / NAV
   ══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px var(--container-px);
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, transparent 100%);
  transition: padding var(--dur-med) ease, background var(--dur-med) ease, border-color var(--dur-med) ease;
  border-bottom: 1px solid transparent;
}
.site-header.solid,
.site-header.scrolled {
  background: rgba(27,58,45,0.97);
  backdrop-filter: blur(12px);
  padding: 18px var(--container-px);
  border-bottom-color: rgba(255,255,255,0.06);
}
.header-logo img {
  height: 56px;
  width: auto;
  transition: height var(--dur-med) ease;
}
.site-header.scrolled .header-logo img { height: 47px; }
.header-nav {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav-link {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color var(--dur-fast) ease;
  position: relative;
  padding-bottom: 3px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--dur-med) var(--ease-luxury);
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
}
.nav-link.active::after, .nav-link:hover::after { width: 100%; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.lang-toggle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 7px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: none;
  transition: all var(--dur-fast) ease;
}
.lang-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: all var(--dur-fast) ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--green-dark);
  z-index: 999;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 60px var(--container-px);
  gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 5vw, 48px);
  color: rgba(255,255,255,0.7);
  padding: 14px 0;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  width: 100%;
  transition: color var(--dur-fast) ease, padding-left var(--dur-med) var(--ease-luxury);
}
.mobile-nav-link:hover { color: var(--white); padding-left: 16px; }
.mobile-lang { margin-top: 32px; font-family: var(--font-body); font-size: 11px; letter-spacing: 3px; color: var(--gold); cursor: none; border: 1px solid var(--border-gold); padding: 10px 20px; }

/* ══════════════════════════════════════════════════════════
   HERO — FULL-SCREEN VIDEO
   ══════════════════════════════════════════════════════════ */
.hero-video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,32,24,0.92) 0%, rgba(14,32,24,0.55) 50%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}
.hero-video-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 1000px;
  width: 100%;
}
.hero-video-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(48px, 8vw, 96px);
  color: var(--gold);
  letter-spacing: 0.06em;
  line-height: 1.05;
  margin-bottom: 28px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.4);
  opacity: 0;
  animation: fadeUp 1s var(--ease-luxury) 0.2s forwards;
}
.hero-video-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(15px, 1.8vw, 20px);
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.04em;
  line-height: 1.75;
  max-width: 660px;
  margin: 0 auto 48px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-luxury) 0.45s forwards;
}
.hero-video-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease-luxury) 0.7s forwards;
}
.btn-hero {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 36px;
  display: inline-block;
  cursor: none;
  transition: background var(--dur-fast) ease, color var(--dur-fast) ease, border-color var(--dur-fast) ease;
}
.btn-hero--fill {
  background: var(--gold);
  color: var(--green-dark);
  border: 1px solid var(--gold);
}
.btn-hero--fill:hover {
  background: #d4b07a;
  border-color: #d4b07a;
}
.btn-hero--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-hero--outline:hover {
  background: var(--gold);
  color: var(--green-dark);
}

/* ══════════════════════════════════════════════════════════
   HERO — LEGACY SPLIT (kept for reference)
   ══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -10%;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(184,150,110,0.08) 0%, transparent 65%),
              radial-gradient(ellipse 40% 60% at 20% 80%, rgba(27,58,45,0.8) 0%, transparent 70%);
  animation: kenBurns 24s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenBurns {
  from { transform: scale(1) translateX(0); }
  to   { transform: scale(1.08) translateX(-2%); }
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(27,58,45,0.4), transparent);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  padding-top: 100px;
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-luxury) 0.2s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(52px, 7vw, 100px);
  line-height: 1.02;
  color: var(--white);
  letter-spacing: -0.02em;
  max-width: 840px;
  margin-bottom: 0;
}
.hero-title .line-wrap {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
}
.hero-title .line-inner {
  display: block;
  transform: translateY(110%);
  transition: transform 1.3s var(--ease-luxury);
}
.hero-title .line-inner.revealed { transform: translateY(0); }
.hero-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 2.2vw, 26px);
  color: var(--gold-light);
  margin-top: 24px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-luxury) 0.9s forwards;
}
.hero-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  line-height: 1.85;
  margin-top: 20px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-luxury) 1.1s forwards;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 44px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-luxury) 1.3s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  opacity: 0;
  animation: fadeIn 1s ease 2s forwards;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.5); transform-origin: top; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Stats Bar ──────────────────────────────────────────── */
.stats-bar {
  background: var(--green-dark);
  padding: 56px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 48px;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ── Intro / About Section ──────────────────────────────── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

/* ── Why Grid ───────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.why-card {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--dur-fast) ease;
}
.why-card:nth-child(3n) { border-right: none; }
.why-card:nth-child(n+4) { border-bottom: none; }
.why-card:hover { background: var(--cream); }
.why-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 28px;
  display: block;
}
.why-icon {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
  color: var(--gold);
}
.why-icon svg { opacity: 0.8; }
.why-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.2;
}
.why-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── Collections Grid ───────────────────────────────────── */
.collections-hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.collection-hero-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.collection-hero-card:last-child { border-right: none; }
.collection-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-luxury);
}
.collection-hero-card:hover img { transform: scale(1.06); }
.collection-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.7) 0%, transparent 50%);
  transition: background var(--dur-med) ease;
}
.collection-hero-card:hover .collection-hero-overlay {
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.1) 60%);
}
.collection-hero-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  transform: translateY(8px);
  transition: transform var(--dur-med) var(--ease-luxury);
}
.collection-hero-card:hover .collection-hero-info { transform: translateY(0); }
.collection-hero-name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 8px;
}
.collection-hero-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
}
.collection-hero-link {
  position: absolute;
  inset: 0;
}

/* ── Full Collections Grid ──────────────────────────────── */
.coll-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.coll-card {
  background: var(--white);
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  display: block;
}
.coll-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-luxury);
}
.coll-card:hover img { transform: scale(1.05); }
.coll-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,58,45,0.85) 0%, transparent 55%);
  opacity: 0.8;
  transition: opacity var(--dur-med) ease;
}
.coll-card:hover .coll-card-overlay { opacity: 1; }
.coll-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 32px;
}
.coll-card-name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 4px;
}
.coll-card-finish {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ── Collection Detail Page ─────────────────────────────── */
.collection-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
.collection-img-wrap {
  position: relative;
  overflow: hidden;
}
.collection-img-wrap img {
  width: 100%;
  height: 640px;
  object-fit: cover;
}
.collection-description {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.collection-features {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 40px 0;
  border-top: 1px solid var(--border);
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.feature-icon {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}
.feature-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 17px;
  color: var(--text);
  margin-bottom: 6px;
}
.feature-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Spec Table */
.spec-table {
  width: 100%;
  border-collapse: collapse;
}
.spec-table tr {
  border-bottom: 1px solid var(--border);
}
.spec-table tr:last-child { border-bottom: none; }
.spec-table td {
  padding: 14px 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
}
.spec-table td:first-child {
  color: var(--text-muted);
  width: 50%;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.spec-table td:last-child { color: var(--text); font-weight: 400; }

/* Related Collections */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.related-card {
  position: relative;
  overflow: hidden;
  display: block;
}
.related-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 1s var(--ease-luxury);
}
.related-card:hover img { transform: scale(1.05); }
.related-card-name {
  padding: 16px 20px;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 18px;
  color: var(--text);
  background: var(--white);
}

/* ── About Page ─────────────────────────────────────────── */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
.about-image-wrap {
  position: relative;
  overflow: hidden;
}
.about-image-wrap img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: top;
}
.about-text {}
.quote-block {
  padding: 36px 0;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  margin: 40px 0;
}
.quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 16px;
}
.quote-attribution {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.value-card {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--dur-fast) ease;
}
.value-card:nth-child(3n) { border-right: none; }
.value-card:nth-child(n+4) { border-bottom: none; }
.value-card:hover { background: var(--cream); }
.value-icon {
  color: var(--gold);
  margin-bottom: 28px;
}
.value-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 14px;
}
.value-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── Manufacturing Page ─────────────────────────────────── */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}
.process-step {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--dur-fast) ease;
}
.process-step:hover { background: var(--cream); padding-left: 12px; }
.process-step-number {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 40px;
  color: var(--border-gold);
  line-height: 1;
  min-width: 56px;
  flex-shrink: 0;
}
.process-step-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 12px;
}
.process-step-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Tech Grid */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.tech-card {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tech-card:nth-child(3n) { border-right: none; }
.tech-card:nth-child(n+4) { border-bottom: none; }
.tech-card-icon {
  color: var(--gold);
  margin-bottom: 24px;
}
.tech-card-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 12px;
}
.tech-card-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── Export / Global ────────────────────────────────────── */
.world-map-visual {
  position: relative;
  background: var(--green-dark);
  padding: 120px 0;
  overflow: hidden;
}
.world-map-bg {
  position: absolute;
  inset: 0;
  opacity: 0.06;
}
.world-map-bg svg { width: 100%; height: 100%; }
.map-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
.map-stat-item {
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.map-stat-item:last-child { border-right: none; }
.map-stat-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 56px;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 12px;
}
.map-stat-label {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* Regions */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.region-card {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--dur-fast) ease;
}
.region-card:nth-child(3n)  { border-right: none; }
.region-card:nth-child(n+4) { border-bottom: none; }
.region-card:hover { background: var(--cream); }
.region-icon {
  color: var(--gold);
  margin-bottom: 24px;
}
.region-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 12px;
}
.region-countries {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.region-count {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border-top: 1px solid var(--border-gold);
  padding-top: 14px;
  margin-top: 14px;
}

/* ── Contact Page ───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 32px;
  color: var(--text);
  margin-bottom: 12px;
}
.contact-info-subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 40px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-label {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}
.contact-info-value {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}

/* Contact Form */
.form-group { margin-bottom: 28px; }
.form-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 10px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--text);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  outline: none;
  transition: border-color var(--dur-fast) ease;
  border-radius: 0;
  appearance: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-bottom-color: var(--gold);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-select option { background: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.form-success {
  display: none;
  text-align: center;
  padding: 48px;
}
.form-success.visible { display: block; }
.form-success svg { margin: 0 auto 20px; color: var(--gold); }
.form-success h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 28px;
  color: var(--text);
  margin-bottom: 12px;
}
.form-success p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--text-muted);
}

/* ── CTA Section ────────────────────────────────────────── */
.collections-showcase-banner {
  width: 100%;
  line-height: 0;
  position: relative;
}
.collections-showcase-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.collections-showcase-cta {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.collections-showcase-cta a {
  pointer-events: auto;
}

.cta-section {
  background: var(--green-dark);
  padding: 120px 0;
  text-align: center;
}
.cta-section .section-label { color: var(--gold); }
.cta-section .section-title { color: var(--white); margin: 0 auto; max-width: 640px; }
.cta-section .section-subtitle { color: rgba(255,255,255,0.55); margin: 0 auto; }
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 44px;
}

/* ── Chairman's Message ─────────────────────────────────── */
.ceo-message {
  position: relative;
  background: #0C1A12;
  padding: 140px 0 128px;
  overflow: hidden;
  text-align: center;
}

/* Giant decorative opening quote mark — architectural background element */
.ceo-message-bg-quote {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(400px, 55vw, 700px);
  font-weight: 300;
  line-height: 1;
  color: #B8966E;
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.ceo-message-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 48px;
}

.ceo-message-eyebrow {
  font-family: 'Inter', var(--font-body), sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #B8966E;
  margin-bottom: 56px;
}

/* Thin gold top rule above eyebrow */
.ceo-message-rule {
  width: 40px;
  height: 1px;
  background: #B8966E;
  margin: 0 auto 24px;
  opacity: 0.6;
}

.ceo-message-quote {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(20px, 2.7vw, 31px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.01em;
  margin: 0 0 56px;
}

/* Attribution block */
.ceo-message-attribution {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.ceo-message-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 1px solid rgba(184, 150, 110, 0.35);
  display: block;
}

.ceo-message-name {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #FFFFFF;
}

.ceo-message-title {
  font-family: 'Inter', var(--font-body), sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-top: -12px;
}

/* Optional headline above the quote (used on about.html) */
.ceo-message-headline {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin: 0 0 52px;
}

/* RTL overrides */
[dir="rtl"] .ceo-message-headline   { font-family: 'Tajawal', sans-serif; letter-spacing: 0; }
[dir="rtl"] .ceo-message-quote      { font-family: 'Tajawal', sans-serif; font-style: normal; letter-spacing: 0; }
[dir="rtl"] .ceo-message-eyebrow    { letter-spacing: 1px; font-family: 'Tajawal', sans-serif; }
[dir="rtl"] .ceo-message-name       { font-family: 'Tajawal', sans-serif; letter-spacing: 0; }
[dir="rtl"] .ceo-message-title      { letter-spacing: 1px; font-family: 'Tajawal', sans-serif; }
[dir="rtl"] .ceo-message-bg-quote   { content: '\201C'; }

@media (max-width: 768px) {
  .ceo-message { padding: 100px 0 96px; }
  .ceo-message-inner { padding: 0 32px; }
  .ceo-message-bg-quote { font-size: 280px; top: 0; }
}

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: 64px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 80px 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-col { display: flex; flex-direction: column; }
.footer-logo img { height: 80px; margin-bottom: 20px; }
.footer-tagline {
  font-weight: 300;
  font-size: 13px;
  line-height: 1.85;
  color: rgba(255,255,255,0.38);
  max-width: 260px;
}
/* Social icons */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}
.footer-social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-address-line--icon {
  display: flex;
  align-items: center;
}
/* Links column */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 4px;
}
.footer-link {
  font-weight: 300;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.25s ease;
  letter-spacing: 0.2px;
}
.footer-link:hover { color: var(--gold); }
/* Contact column */
.footer-address {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-style: normal;
  padding-top: 4px;
}
.footer-address-line {
  font-weight: 300;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}
.footer-address-line a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer-address-line a:hover { color: var(--gold); }
/* Bottom bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 80px;
}
.footer-copy,
.footer-cyncify {
  font-weight: 300;
  font-size: 12px;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.3px;
}
/* RTL Arabic */
[dir="rtl"] .footer-tagline { max-width: 100%; font-family: 'Cairo', 'Tajawal', sans-serif; }
[dir="rtl"] .footer-link    { font-family: 'Cairo', 'Tajawal', sans-serif; }
[dir="rtl"] .footer-address-line { font-family: 'Cairo', 'Tajawal', sans-serif; }
[dir="rtl"] .footer-copy,
[dir="rtl"] .footer-cyncify { font-family: 'Cairo', 'Tajawal', sans-serif; }

/* ── Page Hero (inner pages) ────────────────────────────── */
.page-hero {
  background: var(--green-dark);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(184,150,110,0.06) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-eyebrow {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(44px, 5.5vw, 72px);
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.page-hero-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  max-width: 500px;
  line-height: 1.85;
}

/* ── Cert Row ───────────────────────────────────────────── */
.cert-row {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  border: 1px solid var(--border);
}
.cert-card {
  flex: 1;
  min-width: 100px;
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background var(--dur-fast) ease;
}
.cert-card:last-child { border-right: none; }
.cert-card:hover { background: var(--cream); }
.cert-card-code {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 17px;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.cert-card-name {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ── FAQ ────────────────────────────────────────────────── */
.faq-list { border-top: 1px solid var(--border); }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq-q {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  color: var(--text);
  cursor: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-q svg { flex-shrink: 0; color: var(--gold); }
.faq-a {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.85;
  padding-top: 16px;
  display: none;
}
.faq-item.open .faq-a { display: block; }

/* ── Application Tags ───────────────────────────────────── */
.application-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.app-tag {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 6px 14px;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --container-px: 32px; }
  .intro-grid,
  .about-intro-grid,
  .collection-detail-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .why-grid,
  .values-grid,
  .tech-grid { grid-template-columns: 1fr 1fr; }
  .why-card:nth-child(3n) { border-right: 1px solid var(--border); }
  .why-card:nth-child(2n) { border-right: none; }
  .value-card:nth-child(3n) { border-right: 1px solid var(--border); }
  .value-card:nth-child(2n) { border-right: none; }
  .tech-card:nth-child(3n) { border-right: 1px solid var(--border); }
  .tech-card:nth-child(2n) { border-right: none; }
  .coll-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; padding: 48px 48px 40px; }
  .footer-col--brand { grid-column: 1 / -1; }
  .footer-bottom { padding: 18px 48px; }
}
@media (max-width: 768px) {
  :root {
    --section-py: 80px;
    --section-py-sm: 56px;
    --container-px: 24px;
  }
  .site-header { padding: 20px var(--container-px); }
  .site-header.scrolled { padding: 16px var(--container-px); }
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: clamp(40px, 10vw, 64px); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,0.08); }
  .map-stats-grid { grid-template-columns: 1fr 1fr; }
  .map-stat-item:nth-child(2) { border-right: none; }
  .map-stat-item:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,0.08); }
  .why-grid,
  .values-grid,
  .tech-grid,
  .regions-grid { grid-template-columns: 1fr; }
  .why-card,
  .value-card,
  .region-card { border-right: none !important; }
  .coll-grid { grid-template-columns: 1fr; }
  .collections-hero-grid { grid-template-columns: 1fr; }
  .collection-hero-card { aspect-ratio: 4/3; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; padding: 18px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .stats-bar { padding: 40px 0; }
}

/* ── Collection Hero (detail pages) ────────────────────── */
:root { --card-bg: #EDE8DE; }

.collection-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--green-dark);
}
.collection-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 10s ease;
  will-change: transform;
}
.collection-hero:hover .collection-hero-bg { transform: scale(1.04); }
.collection-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.78) 0%, rgba(10,10,10,0.18) 55%, transparent 100%);
}
.collection-hero-content {
  position: relative;
  z-index: 2;
  padding: 64px 0;
  width: 100%;
}
.collection-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.collection-hero-content h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(44px, 6vw, 80px);
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.collection-hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(16px, 2vw, 22px);
  color: rgba(255,255,255,0.55);
}

/* Collection Info Grid (2-col on detail pages) */
.collection-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.collection-description {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .collection-info-grid { grid-template-columns: 1fr; gap: 48px; }
  .collection-hero { min-height: 55vh; }
}

/* ── Collections Reveal Gallery ─────────────────────────── */
.reveal-gallery-section {
  background: var(--cream);
  padding: 72px 0;
}
.reveal-gallery-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.reveal-gallery-header {
  margin-bottom: 56px;
}
.reveal-gallery-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--green-dark);
  line-height: 1.15;
  margin: 16px 0 24px;
  letter-spacing: -0.5px;
}
.reveal-gallery-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.reveal-gallery-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--text-light);
  transition: color 0.35s ease;
  cursor: pointer;
  position: relative;
}
.reveal-gallery-item:first-child {
  border-top: 1px solid var(--border);
}
.reveal-gallery-item::before {
  content: '';
  position: absolute;
  left: -80px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
}
.reveal-gallery-item.active::before,
.reveal-gallery-item:hover::before {
  transform: scaleY(1);
}
.reveal-gallery-item.active,
.reveal-gallery-item:hover {
  color: var(--green-dark);
}
.rgi-number {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--gold);
  width: 28px;
  flex-shrink: 0;
}
.rgi-name {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 300;
  letter-spacing: 0.5px;
  flex: 1;
  transition: letter-spacing 0.35s ease;
}
.reveal-gallery-item.active .rgi-name,
.reveal-gallery-item:hover .rgi-name {
  letter-spacing: 1.5px;
}
.rgi-arrow {
  font-size: 16px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  color: var(--gold);
}
.reveal-gallery-item.active .rgi-arrow,
.reveal-gallery-item:hover .rgi-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Right canvas */
.reveal-gallery-canvas {
  position: relative;
  width: 100%;
  align-self: stretch;
  border-radius: 2px;
  overflow: hidden;
  background: var(--green-dark);
}
.reveal-gallery-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.reveal-gallery-img.active {
  opacity: 1;
}
.reveal-gallery-caption {
  position: absolute;
  bottom: 24px;
  left: 28px;
  z-index: 2;
}
.rgc-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* RTL adjustments */
[dir="rtl"] .reveal-gallery-item::before {
  left: auto;
  right: -80px;
}
[dir="rtl"] .rgi-arrow {
  transform: translateX(8px) scaleX(-1);
}
[dir="rtl"] .reveal-gallery-item.active .rgi-arrow,
[dir="rtl"] .reveal-gallery-item:hover .rgi-arrow {
  transform: translateX(0) scaleX(-1);
}

/* Responsive */
@media (max-width: 1024px) {
  .reveal-gallery-inner {
    padding: 0 48px;
    gap: 48px;
  }
}
@media (max-width: 768px) {
  .reveal-gallery-inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 40px;
    min-height: unset;
  }
  .reveal-gallery-canvas {
    order: -1;
    aspect-ratio: 3/2;
  }
  .reveal-gallery-item::before {
    display: none;
  }
}
