/* ============================================================
   RAKZAH — رَكْزَهـ | B2B Corporate Gifts Landing
   Design tokens extracted from the live store (8fs59d.dev.zid.store)
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face {
  font-family: 'Harir';
  src: url('../assets/fonts/Harir.woff2') format('woff2'),
       url('../assets/fonts/Harir_complete_OTF_Harir.otf') format('opentype');
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Harir';
  src: url('../assets/fonts/Harir_complete_OTF_Harir_Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Body face: Baloo Bhaijaan 2 (Arabic + Latin, multi-weight) */
@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhaijaan+2:wght@400;500;600;700&display=swap');

/* ---------- Design tokens ---------- */
:root {
  /* Brand — verified from store --primary-color: #5f0611 */
  --rk-burgundy:      #5f0611;
  --rk-burgundy-deep: #4c050e;
  --rk-wine:          #521B25;
  --rk-olive:         #3d4a2a;
  --rk-olive-deep:    #2f3a20;

  /* Gold scale */
  --rk-gold:        #BCA25F;
  --rk-gold-bright: #d8bd7c;
  --rk-gold-light:  #f8e6b1;
  --rk-gold-soft:   #e3c89c;
  --rk-gold-glass:  rgba(188,162,95,0.16);
  --rk-gold-line:   rgba(188,162,95,0.35);

  /* Neutrals / creams — from store */
  --rk-cream:       #f3eddf;
  --rk-cream-2:     #efe4cd;
  --rk-cream-card:  #faf5ea;
  --rk-cream-warm:  #f3e7d5;
  --rk-ink:         #2A2622;
  --rk-ink-soft:    #5b524a;

  /* Geometry */
  --rk-r-sm: 12px;
  --rk-r:    18px;
  --rk-r-lg: 26px;
  --rk-shadow:      0 8px 30px rgba(80,45,25,0.10);
  --rk-shadow-soft: 0 6px 16px rgba(80,45,25,0.08);
  --rk-shadow-lg:   0 24px 60px -20px rgba(76,5,14,0.40);

  --rk-maxw: 1200px;
  --rk-ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --font-display: 'Harir', 'Baloo Bhaijaan 2', serif;
  --font-body: 'Baloo Bhaijaan 2', 'Harir', system-ui, sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  direction: rtl;
  background: var(--rk-cream);
  color: var(--rk-ink);
  line-height: 1.75;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Default = Baloo Bhaijaan 2 (matches main store); Harir reserved for section titles */
h1, h2, h3, h4 { font-family: var(--font-body); font-weight: 500; line-height: 1.3; }

::selection { background: var(--rk-gold); color: var(--rk-burgundy-deep); }

/* ---------- Layout helpers ---------- */
.wrap { width: min(100% - 2.6rem, var(--rk-maxw)); margin-inline: auto; }
.section { padding: clamp(4rem, 9vw, 8rem) 0; position: relative; }

/* Section eyebrow + diamond-flanked title */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-body); font-size: .82rem; font-weight: 600;
  letter-spacing: .22em; color: var(--rk-gold);
  text-transform: uppercase;
}
.eyebrow::before, .eyebrow::after {
  content: ""; width: 28px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--rk-gold));
}
.eyebrow::after { background: linear-gradient(90deg, var(--rk-gold), transparent); }

.sec-head { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.sec-title {
  display: inline-block; position: relative;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.9rem, 4.4vw, 3.1rem);
  color: var(--rk-burgundy);
  padding: .4rem clamp(2.6rem, 6vw, 4rem);
  margin-top: 1rem;
}
.sec-title::before, .sec-title::after {
  content: ""; position: absolute; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px;
  background: url('../assets/diamond.svg') center/contain no-repeat;
  opacity: .9;
}
.sec-title::before { right: 0; }
.sec-title::after  { left: 0; }
.sec-sub {
  max-width: 60ch; margin: 1.2rem auto 0; color: var(--rk-ink-soft);
  font-size: 1.04rem;
}
.on-dark .sec-title, .on-dark .sec-sub { color: var(--rk-cream); }
.on-dark .sec-title { color: var(--rk-gold-light); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 2.1rem; border-radius: 999px;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  transition: transform .3s var(--rk-ease), box-shadow .3s var(--rk-ease), background .3s, color .3s;
  position: relative; overflow: hidden;
}
.btn-gold {
  background: linear-gradient(135deg, var(--rk-gold-bright), var(--rk-gold));
  color: var(--rk-burgundy-deep);
  box-shadow: 0 10px 26px -10px rgba(188,162,95,0.7);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -12px rgba(188,162,95,0.85); }
.btn-ghost {
  border: 1.4px solid var(--rk-gold); color: var(--rk-gold-light);
  background: transparent;
}
.btn-ghost:hover { background: var(--rk-gold-glass); transform: translateY(-3px); }
.btn-olive { background: var(--rk-olive); color: var(--rk-gold-light); }
.btn-olive:hover { background: var(--rk-olive-deep); transform: translateY(-3px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem clamp(1.3rem, 4vw, 3rem);
  transition: background .4s var(--rk-ease), padding .4s, box-shadow .4s;
}
.site-header.scrolled {
  background: rgba(76,5,14,0.92); backdrop-filter: blur(10px);
  padding-block: .7rem; box-shadow: 0 6px 30px rgba(0,0,0,.25);
}
.brand { display: flex; align-items: center; gap: .7rem; }
.brand-logo {
  height: 60px; width: auto; transition: height .4s var(--rk-ease);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.25));
}
.site-header.scrolled .brand-logo { height: 48px; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  color: var(--rk-gold-light); font-size: .95rem; font-weight: 500;
  position: relative; opacity: .9; transition: opacity .25s;
}
.nav-links a::after {
  content: ""; position: absolute; bottom: -6px; right: 0; width: 0; height: 1.5px;
  background: var(--rk-gold); transition: width .3s var(--rk-ease);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { padding: .6rem 1.5rem; font-size: .9rem; }
.menu-btn { display: none; color: var(--rk-gold-light); width: 30px; height: 30px; }
.menu-btn svg { width: 100%; height: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh; display: grid; place-items: center;
  text-align: center; color: var(--rk-cream); overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% -10%, #7a0a18 0%, var(--rk-burgundy) 42%, var(--rk-burgundy-deep) 100%);
}
.hero::before { display: none; }
@keyframes drift { to { background-position: 300px 300px; } }

/* rising oud-smoke wisps */
.smoke { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.smoke span {
  position: absolute; bottom: -20%; width: 40vmin; height: 40vmin; border-radius: 50%;
  background: radial-gradient(circle, rgba(216,189,124,0.18), transparent 70%);
  filter: blur(28px); animation: rise 16s ease-in infinite;
}
.smoke span:nth-child(1) { left: 14%; animation-delay: 0s; }
.smoke span:nth-child(2) { left: 46%; animation-delay: 5s; width: 52vmin; height: 52vmin; }
.smoke span:nth-child(3) { left: 74%; animation-delay: 9s; }
@keyframes rise {
  0%   { transform: translateY(20%) scale(.7); opacity: 0; }
  30%  { opacity: .9; }
  100% { transform: translateY(-120%) scale(1.4); opacity: 0; }
}

/* animated gold dust */
.gold-dust {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 1; pointer-events: none;
}

.hero-inner { position: relative; z-index: 2; padding: 7rem 1.4rem 4rem; max-width: 60rem; }
.hero-logo { margin-bottom: 1.8rem; }
.hero-logo-img {
  width: clamp(220px, 30vw, 360px); height: auto; margin: 0 auto;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,.45));
}
.hero h1 {
  font-family: 'Harir', 'Baloo Bhaijaan 2', serif;
  font-size: clamp(2.2rem, 6.2vw, 4.6rem); color: var(--rk-gold-light);
  margin: 1rem 0 1.4rem; letter-spacing: -.01em; line-height: 1.4;
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.hero h1 .accent { color: #fff; font-family: inherit; }
.hero p.lede {
  font-size: clamp(1rem, 2.1vw, 1.22rem); line-height: 2; color: rgba(245,239,230,.86);
  max-width: 48ch; margin: 0 auto 2.4rem;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.scroll-hint {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%); z-index: 2;
  color: var(--rk-gold); font-size: .75rem; letter-spacing: .2em; opacity: .7;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.scroll-hint .dot { width: 1px; height: 36px; background: linear-gradient(var(--rk-gold), transparent); animation: hintPulse 2s ease-in-out infinite; }
@keyframes hintPulse { 0%,100%{opacity:.3;transform:scaleY(.6)} 50%{opacity:1;transform:scaleY(1)} }

/* ============================================================
   ABOUT (story)
   ============================================================ */
.about { background: var(--rk-cream); } /* #f3eddf — matches the logo image background exactly */
.about-grid {
  display: flex; align-items: center; justify-content: center;
}
.about-text { flex: 0 1 820px; text-align: center; }
.about h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.7rem,4vw,2.7rem); color: var(--rk-burgundy); margin-bottom: 1.6rem; }
.about p { font-size: 1.08rem; color: var(--rk-ink-soft); margin-bottom: 1.3rem; }
.about-text > :last-child { margin-bottom: 0; }
.about p.about-sign {
  font-family: var(--font-body); font-weight: 600; color: var(--rk-burgundy); font-size: 1.2rem;
  line-height: 1.9; margin-top: 1.8rem;
}
@media (max-width: 860px) {
  .about-grid { flex-direction: column; gap: 1rem; }
  .about-text { flex-basis: auto; width: 100%; text-align: center; }
}

/* ============================================================
   CRAFT (full-bleed quote)
   ============================================================ */
.craft {
  position: relative; color: var(--rk-cream); text-align: center;
  padding: clamp(5rem,11vw,9rem) 0;
  background:
    linear-gradient(rgba(40,3,8,.78), rgba(40,3,8,.86)),
    radial-gradient(80% 120% at 80% 0%, #7a0a18, var(--rk-burgundy-deep));
}
.craft::after { display: none; }
.craft .wrap { position: relative; z-index: 1; }
.craft blockquote {
  max-width: 44rem; margin-inline: auto;
  font-family: var(--font-display); font-size: clamp(1.4rem, 3.4vw, 2.3rem);
  line-height: 1.9; color: var(--rk-gold-light);
}
.craft .mini { display:block; margin-bottom: 1.6rem; color: var(--rk-gold); font-family: var(--font-body); letter-spacing:.2em; font-size:.85rem; }

/* ============================================================
   SERVICES (olive grid)
   ============================================================ */
.services {
  background:
    linear-gradient(180deg, var(--rk-olive), var(--rk-olive-deep));
  color: var(--rk-cream); position: relative; overflow: hidden;
}
.services::before { display: none; }
.services .wrap { position: relative; z-index: 1; }
.cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.card {
  background: var(--rk-cream-card); color: var(--rk-ink);
  border: 1px solid var(--rk-gold-line); border-radius: var(--rk-r);
  padding: 2.2rem 1.8rem; position: relative; overflow: hidden;
  box-shadow: var(--rk-shadow-soft);
  transition: transform .35s var(--rk-ease), box-shadow .35s, border-color .35s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--rk-shadow); border-color: var(--rk-gold); }
.card::before { /* shine sweep — mirrors store .product-box */
  content:""; position:absolute; top:0; left:-150%; width:60%; height:100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.35) 50%, transparent);
  transform: skewX(-22deg); transition: left .9s var(--rk-ease); pointer-events:none;
}
.card:hover::before { left: 150%; }
.card .num {
  font-family: var(--font-display); font-size: 2.3rem; color: var(--rk-gold);
  line-height: 1; opacity: .55;
}
.card .ico {
  width: 52px; height: 52px; margin-bottom: 1.1rem; color: var(--rk-burgundy);
}
.card h3 { font-size: 1.32rem; color: var(--rk-burgundy); margin: .2rem 0 .7rem; }
.card p { color: var(--rk-ink-soft); font-size: .97rem; line-height: 1.85; }
.card .corner {
  position: absolute; top: 1.1rem; left: 1.1rem; width: 22px; height: 22px;
  background: url('../assets/diamond.svg') center/contain no-repeat; opacity: .5;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--rk-cream-2); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px; gap: 1.1rem;
}
.tile {
  position: relative; border-radius: var(--rk-r); overflow: hidden;
  box-shadow: var(--rk-shadow-soft); cursor: pointer;
  border: 1px solid var(--rk-gold-line);
}
.tile.wide { grid-column: span 2; }
.tile.tall { grid-row: span 2; }
.tile .art { position: absolute; inset: 0; display: grid; place-items: center; }
.tile .art svg { width: 46%; height: 46%; color: var(--rk-gold-light); }
.tile::after { display: none; }
.tile .label {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: 1.4rem 1.2rem .9rem; color: var(--rk-gold-light);
  font-family: var(--font-display); font-size: 1.05rem;
  background: linear-gradient(transparent, rgba(40,3,8,.85));
  transform: translateY(8px); opacity: 0; transition: .4s var(--rk-ease);
}
.tile:hover .label { transform: translateY(0); opacity: 1; }
.tile .art { transition: transform .6s var(--rk-ease); }
.tile:hover .art { transform: scale(1.08); }
.g-burgundy { background: radial-gradient(120% 120% at 30% 20%, #7a0a18, var(--rk-burgundy-deep)); }
.g-olive    { background: radial-gradient(120% 120% at 30% 20%, #4d5c35, var(--rk-olive-deep)); }
.g-gold     { background: radial-gradient(120% 120% at 30% 20%, #c9b274, #9a8244); }
.g-gold .art svg { color: var(--rk-burgundy-deep); }
.g-wine     { background: radial-gradient(120% 120% at 30% 20%, #6e2733, var(--rk-wine)); }

/* ============================================================
   RARITIES — نوادر رَكْزَهـ (product showcase)
   ============================================================ */
.rarities { background: var(--rk-cream); overflow: hidden; }
.rail-wrap { position: relative; }
.rail {
  display: flex; gap: 1.3rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: .6rem .3rem 1.6rem; margin-inline: -.3rem;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.rail::-webkit-scrollbar { display: none; }
.pcard {
  flex: 0 0 clamp(210px, 23%, 250px); scroll-snap-align: start;
  background: var(--rk-cream-card); border: 1px solid rgba(95,6,17,.10);
  border-radius: var(--rk-r); overflow: hidden; position: relative;
  box-shadow: var(--rk-shadow-soft);
  transition: transform .35s var(--rk-ease), box-shadow .35s, border-color .35s;
}
.pcard:hover { transform: translateY(-4px); box-shadow: var(--rk-shadow); border-color: rgba(95,6,17,.20); }
.pcard .pimg { position: relative; aspect-ratio: 1/1; background: var(--rk-cream-warm); overflow: hidden; }
.pcard .pimg img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--rk-ease); }
.pcard:hover .pimg img { transform: scale(1.05); }
.pcard .heart {
  position: absolute; top: .8rem; right: .8rem; z-index: 3;
  width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%;
  color: #9c8f86; background: rgba(255,255,255,.55); backdrop-filter: blur(3px);
  transition: color .25s, background .25s, transform .25s;
}
.pcard .heart svg { width: 21px; height: 21px; }
.pcard .heart:hover { transform: scale(1.1); color: var(--rk-burgundy); }
.pcard .heart.liked { color: var(--rk-burgundy); }
.pcard .heart.liked svg { fill: var(--rk-burgundy); }
.pcard .options {
  position: absolute; inset: auto .8rem .8rem; z-index: 3;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .8rem 1rem; border-radius: 999px;
  background: var(--rk-burgundy); color: var(--rk-gold-light); font-weight: 600; font-size: .95rem;
  opacity: 0; transform: translateY(12px); transition: opacity .35s var(--rk-ease), transform .35s var(--rk-ease);
  box-shadow: 0 8px 20px -8px rgba(76,5,14,.6);
}
.pcard .options svg { width: 18px; height: 18px; }
.pcard:hover .options, .pcard:focus-within .options { opacity: 1; transform: none; }
.pcard .pbody { padding: 1.3rem 1rem 1.5rem; text-align: center; }
.pcard .pname { font-family: var(--font-body); font-weight: 600; font-size: 1.05rem; color: var(--rk-olive); margin-bottom: .4rem; }
.pcard .pprice { color: var(--rk-burgundy); font-weight: 600; font-size: 1.05rem; display: inline-flex; align-items: center; justify-content: center; gap: .3rem; }
.riyal { width: .95em; height: .95em; fill: currentColor; flex: 0 0 auto; }
.pcard .psizes { margin-top: .85rem; padding-top: .85rem; border-top: 1px solid rgba(95,6,17,.1); }
.pcard .psizes-label {
  display: block; font-family: var(--font-body); font-size: .72rem; font-weight: 600;
  letter-spacing: .12em; color: var(--rk-gold); text-transform: uppercase; margin-bottom: .55rem;
}
.pcard .psize-chips { display: flex; flex-wrap: wrap; gap: .4rem; justify-content: center; }
.pcard .chip {
  font-family: var(--font-body); font-size: .8rem; font-weight: 600; color: var(--rk-olive);
  padding: .4rem .85rem; border-radius: 999px; cursor: pointer;
  background: transparent; border: 1px solid rgba(184,142,47,.4);
  transition: background .2s, color .2s, border-color .2s;
}
.pcard .chip:hover { border-color: var(--rk-gold); color: var(--rk-burgundy); }
.pcard .chip.is-active {
  background: var(--rk-burgundy); color: var(--rk-cream); border-color: var(--rk-burgundy);
}
.pcard .pprice { margin-top: .9rem; font-size: 1.25rem; }
.pcard .pprice-val { font-variant-numeric: tabular-nums; }

/* slider navigation arrows */
.rail-nav {
  position: absolute; top: 42%; transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: var(--rk-burgundy); color: var(--rk-gold-light);
  box-shadow: 0 8px 22px -8px rgba(76,5,14,.7);
  transition: background .25s, transform .25s, opacity .25s;
}
.rail-nav:hover { background: var(--rk-burgundy-deep); transform: translateY(-50%) scale(1.08); }
.rail-nav svg { width: 22px; height: 22px; }
.rail-nav.prev { right: -10px; }   /* RTL: prev on the right */
.rail-nav.next { left: -10px; }    /* RTL: next on the left  */
.rail-nav[disabled] { opacity: .3; pointer-events: none; }
@media (max-width: 600px) { .rail-nav { display: none; } }
.shop-more {
  display: inline-flex; align-items: center; gap: .6rem; margin: 1.6rem auto 0;
  color: var(--rk-burgundy); font-weight: 600; font-size: 1.05rem;
  border-bottom: 1.5px solid transparent; transition: border-color .3s, gap .3s;
}
.shop-more svg { width: 20px; height: 20px; transition: transform .3s var(--rk-ease); }
.shop-more:hover { border-color: var(--rk-gold); gap: .9rem; }
.shop-more:hover svg { transform: translateX(-4px); }
.rarities .center { text-align: center; }

@media (max-width: 760px) {
  .pcard { flex-basis: 74%; }
}

/* ============================================================
   PROCESS (steps)
   ============================================================ */
.process { background: var(--rk-cream); }
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem;
  counter-reset: step; position: relative;
}
.steps::before { /* connecting line (desktop) */
  content:""; position:absolute; top:38px; right:12%; left:12%; height:1px;
  background: repeating-linear-gradient(90deg, var(--rk-gold) 0 8px, transparent 8px 16px);
  opacity: .5;
}
.step { text-align: center; position: relative; }
.step .ring {
  width: 76px; height: 76px; margin: 0 auto 1.3rem; border-radius: 50%;
  display: grid; place-items: center; position: relative; z-index: 1;
  background: var(--rk-cream); border: 1.5px solid var(--rk-gold);
  color: var(--rk-burgundy); font-family: var(--font-display); font-size: 1.8rem;
  box-shadow: 0 0 0 8px var(--rk-cream), var(--rk-shadow-soft);
  transition: transform .4s var(--rk-ease), background .4s, color .4s;
}
.step:hover .ring { transform: translateY(-5px); background: var(--rk-burgundy); color: var(--rk-gold-light); }
.step h3 { font-size: 1.3rem; color: var(--rk-burgundy); margin-bottom: .5rem; }
.step p { color: var(--rk-ink-soft); font-size: .96rem; }

/* ============================================================
   BENEFITS (dark image-style band)
   ============================================================ */
.benefits {
  color: var(--rk-cream); position: relative; overflow: hidden;
  background: radial-gradient(90% 140% at 20% 0%, #6c0815, var(--rk-burgundy-deep));
}
.benefits::before { display: none; }
.benefits .wrap { position: relative; z-index: 1; }
.benefit-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.6rem; margin-top: 1rem; }
.benefit {
  display: flex; gap: 1.2rem; padding: 1.8rem;
  border: 1px solid rgba(188,162,95,.22); border-radius: var(--rk-r);
  background: rgba(255,255,255,.03); transition: background .35s, border-color .35s, transform .35s;
}
.benefit:hover { background: rgba(188,162,95,.08); border-color: var(--rk-gold); transform: translateY(-4px); }
.benefit .ico { flex: 0 0 auto; width: 46px; height: 46px; color: var(--rk-gold); }
.benefit h3 { color: var(--rk-gold-light); font-size: 1.24rem; margin-bottom: .4rem; }
.benefit p { color: rgba(245,239,230,.78); font-size: .96rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--rk-cream); } /* #f3eddf */
.quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.quote {
  background: var(--rk-cream-card); border: 1px solid var(--rk-gold-line);
  border-radius: var(--rk-r-lg); padding: 2.2rem; position: relative;
  box-shadow: var(--rk-shadow-soft); transition: transform .35s var(--rk-ease), box-shadow .35s;
}
.quote:hover { transform: translateY(-5px); box-shadow: var(--rk-shadow); }
.quote .qmark { font-family: var(--font-display); font-size: 3.4rem; color: var(--rk-gold); line-height: .6; opacity:.5; }
.quote p { font-size: 1.05rem; color: var(--rk-ink); margin: .6rem 0 1.4rem; }
.quote .stars { color: var(--rk-gold); letter-spacing: .15em; margin-bottom: .6rem; }
.quote .who { font-family: var(--font-body); font-weight: 600; color: var(--rk-burgundy); font-size: 1.05rem; }
.quote .role { color: var(--rk-ink-soft); font-size: .85rem; }

/* ============================================================
   CTA BANNER — صمم تجربتك
   ============================================================ */
.cta-banner-wrap { background: var(--rk-cream); padding: clamp(2rem,5vw,4.5rem) clamp(1.3rem,4vw,3rem); }
.cta-banner {
  display: block; max-width: var(--rk-maxw); margin-inline: auto;
  border-radius: var(--rk-r-lg); overflow: hidden; box-shadow: var(--rk-shadow);
  position: relative; line-height: 0;
}
.cta-banner img {
  width: 100%; height: auto; display: block;
  transition: transform .6s var(--rk-ease);
}
.cta-banner:hover img { transform: scale(1.02); }
@media (max-width: 600px) {
  .cta-banner-wrap { padding-inline: 0; }
  .cta-banner { border-radius: 0; }
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact {
  position: relative; color: var(--rk-cream); overflow: hidden;
  background: radial-gradient(100% 120% at 80% 0%, #7a0a18, var(--rk-burgundy-deep));
}
.contact::before { display: none; }
.contact .wrap { position: relative; z-index: 1; }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: start; }
.contact h2 { font-size: clamp(1.8rem,4vw,2.7rem); color: var(--rk-gold-light); margin-bottom: 1rem; }
.contact .intro { color: rgba(245,239,230,.82); margin-bottom: 2rem; max-width: 40ch; }

.form-card {
  background: var(--rk-cream-card); border-radius: var(--rk-r-lg);
  padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--rk-shadow-lg);
  border: 1px solid var(--rk-gold);
}
.field { margin-bottom: 1.1rem; }
.field label { display:block; font-family: var(--font-body); font-size: .85rem; color: var(--rk-burgundy); font-weight: 600; margin-bottom: .4rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border-radius: var(--rk-r-sm);
  border: 1px solid rgba(95,6,17,.18); background: var(--rk-cream);
  font-family: var(--font-body); font-size: .98rem; color: var(--rk-ink);
  transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--rk-gold); box-shadow: 0 0 0 3px var(--rk-gold-glass);
}
.field textarea { resize: vertical; min-height: 90px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-card .btn { width: 100%; margin-top: .5rem; }
.form-status { margin: .9rem 0 0; font-family: var(--font-body); font-size: .95rem; text-align: center; min-height: 1.2em; }
.form-status.is-pending { color: var(--rk-ink-soft); }
.form-status.is-ok {
  color: var(--rk-olive); font-weight: 600; padding: .85rem 1rem; border-radius: var(--rk-r-sm);
  background: rgba(122,132,77,.12); border: 1px solid rgba(122,132,77,.4);
}
.form-status.is-err {
  color: var(--rk-burgundy); font-weight: 600; padding: .85rem 1rem; border-radius: var(--rk-r-sm);
  background: rgba(95,6,17,.07); border: 1px solid rgba(95,6,17,.25);
}

.contact-aside { display: flex; flex-direction: column; gap: 1rem; }
.contact-line {
  display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.3rem;
  border: 1px solid rgba(188,162,95,.25); border-radius: var(--rk-r);
  background: rgba(255,255,255,.03); transition: background .3s, border-color .3s;
}
.contact-line:hover { background: rgba(188,162,95,.08); border-color: var(--rk-gold); }
.contact-line .ico { width: 26px; height: 26px; color: var(--rk-gold); flex: 0 0 auto; }
.contact-line .t { font-size: .78rem; color: var(--rk-gold); letter-spacing: .08em; }
.contact-line .v { color: var(--rk-cream); font-size: 1.02rem; direction: ltr; text-align: right; }
.wa-btn { background: var(--rk-olive); color: var(--rk-gold-light); align-self: flex-start; align-items: center; line-height: 1; }
.wa-btn svg { flex: 0 0 auto; display: block; transform: translateY(-2px); }
.wa-btn:hover { background: var(--rk-olive-deep); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--rk-burgundy-deep); color: rgba(245,239,230,.78);
  padding: clamp(3rem,6vw,5rem) 0 2rem; position: relative;
}
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.4rem; padding-bottom: 2.6rem; border-bottom: 1px solid rgba(188,162,95,.18); }
.footer-logo { height: 88px; width: auto; margin-bottom: 1.3rem; }
.footer-brand p { font-family: var(--font-body); color: var(--rk-gold-light); font-size: 1.02rem; line-height: 1.9; max-width: 36ch; opacity: .92; }
.footer-col h4 { color: var(--rk-gold); font-size: 1.15rem; margin-bottom: 1.1rem; font-family: var(--font-display); font-weight: 500; }
.footer-col a { display: block; padding: .35rem 0; opacity: .85; transition: color .25s, padding .25s; font-size: .95rem; }
.footer-col a:hover { color: var(--rk-gold-light); padding-right: .4rem; }
.footer-col .v { direction: ltr; text-align: right; }
.socials { display: flex; gap: .6rem; margin-top: 1rem; }
.socials a {
  width: 40px; height: 40px; display: grid; place-items: center; border-radius: 10px;
  background: var(--rk-gold-soft); color: var(--rk-burgundy); transition: background .3s, color .3s, transform .3s;
}
.socials a:hover { background: var(--rk-gold-light); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }
.footer-bottom { padding-top: 1.6rem; text-align: center; font-size: .85rem; color: rgba(245,239,230,.55); }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--rk-ease), transform .8s var(--rk-ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .smoke, .hero::before { animation: none; }
  html { scroll-behavior: auto; }
}

/* Mobile sticky CTA */
.mobile-cta {
  position: fixed; inset: auto 0 0 0; z-index: 90; display: none;
  padding: .7rem 1rem calc(.7rem + env(safe-area-inset-bottom));
  background: rgba(76,5,14,.96); backdrop-filter: blur(8px);
  gap: .7rem; border-top: 1px solid rgba(188,162,95,.25);
}
.mobile-cta .btn { flex: 1; padding: .8rem; font-size: .92rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .cards { grid-template-columns: repeat(2,1fr); }
  .benefit-grid, .quotes { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .menu-btn { display: block; }
  .nav-cta { display: none; }
  .cards, .steps, .benefit-grid, .quotes { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .mobile-cta { display: flex; }
  body.has-mcta { padding-bottom: 4.5rem; }
  .gallery-grid { grid-auto-rows: 200px; }
  .tile.tall { grid-row: span 1; }
}

/* Slide-in mobile nav */
.m-nav {
  position: fixed; inset: 0; z-index: 200; background: var(--rk-burgundy-deep);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem;
  transform: translateX(100%); transition: transform .45s var(--rk-ease);
}
.m-nav.open { transform: none; }
.m-nav a { color: var(--rk-gold-light); font-family: var(--font-body); font-size: 1.4rem; font-weight: 500; }
.m-nav .close { position: absolute; top: 1.5rem; left: 1.5rem; color: var(--rk-gold); width: 32px; height: 32px; }
.m-nav::before { display: none; }
