/* ═══════════════════════════════════════════════════════════
   Riyada Group — Public site CSS (Mobile-first)
   ═══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

:root {
  --gold:        #B8922A;
  --gold2:       #D4AA4A;
  --gold3:       #E8CC80;
  --gold-pale:   rgba(184,146,42,0.12);
  --gold-glow:   rgba(184,146,42,0.30);
  --beige:       #F5EDD8;
  --beige2:      #EDE0C4;
  --beige3:      #E2D4B0;
  --cream:       #FAF7F0;
  --white:       #FFFFFF;
  --ink:         #2C2416;
  --ink2:        #3D3120;
  --muted:       #8A7A5A;
  --border:      rgba(184,146,42,0.22);
  --border2:     rgba(184,146,42,0.10);
}

body {
  font-family: 'Tajawal', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  direction: rtl;
  -webkit-font-smoothing: antialiased;
}
body.ltr { direction: ltr; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--beige2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

img { max-width: 100%; height: auto; display: block; }

/* ═══════════════ NAVBAR ═══════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 16px;
  background: rgba(245,237,216,0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: height .35s ease, padding .35s ease, background .35s ease;
}
#nav.solid { height: 56px; box-shadow: 0 2px 18px rgba(184,146,42,0.10); }
.nav-logo img { height: 40px; width: auto; transition: height .35s; }
#nav.solid .nav-logo img { height: 34px; }

.nav-links { display: none; gap: 36px; }
.nav-links a {
  font-size: 13px; font-weight: 600; letter-spacing: 1px;
  color: var(--ink); text-decoration: none;
  position: relative; transition: color .25s;
  padding: 8px 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1.5px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 10px; }
.lang-btn {
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 2px;
  color: var(--gold); background: transparent;
  border: 1px solid var(--gold); padding: 8px 14px; border-radius: 2px;
  cursor: pointer; transition: all .3s;
  min-height: 36px;
}
.lang-btn:hover { background: var(--gold); color: var(--white); }

.ham {
  display: flex; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 10px 8px;
  border: none; background: transparent;
  -webkit-tap-highlight-color: transparent;
}
.ham span { width: 24px; height: 2px; background: var(--ink); display: block; transition: all .3s; border-radius: 2px; }

#mob-menu {
  display: none; position: fixed; inset: 0; z-index: 190;
  background: rgba(245,237,216,0.99);
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  padding: 24px;
}
#mob-menu.open { display: flex; }
#mob-menu a {
  font-size: 22px; font-weight: 800; letter-spacing: 2px;
  color: var(--ink); text-decoration: none; transition: color .2s;
  padding: 8px 12px;
  -webkit-tap-highlight-color: transparent;
}
#mob-menu a:hover, #mob-menu a:active { color: var(--gold); }

/* ═══════════════ HERO ═══════════════ */
#hero {
  min-height: 100vh;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  background-color: var(--beige);
  padding-top: 64px;
}
.hero-marble {
  position: absolute; inset: 0; z-index: 0;
  background-image: var(--marble);
  background-size: cover; background-position: center;
  opacity: 0.55;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(245,237,216,0.88) 0%, rgba(232,220,180,0.65) 40%, rgba(245,237,216,0.82) 100%);
}
.hero-vignette {
  position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, transparent 50%, rgba(184,146,42,0.06) 100%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 2;
  background-image:
    linear-gradient(rgba(184,146,42,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,146,42,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
}
.corner { display: none; }
.hero-ring { display: none; }

.hero-inner {
  position: relative; z-index: 4;
  width: 100%; max-width: 1120px;
  margin: 0 auto; padding: 24px 20px;
  display: grid; grid-template-columns: 1fr;
  gap: 36px; align-items: center;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  opacity: 0; animation: fadeUp .8s .15s forwards;
}
.hero-eyebrow::before { content:''; width:24px; height:1px; background:var(--gold); opacity:.7; }

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 8vw, 64px);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.5px;
  color: var(--ink); margin-bottom: 8px;
  opacity: 0; animation: fadeUp .8s .3s forwards;
}
.hero-h1 em { font-style: italic; color: var(--gold); }

.hero-sub-ar {
  font-size: clamp(17px, 4.5vw, 28px);
  font-weight: 700; color: var(--ink2);
  margin-bottom: 16px; line-height: 1.3;
  opacity: 0; animation: fadeUp .8s .4s forwards;
}
.hero-divider {
  width: 48px; height: 1.5px; margin: 0 auto;
  background: linear-gradient(90deg, var(--gold), var(--gold3));
  margin-bottom: 16px;
  opacity: 0; animation: fadeUp .8s .45s forwards;
}
.hero-desc {
  font-size: 15px; line-height: 1.75; color: var(--muted);
  margin-bottom: 28px; max-width: 540px; margin-inline: auto;
  opacity: 0; animation: fadeUp .8s .5s forwards;
}
.hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  opacity: 0; animation: fadeUp .8s .6s forwards;
}
.btn-gold, .btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Tajawal', sans-serif;
  font-size: 13px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 14px 28px; min-height: 48px;
  border-radius: 2px; text-decoration: none; cursor: pointer;
  transition: all .3s; position: relative; overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}
.btn-gold { background: var(--gold); color: var(--white); border: none; }
.btn-gold::before {
  content:''; position:absolute; inset:0;
  background: var(--gold2); transform: translateX(-100%); transition: transform .35s;
}
.btn-gold span { position: relative; z-index: 1; }
.btn-gold:hover::before { transform: translateX(0); }
.btn-gold:hover { box-shadow: 0 8px 24px var(--gold-glow); transform: translateY(-2px); }

.btn-outline {
  color: var(--ink); background: transparent;
  border: 1.5px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--white); }

.hero-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative; order: -1;
  opacity: 0; animation: fadeIn .9s .65s forwards;
}
.hvr-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(184,146,42,0.15); }
.hvr-r1 { width: 220px; height: 220px; animation: spinR 40s linear infinite; }
.hvr-r2 { width: 160px; height: 160px; animation: spinL 28s linear infinite; }
@keyframes spinR { to { transform: rotate(360deg); } }
@keyframes spinL { to { transform: rotate(-360deg); } }
.hero-logo-main {
  width: 140px; height: auto;
  filter: drop-shadow(0 4px 24px rgba(184,146,42,0.22));
  animation: floatY 7s ease-in-out infinite;
  position: relative; z-index: 1;
}
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* Hero stats */
.hero-stats-wrap {
  position: relative; z-index: 4;
  max-width: 1120px; margin: 36px auto 0;
  padding: 0 20px;
  opacity: 0; animation: fadeUp .8s .85s forwards;
}
.hero-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
}
.stat { padding: 22px 0; text-align: center; border-bottom: 1px solid var(--border); }
.stat:nth-child(2n+1) { border-left: 1px solid var(--border); }
.stat:nth-last-child(-n+2) { border-bottom: none; }
.stat-n { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 700; color: var(--gold); line-height: 1; display: block; }
.stat-l { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); display: block; margin-top: 6px; }

/* ═══════════════ MARQUEE ═══════════════ */
.marquee {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold2) 50%, var(--gold) 100%);
  padding: 11px 0; overflow: hidden; white-space: nowrap;
}
.marquee-track { display: inline-flex; animation: marquee 22s linear infinite; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.85); font-weight: 500;
  padding: 0 24px; border-left: 1px solid rgba(255,255,255,0.2);
}

/* ═══════════════ SECTION UTILS ═══════════════ */
.eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.eyebrow::before { content:''; width:24px; height:1px; background:var(--gold); }
.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 6vw, 48px);
  font-weight: 700; line-height: 1.15; letter-spacing: -0.5px;
}
.sec-body { font-size: 15px; line-height: 1.8; color: var(--muted); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }

/* ═══════════════ ABOUT ═══════════════ */
#about { padding: 70px 0; position: relative; overflow: hidden; background-color: var(--beige); }
.about-marble-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: var(--marble); background-size: cover; background-position: center;
  opacity: 0.2;
}
.about-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(245,237,216,0.95) 0%, rgba(237,224,196,0.92) 100%);
}
.about-inner {
  position: relative; z-index: 2;
  max-width: 1120px; margin: 0 auto; padding: 0 20px;
  display: grid; grid-template-columns: 1fr;
  gap: 32px; align-items: center;
}
.about-visual-box {
  position: relative; background: rgba(255,255,255,0.6);
  border: 1px solid var(--border); border-radius: 4px;
  min-height: 220px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(184,146,42,0.08);
}
.about-visual-box::before { content: ''; position: absolute; inset: 16px; border: 1px solid rgba(184,146,42,0.15); border-radius: 2px; }
.about-box-marble { position: absolute; inset: 0; background-image: var(--marble); background-size: cover; opacity: 0.15; }
.about-box-glow   { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(184,146,42,0.07) 0%, transparent 70%); }
.about-visual-box img { width: 150px; height: auto; position: relative; z-index: 1; filter: drop-shadow(0 4px 20px rgba(184,146,42,0.18)); }
.about-badge {
  position: absolute; bottom: 16px; right: 16px;
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold); opacity: .55;
}
.about-text .sec-title { color: var(--ink); margin-bottom: 16px; }
.about-text .sec-body  { margin: 0 0 24px; }
.pillars { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 4px; }
.pill {
  padding: 16px 14px;
  border-top: 2px solid var(--gold);
  background: rgba(255,255,255,0.65);
  border: 1px solid var(--border2); border-top: 2px solid var(--gold);
  border-radius: 0 0 4px 4px;
  transition: background .3s, box-shadow .3s;
}
.pill:hover { background: var(--white); box-shadow: 0 4px 16px rgba(184,146,42,0.10); }
.pill-n { font-family:'DM Mono',monospace; font-size:9px; letter-spacing:2px; color:var(--gold); margin-bottom:6px; }
.pill-t { font-size:14px; font-weight:700; color:var(--ink); line-height:1.4; }

/* ═══════════════ COMPANIES ═══════════════ */
#companies { padding: 70px 0; position: relative; overflow: hidden; background-color: var(--ink); }
.co-marble { position: absolute; inset: 0; z-index: 0; background-image: var(--marble); background-size: cover; opacity: 0.06; }
.co-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(155deg, #2C2416 0%, #3D3120 50%, #2C2416 100%);
  opacity: 0.94;
}
.co-glow {
  position: absolute; top: -200px; left: -200px; z-index: 1;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,146,42,0.06) 0%, transparent 65%);
}
.co-inner { position: relative; z-index: 2; max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.co-inner .sec-title { color: var(--beige); margin-bottom: 32px; }
.co-inner .eyebrow::before { background: var(--gold3); }
.co-inner .eyebrow { color: var(--gold3); }

.co-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.co-card {
  background: rgba(245,237,216,0.04);
  border: 1px solid rgba(184,146,42,0.14);
  border-radius: 6px; padding: 28px 22px;
  position: relative; overflow: hidden;
  transition: border-color .4s, transform .4s, box-shadow .4s;
}
.co-card::before {
  content: ''; position: absolute; inset: 0; border-radius: 6px;
  background: linear-gradient(130deg, rgba(184,146,42,0.07) 0%, transparent 55%);
  opacity: 0; transition: opacity .4s;
}
.co-card:hover, .co-card:active {
  border-color: rgba(184,146,42,0.42);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.30);
}
.co-card:hover::before { opacity: 1; }
.co-num {
  position: absolute; top: 16px; left: 18px;
  font-family: 'Playfair Display', serif;
  font-size: 44px; font-weight: 700;
  color: rgba(184,146,42,0.08); line-height: 1; user-select: none;
}
.co-icon {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(184,146,42,0.28);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  background: rgba(184,146,42,0.06);
  transition: all .3s;
}
.co-card:hover .co-icon { border-color: var(--gold2); background: rgba(184,146,42,0.12); }
.co-name { font-size: 17px; font-weight: 700; color: var(--beige); margin-bottom: 4px; line-height: 1.3; }
.co-name-en { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 1.8px; text-transform: uppercase; color: rgba(232,204,128,0.4); margin-bottom: 12px; }
.co-desc { font-size: 14px; line-height: 1.7; color: rgba(232,220,180,0.5); margin-bottom: 18px; }
.co-tag {
  display: inline-block;
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold2); border: 1px solid rgba(184,146,42,0.3);
  padding: 5px 12px; border-radius: 20px;
}

/* ═══════════════ CONTACT ═══════════════ */
#contact { padding: 70px 0; position: relative; overflow: hidden; background-color: var(--cream); }
.ct-marble { position: absolute; inset: 0; z-index: 0; background-image: var(--marble); background-size: cover; opacity: 0.18; }
.ct-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(250,247,240,0.97) 0%, rgba(245,237,216,0.94) 100%);
}
.ct-inner {
  position: relative; z-index: 2;
  max-width: 1120px; margin: 0 auto; padding: 0 20px;
  display: grid; grid-template-columns: 1fr; gap: 36px;
}
.ct-info .sec-title { color: var(--ink); margin-bottom: 14px; }
.ct-info .sec-body  { margin: 14px 0 28px; }

.ct-items { display: flex; flex-direction: column; }
.ct-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border2); }
.ct-item:last-child { border-bottom: none; }
.ct-ico {
  width: 44px; height: 44px; flex-shrink: 0;
  border: 1px solid var(--border); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; background: rgba(184,146,42,0.06);
}
.ct-lbl { font-family:'DM Mono',monospace; font-size:9px; letter-spacing:2px; text-transform:uppercase; color:var(--muted); margin-bottom:4px; }
.ct-val { font-size:15px; font-weight:600; color:var(--ink); text-decoration:none; transition:color .2s; word-break: break-word; }
.ct-val:hover { color: var(--gold); }

.ct-form {
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 28px 22px;
  box-shadow: 0 8px 32px rgba(184,146,42,0.08);
  backdrop-filter: blur(8px);
}
.ct-form-title { font-family:'Playfair Display',serif; font-size:22px; font-weight:700; color:var(--ink); margin-bottom:22px; }
.f-row { margin-bottom: 14px; }
.f-lbl { display:block; font-family:'DM Mono',monospace; font-size:9px; letter-spacing:2px; text-transform:uppercase; color:var(--muted); margin-bottom:6px; }
.f-inp {
  width:100%; padding:13px 16px; min-height: 48px;
  border: 1px solid rgba(184,146,42,0.2); border-radius:6px;
  background: var(--beige); font-family:'Tajawal',sans-serif;
  font-size:15px; color:var(--ink); outline:none;
  transition: border-color .25s, box-shadow .25s;
}
.f-inp:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,146,42,0.12); }
textarea.f-inp { resize:vertical; min-height: 110px; }
.f-submit {
  width:100%; padding:15px; min-height: 50px;
  background: var(--gold); color: var(--white);
  border:none; border-radius:6px;
  font-family:'Tajawal',sans-serif; font-size:13px; font-weight:800;
  letter-spacing:2.5px; text-transform:uppercase;
  cursor:pointer; transition:all .3s; position:relative; overflow:hidden;
  -webkit-tap-highlight-color: transparent;
}
.f-submit::before { content:''; position:absolute; inset:0; background: var(--gold2); transform:translateX(100%); transition:transform .35s; }
.f-submit span { position:relative; z-index:1; }
.f-submit:hover::before { transform:translateX(0); }
.f-submit:hover { transform:translateY(-1px); }

/* ═══════════════ PARTNERS / CLIENTS LOGOS ═══════════════ */
#partners {
  padding: 60px 0;
  background: var(--cream);
  position: relative; overflow: hidden;
}
.pt-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 20px;
}
.pt-header { text-align: center; margin-bottom: 32px; }
.pt-header .eyebrow { justify-content: center; }
.pt-header .eyebrow::before { display: none; }
.pt-header .sec-title { color: var(--ink); }

.pt-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.pt-track {
  display: flex; align-items: center; gap: 56px;
  animation: ptScroll 36s linear infinite;
  width: max-content;
}
.pt-track:hover { animation-play-state: paused; }
@keyframes ptScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.pt-logo {
  flex: 0 0 auto;
  height: 56px; width: auto;
  display: flex; align-items: center; justify-content: center;
  filter: grayscale(100%) opacity(0.65);
  transition: filter .3s ease, transform .3s ease;
}
.pt-logo:hover { filter: grayscale(0) opacity(1); transform: scale(1.05); }
.pt-logo img { max-height: 56px; max-width: 160px; object-fit: contain; }

.pt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.pt-grid .pt-logo {
  height: 80px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px;
}
@media (min-width: 600px) { .pt-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .pt-grid { grid-template-columns: repeat(5, 1fr); } }

/* ═══════════════ PROJECTS GALLERY ═══════════════ */
#projects {
  padding: 70px 0;
  background: var(--beige);
  position: relative; overflow: hidden;
}
.pj-marble {
  position: absolute; inset: 0; z-index: 0;
  background-image: var(--marble); background-size: cover; opacity: 0.15;
}
.pj-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(245,237,216,0.94) 0%, rgba(237,224,196,0.92) 100%);
}
.pj-inner {
  position: relative; z-index: 2;
  max-width: 1120px; margin: 0 auto; padding: 0 20px;
}
.pj-header { margin-bottom: 32px; }
.pj-header .sec-title { color: var(--ink); }

.pj-filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 24px;
}
.pj-filter {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  background: transparent; border: 1px solid var(--border);
  color: var(--muted); padding: 8px 14px; border-radius: 20px;
  cursor: pointer; transition: all .25s;
  min-height: 36px;
  -webkit-tap-highlight-color: transparent;
}
.pj-filter.active, .pj-filter:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

.pj-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) { .pj-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (min-width: 960px) { .pj-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.pj-card {
  position: relative;
  border-radius: 8px; overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform .35s ease, box-shadow .35s ease;
  -webkit-tap-highlight-color: transparent;
}
.pj-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(184,146,42,0.18); }
.pj-card.hidden { display: none; }
.pj-image {
  width: 100%; aspect-ratio: 4/3;
  background: var(--beige2) center/cover no-repeat;
  position: relative;
}
.pj-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(44,36,22,0.7) 100%);
  opacity: 0; transition: opacity .3s;
}
.pj-card:hover .pj-image::after { opacity: 1; }
.pj-content { padding: 16px 18px; }
.pj-title { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 4px; line-height: 1.3; }
.pj-tag {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}

/* ─── Lightbox ─── */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(20,16,8,0.92);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lb-box {
  background: var(--cream);
  border-radius: 8px; overflow: hidden;
  max-width: 920px; width: 100%; max-height: 90vh;
  display: flex; flex-direction: column;
  position: relative;
}
.lb-close {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: rgba(0,0,0,0.5); color: #fff;
  border: none; border-radius: 50%;
  font-size: 20px; cursor: pointer; z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.lb-image { width: 100%; aspect-ratio: 16/10; background: var(--beige2) center/contain no-repeat; }
.lb-content { padding: 22px; overflow-y: auto; }
.lb-tag { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.lb-title { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--ink); margin-bottom: 12px; line-height: 1.25; }
.lb-desc { font-size: 15px; color: var(--muted); line-height: 1.75; }

/* ═══════════════ NEWS ═══════════════ */
#news {
  padding: 70px 0;
  background: var(--cream);
  position: relative; overflow: hidden;
}
.nw-marble {
  position: absolute; inset: 0; z-index: 0;
  background-image: var(--marble); background-size: cover; opacity: 0.12;
}
.nw-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(250,247,240,0.94) 0%, rgba(245,237,216,0.92) 100%);
}
.nw-inner {
  position: relative; z-index: 2;
  max-width: 1120px; margin: 0 auto; padding: 0 20px;
}
.nw-inner .sec-title { color: var(--ink); margin-bottom: 32px; }

.nw-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 720px)  { .nw-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 1000px) { .nw-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; } }

.nw-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
}
.nw-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(184,146,42,0.18); }
.nw-img {
  width: 100%; aspect-ratio: 16/10;
  background: var(--beige);
  overflow: hidden;
}
.nw-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.nw-body { padding: 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.nw-date {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold);
}
.nw-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px; line-height: 1.3;
  color: var(--ink);
  margin: 0;
}
body.ltr .nw-title { font-family: 'Playfair Display', serif; }
.nw-excerpt {
  font-size: 14px; line-height: 1.7;
  color: var(--muted);
  margin: 0;
}
.nw-details { margin-top: 6px; }
.nw-details > .nw-more {
  list-style: none; cursor: pointer;
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
  padding: 6px 0;
  display: inline-block;
  transition: color .2s;
  -webkit-tap-highlight-color: transparent;
}
.nw-details > .nw-more::-webkit-details-marker { display: none; }
.nw-details > .nw-more::after {
  content: ' ↓';
  display: inline-block;
  transition: transform .2s;
}
.nw-details[open] > .nw-more::after { content: ' ↑'; }
.nw-details > .nw-more:hover { color: var(--gold2); }
.nw-full {
  padding-top: 10px;
  font-size: 14px; line-height: 1.85;
  color: var(--ink2);
}
.nw-full p { margin: 0 0 10px; }
.nw-full p:last-child { margin-bottom: 0; }

/* ═══════════════ GOOGLE MAP ═══════════════ */
.ct-map {
  margin-top: 24px;
  border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 4px 16px rgba(184,146,42,0.08);
}
.ct-map iframe {
  width: 100%; height: 280px; border: 0; display: block;
}
@media (min-width: 960px) { .ct-map iframe { height: 320px; } }
.ct-map-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted);
  padding: 10px 14px;
  background: rgba(184,146,42,0.06);
  border-top: 1px solid var(--border);
}

/* ═══════════════ SOCIAL MEDIA ═══════════════ */
.social-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 22px;
}
.social-link {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(184,146,42,0.06);
  color: var(--ink);
  text-decoration: none;
  transition: all .25s ease;
  -webkit-tap-highlight-color: transparent;
}
.social-link:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(184,146,42,0.25);
}
.social-link svg { width: 18px; height: 18px; }

.footer-social {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
}
.footer-social .social-link {
  width: 36px; height: 36px;
  background: rgba(232,220,180,0.06);
  border-color: rgba(232,220,180,0.15);
  color: rgba(232,220,180,0.6);
}
.footer-social .social-link:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.footer-social .social-link svg { width: 16px; height: 16px; }

/* ═══════════════ FOOTER ═══════════════ */
footer { background: var(--ink2); border-top: 1px solid var(--border); padding: 36px 20px; position: relative; overflow: hidden; }
.footer-marble { position: absolute; inset: 0; background-image: var(--marble); background-size: cover; opacity: 0.05; }
.footer-inner {
  position: relative; z-index: 1;
  max-width: 1120px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center;
}
.footer-logo img { height: 40px; width: auto; opacity: .75; }
.footer-nav { display:flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.footer-nav a {
  font-family:'DM Mono',monospace; font-size:10px; letter-spacing:2px; text-transform:uppercase;
  color: rgba(232,220,180,0.45); text-decoration:none; transition:color .2s;
  padding: 6px 4px;
}
.footer-nav a:hover { color: var(--gold2); }
.footer-copy { font-family:'DM Mono',monospace; font-size:10px; letter-spacing:1px; color: rgba(232,220,180,0.25); }

/* ═══════════════ WHATSAPP FAB ═══════════════ */
.wa-fab {
  position:fixed; bottom:18px; right:16px; z-index:999;
  width:54px; height:54px; border-radius:50%;
  background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center;
  text-decoration:none;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
  transition: transform .3s, box-shadow .3s;
  animation: waPulse 3.5s ease-in-out infinite;
  -webkit-tap-highlight-color: transparent;
}
.wa-fab:hover, .wa-fab:active { transform:scale(1.08); box-shadow:0 8px 28px rgba(37,211,102,0.55); }
@keyframes waPulse {
  0%,100% { box-shadow:0 4px 18px rgba(37,211,102,0.45); }
  50%     { box-shadow:0 4px 26px rgba(37,211,102,0.62), 0 0 0 8px rgba(37,211,102,0.08); }
}

@keyframes fadeUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

/* ═══════════════════════════════════════
   RESPONSIVE — progressive enhancement
   ═══════════════════════════════════════ */

/* Tablets ≥ 600px */
@media (min-width: 600px) {
  #nav { padding: 0 24px; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
  .stat { border-left: 1px solid var(--border); border-bottom: none; }
  .stat:first-child { border-left: none; }
  .stat:nth-child(2n+1) { border-left: 1px solid var(--border); }
  .pillars { grid-template-columns: repeat(3, 1fr); }
  .co-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
}

/* Desktops ≥ 960px */
@media (min-width: 960px) {
  #nav { padding: 0 40px; height: 72px; }
  #nav.solid { height: 60px; }
  .nav-links { display: flex; }
  .ham { display: none; }
  .nav-logo img { height: 48px; }
  #nav.solid .nav-logo img { height: 38px; }

  .hero-inner {
    grid-template-columns: 1.15fr 1fr;
    gap: 56px; text-align: right;
    padding: 88px 40px 56px;
  }
  body.ltr .hero-inner { text-align: left; }
  .hero-eyebrow { justify-content: flex-start; }
  body.ltr .hero-eyebrow { justify-content: flex-start; }
  .hero-divider { margin-inline: 0; }
  .hero-desc { margin-inline: 0; }
  .hero-btns { justify-content: flex-start; }
  .hero-visual { order: 0; }
  .hvr-r1 { width: 320px; height: 320px; }
  .hvr-r2 { width: 220px; height: 220px; }
  .hero-logo-main { width: 190px; }
  .hero-stats-wrap { margin-top: 64px; padding: 0 40px; }
  .stat { padding: 28px 0; }
  .stat-n { font-size: 42px; }

  .corner { display: block; position: absolute; z-index: 3; width: 56px; height: 56px; border-color: var(--gold); border-style: solid; opacity: .35; }
  .corner-tr { top: 80px; right: 40px; border-width: 1px 1px 0 0; }
  .corner-bl { bottom: 64px; left: 40px; border-width: 0 0 1px 1px; }
  .hero-ring { display: block; position: absolute; border-radius: 50%; border: 1px solid rgba(184,146,42,0.12); z-index: 2; }
  .hr1 { width: 520px; height: 520px; top: 50%; right: -120px; transform: translateY(-50%); }
  .hr2 { width: 340px; height: 340px; top: 50%; right: -20px;  transform: translateY(-50%); }

  #about    { padding: 100px 0; }
  #companies{ padding: 100px 0; }
  #contact  { padding: 100px 0; }

  .about-inner { grid-template-columns: 1fr 1.2fr; padding: 0 40px; gap: 64px; }
  .about-visual-box { min-height: 420px; }
  .about-visual-box img { width: 190px; }

  .co-inner { padding: 0 40px; }
  .ct-inner { grid-template-columns: 1fr 1.1fr; padding: 0 40px; gap: 56px; }
  .ct-form  { padding: 36px 32px; }

  footer { padding: 44px 40px; }
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
  .wa-fab { bottom: 26px; right: 26px; width: 58px; height: 58px; }
}

/* Larger desktops ≥ 1200px */
@media (min-width: 1200px) {
  .co-grid { gap: 20px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
}
