/* =========================
   HOME PAGE
   ========================= */

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #111;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.58) contrast(1.12) saturate(.95);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, .50), rgba(0, 0, 0, .12) 42%, rgba(0, 0, 0, .55)),
    linear-gradient(to bottom, rgba(0, 0, 0, .32), transparent 160px);
}

.hero-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 190px;
  z-index: 3;
  background: linear-gradient(to bottom, transparent, #fff 88%);
}

.hero-content {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  padding: 210px 80px 80px;
}

.hero-text {
  max-width: 420px;
  text-align: right;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .75);
}

.hero-text h1 {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.9;
  margin: 0 0 15px;
}

.hero-text p {
  font-size: 13px;
  line-height: 2.3;
  margin: 0;
  opacity: .9;
}

/* About */
.about-section {
  background: #fff;
  color: #111;
  position: relative;
  padding: 105px 0 95px;
}

.about-wrap {
  width: min(1320px, calc(100% - 120px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 85px;
  align-items: start;
}

.about-text {
  opacity: 0;
  transform: translateX(135px);
  transition: 1.85s cubic-bezier(.16, 1, .3, 1);
}

.about-menu {
  opacity: 0;
  transform: translateX(-135px);
  transition: 1.85s cubic-bezier(.16, 1, .3, 1);
  transition-delay: .28s;
}

.about-section.is-visible .about-text,
.about-section.is-visible .about-menu {
  opacity: 1;
  transform: translateX(0);
}

.section-kicker {
  margin: 0 0 16px;
  font-size: 11px;
  letter-spacing: 3px;
  direction: ltr;
  color: #a27631;
  font-weight: 800;
}

.about-title {
  margin: 0 0 22px;
  font-family:"AsarehPeyda","AsarehIranSans",Tahoma,Arial,sans-serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -1px;
}

.about-title span {
  color: #a27631;
}

.about-body {
  max-width: 630px;
  font-size: 14px;
  line-height: 2.15;
  font-weight: bold;;
  color: #222;
}

.about-body p {
  margin: 0 0 14px;
}

.about-highlight {
  margin-top: 18px;
  padding: 0;
  border: none;
  background: transparent;
  color: #59452a;
  font-size: 13.5px;
  line-height: 2;
}

/* About Menu */
.menu-card {
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, .22);
}

.menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #111;
  text-decoration: none;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .16);
  transition: .25s;
}

.menu-link strong {
  font-size: 16px;
  font-weight: 600;
}

.menu-link span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .25s;
  color: #111;
}

.menu-link.active {
  color: #a27631;
}

.menu-link:hover {
  color: #a27631;
  padding-right: 18px;
}

.menu-link:hover span {
  transform: translateX(-6px);
  background: transparent;
  color: #a27631;
}

/* Project Intro */
.project-intro {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: #fff;
}

.project-intro::before {
  display: none;
}

.project-intro-wrap {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  width: calc(100% - 64px);
  margin: 0 auto;
}

.project-intro-header {
  margin-bottom: 54px;
  text-align: right;
  opacity: 0;
  transform: translateX(110px);
  transition: 1.25s cubic-bezier(.16, 1, .3, 1);
}

.project-intro-header h2 {
  font-size: 30px;
  font-weight: 800;
  color: #1c1c1c;
  margin: 0 0 16px;
}

.project-intro-lead {
  font-size: 15px;
  color: #5b5b5b;
  line-height: 2.25;
  max-width: 760px;
  margin: 0;
}

.project-intro-body {
  opacity: 0;
  transform: translateX(-110px);
  transition: 1.25s cubic-bezier(.16, 1, .3, 1);
  transition-delay: .15s;
}

.project-intro-body p {
  font-size: 14px;
  line-height: 2.3;
  color: #3e3e3e;
  margin: 0 0 34px;
}

/* Features */
.project-features {
  margin: 38px 0 54px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 34px;
}

.project-features li {
  position: relative;
  min-height: 48px;
  padding: 8px 34px 8px 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 13.5px;
  line-height: 2;
  color: #333;
  opacity: 0;
  transform: translateX(80px);
  transition:
    opacity 1s cubic-bezier(.16, 1, .3, 1),
    transform 1s cubic-bezier(.16, 1, .3, 1),
    color .25s ease;
}

.project-features li:nth-child(even) {
  transform: translateX(-80px);
}

.project-features li::before {
  content: "✓";
  position: absolute;
  right: 0;
  top: 13px;
  width: auto;
  height: auto;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #a27631;
  font-size: 15px;
  font-weight: 900;
}

.project-features li:hover {
  color: #a27631;
}

/* Goals */
.project-goals {
  margin-top: 64px;
}

.project-goals h3 {
  font-size: 21px;
  color: #1c1c1c;
  margin: 0 0 18px;
}

.project-steps {
  display: flex;
  gap: 34px;
  margin-top: 28px;
}

.step {
  flex: 1;
  background: transparent;
  padding: 0;
  border-radius: 0;
  border: none;
  box-shadow: none;
  opacity: 0;
  transform: translateX(80px);
  transition:
    opacity 1.05s cubic-bezier(.16, 1, .3, 1),
    transform 1.05s cubic-bezier(.16, 1, .3, 1),
    color .3s ease;
}

.step:nth-child(even) {
  transform: translateX(-80px);
}

.step span {
  width: auto;
  height: auto;
  margin-bottom: 10px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #a27631;
  font-size: 0;
  font-weight: 900;
}

.step span::before {
  content: "✓";
  font-size: 18px;
}

.step p {
  font-size: 13.5px;
  color: #444;
  line-height: 2;
  margin: 0;
}

.step:hover {
  transform: translateY(0);
}

/* Active Animations */
.project-intro.active .project-intro-header,
.project-intro.active .project-intro-body,
.project-intro.active .project-features li,
.project-intro.active .step {
  opacity: 1;
  transform: translateX(0);
}

.project-intro.active .project-features li:nth-child(1) {
  transition-delay: .08s;
}

.project-intro.active .project-features li:nth-child(2) {
  transition-delay: .16s;
}

.project-intro.active .project-features li:nth-child(3) {
  transition-delay: .24s;
}

.project-intro.active .project-features li:nth-child(4) {
  transition-delay: .32s;
}

.project-intro.active .project-features li:nth-child(5) {
  transition-delay: .40s;
}

.project-intro.active .project-features li:nth-child(6) {
  transition-delay: .48s;
}

.project-intro.active .project-features li:nth-child(7) {
  transition-delay: .56s;
}

.project-intro.active .project-features li:nth-child(8) {
  transition-delay: .64s;
}

.project-intro.active .step:nth-child(1) {
  transition-delay: .20s;
}

.project-intro.active .step:nth-child(2) {
  transition-delay: .34s;
}

.project-intro.active .step:nth-child(3) {
  transition-delay: .48s;
}

/* Responsive */
@media (max-width: 1000px) {
  .about-wrap {
    width: min(100% - 48px, 760px);
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .about-title {
    font-size: 24px;
    font-weight: bold;
  }

  .about-text,
  .about-menu {
    transform: translateX(0);
    opacity: 1;
  }

  .project-features {
    grid-template-columns: 1fr;
  }

  .project-steps {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .hero-content {
    padding: 150px 28px 60px;
  }

  .hero-text h1 {
    font-size: 22px;
  }

  .hero-text p {
    font-size: 12.5px;
  }

  .project-intro {
    padding: 84px 0;
  }

  .project-intro-wrap {
    width: calc(100% - 36px);
  }

  .project-intro-header h2 {
    font-size: 24px;
  }

  .project-intro-lead,
  .project-intro-body p {
    font-size: 13.5px;
  }
}