/* ============================================
   REATOLL Brand Story Page
   ============================================ */

/* --- Story Hero --- */
.story-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.story-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 30, 98, 0.25) 0%,
    rgba(0, 30, 98, 0.1) 50%,
    rgba(0, 30, 98, 0.35) 100%
  );
  z-index: 1;
}

.story-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  padding: 0 24px;
}

.story-hero__label {
  font-family: var(--font-en);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-brand-mint);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-out-expo) 0.3s forwards;
}

.story-hero__title {
  font-family: var(--font-en);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-out-expo) 0.5s forwards;
}

.story-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-out-expo) 0.7s forwards;
}

/* --- Story Content Blocks --- */
.story-block {
  max-width: 720px;
  margin: 0 auto;
}

.story-block__label {
  font-family: var(--font-en);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-brand-blue);
  margin-bottom: 20px;
}

.story-block__heading {
  font-family: var(--font-ko);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-brand-navy);
  margin-bottom: 24px;
}

.story-block__text {
  font-size: 1rem;
  line-height: 2;
  color: var(--color-text-light);
}

.story-block__text + .story-block__text {
  margin-top: 20px;
}

.story-block__highlight {
  font-weight: 600;
  color: var(--color-brand-navy);
}

/* --- Full Width Image --- */
.story-image {
  width: 100%;
  overflow: hidden;
}

.story-image--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.story-image img {
  width: 100%;
  height: clamp(280px, 40vw, 480px);
  object-fit: cover;
  transition: transform 6s var(--ease-out-expo);
}

.story-image img:hover {
  transform: scale(1.03);
}

/* --- Name Origin Block --- */
.name-origin {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.name-origin__word {
  font-family: var(--font-en);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--color-brand-navy);
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}

.name-origin__word span {
  color: var(--color-brand-accent);
}

.name-origin__breakdown {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 5vw, 60px);
  margin-bottom: 32px;
}

.name-origin__part {
  text-align: center;
}

.name-origin__prefix {
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-brand-navy);
  margin-bottom: 4px;
}

.name-origin__meaning {
  font-family: var(--font-en);
  font-size: 0.8125rem;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
}

.name-origin__plus {
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-brand-mint);
  align-self: center;
}

.name-origin__desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-light);
  max-width: 560px;
  margin: 0 auto;
}

/* --- Quote Block --- */
.story-quote {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: clamp(40px, 6vw, 60px);
}

.story-quote__text {
  font-family: var(--font-ko);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 500;
  line-height: 1.8;
  color: var(--color-brand-navy);
  margin-bottom: 20px;
}

.story-quote__attr {
  font-family: var(--font-en);
  font-size: 0.8125rem;
  color: var(--color-text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .story-image--split {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .name-origin__breakdown {
    gap: 20px;
  }
}
