/* ══════════════════════════════════════════
   عشق الفوارس — style.css
   Mobile-First Design System
══════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --gold:    #c9a84c;
  --gold2:   #e8cc80;
  --black:   #09080a;
  --dark1:   #111013;
  --dark2:   #181619;
  --dark3:   #211f24;
  --cream:   #f0e8d5;
  --muted:   #b8b0c4;
  --border:  rgba(201,168,76,.15);
  --F: 'Amiri', serif;
  --B: 'Tajawal', sans-serif;
  --radius: 0px;
  --transition: .3s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img   { max-width: 100%; display: block; }
a     { color: inherit; text-decoration: none; }

body {
  font-family: var(--B);
  font-size: 18px;
  line-height: 1.7;
  background: var(--black);
  color: var(--cream);
  direction: rtl;
  overflow-x: hidden;
}


/* ════════════════════════════════════════
   SPLASH
════════════════════════════════════════ */
#splash {
  position: fixed; inset: 0; z-index: 999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  animation: splashOut .7s ease forwards 4s;
}
@keyframes splashOut { to { opacity:0; visibility:hidden; pointer-events:none; } }

.s-noise {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
  background-size: 50px 50px;
}

.s-center {
  display: flex; flex-direction: column;
  align-items: center; gap: .9rem;
  text-align: center; padding: 1rem;
}

.s-logo {
  width: clamp(120px, 28vw, 200px);
  filter: drop-shadow(0 0 50px rgba(201,168,76,.6));
  animation: logoIn 1s cubic-bezier(.16,1,.3,1) both;
}
@keyframes logoIn {
  from { transform: scale(.5) translateY(30px); opacity:0; }
  to   { transform: scale(1)  translateY(0);    opacity:1; }
}

.s-title {
  font-family: var(--F);
  font-size: clamp(2.4rem, 10vw, 6.5rem);
  color: var(--gold);
  opacity: 0;
  animation: fadeUp .8s ease forwards .7s;
}

.s-sub {
  font-size: clamp(.95rem, 3vw, 1.4rem);
  letter-spacing: .22em;
  color: var(--cream);
  opacity: 0;
  animation: fadeUp .8s ease forwards 1.2s;
}

.s-bar {
  width: 180px; height: 1px;
  background: rgba(201,168,76,.2);
  overflow: hidden; opacity: 0;
  animation: fadeUp .5s ease forwards 1.6s;
}
.s-bar span {
  display: block; height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: barMove 1.8s ease forwards 2s;
  transform: translateX(100%);
}
@keyframes barMove { to { transform: translateX(-100%); } }
@keyframes fadeUp  {
  from { opacity:0; transform:translateY(14px); }
  to   { opacity:1; transform:translateY(0); }
}


/* ════════════════════════════════════════
   NAV
════════════════════════════════════════ */
#nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 100;
  background: rgba(9,8,10,.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: border-color var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: .9rem 4%;
  max-width: 1280px;
  margin: auto;
}

.nav-group {
  display: flex;
  gap: 2rem;
  flex: 1;
}
.nav-group:first-child { justify-content: flex-end; }
.nav-group:last-child  { justify-content: flex-start; }

.nav-group a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: .04em;
  white-space: nowrap;
  transition: color var(--transition);
  position: relative;
}
.nav-group a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-group a:hover { color: var(--gold); }
.nav-group a:hover::after { transform: scaleX(1); }

.nav-brand {
  font-family: var(--F);
  font-size: 1.7rem;
  color: var(--gold);
  letter-spacing: .05em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity var(--transition);
}
.nav-brand:hover { opacity: .8; }

/* Burger */
.burger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: .5rem;
  margin-inline-start: auto;
}
.burger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--cream);
  transition: transform .3s, opacity .3s;
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  border-top: 2px solid rgba(201,168,76,.3);
  background: rgba(9,8,10,.98);
  backdrop-filter: blur(20px);
  padding: .5rem 0 1rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 1.1rem 6%;
  font-size: 1.35rem;
  font-weight: 700;
  color: #f0e8d5;
  border-bottom: 1px solid rgba(201,168,76,.1);
  transition: color var(--transition), background var(--transition), padding var(--transition);
  letter-spacing: .04em;
}
.mobile-menu a:hover,
.mobile-menu a:active {
  color: var(--gold);
  background: rgba(201,168,76,.08);
  padding-right: 8%;
}


/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
  background: var(--dark1);
}

.video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 177.78vh;
  min-height: 56.25vw;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg,
    rgba(9,8,10,.82) 0%,
    rgba(9,8,10,.55) 50%,
    rgba(9,8,10,.78) 100%);
}
/* Pattern when no video */
.video-bg::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(201,168,76,.07), transparent 70%),
    repeating-linear-gradient(-45deg,
      transparent 0, transparent 40px,
      rgba(201,168,76,.015) 40px, rgba(201,168,76,.015) 41px);
}

.hero-content {
  position: relative; z-index: 1;
  text-align: center;
  padding: clamp(5rem, 15vw, 10rem) 5% clamp(4rem, 8vw, 6rem);
  max-width: 860px;
  width: 100%;
}

.eyebrow {
  display: block;
  font-size: clamp(.72rem, 2vw, .88rem);
  letter-spacing: .35em;
  color: var(--gold);
  margin-bottom: 1.3rem;
}

.hero-content h2 {
  font-family: var(--F);
  font-size: clamp(2.2rem, 7vw, 5.5rem);
  line-height: 1.18;
  margin-bottom: 1.3rem;
}
.hero-content h2 em { font-style: normal; color: var(--gold); }

.hero-content > p {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: #eee8f8;
  line-height: 1.9;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-inline: auto;
}

.cta {
  display: inline-block;
  padding: .9rem 2.5rem;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: var(--B);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .1em;
  cursor: pointer;
  background: transparent;
  transition: background var(--transition), color var(--transition);
}
.cta:hover    { background: var(--gold); color: var(--black); }
button.cta    { width: 100%; font-size: 1rem; }


/* ════════════════════════════════════════
   SECTION COMMON
════════════════════════════════════════ */
.sec { padding: clamp(4rem, 10vw, 8rem) 5%; }
.sec--alt { background: var(--dark1); }
.sec--dark { background: var(--black); }

.wrap { max-width: 1200px; margin: auto; }

.sec-label {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  letter-spacing: .25em;
  color: var(--gold);
  display: block;
  margin-bottom: .9rem;
  font-weight: 700;
}
.sec-title {
  font-family: var(--F);
  font-size: clamp(2.6rem, 6vw, 5rem);
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: .02em;
}
.sec-title em { font-style: normal; color: var(--gold); }


/* ════════════════════════════════════════
   ABOUT
════════════════════════════════════════ */
.about { background: var(--dark1); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: 1200px; margin: auto;
}

.about-photo {
  aspect-ratio: 3/4;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--dark2);
}
.about-photo img      { width:100%; height:100%; object-fit:cover; }
.about-logo-bg        { width:100px; opacity:.25; filter:drop-shadow(0 0 20px rgba(201,168,76,.3)); }

/* Tabs */
.about-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.tab-btn {
  background: none; border: none;
  color: var(--muted);
  font-family: var(--B); font-size: 1rem;
  padding: .6rem 1.4rem;
  cursor: pointer;
  position: relative;
  transition: color var(--transition);
}
.tab-btn::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s;
}
.tab-btn.active       { color: var(--gold); }
.tab-btn.active::after{ transform: scaleX(1); }
.tab-btn:hover        { color: var(--cream); }

.tab-panel            { display: none; }
.tab-panel.active     { display: block; animation: fadeTab .4s ease; }
@keyframes fadeTab {
  from { opacity:0; transform:translateY(6px); }
  to   { opacity:1; transform:translateY(0); }
}

.tab-panel h3 {
  font-family: var(--F);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.tab-panel h3 em { font-style: normal; color: var(--gold); }

.body-txt {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: #e8e2f0;
  line-height: 1.95;
  margin-bottom: 2rem;
}

.nums {
  display: flex; gap: 2rem; flex-wrap: wrap;
}
.nums div { display: flex; flex-direction: column; gap: .2rem; }
.nums b    { font-family: var(--F); font-size: clamp(1.6rem, 4vw, 2.4rem); color: var(--gold); }
.nums span { font-size: .95rem; color: #c0b8cc; font-weight: 500; }


/* ════════════════════════════════════════
   SERVICES — 4 كروت جمب بعض
════════════════════════════════════════ */
.services { background: var(--black); }

.services .sec-title { text-align: center; }

.cards--row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.card {
  background: var(--dark1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(201,168,76,.14);
  z-index: 1;
}

/* صورة الكارت */
.card-photo {
  width: 100%;
  aspect-ratio: 1 / 1;        /* مربع — واضح ومتناسق */
  overflow: hidden;
  background: var(--dark2);
  flex-shrink: 0;
}
.card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.card:hover .card-photo img { transform: scale(1.07); }

/* كارت بدون صورة */
.card-photo--icon {
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(135deg, var(--dark2), #1a1300);
  position: relative;
}
.card-photo--icon::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg,
    rgba(201,168,76,.03) 0, rgba(201,168,76,.03) 1px,
    transparent 1px, transparent 35px);
}

/* نص الكارت */
.card-body {
  padding: clamp(.9rem, 2vw, 1.5rem);
  flex: 1;
  border-top: 1px solid var(--border);
  position: relative;
}
.card-body::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform .4s ease;
}
.card:hover .card-body::after { transform: scaleX(1); }

.card-body h4 {
  font-family: var(--F);
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--gold);
  margin-bottom: .5rem;
  line-height: 1.3;
}
.card-body p {
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  color: #e0d8ec;
  line-height: 1.75;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity:1; transform:translateY(0); }
.cards--row .reveal:nth-child(1) { transition-delay: 0s; }
.cards--row .reveal:nth-child(2) { transition-delay: .1s; }
.cards--row .reveal:nth-child(3) { transition-delay: .2s; }
.cards--row .reveal:nth-child(4) { transition-delay: .3s; }


/* ════════════════════════════════════════
   عملاؤنا
════════════════════════════════════════ */
.clients-sec { background: var(--dark1); text-align: center; }

.clients-intro {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: #e8e2f0;
  line-height: 2;
  max-width: 740px;
  margin: 0 auto 3.5rem;
}

.clients-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 3rem;
}
.cl-s {
  background: var(--black);
  padding: clamp(1.5rem, 4vw, 2.5rem) 1rem;
  display: flex; flex-direction: column; gap: .4rem;
  transition: background var(--transition);
}
.cl-s:hover { background: var(--dark2); }
.cl-s b    { font-family: var(--F); font-size: clamp(1.3rem, 3vw, 2rem); color: var(--gold); }
.cl-s span { font-size: 1rem; color: #c0b8cc; font-weight: 500; }

.clients-quote {
  display: flex; align-items: center;
  justify-content: center; gap: 1rem;
  margin-top: 1.5rem; flex-wrap: wrap;
}
.clients-quote p {
  font-family: var(--F);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-style: italic; color: var(--cream);
}
.q-mark {
  font-family: var(--F);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--gold); opacity: .45; line-height: .8;
}


/* ════════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
.contact { background: var(--black); }

.contact-inner {
  max-width: 900px; margin: auto;
}

.contact-left { text-align: center; }

.contact-left h3 {
  font-family: var(--F);
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin: .8rem 0 2.5rem;
  line-height: 1.2;
}
.contact-left h3 em { font-style: normal; color: var(--gold); }
.contact-left .sec-label { font-size: .9rem; letter-spacing: .4em; }

.c-links {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-inline: auto;
}

.c-link {
  display: flex; align-items: center; gap: 1rem;
  color: var(--cream);
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 500;
  padding: 1rem 1.5rem;
  border: 1px solid var(--border);
  background: var(--dark1);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.c-link svg        { color: var(--gold); flex-shrink: 0; width:24px; height:24px; }
.c-link:hover      { color: var(--gold); border-color: var(--gold); background: rgba(201,168,76,.05); }
.c-wa svg          { color: #25d366; }
.c-wa:hover        { color: #25d366; border-color: #25d366; }
.c-map svg         { color: #ea4335; }
.c-map:hover       { color: #ea4335; border-color: #ea4335; }

.map-wrap { border: 1px solid var(--border); overflow: hidden; margin-top: 2rem; }
.map-wrap iframe { display: block; }
.map-btn {
  display: block; text-align: center;
  padding: 1rem; background: var(--dark2);
  color: var(--gold); font-size: 1rem; font-weight: 600;
  border-top: 1px solid var(--border);
  transition: background var(--transition);
}
.map-btn:hover { background: rgba(201,168,76,.12); }


/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
  padding: 2.5rem 5%;
  border-top: 1px solid var(--border);
  display: flex; align-items: center;
  justify-content: center;
  gap: 1rem; flex-wrap: wrap;
  text-align: center;
}
footer img { width: 44px; filter: drop-shadow(0 0 8px rgba(201,168,76,.35)); }
footer p   { font-size: .9rem; color: var(--muted); }


/* ════════════════════════════════════════
   RESPONSIVE — Tablet (≤ 900px)
════════════════════════════════════════ */
@media (max-width: 900px) {

  /* Nav tablet — show burger, hide links */
  .nav-group           { display: none; }
  .burger              { display: flex; }
  .nav-inner           { justify-content: space-between; }
  .nav-brand           { font-size: 1.3rem; }

  /* About — side by side smaller */
  .about-inner         { grid-template-columns: .8fr 1.5fr; gap: 2rem; }
  .about-photo         { aspect-ratio: 1/1; }

  /* Services — 2×2 */
  .cards--row          { grid-template-columns: repeat(2, 1fr); }
  .card-photo          { aspect-ratio: 4/3; }

  /* Clients */
  .clients-stats       { grid-template-columns: repeat(2, 1fr); }

  /* Contact */
  .map-wrap iframe     { height: 300px; }
}


/* ════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 600px)
════════════════════════════════════════ */
@media (max-width: 600px) {

  /* Nav — show burger */
  .nav-group           { display: none; }
  .nav-brand           { font-size: 1.1rem; }
  .burger              { display: flex; }
  .nav-inner           { justify-content: space-between; gap: 0; padding: .8rem 4%; }

  /* Hero */
  .hero-content        { padding: 5.5rem 4% 3.5rem; }

  /* About — side by side on mobile too */
  .about               { padding: 4rem 4%; }
  .about-inner         { grid-template-columns: 110px 1fr; gap: 1rem; align-items: center; }
  .about-photo         { aspect-ratio: 1/1; min-height: unset; }
  .about-logo-bg       { width: 95px; }
  .tab-btn             { font-size: .85rem; padding: .5rem .8rem; }
  .tab-panel h3        { font-size: 1.2rem; }
  .body-txt            { font-size: .88rem; line-height: 1.8; }
  .nums b              { font-size: 1.4rem; }
  .nums span           { font-size: .75rem; }
  .nums                { gap: 1rem; }

  /* Services — 2 side by side */
  .services            { padding: 4rem 3%; }
  .cards--row          { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .card-photo          { aspect-ratio: 1/1; }
  .card-body           { padding: .75rem; }
  .card-body h4        { font-size: .95rem; margin-bottom: .3rem; }
  .card-body p         { font-size: .78rem; line-height: 1.55; }

  /* Clients */
  .clients-sec         { padding: 4rem 4%; }
  .clients-stats       { grid-template-columns: repeat(2, 1fr); }
  .cl-s                { padding: 1.3rem .8rem; }
  .cl-s b              { font-size: 1.7rem; }
  .clients-quote p     { font-size: 1.1rem; }

  /* Contact */
  .contact             { padding: 4rem 4%; }
  .map-wrap iframe     { height: 250px; }
  .c-link              { font-size: 1rem; padding: .8rem 1rem; }

  /* Footer */
  footer               { padding: 2rem 4%; gap: .7rem; }
}


/* ════════════════════════════════════════
   RESPONSIVE — Small mobile (≤ 380px)
════════════════════════════════════════ */
@media (max-width: 380px) {
  .about-inner         { grid-template-columns: 80px 1fr; }
  .cards--row          { grid-template-columns: repeat(2, 1fr); }
  .card-body h4        { font-size: .85rem; }
  .card-body p         { font-size: .72rem; }
  .clients-stats       { grid-template-columns: repeat(2, 1fr); }
}


/* ══════════════════════════════════════
   HERO BUTTONS
══════════════════════════════════════ */
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* زر البروفايل — outline ذهبي شفاف */
.cta--outline {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: rgba(201,168,76,.08);
  border-color: rgba(201,168,76,.5);
  color: var(--cream);
}
.cta--outline:hover {
  background: rgba(201,168,76,.18);
  border-color: var(--gold);
  color: var(--gold);
}
.cta--outline svg { flex-shrink: 0; }


/* ══════════════════════════════════════
   SCROLL ARROW
══════════════════════════════════════ */
.scroll-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
  animation: arrowFade 2.5s ease-in-out infinite;
  transition: opacity .4s;
  user-select: none;
}

/* يختفي عند التمرير عبر JS */
.scroll-arrow.hide { opacity: 0; pointer-events: none; }

/* الماوس يتحرك لأسفل */
.scroll-dot {
  animation: dotDown 2s ease-in-out infinite;
  transform-origin: center;
}
@keyframes dotDown {
  0%   { cy: 14; opacity: 1; }
  60%  { cy: 34; opacity: 0; }
  61%  { cy: 14; opacity: 0; }
  100% { cy: 14; opacity: 1; }
}

/* الـ chevron يومض */
.scroll-chevron {
  animation: chevronBlink 2s ease-in-out infinite;
}
@keyframes chevronBlink {
  0%,100% { opacity: .3; transform: translateY(0); }
  50%      { opacity: 1;  transform: translateY(4px); }
}

/* الكل يظهر ويختفي */
@keyframes arrowFade {
  0%,100% { opacity: .6; }
  50%      { opacity: 1; }
}


/* ── Mobile ── */
@media (max-width: 600px) {
  .hero-btns  { gap: .75rem; }
  .cta        { padding: .8rem 1.8rem; font-size: .92rem; }
}

/* عنوان من نحن — فاصل */
.title-sep {
  display: block;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: .7rem 0;
  content: '';
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}









/* ══ Eyebrow — واضح على الموبايل ══ */
@media (max-width: 600px) {
  .hero-content .eyebrow {
    display: block !important;
    font-size: .78rem;
    letter-spacing: .2em;
    margin-bottom: 1rem;
    opacity: 1;
  }
}
