/* ═══════════════════════════════════════════════════════════
   OTOOR AL-TUMOOR — عطور التمور
   Luxury One-Page Website Styles
   RTL | Arabic-first Design
═══════════════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ─── */
:root {
  --date-brown:     #5C3A21;
  --dark-brown:     #3E2613;
  --near-black:     #1A0F07;
  --gold:           #A9842A;
  --gold-light:     #C9A227;
  --gold-shimmer:   #E8C84A;
  --parchment:      #F3E9D4;
  --parchment-lt:   #FAF5EA;
  --text-dark:      #262626;
  --text-mid:       #5a4a3a;
  --text-light:     rgba(250,245,234,0.88);
  --white:          #FFFFFF;
  --border-gold:    rgba(201,162,39,0.3);
  --shadow-warm:    0 8px 40px rgba(60,30,10,0.35);
  --shadow-soft:    0 4px 20px rgba(60,30,10,0.15);
  --nav-h:          72px;
  --transition:     0.45s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display:   'Aref Ruqaa Ink', 'Georgia', serif;
  --font-body:      'IBM Plex Sans Arabic', 'Arial', sans-serif;
  --font-latin:     'Cormorant Garamond', 'Georgia', serif;
}

/* ─── Reset & Base ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--parchment-lt);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── Scroll Reveal System ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1),
              transform 0.75s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }


/* ════════════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════════════ */
#main-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

#main-nav.scrolled {
  background: rgba(30,14,6,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-ar {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.logo-divider {
  width: 1px;
  height: 22px;
  background: var(--border-gold);
  display: block;
}

.logo-lat {
  font-family: var(--font-latin);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: rgba(201,162,39,0.7);
  text-transform: uppercase;
  white-space: nowrap;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(250,245,234,0.82);
  letter-spacing: 0.03em;
  position: relative;
  transition: color var(--transition);
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 1px;
  background: var(--gold-light);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.nav-cta {
  border: 1px solid var(--border-gold);
  padding: 6px 18px;
  border-radius: 2px;
  color: var(--gold-light);
  transition: background var(--transition), color var(--transition);
}

.nav-links a.nav-cta:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.nav-links a.nav-cta::after { display: none; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold-light);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════ */
#hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 55% 40%, rgba(139,80,30,0.55), transparent 65%),
    radial-gradient(ellipse at 25% 70%, rgba(62,38,19,0.7), transparent 55%),
    linear-gradient(135deg, #1A0F07 0%, #3E2613 45%, #1A0F07 100%);
  z-index: -1;
}

#hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 12s ease-out;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20,8,3,0.72) 0%,
    rgba(30,14,6,0.55) 50%,
    rgba(20,8,3,0.78) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 780px;
}

.hero-preheader {
  font-family: var(--font-latin);
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  color: rgba(201,162,39,0.75);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  font-weight: 700;
  color: var(--parchment-lt);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
  margin-bottom: 1rem;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
}

.hero-divider::before,
.hero-divider::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.divider-ornament {
  color: var(--gold-light);
  font-size: 1rem;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--gold-light);
  letter-spacing: 0.04em;
  margin-bottom: 2.4rem;
  opacity: 0.9;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  border: 1px solid var(--gold-light);
  color: var(--parchment-lt);
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  transition: background var(--transition), color var(--transition), transform 0.2s;
  position: relative;
  overflow: hidden;
}

.hero-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: -1;
}

.hero-btn:hover::before { transform: scaleX(1); }
.hero-btn:hover { color: var(--white); border-color: var(--gold); }

.hero-btn-icon {
  font-size: 0.8rem;
  transition: transform var(--transition);
}

.hero-btn:hover .hero-btn-icon { transform: translateX(-4px); }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
  opacity: 0.55;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold-light));
  animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-arrow {
  color: var(--gold-light);
  font-size: 0.65rem;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* Ambient button */
.ambient-btn {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 0.9rem;
  opacity: 0.6;
  transition: opacity var(--transition), background var(--transition);
  backdrop-filter: blur(4px);
}

.ambient-btn:hover { opacity: 1; background: rgba(169,132,42,0.15); }


/* ════════════════════════════════════════════════════
   SECTION SHARED STYLES
════════════════════════════════════════════════════ */
.section-label {
  font-family: var(--font-latin);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.section-label.gold-label { color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--dark-brown);
  line-height: 1.25;
  margin-bottom: 1.2rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 3.5rem;
  max-width: 520px;
}

.center-label { text-align: center; }
.center-title { text-align: center; }
.section-subtitle { text-align: center; margin-left: auto; margin-right: auto; }


/* ════════════════════════════════════════════════════
   STORY SECTION
════════════════════════════════════════════════════ */
.section-story {
  padding: 100px 0 80px;
  background: var(--parchment-lt);
  position: relative;
}

.section-story::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-img-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-warm);
}

.story-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
}

.story-img-frame:hover .story-img {
  transform: scale(1.04);
}

.story-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(20,8,3,0.8), transparent);
  color: rgba(250,245,234,0.8);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  font-family: var(--font-latin);
}

.story-body {
  margin-bottom: 2rem;
}
.story-body p {
  color: var(--text-mid);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
}
.story-body em {
  color: var(--gold);
  font-style: italic;
}

/* Journey timeline */
.story-journey {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, rgba(92,58,33,0.06), rgba(169,132,42,0.06));
  border: 1px solid var(--border-gold);
  border-radius: 4px;
}

.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}

.journey-icon {
  width: 56px;
  height: 56px;
}

.journey-step span {
  font-size: 0.8rem;
  color: var(--text-mid);
  text-align: center;
  font-weight: 500;
}

.journey-arrow {
  width: 40px;
  flex-shrink: 0;
  opacity: 0.7;
}


/* ════════════════════════════════════════════════════
   PRODUCTS SECTION
════════════════════════════════════════════════════ */
.section-products {
  padding: 100px 0;
  background: var(--parchment);
  position: relative;
}

.section-products::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(169,132,42,0.06), transparent 70%);
  pointer-events: none;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--parchment-lt);
  border: 1px solid rgba(92,58,33,0.1);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-warm);
}

.product-visual {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(62,38,19,0.04) 0%, rgba(62,38,19,0.1) 100%);
  position: relative;
  overflow: hidden;
}

/* Bottle shapes — CSS-only */
.bottle-wrap {
  position: relative;
  width: 80px;
  height: 140px;
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
}

.product-card:hover .bottle-wrap {
  transform: scale(1.08) rotate(-3deg);
}

.bottle-shape {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 100px;
  border-radius: 30px 30px 20px 20px;
  overflow: hidden;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.2), 0 8px 24px rgba(0,0,0,0.3);
}

.bottle-smoke  { background: linear-gradient(160deg, #4a3020, #2d1a0e); }
.bottle-amber  { background: linear-gradient(160deg, #b5651d, #7c3a0d); }
.bottle-cream  { background: linear-gradient(160deg, #d4a96a, #a07040); }
.bottle-wood   { background: linear-gradient(160deg, #6b4226, #3d2010); }

.bottle-liquid {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 65%;
  opacity: 0.6;
}
.bottle-smoke .bottle-liquid  { background: linear-gradient(to top, #1a0d05, #4a2010); }
.bottle-amber .bottle-liquid  { background: linear-gradient(to top, #8b3a0a, #d4690a); }
.bottle-cream .bottle-liquid  { background: linear-gradient(to top, #c49050, #e8c07a); }
.bottle-wood .bottle-liquid   { background: linear-gradient(to top, #2d1208, #6b3418); }

.bottle-cap {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 18px;
  border-radius: 20px 20px 4px 4px;
  background: linear-gradient(160deg, #d4a428, #8a6018);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.bottle-label-wrap {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.bottle-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: rgba(250,245,234,0.35);
}

.bottle-glow {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.5;
  transition: opacity 0.4s;
}

.product-card:hover .bottle-glow { opacity: 0.85; }
.glow-smoke  { background: #4a2010; }
.glow-amber  { background: #d4690a; }
.glow-cream  { background: #e8c07a; }
.glow-wood   { background: #6b3418; }

.product-info {
  padding: 1.5rem;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--dark-brown);
  margin-bottom: 2px;
}

.product-sub {
  font-family: var(--font-latin);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.product-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 0.75rem;
}

.note-tag {
  padding: 3px 10px;
  background: rgba(92,58,33,0.08);
  border: 1px solid rgba(92,58,33,0.15);
  border-radius: 20px;
  font-size: 0.72rem;
  color: var(--date-brown);
  white-space: nowrap;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.product-btn {
  display: inline-block;
  padding: 8px 20px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  border: 1px solid var(--border-gold);
  color: var(--gold);
  border-radius: 2px;
  transition: background var(--transition), color var(--transition);
}

.product-btn:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}


/* ════════════════════════════════════════════════════
   CRAFTSMANSHIP SECTION
════════════════════════════════════════════════════ */
.section-craft {
  padding: 100px 0;
  background: var(--dark-brown);
  position: relative;
  overflow: hidden;
}

.craft-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(169,132,42,0.08), transparent 70%);
  pointer-events: none;
}

.craft-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.section-craft .section-label { color: var(--gold-light); }
.section-craft .section-title { color: var(--parchment-lt); }
.section-craft .section-title em { color: var(--gold-light); font-style: italic; }

.craft-body p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.85;
}

.craft-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.craft-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.craft-feature-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-top: 2px;
}

.craft-feature strong {
  display: block;
  color: var(--parchment-lt);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.craft-feature span {
  color: var(--text-light);
  font-size: 0.82rem;
  opacity: 0.8;
}

/* Craft video */
.craft-video-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 9/14;
  max-height: 520px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.craft-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.craft-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,8,3,0.4), transparent 60%);
}

.craft-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 10px 16px;
  background: rgba(20,8,3,0.8);
  border: 1px solid var(--border-gold);
  border-radius: 2px;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.craft-badge span {
  font-family: var(--font-latin);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  text-transform: uppercase;
}

.craft-badge .craft-badge-ar {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0;
  color: var(--parchment);
}


/* ════════════════════════════════════════════════════
   MAJLIS SECTION
════════════════════════════════════════════════════ */
.section-majlis {
  padding: 100px 0;
  background: var(--near-black);
  position: relative;
}

.section-majlis::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.section-majlis .section-label  { color: var(--gold-light); }
.section-majlis .section-title  { color: var(--parchment-lt); }
.section-majlis .section-subtitle { color: var(--text-light); }

.majlis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.majlis-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,162,39,0.15);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s;
}

.majlis-card:hover {
  border-color: rgba(201,162,39,0.4);
  box-shadow: 0 8px 40px rgba(169,132,42,0.1);
}

.majlis-visual {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, rgba(92,58,33,0.2), rgba(20,8,3,0.6));
  position: relative;
}

.candle-svg, .diffuser-svg {
  width: 100px;
  height: 180px;
  filter: drop-shadow(0 0 20px rgba(201,162,39,0.25));
}

/* Candle flame animation */
.candle-flame {
  transform-origin: 50% 100%;
  animation: flameDance 2.5s ease-in-out infinite;
}
.candle-flame-inner {
  transform-origin: 50% 100%;
  animation: flameDance 2.5s ease-in-out infinite reverse;
}
.candle-glow {
  animation: glowPulse 2.5s ease-in-out infinite;
}

@keyframes flameDance {
  0%, 100% { transform: scaleX(1) rotate(-2deg); }
  33%  { transform: scaleX(0.9) rotate(3deg); }
  66%  { transform: scaleX(1.05) rotate(-1deg); }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.12; rx: 12; ry: 8; }
  50% { opacity: 0.22; }
}

/* Waft animation */
.waft {
  animation: waftRise 3s ease-in-out infinite;
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
}
.waft-delay { animation-delay: 0.8s; }
.waft-delay-2 { animation-delay: 1.6s; }

@keyframes waftRise {
  0%   { stroke-dashoffset: 20; opacity: 0; }
  20%  { opacity: 0.5; }
  80%  { opacity: 0.3; }
  100% { stroke-dashoffset: -20; opacity: 0; }
}

.majlis-info {
  padding: 1.75rem;
}

.majlis-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--parchment-lt);
  margin-bottom: 2px;
}

.majlis-sub {
  font-family: var(--font-latin);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.majlis-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 1rem;
  opacity: 0.85;
}

.majlis-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1.25rem;
}

.majlis-tags span {
  padding: 3px 10px;
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 20px;
  font-size: 0.72rem;
  color: var(--gold-light);
  opacity: 0.8;
}


/* ════════════════════════════════════════════════════
   WHY SECTION
════════════════════════════════════════════════════ */
.section-why {
  padding: 100px 0;
  background: var(--parchment);
  position: relative;
  overflow: hidden;
}

.why-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image:
    repeating-linear-gradient(45deg, var(--gold) 0px, var(--gold) 1px, transparent 0px, transparent 50%),
    repeating-linear-gradient(-45deg, var(--gold) 0px, var(--gold) 1px, transparent 0px, transparent 50%);
  background-size: 30px 30px;
}

.why-counter-wrap {
  text-align: center;
  margin: 3rem auto 4rem;
  max-width: 500px;
}

.why-counter-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.counter-zero {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 4px 30px rgba(169,132,42,0.3);
}

.counter-label {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 160px;
  line-height: 1.4;
  text-align: right;
}

.counter-note {
  font-family: var(--font-latin);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  opacity: 0.7;
}

.why-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.why-pillar {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(92,58,33,0.1);
  border-radius: 4px;
  background: var(--parchment-lt);
  transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
}

.why-pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--border-gold);
}

.pillar-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--dark-brown);
  margin-bottom: 0.75rem;
}

.pillar-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
}


/* ════════════════════════════════════════════════════
   CORPORATE SECTION
════════════════════════════════════════════════════ */
.section-corporate {
  padding: 100px 0;
  background: var(--dark-brown);
  position: relative;
  overflow: hidden;
}

.section-corporate::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,162,39,0.07), transparent 60%);
  pointer-events: none;
}

.corp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.section-corporate .section-label { color: var(--gold-light); }
.section-corporate .section-title { color: var(--parchment-lt); }

.corp-body p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.corp-clients {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.corp-clients li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.corp-clients li i {
  color: var(--gold);
  width: 18px;
  text-align: center;
  font-size: 0.9rem;
}

.corp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  border: 1px solid var(--gold-light);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: background var(--transition), color var(--transition);
  border-radius: 2px;
}

.corp-btn:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.corp-img-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.corp-img-frame img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.8s;
}

.corp-img-frame:hover img { transform: scale(1.04); }

.corp-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 14px 20px;
  background: rgba(20,8,3,0.85);
  border: 1px solid var(--border-gold);
  border-radius: 2px;
  backdrop-filter: blur(8px);
  text-align: center;
}

.corp-badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-light);
  line-height: 1.1;
}

.corp-img-badge span:last-child {
  font-size: 0.75rem;
  color: var(--text-light);
}


/* ════════════════════════════════════════════════════
   CONTACT / NEWSLETTER
════════════════════════════════════════════════════ */
.section-contact {
  padding: 120px 0;
  background: var(--near-black);
  position: relative;
  text-align: center;
  overflow: hidden;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(169,132,42,0.08), transparent 65%);
  pointer-events: none;
}

.contact-inner { position: relative; z-index: 1; }

.contact-ornament {
  font-size: 1.4rem;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 1rem;
  display: block;
}

.section-contact .section-label { color: var(--gold-light); }
.section-contact .section-title { color: var(--parchment-lt); }

.contact-sub {
  color: var(--text-light);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  opacity: 0.75;
}

.newsletter-form { max-width: 480px; margin: 0 auto; }

.form-group {
  display: flex;
  gap: 0;
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.form-group input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: none;
  outline: none;
  color: var(--parchment-lt);
  font-family: var(--font-body);
  font-size: 0.9rem;
  direction: rtl;
  text-align: right;
}

.form-group input::placeholder { color: rgba(250,245,234,0.35); }

.form-group button {
  padding: 14px 24px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: background var(--transition);
  flex-shrink: 0;
}

.form-group button:hover { background: var(--gold-light); }

.form-note {
  font-size: 0.75rem;
  color: rgba(250,245,234,0.3);
  text-align: center;
}

.form-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gold-light);
  font-size: 0.9rem;
  margin-top: 1rem;
  padding: 10px;
  background: rgba(201,162,39,0.1);
  border-radius: 3px;
}
.form-success[hidden] { display: none; }
.form-success i { color: var(--gold-light); }

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 50%;
  color: rgba(201,162,39,0.5);
  font-size: 1.1rem;
  transition: color var(--transition), border-color var(--transition), transform 0.2s;
}

.social-link:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-3px);
}


/* ════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */
#footer {
  background: var(--near-black);
  border-top: 1px solid rgba(201,162,39,0.1);
  padding: 40px 0 28px;
}

.footer-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo .logo-ar {
  font-size: 1.1rem;
  color: var(--gold-light);
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: rgba(201,162,39,0.5);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.8rem;
  color: rgba(250,245,234,0.3);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-copy {
  font-size: 0.75rem;
  color: rgba(250,245,234,0.2);
  letter-spacing: 0.08em;
}


/* ════════════════════════════════════════════════════
   MODAL
════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10,5,2,0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-overlay[hidden] { display: none; }

.modal-panel {
  background: var(--dark-brown);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 6px;
  max-width: 520px;
  width: 100%;
  max-height: 90svh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
  transform: translateY(20px);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

.modal-overlay.open .modal-panel {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(201,162,39,0.2);
  color: var(--gold-light);
  font-size: 1.3rem;
  line-height: 1;
  transition: background var(--transition);
}

.modal-close:hover { background: rgba(169,132,42,0.15); }

.modal-header {
  margin-bottom: 1.5rem;
  text-align: right;
}

.modal-header .section-label { color: var(--gold-light); }

.modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--parchment-lt);
  margin-bottom: 0.5rem;
}

.modal-header p {
  font-size: 0.88rem;
  color: var(--text-light);
  opacity: 0.8;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.modal-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.modal-field label {
  font-size: 0.82rem;
  color: rgba(201,162,39,0.8);
  letter-spacing: 0.05em;
}

.modal-field label span { color: var(--gold); }

.modal-field input,
.modal-field textarea {
  padding: 11px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 3px;
  color: var(--parchment-lt);
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.3s;
  direction: rtl;
  text-align: right;
  resize: vertical;
}

.modal-field input:focus,
.modal-field textarea:focus {
  border-color: var(--gold-light);
}

.modal-field input::placeholder,
.modal-field textarea::placeholder {
  color: rgba(250,245,234,0.25);
}

.modal-submit {
  padding: 13px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 3px;
  letter-spacing: 0.05em;
  transition: background var(--transition);
}

.modal-submit:hover { background: var(--gold-light); }


/* ════════════════════════════════════════════════════
   RESPONSIVE — TABLET
════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-grid,
  .craft-inner,
  .corp-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .story-img { height: 380px; }

  .craft-video-frame { aspect-ratio: 16/9; max-height: 380px; }

  .corp-img-frame img { height: 360px; }
}

@media (max-width: 820px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    right: 0;
    left: 0;
    background: rgba(20,8,3,0.97);
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s;
    border-bottom: 1px solid var(--border-gold);
    padding: 1rem 0;
    backdrop-filter: blur(12px);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links li { border-bottom: 1px solid rgba(201,162,39,0.07); }

  .nav-links a {
    display: block;
    padding: 14px 5%;
    font-size: 1rem;
  }

  .nav-links a::after { display: none; }
  .nav-links a.nav-cta { border: none; border-radius: 0; }

  .nav-toggle { display: flex; }

  .why-pillars {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .majlis-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  :root { --nav-h: 60px; }

  .hero-title { font-size: clamp(2.4rem, 12vw, 4rem); }
  .hero-tagline { font-size: 1rem; }
  .hero-btn { padding: 12px 24px; font-size: 0.88rem; }

  .section-story,
  .section-products,
  .section-craft,
  .section-majlis,
  .section-why,
  .section-corporate,
  .section-contact {
    padding: 70px 0;
  }

  .products-grid { grid-template-columns: 1fr; }

  .product-visual { height: 180px; }

  .story-journey {
    flex-direction: column;
    gap: 0.75rem;
  }

  .journey-arrow {
    transform: rotate(90deg);
  }

  .form-group { flex-direction: column; border: none; }
  .form-group input {
    border: 1px solid rgba(201,162,39,0.3);
    border-radius: 3px;
  }
  .form-group button {
    padding: 13px;
    border-radius: 3px;
  }

  .footer-links { flex-direction: column; gap: 0.75rem; }

  .corp-grid { grid-template-columns: 1fr; }
  .craft-inner { grid-template-columns: 1fr; }
}


/* ─── Utilities ─── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ─── Custom scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--near-black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

/* ─── Selection ─── */
::selection {
  background: rgba(169,132,42,0.35);
  color: var(--parchment-lt);
}
