/* ─────────────────────────────────────────
   KONTORE — Hero Section
   css/hero.css
───────────────────────────────────────── */

.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 80px; overflow: hidden;
}

/* Left column */
.hero-l {
  padding: 72px var(--sec-pad-h);
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid var(--b-ink);
  position: relative; z-index: 2;
}

.hero-tag {
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: .22em;
  color: var(--gold); margin-bottom: 44px;
  display: flex; align-items: center; gap: 14px;
  animation: fadeUp .8s ease both;
}
.hero-tag::before {
  content: ''; display: block;
  width: 36px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}

h1.headline {
  font-family: var(--font-display);
  font-size: clamp(46px, 5.2vw, 84px);
  font-weight: 300; line-height: .95;
  letter-spacing: -.02em; margin-bottom: 36px;
  animation: fadeUp .8s ease .12s both;
}
h1.headline em { font-style: italic; color: var(--gold); }

.hero-rule {
  width: 52px; height: 1px; background: var(--b-ink);
  margin-bottom: 28px;
  animation: fadeUp .8s ease .22s both;
}

.hero-sub {
  font-size: 17px; line-height: 1.68; color: var(--muted);
  max-width: 430px; margin-bottom: 50px; font-weight: 400;
  animation: fadeUp .8s ease .28s both;
}

.hero-actions {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  animation: fadeUp .8s ease .36s both;
}

/* Right column — dark with animated map + data cards */
.hero-r { position: relative; background: var(--ink); overflow: hidden; }

.hero-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; opacity: .14;
}
.rt {
  fill: none; stroke: #B5862A;
  stroke-width: .5; stroke-dasharray: 5 9;
  animation: dash 14s linear infinite;
}
.rt.r2 { animation-delay: -5s; }
.rt.r3 { animation-delay: -9s; }

.hero-cards {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  animation: fadeUp 1s ease .3s both;
}
.hero-cards-wrap { display: flex; flex-direction: column; gap: 14px; padding: 36px; }

.hcard {
  background: rgba(243,237,227,.055);
  border: 1px solid rgba(181,134,42,.26);
  padding: 18px 22px;
  backdrop-filter: blur(4px);
  animation: float 4s ease-in-out infinite;
}
.hcard:nth-child(2) { animation-delay: 1.4s; margin-left: 28px; }
.hcard:nth-child(3) { animation-delay: 2.8s; }

.hcard-l {
  font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px; font-weight: 500;
}
.hcard-v {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 300; color: var(--parch); line-height: 1;
}
.hcard-d {
  font-size: 10px; color: rgba(243,237,227,.36);
  margin-top: 5px; font-family: var(--font-mono);
}

.hero-stamp {
  position: absolute; bottom: 28px; right: 28px;
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: .2em; color: rgba(181,134,42,.5);
  text-transform: uppercase; writing-mode: vertical-rl;
}

/* RTL */
[dir="rtl"] .hero-l { border-right: none; border-left: 1px solid var(--b-ink); }
