/* ==============================================
   CROWN GEM — JOURNEY CSS
   Matches Luxury Crown Gems UI Design
   ============================================== */

.jy-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

/* ===== HERO ===== */
.jy-hero {
  position: relative;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.8) 40%, rgba(255, 255, 255, 0.2) 100%),
              url('../img/about/5.jpg') center right / cover no-repeat;
  min-height: 400px;
  display: flex;
  align-items: center;
  padding: 70px 0;
  border-bottom: 1px solid var(--line);
}

.jy-hero__content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.jy-hero__content .section-label {
  color: var(--gold);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.jy-hero__title {
  font-family: var(--serif);
  font-size: 60px;
  font-weight: 500;
  color: #8C6430;
  line-height: 1.08;
  margin-bottom: 12px;
}

.jy-hero__sub {
  font-size: 14.5px;
  color: #555555;
  line-height: 1.6;
}

/* ===== TIMELINE SECTION ===== */
.jy-timeline-section {
  padding: 80px 0 100px;
  background: #ffffff;
}

.jy-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.jy-intro h2 {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 500;
  color: #1A1A1A;
  margin-bottom: 16px;
}

.jy-intro p {
  font-size: 14.5px;
  color: #555555;
  line-height: 1.7;
}

/* Timeline Layout */
.jy-timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

/* Vertical spine line */
.jy-timeline::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 95px;
  width: 2px;
  background: rgba(198, 154, 89, 0.35);
  z-index: 1;
}

.jy-timeline-item {
  display: grid;
  grid-template-columns: 80px 32px 1fr;
  align-items: start;
  position: relative;
  margin-bottom: 40px;
  z-index: 2;
}

.jy-timeline-date {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  text-align: right;
  padding-top: 18px;
}

.jy-timeline-marker {
  display: flex;
  justify-content: center;
  padding-top: 25px;
  position: relative;
}

.jy-timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 2px var(--gold);
  z-index: 3;
}

.jy-timeline-content {
  background: #FAF8F5;
  border: 1px solid rgba(228, 220, 206, 0.8);
  border-radius: 16px;
  padding: 30px 34px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.03);
  transition: all var(--transition);
}

.jy-timeline-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.07);
  border-color: var(--gold);
  background: #ffffff;
}

.jy-timeline-content h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 10px;
}

.jy-timeline-content p {
  font-size: 13.5px;
  color: #444444;
  line-height: 1.68;
}

/* Responsive */
@media (max-width: 768px) {
  .jy-timeline::before { left: 16px; }
  .jy-timeline-item {
    grid-template-columns: 1fr;
    padding-left: 36px;
    gap: 10px;
  }
  .jy-timeline-date {
    text-align: left;
    padding-top: 0;
    font-size: 22px;
  }
  .jy-timeline-marker {
    position: absolute;
    left: 9px;
    top: 6px;
    padding-top: 0;
  }
  .jy-hero__title { font-size: 42px; }
  .jy-container { padding: 0 20px; }
}