@charset "UTF-8";

/* ====================== VARIABLES ====================== */
:root {
  --navy: #1a2a3a;
  --navy-deep: #0f1a27;
  --sand: #e8ddd0;
  --sand-light: #f5f0ea;
  --sand-pale: #faf8f5;
  --coral: #c2775e;
  --coral-muted: #b8907e;
  --gold: #b59a6a;
  --gold-light: #d4c4a0;
  --teal: #5a8f8f;
  --teal-muted: #7aadad;
  --white: #ffffff;
  --text-dark: #2a2a2a;
  --text-body: #4a4a4a;
  --text-light: #8a8a8a;
  --line: #d4cfc8;
}

/* ====================== BASE ====================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.experience-main{
	font-family: "Sawarabi Mincho", serif;
}


/* ====================== HERO ====================== */



.main__experience .mv {
  background: url(../img/experience/mv.jpg) no-repeat center top;
  background-size: cover;
}
.main__experience .mv .mv__wrapper {
    color: #fff;
    height: 43vw;
}
@media (max-width: 576px) {
  .main__experience .mv {
    background: url(../img/experience/mv-sp.jpg) no-repeat center top;
    background-size: cover;
  }
  .main__experience .mv .mv__wrapper {
        height: 40vh;
    }  
}
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--sand-pale) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
  animation: heroFadeIn 1.6s ease-out both;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-logo {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 400;
}

.hero h1 {

  font-weight: 400;
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  line-height: 2;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}

.hero-lead {
  font-weight: 300;
  font-size: clamp(0.8rem, 1.5vw, 0.92rem);
  line-height: 2.2;
  max-width: 640px;
  margin: 0 auto;
  letter-spacing: 0.04em;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: heroFadeIn 1.6s 0.8s ease-out both;
}

.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #aaa;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background:#aaa;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

/* ====================== TIMELINE SECTION ====================== */
.timeline-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px 60px;
}

/* ====================== DAY HEADER ====================== */
.day-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 64px;
  margin-top: 100px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.day-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.day-header:first-child {
  margin-top: 0;
}

.day-number {
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.day-number span {
  font-size: 0.35em;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  display: block;
  margin-bottom: 4px;
}

.day-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* ====================== TIMELINE BLOCK ====================== */
.tl-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 40px;
  margin-bottom: 72px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.tl-block.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Time column */
.tl-time {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
}

.tl-clock {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(26, 42, 58, 0.15);
}

.tl-clock-time {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  line-height: 1;
}

.tl-stem {
  width: 1px;
  flex: 1;
  min-height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  margin-top: 12px;
}

/* Content column */
.tl-content {
  padding-bottom: 8px;
}

.tl-content h3 {
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.9;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.tl-content p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 2;
  margin-bottom: 20px;
}

/* ====================== PHOTO CARDS ====================== */
.tl-photo {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.tl-photo img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.tl-photo:hover img {
  transform: scale(1.03);
}

.tl-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 24px 16px;
  background: linear-gradient(transparent, rgba(15, 26, 39, 0.65));
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.8);
}

/* 2-column photos */
.tl-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.tl-photo-grid .tl-photo img {
  aspect-ratio: 4 / 3;
}

/* ====================== SECTION DIVIDER ====================== */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.section-divider.visible {
  opacity: 1;
}

.section-divider::before,
.section-divider::after {
  content: "";
  width: 60px;
  height: 1px;
  background: var(--gold);
}

.section-divider svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1;
}

/* ====================== OUTRO ====================== */
.outro {
  text-align: center;
  padding: 0px 24px 120px;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.outro.visible {
  opacity: 1;
  transform: translateY(0);
}

.outro-logo {
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  color: var(--navy);
  margin-bottom: 16px;
}

.outro p {
  font-weight: 300;
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 2.2;
}

.outro-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 32px auto 0;
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 768px) {
  .tl-block {
    grid-template-columns: 56px 1fr;
    gap: 0 20px;
  }

  .tl-clock {
    width: 50px;
    height: 50px;
  }

  .tl-clock-time {
    font-size: 0.95rem;
  }

  .tl-photo-grid {
    grid-template-columns: 1fr;
  }

  .day-header {
    margin-top: 72px;
    margin-bottom: 48px;
  }

  .tl-block {
    margin-bottom: 56px;
  }

  .timeline-section {
    padding: 60px 16px 80px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    line-height: 2.2;
  }

  .tl-block {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .tl-time {
    flex-direction: row;
    gap: 12px;
    margin-bottom: 20px;
    padding-top: 0;
  }

  .tl-stem {
    display: none;
  }

  .tl-clock {
    width: 44px;
    height: 44px;
  }

  .tl-clock-time {
    font-size: 0.85rem;
  }
}
