:root {
  --navy: #060d1f;
  --navy2: #0d1b35;
  --navy3: #112244;
  --gold: #c9973a;
  --gold2: #e8b84b;
  --gold3: #f7d07a;
  --white: #f5f0e8;
  --offwhite: #ede6d6;
  --muted: #8a8f9e;
  --border: rgba(201, 151, 58, 0.2);
  --glow: rgba(201, 151, 58, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--navy);
  color: var(--white);
  font-family: "DM Sans", "Cairo", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ─── NOISE OVERLAY ─────────────────────────── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

/* ─── NAV ────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(6, 13, 31, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: -1px;
}

.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.logo-text span {
  color: var(--gold2);
}

.lang-switcher {
  display: flex;
  gap: 0.2rem;
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 0.25rem;
  background: rgba(255, 255, 255, 0.03);
}

.lang-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.25s;
  text-transform: uppercase;
}

.lang-btn:hover {
  color: var(--white);
}
.lang-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
  font-weight: 700;
}

/* ─── HERO ───────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(17, 34, 68, 0.6), rgba(17, 34, 68, 0.8)),
    url("../images/banner/banner.jpg") center/cover no-repeat,
    radial-gradient(
      ellipse 80% 60% at 50% -10%,
      rgba(201, 151, 58, 0.18) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 40% at 80% 80%,
      rgba(17, 34, 68, 0.8) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, var(--navy) 0%, var(--navy2) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 151, 58, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 151, 58, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 80% 60% at 50% 20%,
    black 30%,
    transparent 80%
  );
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(201, 151, 58, 0.12) 0%,
    transparent 70%
  );
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(17, 34, 68, 0.6) 0%,
    transparent 70%
  );
  bottom: -80px;
  right: -80px;
  animation-delay: -4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold2);
  border: 1px solid var(--border);
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  margin-bottom: 2.5rem;
  background: rgba(201, 151, 58, 0.06);
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
  animation-delay: 0.2s;
}

.hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold2);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
  animation-delay: 0.4s;
}

.hero-title .line1 {
  display: block;
}
.hero-title .line2 {
  display: block;
  background: linear-gradient(90deg, var(--gold), var(--gold2), var(--gold3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-arabic {
  font-family: "Cairo", sans-serif;
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  font-weight: 300;
  color: rgba(245, 240, 232, 0.5);
  margin-bottom: 2rem;
  letter-spacing: 2px;
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
  animation-delay: 0.55s;
  direction: rtl;
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.6);
  max-width: 560px;
  margin: 0 auto 3rem;
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
  animation-delay: 0.7s;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
  animation-delay: 0.85s;
  box-shadow: 0 8px 32px rgba(201, 151, 58, 0.3);
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(201, 151, 58, 0.45);
}

.hero-cta svg {
  width: 16px;
}

/* ─── SECTION SHARED ─────────────────────────── */
section {
  padding: 7rem 4rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.section-label::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold2);
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold), var(--gold3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  color: rgba(245, 240, 232, 0.55);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 4rem;
}

/* ─── SITES SECTION ──────────────────────────── */
.sites-section {
  background: var(--navy2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.sites-header {
  max-width: 1300px;
  margin: 0 auto 4rem;
}

.sites-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.site-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}

.site-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 151, 58, 0.08), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.site-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.site-card:hover {
  border-color: rgba(201, 151, 58, 0.4);
  transform: translateY(-6px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(201, 151, 58, 0.08);
}

.site-card:hover::before {
  opacity: 1;
}
.site-card:hover::after {
  transform: scaleX(1);
}

/* Large card spanning 2 cols */
.site-card.large {
  grid-column: span 2;
}

.site-card-number {
  font-family: "Playfair Display", serif;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.site-card-icon {
  width: 150px;
  height: 150px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(201, 151, 58, 0.15),
    rgba(201, 151, 58, 0.05)
  );
  border: 1px solid rgba(201, 151, 58, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  font-size: 1.5rem;
  transition: all 0.3s;
}

.site-card:hover .site-card-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border-color: transparent;
  transform: scale(1.1) rotate(-5deg);
}

.site-card-name {
  font-family: "Playfair Display", serif;
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  line-height: 1.2;
  transition: color 0.3s;
}

.site-card:hover .site-card-name {
  color: var(--gold2);
}

.site-card-desc {
  font-size: 0.88rem;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.site-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.5px;
  transition: gap 0.3s;
}

.site-card:hover .site-card-arrow {
  gap: 0.8rem;
}

/* ─── STATS STRIP ────────────────────────────── */
.stats-strip {
  padding: 5rem 4rem;
  background: var(--navy);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s;
}

.stat-item:hover {
  border-color: rgba(201, 151, 58, 0.3);
  background: rgba(201, 151, 58, 0.04);
  transform: translateY(-4px);
}

.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--gold), var(--gold3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
}

/* ─── PARTNERS ───────────────────────────────── */
.partners-section {
  background: var(--navy2);
  border-top: 1px solid var(--border);
}

.partners-header {
  max-width: 1300px;
  margin: 0 auto 4rem;
}

.partners-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}

.partner-card {
  aspect-ratio: 3/2;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
}

.partner-card:hover {
  border-color: rgba(201, 151, 58, 0.35);
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.3),
    0 0 24px rgba(201, 151, 58, 0.07);
  background: rgba(255, 255, 255, 0.05);
}

.partner-card img {
  width: 75%;
  height: 75%;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.7);
  transition: filter 0.35s;
}

.partner-card:hover img {
  filter: grayscale(0%) brightness(1);
}

.partner-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.3;
  transition: opacity 0.3s;
}

.partner-card:hover .partner-placeholder {
  opacity: 0.6;
}

.partner-placeholder svg {
  width: 36px;
  height: 36px;
  color: var(--gold);
}

.partner-placeholder span {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* ─── FOOTER ─────────────────────────────────── */
footer {
  padding: 4rem 4rem 2.5rem;
  border-top: 1px solid var(--border);
  background: var(--navy);
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
  gap: 3rem;
}

.footer-brand p {
  color: rgba(245, 240, 232, 0.45);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
  margin-top: 1rem;
}

.footer-links h4 {
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: rgba(245, 240, 232, 0.5);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold2);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(245, 240, 232, 0.3);
}

/* ─── RTL / LANGUAGE SUPPORT ─────────────────── */
[data-lang="ar"] {
  font-family: "Cairo", sans-serif;
  direction: rtl;
}

[data-lang="ar"] .section-label::before {
  display: none;
}
[data-lang="ar"] .section-label::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold2);
}

/* ─── SCROLL REVEAL ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}
.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  nav {
    padding: 1.2rem 2rem;
  }
  section {
    padding: 5rem 2rem;
  }
  .sites-grid {
    grid-template-columns: 1fr 1fr;
  }
  .site-card.large {
    grid-column: span 1;
  }
  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  nav {
    padding: 1rem 1.2rem;
  }
  .nav-logo .logo-text {
    display: none;
  }
  section {
    padding: 4rem 1.2rem;
  }
  .sites-grid {
    grid-template-columns: 1fr;
  }
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  .stats-strip {
    padding: 3rem 1.2rem;
  }
}

/* ═══════════════════════════════════════════════════
   NOS RÉALISATIONS — paste into your existing CSS
   ═══════════════════════════════════════════════════ */

/* ─── Section wrapper ─────────────────────────── */
.real-section {
  background: var(--navy);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.real-header {
  max-width: 1300px;
  margin: 0 auto 4rem;
}

/* ─── Grid ────────────────────────────────────── */
.real-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ─── Card ────────────────────────────────────── */
.real-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}

.real-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.real-card:hover {
  border-color: rgba(201, 151, 58, 0.4);
  transform: translateY(-6px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(201, 151, 58, 0.08);
}

.real-card:hover::after {
  transform: scaleX(1);
}

/* Featured card — spans 2 columns */
.real-card--featured {
  grid-column: span 2;
}

/* ─── Thumbnail ───────────────────────────────── */
.real-card-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--navy3);
}

.real-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1);
  filter: brightness(0.85);
}

.real-card:hover .real-card-thumb img {
  transform: scale(1.05);
  filter: brightness(1);
}

/* Overlay shown on hover */
.real-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 13, 31, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s;
  backdrop-filter: blur(3px);
}

.real-card:hover .real-card-overlay {
  opacity: 1;
}

.real-card-visit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  box-shadow: 0 8px 28px rgba(201, 151, 58, 0.35);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.real-card-visit svg {
  width: 14px;
  height: 14px;
}

.real-card:hover .real-card-visit {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(201, 151, 58, 0.5);
}

/* Fallback placeholder when no screenshot */
.real-card-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: rgba(201, 151, 58, 0.3);
}

.real-card-thumb-placeholder svg {
  width: 40px;
  height: 40px;
}

.real-card-thumb-placeholder span {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ─── Body ────────────────────────────────────── */
.real-card-body {
  padding: 1.6rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

/* Tags row */
.real-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.2rem;
}

.real-tag {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 151, 58, 0.3);
  background: rgba(201, 151, 58, 0.07);
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
  transition:
    background 0.25s,
    border-color 0.25s;
}

.real-card:hover .real-tag {
  background: rgba(201, 151, 58, 0.15);
  border-color: rgba(201, 151, 58, 0.5);
}

/* Project name */
.real-card-name {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.25;
  transition: color 0.3s;
}

.real-card:hover .real-card-name {
  color: var(--gold2);
}

/* Description */
.real-card-desc {
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.7;
  flex: 1;
}

/* URL chip at the bottom */
.real-card-url {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.3px;
  margin-top: 0.4rem;
}

.real-card-url::before {
  content: "↗";
  color: var(--gold);
  font-size: 0.8rem;
}

/* ─── RTL adjustments ─────────────────────────── */
[data-lang="ar"] .real-card-url::before {
  content: "↖";
}

[data-lang="ar"] .real-card::after {
  transform-origin: right;
}

/* ─── Responsive ──────────────────────────────── */
@media (max-width: 1024px) {
  .real-grid {
    grid-template-columns: 1fr 1fr;
  }
  .real-card--featured {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .real-grid {
    grid-template-columns: 1fr;
  }
  .real-card--featured {
    grid-column: span 1;
  }
  .real-card-body {
    padding: 1.2rem 1.4rem 1.5rem;
  }
}
/* ═══════════════════════════════════════════════════
   END — NOS RÉALISATIONS CSS
   ═══════════════════════════════════════════════════ */
